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, SDRMOUSEBUTTONDOWN, 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, (OutputDevice*) NULL, 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, (OutputDevice*) NULL, 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, (OutputDevice*) NULL, 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, (OutputDevice*) NULL, 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, SDRMOUSEBUTTONDOWN, 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,2,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 0 : MouseEvent aMevt(oldPoint,1,3,MOUSE_LEFT,KEY_SHIFT);
328 : // MT IA2: Not used?
329 : // sal_uInt16 ubuttons = aMevt.GetButtons();
330 : // sal_uInt16 uMod = aMevt.GetModifier();
331 0 : MouseButtonDown(aMevt);
332 0 : mpWindow->CaptureMouse();
333 : //simulate mouse button up action
334 0 : MouseEvent rMEvt(oldPoint+Point(0,0),1,17, MOUSE_LEFT, KEY_SHIFT);
335 0 : MouseButtonUp(rMEvt);
336 0 : bReturn= true;
337 : }
338 : }
339 0 : break;
340 : }
341 :
342 0 : if(!bReturn)
343 0 : bReturn = FuDraw::KeyInput(rKEvt);
344 :
345 0 : return bReturn;
346 : }
347 :
348 : //Add Shift+UP/DOWN/LEFT/RIGHT key to move the position of insert point, and
349 : //SHIFT+ENTER key to decide the position and draw the new insert point
350 0 : void FuEditGluePoints::ForcePointer(const MouseEvent* pMEvt)
351 : {
352 0 : if(bBeginInsertPoint && pMEvt)
353 : {
354 0 : MouseEvent aMEvt(pMEvt->GetPosPixel(), pMEvt->GetClicks(),
355 0 : pMEvt->GetMode(), pMEvt->GetButtons(), pMEvt->GetModifier() & ~KEY_SHIFT);
356 0 : FuDraw::ForcePointer(&aMEvt);
357 : }
358 : else
359 : {
360 0 : FuDraw::ForcePointer(pMEvt);
361 : }
362 0 : }
363 :
364 0 : bool FuEditGluePoints::Command(const CommandEvent& rCEvt)
365 : {
366 0 : mpView->SetActualWin( mpWindow );
367 0 : return FuPoor::Command( rCEvt );
368 : }
369 :
370 0 : void FuEditGluePoints::Activate()
371 : {
372 0 : mpView->SetGluePointEditMode();
373 0 : FuDraw::Activate();
374 0 : }
375 :
376 0 : void FuEditGluePoints::Deactivate()
377 : {
378 0 : mpView->SetGluePointEditMode( false );
379 0 : FuDraw::Deactivate();
380 0 : }
381 :
382 0 : void FuEditGluePoints::ReceiveRequest(SfxRequest& rReq)
383 : {
384 0 : switch (rReq.GetSlot())
385 : {
386 : case SID_GLUE_INSERT_POINT:
387 : {
388 0 : mpView->SetInsGluePointMode(!mpView->IsInsGluePointMode());
389 : }
390 0 : break;
391 :
392 : case SID_GLUE_ESCDIR_LEFT:
393 : {
394 : mpView->SetMarkedGluePointsEscDir( SDRESC_LEFT,
395 0 : !mpView->IsMarkedGluePointsEscDir( SDRESC_LEFT ) );
396 : }
397 0 : break;
398 :
399 : case SID_GLUE_ESCDIR_RIGHT:
400 : {
401 : mpView->SetMarkedGluePointsEscDir( SDRESC_RIGHT,
402 0 : !mpView->IsMarkedGluePointsEscDir( SDRESC_RIGHT ) );
403 : }
404 0 : break;
405 :
406 : case SID_GLUE_ESCDIR_TOP:
407 : {
408 : mpView->SetMarkedGluePointsEscDir( SDRESC_TOP,
409 0 : !mpView->IsMarkedGluePointsEscDir( SDRESC_TOP ) );
410 : }
411 0 : break;
412 :
413 : case SID_GLUE_ESCDIR_BOTTOM:
414 : {
415 : mpView->SetMarkedGluePointsEscDir( SDRESC_BOTTOM,
416 0 : !mpView->IsMarkedGluePointsEscDir( SDRESC_BOTTOM ) );
417 : }
418 0 : break;
419 :
420 : case SID_GLUE_PERCENT:
421 : {
422 0 : const SfxItemSet* pSet = rReq.GetArgs();
423 0 : const SfxPoolItem& rItem = pSet->Get(SID_GLUE_PERCENT);
424 0 : bool bPercent = ((const SfxBoolItem&) rItem).GetValue();
425 0 : mpView->SetMarkedGluePointsPercent(bPercent);
426 : }
427 0 : break;
428 :
429 : case SID_GLUE_HORZALIGN_CENTER:
430 : {
431 0 : mpView->SetMarkedGluePointsAlign(false, SDRHORZALIGN_CENTER);
432 : }
433 0 : break;
434 :
435 : case SID_GLUE_HORZALIGN_LEFT:
436 : {
437 0 : mpView->SetMarkedGluePointsAlign(false, SDRHORZALIGN_LEFT);
438 : }
439 0 : break;
440 :
441 : case SID_GLUE_HORZALIGN_RIGHT:
442 : {
443 0 : mpView->SetMarkedGluePointsAlign(false, SDRHORZALIGN_RIGHT);
444 : }
445 0 : break;
446 :
447 : case SID_GLUE_VERTALIGN_CENTER:
448 : {
449 0 : mpView->SetMarkedGluePointsAlign(true, SDRVERTALIGN_CENTER);
450 : }
451 0 : break;
452 :
453 : case SID_GLUE_VERTALIGN_TOP:
454 : {
455 0 : mpView->SetMarkedGluePointsAlign(true, SDRVERTALIGN_TOP);
456 : }
457 0 : break;
458 :
459 : case SID_GLUE_VERTALIGN_BOTTOM:
460 : {
461 0 : mpView->SetMarkedGluePointsAlign(true, SDRVERTALIGN_BOTTOM);
462 : }
463 0 : break;
464 : }
465 :
466 : // at the end, call base class
467 0 : FuPoor::ReceiveRequest(rReq);
468 0 : }
469 :
470 114 : } // end of namespace sd
471 :
472 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|