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 <vcl/msgbox.hxx>
24 :
25 : #include "global.hxx"
26 : #include "globstr.hrc"
27 : #include "uiitems.hxx"
28 : #include "docsh.hxx"
29 : #include "document.hxx"
30 : #include "docoptio.hxx"
31 : #include "scresid.hxx"
32 : #include "sc.hrc"
33 :
34 : #include "tpcalc.hxx"
35 :
36 : #include <math.h>
37 :
38 0 : ScTpCalcOptions::ScTpCalcOptions(vcl::Window* pParent, const SfxItemSet& rCoreAttrs)
39 : : SfxTabPage(pParent, "OptCalculatePage",
40 : "modules/scalc/ui/optcalculatepage.ui", &rCoreAttrs)
41 : , pOldOptions(new ScDocOptions(
42 : static_cast<const ScTpCalcItem&>(rCoreAttrs.Get(
43 0 : GetWhich(SID_SCDOCOPTIONS))).GetDocOptions()))
44 0 : , pLocalOptions(new ScDocOptions)
45 0 : , nWhichCalc(GetWhich(SID_SCDOCOPTIONS))
46 : {
47 0 : get(m_pBtnIterate, "iterate");
48 0 : get(m_pFtSteps, "stepsft");
49 0 : get(m_pEdSteps, "steps");
50 0 : get(m_pFtEps, "minchangeft");
51 0 : get(m_pEdEps, "minchange");
52 0 : get(m_pBtnDateStd, "datestd");
53 0 : get(m_pBtnDateSc10, "datesc10");
54 0 : get(m_pBtnDate1904, "date1904");
55 0 : get(m_pBtnCase, "case");
56 0 : get(m_pBtnCalc, "calc");
57 0 : get(m_pBtnMatch, "match");
58 0 : get(m_pBtnRegex, "regex");
59 0 : get(m_pBtnLookUp, "lookup");
60 0 : get(m_pBtnGeneralPrec, "generalprec");
61 0 : get(m_pFtPrec, "precft");
62 0 : get(m_pEdPrec, "prec");
63 0 : Init();
64 0 : SetExchangeSupport();
65 0 : }
66 :
67 0 : ScTpCalcOptions::~ScTpCalcOptions()
68 : {
69 0 : disposeOnce();
70 0 : }
71 :
72 0 : void ScTpCalcOptions::dispose()
73 : {
74 0 : delete pOldOptions;
75 0 : delete pLocalOptions;
76 0 : m_pBtnIterate.clear();
77 0 : m_pFtSteps.clear();
78 0 : m_pEdSteps.clear();
79 0 : m_pFtEps.clear();
80 0 : m_pEdEps.clear();
81 0 : m_pBtnDateStd.clear();
82 0 : m_pBtnDateSc10.clear();
83 0 : m_pBtnDate1904.clear();
84 0 : m_pBtnCase.clear();
85 0 : m_pBtnCalc.clear();
86 0 : m_pBtnMatch.clear();
87 0 : m_pBtnRegex.clear();
88 0 : m_pBtnLookUp.clear();
89 0 : m_pBtnGeneralPrec.clear();
90 0 : m_pFtPrec.clear();
91 0 : m_pEdPrec.clear();
92 0 : SfxTabPage::dispose();
93 0 : }
94 :
95 0 : void ScTpCalcOptions::Init()
96 : {
97 0 : m_pBtnIterate->SetClickHdl( LINK( this, ScTpCalcOptions, CheckClickHdl ) );
98 0 : m_pBtnGeneralPrec->SetClickHdl( LINK(this, ScTpCalcOptions, CheckClickHdl) );
99 0 : m_pBtnDateStd->SetClickHdl( LINK( this, ScTpCalcOptions, RadioClickHdl ) );
100 0 : m_pBtnDateSc10->SetClickHdl( LINK( this, ScTpCalcOptions, RadioClickHdl ) );
101 0 : m_pBtnDate1904->SetClickHdl( LINK( this, ScTpCalcOptions, RadioClickHdl ) );
102 0 : }
103 :
104 0 : VclPtr<SfxTabPage> ScTpCalcOptions::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet )
105 : {
106 0 : return VclPtr<ScTpCalcOptions>::Create( pParent, *rAttrSet );
107 : }
108 :
109 0 : void ScTpCalcOptions::Reset( const SfxItemSet* /* rCoreAttrs */ )
110 : {
111 : sal_uInt16 d,m,y;
112 :
113 0 : *pLocalOptions = *pOldOptions;
114 :
115 0 : m_pBtnCase->Check( !pLocalOptions->IsIgnoreCase() );
116 0 : m_pBtnCalc->Check( pLocalOptions->IsCalcAsShown() );
117 0 : m_pBtnMatch->Check( pLocalOptions->IsMatchWholeCell() );
118 0 : m_pBtnRegex->Check( pLocalOptions->IsFormulaRegexEnabled() );
119 0 : m_pBtnLookUp->Check( pLocalOptions->IsLookUpColRowNames() );
120 0 : m_pBtnIterate->Check( pLocalOptions->IsIter() );
121 0 : m_pEdSteps->SetValue( pLocalOptions->GetIterCount() );
122 0 : m_pEdEps->SetValue( pLocalOptions->GetIterEps(), 6 );
123 :
124 0 : pLocalOptions->GetDate( d, m, y );
125 :
126 0 : switch ( y )
127 : {
128 : case 1899:
129 0 : m_pBtnDateStd->Check();
130 0 : break;
131 : case 1900:
132 0 : m_pBtnDateSc10->Check();
133 0 : break;
134 : case 1904:
135 0 : m_pBtnDate1904->Check();
136 0 : break;
137 : }
138 :
139 0 : sal_uInt16 nPrec = pLocalOptions->GetStdPrecision();
140 0 : if (nPrec == SvNumberFormatter::UNLIMITED_PRECISION)
141 : {
142 0 : m_pFtPrec->Disable();
143 0 : m_pEdPrec->Disable();
144 0 : m_pBtnGeneralPrec->Check(false);
145 : }
146 : else
147 : {
148 0 : m_pBtnGeneralPrec->Check();
149 0 : m_pFtPrec->Enable();
150 0 : m_pEdPrec->Enable();
151 0 : m_pEdPrec->SetValue(nPrec);
152 : }
153 :
154 0 : CheckClickHdl(m_pBtnIterate);
155 0 : }
156 :
157 0 : bool ScTpCalcOptions::FillItemSet( SfxItemSet* rCoreAttrs )
158 : {
159 : // alle weiteren Optionen werden in den Handlern aktualisiert
160 0 : pLocalOptions->SetIterCount( (sal_uInt16)m_pEdSteps->GetValue() );
161 0 : pLocalOptions->SetIgnoreCase( !m_pBtnCase->IsChecked() );
162 0 : pLocalOptions->SetCalcAsShown( m_pBtnCalc->IsChecked() );
163 0 : pLocalOptions->SetMatchWholeCell( m_pBtnMatch->IsChecked() );
164 0 : pLocalOptions->SetFormulaRegexEnabled( m_pBtnRegex->IsChecked() );
165 0 : pLocalOptions->SetLookUpColRowNames( m_pBtnLookUp->IsChecked() );
166 :
167 0 : if (m_pBtnGeneralPrec->IsChecked())
168 : pLocalOptions->SetStdPrecision(
169 0 : static_cast<sal_uInt16>(m_pEdPrec->GetValue()) );
170 : else
171 0 : pLocalOptions->SetStdPrecision( SvNumberFormatter::UNLIMITED_PRECISION );
172 :
173 0 : if ( *pLocalOptions != *pOldOptions )
174 : {
175 0 : rCoreAttrs->Put( ScTpCalcItem( nWhichCalc, *pLocalOptions ) );
176 0 : return true;
177 : }
178 : else
179 0 : return false;
180 : }
181 :
182 0 : SfxTabPage::sfxpg ScTpCalcOptions::DeactivatePage( SfxItemSet* pSetP )
183 : {
184 0 : sfxpg nReturn = KEEP_PAGE;
185 :
186 : double fEps;
187 0 : if( m_pEdEps->GetValue( fEps ) && (fEps > 0.0) )
188 : {
189 0 : pLocalOptions->SetIterEps( fEps );
190 0 : nReturn = LEAVE_PAGE;
191 : }
192 :
193 0 : if ( nReturn == KEEP_PAGE )
194 : {
195 : ScopedVclPtr<MessageDialog>::Create( this,
196 0 : ScGlobal::GetRscString( STR_INVALID_EPS )
197 0 : )->Execute();
198 :
199 0 : m_pEdEps->GrabFocus();
200 : }
201 0 : else if ( pSetP )
202 0 : FillItemSet( pSetP );
203 :
204 0 : return nReturn;
205 : }
206 :
207 : // Handler:
208 :
209 0 : IMPL_LINK( ScTpCalcOptions, RadioClickHdl, RadioButton*, pBtn )
210 : {
211 0 : if (pBtn == m_pBtnDateStd)
212 : {
213 0 : pLocalOptions->SetDate( 30, 12, 1899 );
214 : }
215 0 : else if (pBtn == m_pBtnDateSc10)
216 : {
217 0 : pLocalOptions->SetDate( 1, 1, 1900 );
218 : }
219 0 : else if (pBtn == m_pBtnDate1904)
220 : {
221 0 : pLocalOptions->SetDate( 1, 1, 1904 );
222 : }
223 :
224 0 : return 0;
225 : }
226 :
227 0 : IMPL_LINK( ScTpCalcOptions, CheckClickHdl, CheckBox*, pBtn )
228 : {
229 0 : if (pBtn == m_pBtnGeneralPrec)
230 : {
231 0 : if (pBtn->IsChecked())
232 : {
233 0 : m_pEdPrec->Enable();
234 0 : m_pFtPrec->Enable();
235 : }
236 : else
237 : {
238 0 : m_pEdPrec->Disable();
239 0 : m_pFtPrec->Disable();
240 : }
241 : }
242 0 : else if (pBtn == m_pBtnIterate)
243 : {
244 0 : if ( pBtn->IsChecked() )
245 : {
246 0 : pLocalOptions->SetIter( true );
247 0 : m_pFtSteps->Enable(); m_pEdSteps->Enable();
248 0 : m_pFtEps->Enable(); m_pEdEps->Enable();
249 : }
250 : else
251 : {
252 0 : pLocalOptions->SetIter( false );
253 0 : m_pFtSteps->Disable(); m_pEdSteps->Disable();
254 0 : m_pFtEps->Disable(); m_pEdEps->Disable();
255 : }
256 : }
257 :
258 0 : return 0;
259 0 : }
260 :
261 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|