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_mpl.h>
21 :
22 : #include "scitems.hxx"
23 : #include <vcl/msgbox.hxx>
24 : #include <sfx2/childwin.hxx>
25 : #include <sfx2/dispatch.hxx>
26 :
27 : #include "tabvwsh.hxx"
28 : #include "sc.hrc"
29 : #include "globstr.hrc"
30 : #include "global.hxx"
31 : #include "scmod.hxx"
32 : #include "docsh.hxx"
33 : #include "document.hxx"
34 : #include "uiitems.hxx"
35 : #include "pivot.hxx"
36 : #include "namedlg.hxx"
37 : #include "namedefdlg.hxx"
38 : #include "solvrdlg.hxx"
39 : #include "optsolver.hxx"
40 : #include "tabopdlg.hxx"
41 : #include "autoform.hxx"
42 : #include "autofmt.hxx"
43 : #include "consdlg.hxx"
44 : #include "filtdlg.hxx"
45 : #include "dbnamdlg.hxx"
46 : #include "areasdlg.hxx"
47 : #include "rangeutl.hxx"
48 : #include "crnrdlg.hxx"
49 : #include "formula.hxx"
50 : #include "formulacell.hxx"
51 : #include "acredlin.hxx"
52 : #include "highred.hxx"
53 : #include "simpref.hxx"
54 : #include "funcdesc.hxx"
55 : #include "dpobject.hxx"
56 : #include "markdata.hxx"
57 : #include "reffact.hxx"
58 : #include "condformatdlg.hxx"
59 : #include "xmlsourcedlg.hxx"
60 :
61 : #include "RandomNumberGeneratorDialog.hxx"
62 : #include "SamplingDialog.hxx"
63 : #include "DescriptiveStatisticsDialog.hxx"
64 : #include "AnalysisOfVarianceDialog.hxx"
65 : #include "CorrelationDialog.hxx"
66 : #include "CovarianceDialog.hxx"
67 : #include "ExponentialSmoothingDialog.hxx"
68 : #include "MovingAverageDialog.hxx"
69 : #include "TTestDialog.hxx"
70 : #include "FTestDialog.hxx"
71 :
72 : #include "PivotLayoutDialog.hxx"
73 :
74 : #include <config_orcus.h>
75 :
76 0 : void ScTabViewShell::SetCurRefDlgId( sal_uInt16 nNew )
77 : {
78 : // CurRefDlgId is stored in ScModule to find if a ref dialog is open,
79 : // and in the view to identify the view that has opened the dialog
80 0 : nCurRefDlgId = nNew;
81 0 : }
82 :
83 : //ugly hack to call Define Name from Manage Names
84 0 : void ScTabViewShell::SwitchBetweenRefDialogs(SfxModelessDialog* pDialog)
85 : {
86 0 : sal_uInt16 nSlotId = SC_MOD()->GetCurRefDlgId();
87 0 : if (nSlotId == FID_DEFINE_NAME)
88 : {
89 0 : mbInSwitch = true;
90 0 : static_cast<ScNameDlg*>(pDialog)->GetRangeNames(maRangeMap);
91 0 : static_cast<ScNameDlg*>(pDialog)->Close();
92 0 : sal_uInt16 nId = ScNameDefDlgWrapper::GetChildWindowId();
93 0 : SfxViewFrame* pViewFrm = GetViewFrame();
94 0 : SfxChildWindow* pWnd = pViewFrm->GetChildWindow( nId );
95 :
96 0 : SC_MOD()->SetRefDialog( nId, pWnd ? false : sal_True );
97 : }
98 0 : else if( nSlotId == FID_ADD_NAME )
99 : {
100 0 : static_cast<ScNameDefDlg*>(pDialog)->GetNewData(maName, maScope);
101 0 : static_cast<ScNameDlg*>(pDialog)->Close();
102 0 : sal_uInt16 nId = ScNameDlgWrapper::GetChildWindowId();
103 0 : SfxViewFrame* pViewFrm = GetViewFrame();
104 0 : SfxChildWindow* pWnd = pViewFrm->GetChildWindow( nId );
105 :
106 0 : SC_MOD()->SetRefDialog( nId, pWnd ? false : sal_True );
107 : }
108 : else
109 : {
110 :
111 : }
112 0 : }
113 :
114 0 : SfxModelessDialog* ScTabViewShell::CreateRefDialog(
115 : SfxBindings* pB, SfxChildWindow* pCW, SfxChildWinInfo* pInfo,
116 : vcl::Window* pParent, sal_uInt16 nSlotId )
117 : {
118 : // Dialog nur aufmachen, wenn ueber ScModule::SetRefDialog gerufen, damit
119 : // z.B. nach einem Absturz offene Ref-Dialoge nicht wiederkommen (#42341#).
120 :
121 0 : if ( SC_MOD()->GetCurRefDlgId() != nSlotId )
122 0 : return NULL;
123 :
124 0 : if ( nCurRefDlgId != nSlotId )
125 : {
126 : // the dialog has been opened in a different view
127 : // -> lock the dispatcher for this view (modal mode)
128 :
129 0 : GetViewData().GetDispatcher().Lock( true ); // lock is reset when closing dialog
130 0 : return NULL;
131 : }
132 :
133 0 : SfxModelessDialog* pResult = 0;
134 :
135 0 : if(pCW)
136 0 : pCW->SetHideNotDelete(true);
137 :
138 0 : ScDocument* pDoc = GetViewData().GetDocument();
139 :
140 0 : switch( nSlotId )
141 : {
142 : case FID_DEFINE_NAME:
143 : {
144 0 : if (!mbInSwitch)
145 : {
146 0 : pResult = new ScNameDlg( pB, pCW, pParent, &GetViewData(),
147 0 : ScAddress( GetViewData().GetCurX(),
148 0 : GetViewData().GetCurY(),
149 0 : GetViewData().GetTabNo() ) );
150 : }
151 : else
152 : {
153 0 : pResult = new ScNameDlg( pB, pCW, pParent, &GetViewData(),
154 0 : ScAddress( GetViewData().GetCurX(),
155 0 : GetViewData().GetCurY(),
156 0 : GetViewData().GetTabNo() ), &maRangeMap);
157 0 : static_cast<ScNameDlg*>(pResult)->SetEntry( maName, maScope);
158 0 : mbInSwitch = false;
159 : }
160 : }
161 0 : break;
162 :
163 : case FID_ADD_NAME:
164 : {
165 0 : if (!mbInSwitch)
166 : {
167 0 : std::map<OUString, ScRangeName*> aRangeMap;
168 0 : pDoc->GetRangeNameMap(aRangeMap);
169 0 : pResult = new ScNameDefDlg( pB, pCW, pParent, &GetViewData(), aRangeMap,
170 0 : ScAddress( GetViewData().GetCurX(),
171 0 : GetViewData().GetCurY(),
172 0 : GetViewData().GetTabNo() ), true );
173 : }
174 : else
175 : {
176 0 : std::map<OUString, ScRangeName*> aRangeMap;
177 0 : for (boost::ptr_map<OUString, ScRangeName>::iterator itr = maRangeMap.begin();
178 0 : itr != maRangeMap.end(); ++itr)
179 : {
180 0 : aRangeMap.insert(std::pair<OUString, ScRangeName*>(itr->first, itr->second));
181 : }
182 0 : pResult = new ScNameDefDlg( pB, pCW, pParent, &GetViewData(), aRangeMap,
183 0 : ScAddress( GetViewData().GetCurX(),
184 0 : GetViewData().GetCurY(),
185 0 : GetViewData().GetTabNo() ), false );
186 : }
187 : }
188 0 : break;
189 :
190 : case SID_DEFINE_COLROWNAMERANGES:
191 : {
192 0 : pResult = new ScColRowNameRangesDlg( pB, pCW, pParent, &GetViewData() );
193 : }
194 0 : break;
195 :
196 : case SID_OPENDLG_CONSOLIDATE:
197 : {
198 0 : SfxItemSet aArgSet( GetPool(),
199 : SCITEM_CONSOLIDATEDATA,
200 0 : SCITEM_CONSOLIDATEDATA );
201 :
202 : const ScConsolidateParam* pDlgData =
203 0 : pDoc->GetConsolidateDlgData();
204 :
205 0 : if ( !pDlgData )
206 : {
207 0 : ScConsolidateParam aConsParam;
208 : SCCOL nStartCol, nEndCol;
209 : SCROW nStartRow, nEndRow;
210 : SCTAB nStartTab, nEndTab;
211 :
212 0 : GetViewData().GetSimpleArea( nStartCol, nStartRow, nStartTab,
213 0 : nEndCol, nEndRow, nEndTab );
214 :
215 0 : PutInOrder( nStartCol, nEndCol );
216 0 : PutInOrder( nStartRow, nEndRow );
217 0 : PutInOrder( nStartTab, nEndTab );
218 :
219 0 : aConsParam.nCol = nStartCol;
220 0 : aConsParam.nRow = nStartRow;
221 0 : aConsParam.nTab = nStartTab;
222 :
223 : aArgSet.Put( ScConsolidateItem( SCITEM_CONSOLIDATEDATA,
224 0 : &aConsParam ) );
225 : }
226 : else
227 : {
228 0 : aArgSet.Put( ScConsolidateItem( SCITEM_CONSOLIDATEDATA, pDlgData ) );
229 : }
230 0 : pResult = new ScConsolidateDlg( pB, pCW, pParent, aArgSet );
231 : }
232 0 : break;
233 :
234 : case SID_DEFINE_DBNAME:
235 : {
236 : // wenn auf einem bestehenden Bereich aufgerufen, den markieren
237 0 : GetDBData( true, SC_DB_OLD );
238 0 : const ScMarkData& rMark = GetViewData().GetMarkData();
239 0 : if ( !rMark.IsMarked() && !rMark.IsMultiMarked() )
240 0 : MarkDataArea( false );
241 :
242 0 : pResult = new ScDbNameDlg( pB, pCW, pParent, &GetViewData() );
243 : }
244 0 : break;
245 :
246 : case SID_SPECIAL_FILTER:
247 : {
248 0 : ScQueryParam aQueryParam;
249 0 : SfxItemSet aArgSet( GetPool(),
250 : SCITEM_QUERYDATA,
251 0 : SCITEM_QUERYDATA );
252 :
253 0 : ScDBData* pDBData = GetDBData(false, SC_DB_MAKE, SC_DBSEL_ROW_DOWN);
254 0 : pDBData->ExtendDataArea(pDoc);
255 0 : pDBData->GetQueryParam( aQueryParam );
256 :
257 0 : ScRange aArea;
258 0 : pDBData->GetArea(aArea);
259 0 : MarkRange(aArea, false);
260 :
261 0 : ScQueryItem aItem( SCITEM_QUERYDATA, &GetViewData(), &aQueryParam );
262 0 : ScRange aAdvSource;
263 0 : if (pDBData->GetAdvancedQuerySource(aAdvSource))
264 0 : aItem.SetAdvancedQuerySource( &aAdvSource );
265 :
266 0 : aArgSet.Put( aItem );
267 :
268 : // aktuelle Tabelle merken (wg. RefInput im Dialog)
269 0 : GetViewData().SetRefTabNo( GetViewData().GetTabNo() );
270 :
271 0 : pResult = new ScSpecialFilterDlg( pB, pCW, pParent, aArgSet );
272 : }
273 0 : break;
274 :
275 : case SID_FILTER:
276 : {
277 :
278 0 : ScQueryParam aQueryParam;
279 0 : SfxItemSet aArgSet( GetPool(),
280 : SCITEM_QUERYDATA,
281 0 : SCITEM_QUERYDATA );
282 :
283 0 : ScDBData* pDBData = GetDBData(false, SC_DB_MAKE, SC_DBSEL_ROW_DOWN);
284 0 : pDBData->ExtendDataArea(pDoc);
285 0 : pDBData->GetQueryParam( aQueryParam );
286 :
287 0 : ScRange aArea;
288 0 : pDBData->GetArea(aArea);
289 0 : MarkRange(aArea, false);
290 :
291 : aArgSet.Put( ScQueryItem( SCITEM_QUERYDATA,
292 0 : &GetViewData(),
293 0 : &aQueryParam ) );
294 :
295 : // aktuelle Tabelle merken (wg. RefInput im Dialog)
296 0 : GetViewData().SetRefTabNo( GetViewData().GetTabNo() );
297 :
298 0 : pResult = new ScFilterDlg( pB, pCW, pParent, aArgSet );
299 : }
300 0 : break;
301 :
302 : case SID_OPENDLG_TABOP:
303 : {
304 0 : ScViewData& rViewData = GetViewData();
305 0 : ScRefAddress aCurPos ( rViewData.GetCurX(),
306 : rViewData.GetCurY(),
307 0 : rViewData.GetTabNo(),
308 0 : false, false, false );
309 :
310 0 : pResult = new ScTabOpDlg( pB, pCW, pParent, rViewData.GetDocument(), aCurPos );
311 : }
312 0 : break;
313 :
314 : case SID_OPENDLG_SOLVE:
315 : {
316 0 : ScViewData& rViewData = GetViewData();
317 0 : ScAddress aCurPos( rViewData.GetCurX(),
318 : rViewData.GetCurY(),
319 0 : rViewData.GetTabNo());
320 0 : pResult = new ScSolverDlg( pB, pCW, pParent, rViewData.GetDocument(), aCurPos );
321 : }
322 0 : break;
323 :
324 : case SID_RANDOM_NUMBER_GENERATOR_DIALOG:
325 : {
326 0 : pResult = new ScRandomNumberGeneratorDialog( pB, pCW, pParent, &GetViewData() );
327 : }
328 0 : break;
329 :
330 : case SID_SAMPLING_DIALOG:
331 : {
332 0 : pResult = new ScSamplingDialog( pB, pCW, pParent, &GetViewData() );
333 : }
334 0 : break;
335 :
336 : case SID_DESCRIPTIVE_STATISTICS_DIALOG:
337 : {
338 0 : pResult = new ScDescriptiveStatisticsDialog( pB, pCW, pParent, &GetViewData() );
339 : }
340 0 : break;
341 :
342 : case SID_ANALYSIS_OF_VARIANCE_DIALOG:
343 : {
344 0 : pResult = new ScAnalysisOfVarianceDialog( pB, pCW, pParent, &GetViewData() );
345 : }
346 0 : break;
347 :
348 : case SID_CORRELATION_DIALOG:
349 : {
350 0 : pResult = new ScCorrelationDialog( pB, pCW, pParent, &GetViewData() );
351 : }
352 0 : break;
353 :
354 : case SID_COVARIANCE_DIALOG:
355 : {
356 0 : pResult = new ScCovarianceDialog( pB, pCW, pParent, &GetViewData() );
357 : }
358 0 : break;
359 :
360 : case SID_EXPONENTIAL_SMOOTHING_DIALOG:
361 : {
362 0 : pResult = new ScExponentialSmoothingDialog( pB, pCW, pParent, &GetViewData() );
363 : }
364 0 : break;
365 :
366 : case SID_MOVING_AVERAGE_DIALOG:
367 : {
368 0 : pResult = new ScMovingAverageDialog( pB, pCW, pParent, &GetViewData() );
369 : }
370 0 : break;
371 :
372 : case SID_TTEST_DIALOG:
373 : {
374 0 : pResult = new ScTTestDialog( pB, pCW, pParent, &GetViewData() );
375 : }
376 0 : break;
377 :
378 : case SID_FTEST_DIALOG:
379 : {
380 0 : pResult = new ScFTestDialog( pB, pCW, pParent, &GetViewData() );
381 : }
382 0 : break;
383 :
384 : case SID_OPENDLG_OPTSOLVER:
385 : {
386 0 : ScViewData& rViewData = GetViewData();
387 0 : ScAddress aCurPos( rViewData.GetCurX(), rViewData.GetCurY(), rViewData.GetTabNo());
388 0 : pResult = new ScOptSolverDlg( pB, pCW, pParent, rViewData.GetDocShell(), aCurPos );
389 : }
390 0 : break;
391 :
392 : case SID_OPENDLG_PIVOTTABLE:
393 : {
394 : // all settings must be in pDialogDPObject
395 :
396 0 : if( pDialogDPObject )
397 : {
398 : // Check for an existing datapilot output.
399 0 : ScViewData& rViewData = GetViewData();
400 0 : rViewData.SetRefTabNo( rViewData.GetTabNo() );
401 0 : ScDPObject* pObj = pDoc->GetDPAtCursor(rViewData.GetCurX(), rViewData.GetCurY(), rViewData.GetTabNo());
402 0 : pResult = new ScPivotLayoutDialog(pB, pCW, pParent, &rViewData, pDialogDPObject, pObj == NULL);
403 : }
404 : }
405 0 : break;
406 :
407 : case SID_OPENDLG_EDIT_PRINTAREA:
408 : {
409 0 : pResult = new ScPrintAreasDlg( pB, pCW, pParent );
410 : }
411 0 : break;
412 :
413 : case SID_OPENDLG_FUNCTION:
414 : {
415 : // Dialog schaut selber, was in der Zelle steht
416 :
417 0 : pResult = new ScFormulaDlg( pB, pCW, pParent, &GetViewData(),ScGlobal::GetStarCalcFunctionMgr() );
418 : }
419 0 : break;
420 :
421 : case SID_MANAGE_XML_SOURCE:
422 : {
423 : #if ENABLE_ORCUS
424 0 : pResult = new ScXMLSourceDlg(pB, pCW, pParent, pDoc);
425 : #endif
426 : }
427 0 : break;
428 :
429 : case FID_CHG_SHOW:
430 : {
431 : // Dialog schaut selber, was in der Zelle steht
432 :
433 0 : pResult = new ScHighlightChgDlg( pB, pCW, pParent, &GetViewData() );
434 : }
435 0 : break;
436 :
437 : case WID_SIMPLE_REF:
438 : {
439 : // Dialog schaut selber, was in der Zelle steht
440 :
441 0 : ScViewData& rViewData = GetViewData();
442 0 : rViewData.SetRefTabNo( rViewData.GetTabNo() );
443 0 : pResult = new ScSimpleRefDlg( pB, pCW, pParent );
444 : }
445 0 : break;
446 :
447 : default:
448 : OSL_FAIL( "ScTabViewShell::CreateRefDialog: unbekannte ID" );
449 0 : break;
450 : }
451 :
452 0 : if (pResult)
453 : {
454 : // Die Dialoge gehen immer mit eingeklapptem Zusaetze-Button auf,
455 : // darum muss die Groesse ueber das Initialize gerettet werden
456 : // (oder den Zusaetze-Status mit speichern !!!)
457 :
458 0 : Size aSize = pResult->GetSizePixel();
459 0 : pResult->Initialize( pInfo );
460 0 : pResult->SetSizePixel(aSize);
461 : }
462 :
463 0 : return pResult;
464 228 : }
465 :
466 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|