LCOV - code coverage report
Current view: top level - sd/source/ui/func - fuediglu.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 200 0.5 %
Date: 2015-06-13 12:38:46 Functions: 2 21 9.5 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "fuediglu.hxx"
      21             : #include <svl/eitem.hxx>
      22             : #include <svx/dialogs.hrc>
      23             : #include <svx/svdglue.hxx>
      24             : #include <sfx2/request.hxx>
      25             : 
      26             : #include "app.hrc"
      27             : #include "strings.hrc"
      28             : #include "res_bmp.hrc"
      29             : #include "Window.hxx"
      30             : #include "drawdoc.hxx"
      31             : #include "FrameView.hxx"
      32             : #include "View.hxx"
      33             : #include "ViewShell.hxx"
      34             : #include "ViewShellBase.hxx"
      35             : #include "ToolBarManager.hxx"
      36             : 
      37             : namespace sd {
      38             : 
      39           0 : TYPEINIT1( FuEditGluePoints, FuDraw );
      40             : 
      41           0 : FuEditGluePoints::FuEditGluePoints (
      42             :     ViewShell* pViewSh,
      43             :     ::sd::Window* pWin,
      44             :     ::sd::View* pView,
      45             :     SdDrawDocument* pDoc,
      46             :     SfxRequest& rReq)
      47             :     : FuDraw(pViewSh, pWin, pView, pDoc, rReq)
      48             :      //Add Shift+UP/DOWN/LEFT/RIGHT key to move the position of insert point,
      49             :      //and SHIFT+ENTER key to decide the position and draw the new insert point
      50             :      ,bBeginInsertPoint(false),
      51           0 :     oldPoint(0,0)
      52             : {
      53           0 : }
      54             : 
      55           0 : rtl::Reference<FuPoor> FuEditGluePoints::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq, bool bPermanent )
      56             : {
      57             :     FuEditGluePoints* pFunc;
      58           0 :     rtl::Reference<FuPoor> xFunc( pFunc = new FuEditGluePoints( pViewSh, pWin, pView, pDoc, rReq ) );
      59           0 :     xFunc->DoExecute(rReq);
      60           0 :     pFunc->SetPermanent( bPermanent );
      61           0 :     return xFunc;
      62             : }
      63             : 
      64           0 : void FuEditGluePoints::DoExecute( SfxRequest& rReq )
      65             : {
      66           0 :     FuDraw::DoExecute( rReq );
      67           0 :     mpView->SetInsGluePointMode(false);
      68           0 :     mpViewShell->GetViewShellBase().GetToolBarManager()->AddToolBar(
      69             :         ToolBarManager::TBG_FUNCTION,
      70           0 :         ToolBarManager::msGluePointsToolBar);
      71           0 : }
      72             : 
      73           0 : FuEditGluePoints::~FuEditGluePoints()
      74             : {
      75           0 :     mpView->BrkAction();
      76           0 :     mpView->UnmarkAllGluePoints();
      77           0 :     mpView->SetInsGluePointMode(false);
      78           0 : }
      79             : 
      80           0 : bool FuEditGluePoints::MouseButtonDown(const MouseEvent& rMEvt)
      81             : {
      82           0 :     mpView->SetActualWin( mpWindow );
      83             : 
      84           0 :     bool bReturn = FuDraw::MouseButtonDown(rMEvt);
      85             : 
      86           0 :     if (mpView->IsAction())
      87             :     {
      88           0 :         if (rMEvt.IsRight())
      89           0 :             mpView->BckAction();
      90             : 
      91           0 :         return true;
      92             :     }
      93             : 
      94           0 :     if (rMEvt.IsLeft())
      95             :     {
      96           0 :         bReturn = true;
      97           0 :         sal_uInt16 nHitLog = sal_uInt16 ( mpWindow->PixelToLogic(Size(HITPIX,0)).Width() );
      98           0 :         sal_uInt16 nDrgLog = sal_uInt16 ( mpWindow->PixelToLogic(Size(DRGPIX,0)).Width() );
      99           0 :         mpWindow->CaptureMouse();
     100             : 
     101           0 :         SdrViewEvent aVEvt;
     102           0 :         SdrHitKind eHit = mpView->PickAnything(rMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt);
     103             : 
     104           0 :         if (eHit == SDRHIT_HANDLE)
     105             :         {
     106             :             // drag handle
     107           0 :             SdrHdl* pHdl = aVEvt.pHdl;
     108             : 
     109           0 :             if (mpView->IsGluePointMarked(aVEvt.pObj, aVEvt.nGlueId) && rMEvt.IsShift())
     110             :             {
     111           0 :                 mpView->UnmarkGluePoint(aVEvt.pObj, aVEvt.nGlueId, aVEvt.pPV);
     112           0 :                 pHdl = NULL;
     113             :             }
     114             : 
     115           0 :             if (pHdl)
     116             :             {
     117             :                 // drag handle
     118           0 :                 mpView->BegDragObj(aMDPos, nullptr, aVEvt.pHdl, nDrgLog);
     119             :             }
     120             :         }
     121           0 :         else if (eHit == SDRHIT_MARKEDOBJECT && mpView->IsInsGluePointMode())
     122             :         {
     123             :             // insert glue points
     124           0 :             mpView->BegInsGluePoint(aMDPos);
     125             :         }
     126           0 :         else if (eHit == SDRHIT_MARKEDOBJECT && rMEvt.IsMod1())
     127             :         {
     128             :             // select glue points
     129           0 :             if (!rMEvt.IsShift())
     130           0 :                 mpView->UnmarkAllGluePoints();
     131             : 
     132           0 :             mpView->BegMarkGluePoints(aMDPos);
     133             :         }
     134           0 :         else if (eHit == SDRHIT_MARKEDOBJECT && !rMEvt.IsShift() && !rMEvt.IsMod2())
     135             :         {
     136             :             // move object
     137           0 :             mpView->BegDragObj(aMDPos, nullptr, NULL, nDrgLog);
     138             :         }
     139           0 :         else if (eHit == SDRHIT_GLUEPOINT)
     140             :         {
     141             :             // select glue points
     142           0 :             if (!rMEvt.IsShift())
     143           0 :                 mpView->UnmarkAllGluePoints();
     144             : 
     145           0 :             mpView->MarkGluePoint(aVEvt.pObj, aVEvt.nGlueId, aVEvt.pPV);
     146           0 :             SdrHdl* pHdl = mpView->GetGluePointHdl(aVEvt.pObj, aVEvt.nGlueId);
     147             : 
     148           0 :             if (pHdl)
     149             :             {
     150           0 :                 mpView->BegDragObj(aMDPos, nullptr, pHdl, nDrgLog);
     151             :             }
     152             :         }
     153             :         else
     154             :         {
     155             :             // select or drag object
     156           0 :             if (!rMEvt.IsShift() && !rMEvt.IsMod2() && eHit == SDRHIT_UNMARKEDOBJECT)
     157             :             {
     158           0 :                mpView->UnmarkAllObj();
     159             :             }
     160             : 
     161           0 :             bool bMarked = false;
     162             : 
     163           0 :             if (!rMEvt.IsMod1())
     164             :             {
     165           0 :                 if (rMEvt.IsMod2())
     166             :                 {
     167           0 :                     bMarked = mpView->MarkNextObj(aMDPos, nHitLog, rMEvt.IsShift());
     168             :                 }
     169             :                 else
     170             :                 {
     171           0 :                     bMarked = mpView->MarkObj(aMDPos, nHitLog, rMEvt.IsShift());
     172             :                 }
     173             :             }
     174             : 
     175           0 :             if (bMarked &&
     176           0 :                 (!rMEvt.IsShift() || eHit == SDRHIT_MARKEDOBJECT))
     177             :             {
     178             :                 // move object
     179           0 :                 mpView->BegDragObj(aMDPos, nullptr, aVEvt.pHdl, nDrgLog);
     180             :             }
     181           0 :             else if (mpView->AreObjectsMarked())
     182             :             {
     183             :                 // select glue point
     184           0 :                 if (!rMEvt.IsShift())
     185           0 :                     mpView->UnmarkAllGluePoints();
     186             : 
     187           0 :                 mpView->BegMarkGluePoints(aMDPos);
     188             :             }
     189             :             else
     190             :             {
     191             :                 // select object
     192           0 :                 mpView->BegMarkObj(aMDPos);
     193             :             }
     194             :         }
     195             : 
     196           0 :         ForcePointer(&rMEvt);
     197             :     }
     198             : 
     199           0 :     return bReturn;
     200             : }
     201             : 
     202           0 : bool FuEditGluePoints::MouseMove(const MouseEvent& rMEvt)
     203             : {
     204           0 :     mpView->SetActualWin( mpWindow );
     205             : 
     206           0 :     FuDraw::MouseMove(rMEvt);
     207             : 
     208           0 :     if (mpView->IsAction())
     209             :     {
     210           0 :         Point aPix(rMEvt.GetPosPixel());
     211           0 :         Point aPnt( mpWindow->PixelToLogic(aPix) );
     212           0 :         ForceScroll(aPix);
     213           0 :         mpView->MovAction(aPnt);
     214             :     }
     215             : 
     216           0 :     ForcePointer(&rMEvt);
     217             : 
     218           0 :     return true;
     219             : }
     220             : 
     221           0 : bool FuEditGluePoints::MouseButtonUp(const MouseEvent& rMEvt)
     222             : {
     223           0 :     mpView->SetActualWin( mpWindow );
     224             : 
     225           0 :     bool bReturn = false;
     226             : 
     227           0 :     if (mpView->IsAction())
     228             :     {
     229           0 :         bReturn = true;
     230           0 :         mpView->EndAction();
     231             :     }
     232             : 
     233           0 :     FuDraw::MouseButtonUp(rMEvt);
     234             : 
     235           0 :     sal_uInt16 nDrgLog = sal_uInt16 ( mpWindow->PixelToLogic(Size(DRGPIX,0)).Width() );
     236           0 :     Point aPos = mpWindow->PixelToLogic( rMEvt.GetPosPixel() );
     237             : 
     238           0 :     if (std::abs(aMDPos.X() - aPos.X()) < nDrgLog &&
     239           0 :         std::abs(aMDPos.Y() - aPos.Y()) < nDrgLog &&
     240           0 :         !rMEvt.IsShift() && !rMEvt.IsMod2())
     241             :     {
     242           0 :         SdrViewEvent aVEvt;
     243           0 :         SdrHitKind eHit = mpView->PickAnything(rMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt);
     244             : 
     245           0 :         if (eHit == SDRHIT_NONE)
     246             :         {
     247             :             // click on position: deselect
     248           0 :             mpView->UnmarkAllObj();
     249           0 :         }
     250             :     }
     251             : 
     252           0 :     mpWindow->ReleaseMouse();
     253             : 
     254           0 :     return bReturn;
     255             : }
     256             : 
     257             : /**
     258             :  * Process keyboard input
     259             :  * @returns sal_True if a KeyEvent is being processed, sal_False otherwise
     260             :  */
     261           0 : bool FuEditGluePoints::KeyInput(const KeyEvent& rKEvt)
     262             : {
     263           0 :     mpView->SetActualWin( mpWindow );
     264             : 
     265             :     //Add Shift+UP/DOWN/LEFT/RIGHT key to move the position of insert point,
     266             :     //and SHIFT+ENTER key to decide the position and draw the new insert point
     267             : 
     268           0 :     bool bReturn = false;
     269             : 
     270           0 :     switch (rKEvt.GetKeyCode().GetCode())
     271             :     {
     272             :         case KEY_UP:
     273             :         case KEY_DOWN:
     274             :         case KEY_LEFT:
     275             :         case KEY_RIGHT:
     276             :         {
     277           0 :             if(rKEvt.GetKeyCode().IsShift()&& mpView->IsInsGluePointMode() ){
     278           0 :                 long nX = 0;
     279           0 :                 long nY = 0;
     280           0 :                 sal_uInt16  nCode = rKEvt.GetKeyCode().GetCode();
     281           0 :                 if (nCode == KEY_UP)
     282             :                 {
     283             :                     // Scroll nach oben
     284           0 :                     nX = 0;
     285           0 :                     nY =-1;
     286             :                 }
     287           0 :                 else if (nCode == KEY_DOWN)
     288             :                 {
     289             :                     // Scroll nach unten
     290           0 :                     nX = 0;
     291           0 :                     nY = 1;
     292             :                 }
     293           0 :                 else if (nCode == KEY_LEFT)
     294             :                 {
     295             :                     // Scroll nach links
     296           0 :                     nX =-1;
     297           0 :                     nY = 0;
     298             :                 }
     299           0 :                 else if (nCode == KEY_RIGHT)
     300             :                 {
     301             :                     // Scroll nach rechts
     302           0 :                     nX = 1;
     303           0 :                     nY = 0;
     304             :                 }
     305           0 :                 Point centerPoint;
     306           0 :                 Rectangle rect = mpView->GetMarkedObjRect();
     307           0 :                 centerPoint = mpWindow->LogicToPixel(rect.Center());
     308           0 :                 Point aPoint = bBeginInsertPoint? oldPoint:centerPoint;
     309           0 :                 Point ePoint = aPoint + Point(nX,nY);
     310           0 :                 mpWindow->SetPointerPosPixel(ePoint);
     311             :                 //simulate mouse move action
     312           0 :                 MouseEvent eMevt(ePoint, 1, MouseEventModifiers::DRAGMOVE, MOUSE_LEFT, 0);
     313           0 :                 MouseMove(eMevt);
     314           0 :                 oldPoint = ePoint;
     315           0 :                 bBeginInsertPoint = true;
     316           0 :                 bReturn = true;
     317             :             }
     318             :         }
     319           0 :         break;
     320             :         case KEY_RETURN:
     321           0 :             if(rKEvt.GetKeyCode().IsShift() && mpView->IsInsGluePointMode() )
     322             :             {
     323           0 :                 if(bBeginInsertPoint)
     324             :                 {
     325           0 :                     mpWindow->SetPointerPosPixel(oldPoint);
     326             :                     //simulate mouse button down action
     327             :                     MouseEvent aMevt(oldPoint, 1,
     328           0 :                                      MouseEventModifiers::SIMPLEMOVE | MouseEventModifiers::DRAGMOVE,
     329           0 :                                      MOUSE_LEFT, KEY_SHIFT);
     330             :                     // MT IA2: Not used?
     331             :                     // sal_uInt16 ubuttons = aMevt.GetButtons();
     332             :                     // sal_uInt16 uMod      = aMevt.GetModifier();
     333           0 :                     MouseButtonDown(aMevt);
     334           0 :                     mpWindow->CaptureMouse();
     335             :                     //simulate mouse button up action
     336           0 :                     MouseEvent rMEvt(oldPoint+Point(0,0), 1,
     337           0 :                                      MouseEventModifiers::SIMPLEMOVE | MouseEventModifiers::ENTERWINDOW,
     338           0 :                                      MOUSE_LEFT, KEY_SHIFT);
     339           0 :                     MouseButtonUp(rMEvt);
     340           0 :                     bReturn= true;
     341             :                 }
     342             :             }
     343           0 :             break;
     344             :     }
     345             : 
     346           0 :     if(!bReturn)
     347           0 :         bReturn = FuDraw::KeyInput(rKEvt);
     348             : 
     349           0 :     return bReturn;
     350             : }
     351             : 
     352             : //Add Shift+UP/DOWN/LEFT/RIGHT key to move the position of insert point, and
     353             : //SHIFT+ENTER key to decide the position and draw the new insert point
     354           0 : void FuEditGluePoints::ForcePointer(const MouseEvent* pMEvt)
     355             : {
     356           0 :     if(bBeginInsertPoint && pMEvt)
     357             :     {
     358           0 :         MouseEvent aMEvt(pMEvt->GetPosPixel(), pMEvt->GetClicks(),
     359           0 :             pMEvt->GetMode(), pMEvt->GetButtons(), pMEvt->GetModifier() & ~KEY_SHIFT);
     360           0 :         FuDraw::ForcePointer(&aMEvt);
     361             :     }
     362             :     else
     363             :     {
     364           0 :         FuDraw::ForcePointer(pMEvt);
     365             :     }
     366           0 : }
     367             : 
     368           0 : bool FuEditGluePoints::Command(const CommandEvent& rCEvt)
     369             : {
     370           0 :     mpView->SetActualWin( mpWindow );
     371           0 :     return FuPoor::Command( rCEvt );
     372             : }
     373             : 
     374           0 : void FuEditGluePoints::Activate()
     375             : {
     376           0 :     mpView->SetGluePointEditMode();
     377           0 :     FuDraw::Activate();
     378           0 : }
     379             : 
     380           0 : void FuEditGluePoints::Deactivate()
     381             : {
     382           0 :     mpView->SetGluePointEditMode( false );
     383           0 :     FuDraw::Deactivate();
     384           0 : }
     385             : 
     386           0 : void FuEditGluePoints::ReceiveRequest(SfxRequest& rReq)
     387             : {
     388           0 :     switch (rReq.GetSlot())
     389             :     {
     390             :         case SID_GLUE_INSERT_POINT:
     391             :         {
     392           0 :             mpView->SetInsGluePointMode(!mpView->IsInsGluePointMode());
     393             :         }
     394           0 :         break;
     395             : 
     396             :         case SID_GLUE_ESCDIR_LEFT:
     397             :         {
     398             :             mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::LEFT,
     399           0 :                     !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::LEFT ) );
     400             :         }
     401           0 :         break;
     402             : 
     403             :         case SID_GLUE_ESCDIR_RIGHT:
     404             :         {
     405             :             mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::RIGHT,
     406           0 :                     !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::RIGHT ) );
     407             :         }
     408           0 :         break;
     409             : 
     410             :         case SID_GLUE_ESCDIR_TOP:
     411             :         {
     412             :             mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::TOP,
     413           0 :                     !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::TOP ) );
     414             :         }
     415           0 :         break;
     416             : 
     417             :         case SID_GLUE_ESCDIR_BOTTOM:
     418             :         {
     419             :             mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::BOTTOM,
     420           0 :                     !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::BOTTOM ) );
     421             :         }
     422           0 :         break;
     423             : 
     424             :         case SID_GLUE_PERCENT:
     425             :         {
     426           0 :             const SfxItemSet* pSet = rReq.GetArgs();
     427           0 :             const SfxPoolItem& rItem = pSet->Get(SID_GLUE_PERCENT);
     428           0 :             bool bPercent = static_cast<const SfxBoolItem&>(rItem).GetValue();
     429           0 :             mpView->SetMarkedGluePointsPercent(bPercent);
     430             :         }
     431           0 :         break;
     432             : 
     433             :         case SID_GLUE_HORZALIGN_CENTER:
     434             :         {
     435           0 :             mpView->SetMarkedGluePointsAlign(false, SdrAlign::HORZ_CENTER);
     436             :         }
     437           0 :         break;
     438             : 
     439             :         case SID_GLUE_HORZALIGN_LEFT:
     440             :         {
     441           0 :             mpView->SetMarkedGluePointsAlign(false, SdrAlign::HORZ_LEFT);
     442             :         }
     443           0 :         break;
     444             : 
     445             :         case SID_GLUE_HORZALIGN_RIGHT:
     446             :         {
     447           0 :             mpView->SetMarkedGluePointsAlign(false, SdrAlign::HORZ_RIGHT);
     448             :         }
     449           0 :         break;
     450             : 
     451             :         case SID_GLUE_VERTALIGN_CENTER:
     452             :         {
     453           0 :             mpView->SetMarkedGluePointsAlign(true, SdrAlign::VERT_CENTER);
     454             :         }
     455           0 :         break;
     456             : 
     457             :         case SID_GLUE_VERTALIGN_TOP:
     458             :         {
     459           0 :             mpView->SetMarkedGluePointsAlign(true, SdrAlign::VERT_TOP);
     460             :         }
     461           0 :         break;
     462             : 
     463             :         case SID_GLUE_VERTALIGN_BOTTOM:
     464             :         {
     465           0 :             mpView->SetMarkedGluePointsAlign(true, SdrAlign::VERT_BOTTOM);
     466             :         }
     467           0 :         break;
     468             :     }
     469             : 
     470             :     // at the end, call base class
     471           0 :     FuPoor::ReceiveRequest(rReq);
     472           0 : }
     473             : 
     474          66 : } // end of namespace sd
     475             : 
     476             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11