LCOV - code coverage report
Current view: top level - chart2/source/controller/dialogs - tp_Scale.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 357 0.3 %
Date: 2014-11-03 Functions: 2 21 9.5 %
Legend: Lines: hit not hit

          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 : IMPL_LINK( ScaleTabPage, FmtFieldModifiedHdl, FormattedField*, pFmtFied )
     126             : {
     127           0 :     if( pFmtFied )
     128           0 :         pFmtFied->SetDefaultValue( pFmtFied->GetValue() );
     129           0 :     return 0;
     130             : }
     131             : 
     132           0 : void ScaleTabPage::StateChanged( StateChangedType nType )
     133             : {
     134           0 :     TabPage::StateChanged( nType );
     135           0 : }
     136             : 
     137           0 : void ScaleTabPage::EnableControls()
     138             : {
     139           0 :     bool bValueAxis = chart2::AxisType::REALNUMBER == m_nAxisType
     140           0 :                    || chart2::AxisType::PERCENT == m_nAxisType
     141           0 :                    || chart2::AxisType::DATE == m_nAxisType;
     142           0 :     bool bDateAxis = chart2::AxisType::DATE == m_nAxisType;
     143             : 
     144           0 :     m_pBxType->Show(m_bAllowDateAxis);
     145             : 
     146           0 :     m_pCbxLogarithm->Show( bValueAxis && !bDateAxis );
     147             : 
     148           0 :     m_pBxMinMax->Show(bValueAxis);
     149             : 
     150           0 :     m_pTxtMain->Show( bValueAxis );
     151           0 :     m_pCbxAutoStepMain->Show( bValueAxis );
     152             : 
     153           0 :     m_pTxtHelpCount->Show( bValueAxis && !bDateAxis );
     154           0 :     m_pTxtHelp->Show( bDateAxis );
     155           0 :     m_pMtStepHelp->Show( bValueAxis );
     156           0 :     m_pCbxAutoStepHelp->Show( bValueAxis );
     157             : 
     158           0 :     m_pBxOrigin->Show( m_bShowAxisOrigin && bValueAxis );
     159           0 :     m_pBxResolution->Show( bDateAxis );
     160             : 
     161           0 :     bool bWasDateAxis = m_pMt_MainDateStep->IsVisible();
     162           0 :     if( bWasDateAxis != bDateAxis )
     163             :     {
     164             :         //transport value from one to other control
     165           0 :         if( bWasDateAxis )
     166           0 :             lcl_setValue( *m_pFmtFldStepMain, m_pMt_MainDateStep->GetValue() );
     167             :         else
     168           0 :             m_pMt_MainDateStep->SetValue( static_cast<sal_Int32>(m_pFmtFldStepMain->GetValue()) );
     169             :     }
     170             : 
     171           0 :     m_pFmtFldStepMain->Show( bValueAxis && !bDateAxis );
     172           0 :     m_pMt_MainDateStep->Show( bDateAxis );
     173             : 
     174           0 :     m_pLB_MainTimeUnit->Show( bDateAxis );
     175           0 :     m_pLB_HelpTimeUnit->Show( bDateAxis );
     176             : 
     177           0 :     EnableValueHdl(m_pCbxAutoMin);
     178           0 :     EnableValueHdl(m_pCbxAutoMax);
     179           0 :     EnableValueHdl(m_pCbxAutoStepMain);
     180           0 :     EnableValueHdl(m_pCbxAutoStepHelp);
     181           0 :     EnableValueHdl(m_pCbxAutoOrigin);
     182           0 :     EnableValueHdl(m_pCbx_AutoTimeResolution);
     183           0 : }
     184             : 
     185           0 : IMPL_LINK( ScaleTabPage, EnableValueHdl, CheckBox *, pCbx )
     186             : {
     187           0 :     bool bEnable = pCbx && !pCbx->IsChecked() && pCbx->IsEnabled();
     188           0 :     if (pCbx == m_pCbxAutoMin)
     189             :     {
     190           0 :         m_pFmtFldMin->Enable( bEnable );
     191             :     }
     192           0 :     else if (pCbx == m_pCbxAutoMax)
     193             :     {
     194           0 :         m_pFmtFldMax->Enable( bEnable );
     195             :     }
     196           0 :     else if (pCbx == m_pCbxAutoStepMain)
     197             :     {
     198           0 :         m_pFmtFldStepMain->Enable( bEnable );
     199           0 :         m_pMt_MainDateStep->Enable( bEnable );
     200           0 :         m_pLB_MainTimeUnit->Enable( bEnable );
     201             :     }
     202           0 :     else if (pCbx == m_pCbxAutoStepHelp)
     203             :     {
     204           0 :         m_pMtStepHelp->Enable( bEnable );
     205           0 :         m_pLB_HelpTimeUnit->Enable( bEnable );
     206             :     }
     207           0 :     else if (pCbx == m_pCbx_AutoTimeResolution)
     208             :     {
     209           0 :         m_pLB_TimeResolution->Enable( bEnable );
     210             :     }
     211           0 :     else if (pCbx == m_pCbxAutoOrigin)
     212             :     {
     213           0 :         m_pFmtFldOrigin->Enable( bEnable );
     214             :     }
     215           0 :     return 0;
     216             : }
     217             : 
     218             : enum AxisTypeListBoxEntry
     219             : {
     220             :     TYPE_AUTO=0,
     221             :     TYPE_TEXT=1,
     222             :     TYPE_DATE=2
     223             : };
     224             : 
     225           0 : IMPL_LINK_NOARG(ScaleTabPage, SelectAxisTypeHdl)
     226             : {
     227           0 :     sal_uInt16 nPos = m_pLB_AxisType->GetSelectEntryPos();
     228           0 :     if( nPos==TYPE_DATE )
     229           0 :         m_nAxisType = chart2::AxisType::DATE;
     230             :     else
     231           0 :         m_nAxisType = chart2::AxisType::CATEGORY;
     232           0 :     if( chart2::AxisType::DATE == m_nAxisType )
     233           0 :         m_pCbxLogarithm->Check(false);
     234           0 :     EnableControls();
     235           0 :     SetNumFormat();
     236           0 :     return 0;
     237             : }
     238             : 
     239           0 : SfxTabPage* ScaleTabPage::Create(vcl::Window* pWindow,const SfxItemSet* rOutAttrs)
     240             : {
     241           0 :     return new ScaleTabPage(pWindow, *rOutAttrs);
     242             : }
     243             : 
     244           0 : bool ScaleTabPage::FillItemSet(SfxItemSet* rOutAttrs)
     245             : {
     246             :     OSL_PRECOND( pNumFormatter, "No NumberFormatter available" );
     247             : 
     248           0 :     rOutAttrs->Put(SfxInt32Item(SCHATTR_AXISTYPE, m_nAxisType));
     249           0 :     if(m_bAllowDateAxis)
     250           0 :         rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_DATEAXIS, TYPE_AUTO==m_pLB_AxisType->GetSelectEntryPos()));
     251             : 
     252           0 :     bool bAutoScale = false;
     253           0 :     if( m_nAxisType==chart2::AxisType::CATEGORY )
     254           0 :         bAutoScale = true;//reset scaling for category charts
     255             : 
     256           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_MIN      ,bAutoScale || m_pCbxAutoMin->IsChecked()));
     257           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_MAX      ,bAutoScale || m_pCbxAutoMax->IsChecked()));
     258           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_STEP_HELP,bAutoScale || m_pCbxAutoStepHelp->IsChecked()));
     259           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_ORIGIN   ,bAutoScale || m_pCbxAutoOrigin->IsChecked()));
     260           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_LOGARITHM     ,m_pCbxLogarithm->IsChecked()));
     261           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_REVERSE       ,m_pCbxReverse->IsChecked()));
     262           0 :     rOutAttrs->Put(SvxDoubleItem(fMax     , SCHATTR_AXIS_MAX));
     263           0 :     rOutAttrs->Put(SvxDoubleItem(fMin     , SCHATTR_AXIS_MIN));
     264           0 :     rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_STEP_HELP, nStepHelp));
     265           0 :     rOutAttrs->Put(SvxDoubleItem(fOrigin  , SCHATTR_AXIS_ORIGIN));
     266             : 
     267           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_STEP_MAIN,bAutoScale || m_pCbxAutoStepMain->IsChecked()));
     268           0 :     rOutAttrs->Put(SvxDoubleItem(fStepMain,SCHATTR_AXIS_STEP_MAIN));
     269             : 
     270           0 :     rOutAttrs->Put(SfxBoolItem(SCHATTR_AXIS_AUTO_TIME_RESOLUTION,bAutoScale || m_pCbx_AutoTimeResolution->IsChecked()));
     271           0 :     rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_TIME_RESOLUTION,m_nTimeResolution));
     272             : 
     273           0 :     rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_MAIN_TIME_UNIT,m_nMainTimeUnit));
     274           0 :     rOutAttrs->Put(SfxInt32Item(SCHATTR_AXIS_HELP_TIME_UNIT,m_nHelpTimeUnit));
     275             : 
     276           0 :     return true;
     277             : }
     278             : 
     279           0 : void ScaleTabPage::Reset(const SfxItemSet* rInAttrs)
     280             : {
     281             :     OSL_PRECOND( pNumFormatter, "No NumberFormatter available" );
     282           0 :     if(!pNumFormatter)
     283           0 :         return;
     284             : 
     285           0 :     const SfxPoolItem *pPoolItem = NULL;
     286           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_ALLOW_DATEAXIS, true, &pPoolItem) == SfxItemState::SET)
     287           0 :         m_bAllowDateAxis = (bool) static_cast<const SfxBoolItem*>(pPoolItem)->GetValue();
     288           0 :     m_nAxisType=chart2::AxisType::REALNUMBER;
     289           0 :     if (rInAttrs->GetItemState(SCHATTR_AXISTYPE, true, &pPoolItem) == SfxItemState::SET)
     290           0 :         m_nAxisType = (int) static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
     291           0 :     if( m_nAxisType==chart2::AxisType::DATE && !m_bAllowDateAxis )
     292           0 :         m_nAxisType=chart2::AxisType::CATEGORY;
     293           0 :     if( m_bAllowDateAxis )
     294             :     {
     295           0 :         bool bAutoDateAxis = false;
     296           0 :         if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_DATEAXIS, true, &pPoolItem) == SfxItemState::SET)
     297           0 :             bAutoDateAxis = (bool) static_cast<const SfxBoolItem*>(pPoolItem)->GetValue();
     298             : 
     299           0 :         sal_uInt16 nPos = 0;
     300           0 :         if( m_nAxisType==chart2::AxisType::DATE )
     301           0 :             nPos=TYPE_DATE;
     302           0 :         else if( bAutoDateAxis )
     303           0 :             nPos=TYPE_AUTO;
     304             :         else
     305           0 :             nPos=TYPE_TEXT;
     306           0 :         m_pLB_AxisType->SelectEntryPos( nPos );
     307             :     }
     308             : 
     309           0 :     m_pCbxAutoMin->Check( true );
     310           0 :     m_pCbxAutoMax->Check( true );
     311           0 :     m_pCbxAutoStepMain->Check( true );
     312           0 :     m_pCbxAutoStepHelp->Check( true );
     313           0 :     m_pCbxAutoOrigin->Check( true );
     314           0 :     m_pCbx_AutoTimeResolution->Check( true );
     315             : 
     316           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_MIN,true,&pPoolItem) == SfxItemState::SET)
     317           0 :         m_pCbxAutoMin->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     318             : 
     319           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_MIN,true, &pPoolItem) == SfxItemState::SET)
     320             :     {
     321           0 :         fMin = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
     322           0 :         lcl_setValue( *m_pFmtFldMin, fMin );
     323             :     }
     324             : 
     325           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_MAX,true, &pPoolItem) == SfxItemState::SET)
     326           0 :         m_pCbxAutoMax->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     327             : 
     328           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_MAX,true, &pPoolItem) == SfxItemState::SET)
     329             :     {
     330           0 :         fMax = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
     331           0 :         lcl_setValue( *m_pFmtFldMax, fMax );
     332             :     }
     333             : 
     334           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_STEP_MAIN,true, &pPoolItem) == SfxItemState::SET)
     335           0 :         m_pCbxAutoStepMain->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     336             : 
     337           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_STEP_MAIN,true, &pPoolItem) == SfxItemState::SET)
     338             :     {
     339           0 :         fStepMain = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
     340           0 :         lcl_setValue( *m_pFmtFldStepMain, fStepMain );
     341           0 :         m_pMt_MainDateStep->SetValue( static_cast<sal_Int32>(fStepMain) );
     342             :     }
     343           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_STEP_HELP,true, &pPoolItem) == SfxItemState::SET)
     344           0 :         m_pCbxAutoStepHelp->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     345           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_LOGARITHM,true, &pPoolItem) == SfxItemState::SET)
     346           0 :         m_pCbxLogarithm->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     347           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_REVERSE,true, &pPoolItem) == SfxItemState::SET)
     348           0 :         m_pCbxReverse->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     349           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_STEP_HELP,true, &pPoolItem) == SfxItemState::SET)
     350             :     {
     351           0 :         nStepHelp = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
     352           0 :         m_pMtStepHelp->SetValue( nStepHelp );
     353             :     }
     354           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_ORIGIN,true, &pPoolItem) == SfxItemState::SET)
     355           0 :         m_pCbxAutoOrigin->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     356           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_ORIGIN,true, &pPoolItem) == SfxItemState::SET)
     357             :     {
     358           0 :         fOrigin = static_cast<const SvxDoubleItem*>(pPoolItem)->GetValue();
     359           0 :         lcl_setValue( *m_pFmtFldOrigin, fOrigin );
     360             :     }
     361             : 
     362           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_AUTO_TIME_RESOLUTION,true, &pPoolItem) == SfxItemState::SET)
     363           0 :         m_pCbx_AutoTimeResolution->Check(static_cast<const SfxBoolItem*>(pPoolItem)->GetValue());
     364           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_TIME_RESOLUTION,true, &pPoolItem) == SfxItemState::SET)
     365             :     {
     366           0 :         m_nTimeResolution = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
     367           0 :         m_pLB_TimeResolution->SelectEntryPos( m_nTimeResolution );
     368             :     }
     369             : 
     370           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_MAIN_TIME_UNIT,true, &pPoolItem) == SfxItemState::SET)
     371             :     {
     372           0 :         m_nMainTimeUnit = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
     373           0 :         m_pLB_MainTimeUnit->SelectEntryPos( m_nMainTimeUnit );
     374             :     }
     375           0 :     if (rInAttrs->GetItemState(SCHATTR_AXIS_HELP_TIME_UNIT,true, &pPoolItem) == SfxItemState::SET)
     376             :     {
     377           0 :         m_nHelpTimeUnit = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
     378           0 :         m_pLB_HelpTimeUnit->SelectEntryPos( m_nHelpTimeUnit );
     379             :     }
     380             : 
     381           0 :     EnableControls();
     382           0 :     SetNumFormat();
     383             : }
     384             : 
     385           0 : int ScaleTabPage::DeactivatePage(SfxItemSet* pItemSet)
     386             : {
     387           0 :     if( !pNumFormatter )
     388             :     {
     389             :         OSL_FAIL( "No NumberFormatter available" );
     390           0 :         return LEAVE_PAGE;
     391             :     }
     392             : 
     393           0 :     bool bDateAxis = chart2::AxisType::DATE == m_nAxisType;
     394             : 
     395           0 :     sal_uInt32 nMinMaxOriginFmt = m_pFmtFldMax->GetFormatKey();
     396           0 :     if ((pNumFormatter->GetType(nMinMaxOriginFmt) &~ NUMBERFORMAT_DEFINED) == NUMBERFORMAT_TEXT)
     397           0 :         nMinMaxOriginFmt = 0;
     398             :     // numberformat_text cause numbers to fail being numbers...  Shouldn't happen, but can.
     399           0 :     sal_uInt32 nStepFmt = m_pFmtFldStepMain->GetFormatKey();
     400           0 :     if ((pNumFormatter->GetType(nStepFmt) &~NUMBERFORMAT_DEFINED) == NUMBERFORMAT_TEXT)
     401           0 :         nStepFmt = 0;
     402             : 
     403           0 :     Control* pControl = NULL;
     404           0 :     sal_uInt16 nErrStrId = 0;
     405             :     double fDummy;
     406             : 
     407           0 :     fMax = m_pFmtFldMax->GetValue();
     408           0 :     fMin = m_pFmtFldMin->GetValue();
     409           0 :     fOrigin = m_pFmtFldOrigin->GetValue();
     410           0 :     fStepMain = bDateAxis ? m_pMt_MainDateStep->GetValue() : m_pFmtFldStepMain->GetValue();
     411           0 :     nStepHelp = static_cast< sal_Int32 >( m_pMtStepHelp->GetValue());
     412           0 :     m_nTimeResolution = m_pLB_TimeResolution->GetSelectEntryPos();
     413           0 :     m_nMainTimeUnit = m_pLB_MainTimeUnit->GetSelectEntryPos();
     414           0 :     m_nHelpTimeUnit = m_pLB_HelpTimeUnit->GetSelectEntryPos();
     415             : 
     416           0 :     if( chart2::AxisType::REALNUMBER != m_nAxisType )
     417           0 :         m_pCbxLogarithm->Show( false );
     418             : 
     419             :     //check which entries need user action
     420             : 
     421           0 :     if ( m_pCbxLogarithm->IsChecked() &&
     422           0 :             ( ( !m_pCbxAutoMin->IsChecked() && fMin <= 0.0 )
     423           0 :              || ( !m_pCbxAutoMax->IsChecked() && fMax <= 0.0 ) ) )
     424             :     {
     425           0 :         pControl = m_pFmtFldMin;
     426           0 :         nErrStrId = STR_BAD_LOGARITHM;
     427             :     }
     428             :     // check for entries that cannot be parsed for the current number format
     429           0 :     else if ( m_pFmtFldMin->IsModified()
     430           0 :               && !m_pCbxAutoMin->IsChecked()
     431           0 :               && !pNumFormatter->IsNumberFormat( m_pFmtFldMin->GetText(), nMinMaxOriginFmt, fDummy))
     432             :     {
     433           0 :         pControl = m_pFmtFldMin;
     434           0 :         nErrStrId = STR_INVALID_NUMBER;
     435             :     }
     436           0 :     else if ( m_pFmtFldMax->IsModified()
     437           0 :               && !m_pCbxAutoMax->IsChecked()
     438           0 :               && !pNumFormatter->IsNumberFormat( m_pFmtFldMax->GetText(), nMinMaxOriginFmt, fDummy))
     439             :     {
     440           0 :         pControl = m_pFmtFldMax;
     441           0 :         nErrStrId = STR_INVALID_NUMBER;
     442             :     }
     443           0 :     else if ( !bDateAxis && m_pFmtFldStepMain->IsModified()
     444           0 :               && !m_pCbxAutoStepMain->IsChecked()
     445           0 :               && !pNumFormatter->IsNumberFormat( m_pFmtFldStepMain->GetText(), nStepFmt, fDummy))
     446             :     {
     447           0 :         pControl = m_pFmtFldStepMain;
     448           0 :         nErrStrId = STR_INVALID_NUMBER;
     449             :     }
     450           0 :     else if (m_pFmtFldOrigin->IsModified() && !m_pCbxAutoOrigin->IsChecked() &&
     451           0 :              !pNumFormatter->IsNumberFormat( m_pFmtFldOrigin->GetText(), nMinMaxOriginFmt, fDummy))
     452             :     {
     453           0 :         pControl = m_pFmtFldOrigin;
     454           0 :         nErrStrId = STR_INVALID_NUMBER;
     455             :     }
     456           0 :     else if (!m_pCbxAutoStepMain->IsChecked() && fStepMain <= 0.0)
     457             :     {
     458           0 :         pControl = m_pFmtFldStepMain;
     459           0 :         nErrStrId = STR_STEP_GT_ZERO;
     460             :     }
     461           0 :     else if (!m_pCbxAutoMax->IsChecked() && !m_pCbxAutoMin->IsChecked() &&
     462           0 :              fMin >= fMax)
     463             :     {
     464           0 :         pControl = m_pFmtFldMin;
     465           0 :         nErrStrId = STR_MIN_GREATER_MAX;
     466             :     }
     467           0 :     else if( bDateAxis )
     468             :     {
     469           0 :         if( !m_pCbxAutoStepMain->IsChecked() && !m_pCbxAutoStepHelp->IsChecked() )
     470             :         {
     471           0 :             if( m_nHelpTimeUnit > m_nMainTimeUnit )
     472             :             {
     473           0 :                 pControl = m_pLB_MainTimeUnit;
     474           0 :                 nErrStrId = STR_INVALID_INTERVALS;
     475             :             }
     476           0 :             else if( m_nHelpTimeUnit == m_nMainTimeUnit && nStepHelp > fStepMain )
     477             :             {
     478           0 :                 pControl = m_pLB_MainTimeUnit;
     479           0 :                 nErrStrId = STR_INVALID_INTERVALS;
     480             :             }
     481             :         }
     482           0 :         if( !nErrStrId && !m_pCbx_AutoTimeResolution->IsChecked() )
     483             :         {
     484           0 :             if( (!m_pCbxAutoStepMain->IsChecked() && m_nTimeResolution > m_nMainTimeUnit )
     485           0 :                 ||
     486           0 :                 (!m_pCbxAutoStepHelp->IsChecked() && m_nTimeResolution > m_nHelpTimeUnit )
     487             :                 )
     488             :             {
     489           0 :                 pControl = m_pLB_TimeResolution;
     490           0 :                 nErrStrId = STR_INVALID_TIME_UNIT;
     491             :             }
     492             :         }
     493             :     }
     494             : 
     495           0 :     if( ShowWarning( nErrStrId, pControl ) )
     496           0 :         return KEEP_PAGE;
     497             : 
     498           0 :     if( pItemSet )
     499           0 :         FillItemSet( pItemSet );
     500             : 
     501           0 :     return LEAVE_PAGE;
     502             : }
     503             : 
     504           0 : void ScaleTabPage::SetNumFormatter( SvNumberFormatter* pFormatter )
     505             : {
     506           0 :     pNumFormatter = pFormatter;
     507           0 :     m_pFmtFldMax->SetFormatter( pNumFormatter );
     508           0 :     m_pFmtFldMin->SetFormatter( pNumFormatter );
     509           0 :     m_pFmtFldStepMain->SetFormatter( pNumFormatter );
     510           0 :     m_pFmtFldOrigin->SetFormatter( pNumFormatter );
     511             : 
     512             :     // #i6278# allow more decimal places than the output format.  As
     513             :     // the numbers shown in the edit fields are used for input, it makes more
     514             :     // sense to display the values in the input format rather than the output
     515             :     // format.
     516           0 :     m_pFmtFldMax->UseInputStringForFormatting();
     517           0 :     m_pFmtFldMin->UseInputStringForFormatting();
     518           0 :     m_pFmtFldStepMain->UseInputStringForFormatting();
     519           0 :     m_pFmtFldOrigin->UseInputStringForFormatting();
     520             : 
     521           0 :     SetNumFormat();
     522           0 : }
     523             : 
     524           0 : void ScaleTabPage::SetNumFormat()
     525             : {
     526           0 :     const SfxPoolItem *pPoolItem = NULL;
     527             : 
     528           0 :     if( GetItemSet().GetItemState( SID_ATTR_NUMBERFORMAT_VALUE, true, &pPoolItem ) == SfxItemState::SET )
     529             :     {
     530           0 :         sal_uLong nFmt = (sal_uLong)static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
     531             : 
     532           0 :         m_pFmtFldMax->SetFormatKey( nFmt );
     533           0 :         m_pFmtFldMin->SetFormatKey( nFmt );
     534           0 :         m_pFmtFldOrigin->SetFormatKey( nFmt );
     535             : 
     536           0 :         if( pNumFormatter )
     537             :         {
     538           0 :             short eType = pNumFormatter->GetType( nFmt );
     539           0 :             if( eType == NUMBERFORMAT_DATE )
     540             :             {
     541             :                 // for intervals use standard format for dates (so you can enter a number of days)
     542           0 :                 const SvNumberformat* pFormat = pNumFormatter->GetEntry( nFmt );
     543           0 :                 if( pFormat )
     544           0 :                     nFmt = pNumFormatter->GetStandardIndex( pFormat->GetLanguage());
     545             :                 else
     546           0 :                     nFmt = pNumFormatter->GetStandardIndex();
     547             :             }
     548           0 :             else if( eType == NUMBERFORMAT_DATETIME )
     549             :             {
     550             :                 // for intervals use time format for date times
     551           0 :                 const SvNumberformat* pFormat = pNumFormatter->GetEntry( nFmt );
     552           0 :                 if( pFormat )
     553           0 :                     nFmt = pNumFormatter->GetStandardFormat( NUMBERFORMAT_TIME, pFormat->GetLanguage() );
     554             :                 else
     555           0 :                     nFmt = pNumFormatter->GetStandardFormat( NUMBERFORMAT_TIME );
     556             :             }
     557             : 
     558           0 :             if( chart2::AxisType::DATE == m_nAxisType && ( eType != NUMBERFORMAT_DATE && eType != NUMBERFORMAT_DATETIME) )
     559             :             {
     560           0 :                 const SvNumberformat* pFormat = pNumFormatter->GetEntry( nFmt );
     561           0 :                 if( pFormat )
     562           0 :                     nFmt = pNumFormatter->GetStandardFormat( NUMBERFORMAT_DATE, pFormat->GetLanguage() );
     563             :                 else
     564           0 :                     nFmt = pNumFormatter->GetStandardFormat( NUMBERFORMAT_DATE );
     565             : 
     566           0 :                 m_pFmtFldMax->SetFormatKey( nFmt );
     567           0 :                 m_pFmtFldMin->SetFormatKey( nFmt );
     568           0 :                 m_pFmtFldOrigin->SetFormatKey( nFmt );
     569             :             }
     570             :         }
     571             : 
     572           0 :         m_pFmtFldStepMain->SetFormatKey( nFmt );
     573             :     }
     574           0 : }
     575             : 
     576           0 : void ScaleTabPage::ShowAxisOrigin( bool bShowOrigin )
     577             : {
     578           0 :     m_bShowAxisOrigin = bShowOrigin;
     579           0 :     if( !AxisHelper::isAxisPositioningEnabled() )
     580           0 :         m_bShowAxisOrigin = true;
     581           0 : }
     582             : 
     583           0 : bool ScaleTabPage::ShowWarning( sal_uInt16 nResIdMessage, Control* pControl /* = NULL */ )
     584             : {
     585           0 :     if( nResIdMessage == 0 )
     586           0 :         return false;
     587             : 
     588           0 :     WarningBox( this, WinBits( WB_OK ), SCH_RESSTR( nResIdMessage ) ).Execute();
     589           0 :     if( pControl )
     590             :     {
     591           0 :         pControl->GrabFocus();
     592           0 :         Edit* pEdit = dynamic_cast<Edit*>(pControl);
     593           0 :         if(pEdit)
     594           0 :             pEdit->SetSelection( Selection( 0, SELECTION_MAX ));
     595             :     }
     596           0 :     return true;
     597             : }
     598             : 
     599           0 : void ScaleTabPage::HideAllControls()
     600             : {
     601             :     // We need to set these controls invisible when the class is instantiated
     602             :     // since some code in EnableControls() depends on that logic. The real
     603             :     // visibility of these controls depend on axis data type, and are
     604             :     // set in EnableControls().
     605             : 
     606           0 :     m_pBxType->Hide();
     607           0 :     m_pCbxLogarithm->Hide();
     608           0 :     m_pBxMinMax->Hide();
     609           0 :     m_pTxtMain->Hide();
     610           0 :     m_pFmtFldStepMain->Hide();
     611           0 :     m_pMt_MainDateStep->Hide();
     612           0 :     m_pLB_MainTimeUnit->Hide();
     613           0 :     m_pCbxAutoStepMain->Hide();
     614           0 :     m_pTxtHelpCount->Hide();
     615           0 :     m_pTxtHelp->Hide();
     616           0 :     m_pMtStepHelp->Hide();
     617           0 :     m_pCbxAutoStepHelp->Hide();
     618           0 :     m_pBxOrigin->Hide();
     619           0 :     m_pBxResolution->Hide();
     620           0 : }
     621             : 
     622         102 : } //namespace chart
     623             : 
     624             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10