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 <config_features.h>
21 :
22 : #include <com/sun/star/embed/XEmbeddedObject.hpp>
23 : #include <com/sun/star/frame/Desktop.hpp>
24 : #include <com/sun/star/frame/XComponentLoader.hpp>
25 :
26 : using namespace ::com::sun::star;
27 :
28 : #include <math.h>
29 :
30 : #include "scitems.hxx"
31 : #include <sfx2/fcontnr.hxx>
32 : #include <sfx2/objface.hxx>
33 : #include <sfx2/docfile.hxx>
34 : #include <svtools/ehdl.hxx>
35 : #include <basic/sbxcore.hxx>
36 : #include <svtools/sfxecode.hxx>
37 : #include <svx/ofaitem.hxx>
38 : #include <svl/whiter.hxx>
39 : #include <vcl/msgbox.hxx>
40 : #include <vcl/waitobj.hxx>
41 : #include <svx/dataaccessdescriptor.hxx>
42 : #include <svx/drawitem.hxx>
43 : #include <svx/fmshell.hxx>
44 : #include <svtools/xwindowitem.hxx>
45 : #include <sfx2/passwd.hxx>
46 : #include <sfx2/filedlghelper.hxx>
47 : #include <sfx2/dispatch.hxx>
48 : #include <svl/PasswordHelper.hxx>
49 : #include <svl/documentlockfile.hxx>
50 : #include <svl/sharecontrolfile.hxx>
51 :
52 : #include <comphelper/processfactory.hxx>
53 : #include "docuno.hxx"
54 :
55 : #include <com/sun/star/sdbc/XResultSet.hpp>
56 : #include "docsh.hxx"
57 : #include "docshimp.hxx"
58 : #include "docfunc.hxx"
59 : #include "sc.hrc"
60 : #include "stlsheet.hxx"
61 : #include "stlpool.hxx"
62 : #include "appoptio.hxx"
63 : #include "globstr.hrc"
64 : #include "global.hxx"
65 : #include "dbdocfun.hxx"
66 : #include "printfun.hxx"
67 : #include "viewdata.hxx"
68 : #include "tabvwsh.hxx"
69 : #include "impex.hxx"
70 : #include "attrib.hxx"
71 : #include "undodat.hxx"
72 : #include "autostyl.hxx"
73 : #include "undocell.hxx"
74 : #include "undotab.hxx"
75 : #include "inputhdl.hxx"
76 : #include "dbdata.hxx"
77 : #include "servobj.hxx"
78 : #include "rangenam.hxx"
79 : #include "scmod.hxx"
80 : #include "chgviset.hxx"
81 : #include "reffact.hxx"
82 : #include "chartlis.hxx"
83 : #include "chartpos.hxx"
84 : #include "waitoff.hxx"
85 : #include "tablink.hxx"
86 : #include "drwlayer.hxx"
87 : #include "docoptio.hxx"
88 : #include "undostyl.hxx"
89 : #include "rangeseq.hxx"
90 : #include "chgtrack.hxx"
91 : #include "printopt.hxx"
92 : #include <com/sun/star/document/UpdateDocMode.hpp>
93 : #include "scresid.hxx"
94 : #include "scabstdlg.hxx"
95 : #include "externalrefmgr.hxx"
96 : #include "sharedocdlg.hxx"
97 : #include "conditio.hxx"
98 : #include "sheetevents.hxx"
99 : #include <documentlinkmgr.hxx>
100 : #include <boost/scoped_ptr.hpp>
101 :
102 : #define IS_SHARE_HEADER(set) \
103 : static_cast<const SfxBoolItem&>( \
104 : static_cast<const SvxSetItem&>((set).Get(ATTR_PAGE_HEADERSET)).GetItemSet(). \
105 : Get(ATTR_PAGE_SHARED)).GetValue()
106 :
107 : #define IS_SHARE_FOOTER(set) \
108 : static_cast<const SfxBoolItem&>( \
109 : static_cast<const SvxSetItem&>((set).Get(ATTR_PAGE_FOOTERSET)).GetItemSet(). \
110 : Get(ATTR_PAGE_SHARED)).GetValue()
111 :
112 : #define SC_PREVIEW_SIZE_X 10000
113 : #define SC_PREVIEW_SIZE_Y 12400
114 :
115 0 : void ScDocShell::Execute( SfxRequest& rReq )
116 : {
117 : // SID_SC_RANGE (Range),
118 : // SID_SC_CELLTEXT (CellText),
119 : // SID_SC_CELLS (Cells) - removed (old Basic)
120 :
121 0 : const SfxItemSet* pReqArgs = rReq.GetArgs();
122 0 : SfxBindings* pBindings = GetViewBindings();
123 0 : bool bUndo (aDocument.IsUndoEnabled());
124 :
125 0 : sal_uInt16 nSlot = rReq.GetSlot();
126 0 : switch ( nSlot )
127 : {
128 : case SID_SC_SETTEXT:
129 : {
130 : const SfxPoolItem* pColItem;
131 : const SfxPoolItem* pRowItem;
132 : const SfxPoolItem* pTabItem;
133 : const SfxPoolItem* pTextItem;
134 0 : if( pReqArgs && pReqArgs->HasItem( FN_PARAM_1, &pColItem ) &&
135 0 : pReqArgs->HasItem( FN_PARAM_2, &pRowItem ) &&
136 0 : pReqArgs->HasItem( FN_PARAM_3, &pTabItem ) &&
137 0 : pReqArgs->HasItem( SID_SC_SETTEXT, &pTextItem ) )
138 : {
139 : // Parameter sind 1-based !!!
140 0 : SCCOL nCol = static_cast<const SfxInt16Item*>(pColItem)->GetValue() - 1;
141 0 : SCROW nRow = static_cast<const SfxInt32Item*>(pRowItem)->GetValue() - 1;
142 0 : SCTAB nTab = static_cast<const SfxInt16Item*>(pTabItem)->GetValue() - 1;
143 :
144 0 : SCTAB nTabCount = aDocument.GetTableCount();
145 0 : if ( ValidCol(nCol) && ValidRow(nRow) && ValidTab(nTab,nTabCount) )
146 : {
147 0 : if ( aDocument.IsBlockEditable( nTab, nCol,nRow, nCol, nRow ) )
148 : {
149 0 : OUString aVal = static_cast<const SfxStringItem*>(pTextItem)->GetValue();
150 0 : aDocument.SetString( nCol, nRow, nTab, aVal );
151 :
152 0 : PostPaintCell( nCol, nRow, nTab );
153 0 : SetDocumentModified();
154 :
155 0 : rReq.Done();
156 0 : break;
157 : }
158 : else // geschuetzte Zelle
159 : {
160 : #if HAVE_FEATURE_SCRIPTING
161 0 : SbxBase::SetError( SbxERR_BAD_PARAMETER ); //! welchen Fehler ?
162 : #endif
163 0 : break;
164 : }
165 : }
166 : }
167 : #if HAVE_FEATURE_SCRIPTING
168 0 : SbxBase::SetError( SbxERR_NO_OBJECT );
169 : #endif
170 : }
171 0 : break;
172 :
173 : case SID_SBA_IMPORT:
174 : {
175 0 : if (pReqArgs)
176 : {
177 : const SfxPoolItem* pItem;
178 0 : svx::ODataAccessDescriptor aDesc;
179 0 : if ( pReqArgs->GetItemState( nSlot, true, &pItem ) == SfxItemState::SET )
180 : {
181 0 : uno::Any aAny = static_cast<const SfxUsrAnyItem*>(pItem)->GetValue();
182 0 : uno::Sequence<beans::PropertyValue> aProperties;
183 0 : if ( aAny >>= aProperties )
184 0 : aDesc.initializeFrom( aProperties );
185 : }
186 :
187 0 : OUString sTarget;
188 0 : if ( pReqArgs->GetItemState( FN_PARAM_1, true, &pItem ) == SfxItemState::SET )
189 0 : sTarget = static_cast<const SfxStringItem*>(pItem)->GetValue();
190 :
191 0 : bool bIsNewArea = true; // Default sal_True (keine Nachfrage)
192 0 : if ( pReqArgs->GetItemState( FN_PARAM_2, true, &pItem ) == SfxItemState::SET )
193 0 : bIsNewArea = static_cast<const SfxBoolItem*>(pItem)->GetValue();
194 :
195 : // bei Bedarf neuen Datenbankbereich anlegen
196 0 : bool bMakeArea = false;
197 0 : if (bIsNewArea)
198 : {
199 0 : ScDBCollection* pDBColl = aDocument.GetDBCollection();
200 0 : if ( !pDBColl || !pDBColl->getNamedDBs().findByUpperName(ScGlobal::pCharClass->uppercase(sTarget)) )
201 : {
202 0 : ScAddress aPos;
203 0 : if ( aPos.Parse( sTarget, &aDocument, aDocument.GetAddressConvention() ) & SCA_VALID )
204 : {
205 0 : bMakeArea = true;
206 0 : if (bUndo)
207 : {
208 0 : OUString aStrImport = ScGlobal::GetRscString( STR_UNDO_IMPORTDATA );
209 0 : GetUndoManager()->EnterListAction( aStrImport, aStrImport );
210 : }
211 :
212 0 : ScDBData* pDBData = GetDBData( ScRange(aPos), SC_DB_IMPORT, SC_DBSEL_KEEP );
213 : OSL_ENSURE(pDBData, "kann DB-Daten nicht anlegen");
214 0 : sTarget = pDBData->GetName();
215 : }
216 : }
217 : }
218 :
219 : // nachfragen, bevor alter DB-Bereich ueberschrieben wird
220 0 : bool bDo = true;
221 0 : if (!bIsNewArea)
222 : {
223 0 : OUString aTemplate = ScGlobal::GetRscString( STR_IMPORT_REPLACE );
224 0 : OUString aMessage = aTemplate.getToken( 0, '#' );
225 0 : aMessage += sTarget;
226 0 : aMessage += aTemplate.getToken( 1, '#' );
227 :
228 0 : QueryBox aBox( 0, WinBits(WB_YES_NO | WB_DEF_YES), aMessage );
229 0 : bDo = ( aBox.Execute() == RET_YES );
230 : }
231 :
232 0 : if (bDo)
233 : {
234 0 : ScDBDocFunc(*this).UpdateImport( sTarget, aDesc );
235 0 : rReq.Done();
236 :
237 : // UpdateImport aktualisiert auch die internen Operationen
238 : }
239 : else
240 0 : rReq.Ignore();
241 :
242 0 : if ( bMakeArea && bUndo)
243 0 : GetUndoManager()->LeaveListAction();
244 : }
245 : else
246 : {
247 : OSL_FAIL( "arguments expected" );
248 : }
249 : }
250 0 : break;
251 :
252 : case SID_CHART_SOURCE:
253 : case SID_CHART_ADDSOURCE:
254 0 : if (pReqArgs)
255 : {
256 0 : ScDocument& rDoc = GetDocument();
257 : const SfxPoolItem* pItem;
258 0 : OUString aChartName, aRangeName;
259 :
260 0 : ScRange aSingleRange;
261 0 : ScRangeListRef aRangeListRef;
262 0 : bool bMultiRange = false;
263 :
264 0 : bool bColHeaders = true;
265 0 : bool bRowHeaders = true;
266 0 : bool bColInit = false;
267 0 : bool bRowInit = false;
268 0 : bool bAddRange = (nSlot == SID_CHART_ADDSOURCE);
269 :
270 0 : if( pReqArgs->HasItem( SID_CHART_NAME, &pItem ) )
271 0 : aChartName = static_cast<const SfxStringItem*>(pItem)->GetValue();
272 :
273 0 : if( pReqArgs->HasItem( SID_CHART_SOURCE, &pItem ) )
274 0 : aRangeName = static_cast<const SfxStringItem*>(pItem)->GetValue();
275 :
276 0 : if( pReqArgs->HasItem( FN_PARAM_1, &pItem ) )
277 : {
278 0 : bColHeaders = static_cast<const SfxBoolItem*>(pItem)->GetValue();
279 0 : bColInit = true;
280 : }
281 0 : if( pReqArgs->HasItem( FN_PARAM_2, &pItem ) )
282 : {
283 0 : bRowHeaders = static_cast<const SfxBoolItem*>(pItem)->GetValue();
284 0 : bRowInit = true;
285 : }
286 :
287 0 : ScAddress::Details aDetails(rDoc.GetAddressConvention(), 0, 0);
288 0 : bool bValid = ( aSingleRange.ParseAny( aRangeName, &rDoc, aDetails ) & SCA_VALID ) != 0;
289 0 : if (!bValid)
290 : {
291 0 : aRangeListRef = new ScRangeList;
292 0 : aRangeListRef->Parse( aRangeName, &rDoc );
293 0 : if ( !aRangeListRef->empty() )
294 : {
295 0 : bMultiRange = true;
296 0 : aSingleRange = *aRangeListRef->front(); // fuer Header
297 0 : bValid = true;
298 : }
299 : else
300 0 : aRangeListRef.Clear();
301 : }
302 :
303 0 : ScTabViewShell* pViewSh = ScTabViewShell::GetActiveViewShell();
304 0 : if (pViewSh && bValid && !aChartName.isEmpty() )
305 : {
306 0 : vcl::Window* pParent = pViewSh->GetDialogParent();
307 :
308 0 : SCCOL nCol1 = aSingleRange.aStart.Col();
309 0 : SCROW nRow1 = aSingleRange.aStart.Row();
310 0 : SCCOL nCol2 = aSingleRange.aEnd.Col();
311 0 : SCROW nRow2 = aSingleRange.aEnd.Row();
312 0 : SCTAB nTab = aSingleRange.aStart.Tab();
313 :
314 : //! immer oder gar nicht begrenzen ???
315 0 : if (!bMultiRange)
316 0 : aDocument.LimitChartArea( nTab, nCol1,nRow1, nCol2,nRow2 );
317 :
318 : // Dialog fuer Spalten/Zeilenkoepfe
319 0 : bool bOk = true;
320 0 : if ( !bAddRange && ( !bColInit || !bRowInit ) )
321 : {
322 0 : ScChartPositioner aChartPositioner( &aDocument, nTab, nCol1,nRow1, nCol2,nRow2 );
323 0 : if (!bColInit)
324 0 : bColHeaders = aChartPositioner.HasColHeaders();
325 0 : if (!bRowInit)
326 0 : bRowHeaders = aChartPositioner.HasRowHeaders();
327 :
328 0 : ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
329 : OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
330 :
331 0 : boost::scoped_ptr<AbstractScColRowLabelDlg> pDlg(pFact->CreateScColRowLabelDlg(pParent, bRowHeaders, bColHeaders));
332 : OSL_ENSURE(pDlg, "Dialog create fail!");
333 0 : if ( pDlg->Execute() == RET_OK )
334 : {
335 0 : bColHeaders = pDlg->IsRow();
336 0 : bRowHeaders = pDlg->IsCol();
337 :
338 0 : rReq.AppendItem(SfxBoolItem(FN_PARAM_1, bColHeaders));
339 0 : rReq.AppendItem(SfxBoolItem(FN_PARAM_2, bRowHeaders));
340 : }
341 : else
342 0 : bOk = false;
343 : }
344 :
345 0 : if (bOk) // ausfuehren
346 : {
347 0 : if (bMultiRange)
348 : {
349 0 : if (bUndo)
350 : {
351 0 : GetUndoManager()->AddUndoAction(
352 : new ScUndoChartData( this, aChartName, aRangeListRef,
353 0 : bColHeaders, bRowHeaders, bAddRange ) );
354 : }
355 : aDocument.UpdateChartArea( aChartName, aRangeListRef,
356 0 : bColHeaders, bRowHeaders, bAddRange );
357 : }
358 : else
359 : {
360 0 : ScRange aNewRange( nCol1,nRow1,nTab, nCol2,nRow2,nTab );
361 0 : if (bUndo)
362 : {
363 0 : GetUndoManager()->AddUndoAction(
364 : new ScUndoChartData( this, aChartName, aNewRange,
365 0 : bColHeaders, bRowHeaders, bAddRange ) );
366 : }
367 : aDocument.UpdateChartArea( aChartName, aNewRange,
368 0 : bColHeaders, bRowHeaders, bAddRange );
369 : }
370 : }
371 : }
372 : else
373 : {
374 : OSL_FAIL("UpdateChartArea: keine ViewShell oder falsche Daten");
375 : }
376 0 : rReq.Done();
377 : }
378 : else
379 : {
380 : OSL_FAIL("SID_CHART_SOURCE ohne Argumente");
381 : }
382 0 : break;
383 :
384 : case FID_AUTO_CALC:
385 : {
386 : bool bNewVal;
387 : const SfxPoolItem* pItem;
388 0 : if ( pReqArgs && SfxItemState::SET == pReqArgs->GetItemState( nSlot, true, &pItem ) )
389 0 : bNewVal = static_cast<const SfxBoolItem*>(pItem)->GetValue();
390 : else
391 0 : bNewVal = !aDocument.GetAutoCalc(); // Toggle fuer Menue
392 0 : aDocument.SetAutoCalc( bNewVal );
393 0 : SetDocumentModified();
394 0 : if (pBindings)
395 : {
396 0 : pBindings->Invalidate( FID_AUTO_CALC );
397 : }
398 0 : rReq.AppendItem( SfxBoolItem( FID_AUTO_CALC, bNewVal ) );
399 0 : rReq.Done();
400 : }
401 0 : break;
402 : case FID_RECALC:
403 0 : DoRecalc( rReq.IsAPI() );
404 0 : rReq.Done();
405 0 : break;
406 : case FID_HARD_RECALC:
407 0 : DoHardRecalc( rReq.IsAPI() );
408 0 : rReq.Done();
409 0 : break;
410 : case SID_UPDATETABLINKS:
411 : {
412 0 : ScDocument& rDoc = GetDocument();
413 :
414 0 : ScLkUpdMode nSet = rDoc.GetLinkMode();
415 :
416 0 : sal_uInt16 nDlgRet=RET_NO;
417 0 : if(nSet==LM_UNKNOWN)
418 : {
419 0 : ScAppOptions aAppOptions=SC_MOD()->GetAppOptions();
420 0 : nSet=aAppOptions.GetLinkMode();
421 : }
422 :
423 0 : if (nCanUpdate == com::sun::star::document::UpdateDocMode::NO_UPDATE)
424 0 : nSet = LM_NEVER;
425 0 : else if (nCanUpdate == com::sun::star::document::UpdateDocMode::QUIET_UPDATE &&
426 : nSet == LM_ON_DEMAND)
427 0 : nSet = LM_NEVER;
428 0 : else if (nCanUpdate == com::sun::star::document::UpdateDocMode::FULL_UPDATE)
429 0 : nSet = LM_ALWAYS;
430 :
431 0 : if(nSet==LM_ON_DEMAND)
432 : {
433 : QueryBox aBox( GetActiveDialogParent(), WinBits(WB_YES_NO | WB_DEF_YES),
434 0 : ScGlobal::GetRscString(STR_RELOAD_TABLES) );
435 :
436 0 : nDlgRet=aBox.Execute();
437 : }
438 :
439 0 : if (nDlgRet == RET_YES || nSet==LM_ALWAYS)
440 : {
441 0 : ReloadTabLinks();
442 0 : aDocument.UpdateExternalRefLinks(GetActiveDialogParent());
443 :
444 0 : bool bAny = aDocument.GetDocLinkManager().updateDdeLinks(GetActiveDialogParent());
445 :
446 0 : if (bAny)
447 : {
448 : // Formeln berechnen und painten wie im TrackTimeHdl
449 0 : aDocument.TrackFormulas();
450 0 : Broadcast(SfxSimpleHint(FID_DATACHANGED));
451 :
452 : // wenn FID_DATACHANGED irgendwann mal asynchron werden sollte
453 : // (z.B. mit Invalidate am Window), muss hier ein Update erzwungen werden.
454 : }
455 :
456 0 : aDocument.UpdateAreaLinks();
457 :
458 : //! Test, ob Fehler
459 0 : rReq.Done();
460 : }
461 : else
462 0 : rReq.Ignore();
463 : }
464 0 : break;
465 :
466 : case SID_REIMPORT_AFTER_LOAD:
467 : {
468 : // wird nach dem Laden aufgerufen, wenn DB-Bereiche mit
469 : // weggelassenen Daten enthalten sind
470 :
471 0 : bool bDone = false;
472 0 : ScDBCollection* pDBColl = aDocument.GetDBCollection();
473 :
474 0 : if ((nCanUpdate != com::sun::star::document::UpdateDocMode::NO_UPDATE) &&
475 0 : (nCanUpdate != com::sun::star::document::UpdateDocMode::QUIET_UPDATE))
476 : {
477 0 : ScRange aRange;
478 0 : ScTabViewShell* pViewSh = GetBestViewShell();
479 : OSL_ENSURE(pViewSh,"SID_REIMPORT_AFTER_LOAD: keine View");
480 0 : if (pViewSh && pDBColl)
481 : {
482 : QueryBox aBox( GetActiveDialogParent(), WinBits(WB_YES_NO | WB_DEF_YES),
483 0 : ScGlobal::GetRscString(STR_REIMPORT_AFTER_LOAD) );
484 0 : if (aBox.Execute() == RET_YES)
485 : {
486 0 : ScDBCollection::NamedDBs& rDBs = pDBColl->getNamedDBs();
487 0 : ScDBCollection::NamedDBs::iterator itr = rDBs.begin(), itrEnd = rDBs.end();
488 0 : for (; itr != itrEnd; ++itr)
489 : {
490 0 : ScDBData& rDBData = *itr;
491 0 : if ( rDBData.IsStripData() &&
492 0 : rDBData.HasImportParam() && !rDBData.HasImportSelection() )
493 : {
494 0 : rDBData.GetArea(aRange);
495 0 : pViewSh->MarkRange(aRange);
496 :
497 : // Import und interne Operationen wie SID_REFRESH_DBAREA
498 : // (Abfrage auf Import hier nicht noetig)
499 :
500 0 : ScImportParam aImportParam;
501 0 : rDBData.GetImportParam( aImportParam );
502 0 : bool bContinue = pViewSh->ImportData( aImportParam );
503 0 : rDBData.SetImportParam( aImportParam );
504 :
505 : // markieren (Groesse kann sich geaendert haben)
506 0 : rDBData.GetArea(aRange);
507 0 : pViewSh->MarkRange(aRange);
508 :
509 0 : if ( bContinue ) // Fehler beim Import -> Abbruch
510 : {
511 : // interne Operationen, wenn welche gespeichert
512 :
513 0 : if ( rDBData.HasQueryParam() || rDBData.HasSortParam() ||
514 0 : rDBData.HasSubTotalParam() )
515 0 : pViewSh->RepeatDB();
516 :
517 : // Pivottabellen die den Bereich als Quelldaten haben
518 :
519 0 : RefreshPivotTables(aRange);
520 0 : }
521 : }
522 : }
523 0 : bDone = true;
524 0 : }
525 : }
526 : }
527 :
528 0 : if ( !bDone && pDBColl )
529 : {
530 : // wenn nicht, dann aber die abhaengigen Formeln updaten
531 : //! auch fuer einzelne Bereiche, die nicht aktualisiert werden koennen
532 :
533 0 : aDocument.CalcAll(); //! nur die abhaengigen
534 0 : PostDataChanged();
535 : }
536 :
537 0 : if (bDone)
538 0 : rReq.Done();
539 : else
540 0 : rReq.Ignore();
541 : }
542 0 : break;
543 :
544 : case SID_AUTO_STYLE:
545 : OSL_FAIL("use ScAutoStyleHint instead of SID_AUTO_STYLE");
546 0 : break;
547 :
548 : case SID_GET_COLORLIST:
549 : {
550 0 : const SvxColorListItem* pColItem = static_cast<const SvxColorListItem*>(GetItem(SID_COLOR_TABLE));
551 0 : XColorListRef pList = pColItem->GetColorList();
552 0 : rReq.SetReturnValue(OfaRefItem<XColorList>(SID_GET_COLORLIST, pList));
553 : }
554 0 : break;
555 :
556 : case FID_CHG_RECORD:
557 : {
558 0 : ScDocument& rDoc = GetDocument();
559 : // get argument (recorded macro)
560 0 : SFX_REQUEST_ARG( rReq, pItem, SfxBoolItem, FID_CHG_RECORD, false );
561 0 : bool bDo = true;
562 :
563 : // xmlsec05/06:
564 : // getting real parent window when called from Security-Options TP
565 0 : vcl::Window* pParent = NULL;
566 : const SfxPoolItem* pParentItem;
567 0 : if( pReqArgs && SfxItemState::SET == pReqArgs->GetItemState( SID_ATTR_XWINDOW, false, &pParentItem ) )
568 0 : pParent = static_cast<const XWindowItem*>( pParentItem )->GetWindowPtr();
569 :
570 : // desired state
571 0 : ScChangeTrack* pChangeTrack = rDoc.GetChangeTrack();
572 0 : bool bActivateTracking = (pChangeTrack == 0); // toggle
573 0 : if ( pItem )
574 0 : bActivateTracking = pItem->GetValue(); // from argument
575 :
576 0 : if ( !bActivateTracking )
577 : {
578 0 : if ( !pItem )
579 : {
580 : // no dialog on playing the macro
581 : WarningBox aBox( pParent ? pParent : GetActiveDialogParent(),
582 : WinBits(WB_YES_NO | WB_DEF_NO),
583 0 : ScGlobal::GetRscString( STR_END_REDLINING ) );
584 0 : bDo = ( aBox.Execute() == RET_YES );
585 : }
586 :
587 0 : if ( bDo )
588 : {
589 0 : if ( pChangeTrack->IsProtected() )
590 0 : bDo = ExecuteChangeProtectionDialog( NULL );
591 0 : if ( bDo )
592 : {
593 0 : rDoc.EndChangeTracking();
594 0 : PostPaintGridAll();
595 : }
596 : }
597 : }
598 : else
599 : {
600 0 : rDoc.StartChangeTracking();
601 0 : ScChangeViewSettings aChangeViewSet;
602 0 : aChangeViewSet.SetShowChanges(true);
603 0 : rDoc.SetChangeViewSettings(aChangeViewSet);
604 : }
605 :
606 0 : if ( bDo )
607 : {
608 0 : UpdateAcceptChangesDialog();
609 :
610 : // Slots invalidieren
611 0 : if (pBindings)
612 0 : pBindings->InvalidateAll(false);
613 0 : if ( !pItem )
614 0 : rReq.AppendItem( SfxBoolItem( FID_CHG_RECORD, bActivateTracking ) );
615 0 : rReq.Done();
616 : }
617 : else
618 0 : rReq.Ignore();
619 : }
620 0 : break;
621 :
622 : case SID_CHG_PROTECT :
623 : {
624 0 : vcl::Window* pParent = NULL;
625 : const SfxPoolItem* pParentItem;
626 0 : if( pReqArgs && SfxItemState::SET == pReqArgs->GetItemState( SID_ATTR_XWINDOW, false, &pParentItem ) )
627 0 : pParent = static_cast<const XWindowItem*>( pParentItem )->GetWindowPtr();
628 0 : if ( ExecuteChangeProtectionDialog( pParent ) )
629 : {
630 0 : rReq.Done();
631 0 : SetDocumentModified();
632 : }
633 : else
634 0 : rReq.Ignore();
635 : }
636 0 : break;
637 :
638 : case SID_DOCUMENT_MERGE:
639 : case SID_DOCUMENT_COMPARE:
640 : {
641 0 : bool bDo = true;
642 0 : ScChangeTrack* pChangeTrack = aDocument.GetChangeTrack();
643 0 : if ( pChangeTrack && !pImpl->bIgnoreLostRedliningWarning )
644 : {
645 0 : if ( nSlot == SID_DOCUMENT_COMPARE )
646 : { //! old changes trace will be lost
647 : WarningBox aBox( GetActiveDialogParent(),
648 : WinBits(WB_YES_NO | WB_DEF_NO),
649 0 : ScGlobal::GetRscString( STR_END_REDLINING ) );
650 0 : if( aBox.Execute() == RET_YES )
651 0 : bDo = ExecuteChangeProtectionDialog( NULL, true );
652 : else
653 0 : bDo = false;
654 : }
655 : else // merge might reject some actions
656 0 : bDo = ExecuteChangeProtectionDialog( NULL, true );
657 : }
658 0 : if ( !bDo )
659 : {
660 0 : rReq.Ignore();
661 0 : break;
662 : }
663 0 : SfxApplication* pApp = SfxGetpApp();
664 : const SfxPoolItem* pItem;
665 0 : SfxMedium* pMed = NULL;
666 0 : if ( pReqArgs &&
667 0 : pReqArgs->GetItemState( SID_FILE_NAME, true, &pItem ) == SfxItemState::SET &&
668 0 : pItem->ISA(SfxStringItem) )
669 : {
670 : OUString aFileName =
671 0 : static_cast<const SfxStringItem*>(pItem)->GetValue();
672 :
673 0 : OUString aFilterName;
674 0 : if ( pReqArgs->GetItemState( SID_FILTER_NAME, true, &pItem ) == SfxItemState::SET &&
675 0 : pItem->ISA(SfxStringItem) )
676 : {
677 0 : aFilterName = static_cast<const SfxStringItem*>(pItem)->GetValue();
678 : }
679 0 : OUString aOptions;
680 0 : if ( pReqArgs->GetItemState( SID_FILE_FILTEROPTIONS, true, &pItem ) == SfxItemState::SET &&
681 0 : pItem->ISA(SfxStringItem) )
682 : {
683 0 : aOptions = static_cast<const SfxStringItem*>(pItem)->GetValue();
684 : }
685 0 : short nVersion = 0;
686 0 : if ( pReqArgs->GetItemState( SID_VERSION, true, &pItem ) == SfxItemState::SET &&
687 0 : pItem->ISA(SfxInt16Item) )
688 : {
689 0 : nVersion = static_cast<const SfxInt16Item*>(pItem)->GetValue();
690 : }
691 :
692 : // kein Filter angegeben -> Detection
693 0 : if (aFilterName.isEmpty())
694 0 : ScDocumentLoader::GetFilterName( aFileName, aFilterName, aOptions, true, false );
695 :
696 : // filter name from dialog contains application prefix,
697 : // GetFilter needs name without the prefix.
698 0 : ScDocumentLoader::RemoveAppPrefix( aFilterName );
699 :
700 0 : const SfxFilter* pFilter = ScDocShell::Factory().GetFilterContainer()->GetFilter4FilterName( aFilterName );
701 0 : SfxItemSet* pSet = new SfxAllItemSet( pApp->GetPool() );
702 0 : if (!aOptions.isEmpty())
703 0 : pSet->Put( SfxStringItem( SID_FILE_FILTEROPTIONS, aOptions ) );
704 0 : if ( nVersion != 0 )
705 0 : pSet->Put( SfxInt16Item( SID_VERSION, nVersion ) );
706 0 : pMed = new SfxMedium( aFileName, STREAM_STD_READ, pFilter, pSet );
707 : }
708 : else
709 : {
710 : // start file dialog asynchronous
711 0 : pImpl->bIgnoreLostRedliningWarning = true;
712 0 : delete pImpl->pRequest;
713 0 : pImpl->pRequest = new SfxRequest( rReq );
714 0 : delete pImpl->pDocInserter;
715 : pImpl->pDocInserter = new ::sfx2::DocumentInserter(
716 0 : OUString::createFromAscii( ScDocShell::Factory().GetShortName() ), false );
717 0 : pImpl->pDocInserter->StartExecuteModal( LINK( this, ScDocShell, DialogClosedHdl ) );
718 0 : return ;
719 : }
720 :
721 0 : if ( pMed ) // nun wirklich ausfuehren...
722 : {
723 0 : SfxErrorContext aEc( ERRCTX_SFX_OPENDOC, pMed->GetName() );
724 :
725 : // pOtherDocSh->DoClose() will be called explicitly later, but it is still more safe to use SfxObjectShellLock here
726 0 : ScDocShell* pOtherDocSh = new ScDocShell;
727 0 : SfxObjectShellLock aDocShTablesRef = pOtherDocSh;
728 0 : pOtherDocSh->DoLoad( pMed );
729 0 : sal_uLong nErr = pOtherDocSh->GetErrorCode();
730 0 : if (nErr)
731 0 : ErrorHandler::HandleError( nErr ); // auch Warnings
732 :
733 0 : if ( !pOtherDocSh->GetError() ) // nur Errors
734 : {
735 0 : bool bHadTrack = ( aDocument.GetChangeTrack() != NULL );
736 : #if HAVE_FEATURE_MULTIUSER_ENVIRONMENT
737 0 : sal_uLong nStart = 0;
738 0 : if ( nSlot == SID_DOCUMENT_MERGE && pChangeTrack )
739 : {
740 0 : nStart = pChangeTrack->GetActionMax() + 1;
741 : }
742 : #endif
743 0 : if ( nSlot == SID_DOCUMENT_COMPARE )
744 0 : CompareDocument( pOtherDocSh->GetDocument() );
745 : else
746 0 : MergeDocument( pOtherDocSh->GetDocument() );
747 :
748 : // show "accept changes" dialog
749 : //! get view for this document!
750 0 : if ( !IsDocShared() )
751 : {
752 0 : SfxViewFrame* pViewFrm = SfxViewFrame::Current();
753 0 : if ( pViewFrm )
754 : {
755 0 : pViewFrm->ShowChildWindow( ScAcceptChgDlgWrapper::GetChildWindowId(), true ); //@51669
756 : }
757 0 : if ( pBindings )
758 : {
759 0 : pBindings->Invalidate( FID_CHG_ACCEPT );
760 : }
761 : }
762 :
763 0 : rReq.SetReturnValue( SfxInt32Item( nSlot, 0 ) ); //! ???????
764 0 : rReq.Done();
765 :
766 0 : if (!bHadTrack) // neu eingeschaltet -> auch anzeigen
767 : {
768 0 : ScChangeViewSettings* pOldSet = aDocument.GetChangeViewSettings();
769 0 : if ( !pOldSet || !pOldSet->ShowChanges() )
770 : {
771 0 : ScChangeViewSettings aChangeViewSet;
772 0 : aChangeViewSet.SetShowChanges(true);
773 0 : aDocument.SetChangeViewSettings(aChangeViewSet);
774 : }
775 : }
776 : #if HAVE_FEATURE_MULTIUSER_ENVIRONMENT
777 0 : else if ( nSlot == SID_DOCUMENT_MERGE && IsDocShared() && pChangeTrack )
778 : {
779 0 : sal_uLong nEnd = pChangeTrack->GetActionMax();
780 0 : if ( nEnd >= nStart )
781 : {
782 : // only show changes from merged document
783 0 : ScChangeViewSettings aChangeViewSet;
784 0 : aChangeViewSet.SetShowChanges( true );
785 0 : aChangeViewSet.SetShowAccepted( true );
786 0 : aChangeViewSet.SetHasActionRange( true );
787 0 : aChangeViewSet.SetTheActionRange( nStart, nEnd );
788 0 : aDocument.SetChangeViewSettings( aChangeViewSet );
789 :
790 : // update view
791 0 : PostPaintExtras();
792 0 : PostPaintGridAll();
793 : }
794 : }
795 : #endif
796 : }
797 0 : pOtherDocSh->DoClose(); // delete passiert mit der Ref
798 : }
799 : }
800 0 : break;
801 :
802 : case SID_DELETE_SCENARIO:
803 0 : if (pReqArgs)
804 : {
805 : const SfxPoolItem* pItem;
806 0 : if ( pReqArgs->GetItemState( nSlot, true, &pItem ) == SfxItemState::SET )
807 : {
808 0 : if ( pItem->ISA(SfxStringItem) )
809 : {
810 0 : OUString aName = static_cast<const SfxStringItem*>(pItem)->GetValue();
811 : SCTAB nTab;
812 0 : if (aDocument.GetTable( aName, nTab ))
813 : {
814 : // DeleteTable von viewfunc nach docfunc verschieben!
815 :
816 0 : ScTabViewShell* pSh = GetBestViewShell();
817 0 : if ( pSh )
818 : {
819 : //! SetTabNo in DeleteTable weglassen?
820 0 : SCTAB nDispTab = pSh->GetViewData().GetTabNo();
821 0 : pSh->DeleteTable( nTab );
822 0 : pSh->SetTabNo(nDispTab);
823 0 : rReq.Done();
824 : }
825 0 : }
826 : }
827 : }
828 : }
829 0 : break;
830 :
831 : case SID_EDIT_SCENARIO:
832 : {
833 : const SfxPoolItem* pItem;
834 0 : if ( pReqArgs->GetItemState( nSlot, true, &pItem ) == SfxItemState::SET )
835 : {
836 0 : if ( pItem->ISA(SfxStringItem) )
837 : {
838 0 : OUString aName = static_cast<const SfxStringItem*>(pItem)->GetValue();
839 : SCTAB nTab;
840 0 : if (aDocument.GetTable( aName, nTab ))
841 : {
842 0 : if (aDocument.IsScenario(nTab))
843 : {
844 0 : OUString aComment;
845 0 : Color aColor;
846 : sal_uInt16 nFlags;
847 0 : aDocument.GetScenarioData( nTab, aComment, aColor, nFlags );
848 :
849 : // Determine if the Sheet that the Scenario was created on
850 : // is protected. But first we need to find that Sheet.
851 : // Rewind back to the actual sheet.
852 0 : SCTAB nActualTab = nTab;
853 0 : do
854 : {
855 0 : nActualTab--;
856 : }
857 0 : while(aDocument.IsScenario(nActualTab));
858 0 : bool bSheetProtected = aDocument.IsTabProtected(nActualTab);
859 :
860 0 : ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
861 : OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
862 :
863 0 : boost::scoped_ptr<AbstractScNewScenarioDlg> pNewDlg(pFact->CreateScNewScenarioDlg(GetActiveDialogParent(), aName, true, bSheetProtected));
864 : OSL_ENSURE(pNewDlg, "Dialog create fail!");
865 0 : pNewDlg->SetScenarioData( aName, aComment, aColor, nFlags );
866 0 : if ( pNewDlg->Execute() == RET_OK )
867 : {
868 0 : pNewDlg->GetScenarioData( aName, aComment, aColor, nFlags );
869 0 : ModifyScenario( nTab, aName, aComment, aColor, nFlags );
870 0 : rReq.Done();
871 0 : }
872 : }
873 0 : }
874 : }
875 : }
876 : }
877 0 : break;
878 :
879 : case SID_ATTR_YEAR2000 :
880 : {
881 : const SfxPoolItem* pItem;
882 0 : if ( pReqArgs->GetItemState( nSlot, true, &pItem ) == SfxItemState::SET )
883 : {
884 0 : if ( pItem->ISA(SfxUInt16Item) )
885 : {
886 0 : sal_uInt16 nY2k = static_cast<const SfxUInt16Item*>(pItem)->GetValue();
887 : // immer an den DocOptions setzen, damit das auch fuer SO50
888 : // gespeichert wird (und alle Abfragen bisher auch darauf laufen).
889 : // SetDocOptions propagiert das an den NumberFormatter
890 0 : ScDocOptions aDocOpt( aDocument.GetDocOptions() );
891 0 : aDocOpt.SetYear2000( nY2k );
892 0 : aDocument.SetDocOptions( aDocOpt );
893 : // die FormShell soll es mitbekommen
894 0 : ScTabViewShell* pSh = GetBestViewShell();
895 0 : if ( pSh )
896 : {
897 0 : FmFormShell* pFSh = pSh->GetFormShell();
898 0 : if ( pFSh )
899 0 : pFSh->SetY2KState( nY2k );
900 0 : }
901 : }
902 : }
903 : }
904 0 : break;
905 :
906 : #if HAVE_FEATURE_MULTIUSER_ENVIRONMENT
907 : case SID_SHARE_DOC:
908 : {
909 0 : ScViewData* pViewData = GetViewData();
910 0 : if ( !pViewData )
911 : {
912 0 : rReq.Ignore();
913 0 : break;
914 : }
915 :
916 0 : ScShareDocumentDlg aDlg( GetActiveDialogParent(), pViewData );
917 0 : if ( aDlg.Execute() == RET_OK )
918 : {
919 0 : bool bSetShared = aDlg.IsShareDocumentChecked();
920 0 : if ( bSetShared != static_cast< bool >( IsDocShared() ) )
921 : {
922 0 : if ( bSetShared )
923 : {
924 0 : bool bContinue = true;
925 0 : if ( HasName() )
926 : {
927 : QueryBox aBox( GetActiveDialogParent(), WinBits( WB_YES_NO | WB_DEF_YES ),
928 0 : ScGlobal::GetRscString( STR_DOC_WILLBESAVED ) );
929 0 : if ( aBox.Execute() == RET_NO )
930 : {
931 0 : bContinue = false;
932 0 : }
933 : }
934 0 : if ( bContinue )
935 : {
936 0 : EnableSharedSettings( true );
937 :
938 0 : SC_MOD()->SetInSharedDocSaving( true );
939 0 : if ( !SwitchToShared( true, true ) )
940 : {
941 : // TODO/LATER: what should be done in case the switch has failed?
942 : // for example in case the user has cancelled the saveAs operation
943 : }
944 :
945 0 : SC_MOD()->SetInSharedDocSaving( false );
946 :
947 0 : InvalidateName();
948 0 : GetUndoManager()->Clear();
949 :
950 0 : ScTabView* pTabView = dynamic_cast< ScTabView* >( pViewData->GetView() );
951 0 : if ( pTabView )
952 : {
953 0 : pTabView->UpdateLayerLocks();
954 : }
955 : }
956 : }
957 : else
958 : {
959 0 : uno::Reference< frame::XModel > xModel;
960 : try
961 : {
962 : // load shared file
963 0 : xModel.set( LoadSharedDocument(), uno::UNO_QUERY_THROW );
964 0 : uno::Reference< util::XCloseable > xCloseable( xModel, uno::UNO_QUERY_THROW );
965 :
966 : // check if shared flag is set in shared file
967 0 : bool bShared = false;
968 0 : ScModelObj* pDocObj = ScModelObj::getImplementation( xModel );
969 0 : if ( pDocObj )
970 : {
971 0 : ScDocShell* pDocShell = dynamic_cast< ScDocShell* >( pDocObj->GetEmbeddedObject() );
972 0 : if ( pDocShell )
973 : {
974 0 : bShared = pDocShell->HasSharedXMLFlagSet();
975 : }
976 : }
977 :
978 : // #i87870# check if shared status was disabled and enabled again
979 0 : bool bOwnEntry = false;
980 : try
981 : {
982 0 : ::svt::ShareControlFile aControlFile( GetSharedFileURL() );
983 0 : bOwnEntry = aControlFile.HasOwnEntry();
984 : }
985 0 : catch ( uno::Exception& )
986 : {
987 : }
988 :
989 0 : if ( bShared && bOwnEntry )
990 : {
991 0 : uno::Reference< frame::XStorable > xStorable( xModel, uno::UNO_QUERY_THROW );
992 0 : if ( xStorable->isReadonly() )
993 : {
994 0 : xCloseable->close( sal_True );
995 :
996 0 : OUString aUserName( ScGlobal::GetRscString( STR_UNKNOWN_USER ) );
997 : try
998 : {
999 0 : ::svt::DocumentLockFile aLockFile( GetSharedFileURL() );
1000 0 : uno::Sequence< OUString > aData = aLockFile.GetLockData();
1001 0 : if ( aData.getLength() > LOCKFILE_SYSUSERNAME_ID )
1002 : {
1003 0 : if ( !aData[LOCKFILE_OOOUSERNAME_ID].isEmpty() )
1004 : {
1005 0 : aUserName = aData[LOCKFILE_OOOUSERNAME_ID];
1006 : }
1007 0 : else if ( !aData[LOCKFILE_SYSUSERNAME_ID].isEmpty() )
1008 : {
1009 0 : aUserName = aData[LOCKFILE_SYSUSERNAME_ID];
1010 : }
1011 0 : }
1012 : }
1013 0 : catch ( uno::Exception& )
1014 : {
1015 : }
1016 0 : OUString aMessage( ScGlobal::GetRscString( STR_FILE_LOCKED_TRY_LATER ) );
1017 0 : aMessage = aMessage.replaceFirst( "%1", aUserName );
1018 :
1019 0 : WarningBox aBox( GetActiveDialogParent(), WinBits( WB_OK ), aMessage );
1020 0 : aBox.Execute();
1021 : }
1022 : else
1023 : {
1024 : WarningBox aBox( GetActiveDialogParent(), WinBits( WB_YES_NO | WB_DEF_YES ),
1025 0 : ScGlobal::GetRscString( STR_DOC_DISABLESHARED ) );
1026 0 : if ( aBox.Execute() == RET_YES )
1027 : {
1028 0 : xCloseable->close( sal_True );
1029 :
1030 0 : if ( !SwitchToShared( false, true ) )
1031 : {
1032 : // TODO/LATER: what should be done in case the switch has failed?
1033 : // for example in case the user has cancelled the saveAs operation
1034 : }
1035 :
1036 0 : EnableSharedSettings( false );
1037 :
1038 0 : if ( pBindings )
1039 : {
1040 0 : pBindings->ExecuteSynchron( SID_SAVEDOC );
1041 : }
1042 :
1043 0 : ScTabView* pTabView = dynamic_cast< ScTabView* >( pViewData->GetView() );
1044 0 : if ( pTabView )
1045 : {
1046 0 : pTabView->UpdateLayerLocks();
1047 : }
1048 : }
1049 : else
1050 : {
1051 0 : xCloseable->close( sal_True );
1052 0 : }
1053 0 : }
1054 : }
1055 : else
1056 : {
1057 0 : xCloseable->close( sal_True );
1058 : WarningBox aBox( GetActiveDialogParent(), WinBits( WB_OK ),
1059 0 : ScGlobal::GetRscString( STR_DOC_NOLONGERSHARED ) );
1060 0 : aBox.Execute();
1061 0 : }
1062 : }
1063 0 : catch ( uno::Exception& )
1064 : {
1065 : OSL_FAIL( "SID_SHARE_DOC: caught exception\n" );
1066 0 : SC_MOD()->SetInSharedDocSaving( false );
1067 :
1068 : try
1069 : {
1070 0 : uno::Reference< util::XCloseable > xClose( xModel, uno::UNO_QUERY_THROW );
1071 0 : xClose->close( sal_True );
1072 : }
1073 0 : catch ( uno::Exception& )
1074 : {
1075 : }
1076 0 : }
1077 : }
1078 : }
1079 : }
1080 0 : rReq.Done();
1081 : }
1082 0 : break;
1083 : #endif
1084 : case SID_OPEN_CALC:
1085 : {
1086 0 : SfxStringItem aApp(SID_DOC_SERVICE, OUString("com.sun.star.sheet.SpreadsheetDocument"));
1087 0 : SfxStringItem aTarget(SID_TARGETNAME, OUString("_blank"));
1088 0 : GetViewData()->GetDispatcher().Execute(
1089 0 : SID_OPENDOC, SfxCallMode::API|SfxCallMode::SYNCHRON, &aApp, &aTarget, 0L);
1090 : }
1091 0 : break;
1092 : default:
1093 : {
1094 : // kleiner (?) Hack -> forward der Slots an TabViewShell
1095 0 : ScTabViewShell* pSh = GetBestViewShell();
1096 0 : if ( pSh )
1097 0 : pSh->Execute( rReq );
1098 : #if HAVE_FEATURE_SCRIPTING
1099 : else
1100 0 : SbxBase::SetError( SbxERR_NO_ACTIVE_OBJECT );
1101 : #endif
1102 : }
1103 : }
1104 : }
1105 :
1106 0 : void UpdateAcceptChangesDialog()
1107 : {
1108 : // update "accept changes" dialog
1109 : //! notify all views
1110 0 : SfxViewFrame* pViewFrm = SfxViewFrame::Current();
1111 0 : if ( pViewFrm && pViewFrm->HasChildWindow( FID_CHG_ACCEPT ) )
1112 : {
1113 0 : SfxChildWindow* pChild = pViewFrm->GetChildWindow( FID_CHG_ACCEPT );
1114 0 : if ( pChild )
1115 0 : static_cast<ScAcceptChgDlgWrapper*>(pChild)->ReInitDlg();
1116 : }
1117 0 : }
1118 :
1119 0 : bool ScDocShell::ExecuteChangeProtectionDialog( vcl::Window* _pParent, bool bJustQueryIfProtected )
1120 : {
1121 0 : bool bDone = false;
1122 0 : ScChangeTrack* pChangeTrack = aDocument.GetChangeTrack();
1123 0 : if ( pChangeTrack )
1124 : {
1125 0 : bool bProtected = pChangeTrack->IsProtected();
1126 0 : if ( bJustQueryIfProtected && !bProtected )
1127 0 : return true;
1128 :
1129 0 : OUString aTitle( ScResId( bProtected ? SCSTR_CHG_UNPROTECT : SCSTR_CHG_PROTECT ) );
1130 0 : OUString aText( ScResId( SCSTR_PASSWORD ) );
1131 0 : OUString aPassword;
1132 :
1133 : boost::scoped_ptr<SfxPasswordDialog> pDlg(new SfxPasswordDialog(
1134 0 : _pParent ? _pParent : GetActiveDialogParent(), &aText ));
1135 0 : pDlg->SetText( aTitle );
1136 0 : pDlg->SetMinLen( 1 );
1137 0 : pDlg->SetHelpId( GetStaticInterface()->GetSlot(SID_CHG_PROTECT)->GetCommand() );
1138 0 : pDlg->SetEditHelpId( HID_CHG_PROTECT );
1139 0 : if ( !bProtected )
1140 0 : pDlg->ShowExtras( SHOWEXTRAS_CONFIRM );
1141 0 : if ( pDlg->Execute() == RET_OK )
1142 0 : aPassword = pDlg->GetPassword();
1143 0 : pDlg.reset();
1144 :
1145 0 : if (!aPassword.isEmpty())
1146 : {
1147 0 : if ( bProtected )
1148 : {
1149 0 : if ( SvPasswordHelper::CompareHashPassword(pChangeTrack->GetProtection(), aPassword) )
1150 : {
1151 0 : if ( bJustQueryIfProtected )
1152 0 : bDone = true;
1153 : else
1154 : pChangeTrack->SetProtection(
1155 0 : com::sun::star::uno::Sequence< sal_Int8 > (0) );
1156 : }
1157 : else
1158 : {
1159 : InfoBox aBox( GetActiveDialogParent(),
1160 0 : OUString( ScResId( SCSTR_WRONGPASSWORD ) ) );
1161 0 : aBox.Execute();
1162 : }
1163 : }
1164 : else
1165 : {
1166 0 : com::sun::star::uno::Sequence< sal_Int8 > aPass;
1167 0 : SvPasswordHelper::GetHashPassword( aPass, aPassword );
1168 0 : pChangeTrack->SetProtection( aPass );
1169 : }
1170 0 : if ( bProtected != pChangeTrack->IsProtected() )
1171 : {
1172 0 : UpdateAcceptChangesDialog();
1173 0 : bDone = true;
1174 : }
1175 0 : }
1176 : }
1177 0 : else if ( bJustQueryIfProtected )
1178 0 : bDone = true;
1179 0 : return bDone;
1180 : }
1181 :
1182 8 : void ScDocShell::DoRecalc( bool bApi )
1183 : {
1184 8 : bool bDone = false;
1185 8 : ScTabViewShell* pSh = GetBestViewShell();
1186 8 : if ( pSh )
1187 : {
1188 8 : ScInputHandler* pHdl = SC_MOD()->GetInputHdl(pSh);
1189 8 : if ( pHdl && pHdl->IsInputMode() && pHdl->IsFormulaMode() && !bApi )
1190 : {
1191 0 : pHdl->FormulaPreview(); // Teilergebnis als QuickHelp
1192 0 : bDone = true;
1193 : }
1194 : else
1195 : {
1196 8 : pSh->UpdateInputLine(); // InputEnterHandler
1197 8 : pSh->UpdateInputHandler();
1198 : }
1199 : }
1200 8 : if (!bDone) // sonst Dokument neu berechnen
1201 : {
1202 8 : WaitObject aWaitObj( GetActiveDialogParent() );
1203 8 : aDocument.CalcFormulaTree();
1204 8 : if ( pSh )
1205 8 : pSh->UpdateCharts(true);
1206 :
1207 8 : aDocument.BroadcastUno( SfxSimpleHint( SFX_HINT_DATACHANGED ) );
1208 :
1209 : // Wenn es Charts gibt, dann alles painten, damit nicht
1210 : // PostDataChanged und die Charts nacheinander kommen und Teile
1211 : // doppelt gepainted werden.
1212 :
1213 8 : ScChartListenerCollection* pCharts = aDocument.GetChartListenerCollection();
1214 8 : if ( pCharts && pCharts->hasListeners() )
1215 0 : PostPaintGridAll();
1216 : else
1217 8 : PostDataChanged();
1218 : }
1219 8 : }
1220 :
1221 346 : void ScDocShell::DoHardRecalc( bool /* bApi */ )
1222 : {
1223 346 : WaitObject aWaitObj( GetActiveDialogParent() );
1224 346 : ScTabViewShell* pSh = GetBestViewShell();
1225 346 : if ( pSh )
1226 : {
1227 116 : pSh->UpdateInputLine(); // InputEnterHandler
1228 116 : pSh->UpdateInputHandler();
1229 : }
1230 346 : aDocument.CalcAll();
1231 346 : GetDocFunc().DetectiveRefresh(); // erzeugt eigenes Undo
1232 346 : if ( pSh )
1233 116 : pSh->UpdateCharts(true);
1234 :
1235 : // set notification flags for "calculate" event (used in SFX_HINT_DATACHANGED broadcast)
1236 : // (might check for the presence of any formulas on each sheet)
1237 346 : SCTAB nTabCount = aDocument.GetTableCount();
1238 : SCTAB nTab;
1239 346 : if (aDocument.HasAnySheetEventScript( SC_SHEETEVENT_CALCULATE, true )) // search also for VBA hendler
1240 0 : for (nTab=0; nTab<nTabCount; nTab++)
1241 0 : aDocument.SetCalcNotification(nTab);
1242 :
1243 : // CalcAll doesn't broadcast value changes, so SC_HINT_CALCALL is broadcasted globally
1244 : // in addition to SFX_HINT_DATACHANGED.
1245 346 : aDocument.BroadcastUno( SfxSimpleHint( SC_HINT_CALCALL ) );
1246 346 : aDocument.BroadcastUno( SfxSimpleHint( SFX_HINT_DATACHANGED ) );
1247 :
1248 : // use hard recalc also to disable stream-copying of all sheets
1249 : // (somewhat consistent with charts)
1250 1046 : for (nTab=0; nTab<nTabCount; nTab++)
1251 700 : if (aDocument.IsStreamValid(nTab))
1252 44 : aDocument.SetStreamValid(nTab, false);
1253 :
1254 346 : PostPaintGridAll();
1255 346 : }
1256 :
1257 0 : void ScDocShell::DoAutoStyle( const ScRange& rRange, const OUString& rStyle )
1258 : {
1259 0 : ScStyleSheetPool* pStylePool = aDocument.GetStyleSheetPool();
1260 : ScStyleSheet* pStyleSheet =
1261 0 : pStylePool->FindCaseIns( rStyle, SFX_STYLE_FAMILY_PARA );
1262 0 : if (!pStyleSheet)
1263 : pStyleSheet = static_cast<ScStyleSheet*>(
1264 0 : pStylePool->Find( ScGlobal::GetRscString(STR_STYLENAME_STANDARD), SFX_STYLE_FAMILY_PARA ));
1265 0 : if (pStyleSheet)
1266 : {
1267 : OSL_ENSURE(rRange.aStart.Tab() == rRange.aEnd.Tab(),
1268 : "DoAutoStyle mit mehreren Tabellen");
1269 0 : SCTAB nTab = rRange.aStart.Tab();
1270 0 : SCCOL nStartCol = rRange.aStart.Col();
1271 0 : SCROW nStartRow = rRange.aStart.Row();
1272 0 : SCCOL nEndCol = rRange.aEnd.Col();
1273 0 : SCROW nEndRow = rRange.aEnd.Row();
1274 0 : aDocument.ApplyStyleAreaTab( nStartCol, nStartRow, nEndCol, nEndRow, nTab, *pStyleSheet );
1275 0 : aDocument.ExtendMerge( nStartCol, nStartRow, nEndCol, nEndRow, nTab );
1276 0 : PostPaint( nStartCol, nStartRow, nTab, nEndCol, nEndRow, nTab, PAINT_GRID );
1277 : }
1278 0 : }
1279 :
1280 19550 : void ScDocShell::NotifyStyle( const SfxStyleSheetHint& rHint )
1281 : {
1282 19550 : sal_uInt16 nId = rHint.GetHint();
1283 19550 : const SfxStyleSheetBase* pStyle = rHint.GetStyleSheet();
1284 19550 : if (!pStyle)
1285 19550 : return;
1286 :
1287 19550 : if ( pStyle->GetFamily() == SFX_STYLE_FAMILY_PAGE )
1288 : {
1289 3516 : if ( nId == SFX_STYLESHEET_MODIFIED )
1290 : {
1291 734 : ScDocShellModificator aModificator( *this );
1292 :
1293 1468 : OUString aNewName = pStyle->GetName();
1294 1468 : OUString aOldName = aNewName;
1295 734 : const SfxStyleSheetHintExtended* pExtendedHint = dynamic_cast<const SfxStyleSheetHintExtended*>(&rHint); // Name geaendert?
1296 734 : if (pExtendedHint)
1297 0 : aOldName = pExtendedHint->GetOldName();
1298 :
1299 734 : if ( aNewName != aOldName )
1300 0 : aDocument.RenamePageStyleInUse( aOldName, aNewName );
1301 :
1302 734 : SCTAB nTabCount = aDocument.GetTableCount();
1303 1468 : for (SCTAB nTab=0; nTab<nTabCount; nTab++)
1304 734 : if (aDocument.GetPageStyle(nTab) == aNewName) // schon auf neu angepasst
1305 : {
1306 266 : aDocument.PageStyleModified( nTab, aNewName );
1307 266 : ScPrintFunc aPrintFunc( this, GetPrinter(), nTab );
1308 266 : aPrintFunc.UpdatePages();
1309 : }
1310 :
1311 734 : aModificator.SetDocumentModified();
1312 :
1313 734 : if (pExtendedHint)
1314 : {
1315 0 : SfxBindings* pBindings = GetViewBindings();
1316 0 : if (pBindings)
1317 : {
1318 0 : pBindings->Invalidate( SID_STATUS_PAGESTYLE );
1319 0 : pBindings->Invalidate( SID_STYLE_FAMILY4 );
1320 0 : pBindings->Invalidate( FID_RESET_PRINTZOOM );
1321 0 : pBindings->Invalidate( SID_ATTR_PARA_LEFT_TO_RIGHT );
1322 0 : pBindings->Invalidate( SID_ATTR_PARA_RIGHT_TO_LEFT );
1323 : }
1324 734 : }
1325 : }
1326 : }
1327 16034 : else if ( pStyle->GetFamily() == SFX_STYLE_FAMILY_PARA )
1328 : {
1329 16034 : if ( nId == SFX_STYLESHEET_MODIFIED)
1330 : {
1331 9760 : OUString aNewName = pStyle->GetName();
1332 19520 : OUString aOldName = aNewName;
1333 9760 : const SfxStyleSheetHintExtended* pExtendedHint = dynamic_cast<const SfxStyleSheetHintExtended*>(&rHint);
1334 9760 : if (pExtendedHint)
1335 0 : aOldName = pExtendedHint->GetOldName();
1336 9760 : if ( aNewName != aOldName )
1337 : {
1338 0 : for(SCTAB i = 0; i < aDocument.GetTableCount(); ++i)
1339 : {
1340 0 : ScConditionalFormatList* pList = aDocument.GetCondFormList(i);
1341 0 : if (pList)
1342 0 : pList->RenameCellStyle( aOldName,aNewName );
1343 : }
1344 9760 : }
1345 : }
1346 : }
1347 :
1348 : // alles andere geht ueber Slots...
1349 : }
1350 :
1351 : // wie in printfun.cxx
1352 : #define ZOOM_MIN 10
1353 :
1354 0 : void ScDocShell::SetPrintZoom( SCTAB nTab, sal_uInt16 nScale, sal_uInt16 nPages )
1355 : {
1356 0 : bool bUndo(aDocument.IsUndoEnabled());
1357 0 : OUString aStyleName = aDocument.GetPageStyle( nTab );
1358 0 : ScStyleSheetPool* pStylePool = aDocument.GetStyleSheetPool();
1359 0 : SfxStyleSheetBase* pStyleSheet = pStylePool->Find( aStyleName, SFX_STYLE_FAMILY_PAGE );
1360 : OSL_ENSURE( pStyleSheet, "PageStyle not found" );
1361 0 : if ( pStyleSheet )
1362 : {
1363 0 : ScDocShellModificator aModificator( *this );
1364 :
1365 0 : SfxItemSet& rSet = pStyleSheet->GetItemSet();
1366 0 : if (bUndo)
1367 : {
1368 0 : sal_uInt16 nOldScale = static_cast<const SfxUInt16Item&>(rSet.Get(ATTR_PAGE_SCALE)).GetValue();
1369 0 : sal_uInt16 nOldPages = static_cast<const SfxUInt16Item&>(rSet.Get(ATTR_PAGE_SCALETOPAGES)).GetValue();
1370 0 : GetUndoManager()->AddUndoAction( new ScUndoPrintZoom(
1371 0 : this, nTab, nOldScale, nOldPages, nScale, nPages ) );
1372 : }
1373 :
1374 0 : rSet.Put( SfxUInt16Item( ATTR_PAGE_SCALE, nScale ) );
1375 0 : rSet.Put( SfxUInt16Item( ATTR_PAGE_SCALETOPAGES, nPages ) );
1376 :
1377 0 : ScPrintFunc aPrintFunc( this, GetPrinter(), nTab );
1378 0 : aPrintFunc.UpdatePages();
1379 0 : aModificator.SetDocumentModified();
1380 :
1381 0 : SfxBindings* pBindings = GetViewBindings();
1382 0 : if (pBindings)
1383 0 : pBindings->Invalidate( FID_RESET_PRINTZOOM );
1384 0 : }
1385 0 : }
1386 :
1387 0 : bool ScDocShell::AdjustPrintZoom( const ScRange& rRange )
1388 : {
1389 0 : bool bChange = false;
1390 0 : SCTAB nTab = rRange.aStart.Tab();
1391 :
1392 0 : OUString aStyleName = aDocument.GetPageStyle( nTab );
1393 0 : ScStyleSheetPool* pStylePool = aDocument.GetStyleSheetPool();
1394 0 : SfxStyleSheetBase* pStyleSheet = pStylePool->Find( aStyleName, SFX_STYLE_FAMILY_PAGE );
1395 : OSL_ENSURE( pStyleSheet, "PageStyle not found" );
1396 0 : if ( pStyleSheet )
1397 : {
1398 0 : SfxItemSet& rSet = pStyleSheet->GetItemSet();
1399 0 : bool bHeaders = static_cast<const SfxBoolItem&>(rSet.Get(ATTR_PAGE_HEADERS)).GetValue();
1400 0 : sal_uInt16 nOldScale = static_cast<const SfxUInt16Item&>(rSet.Get(ATTR_PAGE_SCALE)).GetValue();
1401 0 : sal_uInt16 nOldPages = static_cast<const SfxUInt16Item&>(rSet.Get(ATTR_PAGE_SCALETOPAGES)).GetValue();
1402 0 : const ScRange* pRepeatCol = aDocument.GetRepeatColRange( nTab );
1403 0 : const ScRange* pRepeatRow = aDocument.GetRepeatRowRange( nTab );
1404 :
1405 : // benoetigte Skalierung fuer Selektion ausrechnen
1406 :
1407 0 : sal_uInt16 nNewScale = nOldScale;
1408 :
1409 0 : long nBlkTwipsX = 0;
1410 0 : if (bHeaders)
1411 0 : nBlkTwipsX += (long) PRINT_HEADER_WIDTH;
1412 0 : SCCOL nStartCol = rRange.aStart.Col();
1413 0 : SCCOL nEndCol = rRange.aEnd.Col();
1414 0 : if ( pRepeatCol && nStartCol >= pRepeatCol->aStart.Col() )
1415 : {
1416 0 : for (SCCOL i=pRepeatCol->aStart.Col(); i<=pRepeatCol->aEnd.Col(); i++ )
1417 0 : nBlkTwipsX += aDocument.GetColWidth( i, nTab );
1418 0 : if ( nStartCol <= pRepeatCol->aEnd.Col() )
1419 0 : nStartCol = pRepeatCol->aEnd.Col() + 1;
1420 : }
1421 : // legacy compilers' own scope for i
1422 : {
1423 0 : for ( SCCOL i=nStartCol; i<=nEndCol; i++ )
1424 0 : nBlkTwipsX += aDocument.GetColWidth( i, nTab );
1425 : }
1426 :
1427 0 : long nBlkTwipsY = 0;
1428 0 : if (bHeaders)
1429 0 : nBlkTwipsY += (long) PRINT_HEADER_HEIGHT;
1430 0 : SCROW nStartRow = rRange.aStart.Row();
1431 0 : SCROW nEndRow = rRange.aEnd.Row();
1432 0 : if ( pRepeatRow && nStartRow >= pRepeatRow->aStart.Row() )
1433 : {
1434 : nBlkTwipsY += aDocument.GetRowHeight( pRepeatRow->aStart.Row(),
1435 0 : pRepeatRow->aEnd.Row(), nTab );
1436 0 : if ( nStartRow <= pRepeatRow->aEnd.Row() )
1437 0 : nStartRow = pRepeatRow->aEnd.Row() + 1;
1438 : }
1439 0 : nBlkTwipsY += aDocument.GetRowHeight( nStartRow, nEndRow, nTab );
1440 :
1441 0 : Size aPhysPage;
1442 : long nHdr, nFtr;
1443 0 : ScPrintFunc aOldPrFunc( this, GetPrinter(), nTab );
1444 0 : aOldPrFunc.GetScaleData( aPhysPage, nHdr, nFtr );
1445 0 : nBlkTwipsY += nHdr + nFtr;
1446 :
1447 0 : if ( nBlkTwipsX == 0 ) // hidden columns/rows may lead to 0
1448 0 : nBlkTwipsX = 1;
1449 0 : if ( nBlkTwipsY == 0 )
1450 0 : nBlkTwipsY = 1;
1451 :
1452 0 : long nNeeded = std::min( aPhysPage.Width() * 100 / nBlkTwipsX,
1453 0 : aPhysPage.Height() * 100 / nBlkTwipsY );
1454 0 : if ( nNeeded < ZOOM_MIN )
1455 0 : nNeeded = ZOOM_MIN; // Begrenzung
1456 0 : if ( nNeeded < (long) nNewScale )
1457 0 : nNewScale = (sal_uInt16) nNeeded;
1458 :
1459 0 : bChange = ( nNewScale != nOldScale || nOldPages != 0 );
1460 0 : if ( bChange )
1461 0 : SetPrintZoom( nTab, nNewScale, 0 );
1462 : }
1463 0 : return bChange;
1464 : }
1465 :
1466 25052 : void ScDocShell::PageStyleModified( const OUString& rStyleName, bool bApi )
1467 : {
1468 25052 : ScDocShellModificator aModificator( *this );
1469 :
1470 25052 : bool bWarn = false;
1471 :
1472 25052 : SCTAB nTabCount = aDocument.GetTableCount();
1473 25052 : SCTAB nUseTab = MAXTAB+1;
1474 58954 : for (SCTAB nTab=0; nTab<nTabCount && nUseTab>MAXTAB; nTab++)
1475 72770 : if ( aDocument.GetPageStyle(nTab) == rStyleName &&
1476 43294 : ( !bApi || aDocument.GetPageSize(nTab).Width() ) )
1477 270 : nUseTab = nTab;
1478 : // bei bApi nur, wenn Umbrueche schon angezeigt
1479 :
1480 25052 : if (ValidTab(nUseTab)) // nicht verwendet -> nichts zu tun
1481 : {
1482 270 : ScPrintFunc aPrintFunc( this, GetPrinter(), nUseTab ); //! ohne CountPages auskommen
1483 270 : if (!aPrintFunc.UpdatePages()) // setzt Umbrueche auf allen Tabs
1484 0 : bWarn = true;
1485 :
1486 270 : if (bWarn && !bApi)
1487 : {
1488 0 : ScWaitCursorOff aWaitOff( GetActiveDialogParent() );
1489 : InfoBox aInfoBox(GetActiveDialogParent(),
1490 0 : ScGlobal::GetRscString(STR_PRINT_INVALID_AREA));
1491 0 : aInfoBox.Execute();
1492 270 : }
1493 : }
1494 :
1495 25052 : aModificator.SetDocumentModified();
1496 :
1497 25052 : SfxBindings* pBindings = GetViewBindings();
1498 25052 : if (pBindings)
1499 : {
1500 1998 : pBindings->Invalidate( FID_RESET_PRINTZOOM );
1501 1998 : pBindings->Invalidate( SID_ATTR_PARA_LEFT_TO_RIGHT );
1502 1998 : pBindings->Invalidate( SID_ATTR_PARA_RIGHT_TO_LEFT );
1503 25052 : }
1504 25052 : }
1505 :
1506 0 : void ScDocShell::ExecutePageStyle( SfxViewShell& rCaller,
1507 : SfxRequest& rReq,
1508 : SCTAB nCurTab )
1509 : {
1510 0 : const SfxItemSet* pReqArgs = rReq.GetArgs();
1511 :
1512 0 : switch ( rReq.GetSlot() )
1513 : {
1514 : case SID_STATUS_PAGESTYLE: // Click auf StatusBar-Control
1515 : case SID_FORMATPAGE:
1516 : {
1517 0 : if ( pReqArgs != NULL )
1518 : {
1519 : }
1520 0 : else if ( pReqArgs == NULL )
1521 : {
1522 0 : bool bUndo(aDocument.IsUndoEnabled());
1523 0 : OUString aOldName = aDocument.GetPageStyle( nCurTab );
1524 0 : ScStyleSheetPool* pStylePool = aDocument.GetStyleSheetPool();
1525 : SfxStyleSheetBase* pStyleSheet
1526 0 : = pStylePool->Find( aOldName, SFX_STYLE_FAMILY_PAGE );
1527 :
1528 : OSL_ENSURE( pStyleSheet, "PageStyle not found! :-/" );
1529 :
1530 0 : if ( pStyleSheet )
1531 : {
1532 0 : ScStyleSaveData aOldData;
1533 0 : if (bUndo)
1534 0 : aOldData.InitFromStyle( pStyleSheet );
1535 :
1536 0 : SfxItemSet& rStyleSet = pStyleSheet->GetItemSet();
1537 :
1538 0 : ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
1539 : OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
1540 :
1541 0 : boost::scoped_ptr<SfxAbstractTabDialog> pDlg(pFact->CreateScStyleDlg( GetActiveDialogParent(), *pStyleSheet, RID_SCDLG_STYLES_PAGE, RID_SCDLG_STYLES_PAGE ));
1542 : OSL_ENSURE(pDlg, "Dialog create fail!");
1543 :
1544 0 : if ( pDlg->Execute() == RET_OK )
1545 : {
1546 0 : const SfxItemSet* pOutSet = pDlg->GetOutputItemSet();
1547 :
1548 0 : WaitObject aWait( GetActiveDialogParent() );
1549 :
1550 0 : OUString aNewName = pStyleSheet->GetName();
1551 0 : if ( aNewName != aOldName &&
1552 0 : aDocument.RenamePageStyleInUse( aOldName, aNewName ) )
1553 : {
1554 0 : SfxBindings* pBindings = GetViewBindings();
1555 0 : if (pBindings)
1556 : {
1557 0 : pBindings->Invalidate( SID_STATUS_PAGESTYLE );
1558 0 : pBindings->Invalidate( FID_RESET_PRINTZOOM );
1559 : }
1560 : }
1561 :
1562 0 : if ( pOutSet )
1563 0 : aDocument.ModifyStyleSheet( *pStyleSheet, *pOutSet );
1564 :
1565 : // merken fuer GetState():
1566 0 : GetPageOnFromPageStyleSet( &rStyleSet, nCurTab, bHeaderOn, bFooterOn );
1567 0 : rCaller.GetViewFrame()->GetBindings().Invalidate( SID_HFEDIT );
1568 :
1569 0 : ScStyleSaveData aNewData;
1570 0 : aNewData.InitFromStyle( pStyleSheet );
1571 0 : if (bUndo)
1572 : {
1573 0 : GetUndoManager()->AddUndoAction(
1574 : new ScUndoModifyStyle( this, SFX_STYLE_FAMILY_PAGE,
1575 0 : aOldData, aNewData ) );
1576 : }
1577 :
1578 0 : PageStyleModified( aNewName, false );
1579 0 : rReq.Done();
1580 : }
1581 0 : pDlg.reset();
1582 :
1583 0 : rStyleSet.ClearItem( ATTR_PAGE_PAPERTRAY );
1584 0 : }
1585 : }
1586 : }
1587 0 : break;
1588 :
1589 : case SID_HFEDIT:
1590 : {
1591 0 : if ( pReqArgs != NULL )
1592 : {
1593 : }
1594 0 : else if ( pReqArgs == NULL )
1595 : {
1596 0 : OUString aStr( aDocument.GetPageStyle( nCurTab ) );
1597 :
1598 : ScStyleSheetPool* pStylePool
1599 0 : = aDocument.GetStyleSheetPool();
1600 :
1601 : SfxStyleSheetBase* pStyleSheet
1602 0 : = pStylePool->Find( aStr, SFX_STYLE_FAMILY_PAGE );
1603 :
1604 : OSL_ENSURE( pStyleSheet, "PageStyle not found! :-/" );
1605 :
1606 0 : if ( pStyleSheet )
1607 : {
1608 0 : SfxItemSet& rStyleSet = pStyleSheet->GetItemSet();
1609 :
1610 : SvxPageUsage eUsage =
1611 : SvxPageUsage( static_cast<const SvxPageItem&>(
1612 0 : rStyleSet.Get( ATTR_PAGE )).
1613 0 : GetPageUsage() );
1614 0 : bool bShareHeader = IS_SHARE_HEADER(rStyleSet);
1615 0 : bool bShareFooter = IS_SHARE_FOOTER(rStyleSet);
1616 0 : sal_uInt16 nResId = 0;
1617 :
1618 0 : switch ( eUsage )
1619 : {
1620 : case SVX_PAGE_LEFT:
1621 : case SVX_PAGE_RIGHT:
1622 : {
1623 0 : if ( bHeaderOn && bFooterOn )
1624 0 : nResId = RID_SCDLG_HFEDIT;
1625 0 : else if ( SVX_PAGE_RIGHT == eUsage )
1626 : {
1627 0 : if ( !bHeaderOn && bFooterOn )
1628 0 : nResId = RID_SCDLG_HFEDIT_RIGHTFOOTER;
1629 0 : else if ( bHeaderOn && !bFooterOn )
1630 0 : nResId = RID_SCDLG_HFEDIT_RIGHTHEADER;
1631 : }
1632 : else
1633 : {
1634 : // #69193a# respect "shared" setting
1635 0 : if ( !bHeaderOn && bFooterOn )
1636 : nResId = bShareFooter ?
1637 : RID_SCDLG_HFEDIT_RIGHTFOOTER :
1638 0 : RID_SCDLG_HFEDIT_LEFTFOOTER;
1639 0 : else if ( bHeaderOn && !bFooterOn )
1640 : nResId = bShareHeader ?
1641 : RID_SCDLG_HFEDIT_RIGHTHEADER :
1642 0 : RID_SCDLG_HFEDIT_LEFTHEADER;
1643 : }
1644 : }
1645 0 : break;
1646 :
1647 : case SVX_PAGE_MIRROR:
1648 : case SVX_PAGE_ALL:
1649 : default:
1650 : {
1651 0 : if ( !bShareHeader && !bShareFooter )
1652 : {
1653 0 : if ( bHeaderOn && bFooterOn )
1654 0 : nResId = RID_SCDLG_HFEDIT_ALL;
1655 0 : else if ( !bHeaderOn && bFooterOn )
1656 0 : nResId = RID_SCDLG_HFEDIT_FOOTER;
1657 0 : else if ( bHeaderOn && !bFooterOn )
1658 0 : nResId = RID_SCDLG_HFEDIT_HEADER;
1659 : }
1660 0 : else if ( bShareHeader && bShareFooter )
1661 : {
1662 0 : if ( bHeaderOn && bFooterOn )
1663 0 : nResId = RID_SCDLG_HFEDIT;
1664 : else
1665 : {
1666 0 : if ( !bHeaderOn && bFooterOn )
1667 0 : nResId = RID_SCDLG_HFEDIT_RIGHTFOOTER;
1668 0 : else if ( bHeaderOn && !bFooterOn )
1669 0 : nResId = RID_SCDLG_HFEDIT_RIGHTHEADER;
1670 : }
1671 : }
1672 0 : else if ( !bShareHeader && bShareFooter )
1673 : {
1674 0 : if ( bHeaderOn && bFooterOn )
1675 0 : nResId = RID_SCDLG_HFEDIT_SFTR;
1676 0 : else if ( !bHeaderOn && bFooterOn )
1677 0 : nResId = RID_SCDLG_HFEDIT_RIGHTFOOTER;
1678 0 : else if ( bHeaderOn && !bFooterOn )
1679 0 : nResId = RID_SCDLG_HFEDIT_HEADER;
1680 : }
1681 0 : else if ( bShareHeader && !bShareFooter )
1682 : {
1683 0 : if ( bHeaderOn && bFooterOn )
1684 0 : nResId = RID_SCDLG_HFEDIT_SHDR;
1685 0 : else if ( !bHeaderOn && bFooterOn )
1686 0 : nResId = RID_SCDLG_HFEDIT_FOOTER;
1687 0 : else if ( bHeaderOn && !bFooterOn )
1688 0 : nResId = RID_SCDLG_HFEDIT_RIGHTHEADER;
1689 : }
1690 : }
1691 : }
1692 :
1693 0 : ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
1694 : OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
1695 :
1696 : boost::scoped_ptr<SfxAbstractTabDialog> pDlg(pFact->CreateScHFEditDlg( SfxViewFrame::Current(),
1697 : GetActiveDialogParent(),
1698 : rStyleSet,
1699 : aStr,
1700 0 : nResId));
1701 : OSL_ENSURE(pDlg, "Dialog create fail!");
1702 0 : if ( pDlg->Execute() == RET_OK )
1703 : {
1704 0 : const SfxItemSet* pOutSet = pDlg->GetOutputItemSet();
1705 :
1706 0 : if ( pOutSet )
1707 0 : aDocument.ModifyStyleSheet( *pStyleSheet, *pOutSet );
1708 :
1709 0 : SetDocumentModified();
1710 0 : rReq.Done();
1711 0 : }
1712 0 : }
1713 : }
1714 : }
1715 0 : break;
1716 :
1717 : default:
1718 0 : break;
1719 : }
1720 0 : }
1721 :
1722 444 : void ScDocShell::GetStatePageStyle( SfxViewShell& /* rCaller */,
1723 : SfxItemSet& rSet,
1724 : SCTAB nCurTab )
1725 : {
1726 444 : SfxWhichIter aIter(rSet);
1727 444 : sal_uInt16 nWhich = aIter.FirstWhich();
1728 1892 : while ( nWhich )
1729 : {
1730 1004 : switch (nWhich)
1731 : {
1732 : case SID_STATUS_PAGESTYLE:
1733 428 : rSet.Put( SfxStringItem( nWhich, aDocument.GetPageStyle( nCurTab ) ) );
1734 428 : break;
1735 :
1736 : case SID_HFEDIT:
1737 : {
1738 36 : OUString aStr = aDocument.GetPageStyle( nCurTab );
1739 36 : ScStyleSheetPool* pStylePool = aDocument.GetStyleSheetPool();
1740 36 : SfxStyleSheetBase* pStyleSheet = pStylePool->Find( aStr, SFX_STYLE_FAMILY_PAGE );
1741 :
1742 : OSL_ENSURE( pStyleSheet, "PageStyle not found! :-/" );
1743 :
1744 36 : if ( pStyleSheet )
1745 : {
1746 36 : SfxItemSet& rStyleSet = pStyleSheet->GetItemSet();
1747 36 : GetPageOnFromPageStyleSet( &rStyleSet, nCurTab, bHeaderOn, bFooterOn );
1748 :
1749 36 : if ( !bHeaderOn && !bFooterOn )
1750 0 : rSet.DisableItem( nWhich );
1751 36 : }
1752 : }
1753 36 : break;
1754 : }
1755 :
1756 1004 : nWhich = aIter.NextWhich();
1757 444 : }
1758 444 : }
1759 :
1760 268 : void ScDocShell::GetState( SfxItemSet &rSet )
1761 : {
1762 268 : bool bTabView = GetBestViewShell(true) != NULL;
1763 :
1764 268 : SfxWhichIter aIter(rSet);
1765 536 : for (sal_uInt16 nWhich = aIter.FirstWhich(); nWhich; nWhich = aIter.NextWhich())
1766 : {
1767 268 : if (!bTabView)
1768 : {
1769 26 : rSet.DisableItem(nWhich);
1770 26 : continue;
1771 : }
1772 :
1773 242 : switch (nWhich)
1774 : {
1775 : case FID_AUTO_CALC:
1776 0 : if ( aDocument.GetHardRecalcState() )
1777 0 : rSet.DisableItem( nWhich );
1778 : else
1779 0 : rSet.Put( SfxBoolItem( nWhich, aDocument.GetAutoCalc() ) );
1780 0 : break;
1781 :
1782 : case FID_CHG_RECORD:
1783 0 : if ( IsDocShared() )
1784 0 : rSet.DisableItem( nWhich );
1785 : else
1786 : rSet.Put( SfxBoolItem( nWhich,
1787 0 : aDocument.GetChangeTrack() != NULL ) );
1788 0 : break;
1789 :
1790 : case SID_CHG_PROTECT:
1791 : {
1792 0 : ScChangeTrack* pChangeTrack = aDocument.GetChangeTrack();
1793 0 : if ( pChangeTrack && !IsDocShared() )
1794 : rSet.Put( SfxBoolItem( nWhich,
1795 0 : pChangeTrack->IsProtected() ) );
1796 : else
1797 0 : rSet.DisableItem( nWhich );
1798 : }
1799 0 : break;
1800 :
1801 : case SID_DOCUMENT_COMPARE:
1802 : {
1803 0 : if ( IsDocShared() )
1804 : {
1805 0 : rSet.DisableItem( nWhich );
1806 : }
1807 : }
1808 0 : break;
1809 :
1810 : // Wenn eine Formel editiert wird, muss FID_RECALC auf jeden Fall enabled sein.
1811 : // Recalc fuer das Doc war mal wegen eines Bugs disabled, wenn AutoCalc an war,
1812 : // ist jetzt wegen eines anderen Bugs aber auch immer enabled.
1813 :
1814 : case SID_TABLES_COUNT:
1815 0 : rSet.Put( SfxInt16Item( nWhich, aDocument.GetTableCount() ) );
1816 0 : break;
1817 :
1818 : case SID_ATTR_YEAR2000 :
1819 : rSet.Put( SfxUInt16Item( nWhich,
1820 0 : aDocument.GetDocOptions().GetYear2000() ) );
1821 0 : break;
1822 :
1823 : case SID_SHARE_DOC:
1824 : {
1825 0 : if ( IsReadOnly() )
1826 : {
1827 0 : rSet.DisableItem( nWhich );
1828 : }
1829 : }
1830 0 : break;
1831 :
1832 : default:
1833 : {
1834 : }
1835 242 : break;
1836 : }
1837 268 : }
1838 268 : }
1839 :
1840 0 : void ScDocShell::GetSbxState( SfxItemSet &rSet )
1841 : {
1842 : // SID_SC_SELECTION (Selection),
1843 : // SID_SC_ACTIVECELL (ActiveCell),
1844 : // SID_SC_ACTIVETAB (ActiveTable),
1845 : // SID_TABLES_GET (Tables),
1846 : // SID_PIVOT_GET (DataPilotTables) - removed (old Basic)
1847 :
1848 : // Wenn hier Slots von der View-Shell executed werden, muss auch der
1849 : // GetState weitergeleitet werden!
1850 :
1851 0 : ScTabViewShell* pVisibleSh = GetBestViewShell(); // sichtbare View
1852 0 : if ( pVisibleSh )
1853 0 : pVisibleSh->GetState( rSet );
1854 0 : }
1855 :
1856 12 : void ScDocShell::Draw( OutputDevice* pDev, const JobSetup & /* rSetup */, sal_uInt16 nAspect )
1857 : {
1858 :
1859 12 : SCTAB nVisTab = aDocument.GetVisibleTab();
1860 12 : if (!aDocument.HasTable(nVisTab))
1861 12 : return;
1862 :
1863 12 : ComplexTextLayoutMode nOldLayoutMode = pDev->GetLayoutMode();
1864 12 : pDev->SetLayoutMode( TEXT_LAYOUT_DEFAULT ); // even if it's the same, to get the metafile action
1865 :
1866 12 : if ( nAspect == ASPECT_THUMBNAIL )
1867 : {
1868 12 : Rectangle aBoundRect = GetVisArea( ASPECT_THUMBNAIL );
1869 12 : ScViewData aTmpData( this, NULL );
1870 12 : aTmpData.SetTabNo(nVisTab);
1871 12 : SnapVisArea( aBoundRect );
1872 12 : aTmpData.SetScreen( aBoundRect );
1873 12 : ScPrintFunc::DrawToDev( &aDocument, pDev, 1.0, aBoundRect, &aTmpData, true );
1874 : }
1875 : else
1876 : {
1877 0 : Rectangle aBoundRect = SfxObjectShell::GetVisArea();
1878 0 : ScViewData aTmpData( this, NULL );
1879 0 : aTmpData.SetTabNo(nVisTab);
1880 0 : SnapVisArea( aBoundRect );
1881 0 : aTmpData.SetScreen( aBoundRect );
1882 0 : ScPrintFunc::DrawToDev( &aDocument, pDev, 1.0, aBoundRect, &aTmpData, true );
1883 : }
1884 :
1885 12 : pDev->SetLayoutMode( nOldLayoutMode );
1886 : }
1887 :
1888 4182 : Rectangle ScDocShell::GetVisArea( sal_uInt16 nAspect ) const
1889 : {
1890 4182 : SfxObjectCreateMode eShellMode = GetCreateMode();
1891 4182 : if ( eShellMode == SFX_CREATE_MODE_ORGANIZER )
1892 : {
1893 : // ohne Inhalte wissen wir auch nicht, wie gross die Inhalte sind
1894 : // leeres Rechteck zurueckgeben, das wird dann nach dem Laden berechnet
1895 0 : return Rectangle();
1896 : }
1897 :
1898 4182 : if( nAspect == ASPECT_THUMBNAIL )
1899 : {
1900 48 : Rectangle aArea( 0,0, SC_PREVIEW_SIZE_X,SC_PREVIEW_SIZE_Y );
1901 48 : bool bNegativePage = aDocument.IsNegativePage( aDocument.GetVisibleTab() );
1902 48 : if ( bNegativePage )
1903 0 : ScDrawLayer::MirrorRectRTL( aArea );
1904 48 : SnapVisArea( aArea );
1905 48 : return aArea;
1906 : }
1907 4134 : else if( nAspect == ASPECT_CONTENT && eShellMode != SFX_CREATE_MODE_EMBEDDED )
1908 : {
1909 : // Visarea holen wie nach Load
1910 :
1911 2928 : SCTAB nVisTab = aDocument.GetVisibleTab();
1912 2928 : if (!aDocument.HasTable(nVisTab))
1913 : {
1914 0 : nVisTab = 0;
1915 0 : ((ScDocShell*)this)->aDocument.SetVisibleTab(nVisTab);
1916 : }
1917 : SCCOL nStartCol;
1918 : SCROW nStartRow;
1919 2928 : aDocument.GetDataStart( nVisTab, nStartCol, nStartRow );
1920 : SCCOL nEndCol;
1921 : SCROW nEndRow;
1922 2928 : aDocument.GetPrintArea( nVisTab, nEndCol, nEndRow );
1923 2928 : if (nStartCol>nEndCol)
1924 1374 : nStartCol = nEndCol;
1925 2928 : if (nStartRow>nEndRow)
1926 1374 : nStartRow = nEndRow;
1927 : Rectangle aNewArea = ((ScDocument&)aDocument)
1928 2928 : .GetMMRect( nStartCol,nStartRow, nEndCol,nEndRow, nVisTab );
1929 : //TODO/LATER: different methods for setting VisArea?!
1930 2928 : ((ScDocShell*)this)->SfxObjectShell::SetVisArea( aNewArea );
1931 2928 : return aNewArea;
1932 : }
1933 : else
1934 1206 : return SfxObjectShell::GetVisArea( nAspect );
1935 : }
1936 :
1937 : namespace {
1938 :
1939 1800 : void SnapHor( const ScDocument& rDoc, SCTAB nTab, long& rVal, SCCOL& rStartCol )
1940 : {
1941 1800 : SCCOL nCol = 0;
1942 1800 : long nTwips = (long) (rVal / HMM_PER_TWIPS);
1943 1800 : long nSnap = 0;
1944 8484 : while ( nCol<MAXCOL )
1945 : {
1946 6684 : long nAdd = rDoc.GetColWidth(nCol, nTab);
1947 6684 : if ( nSnap + nAdd/2 < nTwips || nCol < rStartCol )
1948 : {
1949 4884 : nSnap += nAdd;
1950 4884 : ++nCol;
1951 : }
1952 : else
1953 : break;
1954 : }
1955 1800 : rVal = (long) ( nSnap * HMM_PER_TWIPS );
1956 1800 : rStartCol = nCol;
1957 1800 : }
1958 :
1959 1800 : void SnapVer( const ScDocument& rDoc, SCTAB nTab, long& rVal, SCROW& rStartRow )
1960 : {
1961 1800 : SCROW nRow = 0;
1962 1800 : long nTwips = (long) (rVal / HMM_PER_TWIPS);
1963 1800 : long nSnap = 0;
1964 :
1965 1800 : bool bFound = false;
1966 404290 : for (SCROW i = nRow; i <= MAXROW; ++i)
1967 : {
1968 : SCROW nLastRow;
1969 404290 : if (rDoc.RowHidden(i, nTab, NULL, &nLastRow))
1970 : {
1971 8 : i = nLastRow;
1972 8 : continue;
1973 : }
1974 :
1975 404282 : nRow = i;
1976 404282 : long nAdd = rDoc.GetRowHeight(i, nTab);
1977 404282 : if ( nSnap + nAdd/2 < nTwips || nRow < rStartRow )
1978 : {
1979 402482 : nSnap += nAdd;
1980 402482 : ++nRow;
1981 : }
1982 : else
1983 : {
1984 1800 : bFound = true;
1985 1800 : break;
1986 : }
1987 : }
1988 1800 : if (!bFound)
1989 0 : nRow = MAXROW; // all hidden down to the bottom
1990 :
1991 1800 : rVal = (long) ( nSnap * HMM_PER_TWIPS );
1992 1800 : rStartRow = nRow;
1993 1800 : }
1994 :
1995 : }
1996 :
1997 900 : void ScDocShell::SnapVisArea( Rectangle& rRect ) const
1998 : {
1999 900 : SCTAB nTab = aDocument.GetVisibleTab();
2000 900 : bool bNegativePage = aDocument.IsNegativePage( nTab );
2001 900 : if ( bNegativePage )
2002 0 : ScDrawLayer::MirrorRectRTL( rRect ); // calculate with positive (LTR) values
2003 :
2004 900 : SCCOL nCol = 0;
2005 900 : SnapHor( aDocument, nTab, rRect.Left(), nCol );
2006 900 : ++nCol; // mindestens eine Spalte
2007 900 : SnapHor( aDocument, nTab, rRect.Right(), nCol );
2008 :
2009 900 : SCROW nRow = 0;
2010 900 : SnapVer( aDocument, nTab, rRect.Top(), nRow );
2011 900 : ++nRow; // mindestens eine Zeile
2012 900 : SnapVer( aDocument, nTab, rRect.Bottom(), nRow );
2013 :
2014 900 : if ( bNegativePage )
2015 0 : ScDrawLayer::MirrorRectRTL( rRect ); // back to real rectangle
2016 900 : }
2017 :
2018 36 : void ScDocShell::GetPageOnFromPageStyleSet( const SfxItemSet* pStyleSet,
2019 : SCTAB nCurTab,
2020 : bool& rbHeader,
2021 : bool& rbFooter )
2022 : {
2023 36 : if ( !pStyleSet )
2024 : {
2025 0 : ScStyleSheetPool* pStylePool = aDocument.GetStyleSheetPool();
2026 : SfxStyleSheetBase* pStyleSheet = pStylePool->
2027 : Find( aDocument.GetPageStyle( nCurTab ),
2028 0 : SFX_STYLE_FAMILY_PAGE );
2029 :
2030 : OSL_ENSURE( pStyleSheet, "PageStyle not found! :-/" );
2031 :
2032 0 : if ( pStyleSheet )
2033 0 : pStyleSet = &pStyleSheet->GetItemSet();
2034 : else
2035 0 : rbHeader = rbFooter = false;
2036 : }
2037 :
2038 : OSL_ENSURE( pStyleSet, "PageStyle-Set not found! :-(" );
2039 36 : if (!pStyleSet)
2040 36 : return;
2041 :
2042 36 : const SvxSetItem* pSetItem = NULL;
2043 36 : const SfxItemSet* pSet = NULL;
2044 :
2045 36 : pSetItem = static_cast<const SvxSetItem*>( &pStyleSet->Get( ATTR_PAGE_HEADERSET ) );
2046 36 : pSet = &pSetItem->GetItemSet();
2047 36 : rbHeader = static_cast<const SfxBoolItem&>(pSet->Get(ATTR_PAGE_ON)).GetValue();
2048 :
2049 36 : pSetItem = static_cast<const SvxSetItem*>( &pStyleSet->Get( ATTR_PAGE_FOOTERSET ) );
2050 36 : pSet = &pSetItem->GetItemSet();
2051 36 : rbFooter = static_cast<const SfxBoolItem&>(pSet->Get(ATTR_PAGE_ON)).GetValue();
2052 : }
2053 :
2054 0 : bool ScDocShell::DdeGetData( const OUString& rItem,
2055 : const OUString& rMimeType,
2056 : ::com::sun::star::uno::Any & rValue )
2057 : {
2058 0 : if( FORMAT_STRING == SotExchange::GetFormatIdFromMimeType( rMimeType ) )
2059 : {
2060 0 : if( rItem.equalsIgnoreAsciiCase( "Format" ) )
2061 : {
2062 : OString aFmtByte(OUStringToOString(aDdeTextFmt,
2063 0 : osl_getThreadTextEncoding()));
2064 0 : rValue <<= ::com::sun::star::uno::Sequence< sal_Int8 >(
2065 0 : (const sal_Int8*)aFmtByte.getStr(),
2066 0 : aFmtByte.getLength() + 1 );
2067 0 : return true;
2068 : }
2069 0 : ScImportExport aObj( &aDocument, rItem );
2070 0 : if ( !aObj.IsRef() )
2071 0 : return false; // ungueltiger Bereich
2072 :
2073 0 : if( aDdeTextFmt[0] == 'F' )
2074 0 : aObj.SetFormulas( true );
2075 0 : if( aDdeTextFmt == "SYLK" ||
2076 0 : aDdeTextFmt == "FSYLK" )
2077 : {
2078 0 : OString aData;
2079 0 : if( aObj.ExportByteString( aData, osl_getThreadTextEncoding(),
2080 0 : SOT_FORMATSTR_ID_SYLK ) )
2081 : {
2082 0 : rValue <<= ::com::sun::star::uno::Sequence< sal_Int8 >(
2083 0 : (const sal_Int8*)aData.getStr(),
2084 0 : aData.getLength() + 1 );
2085 0 : return true;
2086 : }
2087 : else
2088 0 : return false;
2089 : }
2090 0 : if( aDdeTextFmt == "CSV" ||
2091 0 : aDdeTextFmt == "FCSV" )
2092 0 : aObj.SetSeparator( ',' );
2093 0 : aObj.SetExportTextOptions( ScExportTextOptions( ScExportTextOptions::ToSpace, 0, false ) );
2094 0 : return aObj.ExportData( rMimeType, rValue );
2095 : }
2096 :
2097 0 : ScImportExport aObj( &aDocument, rItem );
2098 0 : aObj.SetExportTextOptions( ScExportTextOptions( ScExportTextOptions::ToSpace, 0, false ) );
2099 0 : return aObj.IsRef() && aObj.ExportData( rMimeType, rValue );
2100 : }
2101 :
2102 0 : bool ScDocShell::DdeSetData( const OUString& rItem,
2103 : const OUString& rMimeType,
2104 : const ::com::sun::star::uno::Any & rValue )
2105 : {
2106 0 : if( FORMAT_STRING == SotExchange::GetFormatIdFromMimeType( rMimeType ))
2107 : {
2108 0 : if( rItem.equalsIgnoreAsciiCase( "Format" ) )
2109 : {
2110 0 : if ( ScByteSequenceToString::GetString( aDdeTextFmt, rValue, osl_getThreadTextEncoding() ) )
2111 : {
2112 0 : aDdeTextFmt = aDdeTextFmt.toAsciiUpperCase();
2113 0 : return true;
2114 : }
2115 0 : return false;
2116 : }
2117 0 : ScImportExport aObj( &aDocument, rItem );
2118 0 : if( aDdeTextFmt[0] == 'F' )
2119 0 : aObj.SetFormulas( true );
2120 0 : if( aDdeTextFmt == "SYLK" ||
2121 0 : aDdeTextFmt == "FSYLK" )
2122 : {
2123 0 : OUString aData;
2124 0 : if ( ScByteSequenceToString::GetString( aData, rValue, osl_getThreadTextEncoding() ) )
2125 : {
2126 0 : return aObj.ImportString( aData, SOT_FORMATSTR_ID_SYLK );
2127 : }
2128 0 : return false;
2129 : }
2130 0 : if( aDdeTextFmt == "CSV" ||
2131 0 : aDdeTextFmt == "FCSV" )
2132 0 : aObj.SetSeparator( ',' );
2133 0 : return aObj.ImportData( rMimeType, rValue );
2134 : }
2135 0 : ScImportExport aObj( &aDocument, rItem );
2136 0 : return aObj.IsRef() && aObj.ImportData( rMimeType, rValue );
2137 : }
2138 :
2139 10 : ::sfx2::SvLinkSource* ScDocShell::DdeCreateLinkSource( const OUString& rItem )
2140 : {
2141 : // only check for valid item string - range is parsed again in ScServerObject ctor
2142 :
2143 : // named range?
2144 10 : OUString aPos = rItem;
2145 10 : ScRangeName* pRange = aDocument.GetRangeName();
2146 10 : if( pRange )
2147 : {
2148 10 : const ScRangeData* pData = pRange->findByUpperName(ScGlobal::pCharClass->uppercase(aPos));
2149 10 : if (pData)
2150 : {
2151 0 : if( pData->HasType( RT_REFAREA )
2152 0 : || pData->HasType( RT_ABSAREA )
2153 0 : || pData->HasType( RT_ABSPOS ) )
2154 0 : pData->GetSymbol( aPos ); // continue with the name's contents
2155 : }
2156 : }
2157 :
2158 : // Address in DDE function must be always parsed as CONV_OOO so that it
2159 : // would always work regardless of current address convension. We do this
2160 : // because the address item in a DDE entry is *not* normalized when saved
2161 : // into ODF.
2162 10 : ScRange aRange;
2163 50 : bool bValid = ( (aRange.Parse(aPos, &aDocument, formula::FormulaGrammar::CONV_OOO ) & SCA_VALID) ||
2164 30 : (aRange.aStart.Parse(aPos, &aDocument, formula::FormulaGrammar::CONV_OOO) & SCA_VALID) );
2165 :
2166 10 : ScServerObject* pObj = NULL; // NULL = error
2167 10 : if ( bValid )
2168 10 : pObj = new ScServerObject( this, rItem );
2169 :
2170 : // GetLinkManager()->InsertServer() is in the ScServerObject ctor
2171 :
2172 10 : return pObj;
2173 : }
2174 :
2175 1656 : ScViewData* ScDocShell::GetViewData()
2176 : {
2177 1656 : SfxViewShell* pCur = SfxViewShell::Current();
2178 1656 : ScTabViewShell* pViewSh = PTR_CAST(ScTabViewShell,pCur);
2179 1656 : return pViewSh ? &pViewSh->GetViewData() : NULL;
2180 : }
2181 :
2182 1602 : SCTAB ScDocShell::GetCurTab()
2183 : {
2184 : //! this must be made non-static and use a ViewShell from this document!
2185 :
2186 1602 : ScViewData* pViewData = GetViewData();
2187 :
2188 1602 : return pViewData ? pViewData->GetTabNo() : static_cast<SCTAB>(0);
2189 : }
2190 :
2191 69716 : ScTabViewShell* ScDocShell::GetBestViewShell( bool bOnlyVisible )
2192 : {
2193 69716 : ScTabViewShell* pViewSh = ScTabViewShell::GetActiveViewShell();
2194 : // falsches Doc?
2195 69716 : if( pViewSh && pViewSh->GetViewData().GetDocShell() != this )
2196 1762 : pViewSh = NULL;
2197 69716 : if( !pViewSh )
2198 : {
2199 : // 1. ViewShell suchen
2200 51872 : SfxViewFrame* pFrame = SfxViewFrame::GetFirst( this, bOnlyVisible );
2201 51872 : if( pFrame )
2202 : {
2203 324 : SfxViewShell* p = pFrame->GetViewShell();
2204 324 : pViewSh = PTR_CAST(ScTabViewShell,p);
2205 : }
2206 : }
2207 69716 : return pViewSh;
2208 : }
2209 :
2210 68394 : SfxBindings* ScDocShell::GetViewBindings()
2211 : {
2212 : // used to invalidate slots after changes to this document
2213 :
2214 68394 : SfxViewShell* pViewSh = GetBestViewShell();
2215 68394 : if (pViewSh)
2216 17144 : return &pViewSh->GetViewFrame()->GetBindings();
2217 : else
2218 51250 : return NULL;
2219 : }
2220 :
2221 0 : ScDocShell* ScDocShell::GetShellByNum( sal_uInt16 nDocNo ) // static
2222 : {
2223 0 : ScDocShell* pFound = NULL;
2224 0 : SfxObjectShell* pShell = SfxObjectShell::GetFirst();
2225 0 : sal_uInt16 nShellCnt = 0;
2226 :
2227 0 : while ( pShell && !pFound )
2228 : {
2229 0 : if ( pShell->Type() == TYPE(ScDocShell) )
2230 : {
2231 0 : if ( nShellCnt == nDocNo )
2232 0 : pFound = static_cast<ScDocShell*>(pShell);
2233 : else
2234 0 : ++nShellCnt;
2235 : }
2236 0 : pShell = SfxObjectShell::GetNext( *pShell );
2237 : }
2238 :
2239 0 : return pFound;
2240 : }
2241 :
2242 0 : IMPL_LINK( ScDocShell, DialogClosedHdl, sfx2::FileDialogHelper*, _pFileDlg )
2243 : {
2244 : OSL_ENSURE( _pFileDlg, "ScDocShell::DialogClosedHdl(): no file dialog" );
2245 : OSL_ENSURE( pImpl->pDocInserter, "ScDocShell::DialogClosedHdl(): no document inserter" );
2246 :
2247 0 : if ( ERRCODE_NONE == _pFileDlg->GetError() )
2248 : {
2249 0 : sal_uInt16 nSlot = pImpl->pRequest->GetSlot();
2250 0 : SfxMedium* pMed = pImpl->pDocInserter->CreateMedium();
2251 : // #i87094# If a .odt was selected pMed is NULL.
2252 0 : if (pMed)
2253 : {
2254 0 : pImpl->pRequest->AppendItem( SfxStringItem( SID_FILE_NAME, pMed->GetName() ) );
2255 0 : if ( SID_DOCUMENT_COMPARE == nSlot )
2256 : {
2257 0 : if ( pMed->GetFilter() )
2258 : pImpl->pRequest->AppendItem(
2259 0 : SfxStringItem( SID_FILTER_NAME, pMed->GetFilter()->GetFilterName() ) );
2260 0 : OUString sOptions = ScDocumentLoader::GetOptions( *pMed );
2261 0 : if ( !sOptions.isEmpty() )
2262 0 : pImpl->pRequest->AppendItem( SfxStringItem( SID_FILE_FILTEROPTIONS, sOptions ) );
2263 : }
2264 0 : const SfxPoolItem* pItem = NULL;
2265 0 : SfxItemSet* pSet = pMed->GetItemSet();
2266 0 : if ( pSet &&
2267 0 : pSet->GetItemState( SID_VERSION, true, &pItem ) == SfxItemState::SET &&
2268 0 : pItem->ISA( SfxInt16Item ) )
2269 : {
2270 0 : pImpl->pRequest->AppendItem( *pItem );
2271 : }
2272 :
2273 0 : Execute( *(pImpl->pRequest) );
2274 : }
2275 : }
2276 :
2277 0 : pImpl->bIgnoreLostRedliningWarning = false;
2278 0 : return 0;
2279 : }
2280 :
2281 : #if HAVE_FEATURE_MULTIUSER_ENVIRONMENT
2282 :
2283 0 : void ScDocShell::EnableSharedSettings( bool bEnable )
2284 : {
2285 0 : SetDocumentModified();
2286 :
2287 0 : if ( bEnable )
2288 : {
2289 0 : aDocument.EndChangeTracking();
2290 0 : aDocument.StartChangeTracking();
2291 :
2292 : // hide accept or reject changes dialog
2293 0 : sal_uInt16 nId = ScAcceptChgDlgWrapper::GetChildWindowId();
2294 0 : SfxViewFrame* pViewFrame = SfxViewFrame::Current();
2295 0 : if ( pViewFrame && pViewFrame->HasChildWindow( nId ) )
2296 : {
2297 0 : pViewFrame->ToggleChildWindow( nId );
2298 0 : SfxBindings* pBindings = GetViewBindings();
2299 0 : if ( pBindings )
2300 : {
2301 0 : pBindings->Invalidate( FID_CHG_ACCEPT );
2302 : }
2303 : }
2304 : }
2305 : else
2306 : {
2307 0 : aDocument.EndChangeTracking();
2308 : }
2309 :
2310 0 : ScChangeViewSettings aChangeViewSet;
2311 0 : aChangeViewSet.SetShowChanges( false );
2312 0 : aDocument.SetChangeViewSettings( aChangeViewSet );
2313 0 : }
2314 :
2315 0 : uno::Reference< frame::XModel > ScDocShell::LoadSharedDocument()
2316 : {
2317 0 : uno::Reference< frame::XModel > xModel;
2318 : try
2319 : {
2320 0 : SC_MOD()->SetInSharedDocLoading( true );
2321 0 : uno::Reference< frame::XDesktop2 > xLoader = frame::Desktop::create( ::comphelper::getProcessComponentContext() );
2322 0 : uno::Sequence < beans::PropertyValue > aArgs( 1 );
2323 0 : aArgs[0].Name = "Hidden";
2324 0 : aArgs[0].Value <<= sal_True;
2325 :
2326 0 : if ( GetMedium() )
2327 : {
2328 0 : SFX_ITEMSET_ARG( GetMedium()->GetItemSet(), pPasswordItem, SfxStringItem, SID_PASSWORD, false);
2329 0 : if ( pPasswordItem && !pPasswordItem->GetValue().isEmpty() )
2330 : {
2331 0 : aArgs.realloc( 2 );
2332 0 : aArgs[1].Name = "Password";
2333 0 : aArgs[1].Value <<= pPasswordItem->GetValue();
2334 : }
2335 : }
2336 :
2337 : xModel.set(
2338 0 : xLoader->loadComponentFromURL( GetSharedFileURL(), OUString( "_blank" ), 0, aArgs ),
2339 0 : uno::UNO_QUERY_THROW );
2340 0 : SC_MOD()->SetInSharedDocLoading( false );
2341 : }
2342 0 : catch ( uno::Exception& )
2343 : {
2344 : OSL_FAIL( "ScDocShell::LoadSharedDocument(): caught exception\n" );
2345 0 : SC_MOD()->SetInSharedDocLoading( false );
2346 : try
2347 : {
2348 0 : uno::Reference< util::XCloseable > xClose( xModel, uno::UNO_QUERY_THROW );
2349 0 : xClose->close( sal_True );
2350 0 : return uno::Reference< frame::XModel >();
2351 : }
2352 0 : catch ( uno::Exception& )
2353 : {
2354 0 : return uno::Reference< frame::XModel >();
2355 : }
2356 : }
2357 0 : return xModel;
2358 228 : }
2359 :
2360 : #endif
2361 :
2362 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|