Files
libreoffice/sd/source/ui/func/fudraw.cxx

1184 lines
38 KiB
C++
Raw Normal View History

2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* $RCSfile: fudraw.cxx,v $
*
* $Revision: 1.6 $
2000-09-18 16:07:07 +00:00
*
* last change: $Author: ka $ $Date: 2001-09-24 13:41:22 $
2000-09-18 16:07:07 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#pragma hdrstop
#include <sot/object.hxx>
#ifndef _EEITEM_HXX //autogen
#include <svx/eeitem.hxx>
#endif
#ifndef _SV_WAITOBJ_HXX
#include <vcl/waitobj.hxx>
#endif
#define ITEMID_FIELD EE_FEATURE_FIELD
#include <svx/flditem.hxx>
#ifndef _SVDOGRP_HXX //autogen
#include <svx/svdogrp.hxx>
#endif
#ifndef _SV_HELP_HXX //autogen
#include <vcl/help.hxx>
#endif
#ifndef _BMPMASK_HXX_ //autogen
#include <svx/bmpmask.hxx>
#endif
#ifndef _SVDOTEXT_HXX //autogen
#include <svx/svdotext.hxx>
#endif
#ifndef _SFXAPP_HXX //autogen
#include <sfx2/app.hxx>
#endif
#ifndef _SFXDISPATCH_HXX //autogen
#include <sfx2/dispatch.hxx>
#endif
#ifndef _SFX_BINDINGS_HXX //autogen
#include <sfx2/bindings.hxx>
#endif
#ifndef _SVDPAGV_HXX //autogen
#include <svx/svdpagv.hxx>
#endif
#ifndef _GOODIES_IMAPOBJ_HXX //autogen
#include <svtools/imapobj.hxx>
#endif
#include <svx/svxids.hrc>
#ifndef _E3D_OBJ3D_HXX //autogen
#include <svx/obj3d.hxx>
#endif
#ifndef _E3D_POLYSC3D_HXX //autogen
#include <svx/polysc3d.hxx>
#endif
#ifndef _SVDPAGV_HXX //autogen
#include <svx/svdpagv.hxx>
#endif
#include "anminfo.hxx"
#include "anmdef.hxx"
#include "imapinfo.hxx"
#include "app.hrc"
#include "glob.hrc"
#include "strings.hrc"
#include "res_bmp.hrc"
#include "app.hxx"
#include "grdocsh.hxx"
#include "fudraw.hxx"
#include "viewshel.hxx"
#include "frmview.hxx"
#include "sdview.hxx"
#include "sdwindow.hxx"
#include "drawdoc.hxx"
#include "docshell.hxx"
#include "sdclient.hxx"
#include "sdresid.hxx"
#include "drawview.hxx"
#include "fusel.hxx"
#ifndef _AEITEM_HXX //autogen
#include <svtools/aeitem.hxx>
#endif
#ifndef _SV_MSGBOX_HXX //autogen
#include <vcl/msgbox.hxx>
#endif
using namespace ::com::sun::star;
TYPEINIT1( FuDraw, FuPoor );
/*************************************************************************
|*
|* Base-class for all drawmodul-specific functions
|*
\************************************************************************/
FuDraw::FuDraw(SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
SdDrawDocument* pDoc, SfxRequest& rReq) :
FuPoor(pViewSh, pWin, pView, pDoc, rReq),
bMBDown(FALSE),
bPermanent(FALSE),
bDragHelpLine(FALSE)
{
}
/*************************************************************************
|*
|* Destruktor
|*
\************************************************************************/
FuDraw::~FuDraw()
{
pView->BrkAction();
}
/*************************************************************************
|*
|* MouseButtonDown-event
|*
\************************************************************************/
BOOL FuDraw::MouseButtonDown(const MouseEvent& rMEvt)
{
BOOL bReturn = FALSE;
bDragHelpLine = FALSE;
aMDPos = pWindow->PixelToLogic( rMEvt.GetPosPixel() );
if ( rMEvt.IsLeft() )
{
FrameView* pFrameView = pViewShell->GetFrameView();
// BOOL bOrtho = pView->IsOrthoDesired() || pFrameView->IsOrtho();
// bOrtho = bOrtho != rMEvt.IsShift();
BOOL bOrtho = FALSE;
BOOL bRestricted = TRUE;
if (pView->IsDragObj())
{
// object is dragged (move, resize,...)
const SdrHdl* pHdl = pView->GetDragStat().GetHdl();
if (!pHdl || (!pHdl->IsCornerHdl() && !pHdl->IsVertexHdl()))
{
// Move
bRestricted = FALSE;
}
}
if (bRestricted &&
(nSlotId == SID_DRAW_XLINE ||
nSlotId == SID_DRAW_CIRCLEARC ||
nSlotId == SID_DRAW_SQUARE ||
nSlotId == SID_DRAW_SQUARE_NOFILL ||
nSlotId == SID_DRAW_SQUARE_ROUND ||
nSlotId == SID_DRAW_SQUARE_ROUND_NOFILL ||
nSlotId == SID_DRAW_CIRCLE ||
nSlotId == SID_DRAW_CIRCLE_NOFILL ||
nSlotId == SID_DRAW_CIRCLEPIE ||
nSlotId == SID_DRAW_CIRCLEPIE_NOFILL ||
nSlotId == SID_DRAW_CIRCLECUT ||
nSlotId == SID_DRAW_CIRCLECUT_NOFILL ||
nSlotId == SID_DRAW_XPOLYGON ||
nSlotId == SID_DRAW_XPOLYGON_NOFILL ||
nSlotId == SID_3D_CUBE ||
nSlotId == SID_3D_SPHERE ||
nSlotId == SID_3D_SHELL ||
nSlotId == SID_3D_HALF_SPHERE ||
nSlotId == SID_3D_TORUS ||
nSlotId == SID_3D_CYLINDER ||
nSlotId == SID_3D_CONE ||
nSlotId == SID_3D_PYRAMID ))
2000-09-18 16:07:07 +00:00
{
// Restrict movement:
// rectangle->quadrat, ellipse->circle etc.
bOrtho = !rMEvt.IsShift();
2000-09-18 16:07:07 +00:00
}
else
{
bOrtho = rMEvt.IsShift() != pFrameView->IsOrtho();
}
if (!pView->IsSnapEnabled())
pView->SetSnapEnabled(TRUE);
BOOL bCntrl = rMEvt.IsMod1();
BOOL bGridSnap = pFrameView->IsGridSnap();
bGridSnap = (bCntrl != bGridSnap);
if (pView->IsGridSnap() != bGridSnap)
pView->SetGridSnap(bGridSnap);
BOOL bBordSnap = pFrameView->IsBordSnap();
bBordSnap = (bCntrl != bBordSnap);
if (pView->IsBordSnap() != bBordSnap)
pView->SetBordSnap(bBordSnap);
BOOL bHlplSnap = pFrameView->IsHlplSnap();
bHlplSnap = (bCntrl != bHlplSnap);
if (pView->IsHlplSnap() != bHlplSnap)
pView->SetHlplSnap(bHlplSnap);
BOOL bOFrmSnap = pFrameView->IsOFrmSnap();
bOFrmSnap = (bCntrl != bOFrmSnap);
if (pView->IsOFrmSnap() != bOFrmSnap)
pView->SetOFrmSnap(bOFrmSnap);
BOOL bOPntSnap = pFrameView->IsOPntSnap();
bOPntSnap = (bCntrl != bOPntSnap);
if (pView->IsOPntSnap() != bOPntSnap)
pView->SetOPntSnap(bOPntSnap);
BOOL bOConSnap = pFrameView->IsOConSnap();
bOConSnap = (bCntrl != bOConSnap);
if (pView->IsOConSnap() != bOConSnap)
pView->SetOConSnap(bOConSnap);
BOOL bAngleSnap = rMEvt.IsShift() == !pFrameView->IsAngleSnapEnabled();
if (pView->IsAngleSnapEnabled() != bAngleSnap)
pView->SetAngleSnapEnabled(bAngleSnap);
if (pView->IsOrtho() != bOrtho)
pView->SetOrtho(bOrtho);
BOOL bCenter = rMEvt.IsMod2();
if ( pView->IsCreate1stPointAsCenter() != bCenter ||
pView->IsResizeAtCenter() != bCenter )
{
pView->SetCreate1stPointAsCenter(bCenter);
pView->SetResizeAtCenter(bCenter);
}
SdrPageView* pPV;
USHORT nHitLog = USHORT ( pWindow->PixelToLogic(Size(HITPIX,0)).Width() );
// #76572# look only for HelpLines when they are visible (!)
BOOL bHelpLine(FALSE);
if(pView->IsHlplVisible())
bHelpLine = pView->PickHelpLine(aMDPos, nHitLog, *pWindow, nHelpLine, pPV);
BOOL bHitHdl = (pView->HitHandle(aMDPos, *pWindow) != NULL);
if ( bHelpLine
&& !pView->IsCreateObj()
&& ((pView->GetEditMode() == SDREDITMODE_EDIT && !bHitHdl) || (rMEvt.IsShift() && bCntrl)) )
{
pWindow->CaptureMouse();
pView->BegDragHelpLine(nHelpLine, pPV);
bDragHelpLine = pView->IsDragHelpLine();
bReturn = TRUE;
}
}
ForcePointer(&rMEvt);
return bReturn;
}
/*************************************************************************
|*
|* MouseMove-event
|*
\************************************************************************/
BOOL FuDraw::MouseMove(const MouseEvent& rMEvt)
{
FrameView* pFrameView = pViewShell->GetFrameView();
Point aPos = pWindow->PixelToLogic( rMEvt.GetPosPixel() );
// BOOL bOrtho = pView->IsOrthoDesired() || pFrameView->IsOrtho();
// bOrtho = bOrtho != rMEvt.IsShift();
BOOL bOrtho = FALSE;
BOOL bRestricted = TRUE;
if (pView->IsDragObj())
{
// object is dragged (move, resize, ...)
const SdrHdl* pHdl = pView->GetDragStat().GetHdl();
if (!pHdl || (!pHdl->IsCornerHdl() && !pHdl->IsVertexHdl()))
{
// Move
bRestricted = FALSE;
}
}
if (pView->IsAction())
{
if (bRestricted &&
(nSlotId == SID_DRAW_XLINE ||
nSlotId == SID_DRAW_CIRCLEARC ||
nSlotId == SID_DRAW_SQUARE ||
nSlotId == SID_DRAW_SQUARE_NOFILL ||
nSlotId == SID_DRAW_SQUARE_ROUND ||
nSlotId == SID_DRAW_SQUARE_ROUND_NOFILL ||
nSlotId == SID_DRAW_CIRCLE ||
nSlotId == SID_DRAW_CIRCLE_NOFILL ||
nSlotId == SID_DRAW_CIRCLEPIE ||
nSlotId == SID_DRAW_CIRCLEPIE_NOFILL ||
nSlotId == SID_DRAW_CIRCLECUT ||
nSlotId == SID_DRAW_CIRCLECUT_NOFILL ||
nSlotId == SID_DRAW_XPOLYGON ||
nSlotId == SID_DRAW_XPOLYGON_NOFILL ||
nSlotId == SID_3D_CUBE ||
nSlotId == SID_3D_SPHERE ||
nSlotId == SID_3D_SHELL ||
nSlotId == SID_3D_HALF_SPHERE ||
nSlotId == SID_3D_TORUS ||
nSlotId == SID_3D_CYLINDER ||
nSlotId == SID_3D_CONE ||
nSlotId == SID_3D_PYRAMID ))
2000-09-18 16:07:07 +00:00
{
// Restrict movement:
// rectangle->quadrat, ellipse->circle etc.
bOrtho = !rMEvt.IsShift();
2000-09-18 16:07:07 +00:00
}
else
{
bOrtho = rMEvt.IsShift() != pFrameView->IsOrtho();
}
BOOL bCntrl = rMEvt.IsMod1();
pView->SetDragWithCopy(rMEvt.IsMod1() && pFrameView->IsDragWithCopy());
BOOL bGridSnap = pFrameView->IsGridSnap();
bGridSnap = (bCntrl != bGridSnap);
if (pView->IsGridSnap() != bGridSnap)
pView->SetGridSnap(bGridSnap);
BOOL bBordSnap = pFrameView->IsBordSnap();
bBordSnap = (bCntrl != bBordSnap);
if (pView->IsBordSnap() != bBordSnap)
pView->SetBordSnap(bBordSnap);
BOOL bHlplSnap = pFrameView->IsHlplSnap();
bHlplSnap = (bCntrl != bHlplSnap);
if (pView->IsHlplSnap() != bHlplSnap)
pView->SetHlplSnap(bHlplSnap);
BOOL bOFrmSnap = pFrameView->IsOFrmSnap();
bOFrmSnap = (bCntrl != bOFrmSnap);
if (pView->IsOFrmSnap() != bOFrmSnap)
pView->SetOFrmSnap(bOFrmSnap);
BOOL bOPntSnap = pFrameView->IsOPntSnap();
bOPntSnap = (bCntrl != bOPntSnap);
if (pView->IsOPntSnap() != bOPntSnap)
pView->SetOPntSnap(bOPntSnap);
BOOL bOConSnap = pFrameView->IsOConSnap();
bOConSnap = (bCntrl != bOConSnap);
if (pView->IsOConSnap() != bOConSnap)
pView->SetOConSnap(bOConSnap);
BOOL bAngleSnap = rMEvt.IsShift() == !pFrameView->IsAngleSnapEnabled();
if (pView->IsAngleSnapEnabled() != bAngleSnap)
pView->SetAngleSnapEnabled(bAngleSnap);
if (pView->IsOrtho() != bOrtho)
pView->SetOrtho(bOrtho);
BOOL bCenter = rMEvt.IsMod2();
if ( pView->IsCreate1stPointAsCenter() != bCenter ||
pView->IsResizeAtCenter() != bCenter )
{
pView->SetCreate1stPointAsCenter(bCenter);
pView->SetResizeAtCenter(bCenter);
}
if ( pView->IsDragHelpLine() )
pView->MovDragHelpLine(aPos);
}
BOOL bReturn = pView->MouseMove(rMEvt, pWindow);
if (pView->IsAction())
{
// Because the flag set back if necessary in MouseMove
if (pView->IsOrtho() != bOrtho)
pView->SetOrtho(bOrtho);
}
ForcePointer(&rMEvt);
return bReturn;
}
/*************************************************************************
|*
|* MouseButtonUp-event
|*
\************************************************************************/
BOOL FuDraw::MouseButtonUp(const MouseEvent& rMEvt)
{
if ( pView->IsDragHelpLine() )
pView->EndDragHelpLine();
if ( bDragHelpLine )
{
Rectangle aOutputArea(Point(0,0), pWindow->GetOutputSizePixel());
if ( !aOutputArea.IsInside(rMEvt.GetPosPixel()) )
pView->GetPageViewPvNum(0)->DeleteHelpLine(nHelpLine);
pWindow->ReleaseMouse();
}
FrameView* pFrameView = pViewShell->GetFrameView();
pView->SetOrtho( pFrameView->IsOrtho() );
pView->SetAngleSnapEnabled( pFrameView->IsAngleSnapEnabled() );
pView->SetSnapEnabled(TRUE);
pView->SetCreate1stPointAsCenter(FALSE);
pView->SetResizeAtCenter(FALSE);
pView->SetDragWithCopy(pFrameView->IsDragWithCopy());
pView->SetGridSnap(pFrameView->IsGridSnap());
pView->SetBordSnap(pFrameView->IsBordSnap());
pView->SetHlplSnap(pFrameView->IsHlplSnap());
pView->SetOFrmSnap(pFrameView->IsOFrmSnap());
pView->SetOPntSnap(pFrameView->IsOPntSnap());
pView->SetOConSnap(pFrameView->IsOConSnap());
bIsInDragMode = FALSE;
ForcePointer(&rMEvt);
FuPoor::MouseButtonUp(rMEvt);
return FALSE;
}
/*************************************************************************
|*
|* Process keyboard-events
|*
|* When processing a KeyEvent the returnvalue is TRUE, otherwise FALSE.
|*
\************************************************************************/
BOOL FuDraw::KeyInput(const KeyEvent& rKEvt)
{
BOOL bReturn = FALSE;
switch ( rKEvt.GetKeyCode().GetCode() )
{
case KEY_ESCAPE:
{
if ( pView->IsAction() )
{
pView->BrkAction();
bReturn = TRUE;
}
else if ( pView->IsTextEdit() )
{
pView->EndTextEdit();
bReturn = TRUE;
SfxBindings& rBindings = pViewShell->GetViewFrame()->GetBindings();
2000-09-18 16:07:07 +00:00
rBindings.Invalidate( SID_PARASPACE_INCREASE );
rBindings.Invalidate( SID_PARASPACE_DECREASE );
}
else if ( pView->HasMarkedObj() )
{
pView->UnmarkAll();
bReturn = TRUE;
}
}
break;
case KEY_DELETE:
case KEY_BACKSPACE:
{
if (!pDocSh->IsReadOnly())
{
if ( pView->IsPresObjSelected(FALSE, TRUE) )
{
InfoBox(pWindow, String(SdResId(STR_ACTION_NOTPOSSIBLE) ) ).Execute();
}
else
{
// Falls IP-Client aktiv, werden die Pointer
// auf das OLE- und das alte Graphic-Object
// am SdClient zurueckgesetzt, damit bei
// ::SelectionHasChanged nach dem Loeschen
// nicht mehr versucht wird, ein Grafik-Objekt
// zu restaurieren, das gar nicht mehr existiert.
// Alle anderen OLE-Objekte sind davon nicht
// betroffen (KA 06.10.95)
SdClient* pIPClient = (SdClient*)pViewShell->GetIPClient();
if (pIPClient && pIPClient->IsInPlaceActive())
{
pIPClient->SetSdrGrafObj(NULL);
}
// wait-mousepointer while deleting object
WaitObject aWait( (Window*)pViewShell->GetActiveWindow() );
// delete object
pView->DeleteMarked();
}
}
bReturn = TRUE;
}
break;
case KEY_TAB:
{
KeyCode aCode = rKEvt.GetKeyCode();
if ( !aCode.IsMod1() && !aCode.IsMod2() )
{
// changeover to the next object
if(!pView->MarkNextObj( !aCode.IsShift() ))
{
// if that does not function try the other direction
while(pView->MarkNextObj( aCode.IsShift() )) ;
}
bReturn = TRUE;
}
}
break;
case KEY_END:
{
KeyCode aCode = rKEvt.GetKeyCode();
if ( aCode.IsMod1() )
{
// turn over to the next object
while(pView->MarkNextObj(FALSE)) ;
bReturn = TRUE;
}
}
break;
case KEY_HOME:
{
KeyCode aCode = rKEvt.GetKeyCode();
if ( aCode.IsMod1() )
{
// turn over to the next object
while(pView->MarkNextObj(TRUE)) ;
bReturn = TRUE;
}
}
break;
default:
break;
}
if (!bReturn)
{
bReturn = FuPoor::KeyInput(rKEvt);
}
else
{
pWindow->ReleaseMouse();
}
return (bReturn);
}
/*************************************************************************
|*
|* Fade out the selection-presentation before scrolling
|*
\************************************************************************/
void FuDraw::ScrollStart()
{
if ( pView->IsShownXorVisible(pWindow) )
{
pView->HideShownXor(pWindow);
}
}
/*************************************************************************
|*
|* After scrolling show the selection-presentation again
|*
\************************************************************************/
void FuDraw::ScrollEnd()
{
if ( !pView->IsShownXorVisible(pWindow) )
{
pView->ShowShownXor(pWindow);
}
}
/*************************************************************************
|*
|* Aktivate function
|*
\************************************************************************/
void FuDraw::Activate()
{
FuPoor::Activate();
ForcePointer();
}
/*************************************************************************
|*
|* Deaktivate function
|*
\************************************************************************/
void FuDraw::Deactivate()
{
FuPoor::Deactivate();
}
/*************************************************************************
|*
|* Toggle mouse-pointer
|*
\************************************************************************/
void FuDraw::ForcePointer(const MouseEvent* pMEvt)
{
Point aPnt;
USHORT nModifier = 0;
BOOL bLeftDown = FALSE;
BOOL bDefPointer = TRUE;
if (pMEvt)
{
aPnt = pWindow->PixelToLogic(pMEvt->GetPosPixel());
nModifier = pMEvt->GetModifier();
bLeftDown = pMEvt->IsLeft();
}
else
{
aPnt = pWindow->PixelToLogic(pWindow->GetPointerPosPixel());
}
BOOL bIsAction = pView->IsAction();
if (pView->IsDragObj())
{
if (SD_MOD()->GetWaterCan() && !pView->HitHandle(aPnt, *pWindow))
{
/******************************************************************
* Giesskannenmodus
******************************************************************/
bDefPointer = FALSE;
pWindow->SetPointer(Pointer(POINTER_FILL));
}
}
else
{
SdrHdl* pHdl = pView->HitHandle(aPnt, *pWindow);
if (SD_MOD()->GetWaterCan() && !pHdl)
{
/******************************************************************
* Giesskannenmodus
******************************************************************/
bDefPointer = FALSE;
pWindow->SetPointer(Pointer(POINTER_FILL));
}
else if (!pHdl &&
pViewShell->GetViewFrame()->HasChildWindow(SvxBmpMaskChildWindow::GetChildWindowId()))
{
/******************************************************************
* Pipettenmodus
******************************************************************/
SvxBmpMask* pMask = (SvxBmpMask*) pViewShell->GetViewFrame()->GetChildWindow(SvxBmpMaskChildWindow::GetChildWindowId())->GetWindow();
if (pMask && pMask->IsEyedropping())
{
bDefPointer = FALSE;
pWindow->SetPointer(Pointer(POINTER_REFHAND));
}
}
else if (!pView->IsAction())
{
SdrObject* pObj = NULL;
SdrPageView* pPV = NULL;
SdrViewEvent aVEvt;
SdrHitKind eHit = SDRHIT_NONE;
SdrDragMode eDragMode = pView->GetDragMode();
USHORT nHitLog(USHORT (pWindow->PixelToLogic(Size(HITPIX,0)).Width()));
if (pMEvt)
{
eHit = pView->PickAnything(*pMEvt, SDRMOUSEMOVE, aVEvt);
}
if ((eDragMode == SDRDRAG_ROTATE) && (eHit == SDRHIT_MARKEDOBJECT))
{
// The goal of this request is show always the rotation-arrow for 3D-objects at rotation-modus
// Independent of the settings at Extras->Optionen->Grafik "Objekte immer verschieben"
// 2D-objects acquit in an other way. Otherwise, the rotation of 3d-objects around any axises
// wouldn't be possible per default.
const SdrMarkList& rMarkList = pView->GetMarkList();
SdrObject* pObject = rMarkList.GetMark(0)->GetObj();
if ((pObject->ISA(E3dObject)) && (rMarkList.GetMarkCount() == 1))
{
pWindow->SetPointer(Pointer(POINTER_ROTATE));
bDefPointer = FALSE; // Otherwise it'll be calles Joes routine and the mousepointer will reconfigurate again
}
}
if (eHit == SDRHIT_NONE)
{
// found nothing -> look after at the masterpage
pView->PickObj(aPnt, pObj, pPV, SDRSEARCH_ALSOONMASTER);
}
else if (eHit == SDRHIT_UNMARKEDOBJECT)
{
pObj = aVEvt.pObj;
}
else if (eHit == SDRHIT_TEXTEDITOBJ && this->ISA(FuSelection))
{
UINT16 nSdrObjKind = aVEvt.pObj->GetObjIdentifier();
if ( nSdrObjKind != OBJ_TEXT &&
nSdrObjKind != OBJ_TITLETEXT &&
nSdrObjKind != OBJ_OUTLINETEXT &&
aVEvt.pObj->IsEmptyPresObj() )
{
pObj = NULL;
bDefPointer = FALSE;
pWindow->SetPointer(Pointer(POINTER_ARROW));
}
}
if (pObj && pMEvt && !pMEvt->IsMod2() && this->ISA(FuSelection))
{
// Auf Animation oder ImageMap pruefen
bDefPointer = !SetPointer(pObj, aPnt);
if (bDefPointer && (pObj->ISA(SdrObjGroup) || pObj->ISA(E3dPolyScene)))
{
// In die Gruppe hineinschauen
if (pView->PickObj(aPnt, pObj, pPV, SDRSEARCH_ALSOONMASTER | SDRSEARCH_DEEP))
bDefPointer = !SetPointer(pObj, aPnt);
}
}
}
}
if (bDefPointer)
{
pWindow->SetPointer(pView->GetPreferedPointer(
aPnt, pWindow, nModifier, bLeftDown));
}
}
/*************************************************************************
|*
|* Set cursor for animaton or imagemap
|*
\************************************************************************/
BOOL FuDraw::SetPointer(SdrObject* pObj, const Point& rPos)
{
BOOL bSet = FALSE;
BOOL bAnimationInfo = (!pDocSh->ISA(SdGraphicDocShell) &&
pDoc->GetAnimationInfo(pObj)) ? TRUE:FALSE;
BOOL bImageMapInfo = FALSE;
if (!bAnimationInfo)
bImageMapInfo = pDoc->GetIMapInfo(pObj) ? TRUE:FALSE;
if (bAnimationInfo || bImageMapInfo)
{
const SetOfByte* pVisiLayer = &pView->GetPageViewPvNum(0)->GetVisibleLayers();
USHORT nHitLog(USHORT (pWindow->PixelToLogic(Size(HITPIX,0)).Width()));
long n2HitLog(nHitLog * 2);
Point aHitPosR(rPos);
Point aHitPosL(rPos);
Point aHitPosT(rPos);
Point aHitPosB(rPos);
aHitPosR.X() += n2HitLog;
aHitPosL.X() -= n2HitLog;
aHitPosT.Y() += n2HitLog;
aHitPosB.Y() -= n2HitLog;
if ( !pObj->IsClosedObj() ||
( pObj->IsHit(aHitPosR, nHitLog, pVisiLayer) &&
pObj->IsHit(aHitPosL, nHitLog, pVisiLayer) &&
pObj->IsHit(aHitPosT, nHitLog, pVisiLayer) &&
pObj->IsHit(aHitPosB, nHitLog, pVisiLayer) ) )
{
/**********************************************************
* hit inside the object (without margin) or open object
********************************************************/
if (bAnimationInfo)
{
/******************************************************
* Click-Action
******************************************************/
SdAnimationInfo* pInfo = pDoc->GetAnimationInfo(pObj);
if ((pView->ISA(SdDrawView) &&
((SdDrawView*) pView)->IsActionMode() &&
(pInfo->eClickAction == presentation::ClickAction_BOOKMARK ||
pInfo->eClickAction == presentation::ClickAction_DOCUMENT ||
pInfo->eClickAction == presentation::ClickAction_PREVPAGE ||
pInfo->eClickAction == presentation::ClickAction_NEXTPAGE ||
pInfo->eClickAction == presentation::ClickAction_FIRSTPAGE ||
pInfo->eClickAction == presentation::ClickAction_LASTPAGE ||
pInfo->eClickAction == presentation::ClickAction_VERB ||
pInfo->eClickAction == presentation::ClickAction_PROGRAM ||
pInfo->eClickAction == presentation::ClickAction_MACRO ||
pInfo->eClickAction == presentation::ClickAction_SOUND))
||
(pView->ISA(SdDrawView) &&
((SdDrawView*) pView)->GetSlideShow() &&
(pInfo->eClickAction == presentation::ClickAction_VANISH ||
pInfo->eClickAction == presentation::ClickAction_INVISIBLE ||
pInfo->eClickAction == presentation::ClickAction_STOPPRESENTATION ||
(pInfo->bActive &&
( pInfo->eEffect != presentation::AnimationEffect_NONE ||
pInfo->eTextEffect != presentation::AnimationEffect_NONE )))))
{
// Animations-Objekt
bSet = TRUE;
pWindow->SetPointer(Pointer(POINTER_REFHAND));
}
}
else if (bImageMapInfo &&
pDoc->GetHitIMapObject(pObj, rPos, *pWindow))
{
/******************************************************
* ImageMap
******************************************************/
bSet = TRUE;
pWindow->SetPointer(Pointer(POINTER_REFHAND));
}
}
}
return bSet;
}
/*************************************************************************
|*
|* Response of doubleclick
|*
\************************************************************************/
void FuDraw::DoubleClick(const MouseEvent& rMEvt)
{
SdrObject* pObj = NULL;
SdrPageView* pPV = NULL;
USHORT nHitLog = USHORT ( pWindow->PixelToLogic(Size(HITPIX,0)).Width() );
if ( pView->HasMarkedObj() )
{
const SdrMarkList& rMarkList = pView->GetMarkList();
if (rMarkList.GetMarkCount() == 1)
{
SdrMark* pMark = rMarkList.GetMark(0);
SdrObject* pObj = pMark->GetObj();
UINT32 nInv = pObj->GetObjInventor();
UINT16 nSdrObjKind = pObj->GetObjIdentifier();
if (nInv == SdrInventor && nSdrObjKind == OBJ_OLE2)
{
SdDrawDocShell* pDocSh = pDoc->GetDocSh();
if ( !pDocSh->IsUIActive() )
{
/**********************************************************
* aktivate OLE-object
**********************************************************/
pView->HideMarkHdl(NULL);
pViewShell->ActivateObject( (SdrOle2Obj*) pObj, 0);
}
}
else if (nInv == SdrInventor && nSdrObjKind == OBJ_GRAF && pObj->IsEmptyPresObj() )
{
pViewShell->GetViewFrame()->
GetDispatcher()->Execute( SID_INSERT_GRAPHIC,
SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD );
}
else if ( ( pObj->ISA(SdrTextObj) || pObj->ISA(SdrObjGroup) ) &&
!SD_MOD()->GetWaterCan() &&
pViewShell->GetFrameView()->IsDoubleClickTextEdit() &&
!pDocSh->IsReadOnly())
{
SfxUInt16Item aItem(SID_TEXTEDIT, 2);
pViewShell->GetViewFrame()->GetDispatcher()->
Execute(SID_TEXTEDIT, SFX_CALLMODE_ASYNCHRON |
SFX_CALLMODE_RECORD, &aItem, 0L);
}
else if (nInv == SdrInventor && nSdrObjKind == OBJ_GRUP)
{
// hit group -> select subobject
pView->UnMarkAll();
pView->MarkObj(aMDPos, nHitLog, rMEvt.IsShift(), TRUE);
}
}
}
else
pViewShell->GetViewFrame()->GetDispatcher()->Execute(SID_OBJECT_SELECT, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD);
}
/*************************************************************************
|*
|* Help-event
|*
\************************************************************************/
BOOL FuDraw::RequestHelp(const HelpEvent& rHEvt)
{
BOOL bReturn = FALSE;
if (Help::IsBalloonHelpEnabled() || Help::IsQuickHelpEnabled())
{
SdrViewEvent aVEvt;
MouseEvent aMEvt(pWindow->GetPointerPosPixel(), 1, 0, MOUSE_LEFT);
SdrHitKind eHit = pView->PickAnything(aMEvt, SDRMOUSEBUTTONDOWN, aVEvt);
SdrObject* pObj = aVEvt.pObj;
if (eHit != SDRHIT_NONE && pObj != NULL)
{
Point aPosPixel = rHEvt.GetMousePosPixel();
bReturn = SetHelpText(pObj, aPosPixel, aVEvt);
if (!bReturn && (pObj->ISA(SdrObjGroup) || pObj->ISA(E3dPolyScene)))
{
// In die Gruppe hineinschauen
SdrPageView* pPV = NULL;
Point aPos(pWindow->PixelToLogic(pWindow->ScreenToOutputPixel(aPosPixel)));
if (pView->PickObj(aPos, pObj, pPV, SDRSEARCH_ALSOONMASTER | SDRSEARCH_DEEP))
bReturn = SetHelpText(pObj, aPosPixel, aVEvt);
}
}
}
if (!bReturn)
{
bReturn = FuPoor::RequestHelp(rHEvt);
}
return(bReturn);
}
/*************************************************************************
|*
|* Command-event
|*
\************************************************************************/
BOOL FuDraw::SetHelpText(SdrObject* pObj, const Point& rPosPixel, const SdrViewEvent& rVEvt)
{
BOOL bSet = FALSE;
String aHelpText;
Point aPos(pWindow->PixelToLogic(pWindow->ScreenToOutputPixel(rPosPixel)));
// URL fuer IMapObject unter Pointer ist Hilfetext
if ( pDoc->GetIMapInfo(pObj) )
{
IMapObject* pIMapObj = pDoc->GetHitIMapObject(pObj, aPos, *pWindow );
if ( pIMapObj )
{
// show name
aHelpText = pIMapObj->GetDescription();
if (aHelpText.Len() == 0)
{
// show url if no name is available
aHelpText = pIMapObj->GetURL();
}
}
}
else if (!pDocSh->ISA(SdGraphicDocShell) && pDoc->GetAnimationInfo(pObj))
{
SdAnimationInfo* pInfo = pDoc->GetAnimationInfo(pObj);
switch (pInfo->eClickAction)
{
case presentation::ClickAction_PREVPAGE:
{
// jump to the prior page
aHelpText = String(SdResId(STR_CLICK_ACTION_PREVPAGE));
}
break;
case presentation::ClickAction_NEXTPAGE:
{
// jump to the next page
aHelpText = String(SdResId(STR_CLICK_ACTION_NEXTPAGE));
}
break;
case presentation::ClickAction_FIRSTPAGE:
{
// jump to the first page
aHelpText = String(SdResId(STR_CLICK_ACTION_FIRSTPAGE));
}
break;
case presentation::ClickAction_LASTPAGE:
{
// jump to the last page
aHelpText = String(SdResId(STR_CLICK_ACTION_LASTPAGE));
}
break;
case presentation::ClickAction_BOOKMARK:
{
// jump to object/page
aHelpText = String(SdResId(STR_CLICK_ACTION_BOOKMARK));
aHelpText.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ": " ) );
aHelpText.Append( pInfo->aBookmark );
}
break;
case presentation::ClickAction_DOCUMENT:
{
// jump to document (object/page)
aHelpText = String(SdResId(STR_CLICK_ACTION_DOCUMENT));
aHelpText.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ": " ) );
aHelpText.Append( pInfo->aBookmark );
}
break;
case presentation::ClickAction_PROGRAM:
{
// execute program
aHelpText = String(SdResId(STR_CLICK_ACTION_PROGRAM));
aHelpText.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ": " ) );
aHelpText.Append( pInfo->aBookmark );
}
break;
case presentation::ClickAction_MACRO:
{
// execute program
aHelpText = String(SdResId(STR_CLICK_ACTION_MACRO));
aHelpText.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ": " ) );
sal_Unicode cToken = '.';
aHelpText.Append( pInfo->aBookmark.GetToken( 2, cToken ) );
aHelpText.Append( cToken );
aHelpText.Append( pInfo->aBookmark.GetToken( 1, cToken ) );
aHelpText.Append( cToken );
aHelpText.Append( pInfo->aBookmark.GetToken( 0, cToken ) );
}
break;
case presentation::ClickAction_SOUND:
{
// play-back sound
aHelpText = String(SdResId(STR_CLICK_ACTION_SOUND));
}
break;
case presentation::ClickAction_VERB:
{
// execute OLE-verb
aHelpText = String(SdResId(STR_CLICK_ACTION_VERB));
}
break;
case presentation::ClickAction_STOPPRESENTATION:
{
// quit presentation
aHelpText = String(SdResId(STR_CLICK_ACTION_STOPPRESENTATION));
}
break;
}
}
else if (rVEvt.pURLField)
{
/**************************************************************
* URL-Field
**************************************************************/
aHelpText = rVEvt.pURLField->GetURL();
}
if (aHelpText.Len())
{
bSet = TRUE;
Rectangle aLogicPix = pWindow->LogicToPixel(pObj->GetLogicRect());
Rectangle aScreenRect(pWindow->OutputToScreenPixel(aLogicPix.TopLeft()),
pWindow->OutputToScreenPixel(aLogicPix.BottomRight()));
if (Help::IsBalloonHelpEnabled())
Help::ShowBalloon( (Window*)pWindow, rPosPixel, aScreenRect, aHelpText);
else if (Help::IsQuickHelpEnabled())
Help::ShowQuickHelp( (Window*)pWindow, aScreenRect, aHelpText);
}
return bSet;
}