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 <rangelst.hxx>
21 : #include "scitems.hxx"
22 : #include <editeng/eeitem.hxx>
23 :
24 :
25 : #include <editeng/brshitem.hxx>
26 : #include <editeng/editview.hxx>
27 : #include <svx/fmshell.hxx>
28 : #include <svx/svdoole2.hxx>
29 : #include <sfx2/bindings.hxx>
30 : #include <sfx2/viewfrm.hxx>
31 : #include <vcl/cursor.hxx>
32 :
33 : #include "tabview.hxx"
34 : #include "tabvwsh.hxx"
35 : #include "docsh.hxx"
36 : #include "gridwin.hxx"
37 : #include "olinewin.hxx"
38 : #include "colrowba.hxx"
39 : #include "tabcont.hxx"
40 : #include "scmod.hxx"
41 : #include "uiitems.hxx"
42 : #include "sc.hrc"
43 : #include "viewutil.hxx"
44 : #include "editutil.hxx"
45 : #include "inputhdl.hxx"
46 : #include "inputwin.hxx"
47 : #include "validat.hxx"
48 : #include "hintwin.hxx"
49 : #include "inputopt.hxx"
50 : #include "rfindlst.hxx"
51 : #include "hiranges.hxx"
52 : #include "viewuno.hxx"
53 : #include "chartarr.hxx"
54 : #include "anyrefdg.hxx"
55 : #include "dpobject.hxx"
56 : #include "patattr.hxx"
57 : #include "dociter.hxx"
58 : #include "seltrans.hxx"
59 : #include "fillinfo.hxx"
60 : #include "AccessibilityHints.hxx"
61 : #include "rangeutl.hxx"
62 : #include "client.hxx"
63 : #include "tabprotection.hxx"
64 : #include "markdata.hxx"
65 : #include "formula/FormulaCompiler.hxx"
66 :
67 : #include <com/sun/star/chart2/data/HighlightedRange.hpp>
68 :
69 : namespace
70 : {
71 :
72 0 : ScRange lcl_getSubRangeByIndex( const ScRange& rRange, sal_Int32 nIndex )
73 : {
74 0 : ScAddress aResult( rRange.aStart );
75 :
76 0 : SCCOL nWidth = rRange.aEnd.Col() - rRange.aStart.Col() + 1;
77 0 : SCROW nHeight = rRange.aEnd.Row() - rRange.aStart.Row() + 1;
78 0 : SCTAB nDepth = rRange.aEnd.Tab() - rRange.aStart.Tab() + 1;
79 0 : if( (nWidth > 0) && (nHeight > 0) && (nDepth > 0) )
80 : {
81 : // row by row from first to last sheet
82 0 : sal_Int32 nArea = nWidth * nHeight;
83 0 : aResult.IncCol( static_cast< SCsCOL >( nIndex % nWidth ) );
84 0 : aResult.IncRow( static_cast< SCsROW >( (nIndex % nArea) / nWidth ) );
85 0 : aResult.IncTab( static_cast< SCsTAB >( nIndex / nArea ) );
86 0 : if( !rRange.In( aResult ) )
87 0 : aResult = rRange.aStart;
88 : }
89 :
90 0 : return ScRange( aResult );
91 : }
92 :
93 : } // anonymous namespace
94 :
95 : using namespace com::sun::star;
96 :
97 : // -----------------------------------------------------------------------
98 :
99 : //
100 : // --- Public-Funktionen
101 : //
102 :
103 0 : void ScTabView::ClickCursor( SCCOL nPosX, SCROW nPosY, bool bControl )
104 : {
105 0 : ScDocument* pDoc = aViewData.GetDocument();
106 0 : SCTAB nTab = aViewData.GetTabNo();
107 0 : pDoc->SkipOverlapped(nPosX, nPosY, nTab);
108 :
109 0 : bool bRefMode = SC_MOD()->IsFormulaMode();
110 :
111 0 : if ( bRefMode )
112 : {
113 0 : DoneRefMode( false );
114 :
115 0 : if (bControl)
116 0 : SC_MOD()->AddRefEntry();
117 :
118 0 : InitRefMode( nPosX, nPosY, nTab, SC_REFTYPE_REF );
119 : }
120 : else
121 : {
122 0 : DoneBlockMode( bControl );
123 0 : aViewData.ResetOldCursor();
124 0 : SetCursor( (SCCOL) nPosX, (SCROW) nPosY );
125 : }
126 0 : }
127 :
128 0 : void ScTabView::UpdateAutoFillMark()
129 : {
130 : // single selection or cursor
131 0 : ScRange aMarkRange;
132 0 : bool bMarked = (aViewData.GetSimpleArea( aMarkRange ) == SC_MARK_SIMPLE);
133 :
134 : sal_uInt16 i;
135 0 : for (i=0; i<4; i++)
136 0 : if (pGridWin[i] && pGridWin[i]->IsVisible())
137 0 : pGridWin[i]->UpdateAutoFillMark( bMarked, aMarkRange );
138 :
139 0 : for (i=0; i<2; i++)
140 : {
141 0 : if (pColBar[i] && pColBar[i]->IsVisible())
142 0 : pColBar[i]->SetMark( bMarked, aMarkRange.aStart.Col(), aMarkRange.aEnd.Col() );
143 0 : if (pRowBar[i] && pRowBar[i]->IsVisible())
144 0 : pRowBar[i]->SetMark( bMarked, aMarkRange.aStart.Row(), aMarkRange.aEnd.Row() );
145 : }
146 :
147 : // selection transfer object is checked together with AutoFill marks,
148 : // because it has the same requirement of a single continuous block.
149 0 : CheckSelectionTransfer(); // update selection transfer object
150 0 : }
151 :
152 0 : void ScTabView::FakeButtonUp( ScSplitPos eWhich )
153 : {
154 0 : if (pGridWin[eWhich])
155 0 : pGridWin[eWhich]->FakeButtonUp();
156 0 : }
157 :
158 0 : void ScTabView::HideAllCursors()
159 : {
160 0 : for (sal_uInt16 i=0; i<4; i++)
161 0 : if (pGridWin[i])
162 0 : if (pGridWin[i]->IsVisible())
163 : {
164 0 : Cursor* pCur = pGridWin[i]->GetCursor();
165 0 : if (pCur)
166 0 : if (pCur->IsVisible())
167 0 : pCur->Hide();
168 0 : pGridWin[i]->HideCursor();
169 : }
170 0 : }
171 :
172 0 : void ScTabView::ShowAllCursors()
173 : {
174 0 : for (sal_uInt16 i=0; i<4; i++)
175 0 : if (pGridWin[i])
176 0 : if (pGridWin[i]->IsVisible())
177 : {
178 0 : pGridWin[i]->ShowCursor();
179 :
180 : // #114409#
181 0 : pGridWin[i]->CursorChanged();
182 : }
183 0 : }
184 :
185 0 : void ScTabView::ShowCursor()
186 : {
187 0 : pGridWin[aViewData.GetActivePart()]->ShowCursor();
188 :
189 : // #114409#
190 0 : pGridWin[aViewData.GetActivePart()]->CursorChanged();
191 0 : }
192 :
193 0 : void ScTabView::InvalidateAttribs()
194 : {
195 0 : SfxBindings& rBindings = aViewData.GetBindings();
196 :
197 0 : rBindings.Invalidate( SID_STYLE_APPLY );
198 0 : rBindings.Invalidate( SID_STYLE_FAMILY2 );
199 : // StarCalc kennt nur Absatz- bzw. Zellformat-Vorlagen
200 :
201 0 : rBindings.Invalidate( SID_ATTR_CHAR_FONT );
202 0 : rBindings.Invalidate( SID_ATTR_CHAR_FONTHEIGHT );
203 0 : rBindings.Invalidate( SID_ATTR_CHAR_COLOR );
204 :
205 0 : rBindings.Invalidate( SID_ATTR_CHAR_WEIGHT );
206 0 : rBindings.Invalidate( SID_ATTR_CHAR_POSTURE );
207 0 : rBindings.Invalidate( SID_ATTR_CHAR_UNDERLINE );
208 0 : rBindings.Invalidate( SID_ULINE_VAL_NONE );
209 0 : rBindings.Invalidate( SID_ULINE_VAL_SINGLE );
210 0 : rBindings.Invalidate( SID_ULINE_VAL_DOUBLE );
211 0 : rBindings.Invalidate( SID_ULINE_VAL_DOTTED );
212 :
213 0 : rBindings.Invalidate( SID_ATTR_CHAR_OVERLINE );
214 :
215 0 : rBindings.Invalidate( SID_ALIGNLEFT );
216 0 : rBindings.Invalidate( SID_ALIGNRIGHT );
217 0 : rBindings.Invalidate( SID_ALIGNBLOCK );
218 0 : rBindings.Invalidate( SID_ALIGNCENTERHOR );
219 :
220 0 : rBindings.Invalidate( SID_ALIGNTOP );
221 0 : rBindings.Invalidate( SID_ALIGNBOTTOM );
222 0 : rBindings.Invalidate( SID_ALIGNCENTERVER );
223 :
224 0 : rBindings.Invalidate( SID_BACKGROUND_COLOR );
225 :
226 0 : rBindings.Invalidate( SID_ATTR_ALIGN_LINEBREAK );
227 0 : rBindings.Invalidate( SID_NUMBER_FORMAT );
228 :
229 0 : rBindings.Invalidate( SID_TEXTDIRECTION_LEFT_TO_RIGHT );
230 0 : rBindings.Invalidate( SID_TEXTDIRECTION_TOP_TO_BOTTOM );
231 0 : rBindings.Invalidate( SID_ATTR_PARA_LEFT_TO_RIGHT );
232 0 : rBindings.Invalidate( SID_ATTR_PARA_RIGHT_TO_LEFT );
233 :
234 : // pseudo slots for Format menu
235 0 : rBindings.Invalidate( SID_ALIGN_ANY_HDEFAULT );
236 0 : rBindings.Invalidate( SID_ALIGN_ANY_LEFT );
237 0 : rBindings.Invalidate( SID_ALIGN_ANY_HCENTER );
238 0 : rBindings.Invalidate( SID_ALIGN_ANY_RIGHT );
239 0 : rBindings.Invalidate( SID_ALIGN_ANY_JUSTIFIED );
240 0 : rBindings.Invalidate( SID_ALIGN_ANY_VDEFAULT );
241 0 : rBindings.Invalidate( SID_ALIGN_ANY_TOP );
242 0 : rBindings.Invalidate( SID_ALIGN_ANY_VCENTER );
243 0 : rBindings.Invalidate( SID_ALIGN_ANY_BOTTOM );
244 :
245 0 : rBindings.Invalidate( SID_NUMBER_CURRENCY );
246 0 : rBindings.Invalidate( SID_NUMBER_SCIENTIFIC );
247 0 : rBindings.Invalidate( SID_NUMBER_DATE );
248 0 : rBindings.Invalidate( SID_NUMBER_CURRENCY );
249 0 : rBindings.Invalidate( SID_NUMBER_PERCENT );
250 0 : rBindings.Invalidate( SID_NUMBER_TIME );
251 0 : }
252 :
253 : // SetCursor - Cursor setzen, zeichnen, InputWin updaten
254 : // oder Referenz verschicken
255 : // ohne Optimierung wegen BugId 29307
256 :
257 : #ifdef _MSC_VER
258 : #pragma optimize ( "", off )
259 : #endif
260 :
261 0 : void ScTabView::SetCursor( SCCOL nPosX, SCROW nPosY, bool bNew )
262 : {
263 0 : SCCOL nOldX = aViewData.GetCurX();
264 0 : SCROW nOldY = aViewData.GetCurY();
265 :
266 : // DeactivateIP nur noch bei MarkListHasChanged
267 :
268 0 : if ( nPosX != nOldX || nPosY != nOldY || bNew )
269 : {
270 0 : ScTabViewShell* pViewShell = aViewData.GetViewShell();
271 0 : bool bRefMode = ( pViewShell ? pViewShell->IsRefInputMode() : false );
272 0 : if ( aViewData.HasEditView( aViewData.GetActivePart() ) && !bRefMode ) // 23259 oder so
273 : {
274 0 : UpdateInputLine();
275 : }
276 :
277 0 : HideAllCursors();
278 :
279 0 : aViewData.SetCurX( nPosX );
280 0 : aViewData.SetCurY( nPosY );
281 :
282 0 : ShowAllCursors();
283 :
284 0 : CursorPosChanged();
285 : }
286 0 : }
287 :
288 : #ifdef _MSC_VER
289 : #pragma optimize ( "", on )
290 : #endif
291 :
292 0 : void ScTabView::CheckSelectionTransfer()
293 : {
294 0 : if ( aViewData.IsActive() ) // only for active view
295 : {
296 0 : ScModule* pScMod = SC_MOD();
297 0 : ScSelectionTransferObj* pOld = pScMod->GetSelectionTransfer();
298 0 : if ( pOld && pOld->GetView() == this && pOld->StillValid() )
299 : {
300 : // selection not changed - nothing to do
301 : }
302 : else
303 : {
304 0 : ScSelectionTransferObj* pNew = ScSelectionTransferObj::CreateFromView( this );
305 0 : if ( pNew )
306 : {
307 : // create new selection
308 :
309 0 : if (pOld)
310 0 : pOld->ForgetView();
311 :
312 0 : uno::Reference<datatransfer::XTransferable> xRef( pNew );
313 0 : pScMod->SetSelectionTransfer( pNew );
314 0 : pNew->CopyToSelection( GetActiveWin() ); // may delete pOld
315 : }
316 0 : else if ( pOld && pOld->GetView() == this )
317 : {
318 : // remove own selection
319 :
320 0 : pOld->ForgetView();
321 0 : pScMod->SetSelectionTransfer( NULL );
322 0 : TransferableHelper::ClearSelection( GetActiveWin() ); // may delete pOld
323 : }
324 : // else: selection from outside: leave unchanged
325 : }
326 : }
327 0 : }
328 :
329 : // Eingabezeile / Menues updaten
330 : // CursorPosChanged ruft SelectionChanged
331 : // SelectionChanged ruft CellContentChanged
332 :
333 0 : void ScTabView::CellContentChanged()
334 : {
335 0 : SfxBindings& rBindings = aViewData.GetBindings();
336 :
337 0 : rBindings.Invalidate( SID_ATTR_SIZE ); // -> Fehlermeldungen anzeigen
338 0 : rBindings.Invalidate( SID_THESAURUS );
339 0 : rBindings.Invalidate( SID_HYPERLINK_GETLINK );
340 :
341 0 : InvalidateAttribs(); // Attribut-Updates
342 :
343 0 : aViewData.GetViewShell()->UpdateInputHandler();
344 0 : }
345 :
346 0 : void ScTabView::SelectionChanged()
347 : {
348 0 : SfxViewFrame* pViewFrame = aViewData.GetViewShell()->GetViewFrame();
349 0 : if (pViewFrame)
350 : {
351 0 : uno::Reference<frame::XController> xController = pViewFrame->GetFrame().GetController();
352 0 : if (xController.is())
353 : {
354 0 : ScTabViewObj* pImp = ScTabViewObj::getImplementation( xController );
355 0 : if (pImp)
356 0 : pImp->SelectionChanged();
357 0 : }
358 : }
359 :
360 0 : UpdateAutoFillMark(); // also calls CheckSelectionTransfer
361 :
362 0 : SfxBindings& rBindings = aViewData.GetBindings();
363 :
364 0 : rBindings.Invalidate( SID_CURRENTCELL ); // -> Navigator
365 0 : rBindings.Invalidate( SID_AUTO_FILTER ); // -> Menue
366 0 : rBindings.Invalidate( FID_NOTE_VISIBLE );
367 0 : rBindings.Invalidate( FID_SHOW_NOTE );
368 0 : rBindings.Invalidate( FID_HIDE_NOTE );
369 0 : rBindings.Invalidate( SID_DELETE_NOTE );
370 :
371 : // Funktionen, die evtl disabled werden muessen
372 :
373 0 : rBindings.Invalidate( FID_INS_ROWBRK );
374 0 : rBindings.Invalidate( FID_INS_COLBRK );
375 0 : rBindings.Invalidate( FID_DEL_ROWBRK );
376 0 : rBindings.Invalidate( FID_DEL_COLBRK );
377 0 : rBindings.Invalidate( FID_MERGE_ON );
378 0 : rBindings.Invalidate( FID_MERGE_OFF );
379 0 : rBindings.Invalidate( FID_MERGE_TOGGLE );
380 0 : rBindings.Invalidate( SID_AUTOFILTER_HIDE );
381 0 : rBindings.Invalidate( SID_UNFILTER );
382 0 : rBindings.Invalidate( SID_REIMPORT_DATA );
383 0 : rBindings.Invalidate( SID_REFRESH_DBAREA );
384 0 : rBindings.Invalidate( SID_OUTLINE_SHOW );
385 0 : rBindings.Invalidate( SID_OUTLINE_HIDE );
386 0 : rBindings.Invalidate( SID_OUTLINE_REMOVE );
387 0 : rBindings.Invalidate( FID_FILL_TO_BOTTOM );
388 0 : rBindings.Invalidate( FID_FILL_TO_RIGHT );
389 0 : rBindings.Invalidate( FID_FILL_TO_TOP );
390 0 : rBindings.Invalidate( FID_FILL_TO_LEFT );
391 0 : rBindings.Invalidate( FID_FILL_SERIES );
392 0 : rBindings.Invalidate( SID_SCENARIOS );
393 0 : rBindings.Invalidate( SID_AUTOFORMAT );
394 0 : rBindings.Invalidate( SID_OPENDLG_TABOP );
395 0 : rBindings.Invalidate( SID_DATA_SELECT );
396 :
397 0 : rBindings.Invalidate( SID_CUT );
398 0 : rBindings.Invalidate( SID_COPY );
399 0 : rBindings.Invalidate( SID_PASTE );
400 0 : rBindings.Invalidate( SID_PASTE_SPECIAL );
401 :
402 0 : rBindings.Invalidate( FID_INS_ROW );
403 0 : rBindings.Invalidate( FID_INS_COLUMN );
404 0 : rBindings.Invalidate( FID_INS_CELL );
405 0 : rBindings.Invalidate( FID_INS_CELLSDOWN );
406 0 : rBindings.Invalidate( FID_INS_CELLSRIGHT );
407 :
408 0 : rBindings.Invalidate( FID_CHG_COMMENT );
409 :
410 : // nur wegen Zellschutz:
411 :
412 0 : rBindings.Invalidate( SID_CELL_FORMAT_RESET );
413 0 : rBindings.Invalidate( SID_DELETE );
414 0 : rBindings.Invalidate( SID_DELETE_CONTENTS );
415 0 : rBindings.Invalidate( FID_DELETE_CELL );
416 0 : rBindings.Invalidate( FID_CELL_FORMAT );
417 0 : rBindings.Invalidate( SID_ENABLE_HYPHENATION );
418 0 : rBindings.Invalidate( SID_INSERT_POSTIT );
419 0 : rBindings.Invalidate( SID_CHARMAP );
420 0 : rBindings.Invalidate( SID_OPENDLG_FUNCTION );
421 0 : rBindings.Invalidate( FID_VALIDATION );
422 0 : rBindings.Invalidate( SID_EXTERNAL_SOURCE );
423 0 : rBindings.Invalidate( SID_TEXT_TO_COLUMNS );
424 0 : rBindings.Invalidate( SID_SORT_ASCENDING );
425 0 : rBindings.Invalidate( SID_SORT_DESCENDING );
426 :
427 0 : if (aViewData.GetViewShell()->HasAccessibilityObjects())
428 0 : aViewData.GetViewShell()->BroadcastAccessibility(SfxSimpleHint(SC_HINT_ACC_CURSORCHANGED));
429 :
430 0 : CellContentChanged();
431 0 : }
432 :
433 0 : void ScTabView::CursorPosChanged()
434 : {
435 0 : bool bRefMode = SC_MOD()->IsFormulaMode();
436 0 : if ( !bRefMode ) // Abfrage, damit RefMode bei Tabellenwechsel funktioniert
437 0 : aViewData.GetDocShell()->Broadcast( SfxSimpleHint( FID_KILLEDITVIEW ) );
438 :
439 : // Broadcast, damit andere Views des Dokuments auch umschalten
440 :
441 0 : ScDocument* pDoc = aViewData.GetDocument();
442 : bool bDP = NULL != pDoc->GetDPAtCursor(
443 0 : aViewData.GetCurX(), aViewData.GetCurY(), aViewData.GetTabNo() );
444 0 : aViewData.GetViewShell()->SetPivotShell(bDP);
445 :
446 : // UpdateInputHandler jetzt in CellContentChanged
447 :
448 0 : SelectionChanged();
449 :
450 0 : aViewData.SetTabStartCol( SC_TABSTART_NONE );
451 0 : }
452 :
453 : namespace {
454 :
455 0 : Point calcHintWindowPosition(
456 : const Point& rCellPos, const Size& rCellSize, const Size& rFrameWndSize, const Size& rHintWndSize)
457 : {
458 0 : const long nMargin = 20;
459 :
460 0 : long nMLeft = rCellPos.X();
461 0 : long nMRight = rFrameWndSize.Width() - rCellPos.X() - rCellSize.Width();
462 0 : long nMTop = rCellPos.Y();
463 0 : long nMBottom = rFrameWndSize.Height() - rCellPos.Y() - rCellSize.Height();
464 :
465 : // First, see if we can fit the entire hint window in the visible region.
466 :
467 0 : if (nMRight - nMargin >= rHintWndSize.Width())
468 : {
469 : // Right margin is wide enough.
470 0 : if (rFrameWndSize.Height() >= rHintWndSize.Height())
471 : {
472 : // The frame has enough height. Take it.
473 0 : Point aPos = rCellPos;
474 0 : aPos.X() += rCellSize.Width() + nMargin;
475 0 : if (aPos.Y() + rHintWndSize.Height() > rFrameWndSize.Height())
476 : {
477 : // Push the hint window up a bit to make it fit.
478 0 : aPos.Y() = rFrameWndSize.Height() - rHintWndSize.Height();
479 : }
480 0 : return aPos;
481 : }
482 : }
483 :
484 0 : if (nMBottom - nMargin >= rHintWndSize.Height())
485 : {
486 : // Bottom margin is high enough.
487 0 : if (rFrameWndSize.Width() >= rHintWndSize.Width())
488 : {
489 : // The frame has enough width. Take it.
490 0 : Point aPos = rCellPos;
491 0 : aPos.Y() += rCellSize.Height() + nMargin;
492 0 : if (aPos.X() + rHintWndSize.Width() > rFrameWndSize.Width())
493 : {
494 : // Move the hint window to the left to make it fit.
495 0 : aPos.X() = rFrameWndSize.Width() - rHintWndSize.Width();
496 : }
497 0 : return aPos;
498 : }
499 : }
500 :
501 0 : if (nMLeft - nMargin >= rHintWndSize.Width())
502 : {
503 : // Left margin is wide enough.
504 0 : if (rFrameWndSize.Height() >= rHintWndSize.Height())
505 : {
506 : // The frame is high enough. Take it.
507 0 : Point aPos = rCellPos;
508 0 : aPos.X() -= rHintWndSize.Width() + nMargin;
509 0 : if (aPos.Y() + rHintWndSize.Height() > rFrameWndSize.Height())
510 : {
511 : // Push the hint window up a bit to make it fit.
512 0 : aPos.Y() = rFrameWndSize.Height() - rHintWndSize.Height();
513 : }
514 0 : return aPos;
515 : }
516 : }
517 :
518 0 : if (nMTop - nMargin >= rHintWndSize.Height())
519 : {
520 : // Top margin is high enough.
521 0 : if (rFrameWndSize.Width() >= rHintWndSize.Width())
522 : {
523 : // The frame is wide enough. Take it.
524 0 : Point aPos = rCellPos;
525 0 : aPos.Y() -= rHintWndSize.Height() + nMargin;
526 0 : if (aPos.X() + rHintWndSize.Width() > rFrameWndSize.Width())
527 : {
528 : // Move the hint window to the left to make it fit.
529 0 : aPos.X() = rFrameWndSize.Width() - rHintWndSize.Width();
530 : }
531 0 : return aPos;
532 : }
533 : }
534 :
535 : // The popup doesn't fit in any direction in its entirety. Do our best.
536 :
537 0 : if (nMRight - nMargin >= rHintWndSize.Width())
538 : {
539 : // Right margin is good enough.
540 0 : Point aPos = rCellPos;
541 0 : aPos.X() += nMargin + rCellSize.Width();
542 0 : aPos.Y() = 0;
543 0 : return aPos;
544 : }
545 :
546 0 : if (nMBottom - nMargin >= rHintWndSize.Height())
547 : {
548 : // Bottom margin is good enough.
549 0 : Point aPos = rCellPos;
550 0 : aPos.Y() += nMargin + rCellSize.Height();
551 0 : aPos.X() = 0;
552 0 : return aPos;
553 : }
554 :
555 0 : if (nMLeft - nMargin >= rHintWndSize.Width())
556 : {
557 : // Left margin is good enough.
558 0 : Point aPos = rCellPos;
559 0 : aPos.X() -= rHintWndSize.Width() + nMargin;
560 0 : aPos.Y() = 0;
561 0 : return aPos;
562 : }
563 :
564 0 : if (nMTop - nMargin >= rHintWndSize.Height())
565 : {
566 : // Top margin is good enough.
567 0 : Point aPos = rCellPos;
568 0 : aPos.Y() -= rHintWndSize.Height() + nMargin;
569 0 : aPos.X() = 0;
570 0 : return aPos;
571 : }
572 :
573 : // None of the above. Hopeless. At least try not to cover the current
574 : // cell.
575 0 : Point aPos = rCellPos;
576 0 : aPos.X() += rCellSize.Width();
577 0 : return aPos;
578 : }
579 :
580 : }
581 :
582 0 : void ScTabView::TestHintWindow()
583 : {
584 : // show input help window and list drop-down button for validity
585 :
586 0 : bool bListValButton = false;
587 0 : ScAddress aListValPos;
588 :
589 0 : ScDocument* pDoc = aViewData.GetDocument();
590 : const SfxUInt32Item* pItem = (const SfxUInt32Item*)
591 0 : pDoc->GetAttr( aViewData.GetCurX(),
592 : aViewData.GetCurY(),
593 0 : aViewData.GetTabNo(),
594 0 : ATTR_VALIDDATA );
595 0 : if ( pItem->GetValue() )
596 : {
597 0 : const ScValidationData* pData = pDoc->GetValidationEntry( pItem->GetValue() );
598 : OSL_ENSURE(pData,"ValidationData nicht gefunden");
599 0 : String aTitle, aMessage;
600 0 : if ( pData && pData->GetInput( aTitle, aMessage ) && aMessage.Len() > 0 )
601 : {
602 : //! Abfrage, ob an gleicher Stelle !!!!
603 :
604 0 : mpInputHintWindow.reset();
605 :
606 0 : ScSplitPos eWhich = aViewData.GetActivePart();
607 0 : ScGridWindow* pWin = pGridWin[eWhich];
608 0 : SCCOL nCol = aViewData.GetCurX();
609 0 : SCROW nRow = aViewData.GetCurY();
610 0 : Point aPos = aViewData.GetScrPos( nCol, nRow, eWhich );
611 0 : Size aWinSize = pWin->GetOutputSizePixel();
612 : // Cursor sichtbar?
613 0 : if ( nCol >= aViewData.GetPosX(WhichH(eWhich)) &&
614 0 : nRow >= aViewData.GetPosY(WhichV(eWhich)) &&
615 0 : aPos.X() < aWinSize.Width() && aPos.Y() < aWinSize.Height() )
616 : {
617 : // HintWindow anlegen, bestimmt seine Groesse selbst
618 0 : mpInputHintWindow.reset(new ScHintWindow(pWin, aTitle, aMessage));
619 0 : Size aHintWndSize = mpInputHintWindow->GetSizePixel();
620 0 : long nCellSizeX = 0;
621 0 : long nCellSizeY = 0;
622 0 : aViewData.GetMergeSizePixel(nCol, nRow, nCellSizeX, nCellSizeY);
623 :
624 : Point aHintPos = calcHintWindowPosition(
625 0 : aPos, Size(nCellSizeX,nCellSizeY), aWinSize, aHintWndSize);
626 :
627 0 : mpInputHintWindow->SetPosPixel( aHintPos );
628 0 : mpInputHintWindow->ToTop();
629 0 : mpInputHintWindow->Show();
630 : }
631 : }
632 : else
633 0 : mpInputHintWindow.reset();
634 :
635 : // list drop-down button
636 0 : if ( pData && pData->HasSelectionList() )
637 : {
638 0 : aListValPos.Set( aViewData.GetCurX(), aViewData.GetCurY(), aViewData.GetTabNo() );
639 0 : bListValButton = true;
640 0 : }
641 : }
642 : else
643 0 : mpInputHintWindow.reset();
644 :
645 0 : for ( sal_uInt16 i=0; i<4; i++ )
646 0 : if ( pGridWin[i] && pGridWin[i]->IsVisible() )
647 0 : pGridWin[i]->UpdateListValPos( bListValButton, aListValPos );
648 0 : }
649 :
650 0 : bool ScTabView::HasHintWindow() const
651 : {
652 0 : return mpInputHintWindow.get() != NULL;
653 : }
654 :
655 0 : void ScTabView::RemoveHintWindow()
656 : {
657 0 : mpInputHintWindow.reset();
658 0 : }
659 :
660 :
661 : // find window that should not be over the cursor
662 0 : static Window* lcl_GetCareWin(SfxViewFrame* pViewFrm)
663 : {
664 : //! auch Spelling ??? (dann beim Aufruf Membervariable setzen)
665 :
666 : // Suchen & Ersetzen
667 0 : if ( pViewFrm->HasChildWindow(SID_SEARCH_DLG) )
668 : {
669 0 : SfxChildWindow* pChild = pViewFrm->GetChildWindow(SID_SEARCH_DLG);
670 0 : if (pChild)
671 : {
672 0 : Window* pWin = pChild->GetWindow();
673 0 : if (pWin && pWin->IsVisible())
674 0 : return pWin;
675 : }
676 : }
677 :
678 : // Aenderungen uebernehmen
679 0 : if ( pViewFrm->HasChildWindow(FID_CHG_ACCEPT) )
680 : {
681 0 : SfxChildWindow* pChild = pViewFrm->GetChildWindow(FID_CHG_ACCEPT);
682 0 : if (pChild)
683 : {
684 0 : Window* pWin = pChild->GetWindow();
685 0 : if (pWin && pWin->IsVisible())
686 0 : return pWin;
687 : }
688 : }
689 :
690 0 : return NULL;
691 : }
692 :
693 : //
694 : // Bildschirm an Cursorposition anpassen
695 : //
696 :
697 0 : void ScTabView::AlignToCursor( SCsCOL nCurX, SCsROW nCurY, ScFollowMode eMode,
698 : const ScSplitPos* pWhich )
699 : {
700 : //
701 : // aktiven Teil umschalten jetzt hier
702 : //
703 :
704 0 : ScSplitPos eActive = aViewData.GetActivePart();
705 0 : ScHSplitPos eActiveX = WhichH(eActive);
706 0 : ScVSplitPos eActiveY = WhichV(eActive);
707 0 : bool bHFix = (aViewData.GetHSplitMode() == SC_SPLIT_FIX);
708 0 : bool bVFix = (aViewData.GetVSplitMode() == SC_SPLIT_FIX);
709 0 : if (bHFix)
710 0 : if (eActiveX == SC_SPLIT_LEFT && nCurX >= (SCsCOL)aViewData.GetFixPosX())
711 : {
712 0 : ActivatePart( (eActiveY==SC_SPLIT_TOP) ? SC_SPLIT_TOPRIGHT : SC_SPLIT_BOTTOMRIGHT );
713 0 : eActiveX = SC_SPLIT_RIGHT;
714 : }
715 0 : if (bVFix)
716 0 : if (eActiveY == SC_SPLIT_TOP && nCurY >= (SCsROW)aViewData.GetFixPosY())
717 : {
718 0 : ActivatePart( (eActiveX==SC_SPLIT_LEFT) ? SC_SPLIT_BOTTOMLEFT : SC_SPLIT_BOTTOMRIGHT );
719 0 : eActiveY = SC_SPLIT_BOTTOM;
720 : }
721 :
722 : //
723 : // eigentliches Align
724 : //
725 :
726 0 : if ( eMode != SC_FOLLOW_NONE )
727 : {
728 : ScSplitPos eAlign;
729 0 : if (pWhich)
730 0 : eAlign = *pWhich;
731 : else
732 0 : eAlign = aViewData.GetActivePart();
733 0 : ScHSplitPos eAlignX = WhichH(eAlign);
734 0 : ScVSplitPos eAlignY = WhichV(eAlign);
735 :
736 0 : SCsCOL nDeltaX = (SCsCOL) aViewData.GetPosX(eAlignX);
737 0 : SCsROW nDeltaY = (SCsROW) aViewData.GetPosY(eAlignY);
738 0 : SCsCOL nSizeX = (SCsCOL) aViewData.VisibleCellsX(eAlignX);
739 0 : SCsROW nSizeY = (SCsROW) aViewData.VisibleCellsY(eAlignY);
740 :
741 : long nCellSizeX;
742 : long nCellSizeY;
743 0 : if ( nCurX >= 0 && nCurY >= 0 )
744 0 : aViewData.GetMergeSizePixel( (SCCOL)nCurX, (SCROW)nCurY, nCellSizeX, nCellSizeY );
745 : else
746 0 : nCellSizeX = nCellSizeY = 0;
747 0 : Size aScrSize = aViewData.GetScrSize();
748 0 : long nSpaceX = ( aScrSize.Width() - nCellSizeX ) / 2;
749 0 : long nSpaceY = ( aScrSize.Height() - nCellSizeY ) / 2;
750 : // nSpaceY: desired start position of cell for FOLLOW_JUMP, modified if dialog interferes
751 :
752 0 : bool bForceNew = false; // force new calculation of JUMP position (vertical only)
753 :
754 : // VisibleCellsY == CellsAtY( GetPosY( eWhichY ), 1, eWhichY )
755 :
756 : //-------------------------------------------------------------------------------
757 : // falls z.B. Suchen-Dialog offen ist, Cursor nicht hinter den Dialog stellen
758 : // wenn moeglich, die Zeile mit dem Cursor oberhalb oder unterhalb des Dialogs
759 :
760 : //! nicht, wenn schon komplett sichtbar
761 :
762 0 : if ( eMode == SC_FOLLOW_JUMP )
763 : {
764 0 : Window* pCare = lcl_GetCareWin( aViewData.GetViewShell()->GetViewFrame() );
765 0 : if (pCare)
766 : {
767 0 : bool bLimit = false;
768 0 : Rectangle aDlgPixel;
769 0 : Size aWinSize;
770 0 : Window* pWin = GetActiveWin();
771 0 : if (pWin)
772 : {
773 0 : aDlgPixel = pCare->GetWindowExtentsRelative( pWin );
774 0 : aWinSize = pWin->GetOutputSizePixel();
775 : // ueberdeckt der Dialog das GridWin?
776 0 : if ( aDlgPixel.Right() >= 0 && aDlgPixel.Left() < aWinSize.Width() )
777 : {
778 0 : if ( nCurX < nDeltaX || nCurX >= nDeltaX+nSizeX ||
779 : nCurY < nDeltaY || nCurY >= nDeltaY+nSizeY )
780 0 : bLimit = true; // es wird sowieso gescrollt
781 : else
782 : {
783 : // Cursor ist auf dem Bildschirm
784 0 : Point aStart = aViewData.GetScrPos( nCurX, nCurY, eAlign );
785 : long nCSX, nCSY;
786 0 : aViewData.GetMergeSizePixel( nCurX, nCurY, nCSX, nCSY );
787 0 : Rectangle aCursor( aStart, Size( nCSX, nCSY ) );
788 0 : if ( aCursor.IsOver( aDlgPixel ) )
789 0 : bLimit = true; // Zelle vom Dialog ueberdeckt
790 : }
791 : }
792 : }
793 :
794 0 : if (bLimit)
795 : {
796 0 : bool bBottom = false;
797 0 : long nTopSpace = aDlgPixel.Top();
798 0 : long nBotSpace = aWinSize.Height() - aDlgPixel.Bottom();
799 0 : if ( nBotSpace > 0 && nBotSpace > nTopSpace )
800 : {
801 0 : long nDlgBot = aDlgPixel.Bottom();
802 : SCsCOL nWPosX;
803 : SCsROW nWPosY;
804 0 : aViewData.GetPosFromPixel( 0,nDlgBot, eAlign, nWPosX, nWPosY );
805 0 : ++nWPosY; // unter der letzten betroffenen Zelle
806 :
807 0 : SCsROW nDiff = nWPosY - nDeltaY;
808 0 : if ( nCurY >= nDiff ) // Pos. kann nicht negativ werden
809 : {
810 0 : nSpaceY = nDlgBot + ( nBotSpace - nCellSizeY ) / 2;
811 0 : bBottom = true;
812 0 : bForceNew = true;
813 : }
814 : }
815 0 : if ( !bBottom && nTopSpace > 0 )
816 : {
817 0 : nSpaceY = ( nTopSpace - nCellSizeY ) / 2;
818 0 : bForceNew = true;
819 : }
820 : }
821 : }
822 : }
823 : //-------------------------------------------------------------------------------
824 :
825 0 : SCsCOL nNewDeltaX = nDeltaX;
826 0 : SCsROW nNewDeltaY = nDeltaY;
827 0 : bool bDoLine = false;
828 :
829 0 : switch (eMode)
830 : {
831 : case SC_FOLLOW_JUMP:
832 0 : if ( nCurX < nDeltaX || nCurX >= nDeltaX+nSizeX )
833 : {
834 0 : nNewDeltaX = nCurX - static_cast<SCsCOL>(aViewData.CellsAtX( nCurX, -1, eAlignX, static_cast<sal_uInt16>(nSpaceX) ));
835 0 : if (nNewDeltaX < 0) nNewDeltaX = 0;
836 0 : nSizeX = (SCsCOL) aViewData.CellsAtX( nNewDeltaX, 1, eAlignX );
837 : }
838 0 : if ( nCurY < nDeltaY || nCurY >= nDeltaY+nSizeY || bForceNew )
839 : {
840 0 : nNewDeltaY = nCurY - static_cast<SCsROW>(aViewData.CellsAtY( nCurY, -1, eAlignY, static_cast<sal_uInt16>(nSpaceY) ));
841 0 : if (nNewDeltaY < 0) nNewDeltaY = 0;
842 0 : nSizeY = (SCsROW) aViewData.CellsAtY( nNewDeltaY, 1, eAlignY );
843 : }
844 0 : bDoLine = true;
845 0 : break;
846 :
847 : case SC_FOLLOW_LINE:
848 0 : bDoLine = true;
849 0 : break;
850 :
851 : case SC_FOLLOW_FIX:
852 0 : if ( nCurX < nDeltaX || nCurX >= nDeltaX+nSizeX )
853 : {
854 0 : nNewDeltaX = nDeltaX + nCurX - aViewData.GetCurX();
855 0 : if (nNewDeltaX < 0) nNewDeltaX = 0;
856 0 : nSizeX = (SCsCOL) aViewData.CellsAtX( nNewDeltaX, 1, eAlignX );
857 : }
858 0 : if ( nCurY < nDeltaY || nCurY >= nDeltaY+nSizeY )
859 : {
860 0 : nNewDeltaY = nDeltaY + nCurY - aViewData.GetCurY();
861 0 : if (nNewDeltaY < 0) nNewDeltaY = 0;
862 0 : nSizeY = (SCsROW) aViewData.CellsAtY( nNewDeltaY, 1, eAlignY );
863 : }
864 :
865 : // like old version of SC_FOLLOW_JUMP:
866 :
867 0 : if ( nCurX < nNewDeltaX || nCurX >= nNewDeltaX+nSizeX )
868 : {
869 0 : nNewDeltaX = nCurX - (nSizeX / 2);
870 0 : if (nNewDeltaX < 0) nNewDeltaX = 0;
871 0 : nSizeX = (SCsCOL) aViewData.CellsAtX( nNewDeltaX, 1, eAlignX );
872 : }
873 0 : if ( nCurY < nNewDeltaY || nCurY >= nNewDeltaY+nSizeY )
874 : {
875 0 : nNewDeltaY = nCurY - (nSizeY / 2);
876 0 : if (nNewDeltaY < 0) nNewDeltaY = 0;
877 0 : nSizeY = (SCsROW) aViewData.CellsAtY( nNewDeltaY, 1, eAlignY );
878 : }
879 :
880 0 : bDoLine = true;
881 0 : break;
882 :
883 : case SC_FOLLOW_NONE:
884 0 : break;
885 : default:
886 : OSL_FAIL("Falscher Cursormodus");
887 0 : break;
888 : }
889 :
890 0 : if (bDoLine)
891 : {
892 0 : while ( nCurX >= nNewDeltaX+nSizeX )
893 : {
894 0 : nNewDeltaX = nCurX-nSizeX+1;
895 0 : ScDocument* pDoc = aViewData.GetDocument();
896 0 : SCTAB nTab = aViewData.GetTabNo();
897 0 : while ( nNewDeltaX < MAXCOL && !pDoc->GetColWidth( nNewDeltaX, nTab ) )
898 0 : ++nNewDeltaX;
899 0 : nSizeX = (SCsCOL) aViewData.CellsAtX( nNewDeltaX, 1, eAlignX );
900 : }
901 0 : while ( nCurY >= nNewDeltaY+nSizeY )
902 : {
903 0 : nNewDeltaY = nCurY-nSizeY+1;
904 0 : ScDocument* pDoc = aViewData.GetDocument();
905 0 : SCTAB nTab = aViewData.GetTabNo();
906 0 : while ( nNewDeltaY < MAXROW && !pDoc->GetRowHeight( nNewDeltaY, nTab ) )
907 0 : ++nNewDeltaY;
908 0 : nSizeY = (SCsROW) aViewData.CellsAtY( nNewDeltaY, 1, eAlignY );
909 : }
910 0 : if ( nCurX < nNewDeltaX ) nNewDeltaX = nCurX;
911 0 : if ( nCurY < nNewDeltaY ) nNewDeltaY = nCurY;
912 : }
913 :
914 0 : if ( nNewDeltaX != nDeltaX )
915 0 : nSizeX = (SCsCOL) aViewData.CellsAtX( nNewDeltaX, 1, eAlignX );
916 0 : if (nNewDeltaX+nSizeX-1 > MAXCOL) nNewDeltaX = MAXCOL-nSizeX+1;
917 0 : if (nNewDeltaX < 0) nNewDeltaX = 0;
918 :
919 0 : if ( nNewDeltaY != nDeltaY )
920 0 : nSizeY = (SCsROW) aViewData.CellsAtY( nNewDeltaY, 1, eAlignY );
921 0 : if (nNewDeltaY+nSizeY-1 > MAXROW) nNewDeltaY = MAXROW-nSizeY+1;
922 0 : if (nNewDeltaY < 0) nNewDeltaY = 0;
923 :
924 0 : if ( nNewDeltaX != nDeltaX ) ScrollX( nNewDeltaX - nDeltaX, eAlignX );
925 0 : if ( nNewDeltaY != nDeltaY ) ScrollY( nNewDeltaY - nDeltaY, eAlignY );
926 : }
927 :
928 : //
929 : // nochmal aktiven Teil umschalten
930 : //
931 :
932 0 : if (bHFix)
933 0 : if (eActiveX == SC_SPLIT_RIGHT && nCurX < (SCsCOL)aViewData.GetFixPosX())
934 : {
935 0 : ActivatePart( (eActiveY==SC_SPLIT_TOP) ? SC_SPLIT_TOPLEFT : SC_SPLIT_BOTTOMLEFT );
936 0 : eActiveX = SC_SPLIT_LEFT;
937 : }
938 0 : if (bVFix)
939 0 : if (eActiveY == SC_SPLIT_BOTTOM && nCurY < (SCsROW)aViewData.GetFixPosY())
940 : {
941 0 : ActivatePart( (eActiveX==SC_SPLIT_LEFT) ? SC_SPLIT_TOPLEFT : SC_SPLIT_TOPRIGHT );
942 0 : eActiveY = SC_SPLIT_TOP;
943 : }
944 0 : }
945 :
946 0 : bool ScTabView::SelMouseButtonDown( const MouseEvent& rMEvt )
947 : {
948 0 : bool bRet = false;
949 :
950 : // #i3875# *Hack*
951 0 : bool bMod1Locked = aViewData.GetViewShell()->GetLockedModifiers() & KEY_MOD1 ? true : false;
952 0 : aViewData.SetSelCtrlMouseClick( rMEvt.IsMod1() || bMod1Locked );
953 :
954 0 : if ( pSelEngine )
955 : {
956 0 : bMoveIsShift = rMEvt.IsShift();
957 0 : bRet = pSelEngine->SelMouseButtonDown( rMEvt );
958 0 : bMoveIsShift = false;
959 : }
960 :
961 0 : aViewData.SetSelCtrlMouseClick( false ); // #i3875# *Hack*
962 :
963 0 : return bRet;
964 : }
965 :
966 : //
967 : // MoveCursor - mit Anpassung des Bildausschnitts
968 : //
969 :
970 0 : void ScTabView::MoveCursorAbs( SCsCOL nCurX, SCsROW nCurY, ScFollowMode eMode,
971 : bool bShift, bool bControl, bool bKeepOld, bool bKeepSel )
972 : {
973 0 : if (!bKeepOld)
974 0 : aViewData.ResetOldCursor();
975 :
976 0 : if (nCurX < 0) nCurX = 0;
977 0 : if (nCurY < 0) nCurY = 0;
978 0 : if (nCurX > MAXCOL) nCurX = MAXCOL;
979 0 : if (nCurY > MAXROW) nCurY = MAXROW;
980 :
981 0 : HideAllCursors();
982 :
983 : // aktiven Teil umschalten jetzt in AlignToCursor
984 :
985 0 : AlignToCursor( nCurX, nCurY, eMode );
986 : //! auf OS/2: SC_FOLLOW_JUMP statt SC_FOLLOW_LINE, um Nachlaufen zu verhindern ???
987 :
988 0 : if (bKeepSel)
989 : {
990 0 : SetCursor( nCurX, nCurY ); // Markierung stehenlassen
991 :
992 : // If the cursor is in existing selection, it's a cursor movement by
993 : // ENTER or TAB. If not, then it's a new selection during ADD
994 : // selection mode.
995 :
996 0 : const ScMarkData& rMark = aViewData.GetMarkData();
997 0 : ScRangeList aSelList;
998 0 : rMark.FillRangeListWithMarks(&aSelList, false);
999 0 : if (!aSelList.In(ScRange(nCurX, nCurY, aViewData.GetTabNo())))
1000 : // Cursor not in existing selection. Start a new selection.
1001 0 : DoneBlockMode(true);
1002 : }
1003 : else
1004 : {
1005 0 : if (!bShift)
1006 : {
1007 : // Remove all marked data on cursor movement unless the Shift is locked.
1008 0 : ScMarkData aData(aViewData.GetMarkData());
1009 0 : aData.ResetMark();
1010 0 : SetMarkData(aData);
1011 : }
1012 :
1013 0 : bool bSame = ( nCurX == aViewData.GetCurX() && nCurY == aViewData.GetCurY() );
1014 0 : bMoveIsShift = bShift;
1015 0 : pSelEngine->CursorPosChanging( bShift, bControl );
1016 0 : bMoveIsShift = false;
1017 0 : aFunctionSet.SetCursorAtCell( nCurX, nCurY, false );
1018 :
1019 : // Wenn der Cursor nicht bewegt wurde, muss das SelectionChanged fuer das
1020 : // Aufheben der Selektion hier einzeln passieren:
1021 0 : if (bSame)
1022 0 : SelectionChanged();
1023 : }
1024 :
1025 0 : ShowAllCursors();
1026 0 : TestHintWindow();
1027 0 : }
1028 :
1029 0 : void ScTabView::MoveCursorRel( SCsCOL nMovX, SCsROW nMovY, ScFollowMode eMode,
1030 : bool bShift, bool bKeepSel )
1031 : {
1032 0 : ScDocument* pDoc = aViewData.GetDocument();
1033 0 : SCTAB nTab = aViewData.GetTabNo();
1034 :
1035 0 : bool bSkipProtected = false, bSkipUnprotected = false;
1036 0 : ScTableProtection* pProtect = pDoc->GetTabProtection(nTab);
1037 0 : if ( pProtect && pProtect->isProtected() )
1038 : {
1039 0 : bSkipProtected = !pProtect->isOptionEnabled(ScTableProtection::SELECT_LOCKED_CELLS);
1040 0 : bSkipUnprotected = !pProtect->isOptionEnabled(ScTableProtection::SELECT_UNLOCKED_CELLS);
1041 : }
1042 :
1043 0 : if ( bSkipProtected && bSkipUnprotected )
1044 0 : return;
1045 :
1046 : SCsCOL nOldX;
1047 : SCsROW nOldY;
1048 : SCsCOL nCurX;
1049 : SCsROW nCurY;
1050 0 : if ( aViewData.IsRefMode() )
1051 : {
1052 0 : nOldX = (SCsCOL) aViewData.GetRefEndX();
1053 0 : nOldY = (SCsROW) aViewData.GetRefEndY();
1054 0 : nCurX = nOldX + nMovX;
1055 0 : nCurY = nOldY + nMovY;
1056 : }
1057 : else
1058 : {
1059 0 : nOldX = (SCsCOL) aViewData.GetCurX();
1060 0 : nOldY = (SCsROW) aViewData.GetCurY();
1061 0 : nCurX = (nMovX != 0) ? nOldX+nMovX : (SCsCOL) aViewData.GetOldCurX();
1062 0 : nCurY = (nMovY != 0) ? nOldY+nMovY : (SCsROW) aViewData.GetOldCurY();
1063 : }
1064 :
1065 0 : aViewData.ResetOldCursor();
1066 :
1067 0 : if (nMovX != 0 && VALIDCOLROW(nCurX,nCurY))
1068 0 : SkipCursorHorizontal(nCurX, nCurY, nOldX, nMovX);
1069 :
1070 0 : if (nMovY != 0 && VALIDCOLROW(nCurX,nCurY))
1071 0 : SkipCursorVertical(nCurX, nCurY, nOldY, nMovY);
1072 :
1073 0 : MoveCursorAbs( nCurX, nCurY, eMode, bShift, false, true, bKeepSel );
1074 : }
1075 :
1076 0 : void ScTabView::MoveCursorPage( SCsCOL nMovX, SCsROW nMovY, ScFollowMode eMode, bool bShift, bool bKeepSel )
1077 : {
1078 : SCsCOL nPageX;
1079 : SCsROW nPageY;
1080 0 : GetPageMoveEndPosition(nMovX, nMovY, nPageX, nPageY);
1081 0 : MoveCursorRel( nPageX, nPageY, eMode, bShift, bKeepSel );
1082 0 : }
1083 :
1084 0 : void ScTabView::MoveCursorArea( SCsCOL nMovX, SCsROW nMovY, ScFollowMode eMode, bool bShift, bool bKeepSel )
1085 : {
1086 : SCsCOL nNewX;
1087 : SCsROW nNewY;
1088 0 : GetAreaMoveEndPosition(nMovX, nMovY, eMode, nNewX, nNewY, eMode);
1089 0 : MoveCursorRel(nNewX, nNewY, eMode, bShift, bKeepSel);
1090 0 : }
1091 :
1092 0 : void ScTabView::MoveCursorEnd( SCsCOL nMovX, SCsROW nMovY, ScFollowMode eMode, bool bShift, bool bKeepSel )
1093 : {
1094 0 : ScDocument* pDoc = aViewData.GetDocument();
1095 0 : SCTAB nTab = aViewData.GetTabNo();
1096 :
1097 : SCCOL nCurX;
1098 : SCROW nCurY;
1099 0 : aViewData.GetMoveCursor( nCurX,nCurY );
1100 0 : SCCOL nNewX = nCurX;
1101 0 : SCROW nNewY = nCurY;
1102 :
1103 0 : SCCOL nUsedX = 0;
1104 0 : SCROW nUsedY = 0;
1105 0 : if ( nMovX > 0 || nMovY > 0 )
1106 0 : pDoc->GetPrintArea( nTab, nUsedX, nUsedY ); // Ende holen
1107 :
1108 0 : if (nMovX<0)
1109 0 : nNewX=0;
1110 0 : else if (nMovX>0)
1111 0 : nNewX=nUsedX; // letzter benutzter Bereich
1112 :
1113 0 : if (nMovY<0)
1114 0 : nNewY=0;
1115 0 : else if (nMovY>0)
1116 0 : nNewY=nUsedY;
1117 :
1118 0 : aViewData.ResetOldCursor();
1119 0 : MoveCursorRel( ((SCsCOL)nNewX)-(SCsCOL)nCurX, ((SCsROW)nNewY)-(SCsROW)nCurY, eMode, bShift, bKeepSel );
1120 0 : }
1121 :
1122 0 : void ScTabView::MoveCursorScreen( SCsCOL nMovX, SCsROW nMovY, ScFollowMode eMode, bool bShift )
1123 : {
1124 0 : ScDocument* pDoc = aViewData.GetDocument();
1125 0 : SCTAB nTab = aViewData.GetTabNo();
1126 :
1127 : SCCOL nCurX;
1128 : SCROW nCurY;
1129 0 : aViewData.GetMoveCursor( nCurX,nCurY );
1130 0 : SCCOL nNewX = nCurX;
1131 0 : SCROW nNewY = nCurY;
1132 :
1133 0 : ScSplitPos eWhich = aViewData.GetActivePart();
1134 0 : SCCOL nPosX = aViewData.GetPosX( WhichH(eWhich) );
1135 0 : SCROW nPosY = aViewData.GetPosY( WhichV(eWhich) );
1136 :
1137 0 : SCCOL nAddX = aViewData.VisibleCellsX( WhichH(eWhich) );
1138 0 : if (nAddX != 0)
1139 0 : --nAddX;
1140 0 : SCROW nAddY = aViewData.VisibleCellsY( WhichV(eWhich) );
1141 0 : if (nAddY != 0)
1142 0 : --nAddY;
1143 :
1144 0 : if (nMovX<0)
1145 0 : nNewX=nPosX;
1146 0 : else if (nMovX>0)
1147 0 : nNewX=nPosX+nAddX;
1148 :
1149 0 : if (nMovY<0)
1150 0 : nNewY=nPosY;
1151 0 : else if (nMovY>0)
1152 0 : nNewY=nPosY+nAddY;
1153 :
1154 0 : aViewData.SetOldCursor( nNewX,nNewY );
1155 0 : pDoc->SkipOverlapped(nNewX, nNewY, nTab);
1156 0 : MoveCursorAbs( nNewX, nNewY, eMode, bShift, false, true );
1157 0 : }
1158 :
1159 0 : void ScTabView::MoveCursorEnter( bool bShift ) // bShift -> hoch/runter
1160 : {
1161 0 : const ScInputOptions& rOpt = SC_MOD()->GetInputOptions();
1162 0 : if (!rOpt.GetMoveSelection())
1163 : {
1164 0 : aViewData.UpdateInputHandler(true);
1165 0 : return;
1166 : }
1167 :
1168 0 : SCsCOL nMoveX = 0;
1169 0 : SCsROW nMoveY = 0;
1170 0 : switch ((ScDirection)rOpt.GetMoveDir())
1171 : {
1172 : case DIR_BOTTOM:
1173 0 : nMoveY = bShift ? -1 : 1;
1174 0 : break;
1175 : case DIR_RIGHT:
1176 0 : nMoveX = bShift ? -1 : 1;
1177 0 : break;
1178 : case DIR_TOP:
1179 0 : nMoveY = bShift ? 1 : -1;
1180 0 : break;
1181 : case DIR_LEFT:
1182 0 : nMoveX = bShift ? 1 : -1;
1183 0 : break;
1184 : }
1185 :
1186 0 : ScMarkData& rMark = aViewData.GetMarkData();
1187 0 : if (rMark.IsMarked() || rMark.IsMultiMarked())
1188 : {
1189 : SCCOL nCurX;
1190 : SCROW nCurY;
1191 0 : aViewData.GetMoveCursor( nCurX,nCurY );
1192 0 : SCCOL nNewX = nCurX;
1193 0 : SCROW nNewY = nCurY;
1194 0 : SCTAB nTab = aViewData.GetTabNo();
1195 :
1196 0 : ScDocument* pDoc = aViewData.GetDocument();
1197 0 : pDoc->GetNextPos( nNewX,nNewY, nTab, nMoveX,nMoveY, true, false, rMark );
1198 :
1199 : MoveCursorRel( ((SCsCOL)nNewX)-(SCsCOL)nCurX, ((SCsROW)nNewY)-(SCsROW)nCurY,
1200 0 : SC_FOLLOW_LINE, false, true );
1201 :
1202 : // update input line even if cursor was not moved
1203 0 : if ( nNewX == nCurX && nNewY == nCurY )
1204 0 : aViewData.UpdateInputHandler(true);
1205 : }
1206 : else
1207 : {
1208 0 : if ( nMoveY != 0 && !nMoveX )
1209 : {
1210 : // nach Tab und Enter wieder zur Ausgangsspalte
1211 0 : SCCOL nTabCol = aViewData.GetTabStartCol();
1212 0 : if (nTabCol != SC_TABSTART_NONE)
1213 : {
1214 : SCCOL nCurX;
1215 : SCROW nCurY;
1216 0 : aViewData.GetMoveCursor( nCurX,nCurY );
1217 0 : nMoveX = ((SCsCOL)nTabCol)-(SCsCOL)nCurX;
1218 : }
1219 : }
1220 :
1221 0 : MoveCursorRel( nMoveX,nMoveY, SC_FOLLOW_LINE, false );
1222 : }
1223 : }
1224 :
1225 :
1226 0 : bool ScTabView::MoveCursorKeyInput( const KeyEvent& rKeyEvent )
1227 : {
1228 0 : const KeyCode& rKCode = rKeyEvent.GetKeyCode();
1229 :
1230 : enum { MOD_NONE, MOD_CTRL, MOD_ALT, MOD_BOTH } eModifier =
1231 0 : rKCode.IsMod1() ?
1232 0 : (rKCode.IsMod2() ? MOD_BOTH : MOD_CTRL) :
1233 0 : (rKCode.IsMod2() ? MOD_ALT : MOD_NONE);
1234 :
1235 0 : bool bSel = rKCode.IsShift();
1236 0 : sal_uInt16 nCode = rKCode.GetCode();
1237 :
1238 : // CURSOR keys
1239 0 : SCsCOL nDX = 0;
1240 0 : SCsROW nDY = 0;
1241 0 : switch( nCode )
1242 : {
1243 0 : case KEY_LEFT: nDX = -1; break;
1244 0 : case KEY_RIGHT: nDX = 1; break;
1245 0 : case KEY_UP: nDY = -1; break;
1246 0 : case KEY_DOWN: nDY = 1; break;
1247 : }
1248 0 : if( nDX != 0 || nDY != 0 )
1249 : {
1250 0 : switch( eModifier )
1251 : {
1252 0 : case MOD_NONE: MoveCursorRel( nDX, nDY, SC_FOLLOW_LINE, bSel ); break;
1253 0 : case MOD_CTRL: MoveCursorArea( nDX, nDY, SC_FOLLOW_JUMP, bSel ); break;
1254 : default:
1255 : {
1256 : // added to avoid warnings
1257 : }
1258 : }
1259 : // always true to suppress changes of col/row size (ALT+CURSOR)
1260 0 : return true;
1261 : }
1262 :
1263 : // PAGEUP/PAGEDOWN
1264 0 : if( (nCode == KEY_PAGEUP) || (nCode == KEY_PAGEDOWN) )
1265 : {
1266 0 : nDX = (nCode == KEY_PAGEUP) ? -1 : 1;
1267 0 : switch( eModifier )
1268 : {
1269 0 : case MOD_NONE: MoveCursorPage( 0, static_cast<SCsCOLROW>(nDX), SC_FOLLOW_FIX, bSel ); break;
1270 0 : case MOD_ALT: MoveCursorPage( nDX, 0, SC_FOLLOW_FIX, bSel ); break;
1271 0 : case MOD_CTRL: SelectNextTab( nDX ); break;
1272 : default:
1273 : {
1274 : // added to avoid warnings
1275 : }
1276 : }
1277 0 : return true;
1278 : }
1279 :
1280 : // HOME/END
1281 0 : if( (nCode == KEY_HOME) || (nCode == KEY_END) )
1282 : {
1283 0 : nDX = (nCode == KEY_HOME) ? -1 : 1;
1284 0 : ScFollowMode eMode = (nCode == KEY_HOME) ? SC_FOLLOW_LINE : SC_FOLLOW_JUMP;
1285 0 : switch( eModifier )
1286 : {
1287 0 : case MOD_NONE: MoveCursorEnd( nDX, 0, eMode, bSel ); break;
1288 0 : case MOD_CTRL: MoveCursorEnd( nDX, static_cast<SCsCOLROW>(nDX), eMode, bSel ); break;
1289 : default:
1290 : {
1291 : // added to avoid warnings
1292 : }
1293 : }
1294 0 : return true;
1295 : }
1296 :
1297 0 : return false;
1298 : }
1299 :
1300 :
1301 : // naechste/vorherige nicht geschuetzte Zelle
1302 0 : void ScTabView::FindNextUnprot( bool bShift, bool bInSelection )
1303 : {
1304 0 : short nMove = bShift ? -1 : 1;
1305 :
1306 0 : ScMarkData& rMark = aViewData.GetMarkData();
1307 0 : bool bMarked = bInSelection && (rMark.IsMarked() || rMark.IsMultiMarked());
1308 :
1309 : SCCOL nCurX;
1310 : SCROW nCurY;
1311 0 : aViewData.GetMoveCursor( nCurX,nCurY );
1312 0 : SCCOL nNewX = nCurX;
1313 0 : SCROW nNewY = nCurY;
1314 0 : SCTAB nTab = aViewData.GetTabNo();
1315 :
1316 0 : ScDocument* pDoc = aViewData.GetDocument();
1317 0 : pDoc->GetNextPos( nNewX,nNewY, nTab, nMove,0, bMarked, true, rMark );
1318 :
1319 0 : SCCOL nTabCol = aViewData.GetTabStartCol();
1320 0 : if ( nTabCol == SC_TABSTART_NONE )
1321 0 : nTabCol = nCurX; // auf diese Spalte zurueck bei Enter
1322 :
1323 : MoveCursorRel( ((SCsCOL)nNewX)-(SCsCOL)nCurX, ((SCsROW)nNewY)-(SCsROW)nCurY,
1324 0 : SC_FOLLOW_LINE, false, true );
1325 :
1326 : // in MoveCursorRel wird die TabCol zurueckgesetzt...
1327 0 : aViewData.SetTabStartCol( nTabCol );
1328 0 : }
1329 :
1330 0 : void ScTabView::MarkColumns()
1331 : {
1332 : SCCOL nStartCol;
1333 : SCCOL nEndCol;
1334 :
1335 0 : ScMarkData& rMark = aViewData.GetMarkData();
1336 0 : if (rMark.IsMarked())
1337 : {
1338 0 : ScRange aMarkRange;
1339 0 : rMark.GetMarkArea( aMarkRange );
1340 0 : nStartCol = aMarkRange.aStart.Col();
1341 0 : nEndCol = aMarkRange.aEnd.Col();
1342 : }
1343 : else
1344 : {
1345 : SCROW nDummy;
1346 0 : aViewData.GetMoveCursor( nStartCol, nDummy );
1347 0 : nEndCol=nStartCol;
1348 : }
1349 :
1350 0 : SCTAB nTab = aViewData.GetTabNo();
1351 0 : DoneBlockMode();
1352 0 : InitBlockMode( nStartCol,0, nTab );
1353 0 : MarkCursor( nEndCol,MAXROW, nTab );
1354 0 : SelectionChanged();
1355 0 : }
1356 :
1357 0 : void ScTabView::MarkRows()
1358 : {
1359 : SCROW nStartRow;
1360 : SCROW nEndRow;
1361 :
1362 0 : ScMarkData& rMark = aViewData.GetMarkData();
1363 0 : if (rMark.IsMarked())
1364 : {
1365 0 : ScRange aMarkRange;
1366 0 : rMark.GetMarkArea( aMarkRange );
1367 0 : nStartRow = aMarkRange.aStart.Row();
1368 0 : nEndRow = aMarkRange.aEnd.Row();
1369 : }
1370 : else
1371 : {
1372 : SCCOL nDummy;
1373 0 : aViewData.GetMoveCursor( nDummy, nStartRow );
1374 0 : nEndRow=nStartRow;
1375 : }
1376 :
1377 0 : SCTAB nTab = aViewData.GetTabNo();
1378 0 : DoneBlockMode();
1379 0 : InitBlockMode( 0,nStartRow, nTab );
1380 0 : MarkCursor( MAXCOL,nEndRow, nTab );
1381 0 : SelectionChanged();
1382 0 : }
1383 :
1384 0 : void ScTabView::MarkDataArea( bool bIncludeCursor )
1385 : {
1386 0 : ScDocument* pDoc = aViewData.GetDocument();
1387 0 : SCTAB nTab = aViewData.GetTabNo();
1388 0 : SCCOL nStartCol = aViewData.GetCurX();
1389 0 : SCROW nStartRow = aViewData.GetCurY();
1390 0 : SCCOL nEndCol = nStartCol;
1391 0 : SCROW nEndRow = nStartRow;
1392 :
1393 0 : pDoc->GetDataArea( nTab, nStartCol, nStartRow, nEndCol, nEndRow, bIncludeCursor, false );
1394 :
1395 0 : HideAllCursors();
1396 0 : DoneBlockMode();
1397 0 : InitBlockMode( nStartCol, nStartRow, nTab );
1398 0 : MarkCursor( nEndCol, nEndRow, nTab );
1399 0 : ShowAllCursors();
1400 :
1401 0 : SelectionChanged();
1402 0 : }
1403 :
1404 0 : void ScTabView::MarkMatrixFormula()
1405 : {
1406 0 : ScDocument* pDoc = aViewData.GetDocument();
1407 0 : ScAddress aCursor( aViewData.GetCurX(), aViewData.GetCurY(), aViewData.GetTabNo() );
1408 0 : ScRange aMatrix;
1409 0 : if ( pDoc->GetMatrixFormulaRange( aCursor, aMatrix ) )
1410 : {
1411 0 : MarkRange( aMatrix, false ); // cursor is already within the range
1412 : }
1413 0 : }
1414 :
1415 0 : void ScTabView::MarkRange( const ScRange& rRange, bool bSetCursor, bool bContinue )
1416 : {
1417 0 : SCTAB nTab = rRange.aStart.Tab();
1418 0 : SetTabNo( nTab );
1419 :
1420 0 : HideAllCursors();
1421 0 : DoneBlockMode( bContinue ); // bContinue==true -> clear old mark
1422 0 : if (bSetCursor) // Wenn Cursor gesetzt wird, immer auch alignen
1423 : {
1424 0 : SCCOL nAlignX = rRange.aStart.Col();
1425 0 : SCROW nAlignY = rRange.aStart.Row();
1426 0 : bool bCol = ( rRange.aStart.Col() == 0 && rRange.aEnd.Col() == MAXCOL ) && !aViewData.GetDocument()->IsInVBAMode();
1427 0 : bool bRow = ( rRange.aStart.Row() == 0 && rRange.aEnd.Row() == MAXROW );
1428 0 : if ( bCol )
1429 0 : nAlignX = aViewData.GetPosX(WhichH(aViewData.GetActivePart()));
1430 0 : if ( bRow )
1431 0 : nAlignY = aViewData.GetPosY(WhichV(aViewData.GetActivePart()));
1432 0 : AlignToCursor( nAlignX, nAlignY, SC_FOLLOW_JUMP );
1433 : }
1434 0 : InitBlockMode( rRange.aStart.Col(), rRange.aStart.Row(), nTab );
1435 0 : MarkCursor( rRange.aEnd.Col(), rRange.aEnd.Row(), nTab );
1436 0 : if (bSetCursor)
1437 : {
1438 0 : SCCOL nPosX = rRange.aStart.Col();
1439 0 : SCROW nPosY = rRange.aStart.Row();
1440 0 : ScDocument* pDoc = aViewData.GetDocument();
1441 0 : pDoc->SkipOverlapped(nPosX, nPosY, nTab);
1442 :
1443 0 : aViewData.ResetOldCursor();
1444 0 : SetCursor( nPosX, nPosY );
1445 : }
1446 0 : ShowAllCursors();
1447 :
1448 0 : SelectionChanged();
1449 0 : }
1450 :
1451 0 : void ScTabView::Unmark()
1452 : {
1453 0 : ScMarkData& rMark = aViewData.GetMarkData();
1454 0 : if ( rMark.IsMarked() || rMark.IsMultiMarked() )
1455 : {
1456 : SCCOL nCurX;
1457 : SCROW nCurY;
1458 0 : aViewData.GetMoveCursor( nCurX,nCurY );
1459 0 : MoveCursorAbs( nCurX, nCurY, SC_FOLLOW_NONE, false, false );
1460 :
1461 0 : SelectionChanged();
1462 : }
1463 0 : }
1464 :
1465 0 : void ScTabView::SetMarkData( const ScMarkData& rNew )
1466 : {
1467 0 : DoneBlockMode();
1468 0 : InitOwnBlockMode();
1469 0 : aViewData.GetMarkData() = rNew;
1470 :
1471 0 : MarkDataChanged();
1472 0 : }
1473 :
1474 0 : void ScTabView::MarkDataChanged()
1475 : {
1476 : // has to be called after making direct changes to mark data (not via MarkCursor etc)
1477 :
1478 0 : UpdateSelectionOverlay();
1479 0 : }
1480 :
1481 0 : void ScTabView::SelectNextTab( short nDir, bool bExtendSelection )
1482 : {
1483 0 : if (!nDir) return;
1484 : OSL_ENSURE( nDir==-1 || nDir==1, "SelectNextTab: falscher Wert");
1485 :
1486 0 : ScDocument* pDoc = aViewData.GetDocument();
1487 0 : SCTAB nTab = aViewData.GetTabNo();
1488 0 : if (nDir<0)
1489 : {
1490 0 : if (!nTab) return;
1491 0 : --nTab;
1492 0 : while (!pDoc->IsVisible(nTab))
1493 : {
1494 0 : if (!nTab) return;
1495 0 : --nTab;
1496 : }
1497 : }
1498 : else
1499 : {
1500 0 : SCTAB nCount = pDoc->GetTableCount();
1501 0 : ++nTab;
1502 0 : if (nTab >= nCount) return;
1503 0 : while (!pDoc->IsVisible(nTab))
1504 : {
1505 0 : ++nTab;
1506 0 : if (nTab >= nCount) return;
1507 : }
1508 : }
1509 :
1510 0 : SetTabNo( nTab, false, bExtendSelection );
1511 0 : PaintExtras();
1512 : }
1513 :
1514 :
1515 : // SetTabNo - angezeigte Tabelle
1516 :
1517 0 : void ScTabView::SetTabNo( SCTAB nTab, bool bNew, bool bExtendSelection, bool bSameTabButMoved )
1518 : {
1519 0 : if ( !ValidTab(nTab) )
1520 : {
1521 : OSL_FAIL("SetTabNo: falsche Tabelle");
1522 0 : return;
1523 : }
1524 :
1525 0 : if ( nTab != aViewData.GetTabNo() || bNew )
1526 : {
1527 : // Die FormShell moechte vor dem Umschalten benachrichtigt werden
1528 0 : FmFormShell* pFormSh = aViewData.GetViewShell()->GetFormShell();
1529 0 : if (pFormSh)
1530 : {
1531 0 : bool bAllowed = static_cast<bool>(pFormSh->PrepareClose(true));
1532 0 : if (!bAllowed)
1533 : {
1534 : //! Fehlermeldung? oder macht das die FormShell selber?
1535 : //! Fehler-Flag zurueckgeben und Aktionen abbrechen
1536 :
1537 0 : return; // Die FormShell sagt, es kann nicht umgeschaltet werden
1538 : }
1539 : }
1540 :
1541 : // nicht InputEnterHandler wegen Referenzeingabe !
1542 :
1543 0 : ScDocument* pDoc = aViewData.GetDocument();
1544 :
1545 0 : pDoc->MakeTable( nTab );
1546 :
1547 : // Update pending row heights before switching the sheet, so Reschedule from the progress bar
1548 : // doesn't paint the new sheet with old heights
1549 0 : aViewData.GetDocShell()->UpdatePendingRowHeights( nTab );
1550 :
1551 0 : SCTAB nTabCount = pDoc->GetTableCount();
1552 0 : SCTAB nOldPos = nTab;
1553 0 : while (!pDoc->IsVisible(nTab)) // naechste sichtbare suchen
1554 : {
1555 0 : bool bUp = (nTab>=nOldPos);
1556 0 : if (bUp)
1557 : {
1558 0 : ++nTab;
1559 0 : if (nTab>=nTabCount)
1560 : {
1561 0 : nTab = nOldPos;
1562 0 : bUp = false;
1563 : }
1564 : }
1565 :
1566 0 : if (!bUp)
1567 : {
1568 0 : if (nTab != 0)
1569 0 : --nTab;
1570 : else
1571 : {
1572 : OSL_FAIL("keine sichtbare Tabelle");
1573 0 : pDoc->SetVisible( 0, true );
1574 : }
1575 : }
1576 : }
1577 :
1578 : // #i71490# Deselect drawing objects before changing the sheet number in view data,
1579 : // so the handling of notes still has the sheet selected on which the notes are.
1580 0 : DrawDeselectAll();
1581 :
1582 0 : ScModule* pScMod = SC_MOD();
1583 0 : bool bRefMode = pScMod->IsFormulaMode();
1584 0 : if ( !bRefMode ) // Abfrage, damit RefMode bei Tabellenwechsel funktioniert
1585 : {
1586 0 : DoneBlockMode();
1587 0 : pSelEngine->Reset(); // reset all flags, including locked modifiers
1588 0 : aViewData.SetRefTabNo( nTab );
1589 : }
1590 :
1591 0 : ScSplitPos eOldActive = aViewData.GetActivePart(); // before switching
1592 0 : bool bFocus = pGridWin[eOldActive]->HasFocus();
1593 :
1594 0 : aViewData.SetTabNo( nTab );
1595 : // UpdateShow noch vor SetCursor, damit UpdateAutoFillMark die richtigen
1596 : // Fenster findet (wird aus SetCursor gerufen)
1597 0 : UpdateShow();
1598 0 : aViewData.ResetOldCursor();
1599 :
1600 0 : SfxBindings& rBindings = aViewData.GetBindings();
1601 0 : ScMarkData& rMark = aViewData.GetMarkData();
1602 :
1603 0 : bool bAllSelected = true;
1604 0 : for (SCTAB nSelTab = 0; nSelTab < nTabCount; ++nSelTab)
1605 : {
1606 0 : if (!pDoc->IsVisible(nSelTab) || rMark.GetTableSelect(nSelTab))
1607 : {
1608 0 : if (nTab == nSelTab)
1609 : // This tab is already in selection. Keep the current
1610 : // selection.
1611 0 : bExtendSelection = true;
1612 : }
1613 : else
1614 : {
1615 0 : bAllSelected = false;
1616 0 : if (bExtendSelection)
1617 : // We got what we need. No need to stay in the loop.
1618 0 : break;
1619 : }
1620 : }
1621 0 : if (bAllSelected && !bNew)
1622 : // #i6327# if all tables are selected, a selection event (#i6330#) will deselect all
1623 : // (not if called with bNew to update settings)
1624 0 : bExtendSelection = false;
1625 :
1626 0 : if (bExtendSelection)
1627 0 : rMark.SelectTable( nTab, true );
1628 : else
1629 : {
1630 0 : rMark.SelectOneTable( nTab );
1631 0 : rBindings.Invalidate( FID_FILL_TAB );
1632 0 : rBindings.Invalidate( FID_TAB_DESELECTALL );
1633 : }
1634 :
1635 0 : SetCursor( aViewData.GetCurX(), aViewData.GetCurY(), true );
1636 0 : bool bUnoRefDialog = pScMod->IsRefDialogOpen() && pScMod->GetCurRefDlgId() == WID_SIMPLE_REF;
1637 :
1638 : // recalc zoom-dependent values (before TabChanged, before UpdateEditViewPos)
1639 0 : RefreshZoom();
1640 0 : UpdateVarZoom();
1641 :
1642 0 : if ( bRefMode ) // hide EditView if necessary (after aViewData.SetTabNo !)
1643 : {
1644 0 : for (sal_uInt16 i = 0; i < 4; ++i)
1645 0 : if (pGridWin[i] && pGridWin[i]->IsVisible())
1646 0 : pGridWin[i]->UpdateEditViewPos();
1647 : }
1648 :
1649 0 : TabChanged(bSameTabButMoved); // DrawView
1650 0 : UpdateVisibleRange();
1651 :
1652 0 : aViewData.GetViewShell()->WindowChanged(); // falls das aktive Fenster anders ist
1653 0 : if ( !bUnoRefDialog )
1654 0 : aViewData.GetViewShell()->DisconnectAllClients(); // important for floating frames
1655 : else
1656 : {
1657 : // hide / show inplace client
1658 :
1659 0 : ScClient* pClient = static_cast<ScClient*>(aViewData.GetViewShell()->GetIPClient());
1660 0 : if ( pClient && pClient->IsObjectInPlaceActive() )
1661 : {
1662 0 : Rectangle aObjArea = pClient->GetObjArea();
1663 0 : if ( nTab == aViewData.GetRefTabNo() )
1664 : {
1665 : // move to its original position
1666 :
1667 0 : SdrOle2Obj* pDrawObj = pClient->GetDrawObj();
1668 0 : if ( pDrawObj )
1669 : {
1670 0 : Rectangle aRect = pDrawObj->GetLogicRect();
1671 0 : MapMode aMapMode( MAP_100TH_MM );
1672 0 : Size aOleSize = pDrawObj->GetOrigObjSize( &aMapMode );
1673 0 : aRect.SetSize( aOleSize );
1674 0 : aObjArea = aRect;
1675 : }
1676 : }
1677 : else
1678 : {
1679 : // move to an invisible position
1680 :
1681 0 : aObjArea.SetPos( Point( 0, -2*aObjArea.GetHeight() ) );
1682 : }
1683 0 : pClient->SetObjArea( aObjArea );
1684 : }
1685 : }
1686 :
1687 0 : if ( bFocus && aViewData.GetActivePart() != eOldActive && !bRefMode )
1688 0 : ActiveGrabFocus(); // grab focus to the pane that's active now
1689 :
1690 : // Fixierungen
1691 :
1692 0 : bool bResize = false;
1693 0 : if ( aViewData.GetHSplitMode() == SC_SPLIT_FIX )
1694 0 : if (aViewData.UpdateFixX())
1695 0 : bResize = true;
1696 0 : if ( aViewData.GetVSplitMode() == SC_SPLIT_FIX )
1697 0 : if (aViewData.UpdateFixY())
1698 0 : bResize = true;
1699 0 : if (bResize)
1700 0 : RepeatResize();
1701 0 : InvalidateSplit();
1702 :
1703 0 : if ( aViewData.IsPagebreakMode() )
1704 0 : UpdatePageBreakData(); //! asynchron ??
1705 :
1706 : // Form-Layer muss den sichtbaren Ausschnitt der neuen Tabelle kennen
1707 : // dafuer muss hier schon der MapMode stimmen
1708 0 : for (sal_uInt16 i=0; i<4; i++)
1709 0 : if (pGridWin[i])
1710 0 : pGridWin[i]->SetMapMode( pGridWin[i]->GetDrawMapMode() );
1711 0 : SetNewVisArea();
1712 :
1713 0 : PaintGrid();
1714 0 : PaintTop();
1715 0 : PaintLeft();
1716 0 : PaintExtras();
1717 :
1718 0 : DoResize( aBorderPos, aFrameSize );
1719 0 : rBindings.Invalidate( SID_DELETE_PRINTAREA ); // Menue
1720 0 : rBindings.Invalidate( FID_DEL_MANUALBREAKS );
1721 0 : rBindings.Invalidate( FID_RESET_PRINTZOOM );
1722 0 : rBindings.Invalidate( SID_STATUS_DOCPOS ); // Statusbar
1723 0 : rBindings.Invalidate( SID_STATUS_PAGESTYLE ); // Statusbar
1724 0 : rBindings.Invalidate( SID_CURRENTTAB ); // Navigator
1725 0 : rBindings.Invalidate( SID_STYLE_FAMILY2 ); // Gestalter
1726 0 : rBindings.Invalidate( SID_STYLE_FAMILY4 ); // Gestalter
1727 0 : rBindings.Invalidate( SID_TABLES_COUNT );
1728 :
1729 0 : if(pScMod->IsRefDialogOpen())
1730 : {
1731 0 : sal_uInt16 nCurRefDlgId=pScMod->GetCurRefDlgId();
1732 0 : SfxViewFrame* pViewFrm = aViewData.GetViewShell()->GetViewFrame();
1733 0 : SfxChildWindow* pChildWnd = pViewFrm->GetChildWindow( nCurRefDlgId );
1734 0 : if ( pChildWnd )
1735 : {
1736 0 : IAnyRefDialog* pRefDlg = dynamic_cast<IAnyRefDialog*>(pChildWnd->GetWindow());
1737 0 : pRefDlg->ViewShellChanged();
1738 : }
1739 : }
1740 : }
1741 : }
1742 :
1743 : //
1744 : // Paint-Funktionen - nur fuer diese View
1745 : //
1746 :
1747 0 : void ScTabView::MakeEditView( ScEditEngineDefaulter* pEngine, SCCOL nCol, SCROW nRow )
1748 : {
1749 0 : DrawDeselectAll();
1750 :
1751 0 : if (pDrawView)
1752 0 : DrawEnableAnim( false );
1753 :
1754 0 : EditView* pSpellingView = aViewData.GetSpellingView();
1755 :
1756 0 : for (sal_uInt16 i=0; i<4; i++)
1757 0 : if (pGridWin[i])
1758 0 : if ( pGridWin[i]->IsVisible() && !aViewData.HasEditView((ScSplitPos)i) )
1759 : {
1760 0 : ScHSplitPos eHWhich = WhichH( (ScSplitPos) i );
1761 0 : ScVSplitPos eVWhich = WhichV( (ScSplitPos) i );
1762 0 : SCCOL nScrX = aViewData.GetPosX( eHWhich );
1763 0 : SCROW nScrY = aViewData.GetPosY( eVWhich );
1764 :
1765 : bool bPosVisible =
1766 0 : ( nCol >= nScrX && nCol <= nScrX + aViewData.VisibleCellsX(eHWhich) + 1 &&
1767 0 : nRow >= nScrY && nRow <= nScrY + aViewData.VisibleCellsY(eVWhich) + 1 );
1768 :
1769 : // for the active part, create edit view even if outside the visible area,
1770 : // so input isn't lost (and the edit view may be scrolled into the visible area)
1771 :
1772 : // #i26433# during spelling, the spelling view must be active
1773 0 : if ( bPosVisible || aViewData.GetActivePart() == (ScSplitPos) i ||
1774 0 : ( pSpellingView && aViewData.GetEditView((ScSplitPos) i) == pSpellingView ) )
1775 : {
1776 0 : pGridWin[i]->HideCursor();
1777 :
1778 0 : pGridWin[i]->DeleteCursorOverlay();
1779 0 : pGridWin[i]->DeleteAutoFillOverlay();
1780 0 : pGridWin[i]->DeleteCopySourceOverlay();
1781 :
1782 : // flush OverlayManager before changing MapMode to text edit
1783 0 : pGridWin[i]->flushOverlayManager();
1784 :
1785 : // MapMode must be set after HideCursor
1786 0 : pGridWin[i]->SetMapMode(aViewData.GetLogicMode());
1787 :
1788 0 : aViewData.SetEditEngine( (ScSplitPos) i, pEngine, pGridWin[i], nCol, nRow );
1789 :
1790 0 : if ( !bPosVisible )
1791 : {
1792 : // move the edit view area to the real (possibly negative) position,
1793 : // or hide if completely above or left of the window
1794 0 : pGridWin[i]->UpdateEditViewPos();
1795 : }
1796 : }
1797 : }
1798 :
1799 0 : if (aViewData.GetViewShell()->HasAccessibilityObjects())
1800 0 : aViewData.GetViewShell()->BroadcastAccessibility(SfxSimpleHint(SC_HINT_ACC_ENTEREDITMODE));
1801 0 : }
1802 :
1803 0 : void ScTabView::UpdateEditView()
1804 : {
1805 0 : ScSplitPos eActive = aViewData.GetActivePart();
1806 0 : for (sal_uInt16 i=0; i<4; i++)
1807 0 : if (aViewData.HasEditView( (ScSplitPos) i ))
1808 : {
1809 0 : EditView* pEditView = aViewData.GetEditView( (ScSplitPos) i );
1810 : aViewData.SetEditEngine( (ScSplitPos) i,
1811 0 : static_cast<ScEditEngineDefaulter*>(pEditView->GetEditEngine()),
1812 0 : pGridWin[i], GetViewData()->GetCurX(), GetViewData()->GetCurY() );
1813 0 : if ( (ScSplitPos)i == eActive )
1814 0 : pEditView->ShowCursor( false );
1815 : }
1816 0 : }
1817 :
1818 0 : void ScTabView::KillEditView( bool bNoPaint )
1819 : {
1820 : sal_uInt16 i;
1821 0 : SCCOL nCol1 = aViewData.GetEditStartCol();
1822 0 : SCROW nRow1 = aViewData.GetEditStartRow();
1823 0 : SCCOL nCol2 = aViewData.GetEditEndCol();
1824 0 : SCROW nRow2 = aViewData.GetEditEndRow();
1825 : bool bPaint[4];
1826 0 : bool bNotifyAcc = false;
1827 :
1828 0 : bool bExtended = nRow1 != nRow2; // Col wird sowieso bis zum Ende gezeichnet
1829 0 : bool bAtCursor = nCol1 <= aViewData.GetCurX() &&
1830 0 : nCol2 >= aViewData.GetCurX() &&
1831 0 : nRow1 == aViewData.GetCurY();
1832 0 : for (i=0; i<4; i++)
1833 : {
1834 0 : bPaint[i] = aViewData.HasEditView( (ScSplitPos) i );
1835 0 : if (bPaint[i])
1836 0 : bNotifyAcc = true;
1837 : }
1838 :
1839 : // #108931#; notify accessibility before all things happen
1840 0 : if ((bNotifyAcc) && (aViewData.GetViewShell()->HasAccessibilityObjects()))
1841 0 : aViewData.GetViewShell()->BroadcastAccessibility(SfxSimpleHint(SC_HINT_ACC_LEAVEEDITMODE));
1842 :
1843 0 : aViewData.ResetEditView();
1844 0 : for (i=0; i<4; i++)
1845 0 : if (pGridWin[i] && bPaint[i])
1846 0 : if (pGridWin[i]->IsVisible())
1847 : {
1848 0 : pGridWin[i]->ShowCursor();
1849 :
1850 0 : pGridWin[i]->SetMapMode(pGridWin[i]->GetDrawMapMode());
1851 :
1852 : // #i73567# the cell still has to be repainted
1853 0 : if (bExtended || ( bAtCursor && !bNoPaint ))
1854 : {
1855 0 : pGridWin[i]->Draw( nCol1, nRow1, nCol2, nRow2 );
1856 0 : pGridWin[i]->UpdateSelectionOverlay();
1857 : }
1858 : }
1859 :
1860 0 : if (pDrawView)
1861 0 : DrawEnableAnim( true );
1862 :
1863 : // GrabFocus immer dann, wenn diese View aktiv ist und
1864 : // die Eingabezeile den Focus hat
1865 :
1866 0 : bool bGrabFocus = false;
1867 0 : if (aViewData.IsActive())
1868 : {
1869 0 : ScInputHandler* pInputHdl = SC_MOD()->GetInputHdl();
1870 0 : if ( pInputHdl )
1871 : {
1872 0 : ScInputWindow* pInputWin = pInputHdl->GetInputWindow();
1873 0 : if (pInputWin && pInputWin->IsInputActive())
1874 0 : bGrabFocus = true;
1875 : }
1876 : }
1877 :
1878 0 : if (bGrabFocus)
1879 : {
1880 : // So soll es gemacht werden, damit der Sfx es mitbekommt, klappt aber nicht:
1881 : //! aViewData.GetViewShell()->GetViewFrame()->GetWindow().GrabFocus();
1882 : // deshalb erstmal so:
1883 0 : GetActiveWin()->GrabFocus();
1884 : }
1885 :
1886 : // Cursor-Abfrage erst nach GrabFocus
1887 :
1888 0 : for (i=0; i<4; i++)
1889 0 : if (pGridWin[i] && pGridWin[i]->IsVisible())
1890 : {
1891 0 : Cursor* pCur = pGridWin[i]->GetCursor();
1892 0 : if (pCur && pCur->IsVisible())
1893 0 : pCur->Hide();
1894 :
1895 0 : if(bPaint[i])
1896 : {
1897 0 : pGridWin[i]->UpdateCursorOverlay();
1898 0 : pGridWin[i]->UpdateAutoFillOverlay();
1899 : }
1900 : }
1901 0 : }
1902 :
1903 0 : void ScTabView::UpdateFormulas()
1904 : {
1905 0 : if ( aViewData.GetDocument()->IsAutoCalcShellDisabled() )
1906 0 : return ;
1907 :
1908 : sal_uInt16 i;
1909 0 : for (i=0; i<4; i++)
1910 0 : if (pGridWin[i])
1911 0 : if (pGridWin[i]->IsVisible())
1912 0 : pGridWin[i]->UpdateFormulas();
1913 :
1914 0 : if ( aViewData.IsPagebreakMode() )
1915 0 : UpdatePageBreakData(); //! asynchron
1916 :
1917 0 : UpdateHeaderWidth();
1918 :
1919 : // if in edit mode, adjust edit view area because widths/heights may have changed
1920 0 : if ( aViewData.HasEditView( aViewData.GetActivePart() ) )
1921 0 : UpdateEditView();
1922 : }
1923 :
1924 : // PaintArea -Block neu zeichnen
1925 :
1926 0 : void ScTabView::PaintArea( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
1927 : ScUpdateMode eMode )
1928 : {
1929 : SCCOL nCol1;
1930 : SCROW nRow1;
1931 : SCCOL nCol2;
1932 : SCROW nRow2;
1933 :
1934 0 : PutInOrder( nStartCol, nEndCol );
1935 0 : PutInOrder( nStartRow, nEndRow );
1936 :
1937 0 : for (size_t i = 0; i < 4; ++i)
1938 : {
1939 0 : if (!pGridWin[i] || !pGridWin[i]->IsVisible())
1940 0 : continue;
1941 :
1942 0 : ScHSplitPos eHWhich = WhichH( (ScSplitPos) i );
1943 0 : ScVSplitPos eVWhich = WhichV( (ScSplitPos) i );
1944 0 : bool bOut = false;
1945 :
1946 0 : nCol1 = nStartCol;
1947 0 : nRow1 = nStartRow;
1948 0 : nCol2 = nEndCol;
1949 0 : nRow2 = nEndRow;
1950 :
1951 0 : SCCOL nScrX = aViewData.GetPosX( eHWhich );
1952 0 : SCROW nScrY = aViewData.GetPosY( eVWhich );
1953 0 : if (nCol1 < nScrX) nCol1 = nScrX;
1954 0 : if (nCol2 < nScrX)
1955 : {
1956 0 : if ( eMode == SC_UPDATE_ALL ) // for UPDATE_ALL, paint anyway
1957 0 : nCol2 = nScrX; // (because of extending strings to the right)
1958 : else
1959 0 : bOut = true; // completely outside the window
1960 : }
1961 0 : if (nRow1 < nScrY) nRow1 = nScrY;
1962 0 : if (nRow2 < nScrY) bOut = true;
1963 :
1964 0 : SCCOL nLastX = nScrX + aViewData.VisibleCellsX( eHWhich ) + 1;
1965 0 : SCROW nLastY = nScrY + aViewData.VisibleCellsY( eVWhich ) + 1;
1966 0 : if (nCol1 > nLastX) bOut = true;
1967 0 : if (nCol2 > nLastX) nCol2 = nLastX;
1968 0 : if (nRow1 > nLastY) bOut = true;
1969 0 : if (nRow2 > nLastY) nRow2 = nLastY;
1970 :
1971 0 : if (bOut)
1972 0 : continue;
1973 :
1974 0 : if ( eMode == SC_UPDATE_CHANGED )
1975 0 : pGridWin[i]->Draw( nCol1, nRow1, nCol2, nRow2, eMode );
1976 : else // ALL oder MARKS
1977 : {
1978 0 : bool bLayoutRTL = aViewData.GetDocument()->IsLayoutRTL( aViewData.GetTabNo() );
1979 0 : long nLayoutSign = bLayoutRTL ? -1 : 1;
1980 :
1981 0 : Point aStart = aViewData.GetScrPos( nCol1, nRow1, (ScSplitPos) i );
1982 0 : Point aEnd = aViewData.GetScrPos( nCol2+1, nRow2+1, (ScSplitPos) i );
1983 0 : if ( eMode == SC_UPDATE_ALL )
1984 0 : aEnd.X() = bLayoutRTL ? 0 : (pGridWin[i]->GetOutputSizePixel().Width());
1985 0 : aEnd.X() -= nLayoutSign;
1986 0 : aEnd.Y() -= 1;
1987 :
1988 : // #i85232# include area below cells (could be done in GetScrPos?)
1989 0 : if ( eMode == SC_UPDATE_ALL && nRow2 >= MAXROW )
1990 0 : aEnd.Y() = pGridWin[i]->GetOutputSizePixel().Height();
1991 :
1992 0 : bool bShowChanges = true; //! ...
1993 0 : if (bShowChanges)
1994 : {
1995 0 : aStart.X() -= nLayoutSign; // include change marks
1996 0 : aStart.Y() -= 1;
1997 : }
1998 :
1999 0 : bool bMarkClipped = aViewData.GetOptions().GetOption( VOPT_CLIPMARKS );
2000 0 : if (bMarkClipped)
2001 : {
2002 : // dazu muesste ScColumn::IsEmptyBlock optimiert werden
2003 : // (auf Search() umstellen)
2004 : //!if ( nCol1 > 0 && !aViewData.GetDocument()->IsBlockEmpty(
2005 : //! aViewData.GetTabNo(),
2006 : //! 0, nRow1, nCol1-1, nRow2 ) )
2007 : {
2008 0 : long nMarkPixel = (long)( SC_CLIPMARK_SIZE * aViewData.GetPPTX() );
2009 0 : aStart.X() -= nMarkPixel * nLayoutSign;
2010 0 : if (!bShowChanges)
2011 0 : aStart.X() -= nLayoutSign; // cell grid
2012 : }
2013 : }
2014 :
2015 0 : pGridWin[i]->Invalidate( pGridWin[i]->PixelToLogic( Rectangle( aStart,aEnd ) ) );
2016 : }
2017 : }
2018 :
2019 : // #i79909# Calling UpdateAllOverlays here isn't necessary and would lead to overlay calls from a timer,
2020 : // with a wrong MapMode if editing in a cell (reference input).
2021 : // #i80499# Overlays need updates in a lot of cases, e.g. changing row/column size,
2022 : // or showing/hiding outlines. TODO: selections in inactive windows are vanishing.
2023 : // #i84689# With relative conditional formats, PaintArea may be called often (for each changed cell),
2024 : // so UpdateAllOverlays was moved to ScTabViewShell::Notify and is called only if PAINT_LEFT/PAINT_TOP
2025 : // is set (width or height changed).
2026 0 : }
2027 :
2028 0 : void ScTabView::PaintRangeFinderEntry (ScRangeFindData* pData, const SCTAB nTab)
2029 : {
2030 0 : ScRange aRef = pData->aRef;
2031 0 : aRef.Justify(); // Justify fuer die Abfragen unten
2032 :
2033 0 : if ( aRef.aStart == aRef.aEnd ) //! Tab ignorieren?
2034 0 : aViewData.GetDocument()->ExtendMerge(aRef);
2035 :
2036 0 : if ( aRef.aStart.Tab() >= nTab && aRef.aEnd.Tab() <= nTab )
2037 : {
2038 0 : SCCOL nCol1 = aRef.aStart.Col();
2039 0 : SCROW nRow1 = aRef.aStart.Row();
2040 0 : SCCOL nCol2 = aRef.aEnd.Col();
2041 0 : SCROW nRow2 = aRef.aEnd.Row();
2042 :
2043 : // wegnehmen -> Repaint
2044 : // SC_UPDATE_MARKS: Invalidate, nicht bis zum Zeilenende
2045 :
2046 0 : bool bHiddenEdge = false;
2047 : SCROW nTmp;
2048 0 : ScDocument* pDoc = aViewData.GetDocument();
2049 0 : while ( nCol1 > 0 && pDoc->ColHidden(nCol1, nTab) )
2050 : {
2051 0 : --nCol1;
2052 0 : bHiddenEdge = true;
2053 : }
2054 0 : while ( nCol2 < MAXCOL && pDoc->ColHidden(nCol2, nTab) )
2055 : {
2056 0 : ++nCol2;
2057 0 : bHiddenEdge = true;
2058 : }
2059 0 : nTmp = pDoc->LastVisibleRow(0, nRow1, nTab);
2060 0 : if (!ValidRow(nTmp))
2061 0 : nTmp = 0;
2062 0 : if (nTmp < nRow1)
2063 : {
2064 0 : nRow1 = nTmp;
2065 0 : bHiddenEdge = true;
2066 : }
2067 0 : nTmp = pDoc->FirstVisibleRow(nRow2, MAXROW, nTab);
2068 0 : if (!ValidRow(nTmp))
2069 0 : nTmp = MAXROW;
2070 0 : if (nTmp > nRow2)
2071 : {
2072 0 : nRow2 = nTmp;
2073 0 : bHiddenEdge = true;
2074 : }
2075 :
2076 0 : if ( nCol2 - nCol1 > 1 && nRow2 - nRow1 > 1 && !bHiddenEdge )
2077 : {
2078 : // nur an den Raendern entlang
2079 0 : PaintArea( nCol1, nRow1, nCol2, nRow1, SC_UPDATE_MARKS );
2080 0 : PaintArea( nCol1, nRow1+1, nCol1, nRow2-1, SC_UPDATE_MARKS );
2081 0 : PaintArea( nCol2, nRow1+1, nCol2, nRow2-1, SC_UPDATE_MARKS );
2082 0 : PaintArea( nCol1, nRow2, nCol2, nRow2, SC_UPDATE_MARKS );
2083 : }
2084 : else // alles am Stueck
2085 0 : PaintArea( nCol1, nRow1, nCol2, nRow2, SC_UPDATE_MARKS );
2086 : }
2087 0 : }
2088 :
2089 0 : void ScTabView::PaintRangeFinder( long nNumber )
2090 : {
2091 0 : ScInputHandler* pHdl = SC_MOD()->GetInputHdl( aViewData.GetViewShell() );
2092 0 : if (pHdl)
2093 : {
2094 0 : ScRangeFindList* pRangeFinder = pHdl->GetRangeFindList();
2095 0 : if ( pRangeFinder && pRangeFinder->GetDocName() == aViewData.GetDocShell()->GetTitle() )
2096 : {
2097 0 : SCTAB nTab = aViewData.GetTabNo();
2098 0 : sal_uInt16 nCount = (sal_uInt16)pRangeFinder->Count();
2099 :
2100 0 : if (nNumber < 0)
2101 : {
2102 0 : for (sal_uInt16 i=0; i<nCount; i++)
2103 0 : PaintRangeFinderEntry(pRangeFinder->GetObject(i),nTab);
2104 : }
2105 : else
2106 : {
2107 0 : sal_uInt16 idx = nNumber;
2108 0 : if (idx < nCount)
2109 0 : PaintRangeFinderEntry(pRangeFinder->GetObject(idx),nTab);
2110 : }
2111 : }
2112 : }
2113 0 : }
2114 :
2115 : // fuer Chart-Daten-Markierung
2116 :
2117 0 : void ScTabView::AddHighlightRange( const ScRange& rRange, const Color& rColor )
2118 : {
2119 0 : maHighlightRanges.push_back( ScHighlightEntry( rRange, rColor ) );
2120 :
2121 0 : SCTAB nTab = aViewData.GetTabNo();
2122 0 : if ( nTab >= rRange.aStart.Tab() && nTab <= rRange.aEnd.Tab() )
2123 0 : PaintArea( rRange.aStart.Col(), rRange.aStart.Row(),
2124 0 : rRange.aEnd.Col(), rRange.aEnd.Row(), SC_UPDATE_MARKS );
2125 0 : }
2126 :
2127 0 : void ScTabView::ClearHighlightRanges()
2128 : {
2129 0 : SCTAB nTab = aViewData.GetTabNo();
2130 0 : std::vector<ScHighlightEntry>::const_iterator pIter;
2131 0 : for ( pIter = maHighlightRanges.begin(); pIter != maHighlightRanges.end(); ++pIter)
2132 : {
2133 0 : ScRange aRange = pIter->aRef;
2134 0 : if ( nTab >= aRange.aStart.Tab() && nTab <= aRange.aEnd.Tab() )
2135 0 : PaintArea( aRange.aStart.Col(), aRange.aStart.Row(),
2136 0 : aRange.aEnd.Col(), aRange.aEnd.Row(), SC_UPDATE_MARKS );
2137 : }
2138 :
2139 0 : maHighlightRanges.clear();
2140 0 : }
2141 :
2142 0 : void ScTabView::DoChartSelection(
2143 : const uno::Sequence< chart2::data::HighlightedRange > & rHilightRanges )
2144 : {
2145 0 : ClearHighlightRanges();
2146 0 : const sal_Unicode sep = ::formula::FormulaCompiler::GetNativeSymbol(ocSep).GetChar(0);
2147 :
2148 0 : for( sal_Int32 i=0; i<rHilightRanges.getLength(); ++i )
2149 : {
2150 0 : Color aSelColor( rHilightRanges[i].PreferredColor );
2151 0 : ScRangeList aRangeList;
2152 0 : ScDocument* pDoc = aViewData.GetDocShell()->GetDocument();
2153 0 : if( ScRangeStringConverter::GetRangeListFromString(
2154 0 : aRangeList, rHilightRanges[i].RangeRepresentation, pDoc, pDoc->GetAddressConvention(), sep ))
2155 : {
2156 0 : size_t nListSize = aRangeList.size();
2157 0 : for ( size_t j = 0; j < nListSize; ++j )
2158 : {
2159 0 : ScRange* p = aRangeList[j];
2160 0 : if( rHilightRanges[i].Index == - 1 )
2161 0 : AddHighlightRange( *p, aSelColor );
2162 : else
2163 0 : AddHighlightRange( lcl_getSubRangeByIndex( *p, rHilightRanges[i].Index ), aSelColor );
2164 : }
2165 : }
2166 0 : }
2167 0 : }
2168 :
2169 : // PaintGrid - Datenbereiche neu zeichnen
2170 :
2171 0 : void ScTabView::PaintGrid()
2172 : {
2173 : sal_uInt16 i;
2174 0 : for (i=0; i<4; i++)
2175 0 : if (pGridWin[i])
2176 0 : if (pGridWin[i]->IsVisible())
2177 0 : pGridWin[i]->Invalidate();
2178 0 : }
2179 :
2180 : // PaintTop - obere Kontrollelemente neu zeichnen
2181 :
2182 0 : void ScTabView::PaintTop()
2183 : {
2184 : sal_uInt16 i;
2185 0 : for (i=0; i<2; i++)
2186 : {
2187 0 : if (pColBar[i])
2188 0 : pColBar[i]->Invalidate();
2189 0 : if (pColOutline[i])
2190 0 : pColOutline[i]->Invalidate();
2191 : }
2192 0 : }
2193 :
2194 0 : void ScTabView::CreateAnchorHandles(SdrHdlList& rHdl, const ScAddress& rAddress)
2195 : {
2196 : sal_uInt16 i;
2197 :
2198 0 : for(i=0; i<4; i++)
2199 : {
2200 0 : if(pGridWin[i])
2201 : {
2202 0 : if(pGridWin[i]->IsVisible())
2203 : {
2204 0 : pGridWin[i]->CreateAnchorHandle(rHdl, rAddress);
2205 : }
2206 : }
2207 : }
2208 0 : }
2209 :
2210 0 : void ScTabView::PaintTopArea( SCCOL nStartCol, SCCOL nEndCol )
2211 : {
2212 : // Pixel-Position der linken Kante
2213 :
2214 0 : if ( nStartCol < aViewData.GetPosX(SC_SPLIT_LEFT) ||
2215 0 : nStartCol < aViewData.GetPosX(SC_SPLIT_RIGHT) )
2216 0 : aViewData.RecalcPixPos();
2217 :
2218 : // Fixierung anpassen (UpdateFixX setzt HSplitPos neu)
2219 :
2220 0 : if ( aViewData.GetHSplitMode() == SC_SPLIT_FIX && nStartCol < aViewData.GetFixPosX() )
2221 0 : if (aViewData.UpdateFixX())
2222 0 : RepeatResize();
2223 :
2224 : // zeichnen
2225 :
2226 0 : if (nStartCol>0)
2227 0 : --nStartCol; //! allgemeiner ?
2228 :
2229 0 : bool bLayoutRTL = aViewData.GetDocument()->IsLayoutRTL( aViewData.GetTabNo() );
2230 0 : long nLayoutSign = bLayoutRTL ? -1 : 1;
2231 :
2232 0 : for (sal_uInt16 i=0; i<2; i++)
2233 : {
2234 0 : ScHSplitPos eWhich = (ScHSplitPos) i;
2235 0 : if (pColBar[eWhich])
2236 : {
2237 0 : Size aWinSize = pColBar[eWhich]->GetSizePixel();
2238 0 : long nStartX = aViewData.GetScrPos( nStartCol, 0, eWhich ).X();
2239 : long nEndX;
2240 0 : if (nEndCol >= MAXCOL)
2241 0 : nEndX = bLayoutRTL ? 0 : ( aWinSize.Width()-1 );
2242 : else
2243 0 : nEndX = aViewData.GetScrPos( nEndCol+1, 0, eWhich ).X() - nLayoutSign;
2244 0 : pColBar[eWhich]->Invalidate(
2245 0 : Rectangle( nStartX, 0, nEndX, aWinSize.Height()-1 ) );
2246 : }
2247 0 : if (pColOutline[eWhich])
2248 0 : pColOutline[eWhich]->Invalidate();
2249 : }
2250 0 : }
2251 :
2252 :
2253 : // PaintLeft - linke Kontrollelemente neu zeichnen
2254 :
2255 0 : void ScTabView::PaintLeft()
2256 : {
2257 : sal_uInt16 i;
2258 0 : for (i=0; i<2; i++)
2259 : {
2260 0 : if (pRowBar[i])
2261 0 : pRowBar[i]->Invalidate();
2262 0 : if (pRowOutline[i])
2263 0 : pRowOutline[i]->Invalidate();
2264 : }
2265 0 : }
2266 :
2267 0 : void ScTabView::PaintLeftArea( SCROW nStartRow, SCROW nEndRow )
2268 : {
2269 : // Pixel-Position der oberen Kante
2270 :
2271 0 : if ( nStartRow < aViewData.GetPosY(SC_SPLIT_TOP) ||
2272 0 : nStartRow < aViewData.GetPosY(SC_SPLIT_BOTTOM) )
2273 0 : aViewData.RecalcPixPos();
2274 :
2275 : // Fixierung anpassen (UpdateFixY setzt VSplitPos neu)
2276 :
2277 0 : if ( aViewData.GetVSplitMode() == SC_SPLIT_FIX && nStartRow < aViewData.GetFixPosY() )
2278 0 : if (aViewData.UpdateFixY())
2279 0 : RepeatResize();
2280 :
2281 : // zeichnen
2282 :
2283 0 : if (nStartRow>0)
2284 0 : --nStartRow;
2285 :
2286 0 : for (sal_uInt16 i=0; i<2; i++)
2287 : {
2288 0 : ScVSplitPos eWhich = (ScVSplitPos) i;
2289 0 : if (pRowBar[eWhich])
2290 : {
2291 0 : Size aWinSize = pRowBar[eWhich]->GetSizePixel();
2292 0 : long nStartY = aViewData.GetScrPos( 0, nStartRow, eWhich ).Y();
2293 : long nEndY;
2294 0 : if (nEndRow >= MAXROW)
2295 0 : nEndY = aWinSize.Height()-1;
2296 : else
2297 0 : nEndY = aViewData.GetScrPos( 0, nEndRow+1, eWhich ).Y() - 1;
2298 0 : pRowBar[eWhich]->Invalidate(
2299 0 : Rectangle( 0, nStartY, aWinSize.Width()-1, nEndY ) );
2300 : }
2301 0 : if (pRowOutline[eWhich])
2302 0 : pRowOutline[eWhich]->Invalidate();
2303 : }
2304 0 : }
2305 :
2306 0 : bool ScTabView::PaintExtras()
2307 : {
2308 0 : bool bRet = false;
2309 0 : ScDocument* pDoc = aViewData.GetDocument();
2310 0 : SCTAB nTab = aViewData.GetTabNo();
2311 0 : if (!pDoc->HasTable(nTab)) // Tabelle geloescht ?
2312 : {
2313 0 : SCTAB nCount = pDoc->GetTableCount();
2314 0 : aViewData.SetTabNo(nCount-1);
2315 0 : bRet = true;
2316 : }
2317 0 : pTabControl->UpdateStatus(); // true = active
2318 0 : return bRet;
2319 : }
2320 :
2321 0 : void ScTabView::RecalcPPT()
2322 : {
2323 : // called after changes that require the PPT values to be recalculated
2324 : // (currently from detective operations)
2325 :
2326 0 : double nOldX = aViewData.GetPPTX();
2327 0 : double nOldY = aViewData.GetPPTY();
2328 :
2329 0 : aViewData.RefreshZoom(); // pre-calculate new PPT values
2330 :
2331 0 : bool bChangedX = ( aViewData.GetPPTX() != nOldX );
2332 0 : bool bChangedY = ( aViewData.GetPPTY() != nOldY );
2333 0 : if ( bChangedX || bChangedY )
2334 : {
2335 : // call view SetZoom (including draw scale, split update etc)
2336 : // and paint only if values changed
2337 :
2338 0 : Fraction aZoomX = aViewData.GetZoomX();
2339 0 : Fraction aZoomY = aViewData.GetZoomY();
2340 0 : SetZoom( aZoomX, aZoomY, false );
2341 :
2342 0 : PaintGrid();
2343 0 : if (bChangedX)
2344 0 : PaintTop();
2345 0 : if (bChangedY)
2346 0 : PaintLeft();
2347 : }
2348 0 : }
2349 :
2350 0 : void ScTabView::ActivateView( bool bActivate, bool bFirst )
2351 : {
2352 0 : if ( bActivate == aViewData.IsActive() && !bFirst )
2353 : {
2354 : // keine Assertion mehr - kommt vor, wenn vorher im Drag&Drop
2355 : // auf ein anderes Dokument umgeschaltet wurde
2356 0 : return;
2357 : }
2358 :
2359 : // wird nur bei MDI-(De)Activate gerufen
2360 : // aViewData.Activate hinten wegen Cursor-Show bei KillEditView
2361 : // Markierung nicht mehr loeschen - wenn an der ViewData Activate(false) gesetzt ist,
2362 : // wird die Markierung nicht ausgegeben
2363 :
2364 0 : if (!bActivate)
2365 : {
2366 0 : ScModule* pScMod = SC_MOD();
2367 0 : bool bRefMode = pScMod->IsFormulaMode();
2368 :
2369 : // Referenzeingabe nicht abbrechen, um Referenzen auf
2370 : // andere Dokumente zuzulassen
2371 :
2372 0 : if (!bRefMode)
2373 : {
2374 : // pass view to GetInputHdl, this view may not be current anymore
2375 0 : ScInputHandler* pHdl = SC_MOD()->GetInputHdl(aViewData.GetViewShell());
2376 0 : if (pHdl)
2377 0 : pHdl->EnterHandler();
2378 : }
2379 : }
2380 :
2381 0 : PaintExtras();
2382 :
2383 0 : aViewData.Activate(bActivate);
2384 :
2385 0 : PaintBlock(false); // Repaint, Markierung je nach Active-Status
2386 :
2387 0 : if (!bActivate)
2388 0 : HideAllCursors(); // Cursor
2389 0 : else if (!bFirst)
2390 0 : ShowAllCursors();
2391 :
2392 0 : if (bActivate)
2393 : {
2394 0 : if ( bFirst )
2395 : {
2396 0 : ScSplitPos eWin = aViewData.GetActivePart();
2397 : OSL_ENSURE( pGridWin[eWin], "rottes Dokument, nicht alle SplitPos in GridWin" );
2398 0 : if ( !pGridWin[eWin] )
2399 : {
2400 0 : eWin = SC_SPLIT_BOTTOMLEFT;
2401 0 : if ( !pGridWin[eWin] )
2402 : {
2403 : short i;
2404 0 : for ( i=0; i<4; i++ )
2405 : {
2406 0 : if ( pGridWin[i] )
2407 : {
2408 0 : eWin = (ScSplitPos) i;
2409 0 : break; // for
2410 : }
2411 : }
2412 : OSL_ENSURE( i<4, "und BUMM" );
2413 : }
2414 0 : aViewData.SetActivePart( eWin );
2415 : }
2416 : }
2417 : // hier nicht mehr selber GrabFocus rufen!
2418 : // Wenn das Doc bearbeitet wird, ruft der Sfx selber GrabFocus am Fenster der Shell.
2419 : // Wenn es z.B. ein Mailbody ist, darf es den Focus nicht bekommen (Bug #43638#)
2420 :
2421 0 : UpdateInputContext();
2422 : }
2423 : else
2424 0 : pGridWin[aViewData.GetActivePart()]->ClickExtern();
2425 : }
2426 :
2427 0 : void ScTabView::ActivatePart( ScSplitPos eWhich )
2428 : {
2429 0 : ScSplitPos eOld = aViewData.GetActivePart();
2430 0 : if ( eOld != eWhich )
2431 : {
2432 0 : bInActivatePart = true;
2433 :
2434 0 : bool bRefMode = SC_MOD()->IsFormulaMode();
2435 :
2436 : // the HasEditView call during SetCursor would fail otherwise
2437 0 : if ( aViewData.HasEditView(eOld) && !bRefMode )
2438 0 : UpdateInputLine();
2439 :
2440 0 : ScHSplitPos eOldH = WhichH(eOld);
2441 0 : ScVSplitPos eOldV = WhichV(eOld);
2442 0 : ScHSplitPos eNewH = WhichH(eWhich);
2443 0 : ScVSplitPos eNewV = WhichV(eWhich);
2444 0 : bool bTopCap = pColBar[eOldH] && pColBar[eOldH]->IsMouseCaptured();
2445 0 : bool bLeftCap = pRowBar[eOldV] && pRowBar[eOldV]->IsMouseCaptured();
2446 :
2447 0 : bool bFocus = pGridWin[eOld]->HasFocus();
2448 0 : bool bCapture = pGridWin[eOld]->IsMouseCaptured();
2449 0 : if (bCapture)
2450 0 : pGridWin[eOld]->ReleaseMouse();
2451 0 : pGridWin[eOld]->ClickExtern();
2452 0 : pGridWin[eOld]->HideCursor();
2453 0 : pGridWin[eWhich]->HideCursor();
2454 0 : aViewData.SetActivePart( eWhich );
2455 :
2456 0 : ScTabViewShell* pShell = aViewData.GetViewShell();
2457 0 : pShell->WindowChanged();
2458 :
2459 0 : pSelEngine->SetWindow(pGridWin[eWhich]);
2460 0 : pSelEngine->SetWhich(eWhich);
2461 0 : pSelEngine->SetVisibleArea( Rectangle(Point(), pGridWin[eWhich]->GetOutputSizePixel()) );
2462 :
2463 0 : pGridWin[eOld]->MoveMouseStatus(*pGridWin[eWhich]);
2464 :
2465 0 : if ( bCapture || pGridWin[eWhich]->IsMouseCaptured() )
2466 : {
2467 : // Tracking statt CaptureMouse, damit sauber abgebrochen werden kann
2468 : // (SelectionEngine ruft CaptureMouse beim SetWindow)
2469 : //! Irgendwann sollte die SelectionEngine selber StartTracking rufen!?!
2470 0 : pGridWin[eWhich]->ReleaseMouse();
2471 0 : pGridWin[eWhich]->StartTracking();
2472 : }
2473 :
2474 0 : if ( bTopCap && pColBar[eNewH] )
2475 : {
2476 0 : pColBar[eOldH]->SetIgnoreMove(true);
2477 0 : pColBar[eNewH]->SetIgnoreMove(false);
2478 0 : pHdrSelEng->SetWindow( pColBar[eNewH] );
2479 0 : long nWidth = pColBar[eNewH]->GetOutputSizePixel().Width();
2480 0 : pHdrSelEng->SetVisibleArea( Rectangle( 0, LONG_MIN, nWidth-1, LONG_MAX ) );
2481 0 : pColBar[eNewH]->CaptureMouse();
2482 : }
2483 0 : if ( bLeftCap && pRowBar[eNewV] )
2484 : {
2485 0 : pRowBar[eOldV]->SetIgnoreMove(true);
2486 0 : pRowBar[eNewV]->SetIgnoreMove(false);
2487 0 : pHdrSelEng->SetWindow( pRowBar[eNewV] );
2488 0 : long nHeight = pRowBar[eNewV]->GetOutputSizePixel().Height();
2489 0 : pHdrSelEng->SetVisibleArea( Rectangle( LONG_MIN, 0, LONG_MAX, nHeight-1 ) );
2490 0 : pRowBar[eNewV]->CaptureMouse();
2491 : }
2492 0 : aHdrFunc.SetWhich(eWhich);
2493 :
2494 0 : pGridWin[eOld]->ShowCursor();
2495 0 : pGridWin[eWhich]->ShowCursor();
2496 :
2497 0 : SfxInPlaceClient* pClient = aViewData.GetViewShell()->GetIPClient();
2498 0 : bool bOleActive = ( pClient && pClient->IsObjectInPlaceActive() );
2499 :
2500 : // don't switch ViewShell's active window during RefInput, because the focus
2501 : // might change, and subsequent SetReference calls wouldn't find the right EditView
2502 0 : if ( !bRefMode && !bOleActive )
2503 0 : aViewData.GetViewShell()->SetWindow( pGridWin[eWhich] );
2504 :
2505 0 : if ( bFocus && !aViewData.IsAnyFillMode() && !bRefMode )
2506 : {
2507 : // GrabFocus nur, wenn vorher das andere GridWindow den Focus hatte
2508 : // (z.B. wegen Suchen & Ersetzen)
2509 0 : pGridWin[eWhich]->GrabFocus();
2510 : }
2511 :
2512 0 : bInActivatePart = false;
2513 : }
2514 0 : }
2515 :
2516 0 : void ScTabView::HideListBox()
2517 : {
2518 0 : for (sal_uInt16 i=0; i<4; i++)
2519 0 : if (pGridWin[i])
2520 0 : pGridWin[i]->ClickExtern();
2521 0 : }
2522 :
2523 0 : void ScTabView::UpdateInputContext()
2524 : {
2525 0 : ScGridWindow* pWin = pGridWin[aViewData.GetActivePart()];
2526 0 : if (pWin)
2527 0 : pWin->UpdateInputContext();
2528 :
2529 0 : if (pTabControl)
2530 0 : pTabControl->UpdateInputContext();
2531 0 : }
2532 :
2533 : // GetGridWidth - Breite eines Ausgabebereichs (fuer ViewData)
2534 :
2535 0 : long ScTabView::GetGridWidth( ScHSplitPos eWhich )
2536 : {
2537 0 : ScSplitPos eGridWhich = ( eWhich == SC_SPLIT_LEFT ) ? SC_SPLIT_BOTTOMLEFT : SC_SPLIT_BOTTOMRIGHT;
2538 0 : if (pGridWin[eGridWhich])
2539 0 : return pGridWin[eGridWhich]->GetSizePixel().Width();
2540 : else
2541 0 : return 0;
2542 : }
2543 :
2544 : // GetGridHeight - Hoehe eines Ausgabebereichs (fuer ViewData)
2545 :
2546 0 : long ScTabView::GetGridHeight( ScVSplitPos eWhich )
2547 : {
2548 0 : ScSplitPos eGridWhich = ( eWhich == SC_SPLIT_TOP ) ? SC_SPLIT_TOPLEFT : SC_SPLIT_BOTTOMLEFT;
2549 0 : if (pGridWin[eGridWhich])
2550 0 : return pGridWin[eGridWhich]->GetSizePixel().Height();
2551 : else
2552 0 : return 0;
2553 : }
2554 :
2555 0 : void ScTabView::UpdateInputLine()
2556 : {
2557 0 : SC_MOD()->InputEnterHandler();
2558 0 : }
2559 :
2560 0 : void ScTabView::ZoomChanged()
2561 : {
2562 0 : ScInputHandler* pHdl = SC_MOD()->GetInputHdl(aViewData.GetViewShell());
2563 0 : if (pHdl)
2564 0 : pHdl->SetRefScale( aViewData.GetZoomX(), aViewData.GetZoomY() );
2565 :
2566 0 : UpdateFixPos();
2567 :
2568 0 : UpdateScrollBars();
2569 :
2570 : // VisArea...
2571 : // AW: Discussed with NN if there is a reason that new map mode was only set for one window,
2572 : // but is not. Setting only on one window causes the first repaint to have the old mapMode
2573 : // in three of four views, so the overlay will save the wrong content e.g. when zooming out.
2574 : // Changing to setting map mode at all windows.
2575 : sal_uInt32 a;
2576 :
2577 0 : for(a = 0L; a < 4L; a++)
2578 : {
2579 0 : if(pGridWin[a])
2580 : {
2581 0 : pGridWin[a]->SetMapMode(pGridWin[a]->GetDrawMapMode());
2582 : }
2583 : }
2584 :
2585 0 : SetNewVisArea();
2586 :
2587 0 : InterpretVisible(); // have everything calculated before painting
2588 :
2589 0 : SfxBindings& rBindings = aViewData.GetBindings();
2590 0 : rBindings.Invalidate( SID_ATTR_ZOOM );
2591 0 : rBindings.Invalidate( SID_ATTR_ZOOMSLIDER );
2592 :
2593 0 : HideNoteMarker();
2594 :
2595 : // AW: To not change too much, use pWin here
2596 0 : ScGridWindow* pWin = pGridWin[aViewData.GetActivePart()];
2597 :
2598 0 : if ( pWin && aViewData.HasEditView( aViewData.GetActivePart() ) )
2599 : {
2600 : // flush OverlayManager before changing the MapMode
2601 0 : pWin->flushOverlayManager();
2602 :
2603 : // make sure the EditView's position and size are updated
2604 : // with the right (logic, not drawing) MapMode
2605 0 : pWin->SetMapMode( aViewData.GetLogicMode() );
2606 0 : UpdateEditView();
2607 : }
2608 0 : }
2609 :
2610 0 : void ScTabView::CheckNeedsRepaint()
2611 : {
2612 : sal_uInt16 i;
2613 0 : for (i=0; i<4; i++)
2614 0 : if ( pGridWin[i] && pGridWin[i]->IsVisible() )
2615 0 : pGridWin[i]->CheckNeedsRepaint();
2616 15 : }
2617 :
2618 :
2619 :
2620 :
2621 :
2622 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|