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 : #undef SC_DLLIMPLEMENTATION
21 :
22 : #include "scitems.hxx"
23 : #include "tpview.hxx"
24 : #include "global.hxx"
25 : #include "viewopti.hxx"
26 : #include "tabvwsh.hxx"
27 : #include "uiitems.hxx"
28 : #include "scresid.hxx"
29 : #include "docsh.hxx"
30 : #include "sc.hrc"
31 : #include "globstr.hrc"
32 : #include <appoptio.hxx>
33 : #include <scmod.hxx>
34 : #include <svx/dlgutil.hxx>
35 : #include <svx/drawitem.hxx>
36 : #include <svx/xtable.hxx>
37 :
38 : // STATIC DATA -----------------------------------------------------------
39 :
40 0 : ScTpContentOptions::ScTpContentOptions( vcl::Window* pParent,
41 : const SfxItemSet& rArgSet ) :
42 : SfxTabPage(pParent, "TpViewPage", "modules/scalc/ui/tpviewpage.ui", &rArgSet),
43 0 : pLocalOptions(0)
44 : {
45 0 : get(pGridLB,"grid");
46 0 : get(pColorFT,"color_label");
47 0 : get(pColorLB,"color");
48 0 : get(pBreakCB,"break");
49 0 : get(pGuideLineCB,"guideline");
50 :
51 0 : get(pFormulaCB,"formula");
52 0 : get(pNilCB,"nil");
53 0 : get(pAnnotCB,"annot");
54 0 : get(pValueCB,"value");
55 0 : get(pAnchorCB,"anchor");
56 0 : get(pClipMarkCB,"clipmark");
57 0 : get(pRangeFindCB,"rangefind");
58 :
59 0 : get(pObjGrfLB,"objgrf");
60 0 : get(pDiagramLB,"diagram");
61 0 : get(pDrawLB,"draw");
62 :
63 0 : get(pSyncZoomCB,"synczoom");
64 :
65 0 : get(pRowColHeaderCB,"rowcolheader");
66 0 : get(pHScrollCB,"hscroll");
67 0 : get(pVScrollCB,"vscroll");
68 0 : get(pTblRegCB,"tblreg");
69 0 : get(pOutlineCB,"outline");
70 :
71 0 : SetExchangeSupport();
72 0 : Link<> aSelObjHdl(LINK( this, ScTpContentOptions, SelLbObjHdl ) );
73 0 : pObjGrfLB-> SetSelectHdl(aSelObjHdl);
74 0 : pDiagramLB-> SetSelectHdl(aSelObjHdl);
75 0 : pDrawLB-> SetSelectHdl(aSelObjHdl);
76 0 : pGridLB-> SetSelectHdl( LINK( this, ScTpContentOptions, GridHdl ) );
77 :
78 0 : Link<> aCBHdl(LINK( this, ScTpContentOptions, CBHdl ) );
79 0 : pFormulaCB ->SetClickHdl(aCBHdl);
80 0 : pNilCB ->SetClickHdl(aCBHdl);
81 0 : pAnnotCB ->SetClickHdl(aCBHdl);
82 0 : pValueCB ->SetClickHdl(aCBHdl);
83 0 : pAnchorCB ->SetClickHdl(aCBHdl);
84 0 : pClipMarkCB ->SetClickHdl(aCBHdl);
85 :
86 0 : pVScrollCB ->SetClickHdl(aCBHdl);
87 0 : pHScrollCB ->SetClickHdl(aCBHdl);
88 0 : pTblRegCB ->SetClickHdl(aCBHdl);
89 0 : pOutlineCB ->SetClickHdl(aCBHdl);
90 0 : pBreakCB ->SetClickHdl(aCBHdl);
91 0 : pGuideLineCB->SetClickHdl(aCBHdl);
92 0 : pRowColHeaderCB->SetClickHdl(aCBHdl);
93 :
94 0 : }
95 :
96 0 : ScTpContentOptions::~ScTpContentOptions()
97 : {
98 0 : disposeOnce();
99 0 : }
100 :
101 0 : void ScTpContentOptions::dispose()
102 : {
103 0 : delete pLocalOptions;
104 0 : pGridLB.clear();
105 0 : pColorFT.clear();
106 0 : pColorLB.clear();
107 0 : pBreakCB.clear();
108 0 : pGuideLineCB.clear();
109 0 : pFormulaCB.clear();
110 0 : pNilCB.clear();
111 0 : pAnnotCB.clear();
112 0 : pValueCB.clear();
113 0 : pAnchorCB.clear();
114 0 : pClipMarkCB.clear();
115 0 : pRangeFindCB.clear();
116 0 : pObjGrfLB.clear();
117 0 : pDiagramLB.clear();
118 0 : pDrawLB.clear();
119 0 : pSyncZoomCB.clear();
120 0 : pRowColHeaderCB.clear();
121 0 : pHScrollCB.clear();
122 0 : pVScrollCB.clear();
123 0 : pTblRegCB.clear();
124 0 : pOutlineCB.clear();
125 0 : SfxTabPage::dispose();
126 0 : }
127 :
128 0 : VclPtr<SfxTabPage> ScTpContentOptions::Create( vcl::Window* pParent,
129 : const SfxItemSet* rCoreSet )
130 : {
131 0 : return VclPtr<ScTpContentOptions>::Create(pParent, *rCoreSet);
132 : }
133 :
134 0 : bool ScTpContentOptions::FillItemSet( SfxItemSet* rCoreSet )
135 : {
136 0 : bool bRet = false;
137 0 : if( pFormulaCB ->IsValueChangedFromSaved() ||
138 0 : pNilCB ->IsValueChangedFromSaved() ||
139 0 : pAnnotCB ->IsValueChangedFromSaved() ||
140 0 : pValueCB ->IsValueChangedFromSaved() ||
141 0 : pAnchorCB ->IsValueChangedFromSaved() ||
142 0 : pClipMarkCB->IsValueChangedFromSaved() ||
143 0 : pObjGrfLB ->IsValueChangedFromSaved() ||
144 0 : pDiagramLB ->IsValueChangedFromSaved() ||
145 0 : pDrawLB ->IsValueChangedFromSaved() ||
146 0 : pGridLB ->IsValueChangedFromSaved() ||
147 0 : pRowColHeaderCB->IsValueChangedFromSaved() ||
148 0 : pHScrollCB ->IsValueChangedFromSaved() ||
149 0 : pVScrollCB ->IsValueChangedFromSaved() ||
150 0 : pTblRegCB ->IsValueChangedFromSaved() ||
151 0 : pOutlineCB ->IsValueChangedFromSaved() ||
152 0 : pColorLB ->IsValueChangedFromSaved() ||
153 0 : pBreakCB ->IsValueChangedFromSaved() ||
154 0 : pGuideLineCB ->IsValueChangedFromSaved())
155 : {
156 0 : pLocalOptions->SetGridColor( pColorLB->GetSelectEntryColor(),
157 0 : pColorLB->GetSelectEntry() );
158 0 : rCoreSet->Put(ScTpViewItem(SID_SCVIEWOPTIONS, *pLocalOptions));
159 0 : bRet = true;
160 : }
161 0 : if(pRangeFindCB->IsValueChangedFromSaved())
162 : {
163 0 : rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_RANGEFINDER, pRangeFindCB->IsChecked()));
164 0 : bRet = true;
165 : }
166 0 : if(pSyncZoomCB->IsValueChangedFromSaved())
167 : {
168 0 : rCoreSet->Put(SfxBoolItem(SID_SC_OPT_SYNCZOOM, pSyncZoomCB->IsChecked()));
169 0 : bRet = true;
170 : }
171 :
172 0 : return bRet;
173 : }
174 :
175 0 : void ScTpContentOptions::Reset( const SfxItemSet* rCoreSet )
176 : {
177 : const SfxPoolItem* pItem;
178 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SCVIEWOPTIONS, false , &pItem))
179 : pLocalOptions = new ScViewOptions(
180 0 : static_cast<const ScTpViewItem*>(pItem)->GetViewOptions() );
181 : else
182 0 : pLocalOptions = new ScViewOptions;
183 0 : pFormulaCB ->Check(pLocalOptions->GetOption(VOPT_FORMULAS));
184 0 : pNilCB ->Check(pLocalOptions->GetOption(VOPT_NULLVALS));
185 0 : pAnnotCB ->Check(pLocalOptions->GetOption(VOPT_NOTES));
186 0 : pValueCB ->Check(pLocalOptions->GetOption(VOPT_SYNTAX));
187 0 : pAnchorCB ->Check(pLocalOptions->GetOption(VOPT_ANCHOR));
188 0 : pClipMarkCB->Check(pLocalOptions->GetOption(VOPT_CLIPMARKS));
189 :
190 0 : pObjGrfLB ->SelectEntryPos( (sal_uInt16)pLocalOptions->GetObjMode(VOBJ_TYPE_OLE) );
191 0 : pDiagramLB ->SelectEntryPos( (sal_uInt16)pLocalOptions->GetObjMode(VOBJ_TYPE_CHART) );
192 0 : pDrawLB ->SelectEntryPos( (sal_uInt16)pLocalOptions->GetObjMode(VOBJ_TYPE_DRAW) );
193 :
194 0 : pRowColHeaderCB->Check( pLocalOptions->GetOption(VOPT_HEADER) );
195 0 : pHScrollCB->Check( pLocalOptions->GetOption(VOPT_HSCROLL) );
196 0 : pVScrollCB->Check( pLocalOptions->GetOption(VOPT_VSCROLL) );
197 0 : pTblRegCB ->Check( pLocalOptions->GetOption(VOPT_TABCONTROLS) );
198 0 : pOutlineCB->Check( pLocalOptions->GetOption(VOPT_OUTLINER) );
199 :
200 0 : InitGridOpt();
201 :
202 0 : pBreakCB->Check( pLocalOptions->GetOption(VOPT_PAGEBREAKS) );
203 0 : pGuideLineCB->Check( pLocalOptions->GetOption(VOPT_HELPLINES) );
204 :
205 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_RANGEFINDER, false, &pItem))
206 0 : pRangeFindCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
207 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_OPT_SYNCZOOM, false, &pItem))
208 0 : pSyncZoomCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
209 :
210 0 : pRangeFindCB->SaveValue();
211 0 : pSyncZoomCB->SaveValue();
212 :
213 0 : pFormulaCB->SaveValue();
214 0 : pNilCB->SaveValue();
215 0 : pAnnotCB->SaveValue();
216 0 : pValueCB->SaveValue();
217 0 : pAnchorCB->SaveValue();
218 0 : pClipMarkCB->SaveValue();
219 0 : pObjGrfLB->SaveValue();
220 0 : pDiagramLB->SaveValue();
221 0 : pDrawLB->SaveValue();
222 0 : pRowColHeaderCB->SaveValue();
223 0 : pHScrollCB->SaveValue();
224 0 : pVScrollCB->SaveValue();
225 0 : pTblRegCB->SaveValue();
226 0 : pOutlineCB->SaveValue();
227 0 : pGridLB->SaveValue();
228 0 : pColorLB->SaveValue();
229 0 : pBreakCB->SaveValue();
230 0 : pGuideLineCB->SaveValue();
231 0 : }
232 :
233 0 : void ScTpContentOptions::ActivatePage( const SfxItemSet& rSet)
234 : {
235 : const SfxPoolItem* pItem;
236 0 : if(SfxItemState::SET == rSet.GetItemState(SID_SCVIEWOPTIONS, false , &pItem))
237 0 : *pLocalOptions = static_cast<const ScTpViewItem*>(pItem)->GetViewOptions();
238 0 : }
239 :
240 0 : SfxTabPage::sfxpg ScTpContentOptions::DeactivatePage( SfxItemSet* pSetP )
241 : {
242 0 : if(pSetP)
243 0 : FillItemSet(pSetP);
244 0 : return SfxTabPage::LEAVE_PAGE;
245 : }
246 :
247 0 : IMPL_LINK( ScTpContentOptions, SelLbObjHdl, ListBox*, pLb )
248 : {
249 0 : sal_uInt16 nSelPos = pLb->GetSelectEntryPos();
250 0 : ScVObjMode eMode = ScVObjMode(nSelPos);
251 0 : ScVObjType eType = VOBJ_TYPE_OLE;
252 :
253 0 : if ( pLb == pDiagramLB )
254 0 : eType = VOBJ_TYPE_CHART;
255 0 : else if ( pLb == pDrawLB )
256 0 : eType = VOBJ_TYPE_DRAW;
257 :
258 0 : pLocalOptions->SetObjMode( eType, eMode );
259 :
260 0 : return 0;
261 : }
262 :
263 0 : IMPL_LINK( ScTpContentOptions, CBHdl, CheckBox*, pBtn )
264 : {
265 0 : ScViewOption eOption = VOPT_FORMULAS;
266 0 : bool bChecked = pBtn->IsChecked();
267 :
268 0 : if ( pFormulaCB == pBtn ) eOption = VOPT_FORMULAS;
269 0 : else if ( pNilCB == pBtn ) eOption = VOPT_NULLVALS;
270 0 : else if ( pAnnotCB == pBtn ) eOption = VOPT_NOTES;
271 0 : else if ( pValueCB == pBtn ) eOption = VOPT_SYNTAX;
272 0 : else if ( pAnchorCB == pBtn ) eOption = VOPT_ANCHOR;
273 0 : else if ( pClipMarkCB == pBtn ) eOption = VOPT_CLIPMARKS;
274 0 : else if ( pVScrollCB == pBtn ) eOption = VOPT_VSCROLL;
275 0 : else if ( pHScrollCB == pBtn ) eOption = VOPT_HSCROLL;
276 0 : else if ( pTblRegCB == pBtn ) eOption = VOPT_TABCONTROLS;
277 0 : else if ( pOutlineCB == pBtn ) eOption = VOPT_OUTLINER;
278 0 : else if ( pBreakCB == pBtn ) eOption = VOPT_PAGEBREAKS;
279 0 : else if ( pGuideLineCB == pBtn ) eOption = VOPT_HELPLINES;
280 0 : else if ( pRowColHeaderCB == pBtn ) eOption = VOPT_HEADER;
281 :
282 0 : pLocalOptions->SetOption( eOption, bChecked );
283 :
284 0 : return 0;
285 : }
286 :
287 0 : void ScTpContentOptions::InitGridOpt()
288 : {
289 0 : bool bGrid = pLocalOptions->GetOption( VOPT_GRID );
290 0 : bool bGridOnTop = pLocalOptions->GetOption( VOPT_GRID_ONTOP );
291 0 : sal_Int32 nSelPos = 0;
292 :
293 0 : if ( bGrid || bGridOnTop )
294 : {
295 0 : pColorFT->Enable(), pColorLB->Enable();
296 0 : if ( !bGridOnTop )
297 0 : nSelPos = 0;
298 : else
299 0 : nSelPos = 1;
300 : }
301 : else
302 : {
303 0 : pColorFT->Disable(), pColorLB->Disable();
304 0 : nSelPos = 2;
305 : }
306 :
307 0 : pGridLB->SelectEntryPos (nSelPos);
308 :
309 0 : if ( pColorLB->GetEntryCount() == 0 )
310 : {
311 0 : SfxObjectShell* pDocSh = SfxObjectShell::Current();
312 : // there might be another DocShell here
313 0 : pDocSh = PTR_CAST(ScDocShell, pDocSh);
314 :
315 0 : XColorListRef pColorList;
316 0 : if ( pDocSh )
317 : {
318 0 : const SfxPoolItem* pItem = pDocSh->GetItem( SID_COLOR_TABLE );
319 0 : if ( pItem )
320 0 : pColorList = static_cast<const SvxColorListItem*>(pItem)->GetColorList();
321 : }
322 : else
323 0 : pColorList = XColorList::GetStdColorList();
324 :
325 0 : if ( !pColorList.is() )
326 0 : return;
327 :
328 0 : pColorLB->SetUpdateMode( false );
329 :
330 : // items from ColorTable
331 :
332 0 : long nCount = pColorList->Count();
333 0 : for ( long n=0; n<nCount; n++ )
334 : {
335 0 : XColorEntry* pEntry = pColorList->GetColor(n);
336 0 : pColorLB->InsertEntry( pEntry->GetColor(), pEntry->GetName() );
337 : }
338 :
339 : // default GridColor
340 :
341 0 : Color aStdCol( SC_STD_GRIDCOLOR ); // same default as in ScViewOptions
342 0 : if ( LISTBOX_ENTRY_NOTFOUND ==
343 0 : pColorLB->GetEntryPos( aStdCol ) )
344 0 : pColorLB->InsertEntry( aStdCol, ScGlobal::GetRscString( STR_GRIDCOLOR ) );
345 :
346 0 : pColorLB->SetUpdateMode( true );
347 :
348 0 : Invalidate();
349 : }
350 :
351 : // also select grid color entry on subsequent calls
352 :
353 0 : OUString aName;
354 0 : Color aCol = pLocalOptions->GetGridColor( &aName );
355 0 : nSelPos = pColorLB->GetEntryPos( aCol );
356 :
357 0 : if ( LISTBOX_ENTRY_NOTFOUND != nSelPos )
358 0 : pColorLB->SelectEntryPos( nSelPos );
359 : else
360 0 : pColorLB->SelectEntryPos( pColorLB->InsertEntry( aCol, aName ) );
361 : }
362 :
363 0 : IMPL_LINK( ScTpContentOptions, GridHdl, ListBox*, pLb )
364 : {
365 0 : sal_Int32 nSelPos = pLb->GetSelectEntryPos();
366 0 : bool bGrid = ( nSelPos <= 1 );
367 0 : bool bGridOnTop = ( nSelPos == 1 );
368 :
369 0 : pColorFT->Enable(bGrid);
370 0 : pColorLB->Enable(bGrid);
371 0 : pLocalOptions->SetOption( VOPT_GRID, bGrid );
372 0 : pLocalOptions->SetOption( VOPT_GRID_ONTOP, bGridOnTop );
373 0 : return 0;
374 : }
375 :
376 0 : ScTpLayoutOptions::ScTpLayoutOptions( vcl::Window* pParent,
377 : const SfxItemSet& rArgSet ) :
378 : SfxTabPage( pParent, "ScGeneralPage",
379 : "modules/scalc/ui/scgeneralpage.ui", &rArgSet),
380 : aUnitArr( ScResId(SCSTR_UNIT )),
381 0 : pDoc(NULL)
382 : {
383 0 : get( m_pUnitLB, "unitlb");
384 0 : get( m_pTabMF, "tabmf");
385 :
386 0 : get( m_pAlwaysRB, "alwaysrb");
387 0 : get( m_pRequestRB, "requestrb");
388 0 : get( m_pNeverRB, "neverrb");
389 :
390 0 : get( m_pAlignCB, "aligncb");
391 0 : get( m_pAlignLB, "alignlb");
392 0 : get( m_pEditModeCB, "editmodecb");
393 0 : get( m_pFormatCB, "formatcb");
394 0 : get( m_pExpRefCB, "exprefcb");
395 0 : get( m_pSortRefUpdateCB, "sortrefupdatecb");
396 0 : get( m_pMarkHdrCB, "markhdrcb");
397 0 : get( m_pTextFmtCB, "textfmtcb");
398 0 : get( m_pReplWarnCB, "replwarncb");
399 0 : get( m_pLegacyCellSelectionCB, "legacy_cell_selection_cb");
400 :
401 0 : SetExchangeSupport();
402 :
403 0 : m_pUnitLB->SetSelectHdl( LINK( this, ScTpLayoutOptions, MetricHdl ) );
404 :
405 0 : m_pAlignCB->SetClickHdl(LINK(this, ScTpLayoutOptions, AlignHdl));
406 :
407 0 : for ( sal_uInt32 i = 0; i < aUnitArr.Count(); ++i )
408 : {
409 0 : OUString sMetric = aUnitArr.GetStringByPos( i );
410 0 : FieldUnit eFUnit = (FieldUnit)aUnitArr.GetValue( i );
411 :
412 0 : switch ( eFUnit )
413 : {
414 : case FUNIT_MM:
415 : case FUNIT_CM:
416 : case FUNIT_POINT:
417 : case FUNIT_PICA:
418 : case FUNIT_INCH:
419 : {
420 : // nur diese Metriken benutzen
421 0 : sal_Int32 nPos = m_pUnitLB->InsertEntry( sMetric );
422 0 : m_pUnitLB->SetEntryData( nPos, reinterpret_cast<void*>((sal_IntPtr)eFUnit) );
423 : }
424 0 : break;
425 : default:
426 : {
427 : // added to avoid warnings
428 : }
429 : }
430 0 : }
431 :
432 0 : }
433 :
434 0 : ScTpLayoutOptions::~ScTpLayoutOptions()
435 : {
436 0 : disposeOnce();
437 0 : }
438 :
439 0 : void ScTpLayoutOptions::dispose()
440 : {
441 0 : m_pUnitLB.clear();
442 0 : m_pTabMF.clear();
443 0 : m_pAlwaysRB.clear();
444 0 : m_pRequestRB.clear();
445 0 : m_pNeverRB.clear();
446 0 : m_pAlignCB.clear();
447 0 : m_pAlignLB.clear();
448 0 : m_pEditModeCB.clear();
449 0 : m_pFormatCB.clear();
450 0 : m_pExpRefCB.clear();
451 0 : m_pSortRefUpdateCB.clear();
452 0 : m_pMarkHdrCB.clear();
453 0 : m_pTextFmtCB.clear();
454 0 : m_pReplWarnCB.clear();
455 0 : m_pLegacyCellSelectionCB.clear();
456 0 : SfxTabPage::dispose();
457 0 : }
458 :
459 :
460 0 : VclPtr<SfxTabPage> ScTpLayoutOptions::Create( vcl::Window* pParent,
461 : const SfxItemSet* rCoreSet )
462 : {
463 0 : VclPtrInstance<ScTpLayoutOptions> pNew( pParent, *rCoreSet );
464 0 : ScDocShell* pDocSh = PTR_CAST(ScDocShell,SfxObjectShell::Current());
465 :
466 0 : if(pDocSh!=NULL)
467 0 : pNew->SetDocument(&pDocSh->GetDocument());
468 0 : return pNew;
469 : }
470 :
471 0 : bool ScTpLayoutOptions::FillItemSet( SfxItemSet* rCoreSet )
472 : {
473 0 : bool bRet = true;
474 0 : const sal_Int32 nMPos = m_pUnitLB->GetSelectEntryPos();
475 0 : if ( m_pUnitLB->IsValueChangedFromSaved() )
476 : {
477 0 : sal_uInt16 nFieldUnit = (sal_uInt16)reinterpret_cast<sal_IntPtr>(m_pUnitLB->GetEntryData( nMPos ));
478 : rCoreSet->Put( SfxUInt16Item( SID_ATTR_METRIC,
479 0 : (sal_uInt16)nFieldUnit ) );
480 0 : bRet = true;
481 : }
482 :
483 0 : if(m_pTabMF->IsValueChangedFromSaved())
484 : {
485 : rCoreSet->Put(SfxUInt16Item(SID_ATTR_DEFTABSTOP,
486 0 : sal::static_int_cast<sal_uInt16>( m_pTabMF->Denormalize(m_pTabMF->GetValue(FUNIT_TWIP)) )));
487 0 : bRet = true;
488 : }
489 :
490 0 : ScLkUpdMode nSet=LM_ALWAYS;
491 :
492 0 : if(m_pRequestRB->IsChecked())
493 : {
494 0 : nSet=LM_ON_DEMAND;
495 : }
496 0 : else if(m_pNeverRB->IsChecked())
497 : {
498 0 : nSet=LM_NEVER;
499 : }
500 :
501 0 : if(m_pRequestRB->IsValueChangedFromSaved() ||
502 0 : m_pNeverRB->IsValueChangedFromSaved() )
503 : {
504 0 : if(pDoc)
505 0 : pDoc->SetLinkMode(nSet);
506 0 : ScAppOptions aAppOptions=SC_MOD()->GetAppOptions();
507 0 : aAppOptions.SetLinkMode(nSet );
508 0 : SC_MOD()->SetAppOptions(aAppOptions);
509 0 : bRet = true;
510 : }
511 0 : if(m_pAlignCB->IsValueChangedFromSaved())
512 : {
513 0 : rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_SELECTION, m_pAlignCB->IsChecked()));
514 0 : bRet = true;
515 : }
516 :
517 0 : if(m_pAlignLB->IsValueChangedFromSaved())
518 : {
519 0 : rCoreSet->Put(SfxUInt16Item(SID_SC_INPUT_SELECTIONPOS, m_pAlignLB->GetSelectEntryPos()));
520 0 : bRet = true;
521 : }
522 :
523 0 : if(m_pEditModeCB->IsValueChangedFromSaved())
524 : {
525 0 : rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_EDITMODE, m_pEditModeCB->IsChecked()));
526 0 : bRet = true;
527 : }
528 :
529 0 : if(m_pFormatCB->IsValueChangedFromSaved())
530 : {
531 0 : rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_FMT_EXPAND, m_pFormatCB->IsChecked()));
532 0 : bRet = true;
533 : }
534 :
535 0 : if(m_pExpRefCB->IsValueChangedFromSaved())
536 : {
537 0 : rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_REF_EXPAND, m_pExpRefCB->IsChecked()));
538 0 : bRet = true;
539 : }
540 :
541 0 : if (m_pSortRefUpdateCB->IsValueChangedFromSaved())
542 : {
543 0 : rCoreSet->Put(SfxBoolItem(SID_SC_OPT_SORT_REF_UPDATE, m_pSortRefUpdateCB->IsChecked()));
544 0 : bRet = true;
545 : }
546 :
547 0 : if(m_pMarkHdrCB->IsValueChangedFromSaved())
548 : {
549 0 : rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_MARK_HEADER, m_pMarkHdrCB->IsChecked()));
550 0 : bRet = true;
551 : }
552 :
553 0 : if(m_pTextFmtCB->IsValueChangedFromSaved())
554 : {
555 0 : rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_TEXTWYSIWYG, m_pTextFmtCB->IsChecked()));
556 0 : bRet = true;
557 : }
558 :
559 0 : if( m_pReplWarnCB->IsValueChangedFromSaved() )
560 : {
561 0 : rCoreSet->Put( SfxBoolItem( SID_SC_INPUT_REPLCELLSWARN, m_pReplWarnCB->IsChecked() ) );
562 0 : bRet = true;
563 : }
564 :
565 0 : if( m_pLegacyCellSelectionCB->IsValueChangedFromSaved() )
566 : {
567 0 : rCoreSet->Put( SfxBoolItem( SID_SC_INPUT_LEGACY_CELL_SELECTION, m_pLegacyCellSelectionCB->IsChecked() ) );
568 0 : bRet = true;
569 : }
570 :
571 0 : return bRet;
572 : }
573 :
574 0 : void ScTpLayoutOptions::Reset( const SfxItemSet* rCoreSet )
575 : {
576 0 : m_pUnitLB->SetNoSelection();
577 0 : if ( rCoreSet->GetItemState( SID_ATTR_METRIC ) >= SfxItemState::DEFAULT )
578 : {
579 0 : const SfxUInt16Item& rItem = static_cast<const SfxUInt16Item&>(rCoreSet->Get( SID_ATTR_METRIC ));
580 0 : FieldUnit eFieldUnit = (FieldUnit)rItem.GetValue();
581 :
582 0 : for ( sal_Int32 i = 0; i < m_pUnitLB->GetEntryCount(); ++i )
583 : {
584 0 : if ( (FieldUnit)reinterpret_cast<sal_IntPtr>(m_pUnitLB->GetEntryData( i )) == eFieldUnit )
585 : {
586 0 : m_pUnitLB->SelectEntryPos( i );
587 0 : break;
588 : }
589 : }
590 0 : ::SetFieldUnit(*m_pTabMF, eFieldUnit);
591 : }
592 0 : m_pUnitLB->SaveValue();
593 :
594 : const SfxPoolItem* pItem;
595 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_ATTR_DEFTABSTOP, false, &pItem))
596 0 : m_pTabMF->SetValue(m_pTabMF->Normalize(static_cast<const SfxUInt16Item*>(pItem)->GetValue()), FUNIT_TWIP);
597 0 : m_pTabMF->SaveValue();
598 :
599 0 : m_pUnitLB ->SaveValue();
600 0 : m_pTabMF ->SaveValue();
601 :
602 0 : ScLkUpdMode nSet=LM_UNKNOWN;
603 :
604 0 : if(pDoc!=NULL)
605 : {
606 0 : nSet=pDoc->GetLinkMode();
607 : }
608 :
609 0 : if(nSet==LM_UNKNOWN)
610 : {
611 0 : ScAppOptions aAppOptions=SC_MOD()->GetAppOptions();
612 0 : nSet=aAppOptions.GetLinkMode();
613 : }
614 :
615 0 : switch(nSet)
616 : {
617 0 : case LM_ALWAYS: m_pAlwaysRB-> Check(); break;
618 0 : case LM_NEVER: m_pNeverRB-> Check(); break;
619 0 : case LM_ON_DEMAND: m_pRequestRB-> Check(); break;
620 : default:
621 : {
622 : // added to avoid warnings
623 : }
624 : }
625 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_SELECTION, false, &pItem))
626 0 : m_pAlignCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
627 :
628 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_SELECTIONPOS, false, &pItem))
629 0 : m_pAlignLB->SelectEntryPos(static_cast<const SfxUInt16Item*>(pItem)->GetValue());
630 :
631 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_EDITMODE, false, &pItem))
632 0 : m_pEditModeCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
633 :
634 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_FMT_EXPAND, false, &pItem))
635 0 : m_pFormatCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
636 :
637 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_REF_EXPAND, false, &pItem))
638 0 : m_pExpRefCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
639 :
640 0 : if (rCoreSet->HasItem(SID_SC_OPT_SORT_REF_UPDATE, &pItem))
641 0 : m_pSortRefUpdateCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
642 :
643 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_MARK_HEADER, false, &pItem))
644 0 : m_pMarkHdrCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
645 :
646 0 : if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_TEXTWYSIWYG, false, &pItem))
647 0 : m_pTextFmtCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
648 :
649 0 : if( SfxItemState::SET == rCoreSet->GetItemState( SID_SC_INPUT_REPLCELLSWARN, false, &pItem ) )
650 0 : m_pReplWarnCB->Check( static_cast<const SfxBoolItem*>(pItem)->GetValue() );
651 :
652 0 : if( SfxItemState::SET == rCoreSet->GetItemState( SID_SC_INPUT_LEGACY_CELL_SELECTION, false, &pItem ) )
653 0 : m_pLegacyCellSelectionCB->Check( static_cast<const SfxBoolItem*>(pItem)->GetValue() );
654 :
655 0 : m_pAlignCB ->SaveValue();
656 0 : m_pAlignLB ->SaveValue();
657 0 : m_pEditModeCB ->SaveValue();
658 0 : m_pFormatCB ->SaveValue();
659 :
660 0 : m_pExpRefCB ->SaveValue();
661 0 : m_pSortRefUpdateCB->SaveValue();
662 0 : m_pMarkHdrCB ->SaveValue();
663 0 : m_pTextFmtCB ->SaveValue();
664 0 : m_pReplWarnCB ->SaveValue();
665 :
666 0 : m_pLegacyCellSelectionCB->SaveValue();
667 :
668 0 : AlignHdl(m_pAlignCB);
669 :
670 0 : m_pAlwaysRB->SaveValue();
671 0 : m_pNeverRB->SaveValue();
672 0 : m_pRequestRB->SaveValue();
673 0 : }
674 :
675 0 : void ScTpLayoutOptions::ActivatePage( const SfxItemSet& /* rCoreSet */ )
676 : {
677 0 : }
678 :
679 0 : SfxTabPage::sfxpg ScTpLayoutOptions::DeactivatePage( SfxItemSet* pSetP )
680 : {
681 0 : if(pSetP)
682 0 : FillItemSet(pSetP);
683 0 : return SfxTabPage::LEAVE_PAGE;
684 : }
685 :
686 0 : IMPL_LINK_NOARG(ScTpLayoutOptions, MetricHdl)
687 : {
688 0 : const sal_Int32 nMPos = m_pUnitLB->GetSelectEntryPos();
689 0 : if(nMPos != LISTBOX_ENTRY_NOTFOUND)
690 : {
691 0 : FieldUnit eFieldUnit = (FieldUnit)reinterpret_cast<sal_IntPtr>(m_pUnitLB->GetEntryData( nMPos ));
692 : sal_Int64 nVal =
693 0 : m_pTabMF->Denormalize( m_pTabMF->GetValue( FUNIT_TWIP ) );
694 0 : ::SetFieldUnit( *m_pTabMF, eFieldUnit );
695 0 : m_pTabMF->SetValue( m_pTabMF->Normalize( nVal ), FUNIT_TWIP );
696 : }
697 :
698 0 : return 0;
699 : }
700 :
701 0 : IMPL_LINK( ScTpLayoutOptions, AlignHdl, CheckBox*, pBox )
702 : {
703 0 : m_pAlignLB->Enable(pBox->IsChecked());
704 0 : return 0;
705 0 : }
706 :
707 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|