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 "tp_Scale.hxx"
21 :
22 : #include "ResId.hxx"
23 : #include "Strings.hrc"
24 : #include "chartview/ChartSfxItemIds.hxx"
25 : #include "AxisHelper.hxx"
26 :
27 : #include <svx/svxids.hrc>
28 : #include <rtl/math.hxx>
29 : #include <svx/chrtitem.hxx>
30 : #include <svl/eitem.hxx>
31 : #include <svl/intitem.hxx>
32 : #include <vcl/msgbox.hxx>
33 : #include <svl/zformat.hxx>
34 : #include <svtools/controldims.hrc>
35 :
36 : #include <com/sun/star/chart2/AxisType.hpp>
37 :
38 : using namespace ::com::sun::star;
39 :
40 : namespace chart
41 : {
42 :
43 : namespace
44 : {
45 :
46 0 : void lcl_setValue( FormattedField& rFmtField, double fValue )
47 : {
48 0 : rFmtField.SetValue( fValue );
49 0 : rFmtField.SetDefaultValue( fValue );
50 0 : }
51 :
52 : }
53 :
54 0 : ScaleTabPage::ScaleTabPage(vcl::Window* pWindow,const SfxItemSet& rInAttrs) :
55 : SfxTabPage(pWindow
56 : , "tp_Scale"
57 : , "modules/schart/ui/tp_Scale.ui"
58 : , &rInAttrs),
59 : fMin(0.0),
60 : fMax(0.0),
61 : fStepMain(0.0),
62 : nStepHelp(0),
63 : fOrigin(0.0),
64 : m_nTimeResolution(1),
65 : m_nMainTimeUnit(1),
66 : m_nHelpTimeUnit(1),
67 : m_nAxisType(chart2::AxisType::REALNUMBER),
68 : m_bAllowDateAxis(false),
69 : pNumFormatter(NULL),
70 0 : m_bShowAxisOrigin(false)
71 : {
72 0 : get(m_pCbxReverse, "CBX_REVERSE");
73 0 : get(m_pCbxLogarithm, "CBX_LOGARITHM");
74 0 : get(m_pLB_AxisType, "LB_AXIS_TYPE");
75 0 : get(m_pBxType,"boxTYPE");
76 :
77 0 : get(m_pBxMinMax, "gridMINMAX");
78 0 : get(m_pFmtFldMin, "EDT_MIN");
79 0 : get(m_pCbxAutoMin, "CBX_AUTO_MIN");
80 0 : get(m_pFmtFldMax, "EDT_MAX");
81 0 : get(m_pCbxAutoMax, "CBX_AUTO_MAX");
82 :
83 0 : get(m_pBxResolution, "boxRESOLUTION");
84 0 : get(m_pLB_TimeResolution, "LB_TIME_RESOLUTION");
85 0 : get(m_pCbx_AutoTimeResolution, "CBX_AUTO_TIME_RESOLUTION");
86 :
87 0 : get(m_pTxtMain, "TXT_STEP_MAIN");
88 0 : get(m_pFmtFldStepMain, "EDT_STEP_MAIN");
89 0 : get(m_pMt_MainDateStep, "MT_MAIN_DATE_STEP");
90 0 : get(m_pLB_MainTimeUnit, "LB_MAIN_TIME_UNIT");
91 0 : get(m_pCbxAutoStepMain, "CBX_AUTO_STEP_MAIN");
92 :
93 0 : get(m_pMtStepHelp, "MT_STEPHELP");
94 0 : get(m_pLB_HelpTimeUnit, "LB_HELP_TIME_UNIT");
95 0 : get(m_pCbxAutoStepHelp, "CBX_AUTO_STEP_HELP");
96 0 : get(m_pTxtHelpCount,"TXT_STEP_HELP_COUNT");
97 0 : get(m_pTxtHelp,"TXT_STEP_HELP");
98 :
99 0 : get(m_pBxOrigin,"boxORIGIN");
100 0 : get(m_pFmtFldOrigin, "EDT_ORIGIN");
101 0 : get(m_pCbxAutoOrigin, "CBX_AUTO_ORIGIN");
102 :
103 0 : m_pCbxAutoMin->SetClickHdl(LINK(this, ScaleTabPage, EnableValueHdl));
104 0 : m_pCbxAutoMax->SetClickHdl(LINK(this, ScaleTabPage, EnableValueHdl));
105 0 : m_pCbxAutoStepMain->SetClickHdl(LINK(this, ScaleTabPage, EnableValueHdl));
106 0 : m_pCbxAutoStepHelp->SetClickHdl(LINK(this, ScaleTabPage, EnableValueHdl));
107 0 : m_pCbxAutoOrigin->SetClickHdl(LINK(this, ScaleTabPage, EnableValueHdl));
108 0 : m_pCbx_AutoTimeResolution->SetClickHdl(LINK(this, ScaleTabPage, EnableValueHdl));
109 :
110 0 : m_pLB_AxisType->SetDropDownLineCount(3);
111 0 : m_pLB_AxisType->SetSelectHdl(LINK(this, ScaleTabPage, SelectAxisTypeHdl));
112 :
113 0 : m_pLB_TimeResolution->SetDropDownLineCount(3);
114 0 : m_pLB_MainTimeUnit->SetDropDownLineCount(3);
115 0 : m_pLB_HelpTimeUnit->SetDropDownLineCount(3);
116 :
117 0 : m_pFmtFldMin->SetModifyHdl(LINK(this, ScaleTabPage, FmtFieldModifiedHdl));
118 0 : m_pFmtFldMax->SetModifyHdl(LINK(this, ScaleTabPage, FmtFieldModifiedHdl));
119 0 : m_pFmtFldStepMain->SetModifyHdl(LINK(this, ScaleTabPage, FmtFieldModifiedHdl));
120 0 : m_pFmtFldOrigin->SetModifyHdl(LINK(this, ScaleTabPage, FmtFieldModifiedHdl));
121 :
122 0 : HideAllControls();
123 0 : }
124 :
125 0 : ScaleTabPage::~ScaleTabPage()
126 : {
127 0 : disposeOnce();
128 0 : }
129 :
130 0 : void ScaleTabPage::dispose()
131 : {
132 0 : m_pCbxReverse.clear();
133 0 : m_pCbxLogarithm.clear();
134 0 : m_pBxType.clear();
135 0 : m_pLB_AxisType.clear();
136 0 : m_pBxMinMax.clear();
137 0 : m_pFmtFldMin.clear();
138 0 : m_pCbxAutoMin.clear();
139 0 : m_pFmtFldMax.clear();
140 0 : m_pCbxAutoMax.clear();
141 0 : m_pBxResolution.clear();
142 0 : m_pLB_TimeResolution.clear();
143 0 : m_pCbx_AutoTimeResolution.clear();
144 0 : m_pTxtMain.clear();
145 0 : m_pFmtFldStepMain.clear();
146 0 : m_pMt_MainDateStep.clear();
147 0 : m_pLB_MainTimeUnit.clear();
148 0 : m_pCbxAutoStepMain.clear();
149 0 : m_pTxtHelpCount.clear();
150 0 : m_pTxtHelp.clear();
151 0 : m_pMtStepHelp.clear();
152 0 : m_pLB_HelpTimeUnit.clear();
153 0 : m_pCbxAutoStepHelp.clear();
154 0 : m_pFmtFldOrigin.clear();
155 0 : m_pCbxAutoOrigin.clear();
156 0 : m_pBxOrigin.clear();
157 0 : SfxTabPage::dispose();
158 0 : }
159 :
160 0 : IMPL_STATIC_LINK(
161 : ScaleTabPage, FmtFieldModifiedHdl, FormattedField*, pFmtFied )
162 : {
163 0 : if( pFmtFied )
164 0 : pFmtFied->SetDefaultValue( pFmtFied->GetValue() );
165 0 : return 0;
166 : }
167 :
168 0 : void ScaleTabPage::StateChanged( StateChangedType nType )
169 : {
170 0 : TabPage::StateChanged( nType );
171 0 : }
172 :
173 0 : void ScaleTabPage::EnableControls()
174 : {
175 0 : bool bValueAxis = chart2::AxisType::REALNUMBER == m_nAxisType
176 0 : || chart2::AxisType::PERCENT == m_nAxisType
177 0 : || chart2::AxisType::DATE == m_nAxisType;
178 0 : bool bDateAxis = chart2::AxisType::DATE == m_nAxisType;
179 :
180 0 : m_pBxType->Show(m_bAllowDateAxis);
181 :
182 0 : m_pCbxLogarithm->Show( bValueAxis && !bDateAxis );
183 :
184 0 : m_pBxMinMax->Show(bValueAxis);
185 :
186 0 : m_pTxtMain->Show( bValueAxis );
187 0 : m_pCbxAutoStepMain->Show( bValueAxis );
188 :
189 0 : m_pTxtHelpCount->Show( bValueAxis && !bDateAxis );
190 0 : m_pTxtHelp->Show( bDateAxis );
191 0 : m_pMtStepHelp->Show( bValueAxis );
192 0 : m_pCbxAutoStepHelp->Show( bValueAxis );
193 :
194 0 : m_pBxOrigin->Show( m_bShowAxisOrigin && bValueAxis );
195 0 : m_pBxResolution->Show( bDateAxis );
196 :
197 0 : bool bWasDateAxis = m_pMt_MainDateStep->IsVisible();
198 0 : if( bWasDateAxis != bDateAxis )
199 : {
200 : //transport value from one to other control
201 0 : if( bWasDateAxis )
202 0 : lcl_setValue( *m_pFmtFldStepMain, m_pMt_MainDateStep->GetValue() );
203 : else
204 0 : m_pMt_MainDateStep->SetValue( static_cast<sal_Int32>(m_pFmtFldStepMain->GetValue()) );
205 : }
206 :
207 0 : m_pFmtFldStepMain->Show( bValueAxis && !bDateAxis );
208 0 : m_pMt_MainDateStep->Show( bDateAxis );
209 :
210 0 : m_pLB_MainTimeUnit->Show( bDateAxis );
211 0 : m_pLB_HelpTimeUnit->Show( bDateAxis );
212 :
213 0 : EnableValueHdl(m_pCbxAutoMin);
214 0 : EnableValueHdl(m_pCbxAutoMax);
215 0 : EnableValueHdl(m_pCbxAutoStepMain);
216 0 : EnableValueHdl(m_pCbxAutoStepHelp);
217 0 : EnableValueHdl(m_pCbxAutoOrigin);
218 0 : EnableValueHdl(m_pCbx_AutoTimeResolution);
219 0 : }
220 :
221 0 : IMPL_LINK( ScaleTabPage, EnableValueHdl, CheckBox *, pCbx )
222 : {
223 0 : bool bEnable = pCbx && !pCbx->IsChecked() && pCbx->IsEnabled();
224 0 : if (pCbx == m_pCbxAutoMin)
225 : {
226 0 : m_pFmtFldMin->Enable( bEnable );
227 : }
228 0 : else if (pCbx == m_pCbxAutoMax)
229 : {
230 0 : m_pFmtFldMax->Enable( bEnable );
231 : }
232 0 : else if (pCbx == m_pCbxAutoStepMain)
233 : {
234 0 : m_pFmtFldStepMain->Enable( bEnable );
235 0 : m_pMt_MainDateStep->Enable( bEnable );
236 0 : m_pLB_MainTimeUnit->Enable( bEnable );
237 : }
238 0 : else if (pCbx == m_pCbxAutoStepHelp)
239 : {
240 0 : m_pMtStepHelp->Enable( bEnable );
241 0 : m_pLB_HelpTimeUnit->Enable( bEnable );
242 : }
243 0 : else if (pCbx == m_pCbx_AutoTimeResolution)
244 : {
245 0 : m_pLB_TimeResolution->Enable( bEnable );
246 : }
247 0 : else if (pCbx == m_pCbxAutoOrigin)
248 : {
249 0 : m_pFmtFldOrigin->Enable( bEnable );
250 : }
251 0 : return 0;
252 : }
253 :
254 : enum AxisTypeListBoxEntry
255 : {
256 : TYPE_AUTO=0,
257 : TYPE_TEXT=1,
258 : TYPE_DATE=2
259 : };
260 :
261 0 : IMPL_LINK_NOARG(ScaleTabPage, SelectAxisTypeHdl)
262 : {
263 0 : sal_uInt16 nPos = m_pLB_AxisType->GetSelectEntryPos();
264 0 : if( nPos==TYPE_DATE )
265 0 : m_nAxisType = chart2::AxisType::DATE;
266 : else
267 0 : m_nAxisType = chart2::AxisType::CATEGORY;
268 0 : if( chart2::AxisType::DATE == m_nAxisType )
269 0 : m_pCbxLogarithm->Check(false);
270 0 : EnableControls();
271 0 : SetNumFormat();
272 0 : return 0;
273 : }
274 :
275 0 : VclPtr<SfxTabPage> ScaleTabPage::Create(vcl::Window* pWindow,const SfxItemSet* rOutAttrs)
276 : {
277 0 : return VclPtr<ScaleTabPage>::Create(pWindow, *rOutAttrs);
278 : }
279 :
280 0 : bool ScaleTabPage::FillItemSet(SfxItemSet* rOutAttrs)
281 : {
282 : OSL_PRECOND( pNumFormatter, "No NumberFormatter available" );
283 :
284 0 : rOutAttrs->Put(SfxInt32Item(SCHATTR_AXISTYPE, m_nAxisType));
285 0 : if(m_bAllowDateAxis)
286 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_DATEAXIS, TYPE_AUTO==m_pLB_AxisType->GetSelectEntryPos()));
287 :
288 0 : bool bAutoScale = false;
289 0 : if( m_nAxisType==chart2::AxisType::CATEGORY )
290 0 : bAutoScale = true;//reset scaling for category charts
291 :
292 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_MIN ,bAutoScale || m_pCbxAutoMin->IsChecked()));
293 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_MAX ,bAutoScale || m_pCbxAutoMax->IsChecked()));
294 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_STEP_HELP,bAutoScale || m_pCbxAutoStepHelp->IsChecked()));
295 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_ORIGIN ,bAutoScale || m_pCbxAutoOrigin->IsChecked()));
296 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_LOGARITHM ,m_pCbxLogarithm->IsChecked()));
297 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_REVERSE ,m_pCbxReverse->IsChecked()));
298 0 : rOutAttrs->Put(SvxDoubleItem(fMax , SCHATTR_AXIS_MAX));
299 0 : rOutAttrs->Put(SvxDoubleItem(fMin , SCHATTR_AXIS_MIN));
300 0 : rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_STEP_HELP, nStepHelp));
301 0 : rOutAttrs->Put(SvxDoubleItem(fOrigin , SCHATTR_AXIS_ORIGIN));
302 :
303 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_STEP_MAIN,bAutoScale || m_pCbxAutoStepMain->IsChecked()));
304 0 : rOutAttrs->Put(SvxDoubleItem(fStepMain,SCHATTR_AXIS_STEP_MAIN));
305 :
306 0 : rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_TIME_RESOLUTION,bAutoScale || m_pCbx_AutoTimeResolution->IsChecked()));
307 0 : rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_TIME_RESOLUTION,m_nTimeResolution));
308 :
309 0 : rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_MAIN_TIME_UNIT,m_nMainTimeUnit));
310 0 : rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_HELP_TIME_UNIT,m_nHelpTimeUnit));
311 :
312 0 : return true;
313 : }
314 :
315 0 : void ScaleTabPage::Reset(const SfxItemSet* rInAttrs)
316 : {
317 : OSL_PRECOND( pNumFormatter, "No NumberFormatter available" );
318 0 : if(!pNumFormatter)
319 0 : return;
320 :
321 0 : const SfxPoolItem *pPoolItem = NULL;
322 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_ALLOW_DATEAXIS, true, &pPoolItem) == SfxItemState::SET)
323 0 : m_bAllowDateAxis = (bool) static_cast<const SfxBoolItem*>(pPoolItem)->GetValue();
324 0 : m_nAxisType=chart2::AxisType::REALNUMBER;
325 0 : if (rInAttrs->GetItemState(SCHATTR_AXISTYPE, true, &pPoolItem) == SfxItemState::SET)
326 0 : m_nAxisType = (int) static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
327 0 : if( m_nAxisType==chart2::AxisType::DATE && !m_bAllowDateAxis )
328 0 : m_nAxisType=chart2::AxisType::CATEGORY;
329 0 : if( m_bAllowDateAxis )
330 : {
331 0 : bool bAutoDateAxis = false;
332 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_DATEAXIS, true, &pPoolItem) == SfxItemState::SET)
333 0 : bAutoDateAxis = (bool) static_cast<const SfxBoolItem*>(pPoolItem)->GetValue();
334 :
335 0 : sal_uInt16 nPos = 0;
336 0 : if( m_nAxisType==chart2::AxisType::DATE )
337 0 : nPos=TYPE_DATE;
338 0 : else if( bAutoDateAxis )
339 0 : nPos=TYPE_AUTO;
340 : else
341 0 : nPos=TYPE_TEXT;
342 0 : m_pLB_AxisType->SelectEntryPos( nPos );
343 : }
344 :
345 0 : m_pCbxAutoMin->Check( true );
346 0 : m_pCbxAutoMax->Check( true );
347 0 : m_pCbxAutoStepMain->Check( true );
348 0 : m_pCbxAutoStepHelp->Check( true );
349 0 : m_pCbxAutoOrigin->Check( true );
350 0 : m_pCbx_AutoTimeResolution->Check( true );
351 :
352 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_MIN,true,&pPoolItem) == SfxItemState::SET)
353 0 : m_pCbxAutoMin->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
354 :
355 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_MIN,true, &pPoolItem) == SfxItemState::SET)
356 : {
357 0 : fMin = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
358 0 : lcl_setValue( *m_pFmtFldMin, fMin );
359 : }
360 :
361 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_MAX,true, &pPoolItem) == SfxItemState::SET)
362 0 : m_pCbxAutoMax->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
363 :
364 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_MAX,true, &pPoolItem) == SfxItemState::SET)
365 : {
366 0 : fMax = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
367 0 : lcl_setValue( *m_pFmtFldMax, fMax );
368 : }
369 :
370 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_STEP_MAIN,true, &pPoolItem) == SfxItemState::SET)
371 0 : m_pCbxAutoStepMain->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
372 :
373 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_STEP_MAIN,true, &pPoolItem) == SfxItemState::SET)
374 : {
375 0 : fStepMain = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
376 0 : lcl_setValue( *m_pFmtFldStepMain, fStepMain );
377 0 : m_pMt_MainDateStep->SetValue( static_cast<sal_Int32>(fStepMain) );
378 : }
379 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_STEP_HELP,true, &pPoolItem) == SfxItemState::SET)
380 0 : m_pCbxAutoStepHelp->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
381 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_LOGARITHM,true, &pPoolItem) == SfxItemState::SET)
382 0 : m_pCbxLogarithm->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
383 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_REVERSE,true, &pPoolItem) == SfxItemState::SET)
384 0 : m_pCbxReverse->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
385 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_STEP_HELP,true, &pPoolItem) == SfxItemState::SET)
386 : {
387 0 : nStepHelp = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
388 0 : m_pMtStepHelp->SetValue( nStepHelp );
389 : }
390 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_ORIGIN,true, &pPoolItem) == SfxItemState::SET)
391 0 : m_pCbxAutoOrigin->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
392 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_ORIGIN,true, &pPoolItem) == SfxItemState::SET)
393 : {
394 0 : fOrigin = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
395 0 : lcl_setValue( *m_pFmtFldOrigin, fOrigin );
396 : }
397 :
398 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_TIME_RESOLUTION,true, &pPoolItem) == SfxItemState::SET)
399 0 : m_pCbx_AutoTimeResolution->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
400 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_TIME_RESOLUTION,true, &pPoolItem) == SfxItemState::SET)
401 : {
402 0 : m_nTimeResolution = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
403 0 : m_pLB_TimeResolution->SelectEntryPos( m_nTimeResolution );
404 : }
405 :
406 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_MAIN_TIME_UNIT,true, &pPoolItem) == SfxItemState::SET)
407 : {
408 0 : m_nMainTimeUnit = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
409 0 : m_pLB_MainTimeUnit->SelectEntryPos( m_nMainTimeUnit );
410 : }
411 0 : if (rInAttrs->GetItemState(SCHATTR_AXIS_HELP_TIME_UNIT,true, &pPoolItem) == SfxItemState::SET)
412 : {
413 0 : m_nHelpTimeUnit = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
414 0 : m_pLB_HelpTimeUnit->SelectEntryPos( m_nHelpTimeUnit );
415 : }
416 :
417 0 : EnableControls();
418 0 : SetNumFormat();
419 : }
420 :
421 0 : SfxTabPage::sfxpg ScaleTabPage::DeactivatePage(SfxItemSet* pItemSet)
422 : {
423 0 : if( !pNumFormatter )
424 : {
425 : OSL_FAIL( "No NumberFormatter available" );
426 0 : return LEAVE_PAGE;
427 : }
428 :
429 0 : bool bDateAxis = chart2::AxisType::DATE == m_nAxisType;
430 :
431 0 : sal_uInt32 nMinMaxOriginFmt = m_pFmtFldMax->GetFormatKey();
432 0 : if ((pNumFormatter->GetType(nMinMaxOriginFmt) & ~css::util::NumberFormat::DEFINED) == css::util::NumberFormat::TEXT)
433 0 : nMinMaxOriginFmt = 0;
434 : // numberformat_text cause numbers to fail being numbers... Shouldn't happen, but can.
435 0 : sal_uInt32 nStepFmt = m_pFmtFldStepMain->GetFormatKey();
436 0 : if ((pNumFormatter->GetType(nStepFmt) & ~css::util::NumberFormat::DEFINED) == css::util::NumberFormat::TEXT)
437 0 : nStepFmt = 0;
438 :
439 0 : Control* pControl = NULL;
440 0 : sal_uInt16 nErrStrId = 0;
441 : double fDummy;
442 :
443 0 : fMax = m_pFmtFldMax->GetValue();
444 0 : fMin = m_pFmtFldMin->GetValue();
445 0 : fOrigin = m_pFmtFldOrigin->GetValue();
446 0 : fStepMain = bDateAxis ? m_pMt_MainDateStep->GetValue() : m_pFmtFldStepMain->GetValue();
447 0 : nStepHelp = static_cast< sal_Int32 >( m_pMtStepHelp->GetValue());
448 0 : m_nTimeResolution = m_pLB_TimeResolution->GetSelectEntryPos();
449 0 : m_nMainTimeUnit = m_pLB_MainTimeUnit->GetSelectEntryPos();
450 0 : m_nHelpTimeUnit = m_pLB_HelpTimeUnit->GetSelectEntryPos();
451 :
452 0 : if( chart2::AxisType::REALNUMBER != m_nAxisType )
453 0 : m_pCbxLogarithm->Show( false );
454 :
455 : //check which entries need user action
456 :
457 0 : if ( m_pCbxLogarithm->IsChecked() &&
458 0 : ( ( !m_pCbxAutoMin->IsChecked() && fMin <= 0.0 )
459 0 : || ( !m_pCbxAutoMax->IsChecked() && fMax <= 0.0 ) ) )
460 : {
461 0 : pControl = m_pFmtFldMin;
462 0 : nErrStrId = STR_BAD_LOGARITHM;
463 : }
464 : // check for entries that cannot be parsed for the current number format
465 0 : else if ( m_pFmtFldMin->IsModified()
466 0 : && !m_pCbxAutoMin->IsChecked()
467 0 : && !pNumFormatter->IsNumberFormat( m_pFmtFldMin->GetText(), nMinMaxOriginFmt, fDummy))
468 : {
469 0 : pControl = m_pFmtFldMin;
470 0 : nErrStrId = STR_INVALID_NUMBER;
471 : }
472 0 : else if ( m_pFmtFldMax->IsModified()
473 0 : && !m_pCbxAutoMax->IsChecked()
474 0 : && !pNumFormatter->IsNumberFormat( m_pFmtFldMax->GetText(), nMinMaxOriginFmt, fDummy))
475 : {
476 0 : pControl = m_pFmtFldMax;
477 0 : nErrStrId = STR_INVALID_NUMBER;
478 : }
479 0 : else if ( !bDateAxis && m_pFmtFldStepMain->IsModified()
480 0 : && !m_pCbxAutoStepMain->IsChecked()
481 0 : && !pNumFormatter->IsNumberFormat( m_pFmtFldStepMain->GetText(), nStepFmt, fDummy))
482 : {
483 0 : pControl = m_pFmtFldStepMain;
484 0 : nErrStrId = STR_INVALID_NUMBER;
485 : }
486 0 : else if (m_pFmtFldOrigin->IsModified() && !m_pCbxAutoOrigin->IsChecked() &&
487 0 : !pNumFormatter->IsNumberFormat( m_pFmtFldOrigin->GetText(), nMinMaxOriginFmt, fDummy))
488 : {
489 0 : pControl = m_pFmtFldOrigin;
490 0 : nErrStrId = STR_INVALID_NUMBER;
491 : }
492 0 : else if (!m_pCbxAutoStepMain->IsChecked() && fStepMain <= 0.0)
493 : {
494 0 : pControl = m_pFmtFldStepMain;
495 0 : nErrStrId = STR_STEP_GT_ZERO;
496 : }
497 0 : else if (!m_pCbxAutoMax->IsChecked() && !m_pCbxAutoMin->IsChecked() &&
498 0 : fMin >= fMax)
499 : {
500 0 : pControl = m_pFmtFldMin;
501 0 : nErrStrId = STR_MIN_GREATER_MAX;
502 : }
503 0 : else if( bDateAxis )
504 : {
505 0 : if( !m_pCbxAutoStepMain->IsChecked() && !m_pCbxAutoStepHelp->IsChecked() )
506 : {
507 0 : if( m_nHelpTimeUnit > m_nMainTimeUnit )
508 : {
509 0 : pControl = m_pLB_MainTimeUnit;
510 0 : nErrStrId = STR_INVALID_INTERVALS;
511 : }
512 0 : else if( m_nHelpTimeUnit == m_nMainTimeUnit && nStepHelp > fStepMain )
513 : {
514 0 : pControl = m_pLB_MainTimeUnit;
515 0 : nErrStrId = STR_INVALID_INTERVALS;
516 : }
517 : }
518 0 : if( !nErrStrId && !m_pCbx_AutoTimeResolution->IsChecked() )
519 : {
520 0 : if( (!m_pCbxAutoStepMain->IsChecked() && m_nTimeResolution > m_nMainTimeUnit )
521 0 : ||
522 0 : (!m_pCbxAutoStepHelp->IsChecked() && m_nTimeResolution > m_nHelpTimeUnit )
523 : )
524 : {
525 0 : pControl = m_pLB_TimeResolution;
526 0 : nErrStrId = STR_INVALID_TIME_UNIT;
527 : }
528 : }
529 : }
530 :
531 0 : if( ShowWarning( nErrStrId, pControl ) )
532 0 : return KEEP_PAGE;
533 :
534 0 : if( pItemSet )
535 0 : FillItemSet( pItemSet );
536 :
537 0 : return LEAVE_PAGE;
538 : }
539 :
540 0 : void ScaleTabPage::SetNumFormatter( SvNumberFormatter* pFormatter )
541 : {
542 0 : pNumFormatter = pFormatter;
543 0 : m_pFmtFldMax->SetFormatter( pNumFormatter );
544 0 : m_pFmtFldMin->SetFormatter( pNumFormatter );
545 0 : m_pFmtFldStepMain->SetFormatter( pNumFormatter );
546 0 : m_pFmtFldOrigin->SetFormatter( pNumFormatter );
547 :
548 : // #i6278# allow more decimal places than the output format. As
549 : // the numbers shown in the edit fields are used for input, it makes more
550 : // sense to display the values in the input format rather than the output
551 : // format.
552 0 : m_pFmtFldMax->UseInputStringForFormatting();
553 0 : m_pFmtFldMin->UseInputStringForFormatting();
554 0 : m_pFmtFldStepMain->UseInputStringForFormatting();
555 0 : m_pFmtFldOrigin->UseInputStringForFormatting();
556 :
557 0 : SetNumFormat();
558 0 : }
559 :
560 0 : void ScaleTabPage::SetNumFormat()
561 : {
562 0 : const SfxPoolItem *pPoolItem = NULL;
563 :
564 0 : if( GetItemSet().GetItemState( SID_ATTR_NUMBERFORMAT_VALUE, true, &pPoolItem ) == SfxItemState::SET )
565 : {
566 0 : sal_uLong nFmt = (sal_uLong)static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
567 :
568 0 : m_pFmtFldMax->SetFormatKey( nFmt );
569 0 : m_pFmtFldMin->SetFormatKey( nFmt );
570 0 : m_pFmtFldOrigin->SetFormatKey( nFmt );
571 :
572 0 : if( pNumFormatter )
573 : {
574 0 : short eType = pNumFormatter->GetType( nFmt );
575 0 : if( eType == css::util::NumberFormat::DATE )
576 : {
577 : // for intervals use standard format for dates (so you can enter a number of days)
578 0 : const SvNumberformat* pFormat = pNumFormatter->GetEntry( nFmt );
579 0 : if( pFormat )
580 0 : nFmt = pNumFormatter->GetStandardIndex( pFormat->GetLanguage());
581 : else
582 0 : nFmt = pNumFormatter->GetStandardIndex();
583 : }
584 0 : else if( eType == css::util::NumberFormat::DATETIME )
585 : {
586 : // for intervals use time format for date times
587 0 : const SvNumberformat* pFormat = pNumFormatter->GetEntry( nFmt );
588 0 : if( pFormat )
589 0 : nFmt = pNumFormatter->GetStandardFormat( css::util::NumberFormat::TIME, pFormat->GetLanguage() );
590 : else
591 0 : nFmt = pNumFormatter->GetStandardFormat( css::util::NumberFormat::TIME );
592 : }
593 :
594 0 : if( chart2::AxisType::DATE == m_nAxisType && ( eType != css::util::NumberFormat::DATE && eType != css::util::NumberFormat::DATETIME) )
595 : {
596 0 : const SvNumberformat* pFormat = pNumFormatter->GetEntry( nFmt );
597 0 : if( pFormat )
598 0 : nFmt = pNumFormatter->GetStandardFormat( css::util::NumberFormat::DATE, pFormat->GetLanguage() );
599 : else
600 0 : nFmt = pNumFormatter->GetStandardFormat( css::util::NumberFormat::DATE );
601 :
602 0 : m_pFmtFldMax->SetFormatKey( nFmt );
603 0 : m_pFmtFldMin->SetFormatKey( nFmt );
604 0 : m_pFmtFldOrigin->SetFormatKey( nFmt );
605 : }
606 : }
607 :
608 0 : m_pFmtFldStepMain->SetFormatKey( nFmt );
609 : }
610 0 : }
611 :
612 0 : void ScaleTabPage::ShowAxisOrigin( bool bShowOrigin )
613 : {
614 0 : m_bShowAxisOrigin = bShowOrigin;
615 0 : if( !AxisHelper::isAxisPositioningEnabled() )
616 0 : m_bShowAxisOrigin = true;
617 0 : }
618 :
619 0 : bool ScaleTabPage::ShowWarning( sal_uInt16 nResIdMessage, Control* pControl /* = NULL */ )
620 : {
621 0 : if( nResIdMessage == 0 )
622 0 : return false;
623 :
624 0 : ScopedVclPtr<WarningBox>::Create( this, WinBits( WB_OK ), SCH_RESSTR( nResIdMessage ) )->Execute();
625 0 : if( pControl )
626 : {
627 0 : pControl->GrabFocus();
628 0 : Edit* pEdit = dynamic_cast<Edit*>(pControl);
629 0 : if(pEdit)
630 0 : pEdit->SetSelection( Selection( 0, SELECTION_MAX ));
631 : }
632 0 : return true;
633 : }
634 :
635 0 : void ScaleTabPage::HideAllControls()
636 : {
637 : // We need to set these controls invisible when the class is instantiated
638 : // since some code in EnableControls() depends on that logic. The real
639 : // visibility of these controls depend on axis data type, and are
640 : // set in EnableControls().
641 :
642 0 : m_pBxType->Hide();
643 0 : m_pCbxLogarithm->Hide();
644 0 : m_pBxMinMax->Hide();
645 0 : m_pTxtMain->Hide();
646 0 : m_pFmtFldStepMain->Hide();
647 0 : m_pMt_MainDateStep->Hide();
648 0 : m_pLB_MainTimeUnit->Hide();
649 0 : m_pCbxAutoStepMain->Hide();
650 0 : m_pTxtHelpCount->Hide();
651 0 : m_pTxtHelp->Hide();
652 0 : m_pMtStepHelp->Hide();
653 0 : m_pCbxAutoStepHelp->Hide();
654 0 : m_pBxOrigin->Hide();
655 0 : m_pBxResolution->Hide();
656 0 : }
657 :
658 57 : } //namespace chart
659 :
660 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|