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 "scitems.hxx"
21 : #include <editeng/eeitem.hxx>
22 :
23 : #include <sfx2/app.hxx>
24 : #include <svx/extrusionbar.hxx>
25 : #include <svx/fontworkbar.hxx>
26 : #include <editeng/boxitem.hxx>
27 : #include <svx/fmpage.hxx>
28 : #include <svx/fmshell.hxx>
29 : #include <editeng/sizeitem.hxx>
30 : #include <svx/prtqry.hxx>
31 : #include <svx/sidebar/ContextChangeEventMultiplexer.hxx>
32 : #include <sfx2/request.hxx>
33 : #include <sfx2/printer.hxx>
34 : #include <sfx2/dispatch.hxx>
35 : #include <svl/whiter.hxx>
36 : #include <unotools/moduleoptions.hxx>
37 : #include <tools/urlobj.hxx>
38 : #include <sfx2/docfile.hxx>
39 :
40 : #include "tabvwsh.hxx"
41 : #include "sc.hrc"
42 : #include "globstr.hrc"
43 : #include "stlpool.hxx"
44 : #include "stlsheet.hxx"
45 : #include "docsh.hxx"
46 : #include "scmod.hxx"
47 : #include "appoptio.hxx"
48 : #include "rangeutl.hxx"
49 : #include "printfun.hxx"
50 : #include "drawsh.hxx"
51 : #include "drformsh.hxx"
52 : #include "editsh.hxx"
53 : #include "pivotsh.hxx"
54 : #include "auditsh.hxx"
55 : #include "drtxtob.hxx"
56 : #include "inputhdl.hxx"
57 : #include "editutil.hxx"
58 : #include "inputopt.hxx"
59 : #include "inputwin.hxx"
60 : #include "scresid.hxx"
61 : #include "dbdata.hxx"
62 : #include "reffact.hxx"
63 : #include "viewuno.hxx"
64 : #include "dispuno.hxx"
65 : #include "anyrefdg.hxx"
66 : #include "chgtrack.hxx"
67 : #include "cellsh.hxx"
68 : #include "oleobjsh.hxx"
69 : #include "chartsh.hxx"
70 : #include "graphsh.hxx"
71 : #include "mediash.hxx"
72 : #include "pgbrksh.hxx"
73 : #include "dpobject.hxx"
74 : #include "prevwsh.hxx"
75 : #include "tpprint.hxx"
76 : #include "scextopt.hxx"
77 : #include "printopt.hxx"
78 : #include "drawview.hxx"
79 : #include "fupoor.hxx"
80 : #include "navsett.hxx"
81 : #include "scabstdlg.hxx"
82 : #include "externalrefmgr.hxx"
83 : #include "defaultsoptions.hxx"
84 : #include "markdata.hxx"
85 : #include "preview.hxx"
86 : #include "docoptio.hxx"
87 : #include <documentlinkmgr.hxx>
88 :
89 : #include <com/sun/star/document/XDocumentProperties.hpp>
90 :
91 : void ActivateOlk( ScViewData* pViewData );
92 : void DeActivateOlk( ScViewData* pViewData );
93 :
94 : extern SfxViewShell* pScActiveViewShell; // global.cxx
95 :
96 : using namespace com::sun::star;
97 :
98 : // STATIC DATA -----------------------------------------------------------
99 :
100 : sal_uInt16 ScTabViewShell::nInsertCtrlState = SID_INSERT_GRAPHIC;
101 : sal_uInt16 ScTabViewShell::nInsCellsCtrlState = 0;
102 : sal_uInt16 ScTabViewShell::nInsObjCtrlState = SID_INSERT_DIAGRAM;
103 :
104 0 : void ScTabViewShell::Activate(bool bMDI)
105 : {
106 0 : SfxViewShell::Activate(bMDI);
107 0 : bIsActive = true;
108 : // hier kein GrabFocus, sonst gibt's Probleme wenn etwas inplace editiert wird!
109 :
110 0 : if ( bMDI )
111 : {
112 : // fuer Eingabezeile (ClearCache)
113 0 : ScModule* pScMod = SC_MOD();
114 0 : pScMod->ViewShellChanged();
115 :
116 0 : ActivateView( true, bFirstActivate );
117 0 : ActivateOlk( GetViewData() );
118 :
119 : // AutoCorrect umsetzen, falls der Writer seins neu angelegt hat
120 0 : UpdateDrawTextOutliner();
121 :
122 : // RegisterNewTargetNames gibts nicht mehr
123 :
124 0 : SfxViewFrame* pThisFrame = GetViewFrame();
125 0 : if ( pInputHandler && pThisFrame->HasChildWindow(FID_INPUTLINE_STATUS) )
126 : {
127 : // eigentlich nur beim Reload (letzte Version) noetig:
128 : // Das InputWindow bleibt stehen, aber die View mitsamt InputHandler wird
129 : // neu angelegt, darum muss der InputHandler am InputWindow gesetzt werden.
130 0 : SfxChildWindow* pChild = pThisFrame->GetChildWindow(FID_INPUTLINE_STATUS);
131 0 : if (pChild)
132 : {
133 0 : ScInputWindow* pWin = (ScInputWindow*)pChild->GetWindow();
134 0 : if (pWin && pWin->IsVisible())
135 : {
136 :
137 0 : ScInputHandler* pOldHdl=pWin->GetInputHandler();
138 :
139 0 : TypeId aScType = TYPE(ScTabViewShell);
140 :
141 0 : SfxViewShell* pSh = SfxViewShell::GetFirst( &aScType );
142 0 : while ( pSh!=NULL && pOldHdl!=NULL)
143 : {
144 0 : if (((ScTabViewShell*)pSh)->GetInputHandler() == pOldHdl)
145 : {
146 0 : pOldHdl->ResetDelayTimer();
147 0 : break;
148 : }
149 0 : pSh = SfxViewShell::GetNext( *pSh, &aScType );
150 : }
151 :
152 0 : pWin->SetInputHandler( pInputHandler );
153 : }
154 : }
155 : }
156 :
157 0 : UpdateInputHandler( true );
158 :
159 0 : if ( bFirstActivate )
160 : {
161 0 : SFX_APP()->Broadcast( SfxSimpleHint( SC_HINT_NAVIGATOR_UPDATEALL ) );
162 0 : bFirstActivate = false;
163 :
164 : // ReadExtOptions (view settings from Excel import) must also be done
165 : // after the ctor, because of the potential calls to Window::Show.
166 : // Even after a bugfix (Window::Show no longer notifies the access
167 : // bridge, it's done in ImplSetReallyVisible), there are problems if Window::Show
168 : // is called during the ViewShell ctor and reschedules asynchronous calls
169 : // (for example from the FmFormShell ctor).
170 0 : ScExtDocOptions* pExtOpt = GetViewData()->GetDocument()->GetExtDocOptions();
171 0 : if ( pExtOpt && pExtOpt->IsChanged() )
172 : {
173 0 : GetViewData()->ReadExtOptions(*pExtOpt); // Excel view settings
174 0 : SetTabNo( GetViewData()->GetTabNo(), true );
175 0 : pExtOpt->SetChanged( false );
176 : }
177 : }
178 :
179 0 : pScActiveViewShell = this;
180 :
181 0 : ScInputHandler* pHdl = pScMod->GetInputHdl(this);
182 0 : if (pHdl)
183 : {
184 0 : pHdl->SetRefScale( GetViewData()->GetZoomX(), GetViewData()->GetZoomY() );
185 : }
186 :
187 : // Aenderungs-Dialog aktualisieren
188 :
189 0 : if ( pThisFrame->HasChildWindow(FID_CHG_ACCEPT) )
190 : {
191 0 : SfxChildWindow* pChild = pThisFrame->GetChildWindow(FID_CHG_ACCEPT);
192 0 : if (pChild)
193 : {
194 0 : ((ScAcceptChgDlgWrapper*)pChild)->ReInitDlg();
195 : }
196 : }
197 :
198 0 : if(pScMod->IsRefDialogOpen())
199 : {
200 0 : sal_uInt16 nModRefDlgId=pScMod->GetCurRefDlgId();
201 0 : SfxChildWindow* pChildWnd = pThisFrame->GetChildWindow( nModRefDlgId );
202 0 : if ( pChildWnd )
203 : {
204 0 : IAnyRefDialog* pRefDlg = dynamic_cast<IAnyRefDialog*>(pChildWnd->GetWindow());
205 : assert(pRefDlg);
206 0 : if(pRefDlg)
207 : {
208 0 : pRefDlg->ViewShellChanged();
209 : }
210 : }
211 : }
212 : }
213 :
214 : // don't call CheckSelectionTransfer here - activating a view should not change the
215 : // primary selection (may be happening just because the mouse was moved over the window)
216 :
217 : // Wenn Referenzeingabe-Tip-Hilfe hier wieder angezeigt werden soll (ShowRefTip),
218 : // muss sie beim Verschieben der View angepasst werden (gibt sonst Probleme unter OS/2
219 : // beim Umschalten zwischen Dokumenten)
220 :
221 : ContextChangeEventMultiplexer::NotifyContextChange(
222 : GetController(),
223 0 : ::sfx2::sidebar::EnumContext::Context_Default);
224 0 : }
225 :
226 0 : void ScTabViewShell::Deactivate(bool bMDI)
227 : {
228 0 : HideTip();
229 :
230 0 : ScDocument* pDoc=GetViewData()->GetDocument();
231 :
232 0 : ScChangeTrack* pChanges=pDoc->GetChangeTrack();
233 :
234 0 : if(pChanges!=NULL)
235 : {
236 0 : Link aLink;
237 0 : pChanges->SetModifiedLink(aLink);
238 : }
239 :
240 0 : SfxViewShell::Deactivate(bMDI);
241 0 : bIsActive = false;
242 0 : ScInputHandler* pHdl = SC_MOD()->GetInputHdl(this);
243 :
244 0 : if( bMDI )
245 : {
246 : // during shell deactivation, shells must not be switched, or the loop
247 : // through the shell stack (in SfxDispatcher::DoDeactivate_Impl) will not work
248 0 : bool bOldDontSwitch = bDontSwitch;
249 0 : bDontSwitch = true;
250 :
251 0 : DeActivateOlk( GetViewData() );
252 0 : ActivateView( false, false );
253 :
254 0 : if ( GetViewFrame()->GetFrame().IsInPlace() ) // inplace
255 0 : GetViewData()->GetDocShell()->UpdateOle(GetViewData(), true);
256 :
257 0 : if ( pHdl )
258 0 : pHdl->NotifyChange( NULL, true ); // Timer-verzoegert wg. Dokumentwechsel
259 :
260 0 : if (pScActiveViewShell == this)
261 0 : pScActiveViewShell = NULL;
262 :
263 0 : bDontSwitch = bOldDontSwitch;
264 : }
265 : else
266 : {
267 0 : HideNoteMarker(); // Notiz-Anzeige
268 :
269 0 : if ( pHdl )
270 0 : pHdl->HideTip(); // Formel-AutoEingabe-Tip abschalten
271 : }
272 0 : }
273 :
274 0 : void ScTabViewShell::SetActive()
275 : {
276 : // Die Sfx-View moechte sich gerne selbst aktivieren, weil dabei noch
277 : // magische Dinge geschehen (z.B. stuerzt sonst evtl. der Gestalter ab)
278 0 : ActiveGrabFocus();
279 0 : }
280 :
281 0 : bool ScTabViewShell::PrepareClose(bool bUI)
282 : {
283 : // Call EnterHandler even in formula mode here,
284 : // so a formula change in an embedded object isn't lost
285 : // (ScDocShell::PrepareClose isn't called then).
286 0 : ScInputHandler* pHdl = SC_MOD()->GetInputHdl( this );
287 0 : if ( pHdl && pHdl->IsInputMode() )
288 0 : pHdl->EnterHandler();
289 :
290 : // draw text edit mode must be closed
291 0 : FuPoor* pPoor = GetDrawFuncPtr();
292 0 : if ( pPoor && ( IsDrawTextShell() || pPoor->GetSlotID() == SID_DRAW_NOTEEDIT ) )
293 : {
294 : // "clean" end of text edit, including note handling, subshells and draw func switching,
295 : // as in FuDraw and ScTabView::DrawDeselectAll
296 0 : GetViewData()->GetDispatcher().Execute( pPoor->GetSlotID(), SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD );
297 : }
298 0 : ScDrawView* pDrView = GetScDrawView();
299 0 : if ( pDrView )
300 : {
301 : // force end of text edit, to be safe
302 : // ScEndTextEdit must always be used, to ensure correct UndoManager
303 0 : pDrView->ScEndTextEdit();
304 : }
305 :
306 0 : if ( pFormShell )
307 : {
308 0 : bool nRet = pFormShell->PrepareClose(bUI);
309 0 : if (!nRet)
310 0 : return nRet;
311 : }
312 0 : return SfxViewShell::PrepareClose(bUI);
313 : }
314 :
315 : // Zoom fuer In-Place berechnen
316 : // aus Verhaeltnis von VisArea und Fenstergroesse des GridWin
317 :
318 0 : void ScTabViewShell::UpdateOleZoom()
319 : {
320 0 : ScDocShell* pDocSh = GetViewData()->GetDocShell();
321 0 : if ( pDocSh->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED )
322 : {
323 : //TODO/LATER: is there a difference between the two GetVisArea methods?
324 0 : Size aObjSize = ((const SfxObjectShell*)pDocSh)->GetVisArea().GetSize();
325 0 : if ( aObjSize.Width() > 0 && aObjSize.Height() > 0 )
326 : {
327 0 : Window* pWin = GetActiveWin();
328 0 : Size aWinHMM = pWin->PixelToLogic( pWin->GetOutputSizePixel(), MAP_100TH_MM );
329 0 : SetZoomFactor( Fraction( aWinHMM.Width(),aObjSize.Width() ),
330 0 : Fraction( aWinHMM.Height(),aObjSize.Height() ) );
331 : }
332 : }
333 0 : }
334 :
335 0 : void ScTabViewShell::AdjustPosSizePixel( const Point &rPos, const Size &rSize )
336 : {
337 0 : OuterResizePixel( rPos, rSize );
338 0 : }
339 :
340 0 : void ScTabViewShell::InnerResizePixel( const Point &rOfs, const Size &rSize )
341 : {
342 0 : Size aNewSize( rSize );
343 0 : if ( GetViewFrame()->GetFrame().IsInPlace() )
344 : {
345 0 : SvBorder aBorder;
346 0 : GetBorderSize( aBorder, rSize );
347 0 : SetBorderPixel( aBorder );
348 :
349 0 : Size aObjSize = GetObjectShell()->GetVisArea().GetSize();
350 :
351 0 : Size aSize( rSize );
352 0 : aSize.Width() -= (aBorder.Left() + aBorder.Right());
353 0 : aSize.Height() -= (aBorder.Top() + aBorder.Bottom());
354 :
355 0 : if ( aObjSize.Width() > 0 && aObjSize.Height() > 0 )
356 : {
357 0 : Size aLogicSize = GetWindow()->PixelToLogic( aSize, MAP_100TH_MM );
358 0 : SfxViewShell::SetZoomFactor( Fraction( aLogicSize.Width(),aObjSize.Width() ),
359 0 : Fraction( aLogicSize.Height(),aObjSize.Height() ) );
360 : }
361 :
362 0 : Point aPos( rOfs );
363 0 : aPos.X() += aBorder.Left();
364 0 : aPos.Y() += aBorder.Top();
365 0 : GetWindow()->SetPosSizePixel( aPos, aSize );
366 : }
367 : else
368 : {
369 0 : SvBorder aBorder;
370 0 : GetBorderSize( aBorder, rSize );
371 0 : SetBorderPixel( aBorder );
372 0 : aNewSize.Width() += aBorder.Left() + aBorder.Right();
373 0 : aNewSize.Height() += aBorder.Top() + aBorder.Bottom();
374 : }
375 :
376 0 : DoResize( rOfs, aNewSize, true ); // rSize = Groesse von gridwin
377 :
378 0 : UpdateOleZoom(); // Zoom fuer In-Place berechnen
379 :
380 0 : GetViewData()->GetDocShell()->SetDocumentModified();
381 0 : }
382 :
383 0 : void ScTabViewShell::OuterResizePixel( const Point &rOfs, const Size &rSize )
384 : {
385 0 : SvBorder aBorder;
386 0 : GetBorderSize( aBorder, rSize );
387 0 : SetBorderPixel( aBorder );
388 :
389 0 : DoResize( rOfs, rSize ); // Position und Groesse von tabview wie uebergeben
390 :
391 : // ForceMove als Ersatz fuer den Sfx-Move-Mechanismus
392 : // (aWinPos muss aktuell gehalten werden, damit ForceMove beim Ole-Deaktivieren klappt)
393 :
394 0 : ForceMove();
395 0 : }
396 :
397 0 : void ScTabViewShell::SetZoomFactor( const Fraction &rZoomX, const Fraction &rZoomY )
398 : {
399 : // fuer OLE...
400 :
401 0 : Fraction aFrac20( 1,5 );
402 0 : Fraction aFrac400( 4,1 );
403 :
404 0 : Fraction aNewX( rZoomX );
405 0 : if ( aNewX < aFrac20 )
406 0 : aNewX = aFrac20;
407 0 : if ( aNewX > aFrac400 )
408 0 : aNewX = aFrac400;
409 0 : Fraction aNewY( rZoomY );
410 0 : if ( aNewY < aFrac20 )
411 0 : aNewY = aFrac20;
412 0 : if ( aNewY > aFrac400 )
413 0 : aNewY = aFrac400;
414 :
415 0 : GetViewData()->UpdateScreenZoom( aNewX, aNewY );
416 0 : SetZoom( aNewX, aNewY, true );
417 :
418 0 : PaintGrid();
419 0 : PaintTop();
420 0 : PaintLeft();
421 :
422 0 : SfxViewShell::SetZoomFactor( rZoomX, rZoomY );
423 0 : }
424 :
425 0 : void ScTabViewShell::QueryObjAreaPixel( Rectangle& rRect ) const
426 : {
427 : // auf ganze Zellen anpassen (in 1/100 mm)
428 :
429 0 : Size aPixelSize = rRect.GetSize();
430 0 : Window* pWin = ((ScTabViewShell*)this)->GetActiveWin();
431 0 : Size aLogicSize = pWin->PixelToLogic( aPixelSize );
432 :
433 0 : const ScViewData* pViewData = GetViewData();
434 0 : ScDocument* pDoc = pViewData->GetDocument();
435 0 : ScSplitPos ePos = pViewData->GetActivePart();
436 0 : SCCOL nCol = pViewData->GetPosX(WhichH(ePos));
437 0 : SCROW nRow = pViewData->GetPosY(WhichV(ePos));
438 0 : SCTAB nTab = pViewData->GetTabNo();
439 0 : bool bNegativePage = pDoc->IsNegativePage( nTab );
440 :
441 0 : Rectangle aLogicRect = pDoc->GetMMRect( nCol, nRow, nCol, nRow, nTab );
442 0 : if ( bNegativePage )
443 : {
444 : // use right edge of aLogicRect, and aLogicSize
445 0 : aLogicRect.Left() = aLogicRect.Right() - aLogicSize.Width() + 1; // Right() is set below
446 : }
447 0 : aLogicRect.SetSize( aLogicSize );
448 :
449 0 : pViewData->GetDocShell()->SnapVisArea( aLogicRect );
450 :
451 0 : rRect.SetSize( pWin->LogicToPixel( aLogicRect.GetSize() ) );
452 0 : }
453 :
454 0 : void ScTabViewShell::Move()
455 : {
456 0 : Point aNewPos = GetViewFrame()->GetWindow().OutputToScreenPixel(Point());
457 :
458 0 : if (aNewPos != aWinPos)
459 : {
460 0 : StopMarking();
461 0 : aWinPos = aNewPos;
462 : }
463 0 : }
464 :
465 0 : void ScTabViewShell::ShowCursor(bool /* bOn */)
466 : {
467 : /*!!! ShowCursor wird nicht paarweise wie im gridwin gerufen.
468 : Der CursorLockCount am Gridwin muss hier direkt auf 0 gesetzt werden
469 :
470 : if (bOn)
471 : ShowAllCursors();
472 : else
473 : HideAllCursors();
474 : */
475 0 : }
476 :
477 0 : void ScTabViewShell::WriteUserData(OUString& rData, bool /* bBrowse */)
478 : {
479 0 : GetViewData()->WriteUserData(rData);
480 0 : }
481 :
482 0 : void ScTabViewShell::WriteUserDataSequence (uno::Sequence < beans::PropertyValue >& rSettings, bool /* bBrowse */ )
483 : {
484 0 : GetViewData()->WriteUserDataSequence (rSettings);
485 0 : }
486 :
487 0 : void ScTabViewShell::ReadUserData(const OUString& rData, bool /* bBrowse */)
488 : {
489 0 : if ( !GetViewData()->GetDocShell()->IsPreview() )
490 0 : DoReadUserData( rData );
491 0 : }
492 :
493 0 : void ScTabViewShell::ReadUserDataSequence (const uno::Sequence < beans::PropertyValue >& rSettings, bool /* bBrowse */ )
494 : {
495 0 : if ( !GetViewData()->GetDocShell()->IsPreview() )
496 0 : DoReadUserDataSequence( rSettings );
497 0 : }
498 :
499 0 : void ScTabViewShell::DoReadUserDataSequence( const uno::Sequence < beans::PropertyValue >& rSettings )
500 : {
501 0 : Window* pOldWin = GetActiveWin();
502 0 : bool bFocus = pOldWin && pOldWin->HasFocus();
503 :
504 0 : GetViewData()->ReadUserDataSequence(rSettings);
505 0 : SetTabNo( GetViewData()->GetTabNo(), true );
506 :
507 0 : if ( GetViewData()->IsPagebreakMode() )
508 0 : SetCurSubShell( GetCurObjectSelectionType(), true );
509 :
510 0 : Window* pNewWin = GetActiveWin();
511 0 : if (pNewWin && pNewWin != pOldWin)
512 : {
513 0 : SetWindow( pNewWin ); //! ist diese ViewShell immer aktiv???
514 0 : if (bFocus)
515 0 : pNewWin->GrabFocus();
516 0 : WindowChanged(); // Drawing-Layer (z.B. #56771#)
517 : }
518 :
519 0 : if (GetViewData()->GetHSplitMode() == SC_SPLIT_FIX ||
520 0 : GetViewData()->GetVSplitMode() == SC_SPLIT_FIX)
521 : {
522 0 : InvalidateSplit();
523 : }
524 :
525 0 : ZoomChanged();
526 :
527 0 : TestHintWindow();
528 :
529 : //! if ViewData has more tables than document, remove tables in ViewData
530 0 : }
531 :
532 : // DoReadUserData is also called from ctor when switching from print preview
533 :
534 0 : void ScTabViewShell::DoReadUserData( const OUString& rData )
535 : {
536 0 : Window* pOldWin = GetActiveWin();
537 0 : bool bFocus = pOldWin && pOldWin->HasFocus();
538 :
539 0 : GetViewData()->ReadUserData(rData);
540 0 : SetTabNo( GetViewData()->GetTabNo(), true );
541 :
542 0 : if ( GetViewData()->IsPagebreakMode() )
543 0 : SetCurSubShell( GetCurObjectSelectionType(), true );
544 :
545 0 : Window* pNewWin = GetActiveWin();
546 0 : if (pNewWin && pNewWin != pOldWin)
547 : {
548 0 : SetWindow( pNewWin ); //! ist diese ViewShell immer aktiv???
549 0 : if (bFocus)
550 0 : pNewWin->GrabFocus();
551 0 : WindowChanged(); // Drawing-Layer (z.B. #56771#)
552 : }
553 :
554 0 : if (GetViewData()->GetHSplitMode() == SC_SPLIT_FIX ||
555 0 : GetViewData()->GetVSplitMode() == SC_SPLIT_FIX)
556 : {
557 0 : InvalidateSplit();
558 : }
559 :
560 0 : ZoomChanged();
561 :
562 0 : TestHintWindow();
563 :
564 : //! if ViewData has more tables than document, remove tables in ViewData
565 0 : }
566 :
567 0 : void ScTabViewShell::UpdateDrawShell()
568 : {
569 : // Called after user interaction that may delete the selected drawing object.
570 : // Remove DrawShell if nothing is selected.
571 :
572 0 : SdrView* pDrView = GetSdrView();
573 0 : if ( pDrView && !pDrView->AreObjectsMarked() && !IsDrawSelMode() )
574 0 : SetDrawShell( false );
575 0 : }
576 :
577 0 : void ScTabViewShell::SetDrawShellOrSub()
578 : {
579 0 : bActiveDrawSh = true;
580 :
581 0 : if(bActiveDrawFormSh)
582 : {
583 0 : SetCurSubShell(OST_DrawForm);
584 : }
585 0 : else if(bActiveGraphicSh)
586 : {
587 0 : SetCurSubShell(OST_Graphic);
588 : }
589 0 : else if(bActiveMediaSh)
590 : {
591 0 : SetCurSubShell(OST_Media);
592 : }
593 0 : else if(bActiveChartSh)
594 : {
595 0 : SetCurSubShell(OST_Chart);
596 : }
597 0 : else if(bActiveOleObjectSh)
598 : {
599 0 : SetCurSubShell(OST_OleObject);
600 : }
601 : else
602 : {
603 : SetCurSubShell(OST_Drawing, true /* force: different toolbars are
604 : visible concerning shape type
605 0 : and shape state */);
606 : }
607 0 : }
608 :
609 0 : void ScTabViewShell::SetDrawShell( bool bActive )
610 : {
611 0 : if(bActive)
612 : {
613 : SetCurSubShell(OST_Drawing, true /* force: different toolbars are
614 : visible concerning shape type
615 0 : and shape state */);
616 : }
617 : else
618 : {
619 0 : if(bActiveDrawFormSh || bActiveDrawSh ||
620 0 : bActiveGraphicSh || bActiveMediaSh || bActiveOleObjectSh||
621 0 : bActiveChartSh || bActiveDrawTextSh)
622 : {
623 0 : SetCurSubShell(OST_Cell);
624 : }
625 0 : bActiveDrawFormSh=false;
626 0 : bActiveGraphicSh=false;
627 0 : bActiveMediaSh=false;
628 0 : bActiveOleObjectSh=false;
629 0 : bActiveChartSh=false;
630 : }
631 :
632 0 : bool bWasDraw = bActiveDrawSh || bActiveDrawTextSh;
633 :
634 0 : bActiveDrawSh = bActive;
635 0 : bActiveDrawTextSh = false;
636 :
637 0 : if ( !bActive )
638 : {
639 0 : ResetDrawDragMode(); // Mirror / Rotate aus
640 :
641 0 : if (bWasDraw && (GetViewData()->GetHSplitMode() == SC_SPLIT_FIX ||
642 0 : GetViewData()->GetVSplitMode() == SC_SPLIT_FIX))
643 : {
644 : // Aktiven Teil an Cursor anpassen, etc.
645 0 : MoveCursorAbs( GetViewData()->GetCurX(), GetViewData()->GetCurY(),
646 0 : SC_FOLLOW_NONE, false, false, true );
647 : }
648 : }
649 0 : }
650 :
651 0 : void ScTabViewShell::SetDrawTextShell( bool bActive )
652 : {
653 0 : bActiveDrawTextSh = bActive;
654 0 : if ( bActive )
655 : {
656 0 : bActiveDrawFormSh=false;
657 0 : bActiveGraphicSh=false;
658 0 : bActiveMediaSh=false;
659 0 : bActiveOleObjectSh=false;
660 0 : bActiveChartSh=false;
661 0 : bActiveDrawSh = false;
662 0 : SetCurSubShell(OST_DrawText);
663 : }
664 : else
665 0 : SetCurSubShell(OST_Cell);
666 :
667 0 : }
668 :
669 0 : void ScTabViewShell::SetPivotShell( bool bActive )
670 : {
671 0 : bActivePivotSh = bActive;
672 :
673 : // SetPivotShell is called from CursorPosChanged every time
674 : // -> don't change anything except switching between cell and pivot shell
675 :
676 0 : if ( eCurOST == OST_Pivot || eCurOST == OST_Cell )
677 : {
678 0 : if ( bActive )
679 : {
680 0 : bActiveDrawTextSh = bActiveDrawSh = false;
681 0 : bActiveDrawFormSh=false;
682 0 : bActiveGraphicSh=false;
683 0 : bActiveMediaSh=false;
684 0 : bActiveOleObjectSh=false;
685 0 : bActiveChartSh=false;
686 0 : SetCurSubShell(OST_Pivot);
687 : }
688 : else
689 0 : SetCurSubShell(OST_Cell);
690 : }
691 0 : }
692 :
693 0 : void ScTabViewShell::SetAuditShell( bool bActive )
694 : {
695 0 : bActiveAuditingSh = bActive;
696 0 : if ( bActive )
697 : {
698 0 : bActiveDrawTextSh = bActiveDrawSh = false;
699 0 : bActiveDrawFormSh=false;
700 0 : bActiveGraphicSh=false;
701 0 : bActiveMediaSh=false;
702 0 : bActiveOleObjectSh=false;
703 0 : bActiveChartSh=false;
704 0 : SetCurSubShell(OST_Auditing);
705 : }
706 : else
707 0 : SetCurSubShell(OST_Cell);
708 0 : }
709 :
710 0 : void ScTabViewShell::SetDrawFormShell( bool bActive )
711 : {
712 0 : bActiveDrawFormSh = bActive;
713 :
714 0 : if(bActiveDrawFormSh)
715 0 : SetCurSubShell(OST_DrawForm);
716 0 : }
717 0 : void ScTabViewShell::SetChartShell( bool bActive )
718 : {
719 0 : bActiveChartSh = bActive;
720 :
721 0 : if(bActiveChartSh)
722 0 : SetCurSubShell(OST_Chart);
723 0 : }
724 :
725 0 : void ScTabViewShell::SetGraphicShell( bool bActive )
726 : {
727 0 : bActiveGraphicSh = bActive;
728 :
729 0 : if(bActiveGraphicSh)
730 0 : SetCurSubShell(OST_Graphic);
731 0 : }
732 :
733 0 : void ScTabViewShell::SetMediaShell( bool bActive )
734 : {
735 0 : bActiveMediaSh = bActive;
736 :
737 0 : if(bActiveMediaSh)
738 0 : SetCurSubShell(OST_Media);
739 0 : }
740 :
741 0 : void ScTabViewShell::SetOleObjectShell( bool bActive )
742 : {
743 0 : bActiveOleObjectSh = bActive;
744 :
745 0 : if(bActiveOleObjectSh)
746 0 : SetCurSubShell(OST_OleObject);
747 : else
748 0 : SetCurSubShell(OST_Cell);
749 0 : }
750 :
751 0 : void ScTabViewShell::SetEditShell(EditView* pView, bool bActive )
752 : {
753 0 : if(bActive)
754 : {
755 0 : if (pEditShell)
756 0 : pEditShell->SetEditView( pView );
757 : else
758 0 : pEditShell = new ScEditShell( pView, GetViewData() );
759 :
760 0 : SetCurSubShell(OST_Editing);
761 : }
762 0 : else if(bActiveEditSh)
763 : {
764 0 : SetCurSubShell(OST_Cell);
765 : }
766 0 : bActiveEditSh = bActive;
767 0 : }
768 :
769 0 : void ScTabViewShell::SetCurSubShell(ObjectSelectionType eOST, bool bForce)
770 : {
771 0 : ScViewData* pViewData = GetViewData();
772 0 : ScDocShell* pDocSh = pViewData->GetDocShell();
773 :
774 0 : if(bDontSwitch) return;
775 :
776 0 : if(!pCellShell) //Wird eh immer gebraucht.
777 : {
778 0 : pCellShell = new ScCellShell( GetViewData() );
779 0 : pCellShell->SetRepeatTarget( &aTarget );
780 : }
781 :
782 0 : bool bPgBrk=pViewData->IsPagebreakMode();
783 :
784 0 : if(bPgBrk && !pPageBreakShell)
785 : {
786 0 : pPageBreakShell = new ScPageBreakShell( this );
787 0 : pPageBreakShell->SetRepeatTarget( &aTarget );
788 : }
789 :
790 :
791 0 : if ( eOST!=eCurOST || bForce )
792 : {
793 0 : bool bCellBrush = false; // "format paint brush" allowed for cells
794 0 : bool bDrawBrush = false; // "format paint brush" allowed for drawing objects
795 :
796 0 : if(eCurOST!=OST_NONE) RemoveSubShell();
797 :
798 0 : if (pFormShell && !bFormShellAtTop)
799 0 : AddSubShell(*pFormShell); // add below own subshells
800 :
801 0 : switch(eOST)
802 : {
803 : case OST_Cell:
804 : {
805 0 : AddSubShell(*pCellShell);
806 0 : if(bPgBrk) AddSubShell(*pPageBreakShell);
807 0 : bCellBrush = true;
808 : }
809 0 : break;
810 : case OST_Editing:
811 : {
812 0 : AddSubShell(*pCellShell);
813 0 : if(bPgBrk) AddSubShell(*pPageBreakShell);
814 :
815 0 : if(pEditShell)
816 : {
817 0 : AddSubShell(*pEditShell);
818 : }
819 : }
820 0 : break;
821 : case OST_DrawText:
822 : {
823 0 : if ( !pDrawTextShell )
824 : {
825 0 : pDocSh->MakeDrawLayer();
826 0 : pDrawTextShell = new ScDrawTextObjectBar( GetViewData() );
827 : }
828 0 : AddSubShell(*pDrawTextShell);
829 : }
830 0 : break;
831 : case OST_Drawing:
832 : {
833 0 : if (svx::checkForSelectedCustomShapes(
834 0 : GetScDrawView(), true /* bOnlyExtruded */ )) {
835 0 : if (pExtrusionBarShell == 0)
836 0 : pExtrusionBarShell = new svx::ExtrusionBar(this);
837 0 : AddSubShell( *pExtrusionBarShell );
838 : }
839 0 : sal_uInt32 nCheckStatus = 0;
840 0 : if (svx::checkForSelectedFontWork(
841 0 : GetScDrawView(), nCheckStatus )) {
842 0 : if (pFontworkBarShell == 0)
843 0 : pFontworkBarShell = new svx::FontworkBar(this);
844 0 : AddSubShell( *pFontworkBarShell );
845 : }
846 :
847 0 : if ( !pDrawShell )
848 : {
849 0 : pDocSh->MakeDrawLayer();
850 0 : pDrawShell = new ScDrawShell( GetViewData() );
851 0 : pDrawShell->SetRepeatTarget( &aTarget );
852 : }
853 0 : AddSubShell(*pDrawShell);
854 0 : bDrawBrush = true;
855 : }
856 0 : break;
857 :
858 : case OST_DrawForm:
859 : {
860 0 : if ( !pDrawFormShell )
861 : {
862 0 : pDocSh->MakeDrawLayer();
863 0 : pDrawFormShell = new ScDrawFormShell( GetViewData() );
864 0 : pDrawFormShell->SetRepeatTarget( &aTarget );
865 : }
866 0 : AddSubShell(*pDrawFormShell);
867 0 : bDrawBrush = true;
868 : }
869 0 : break;
870 :
871 : case OST_Chart:
872 : {
873 0 : if ( !pChartShell )
874 : {
875 0 : pDocSh->MakeDrawLayer();
876 0 : pChartShell = new ScChartShell( GetViewData() );
877 0 : pChartShell->SetRepeatTarget( &aTarget );
878 : }
879 0 : AddSubShell(*pChartShell);
880 0 : bDrawBrush = true;
881 : }
882 0 : break;
883 :
884 : case OST_OleObject:
885 : {
886 0 : if ( !pOleObjectShell )
887 : {
888 0 : pDocSh->MakeDrawLayer();
889 0 : pOleObjectShell = new ScOleObjectShell( GetViewData() );
890 0 : pOleObjectShell->SetRepeatTarget( &aTarget );
891 : }
892 0 : AddSubShell(*pOleObjectShell);
893 0 : bDrawBrush = true;
894 : }
895 0 : break;
896 :
897 : case OST_Graphic:
898 : {
899 0 : if ( !pGraphicShell)
900 : {
901 0 : pDocSh->MakeDrawLayer();
902 0 : pGraphicShell = new ScGraphicShell( GetViewData() );
903 0 : pGraphicShell->SetRepeatTarget( &aTarget );
904 : }
905 0 : AddSubShell(*pGraphicShell);
906 0 : bDrawBrush = true;
907 : }
908 0 : break;
909 :
910 : case OST_Media:
911 : {
912 0 : if ( !pMediaShell)
913 : {
914 0 : pDocSh->MakeDrawLayer();
915 0 : pMediaShell = new ScMediaShell( GetViewData() );
916 0 : pMediaShell->SetRepeatTarget( &aTarget );
917 : }
918 0 : AddSubShell(*pMediaShell);
919 : }
920 0 : break;
921 :
922 : case OST_Pivot:
923 : {
924 0 : AddSubShell(*pCellShell);
925 0 : if(bPgBrk) AddSubShell(*pPageBreakShell);
926 :
927 0 : if ( !pPivotShell )
928 : {
929 0 : pPivotShell = new ScPivotShell( this );
930 0 : pPivotShell->SetRepeatTarget( &aTarget );
931 : }
932 0 : AddSubShell(*pPivotShell);
933 0 : bCellBrush = true;
934 : }
935 0 : break;
936 : case OST_Auditing:
937 : {
938 0 : AddSubShell(*pCellShell);
939 0 : if(bPgBrk) AddSubShell(*pPageBreakShell);
940 :
941 0 : if ( !pAuditingShell )
942 : {
943 0 : pDocSh->MakeDrawLayer(); // die Wartezeit lieber jetzt als beim Klick
944 :
945 0 : pAuditingShell = new ScAuditingShell( GetViewData() );
946 0 : pAuditingShell->SetRepeatTarget( &aTarget );
947 : }
948 0 : AddSubShell(*pAuditingShell);
949 0 : bCellBrush = true;
950 : }
951 0 : break;
952 : default:
953 : OSL_FAIL("Falsche Shell angefordert");
954 0 : break;
955 : }
956 :
957 0 : if (pFormShell && bFormShellAtTop)
958 0 : AddSubShell(*pFormShell); // add on top of own subshells
959 :
960 0 : eCurOST=eOST;
961 :
962 : // abort "format paint brush" when switching to an incompatible shell
963 0 : if ( ( GetBrushDocument() && !bCellBrush ) || ( GetDrawBrushSet() && !bDrawBrush ) )
964 0 : ResetBrushDocument();
965 : }
966 : }
967 :
968 0 : void ScTabViewShell::SetFormShellAtTop( bool bSet )
969 : {
970 0 : if ( pFormShell && !bSet )
971 0 : pFormShell->ForgetActiveControl(); // let the FormShell know it no longer has the focus
972 :
973 0 : if ( bFormShellAtTop != bSet )
974 : {
975 0 : bFormShellAtTop = bSet;
976 0 : SetCurSubShell( GetCurObjectSelectionType(), true );
977 : }
978 0 : }
979 :
980 0 : IMPL_LINK_NOARG(ScTabViewShell, FormControlActivated)
981 : {
982 : // a form control got the focus, so the form shell has to be on top
983 0 : SetFormShellAtTop( true );
984 0 : return 0;
985 : }
986 :
987 0 : ObjectSelectionType ScTabViewShell::GetCurObjectSelectionType()
988 : {
989 0 : return eCurOST;
990 : }
991 :
992 : // GetMySubShell / SetMySubShell: altes Verhalten simulieren,
993 : // dass es nur eine SubShell gibt (nur innerhalb der 5 eignenen SubShells)
994 :
995 0 : SfxShell* ScTabViewShell::GetMySubShell() const
996 : {
997 : // GetSubShell() war frueher const, und GetSubShell(sal_uInt16) sollte es auch sein...
998 :
999 0 : sal_uInt16 nPos = 0;
1000 0 : SfxShell* pSub = ((ScTabViewShell*)this)->GetSubShell(nPos);
1001 0 : while (pSub)
1002 : {
1003 0 : if ( pSub == pDrawShell || pSub == pDrawTextShell || pSub == pEditShell ||
1004 0 : pSub == pPivotShell || pSub == pAuditingShell || pSub == pDrawFormShell ||
1005 0 : pSub == pCellShell || pSub == pOleObjectShell|| pSub == pChartShell ||
1006 0 : pSub == pGraphicShell || pSub == pMediaShell || pSub == pPageBreakShell)
1007 0 : return pSub; // gefunden
1008 :
1009 0 : pSub = ((ScTabViewShell*)this)->GetSubShell(++nPos);
1010 : }
1011 0 : return NULL; // keine von meinen dabei
1012 : }
1013 :
1014 :
1015 0 : bool ScTabViewShell::IsDrawTextShell() const
1016 : {
1017 0 : return ( pDrawTextShell && ( GetMySubShell() == pDrawTextShell ) );
1018 : }
1019 :
1020 0 : bool ScTabViewShell::IsAuditShell() const
1021 : {
1022 0 : return ( pAuditingShell && ( GetMySubShell() == pAuditingShell ) );
1023 : }
1024 :
1025 0 : void ScTabViewShell::SetDrawTextUndo( ::svl::IUndoManager* pNewUndoMgr )
1026 : {
1027 : // Default: Undo-Manager der DocShell
1028 0 : if (!pNewUndoMgr)
1029 0 : pNewUndoMgr = GetViewData()->GetDocShell()->GetUndoManager();
1030 :
1031 0 : if (pDrawTextShell)
1032 : {
1033 0 : pDrawTextShell->SetUndoManager(pNewUndoMgr);
1034 0 : ScDocShell* pDocSh = GetViewData()->GetDocShell();
1035 0 : if ( pNewUndoMgr == pDocSh->GetUndoManager() &&
1036 0 : !pDocSh->GetDocument()->IsUndoEnabled() )
1037 : {
1038 0 : pNewUndoMgr->SetMaxUndoActionCount( 0 );
1039 : }
1040 : }
1041 : else
1042 : {
1043 : OSL_FAIL("SetDrawTextUndo ohne DrawTextShell");
1044 : }
1045 0 : }
1046 :
1047 0 : ScTabViewShell* ScTabViewShell::GetActiveViewShell()
1048 : {
1049 0 : return PTR_CAST(ScTabViewShell,Current());
1050 : }
1051 :
1052 0 : SfxPrinter* ScTabViewShell::GetPrinter( bool bCreate )
1053 : {
1054 : // Drucker ist immer da (wird fuer die FontListe schon beim Starten angelegt)
1055 0 : return GetViewData()->GetDocShell()->GetPrinter(bCreate);
1056 : }
1057 :
1058 0 : sal_uInt16 ScTabViewShell::SetPrinter( SfxPrinter *pNewPrinter, sal_uInt16 nDiffFlags, bool )
1059 : {
1060 0 : return GetViewData()->GetDocShell()->SetPrinter( pNewPrinter, nDiffFlags );
1061 : }
1062 :
1063 0 : bool ScTabViewShell::HasPrintOptionsPage() const
1064 : {
1065 0 : return true;
1066 : }
1067 :
1068 0 : SfxTabPage* ScTabViewShell::CreatePrintOptionsPage( Window *pParent, const SfxItemSet &rOptions )
1069 : {
1070 0 : ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
1071 : OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
1072 0 : ::CreateTabPage ScTpPrintOptionsCreate = pFact->GetTabPageCreatorFunc( RID_SCPAGE_PRINT );
1073 0 : if ( ScTpPrintOptionsCreate )
1074 0 : return (*ScTpPrintOptionsCreate)( pParent, rOptions);
1075 0 : return 0;
1076 : }
1077 :
1078 0 : void ScTabViewShell::StopEditShell()
1079 : {
1080 0 : if ( pEditShell != NULL && !bDontSwitch )
1081 0 : SetEditShell(NULL, false );
1082 0 : }
1083 :
1084 : // close handler to ensure function of dialog:
1085 :
1086 0 : IMPL_LINK_NOARG(ScTabViewShell, SimpleRefClose)
1087 : {
1088 0 : SfxInPlaceClient* pClient = GetIPClient();
1089 0 : if ( pClient && pClient->IsObjectInPlaceActive() )
1090 : {
1091 : // If range selection was started with an active embedded object,
1092 : // switch back to original sheet (while the dialog is still open).
1093 :
1094 0 : SetTabNo( GetViewData()->GetRefTabNo() );
1095 : }
1096 :
1097 0 : ScSimpleRefDlgWrapper::SetAutoReOpen( true );
1098 0 : return 0;
1099 : }
1100 :
1101 : // handlers to call UNO listeners:
1102 :
1103 0 : static ScTabViewObj* lcl_GetViewObj( ScTabViewShell& rShell )
1104 : {
1105 0 : ScTabViewObj* pRet = NULL;
1106 0 : SfxViewFrame* pViewFrame = rShell.GetViewFrame();
1107 0 : if (pViewFrame)
1108 : {
1109 0 : SfxFrame& rFrame = pViewFrame->GetFrame();
1110 0 : uno::Reference<frame::XController> xController = rFrame.GetController();
1111 0 : if (xController.is())
1112 0 : pRet = ScTabViewObj::getImplementation( xController );
1113 : }
1114 0 : return pRet;
1115 : }
1116 :
1117 0 : IMPL_LINK( ScTabViewShell, SimpleRefDone, OUString*, pResult )
1118 : {
1119 0 : ScTabViewObj* pImpObj = lcl_GetViewObj( *this );
1120 0 : if ( pImpObj && pResult )
1121 0 : pImpObj->RangeSelDone( *pResult );
1122 0 : return 0;
1123 : }
1124 :
1125 0 : IMPL_LINK( ScTabViewShell, SimpleRefAborted, OUString*, pResult )
1126 : {
1127 0 : ScTabViewObj* pImpObj = lcl_GetViewObj( *this );
1128 0 : if ( pImpObj && pResult )
1129 0 : pImpObj->RangeSelAborted( *pResult );
1130 0 : return 0;
1131 : }
1132 :
1133 0 : IMPL_LINK( ScTabViewShell, SimpleRefChange, OUString*, pResult )
1134 : {
1135 0 : ScTabViewObj* pImpObj = lcl_GetViewObj( *this );
1136 0 : if ( pImpObj && pResult )
1137 0 : pImpObj->RangeSelChanged( *pResult );
1138 0 : return 0;
1139 : }
1140 :
1141 0 : void ScTabViewShell::StartSimpleRefDialog(
1142 : const OUString& rTitle, const OUString& rInitVal,
1143 : bool bCloseOnButtonUp, bool bSingleCell, bool bMultiSelection )
1144 : {
1145 0 : SfxViewFrame* pViewFrm = GetViewFrame();
1146 :
1147 0 : if ( GetActiveViewShell() != this )
1148 : {
1149 : // #i18833# / #i34499# The API method can be called for a view that's not active.
1150 : // Then the view has to be activated first, the same way as in Execute for SID_CURRENTDOC.
1151 : // Can't use GrabFocus here, because it needs to take effect immediately.
1152 :
1153 0 : pViewFrm->GetFrame().Appear();
1154 : }
1155 :
1156 0 : sal_uInt16 nId = ScSimpleRefDlgWrapper::GetChildWindowId();
1157 :
1158 0 : SC_MOD()->SetRefDialog( nId, true, pViewFrm );
1159 :
1160 0 : ScSimpleRefDlgWrapper* pWnd = (ScSimpleRefDlgWrapper*)pViewFrm->GetChildWindow( nId );
1161 0 : if (pWnd)
1162 : {
1163 0 : pWnd->SetCloseHdl( LINK( this, ScTabViewShell, SimpleRefClose ) );
1164 : pWnd->SetUnoLinks( LINK( this, ScTabViewShell, SimpleRefDone ),
1165 : LINK( this, ScTabViewShell, SimpleRefAborted ),
1166 0 : LINK( this, ScTabViewShell, SimpleRefChange ) );
1167 0 : pWnd->SetRefString( rInitVal );
1168 0 : pWnd->SetFlags( bCloseOnButtonUp, bSingleCell, bMultiSelection );
1169 0 : pWnd->SetAutoReOpen( false );
1170 0 : Window* pWin = pWnd->GetWindow();
1171 0 : pWin->SetText( rTitle );
1172 0 : pWnd->StartRefInput();
1173 : }
1174 0 : }
1175 :
1176 0 : void ScTabViewShell::StopSimpleRefDialog()
1177 : {
1178 0 : SfxViewFrame* pViewFrm = GetViewFrame();
1179 0 : sal_uInt16 nId = ScSimpleRefDlgWrapper::GetChildWindowId();
1180 :
1181 0 : ScSimpleRefDlgWrapper* pWnd = (ScSimpleRefDlgWrapper*)pViewFrm->GetChildWindow( nId );
1182 0 : if (pWnd)
1183 : {
1184 0 : Window* pWin = pWnd->GetWindow();
1185 0 : if (pWin && pWin->IsSystemWindow())
1186 0 : ((SystemWindow*)pWin)->Close(); // calls abort handler
1187 : }
1188 0 : }
1189 :
1190 0 : bool ScTabViewShell::TabKeyInput(const KeyEvent& rKEvt)
1191 : {
1192 0 : ScModule* pScMod = SC_MOD();
1193 :
1194 0 : SfxViewFrame* pThisFrame = GetViewFrame();
1195 0 : if ( pThisFrame->GetChildWindow( SID_OPENDLG_FUNCTION ) )
1196 0 : return false;
1197 :
1198 0 : KeyCode aCode = rKEvt.GetKeyCode();
1199 0 : bool bShift = aCode.IsShift();
1200 0 : bool bControl = aCode.IsMod1();
1201 0 : bool bAlt = aCode.IsMod2();
1202 0 : sal_uInt16 nCode = aCode.GetCode();
1203 0 : bool bUsed = false;
1204 0 : bool bInPlace = pScMod->IsEditMode(); // Editengine bekommt alles
1205 0 : bool bAnyEdit = pScMod->IsInputMode(); // nur Zeichen & Backspace
1206 0 : bool bDraw = IsDrawTextEdit();
1207 :
1208 0 : HideNoteMarker(); // Notiz-Anzeige
1209 :
1210 : // don't do extra HideCursor/ShowCursor calls if EnterHandler will switch to a different sheet
1211 0 : bool bOnRefSheet = ( GetViewData()->GetRefTabNo() == GetViewData()->GetTabNo() );
1212 0 : bool bHideCursor = ( ( nCode == KEY_RETURN && bInPlace ) || nCode == KEY_TAB ) && bOnRefSheet;
1213 :
1214 0 : if (bHideCursor)
1215 0 : HideAllCursors();
1216 :
1217 0 : ScDocument* pDoc = GetViewData()->GetDocument();
1218 0 : if ( pDoc )
1219 0 : pDoc->KeyInput( rKEvt ); // TimerDelays etc.
1220 :
1221 0 : if( bInPlace )
1222 : {
1223 0 : bUsed = pScMod->InputKeyEvent( rKEvt ); // Eingabe
1224 0 : if( !bUsed )
1225 0 : bUsed = SfxViewShell::KeyInput( rKEvt ); // accelerators
1226 : }
1227 0 : else if( bAnyEdit )
1228 : {
1229 0 : bool bIsType = false;
1230 0 : sal_uInt16 nModi = aCode.GetModifier();
1231 0 : sal_uInt16 nGroup = aCode.GetGroup();
1232 :
1233 0 : if ( nGroup == KEYGROUP_NUM || nGroup == KEYGROUP_ALPHA || nGroup == 0 )
1234 0 : if ( !bControl && !bAlt )
1235 0 : bIsType = true;
1236 :
1237 0 : if ( nGroup == KEYGROUP_MISC )
1238 0 : switch ( nCode )
1239 : {
1240 : case KEY_RETURN:
1241 0 : bIsType = bControl && !bAlt; // Control, Shift-Control-Return
1242 0 : if ( !bIsType && nModi == 0 )
1243 : {
1244 : // Will der InputHandler auch ein einfaches Return?
1245 :
1246 0 : ScInputHandler* pHdl = pScMod->GetInputHdl(this);
1247 0 : bIsType = pHdl && pHdl->TakesReturn();
1248 : }
1249 0 : break;
1250 : case KEY_SPACE:
1251 0 : bIsType = !bControl && !bAlt; // ohne Modifier oder Shift-Space
1252 0 : break;
1253 : case KEY_ESCAPE:
1254 0 : bIsType = (nModi == 0); // nur ohne Modifier
1255 0 : break;
1256 : default:
1257 0 : bIsType = true;
1258 : }
1259 :
1260 0 : if( bIsType )
1261 0 : bUsed = pScMod->InputKeyEvent( rKEvt ); // Eingabe
1262 :
1263 0 : if( !bUsed )
1264 0 : bUsed = SfxViewShell::KeyInput( rKEvt ); // accelerators
1265 :
1266 0 : if ( !bUsed && !bIsType && nCode != KEY_RETURN ) // Eingabe nochmal hinterher
1267 0 : bUsed = pScMod->InputKeyEvent( rKEvt );
1268 : }
1269 : else
1270 : {
1271 : // Spezialfall: Copy/Cut bei Mehrfachselektion -> Fehlermeldung
1272 : // (Slot ist disabled, SfxViewShell::KeyInput wuerde also kommentarlos verschluckt)
1273 0 : KeyFuncType eFunc = aCode.GetFunction();
1274 0 : if ( eFunc == KEYFUNC_CUT )
1275 : {
1276 0 : ScRange aDummy;
1277 0 : ScMarkType eMarkType = GetViewData()->GetSimpleArea( aDummy );
1278 0 : if (eMarkType != SC_MARK_SIMPLE)
1279 : {
1280 0 : ErrorMessage(STR_NOMULTISELECT);
1281 0 : bUsed = true;
1282 : }
1283 : }
1284 0 : if (!bUsed)
1285 0 : bUsed = SfxViewShell::KeyInput( rKEvt ); // accelerators
1286 :
1287 : // during inplace editing, some slots are handled by the
1288 : // container app and are executed during Window::KeyInput.
1289 : // -> don't pass keys to input handler that would be used there
1290 : // but should call slots instead.
1291 0 : bool bParent = ( GetViewFrame()->GetFrame().IsInPlace() && eFunc != KEYFUNC_DONTKNOW );
1292 :
1293 0 : if( !bUsed && !bDraw && nCode != KEY_RETURN && !bParent )
1294 0 : bUsed = pScMod->InputKeyEvent( rKEvt, true ); // Eingabe
1295 : }
1296 :
1297 0 : if (!bInPlace && !bUsed && !bDraw)
1298 : {
1299 0 : switch (nCode)
1300 : {
1301 : case KEY_RETURN:
1302 : {
1303 0 : bool bNormal = !bControl && !bAlt;
1304 0 : if ( !bAnyEdit && bNormal )
1305 : {
1306 : // je nach Optionen mit Enter in den Edit-Modus schalten
1307 :
1308 0 : const ScInputOptions& rOpt = pScMod->GetInputOptions();
1309 0 : if ( rOpt.GetEnterEdit() )
1310 : {
1311 0 : pScMod->SetInputMode( SC_INPUT_TABLE );
1312 0 : bUsed = true;
1313 : }
1314 : }
1315 :
1316 0 : bool bEditReturn = bControl && !bShift; // An Edit-Engine weiter
1317 0 : if ( !bUsed && !bEditReturn )
1318 : {
1319 0 : if ( bOnRefSheet )
1320 0 : HideAllCursors();
1321 :
1322 0 : sal_uInt8 nMode = SC_ENTER_NORMAL;
1323 0 : if ( bShift && bControl )
1324 0 : nMode = SC_ENTER_MATRIX;
1325 0 : else if ( bAlt )
1326 0 : nMode = SC_ENTER_BLOCK;
1327 0 : pScMod->InputEnterHandler(nMode);
1328 :
1329 0 : if (nMode == SC_ENTER_NORMAL)
1330 : {
1331 0 : if( bShift )
1332 0 : GetViewData()->GetDispatcher().Execute( SID_CURSORENTERUP,
1333 0 : SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD );
1334 : else
1335 0 : GetViewData()->GetDispatcher().Execute( SID_CURSORENTERDOWN,
1336 0 : SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD );
1337 : }
1338 : else
1339 0 : UpdateInputHandler(true);
1340 :
1341 0 : if ( bOnRefSheet )
1342 0 : ShowAllCursors();
1343 :
1344 : // hier kein UpdateInputHandler, weil bei Referenzeingabe auf ein
1345 : // anderes Dokument diese ViewShell nicht die ist, auf der eingegeben
1346 : // wird!
1347 :
1348 0 : bUsed = true;
1349 : }
1350 : }
1351 0 : break;
1352 : }
1353 : }
1354 :
1355 : // Alt-Cursortasten hart codiert, weil Alt nicht konfigurierbar ist
1356 :
1357 0 : if ( !bUsed && bAlt && !bControl )
1358 : {
1359 0 : sal_uInt16 nSlotId = 0;
1360 0 : switch (nCode)
1361 : {
1362 : case KEY_UP:
1363 0 : ModifyCellSize( DIR_TOP, bShift );
1364 0 : bUsed = true;
1365 0 : break;
1366 : case KEY_DOWN:
1367 0 : ModifyCellSize( DIR_BOTTOM, bShift );
1368 0 : bUsed = true;
1369 0 : break;
1370 : case KEY_LEFT:
1371 0 : ModifyCellSize( DIR_LEFT, bShift );
1372 0 : bUsed = true;
1373 0 : break;
1374 : case KEY_RIGHT:
1375 0 : ModifyCellSize( DIR_RIGHT, bShift );
1376 0 : bUsed = true;
1377 0 : break;
1378 : case KEY_PAGEUP:
1379 0 : nSlotId = bShift ? SID_CURSORPAGELEFT_SEL : SID_CURSORPAGELEFT_;
1380 0 : break;
1381 : case KEY_PAGEDOWN:
1382 0 : nSlotId = bShift ? SID_CURSORPAGERIGHT_SEL : SID_CURSORPAGERIGHT_;
1383 0 : break;
1384 : }
1385 0 : if ( nSlotId )
1386 : {
1387 0 : GetViewData()->GetDispatcher().Execute( nSlotId, SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD );
1388 0 : bUsed = true;
1389 : }
1390 : }
1391 :
1392 : // use Ctrl+Alt+Shift+arrow keys to move the cursor in cells
1393 : // while keeping the last selection
1394 0 : if ( !bUsed && bAlt && bControl && bShift)
1395 : {
1396 0 : sal_uInt16 nSlotId = 0;
1397 0 : switch (nCode)
1398 : {
1399 : case KEY_UP:
1400 0 : nSlotId = SID_CURSORUP;
1401 0 : break;
1402 : case KEY_DOWN:
1403 0 : nSlotId = SID_CURSORDOWN;
1404 0 : break;
1405 : case KEY_LEFT:
1406 0 : nSlotId = SID_CURSORLEFT;
1407 0 : break;
1408 : case KEY_RIGHT:
1409 0 : nSlotId = SID_CURSORRIGHT;
1410 0 : break;
1411 : case KEY_PAGEUP:
1412 0 : nSlotId = SID_CURSORPAGEUP;
1413 0 : break;
1414 : case KEY_PAGEDOWN:
1415 0 : nSlotId = SID_CURSORPAGEDOWN;
1416 0 : break;
1417 : case KEY_HOME:
1418 0 : nSlotId = SID_CURSORHOME;
1419 0 : break;
1420 : case KEY_END:
1421 0 : nSlotId = SID_CURSOREND;
1422 0 : break;
1423 : default:
1424 0 : nSlotId = 0;
1425 0 : break;
1426 : }
1427 0 : if ( nSlotId )
1428 : {
1429 0 : sal_uInt16 nMode = GetLockedModifiers();
1430 0 : LockModifiers(KEY_MOD1);
1431 0 : GetViewData()->GetDispatcher().Execute( nSlotId, SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD );
1432 0 : LockModifiers(nMode);
1433 0 : bUsed = true;
1434 : }
1435 : }
1436 0 : if (bHideCursor)
1437 0 : ShowAllCursors();
1438 :
1439 0 : return bUsed;
1440 : }
1441 :
1442 0 : bool ScTabViewShell::SfxKeyInput(const KeyEvent& rKeyEvent)
1443 : {
1444 0 : return SfxViewShell::KeyInput( rKeyEvent );
1445 : }
1446 :
1447 0 : bool ScTabViewShell::KeyInput( const KeyEvent &rKeyEvent )
1448 : {
1449 0 : return TabKeyInput( rKeyEvent );
1450 : }
1451 :
1452 : #define __INIT_ScTabViewShell \
1453 : eCurOST(OST_NONE), \
1454 : nDrawSfxId(0), \
1455 : nCtrlSfxId(USHRT_MAX), \
1456 : nFormSfxId(USHRT_MAX), \
1457 : pDrawShell(NULL), \
1458 : pDrawTextShell(NULL), \
1459 : pEditShell(NULL), \
1460 : pPivotShell(NULL), \
1461 : pAuditingShell(NULL), \
1462 : pDrawFormShell(NULL), \
1463 : pCellShell(NULL), \
1464 : pOleObjectShell(NULL), \
1465 : pChartShell(NULL), \
1466 : pGraphicShell(NULL), \
1467 : pMediaShell(NULL), \
1468 : pPageBreakShell(NULL), \
1469 : pExtrusionBarShell(NULL), \
1470 : pFontworkBarShell(NULL), \
1471 : pFormShell(NULL), \
1472 : pInputHandler(NULL), \
1473 : pCurFrameLine(NULL), \
1474 : aTarget( this ), \
1475 : pDialogDPObject(NULL), \
1476 : pNavSettings(NULL), \
1477 : bActiveDrawSh(false), \
1478 : bActiveDrawTextSh(false), \
1479 : bActivePivotSh(false), \
1480 : bActiveAuditingSh(false), \
1481 : bActiveDrawFormSh(false), \
1482 : bActiveOleObjectSh(false), \
1483 : bActiveChartSh(false), \
1484 : bActiveGraphicSh(false), \
1485 : bActiveMediaSh(false), \
1486 : bActiveEditSh(false), \
1487 : bFormShellAtTop(false), \
1488 : bDontSwitch(false), \
1489 : bInFormatDialog(false), \
1490 : bPrintSelected(false), \
1491 : bReadOnly(false), \
1492 : pScSbxObject(NULL), \
1493 : bChartAreaValid(false), \
1494 : bForceFocusOnCurCell(false),\
1495 : nCurRefDlgId(0), \
1496 : pAccessibilityBroadcaster(NULL), \
1497 : mbInSwitch(false)
1498 :
1499 :
1500 0 : void ScTabViewShell::Construct( sal_uInt8 nForceDesignMode )
1501 : {
1502 0 : SfxApplication* pSfxApp = SFX_APP();
1503 0 : ScDocShell* pDocSh = GetViewData()->GetDocShell();
1504 0 : ScDocument* pDoc = pDocSh->GetDocument();
1505 0 : bReadOnly = pDocSh->IsReadOnly();
1506 0 : bIsActive = false;
1507 :
1508 0 : EnableAutoSpell(pDoc->GetDocOptions().IsAutoSpell());
1509 :
1510 0 : SetName(OUString("View")); // fuer SBX
1511 0 : Color aColBlack( COL_BLACK );
1512 0 : SetPool( &SC_MOD()->GetPool() );
1513 0 : SetWindow( GetActiveWin() );
1514 :
1515 : pCurFrameLine = new ::editeng::SvxBorderLine(&aColBlack, 20,
1516 0 : table::BorderLineStyle::SOLID);
1517 0 : pPivotSource = new ScArea;
1518 0 : StartListening(*GetViewData()->GetDocShell(),true);
1519 0 : StartListening(*GetViewFrame(),true);
1520 0 : StartListening(*pSfxApp,true); // #i62045# #i62046# application is needed for Calc's own hints
1521 :
1522 0 : SfxViewFrame* pFirst = SfxViewFrame::GetFirst(pDocSh);
1523 : bool bFirstView = !pFirst
1524 0 : || (pFirst == GetViewFrame() && !SfxViewFrame::GetNext(*pFirst,pDocSh));
1525 :
1526 0 : if ( pDocSh->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED )
1527 : {
1528 : //TODO/LATER: is there a difference between the two GetVisArea methods?
1529 0 : Rectangle aVisArea = ((const SfxObjectShell*)pDocSh)->GetVisArea();
1530 :
1531 0 : SCTAB nVisTab = pDoc->GetVisibleTab();
1532 0 : if (!pDoc->HasTable(nVisTab))
1533 : {
1534 0 : nVisTab = 0;
1535 0 : pDoc->SetVisibleTab(nVisTab);
1536 : }
1537 0 : SetTabNo( nVisTab );
1538 0 : bool bNegativePage = pDoc->IsNegativePage( nVisTab );
1539 : // show the right cells
1540 0 : GetViewData()->SetScreenPos( bNegativePage ? aVisArea.TopRight() : aVisArea.TopLeft() );
1541 :
1542 0 : if ( GetViewFrame()->GetFrame().IsInPlace() ) // inplace
1543 : {
1544 0 : pDocSh->SetInplace( true ); // schon so initialisiert
1545 0 : if (pDoc->IsEmbedded())
1546 0 : pDoc->ResetEmbedded(); // keine blaue Markierung
1547 : }
1548 0 : else if ( bFirstView )
1549 : {
1550 0 : pDocSh->SetInplace( false );
1551 0 : GetViewData()->RefreshZoom(); // recalculate PPT
1552 0 : if (!pDoc->IsEmbedded())
1553 0 : pDoc->SetEmbedded( pDoc->GetVisibleTab(), aVisArea ); // VisArea markieren
1554 : }
1555 : }
1556 :
1557 : // ViewInputHandler
1558 : // jeder Task hat neuerdings sein eigenes InputWindow,
1559 : // darum muesste eigentlich entweder jeder Task seinen InputHandler bekommen,
1560 : // oder das InputWindow muesste sich beim App-InputHandler anmelden, wenn der
1561 : // Task aktiv wird, oder das InputWindow muesste sich den InputHandler selbst
1562 : // anlegen (dann immer ueber das InputWindow suchen, und nur wenn das nicht da
1563 : // ist, den InputHandler von der App nehmen).
1564 : // Als Sofortloesung bekommt erstmal jede View ihren Inputhandler, das gibt
1565 : // nur noch Probleme, wenn zwei Views in einem Task-Fenster sind.
1566 :
1567 0 : pInputHandler = new ScInputHandler;
1568 :
1569 : // Alte Version:
1570 : // if ( !GetViewFrame()->ISA(SfxTopViewFrame) ) // OLE oder Plug-In
1571 : // pInputHandler = new ScInputHandler;
1572 :
1573 : // FormShell vor MakeDrawView anlegen, damit die DrawView auf jeden Fall
1574 : // an der FormShell angemeldet werden kann
1575 : // Gepusht wird die FormShell im ersten Activate
1576 0 : pFormShell = new FmFormShell(this);
1577 0 : pFormShell->SetControlActivationHandler( LINK( this, ScTabViewShell, FormControlActivated ) );
1578 :
1579 : // DrawView darf nicht im TabView - ctor angelegt werden,
1580 : // wenn die ViewShell noch nicht kostruiert ist...
1581 0 : if (pDoc->GetDrawLayer())
1582 0 : MakeDrawView( nForceDesignMode );
1583 0 : ViewOptionsHasChanged(false); // legt auch evtl. DrawView an
1584 :
1585 0 : ::svl::IUndoManager* pMgr = pDocSh->GetUndoManager();
1586 0 : SetUndoManager( pMgr );
1587 0 : pFormShell->SetUndoManager( pMgr );
1588 0 : if ( !pDoc->IsUndoEnabled() )
1589 : {
1590 0 : pMgr->SetMaxUndoActionCount( 0 );
1591 : }
1592 0 : SetRepeatTarget( &aTarget );
1593 0 : pFormShell->SetRepeatTarget( &aTarget );
1594 0 : SetHelpId( HID_SCSHELL_TABVWSH );
1595 :
1596 0 : if ( bFirstView ) // first view?
1597 : {
1598 0 : pDoc->SetDocVisible( true ); // used when creating new sheets
1599 0 : if ( pDocSh->IsEmpty() )
1600 : {
1601 : // set first sheet's RTL flag (following will already be initialized because of SetDocVisible)
1602 0 : pDoc->SetLayoutRTL( 0, ScGlobal::IsSystemRTL() );
1603 :
1604 : // append additional sheets (not for OLE object)
1605 0 : if ( pDocSh->GetCreateMode() != SFX_CREATE_MODE_EMBEDDED )
1606 : {
1607 : // Get the customized initial tab count
1608 0 : const ScDefaultsOptions& rOpt = SC_MOD()->GetDefaultsOptions();
1609 0 : SCTAB nInitTabCount = rOpt.GetInitTabCount();
1610 :
1611 0 : for (SCTAB i=1; i<nInitTabCount; i++)
1612 0 : pDoc->MakeTable(i,false);
1613 : }
1614 :
1615 0 : pDocSh->SetEmpty( false ); // #i6232# make sure this is done only once
1616 : }
1617 :
1618 : // ReadExtOptions is now in Activate
1619 :
1620 : // Link-Update nicht verschachteln
1621 0 : if ( pDocSh->GetCreateMode() != SFX_CREATE_MODE_INTERNAL &&
1622 0 : pDocSh->IsUpdateEnabled() ) // #105575#; update only in the first creation of the ViewShell
1623 : {
1624 : // Check if there are any external data.
1625 0 : bool bLink = pDoc->GetExternalRefManager()->hasExternalData();
1626 0 : if (!bLink)
1627 : {
1628 : // #i100042# sheet links can still exist independently from external formula references
1629 0 : SCTAB nTabCount = pDoc->GetTableCount();
1630 0 : for (SCTAB i=0; i<nTabCount && !bLink; i++)
1631 0 : if (pDoc->IsLinked(i))
1632 0 : bLink = true;
1633 : }
1634 0 : if (!bLink)
1635 : {
1636 0 : const sc::DocumentLinkManager& rMgr = pDoc->GetDocLinkManager();
1637 0 : if (rMgr.hasDdeLinks() || pDoc->HasAreaLinks())
1638 0 : bLink = true;
1639 : }
1640 0 : if (bLink)
1641 : {
1642 0 : if ( !pFirst )
1643 0 : pFirst = GetViewFrame();
1644 :
1645 0 : if(SC_MOD()->GetCurRefDlgId()==0)
1646 : {
1647 : pFirst->GetDispatcher()->Execute( SID_UPDATETABLINKS,
1648 0 : SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD );
1649 : }
1650 : }
1651 :
1652 0 : bool bReImport = false; // importierte Daten aktualisieren
1653 0 : ScDBCollection* pDBColl = pDoc->GetDBCollection();
1654 0 : if ( pDBColl )
1655 : {
1656 0 : const ScDBCollection::NamedDBs& rDBs = pDBColl->getNamedDBs();
1657 0 : ScDBCollection::NamedDBs::const_iterator itr = rDBs.begin(), itrEnd = rDBs.end();
1658 0 : for (; itr != itrEnd; ++itr)
1659 : {
1660 0 : if (itr->IsStripData() && itr->HasImportParam() && !itr->HasImportSelection())
1661 : {
1662 0 : bReImport = true;
1663 0 : break;
1664 : }
1665 : }
1666 : }
1667 0 : if (bReImport)
1668 : {
1669 0 : if ( !pFirst )
1670 0 : pFirst = GetViewFrame();
1671 0 : if(SC_MOD()->GetCurRefDlgId()==0)
1672 : {
1673 : pFirst->GetDispatcher()->Execute( SID_REIMPORT_AFTER_LOAD,
1674 0 : SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD );
1675 : }
1676 : }
1677 : }
1678 : }
1679 :
1680 0 : UpdateAutoFillMark();
1681 :
1682 : // ScDispatchProviderInterceptor registers itself in ctor
1683 0 : xDisProvInterceptor = new ScDispatchProviderInterceptor( this );
1684 :
1685 0 : bFirstActivate = true; // NavigatorUpdate aufschieben bis Activate()
1686 :
1687 : // #105575#; update only in the first creation of the ViewShell
1688 0 : pDocSh->SetUpdateEnabled(false);
1689 :
1690 0 : if ( GetViewFrame()->GetFrame().IsInPlace() )
1691 0 : UpdateHeaderWidth(); // The implace activation requires headers to be calculated
1692 :
1693 0 : SvBorder aBorder;
1694 0 : GetBorderSize( aBorder, Size() );
1695 0 : SetBorderPixel( aBorder );
1696 0 : }
1697 :
1698 :
1699 :
1700 :
1701 0 : ScTabViewShell::ScTabViewShell( SfxViewFrame* pViewFrame,
1702 : SfxViewShell* pOldSh ) :
1703 : SfxViewShell( pViewFrame, SFX_VIEW_CAN_PRINT | SFX_VIEW_HAS_PRINTOPTIONS ),
1704 0 : ScDBFunc( &pViewFrame->GetWindow(), (ScDocShell&)*pViewFrame->GetObjectShell(), this ),
1705 0 : __INIT_ScTabViewShell
1706 : {
1707 0 : const ScAppOptions& rAppOpt = SC_MOD()->GetAppOptions();
1708 :
1709 : // if switching back from print preview,
1710 : // restore the view settings that were active when creating the preview
1711 : // ReadUserData must not happen from ctor, because the view's edit window
1712 : // has to be shown by the sfx. ReadUserData is deferred until the first Activate call.
1713 : // old DesignMode state from form layer must be restored, too
1714 :
1715 0 : sal_uInt8 nForceDesignMode = SC_FORCEMODE_NONE;
1716 0 : if ( pOldSh && pOldSh->ISA( ScPreviewShell ) )
1717 : {
1718 0 : ScPreviewShell* pPreviewShell = ((ScPreviewShell*)pOldSh);
1719 0 : nForceDesignMode = pPreviewShell->GetSourceDesignMode();
1720 0 : ScPreview* p = pPreviewShell->GetPreview();
1721 0 : if (p)
1722 0 : GetViewData()->GetMarkData().SetSelectedTabs(p->GetSelectedTabs());
1723 : }
1724 :
1725 0 : Construct( nForceDesignMode );
1726 :
1727 0 : if ( GetViewData()->GetDocShell()->IsPreview() )
1728 : {
1729 : // preview for template dialog: always show whole page
1730 0 : SetZoomType( SVX_ZOOM_WHOLEPAGE, true ); // zoom value is recalculated at next Resize
1731 : }
1732 : else
1733 : {
1734 0 : Fraction aFract( rAppOpt.GetZoom(), 100 );
1735 0 : SetZoom( aFract, aFract, true );
1736 0 : SetZoomType( rAppOpt.GetZoomType(), true );
1737 : }
1738 :
1739 : // make Controller known to SFX
1740 0 : new ScTabViewObj( this );
1741 :
1742 0 : SetCurSubShell(OST_Cell);
1743 0 : SvBorder aBorder;
1744 0 : GetBorderSize( aBorder, Size() );
1745 0 : SetBorderPixel( aBorder );
1746 :
1747 : // #114409#
1748 0 : MakeDrawLayer();
1749 0 : }
1750 :
1751 : #undef __INIT_ScTabViewShell
1752 :
1753 0 : ScTabViewShell::~ScTabViewShell()
1754 : {
1755 0 : ScDocShell* pDocSh = GetViewData()->GetDocShell();
1756 0 : EndListening(*pDocSh);
1757 0 : EndListening(*GetViewFrame());
1758 0 : EndListening(*SFX_APP()); // #i62045# #i62046# needed now - SfxViewShell no longer does it
1759 :
1760 0 : SC_MOD()->ViewShellGone(this);
1761 :
1762 0 : RemoveSubShell(); // alle
1763 0 : SetWindow(0);
1764 :
1765 : // alles auf NULL, falls aus dem TabView-dtor noch darauf zugegriffen wird
1766 : //! (soll eigentlich nicht !??!?!)
1767 :
1768 0 : if (pInputHandler)
1769 0 : pInputHandler->SetDocumentDisposing(true);
1770 :
1771 0 : DELETEZ(pFontworkBarShell);
1772 0 : DELETEZ(pExtrusionBarShell);
1773 0 : DELETEZ(pCellShell);
1774 0 : DELETEZ(pPageBreakShell);
1775 0 : DELETEZ(pDrawShell);
1776 0 : DELETEZ(pDrawFormShell);
1777 0 : DELETEZ(pOleObjectShell);
1778 0 : DELETEZ(pChartShell);
1779 0 : DELETEZ(pGraphicShell);
1780 0 : DELETEZ(pMediaShell);
1781 0 : DELETEZ(pDrawTextShell);
1782 0 : DELETEZ(pEditShell);
1783 0 : DELETEZ(pPivotShell);
1784 0 : DELETEZ(pAuditingShell);
1785 0 : DELETEZ(pCurFrameLine);
1786 0 : DELETEZ(pInputHandler);
1787 0 : DELETEZ(pPivotSource);
1788 0 : DELETEZ(pDialogDPObject);
1789 0 : DELETEZ(pNavSettings);
1790 :
1791 0 : DELETEZ(pFormShell);
1792 0 : DELETEZ(pAccessibilityBroadcaster);
1793 0 : }
1794 :
1795 0 : void ScTabViewShell::SetDialogDPObject( const ScDPObject* pObj )
1796 : {
1797 0 : delete pDialogDPObject;
1798 0 : if (pObj)
1799 0 : pDialogDPObject = new ScDPObject( *pObj );
1800 : else
1801 0 : pDialogDPObject = NULL;
1802 0 : }
1803 :
1804 0 : void ScTabViewShell::FillFieldData( ScHeaderFieldData& rData )
1805 : {
1806 0 : ScDocShell* pDocShell = GetViewData()->GetDocShell();
1807 0 : ScDocument* pDoc = pDocShell->GetDocument();
1808 0 : SCTAB nTab = GetViewData()->GetTabNo();
1809 0 : OUString aTmp;
1810 0 : pDoc->GetName(nTab, aTmp);
1811 0 : rData.aTabName = aTmp;
1812 :
1813 0 : if( pDocShell->getDocProperties()->getTitle().getLength() != 0 )
1814 0 : rData.aTitle = pDocShell->getDocProperties()->getTitle();
1815 : else
1816 0 : rData.aTitle = pDocShell->GetTitle();
1817 :
1818 0 : const INetURLObject& rURLObj = pDocShell->GetMedium()->GetURLObject();
1819 0 : rData.aLongDocName = rURLObj.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS );
1820 0 : if ( !rData.aLongDocName.isEmpty() )
1821 0 : rData.aShortDocName = rURLObj.GetName( INetURLObject::DECODE_UNAMBIGUOUS );
1822 : else
1823 0 : rData.aShortDocName = rData.aLongDocName = rData.aTitle;
1824 0 : rData.nPageNo = 1;
1825 0 : rData.nTotalPages = 99;
1826 :
1827 : // eNumType kennt der Dialog selber
1828 0 : }
1829 :
1830 0 : void ScTabViewShell::SetChartArea( const ScRangeListRef& rSource, const Rectangle& rDest )
1831 : {
1832 0 : bChartAreaValid = true;
1833 0 : aChartSource = rSource;
1834 0 : aChartPos = rDest;
1835 0 : nChartDestTab = GetViewData()->GetTabNo();
1836 0 : }
1837 :
1838 0 : bool ScTabViewShell::GetChartArea( ScRangeListRef& rSource, Rectangle& rDest, SCTAB& rTab ) const
1839 : {
1840 0 : rSource = aChartSource;
1841 0 : rDest = aChartPos;
1842 0 : rTab = nChartDestTab;
1843 0 : return bChartAreaValid;
1844 : }
1845 :
1846 0 : ScNavigatorSettings* ScTabViewShell::GetNavigatorSettings()
1847 : {
1848 0 : if( !pNavSettings )
1849 0 : pNavSettings = new ScNavigatorSettings;
1850 0 : return pNavSettings;
1851 : }
1852 :
1853 :
1854 0 : void ScTabViewShell::ExecTbx( SfxRequest& rReq )
1855 : {
1856 0 : const SfxItemSet* pReqArgs = rReq.GetArgs();
1857 0 : sal_uInt16 nSlot = rReq.GetSlot();
1858 0 : const SfxPoolItem* pItem = NULL;
1859 0 : if ( pReqArgs )
1860 0 : pReqArgs->GetItemState( nSlot, true, &pItem );
1861 :
1862 0 : switch ( nSlot )
1863 : {
1864 : case SID_TBXCTL_INSERT:
1865 0 : if ( pItem )
1866 0 : nInsertCtrlState = ((const SfxUInt16Item*)pItem)->GetValue();
1867 0 : break;
1868 : case SID_TBXCTL_INSCELLS:
1869 0 : if ( pItem )
1870 0 : nInsCellsCtrlState = ((const SfxUInt16Item*)pItem)->GetValue();
1871 0 : break;
1872 : case SID_TBXCTL_INSOBJ:
1873 0 : if ( pItem )
1874 0 : nInsObjCtrlState = ((const SfxUInt16Item*)pItem)->GetValue();
1875 0 : break;
1876 : default:
1877 : OSL_FAIL("Slot im Wald");
1878 : }
1879 0 : GetViewFrame()->GetBindings().Invalidate( nSlot );
1880 0 : }
1881 :
1882 0 : void ScTabViewShell::GetTbxState( SfxItemSet& rSet )
1883 : {
1884 0 : rSet.Put( SfxUInt16Item( SID_TBXCTL_INSERT, nInsertCtrlState ) );
1885 0 : rSet.Put( SfxUInt16Item( SID_TBXCTL_INSCELLS, nInsCellsCtrlState ) );
1886 :
1887 : // ohne installiertes Chart darf Chart nicht Default sein...
1888 0 : if ( nInsObjCtrlState == SID_DRAW_CHART && !SvtModuleOptions().IsChart() )
1889 0 : nInsObjCtrlState = SID_INSERT_OBJECT;
1890 :
1891 0 : rSet.Put( SfxUInt16Item( SID_TBXCTL_INSOBJ, nInsObjCtrlState ) );
1892 0 : }
1893 :
1894 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|