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 <com/sun/star/embed/EmbedStates.hpp>
21 :
22 : #include <editeng/eeitem.hxx>
23 : #include <editeng/flditem.hxx>
24 : #include <svx/svddrgmt.hxx>
25 : #include <svx/svdoole2.hxx>
26 : #include <svx/svdotext.hxx>
27 : #include <sfx2/dispatch.hxx>
28 : #include <svtools/imapobj.hxx>
29 : #include <svx/svdouno.hxx>
30 : #include <svx/svdomedia.hxx>
31 : #include <svx/svdpagv.hxx>
32 : #include <editeng/outlobj.hxx>
33 : #include <svx/svdocapt.hxx>
34 : #include <sfx2/app.hxx>
35 :
36 : #include "fusel.hxx"
37 : #include "sc.hrc"
38 : #include "fudraw.hxx"
39 : #include "futext.hxx"
40 : #include "drawview.hxx"
41 : #include "tabvwsh.hxx"
42 : #include "drawpage.hxx"
43 : #include "globstr.hrc"
44 : #include "drwlayer.hxx"
45 : #include "userdat.hxx"
46 : #include "scmod.hxx"
47 : #include "client.hxx"
48 : #include "charthelper.hxx"
49 : #include "docuno.hxx"
50 : #include "docsh.hxx"
51 :
52 : // Maximal erlaubte Mausbewegung um noch Drag&Drop zu starten
53 : //! fusel,fuconstr,futext - zusammenfassen!
54 : #define SC_MAXDRAGMOVE 3
55 : // Min necessary mouse motion for normal dragging
56 : #define SC_MINDRAGMOVE 2
57 :
58 : using namespace com::sun::star;
59 :
60 : /*************************************************************************
61 : |*
62 : |* Konstruktor
63 : |*
64 : \************************************************************************/
65 :
66 348 : FuSelection::FuSelection(ScTabViewShell* pViewSh, vcl::Window* pWin, ScDrawView* pViewP,
67 : SdrModel* pDoc, SfxRequest& rReq ) :
68 : FuDraw(pViewSh, pWin, pViewP, pDoc, rReq),
69 348 : bVCAction(false)
70 : {
71 348 : }
72 :
73 : /*************************************************************************
74 : |*
75 : |* Destruktor
76 : |*
77 : \************************************************************************/
78 :
79 690 : FuSelection::~FuSelection()
80 : {
81 690 : }
82 :
83 0 : sal_uInt8 FuSelection::Command(const CommandEvent& rCEvt)
84 : {
85 0 : return FuDraw::Command( rCEvt );
86 : }
87 :
88 : /*************************************************************************
89 : |*
90 : |* MouseButtonDown-event
91 : |*
92 : \************************************************************************/
93 :
94 0 : bool FuSelection::MouseButtonDown(const MouseEvent& rMEvt)
95 : {
96 : // remember button state for creation of own MouseEvents
97 0 : SetMouseButtonCode(rMEvt.GetButtons());
98 0 : const bool bSelectionOnly = rMEvt.IsRight();
99 0 : if ( pView->IsAction() )
100 : {
101 0 : if ( bSelectionOnly )
102 0 : pView->BckAction();
103 0 : return true;
104 : }
105 :
106 0 : bVCAction = false;
107 0 : bIsInDragMode = false; // irgendwo muss es ja zurueckgesetzt werden (#50033#)
108 :
109 0 : bool bReturn = FuDraw::MouseButtonDown(rMEvt);
110 :
111 0 : aMDPos = pWindow->PixelToLogic( rMEvt.GetPosPixel() );
112 :
113 0 : if ( rMEvt.IsLeft() )
114 : {
115 0 : SdrHdl* pHdl = pView->PickHandle(aMDPos);
116 :
117 0 : if ( pHdl!=NULL || pView->IsMarkedHit(aMDPos) )
118 : {
119 : // Determine if this is the tail of a SdrCaptionObj i.e.
120 : // we need to disable the drag option on the tail of a note
121 : // object. Also, disable the ability to use the circular
122 : // drag of a note object.
123 0 : bool bDrag = false;
124 0 : const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
125 0 : if( rMarkList.GetMarkCount() == 1 )
126 : {
127 0 : SdrObject* pMarkedObj = rMarkList.GetMark( 0 )->GetMarkedSdrObj();
128 0 : if( ScDrawLayer::IsNoteCaption( pMarkedObj ) )
129 : {
130 : // move using the valid caption handles for note text box.
131 0 : if(pHdl && (pHdl->GetKind() != HDL_POLY && pHdl->GetKind() != HDL_CIRC))
132 0 : bDrag = true;
133 : // move the complete note box.
134 0 : else if(!pHdl)
135 0 : bDrag = true;
136 : }
137 : else
138 0 : bDrag = true; // different object
139 : }
140 : else
141 0 : bDrag = true; // several objects
142 :
143 0 : if ( bDrag )
144 : {
145 0 : aDragTimer.Start();
146 0 : if (pView->BegDragObj(aMDPos, nullptr, pHdl))
147 0 : pView->GetDragMethod()->SetShiftPressed( rMEvt.IsShift() );
148 0 : bReturn = true;
149 : }
150 : }
151 : else
152 : {
153 : SdrObject* pObj;
154 : SdrPageView* pPV;
155 0 : bool bAlt = rMEvt.IsMod2();
156 0 : if ( !bAlt && pView->PickObj(aMDPos, pView->getHitTolLog(), pObj, pPV, SdrSearchOptions::PICKMACRO) )
157 : {
158 0 : pView->BegMacroObj(aMDPos, pObj, pPV, pWindow);
159 0 : bReturn = true;
160 : }
161 : else
162 : {
163 0 : OUString sURL, sTarget;
164 0 : if ( !bAlt && pView->PickObj(aMDPos, pView->getHitTolLog(), pObj, pPV, SdrSearchOptions::ALSOONMASTER))
165 : {
166 : // Support for imported Excel docs
167 : // Excel is of course not consistent and allows
168 : // a hyperlink to be assigned for an object group
169 : // and even though the hyperlink is exported in the Escher layer
170 : // its never used, when dealing with a group object the link
171 : // associated with the clicked object is used only
172 :
173 : // additionally you can also select a macro in Excel for a grouped
174 : // objects and this *usually* results in the macro being set
175 : // for the elements in the group and no macro is exported
176 : // for the group itself ( this however is not always true )
177 : // if a macro and hlink are defined favour the hlink
178 : // If a group object has no hyperlink use the hyperlink of the
179 : // object clicked
180 :
181 0 : if ( pObj->IsGroupObject() )
182 : {
183 0 : ScMacroInfo* pTmpInfo = ScDrawLayer::GetMacroInfo( pObj );
184 0 : if ( !pTmpInfo || pTmpInfo->GetMacro().isEmpty() )
185 : {
186 0 : SdrObject* pHit = NULL;
187 0 : if ( pView->PickObj(aMDPos, pView->getHitTolLog(), pHit, pPV, SdrSearchOptions::DEEP ) )
188 0 : pObj = pHit;
189 : }
190 : }
191 :
192 0 : ScMacroInfo* pInfo = ScDrawLayer::GetMacroInfo( pObj, true );
193 : // For interoperability favour links over macros if both are defined
194 0 : if ( !pInfo->GetHlink().isEmpty() )
195 : {
196 : OSL_TRACE("** Got URL");
197 0 : sURL = pInfo->GetHlink();
198 : }
199 0 : else if ( !pInfo->GetMacro().isEmpty() )
200 : {
201 0 : SfxObjectShell* pObjSh = SfxObjectShell::Current();
202 0 : if ( pObjSh && SfxApplication::IsXScriptURL( pInfo->GetMacro() ) )
203 : {
204 0 : uno::Reference< beans::XPropertySet > xProps( pObj->getUnoShape(), uno::UNO_QUERY );
205 0 : uno::Any aCaller;
206 0 : if ( xProps.is() )
207 : {
208 : try
209 : {
210 0 : aCaller = xProps->getPropertyValue("Name");
211 : }
212 0 : catch( uno::Exception& ) {}
213 : }
214 0 : uno::Any aRet;
215 0 : uno::Sequence< sal_Int16 > aOutArgsIndex;
216 0 : uno::Sequence< uno::Any > aOutArgs;
217 : uno::Sequence< uno::Any >* pInArgs =
218 0 : new uno::Sequence< uno::Any >(0);
219 0 : pObjSh->CallXScript( pInfo->GetMacro(),
220 0 : *pInArgs, aRet, aOutArgsIndex, aOutArgs, true, &aCaller );
221 0 : pViewShell->FakeButtonUp( pViewShell->GetViewData().GetActivePart() );
222 0 : return true; // kein CaptureMouse etc.
223 : }
224 : }
225 : }
226 :
227 : // URL / ImageMap
228 :
229 0 : SdrViewEvent aVEvt;
230 0 : if ( !bAlt &&
231 0 : pView->PickAnything( rMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt ) != SDRHIT_NONE &&
232 0 : aVEvt.pObj != NULL )
233 : {
234 0 : if ( ScDrawLayer::GetIMapInfo( aVEvt.pObj ) ) // ImageMap
235 : {
236 : const IMapObject* pIMapObj =
237 0 : ScDrawLayer::GetHitIMapObject( aVEvt.pObj, aMDPos, *pWindow );
238 0 : if ( pIMapObj && !pIMapObj->GetURL().isEmpty() )
239 : {
240 0 : sURL = pIMapObj->GetURL();
241 0 : sTarget = pIMapObj->GetTarget();
242 : }
243 : }
244 0 : if ( aVEvt.eEvent == SDREVENT_EXECUTEURL && aVEvt.pURLField ) // URL
245 : {
246 0 : sURL = aVEvt.pURLField->GetURL();
247 0 : sTarget = aVEvt.pURLField->GetTargetFrame();
248 : }
249 : }
250 :
251 : // open hyperlink, if found at object or in object's text
252 0 : if ( !sURL.isEmpty() )
253 : {
254 0 : ScGlobal::OpenURL( sURL, sTarget );
255 0 : pViewShell->FakeButtonUp( pViewShell->GetViewData().GetActivePart() );
256 0 : return true; // kein CaptureMouse etc.
257 : }
258 :
259 : // Is another object being edited in this view?
260 : // (Editing is ended in MarkListHasChanged - test before UnmarkAll)
261 0 : SfxInPlaceClient* pClient = pViewShell->GetIPClient();
262 0 : bool bWasOleActive = ( pClient && pClient->IsObjectInPlaceActive() );
263 :
264 : // Markieren
265 :
266 : // do not allow multiselection with note caption
267 0 : bool bCaptionClicked = IsNoteCaptionClicked( aMDPos );
268 0 : if ( !rMEvt.IsShift() || bCaptionClicked || IsNoteCaptionMarked() )
269 0 : pView->UnmarkAll();
270 :
271 : /* Unlock internal layer, if a note caption is clicked. The
272 : layer will be relocked in ScDrawView::MarkListHasChanged(). */
273 0 : if( bCaptionClicked )
274 0 : pView->UnlockInternalLayer();
275 :
276 : // try to select the clicked object
277 0 : if ( pView->MarkObj( aMDPos, -2, false, rMEvt.IsMod1() ) )
278 : {
279 :
280 : //Objekt verschieben
281 :
282 0 : if (pView->IsMarkedHit(aMDPos))
283 : {
284 : // Don't start drag timer if inplace editing of an OLE object
285 : // was just ended with this mouse click - the view will be moved
286 : // (different tool bars) and the object that was clicked on would
287 : // be moved unintentionally.
288 0 : if ( !bWasOleActive )
289 0 : aDragTimer.Start();
290 :
291 0 : pHdl=pView->PickHandle(aMDPos);
292 0 : pView->BegDragObj(aMDPos, nullptr, pHdl);
293 0 : bReturn = true;
294 : }
295 : else // Objekt am Rand getroffen
296 0 : if (pViewShell->IsDrawSelMode())
297 0 : bReturn = true;
298 : }
299 : else
300 : {
301 : // nichts getroffen
302 :
303 0 : if (pViewShell->IsDrawSelMode())
304 : {
305 :
306 : //Objekt selektieren
307 :
308 0 : pView->BegMarkObj(aMDPos);
309 0 : bReturn = true;
310 : }
311 0 : }
312 : }
313 : }
314 :
315 : }
316 :
317 0 : if (!bIsInDragMode)
318 : {
319 0 : if (!bVCAction) // VC rufen selber CaptureMouse
320 0 : pWindow->CaptureMouse();
321 0 : ForcePointer(&rMEvt);
322 : }
323 :
324 0 : return bReturn;
325 : }
326 :
327 : /*************************************************************************
328 : |*
329 : |* MouseMove-event
330 : |*
331 : \************************************************************************/
332 :
333 0 : bool FuSelection::MouseMove(const MouseEvent& rMEvt)
334 : {
335 0 : bool bReturn = FuDraw::MouseMove(rMEvt);
336 :
337 0 : if (aDragTimer.IsActive() )
338 : {
339 0 : Point aOldPixel = pWindow->LogicToPixel( aMDPos );
340 0 : Point aNewPixel = rMEvt.GetPosPixel();
341 0 : if ( std::abs( aOldPixel.X() - aNewPixel.X() ) > SC_MAXDRAGMOVE ||
342 0 : std::abs( aOldPixel.Y() - aNewPixel.Y() ) > SC_MAXDRAGMOVE )
343 0 : aDragTimer.Stop();
344 : }
345 :
346 0 : if ( pView->IsAction() )
347 : {
348 0 : Point aPix(rMEvt.GetPosPixel());
349 0 : Point aPnt(pWindow->PixelToLogic(aPix));
350 :
351 0 : ForceScroll(aPix);
352 0 : pView->MovAction(aPnt);
353 0 : bReturn = true;
354 : }
355 :
356 : // Ein VCControl ist aktiv
357 : // Event an den Manager weiterleiten
358 0 : if( bVCAction )
359 : {
360 0 : bReturn = true;
361 : }
362 :
363 0 : ForcePointer(&rMEvt);
364 :
365 0 : return bReturn;
366 : }
367 :
368 : /*************************************************************************
369 : |*
370 : |* MouseButtonUp-event
371 : |*
372 : \************************************************************************/
373 :
374 0 : bool FuSelection::MouseButtonUp(const MouseEvent& rMEvt)
375 : {
376 : // remember button state for creation of own MouseEvents
377 0 : SetMouseButtonCode(rMEvt.GetButtons());
378 :
379 0 : bool bReturn = FuDraw::MouseButtonUp(rMEvt);
380 0 : bool bOle = pViewShell && pViewShell->GetViewFrame()->GetFrame().IsInPlace();
381 :
382 0 : SdrObject* pObj = NULL;
383 0 : if (aDragTimer.IsActive() )
384 : {
385 0 : aDragTimer.Stop();
386 : }
387 :
388 0 : sal_uInt16 nDrgLog = sal_uInt16 ( pWindow->PixelToLogic(Size(SC_MINDRAGMOVE,0)).Width() );
389 0 : Point aPnt( pWindow->PixelToLogic( rMEvt.GetPosPixel() ) );
390 :
391 0 : bool bCopy = false;
392 0 : ScViewData* pViewData = ( pViewShell ? &pViewShell->GetViewData() : NULL );
393 0 : ScDocument* pDocument = ( pViewData ? pViewData->GetDocument() : NULL );
394 0 : SdrPageView* pPageView = ( pView ? pView->GetSdrPageView() : NULL );
395 0 : SdrPage* pPage = ( pPageView ? pPageView->GetPage() : NULL );
396 0 : ::std::vector< OUString > aExcludedChartNames;
397 0 : ScRangeListVector aProtectedChartRangesVector;
398 :
399 0 : if (pView && rMEvt.IsLeft())
400 : {
401 0 : if ( pView->IsDragObj() )
402 : {
403 : /******************************************************************
404 : * Objekt wurde verschoben
405 : ******************************************************************/
406 0 : if ( rMEvt.IsMod1() )
407 : {
408 0 : if ( pPage )
409 : {
410 0 : ScChartHelper::GetChartNames( aExcludedChartNames, pPage );
411 : }
412 0 : if ( pView && pDocument )
413 : {
414 0 : const SdrMarkList& rSdrMarkList = pView->GetMarkedObjectList();
415 0 : const size_t nMarkCount = rSdrMarkList.GetMarkCount();
416 0 : for ( size_t i = 0; i < nMarkCount; ++i )
417 : {
418 0 : SdrMark* pMark = rSdrMarkList.GetMark( i );
419 0 : pObj = ( pMark ? pMark->GetMarkedSdrObj() : NULL );
420 0 : if ( pObj )
421 : {
422 0 : ScChartHelper::AddRangesIfProtectedChart( aProtectedChartRangesVector, pDocument, pObj );
423 : }
424 : }
425 : }
426 0 : bCopy = true;
427 : }
428 :
429 0 : if (!rMEvt.IsShift() && !rMEvt.IsMod1() && !rMEvt.IsMod2() &&
430 0 : std::abs(aPnt.X() - aMDPos.X()) < nDrgLog &&
431 0 : std::abs(aPnt.Y() - aMDPos.Y()) < nDrgLog)
432 : {
433 : /*************************************************************
434 : * If a user wants to click on an object in front of a marked
435 : * one, he releases the mouse button immediately
436 : **************************************************************/
437 0 : SdrPageView* pPV = NULL;
438 0 : if (pView->PickObj(aMDPos, pView->getHitTolLog(), pObj, pPV, SdrSearchOptions::ALSOONMASTER | SdrSearchOptions::BEFOREMARK))
439 : {
440 0 : pView->UnmarkAllObj();
441 0 : pView->MarkObj(pObj,pPV,false,false);
442 0 : return true;
443 : }
444 : }
445 0 : pView->EndDragObj( rMEvt.IsMod1() );
446 0 : pView->ForceMarkedToAnotherPage();
447 :
448 0 : const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
449 0 : if (rMarkList.GetMarkCount() == 1)
450 : {
451 0 : SdrMark* pMark = rMarkList.GetMark(0);
452 0 : pObj = pMark->GetMarkedSdrObj();
453 : }
454 0 : bReturn = true;
455 : }
456 0 : else if (pView->IsAction() )
457 : {
458 : // unlock internal layer to include note captions
459 0 : pView->UnlockInternalLayer();
460 0 : pView->EndAction();
461 0 : if ( pView->AreObjectsMarked() )
462 : {
463 0 : bReturn = true;
464 :
465 : /* if multi-selection contains a note caption object, remove
466 : all other objects from selection. */
467 0 : const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
468 0 : const size_t nCount = rMarkList.GetMarkCount();
469 0 : if( nCount > 1 )
470 : {
471 0 : bool bFound = false;
472 0 : for( size_t nIdx = 0; !bFound && (nIdx < nCount); ++nIdx )
473 : {
474 0 : pObj = rMarkList.GetMark( nIdx )->GetMarkedSdrObj();
475 0 : bFound = ScDrawLayer::IsNoteCaption( pObj );
476 0 : if( bFound )
477 : {
478 0 : pView->UnMarkAll();
479 0 : pView->MarkObj( pObj, pView->GetSdrPageView() );
480 : }
481 : }
482 : }
483 : }
484 : }
485 : }
486 :
487 : /**************************************************************************
488 : * Ggf. OLE-Objekt beruecksichtigen
489 : **************************************************************************/
490 0 : SfxInPlaceClient* pIPClient = pViewShell ? pViewShell->GetIPClient() : NULL;
491 :
492 0 : if (pIPClient)
493 : {
494 0 : ScModule* pScMod = SC_MOD();
495 0 : bool bUnoRefDialog = pScMod->IsRefDialogOpen() && pScMod->GetCurRefDlgId() == WID_SIMPLE_REF;
496 :
497 0 : if ( pIPClient->IsObjectInPlaceActive() && !bUnoRefDialog )
498 0 : pIPClient->DeactivateObject();
499 : }
500 :
501 0 : sal_uInt16 nClicks = rMEvt.GetClicks();
502 0 : if (pView && nClicks == 2 && rMEvt.IsLeft())
503 : {
504 0 : if ( pView->AreObjectsMarked() )
505 : {
506 0 : const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
507 0 : if (rMarkList.GetMarkCount() == 1)
508 : {
509 0 : SdrMark* pMark = rMarkList.GetMark(0);
510 0 : pObj = pMark->GetMarkedSdrObj();
511 :
512 : // aktivieren nur, wenn die Maus auch (noch) ueber dem
513 : // selektierten Objekt steht
514 :
515 0 : SdrViewEvent aVEvt;
516 0 : SdrHitKind eHit = pView->PickAnything( rMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt );
517 0 : if (eHit != SDRHIT_NONE && aVEvt.pObj == pObj && pViewShell)
518 : {
519 0 : sal_uInt16 nSdrObjKind = pObj->GetObjIdentifier();
520 :
521 : // OLE: aktivieren
522 :
523 0 : if (nSdrObjKind == OBJ_OLE2)
524 : {
525 0 : if (!bOle)
526 : {
527 0 : if (static_cast<SdrOle2Obj*>(pObj)->GetObjRef().is())
528 : {
529 0 : pViewShell->ActivateObject( static_cast<SdrOle2Obj*>(pObj), 0 );
530 : }
531 : }
532 : }
533 :
534 : // Edit text
535 : // not in UNO controls
536 : // #i32352# not in media objects
537 :
538 0 : else if ( pObj->ISA(SdrTextObj) && !pObj->ISA(SdrUnoObj) && !pObj->ISA(SdrMediaObj) )
539 : {
540 0 : OutlinerParaObject* pOPO = pObj->GetOutlinerParaObject();
541 0 : bool bVertical = ( pOPO && pOPO->IsVertical() );
542 0 : sal_uInt16 nTextSlotId = bVertical ? SID_DRAW_TEXT_VERTICAL : SID_DRAW_TEXT;
543 :
544 0 : pViewShell->GetViewData().GetDispatcher().
545 0 : Execute(nTextSlotId, SfxCallMode::SYNCHRON | SfxCallMode::RECORD);
546 :
547 : // jetzt den erzeugten FuText holen und in den EditModus setzen
548 0 : FuPoor* pPoor = pViewShell->GetViewData().GetView()->GetDrawFuncPtr();
549 0 : if ( pPoor && pPoor->GetSlotID() == nTextSlotId ) // hat keine RTTI
550 : {
551 0 : FuText* pText = static_cast<FuText*>(pPoor);
552 0 : Point aMousePixel = rMEvt.GetPosPixel();
553 0 : pText->SetInEditMode( pObj, &aMousePixel );
554 : }
555 0 : bReturn = true;
556 : }
557 0 : }
558 : }
559 : }
560 0 : else if ( TestDetective( pView->GetSdrPageView(), aPnt ) )
561 0 : bReturn = true;
562 : }
563 :
564 : // Ein VCControl ist aktiv
565 : // Event an den Manager weiterleiten
566 0 : if( bVCAction )
567 : {
568 0 : bVCAction = false;
569 0 : bReturn = true;
570 : }
571 :
572 0 : ForcePointer(&rMEvt);
573 :
574 0 : pWindow->ReleaseMouse();
575 :
576 : // Command-Handler fuer Kontext-Menue kommt erst nach MouseButtonUp,
577 : // darum hier die harte IsLeft-Abfrage
578 0 : if ( !bReturn && rMEvt.IsLeft() )
579 0 : if (pViewShell->IsDrawSelMode())
580 0 : pViewShell->GetViewData().GetDispatcher().
581 0 : Execute(SID_OBJECT_SELECT, SfxCallMode::SLOT | SfxCallMode::RECORD);
582 :
583 0 : if ( bCopy && pViewData && pDocument && pPage )
584 : {
585 0 : ScDocShell* pDocShell = pViewData->GetDocShell();
586 0 : ScModelObj* pModelObj = ( pDocShell ? ScModelObj::getImplementation( pDocShell->GetModel() ) : NULL );
587 0 : if ( pModelObj )
588 : {
589 0 : SCTAB nTab = pViewData->GetTabNo();
590 : ScChartHelper::CreateProtectedChartListenersAndNotify( pDocument, pPage, pModelObj, nTab,
591 0 : aProtectedChartRangesVector, aExcludedChartNames );
592 : }
593 : }
594 :
595 0 : return bReturn;
596 : }
597 :
598 : /*************************************************************************
599 : |*
600 : |* Tastaturereignisse bearbeiten
601 : |*
602 : |* Wird ein KeyEvent bearbeitet, so ist der Return-Wert sal_True, andernfalls
603 : |* FALSE.
604 : |*
605 : \************************************************************************/
606 :
607 0 : bool FuSelection::KeyInput(const KeyEvent& rKEvt)
608 : {
609 0 : return FuDraw::KeyInput(rKEvt);
610 : }
611 :
612 : /*************************************************************************
613 : |*
614 : |* Function aktivieren
615 : |*
616 : \************************************************************************/
617 :
618 0 : void FuSelection::Activate()
619 : {
620 0 : FuDraw::Activate();
621 0 : }
622 :
623 : /*************************************************************************
624 : |*
625 : |* Function deaktivieren
626 : |*
627 : \************************************************************************/
628 :
629 0 : void FuSelection::Deactivate()
630 : {
631 : /**************************************************************************
632 : * Hide Cursor
633 : **************************************************************************/
634 0 : FuDraw::Deactivate();
635 156 : }
636 :
637 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|