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 : delete pOldOptions;
70 0 : delete pLocalOptions;
71 0 : }
72 :
73 0 : void ScTpCalcOptions::Init()
74 : {
75 0 : m_pBtnIterate->SetClickHdl( LINK( this, ScTpCalcOptions, CheckClickHdl ) );
76 0 : m_pBtnGeneralPrec->SetClickHdl( LINK(this, ScTpCalcOptions, CheckClickHdl) );
77 0 : m_pBtnDateStd->SetClickHdl( LINK( this, ScTpCalcOptions, RadioClickHdl ) );
78 0 : m_pBtnDateSc10->SetClickHdl( LINK( this, ScTpCalcOptions, RadioClickHdl ) );
79 0 : m_pBtnDate1904->SetClickHdl( LINK( this, ScTpCalcOptions, RadioClickHdl ) );
80 0 : }
81 :
82 0 : SfxTabPage* ScTpCalcOptions::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet )
83 : {
84 0 : return ( new ScTpCalcOptions( pParent, *rAttrSet ) );
85 : }
86 :
87 0 : void ScTpCalcOptions::Reset( const SfxItemSet* /* rCoreAttrs */ )
88 : {
89 : sal_uInt16 d,m,y;
90 :
91 0 : *pLocalOptions = *pOldOptions;
92 :
93 0 : m_pBtnCase->Check( !pLocalOptions->IsIgnoreCase() );
94 0 : m_pBtnCalc->Check( pLocalOptions->IsCalcAsShown() );
95 0 : m_pBtnMatch->Check( pLocalOptions->IsMatchWholeCell() );
96 0 : m_pBtnRegex->Check( pLocalOptions->IsFormulaRegexEnabled() );
97 0 : m_pBtnLookUp->Check( pLocalOptions->IsLookUpColRowNames() );
98 0 : m_pBtnIterate->Check( pLocalOptions->IsIter() );
99 0 : m_pEdSteps->SetValue( pLocalOptions->GetIterCount() );
100 0 : m_pEdEps->SetValue( pLocalOptions->GetIterEps(), 6 );
101 :
102 0 : pLocalOptions->GetDate( d, m, y );
103 :
104 0 : switch ( y )
105 : {
106 : case 1899:
107 0 : m_pBtnDateStd->Check();
108 0 : break;
109 : case 1900:
110 0 : m_pBtnDateSc10->Check();
111 0 : break;
112 : case 1904:
113 0 : m_pBtnDate1904->Check();
114 0 : break;
115 : }
116 :
117 0 : sal_uInt16 nPrec = pLocalOptions->GetStdPrecision();
118 0 : if (nPrec == SvNumberFormatter::UNLIMITED_PRECISION)
119 : {
120 0 : m_pFtPrec->Disable();
121 0 : m_pEdPrec->Disable();
122 0 : m_pBtnGeneralPrec->Check(false);
123 : }
124 : else
125 : {
126 0 : m_pBtnGeneralPrec->Check();
127 0 : m_pFtPrec->Enable();
128 0 : m_pEdPrec->Enable();
129 0 : m_pEdPrec->SetValue(nPrec);
130 : }
131 :
132 0 : CheckClickHdl(m_pBtnIterate);
133 0 : }
134 :
135 0 : bool ScTpCalcOptions::FillItemSet( SfxItemSet* rCoreAttrs )
136 : {
137 : // alle weiteren Optionen werden in den Handlern aktualisiert
138 0 : pLocalOptions->SetIterCount( (sal_uInt16)m_pEdSteps->GetValue() );
139 0 : pLocalOptions->SetIgnoreCase( !m_pBtnCase->IsChecked() );
140 0 : pLocalOptions->SetCalcAsShown( m_pBtnCalc->IsChecked() );
141 0 : pLocalOptions->SetMatchWholeCell( m_pBtnMatch->IsChecked() );
142 0 : pLocalOptions->SetFormulaRegexEnabled( m_pBtnRegex->IsChecked() );
143 0 : pLocalOptions->SetLookUpColRowNames( m_pBtnLookUp->IsChecked() );
144 :
145 0 : if (m_pBtnGeneralPrec->IsChecked())
146 : pLocalOptions->SetStdPrecision(
147 0 : static_cast<sal_uInt16>(m_pEdPrec->GetValue()) );
148 : else
149 0 : pLocalOptions->SetStdPrecision( SvNumberFormatter::UNLIMITED_PRECISION );
150 :
151 0 : if ( *pLocalOptions != *pOldOptions )
152 : {
153 0 : rCoreAttrs->Put( ScTpCalcItem( nWhichCalc, *pLocalOptions ) );
154 0 : return true;
155 : }
156 : else
157 0 : return false;
158 : }
159 :
160 0 : int ScTpCalcOptions::DeactivatePage( SfxItemSet* pSetP )
161 : {
162 0 : int nReturn = KEEP_PAGE;
163 :
164 : double fEps;
165 0 : if( m_pEdEps->GetValue( fEps ) && (fEps > 0.0) )
166 : {
167 0 : pLocalOptions->SetIterEps( fEps );
168 0 : nReturn = LEAVE_PAGE;
169 : }
170 :
171 0 : if ( nReturn == KEEP_PAGE )
172 : {
173 : MessageDialog( this,
174 0 : ScGlobal::GetRscString( STR_INVALID_EPS )
175 0 : ).Execute();
176 :
177 0 : m_pEdEps->GrabFocus();
178 : }
179 0 : else if ( pSetP )
180 0 : FillItemSet( pSetP );
181 :
182 0 : return nReturn;
183 : }
184 :
185 : // Handler:
186 :
187 0 : IMPL_LINK( ScTpCalcOptions, RadioClickHdl, RadioButton*, pBtn )
188 : {
189 0 : if (pBtn == m_pBtnDateStd)
190 : {
191 0 : pLocalOptions->SetDate( 30, 12, 1899 );
192 : }
193 0 : else if (pBtn == m_pBtnDateSc10)
194 : {
195 0 : pLocalOptions->SetDate( 1, 1, 1900 );
196 : }
197 0 : else if (pBtn == m_pBtnDate1904)
198 : {
199 0 : pLocalOptions->SetDate( 1, 1, 1904 );
200 : }
201 :
202 0 : return 0;
203 : }
204 :
205 0 : IMPL_LINK( ScTpCalcOptions, CheckClickHdl, CheckBox*, pBtn )
206 : {
207 0 : if (pBtn == m_pBtnGeneralPrec)
208 : {
209 0 : if (pBtn->IsChecked())
210 : {
211 0 : m_pEdPrec->Enable();
212 0 : m_pFtPrec->Enable();
213 : }
214 : else
215 : {
216 0 : m_pEdPrec->Disable();
217 0 : m_pFtPrec->Disable();
218 : }
219 : }
220 0 : else if (pBtn == m_pBtnIterate)
221 : {
222 0 : if ( pBtn->IsChecked() )
223 : {
224 0 : pLocalOptions->SetIter( true );
225 0 : m_pFtSteps->Enable(); m_pEdSteps->Enable();
226 0 : m_pFtEps->Enable(); m_pEdEps->Enable();
227 : }
228 : else
229 : {
230 0 : pLocalOptions->SetIter( false );
231 0 : m_pFtSteps->Disable(); m_pEdSteps->Disable();
232 0 : m_pFtEps->Disable(); m_pEdEps->Disable();
233 : }
234 : }
235 :
236 0 : return 0;
237 0 : }
238 :
239 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|