1*5b190011SAndrew Rist /************************************************************** 2*5b190011SAndrew Rist * 3*5b190011SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*5b190011SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*5b190011SAndrew Rist * distributed with this work for additional information 6*5b190011SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*5b190011SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*5b190011SAndrew Rist * "License"); you may not use this file except in compliance 9*5b190011SAndrew Rist * with the License. You may obtain a copy of the License at 10*5b190011SAndrew Rist * 11*5b190011SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*5b190011SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*5b190011SAndrew Rist * software distributed under the License is distributed on an 15*5b190011SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*5b190011SAndrew Rist * KIND, either express or implied. See the License for the 17*5b190011SAndrew Rist * specific language governing permissions and limitations 18*5b190011SAndrew Rist * under the License. 19*5b190011SAndrew Rist * 20*5b190011SAndrew Rist *************************************************************/ 21*5b190011SAndrew Rist 22*5b190011SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_sd.hxx" 26cdf0e10cSrcweir 27cdf0e10cSrcweir 28cdf0e10cSrcweir 29cdf0e10cSrcweir #include "fudspord.hxx" 30cdf0e10cSrcweir 31cdf0e10cSrcweir #include <svx/svxids.hrc> 32cdf0e10cSrcweir #include <vcl/pointr.hxx> 33cdf0e10cSrcweir 34cdf0e10cSrcweir #include "app.hrc" 35cdf0e10cSrcweir #include "fupoor.hxx" 36cdf0e10cSrcweir #include "ViewShell.hxx" 37cdf0e10cSrcweir #include "View.hxx" 38cdf0e10cSrcweir #ifndef SD_WINDOW_SHELL_HXX 39cdf0e10cSrcweir #include "Window.hxx" 40cdf0e10cSrcweir #endif 41cdf0e10cSrcweir #include "drawdoc.hxx" 42cdf0e10cSrcweir 43cdf0e10cSrcweir namespace sd { 44cdf0e10cSrcweir 45cdf0e10cSrcweir TYPEINIT1( FuDisplayOrder, FuPoor ); 46cdf0e10cSrcweir 47cdf0e10cSrcweir /************************************************************************* 48cdf0e10cSrcweir |* 49cdf0e10cSrcweir |* Konstruktor 50cdf0e10cSrcweir |* 51cdf0e10cSrcweir \************************************************************************/ 52cdf0e10cSrcweir 53cdf0e10cSrcweir FuDisplayOrder::FuDisplayOrder( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq) 54cdf0e10cSrcweir : FuPoor(pViewSh, pWin, pView, pDoc, rReq) 55cdf0e10cSrcweir , mpRefObj(NULL) 56cdf0e10cSrcweir , mpOverlay(0L) 57cdf0e10cSrcweir { 58cdf0e10cSrcweir } 59cdf0e10cSrcweir 60cdf0e10cSrcweir /************************************************************************* 61cdf0e10cSrcweir |* 62cdf0e10cSrcweir |* Destruktor 63cdf0e10cSrcweir |* 64cdf0e10cSrcweir \************************************************************************/ 65cdf0e10cSrcweir 66cdf0e10cSrcweir FuDisplayOrder::~FuDisplayOrder() 67cdf0e10cSrcweir { 68cdf0e10cSrcweir implClearOverlay(); 69cdf0e10cSrcweir } 70cdf0e10cSrcweir 71cdf0e10cSrcweir void FuDisplayOrder::implClearOverlay() 72cdf0e10cSrcweir { 73cdf0e10cSrcweir if(mpOverlay) 74cdf0e10cSrcweir { 75cdf0e10cSrcweir delete mpOverlay; 76cdf0e10cSrcweir mpOverlay = 0L; 77cdf0e10cSrcweir } 78cdf0e10cSrcweir } 79cdf0e10cSrcweir 80cdf0e10cSrcweir FunctionReference FuDisplayOrder::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq ) 81cdf0e10cSrcweir { 82cdf0e10cSrcweir FunctionReference xFunc( new FuDisplayOrder( pViewSh, pWin, pView, pDoc, rReq ) ); 83cdf0e10cSrcweir return xFunc; 84cdf0e10cSrcweir } 85cdf0e10cSrcweir 86cdf0e10cSrcweir /************************************************************************* 87cdf0e10cSrcweir |* 88cdf0e10cSrcweir |* MouseButtonDown-event 89cdf0e10cSrcweir |* 90cdf0e10cSrcweir \************************************************************************/ 91cdf0e10cSrcweir 92cdf0e10cSrcweir sal_Bool FuDisplayOrder::MouseButtonDown(const MouseEvent& rMEvt) 93cdf0e10cSrcweir { 94cdf0e10cSrcweir // #95491# remember button state for creation of own MouseEvents 95cdf0e10cSrcweir SetMouseButtonCode(rMEvt.GetButtons()); 96cdf0e10cSrcweir 97cdf0e10cSrcweir return sal_True; 98cdf0e10cSrcweir } 99cdf0e10cSrcweir 100cdf0e10cSrcweir /************************************************************************* 101cdf0e10cSrcweir |* 102cdf0e10cSrcweir |* MouseMove-event 103cdf0e10cSrcweir |* 104cdf0e10cSrcweir \************************************************************************/ 105cdf0e10cSrcweir 106cdf0e10cSrcweir sal_Bool FuDisplayOrder::MouseMove(const MouseEvent& rMEvt) 107cdf0e10cSrcweir { 108cdf0e10cSrcweir SdrObject* pPickObj; 109cdf0e10cSrcweir SdrPageView* pPV; 110cdf0e10cSrcweir Point aPnt( mpWindow->PixelToLogic( rMEvt.GetPosPixel() ) ); 111cdf0e10cSrcweir 112cdf0e10cSrcweir if ( mpView->PickObj(aPnt, mpView->getHitTolLog(), pPickObj, pPV) ) 113cdf0e10cSrcweir { 114cdf0e10cSrcweir if (mpRefObj != pPickObj) 115cdf0e10cSrcweir { 116cdf0e10cSrcweir // delete current overlay 117cdf0e10cSrcweir implClearOverlay(); 118cdf0e10cSrcweir 119cdf0e10cSrcweir // create new one 120cdf0e10cSrcweir mpOverlay = new SdrDropMarkerOverlay(*mpView, *pPickObj); 121cdf0e10cSrcweir 122cdf0e10cSrcweir // remember referenced object 123cdf0e10cSrcweir mpRefObj = pPickObj; 124cdf0e10cSrcweir } 125cdf0e10cSrcweir } 126cdf0e10cSrcweir else 127cdf0e10cSrcweir { 128cdf0e10cSrcweir mpRefObj = NULL; 129cdf0e10cSrcweir implClearOverlay(); 130cdf0e10cSrcweir } 131cdf0e10cSrcweir 132cdf0e10cSrcweir return sal_True; 133cdf0e10cSrcweir } 134cdf0e10cSrcweir 135cdf0e10cSrcweir /************************************************************************* 136cdf0e10cSrcweir |* 137cdf0e10cSrcweir |* MouseButtonUp-event 138cdf0e10cSrcweir |* 139cdf0e10cSrcweir \************************************************************************/ 140cdf0e10cSrcweir 141cdf0e10cSrcweir sal_Bool FuDisplayOrder::MouseButtonUp(const MouseEvent& rMEvt) 142cdf0e10cSrcweir { 143cdf0e10cSrcweir // #95491# remember button state for creation of own MouseEvents 144cdf0e10cSrcweir SetMouseButtonCode(rMEvt.GetButtons()); 145cdf0e10cSrcweir 146cdf0e10cSrcweir SdrPageView* pPV = NULL; 147cdf0e10cSrcweir Point aPnt( mpWindow->PixelToLogic( rMEvt.GetPosPixel() ) ); 148cdf0e10cSrcweir 149cdf0e10cSrcweir if ( mpView->PickObj(aPnt, mpView->getHitTolLog(), mpRefObj, pPV) ) 150cdf0e10cSrcweir { 151cdf0e10cSrcweir if (nSlotId == SID_BEFORE_OBJ) 152cdf0e10cSrcweir { 153cdf0e10cSrcweir mpView->PutMarkedInFrontOfObj(mpRefObj); 154cdf0e10cSrcweir } 155cdf0e10cSrcweir else 156cdf0e10cSrcweir { 157cdf0e10cSrcweir mpView->PutMarkedBehindObj(mpRefObj); 158cdf0e10cSrcweir } 159cdf0e10cSrcweir } 160cdf0e10cSrcweir 161cdf0e10cSrcweir mpViewShell->Cancel(); 162cdf0e10cSrcweir 163cdf0e10cSrcweir return sal_True; 164cdf0e10cSrcweir } 165cdf0e10cSrcweir 166cdf0e10cSrcweir /************************************************************************* 167cdf0e10cSrcweir |* 168cdf0e10cSrcweir |* Function aktivieren 169cdf0e10cSrcweir |* 170cdf0e10cSrcweir \************************************************************************/ 171cdf0e10cSrcweir 172cdf0e10cSrcweir void FuDisplayOrder::Activate() 173cdf0e10cSrcweir { 174cdf0e10cSrcweir maPtr = mpWindow->GetPointer(); 175cdf0e10cSrcweir mpWindow->SetPointer( Pointer( POINTER_REFHAND ) ); 176cdf0e10cSrcweir } 177cdf0e10cSrcweir 178cdf0e10cSrcweir /************************************************************************* 179cdf0e10cSrcweir |* 180cdf0e10cSrcweir |* Function deaktivieren 181cdf0e10cSrcweir |* 182cdf0e10cSrcweir \************************************************************************/ 183cdf0e10cSrcweir 184cdf0e10cSrcweir void FuDisplayOrder::Deactivate() 185cdf0e10cSrcweir { 186cdf0e10cSrcweir mpWindow->SetPointer( maPtr ); 187cdf0e10cSrcweir } 188cdf0e10cSrcweir 189cdf0e10cSrcweir 190cdf0e10cSrcweir } // end of namespace sd 191