LCOV - code coverage report
Current view: top level - libreoffice/sc/source/ui/optdlg - tpformula.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 182 0.0 %
Date: 2012-12-27 Functions: 0 21 0.0 %
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             : #undef SC_DLLIMPLEMENTATION
      21             : 
      22             : //------------------------------------------------------------------
      23             : 
      24             : #include <scmod.hxx>
      25             : #include <svl/eitem.hxx>
      26             : #include <svl/stritem.hxx>
      27             : #include "tpformula.hxx"
      28             : #include "formulaopt.hxx"
      29             : #include "optdlg.hrc"
      30             : #include "scresid.hxx"
      31             : #include "formula/grammar.hxx"
      32             : #include "calcoptionsdlg.hxx"
      33             : #include "vcl/msgbox.hxx"
      34             : 
      35             : #include <unotools/localedatawrapper.hxx>
      36             : 
      37             : #include <com/sun/star/lang/Locale.hpp>
      38             : #include <com/sun/star/i18n/LocaleDataItem.hpp>
      39             : 
      40             : using ::rtl::OUString;
      41             : using ::com::sun::star::lang::Locale;
      42             : using ::com::sun::star::i18n::LocaleDataItem;
      43             : 
      44           0 : ScTpFormulaOptions::ScTpFormulaOptions(Window* pParent, const SfxItemSet& rCoreAttrs) :
      45             :     SfxTabPage(pParent, ScResId(RID_SCPAGE_FORMULA), rCoreAttrs),
      46             : 
      47             :     maFlFormulaOpt(this, ScResId(FL_FORMULA_OPTIONS)),
      48             :     maFtFormulaSyntax(this, ScResId(FT_FORMULA_SYNTAX)),
      49             :     maLbFormulaSyntax(this, ScResId(LB_FORMULA_SYNTAX)),
      50             :     maCbEnglishFuncName(this, ScResId(CB_ENGLISH_FUNC_NAME)),
      51             : 
      52             :     maFlCustomCalcOpt(this, ScResId(FL_CUSTOM_CALC_OPTIONS)),
      53             :     maBtnCustomCalcDefault(this, ScResId(BTN_CUSTOM_CALC_DEFAULT)),
      54             :     maBtnCustomCalcCustom(this, ScResId(BTN_CUSTOM_CALC_CUSTOM)),
      55             :     maBtnCustomCalcDetails(this, ScResId(BTN_CUSTOM_CALC_DETAILS)),
      56             : 
      57             :     maFlFormulaSeps(this, ScResId(FL_FORMULA_SEPS)),
      58             :     maFtSepFuncArg(this, ScResId(FT_FORMULA_SEP_ARG)),
      59             :     maEdSepFuncArg(this, ScResId(ED_FORMULA_SEP_ARG)),
      60             :     maFtSepArrayCol(this, ScResId(FT_FORMULA_SEP_ARRAY_C)),
      61             :     maEdSepArrayCol(this, ScResId(ED_FORMULA_SEP_ARRAY_C)),
      62             :     maFtSepArrayRow(this, ScResId(FT_FORMULA_SEP_ARRAY_R)),
      63             :     maEdSepArrayRow(this, ScResId(ED_FORMULA_SEP_ARRAY_R)),
      64             :     maBtnSepReset(this, ScResId(BTN_FORMULA_SEP_RESET)),
      65             :     maFlRecalcOptions(this, ScResId(FL_RECALC_OPTIONS)),
      66             :     maFtOOXMLRecalc(this, ScResId(FT_OOXML_RECALC)),
      67             :     maLbOOXMLRecalcOptions(this, ScResId(LB_OOXML_RECALC)),
      68             :     maFtODFRecalc(this, ScResId(FT_ODF_RECALC)),
      69             :     maLbODFRecalcOptions(this, ScResId(LB_ODF_RECALC)),
      70           0 :     mnDecSep(0)
      71             : {
      72           0 :     maLbFormulaSyntax.InsertEntry(ScResId(SCSTR_FORMULA_SYNTAX_CALC_A1).toString());
      73           0 :     maLbFormulaSyntax.InsertEntry(ScResId(SCSTR_FORMULA_SYNTAX_XL_A1).toString());
      74           0 :     maLbFormulaSyntax.InsertEntry(ScResId(SCSTR_FORMULA_SYNTAX_XL_R1C1).toString());
      75             : 
      76           0 :     FreeResource();
      77             : 
      78           0 :     Link aLink = LINK( this, ScTpFormulaOptions, ButtonHdl );
      79           0 :     maBtnSepReset.SetClickHdl(aLink);
      80           0 :     maBtnCustomCalcDefault.SetClickHdl(aLink);
      81           0 :     maBtnCustomCalcCustom.SetClickHdl(aLink);
      82           0 :     maBtnCustomCalcDetails.SetClickHdl(aLink);
      83             : 
      84           0 :     aLink = LINK( this, ScTpFormulaOptions, SepModifyHdl );
      85           0 :     maEdSepFuncArg.SetModifyHdl(aLink);
      86           0 :     maEdSepArrayCol.SetModifyHdl(aLink);
      87           0 :     maEdSepArrayRow.SetModifyHdl(aLink);
      88             : 
      89           0 :     aLink = LINK( this, ScTpFormulaOptions, SepEditOnFocusHdl );
      90           0 :     maEdSepFuncArg.SetGetFocusHdl(aLink);
      91           0 :     maEdSepArrayCol.SetGetFocusHdl(aLink);
      92           0 :     maEdSepArrayRow.SetGetFocusHdl(aLink);
      93             : 
      94             :     // Get the decimal separator for current locale.
      95           0 :     rtl::OUString aSep = ScGlobal::GetpLocaleData()->getNumDecimalSep();
      96           0 :     mnDecSep = aSep.isEmpty() ? sal_Unicode('.') : aSep[0];
      97           0 : }
      98             : 
      99           0 : ScTpFormulaOptions::~ScTpFormulaOptions()
     100             : {
     101           0 : }
     102             : 
     103           0 : void ScTpFormulaOptions::ResetSeparators()
     104             : {
     105           0 :     rtl::OUString aFuncArg, aArrayCol, aArrayRow;
     106           0 :     ScFormulaOptions::GetDefaultFormulaSeparators(aFuncArg, aArrayCol, aArrayRow);
     107           0 :     maEdSepFuncArg.SetText(aFuncArg);
     108           0 :     maEdSepArrayCol.SetText(aArrayCol);
     109           0 :     maEdSepArrayRow.SetText(aArrayRow);
     110           0 : }
     111             : 
     112           0 : void ScTpFormulaOptions::OnFocusSeparatorInput(Edit* pEdit)
     113             : {
     114           0 :     if (!pEdit)
     115           0 :         return;
     116             : 
     117             :     // Make sure the entire text is selected.
     118           0 :     xub_StrLen nLen = pEdit->GetText().Len();
     119           0 :     Selection aSel(0, nLen);
     120           0 :     pEdit->SetSelection(aSel);
     121           0 :     maOldSepValue = pEdit->GetText();
     122             : }
     123             : 
     124           0 : void ScTpFormulaOptions::UpdateCustomCalcRadioButtons(bool bDefault)
     125             : {
     126           0 :     if (bDefault)
     127             :     {
     128           0 :         maBtnCustomCalcDefault.Check(true);
     129           0 :         maBtnCustomCalcCustom.Check(false);
     130           0 :         maBtnCustomCalcDetails.Disable();
     131             :     }
     132             :     else
     133             :     {
     134           0 :         maBtnCustomCalcDefault.Check(false);
     135           0 :         maBtnCustomCalcCustom.Check(true);
     136           0 :         maBtnCustomCalcDetails.Enable();
     137             :     }
     138           0 : }
     139             : 
     140           0 : void ScTpFormulaOptions::LaunchCustomCalcSettings()
     141             : {
     142           0 :     ScCalcOptionsDialog aDlg(this, maCurrentConfig);
     143           0 :     if (aDlg.Execute() == RET_OK)
     144             :     {
     145           0 :         maCurrentConfig = aDlg.GetConfig();
     146           0 :     }
     147           0 : }
     148             : 
     149           0 : bool ScTpFormulaOptions::IsValidSeparator(const OUString& rSep) const
     150             : {
     151           0 :     if (rSep.getLength() != 1)
     152             :         // Must be one-character long.
     153           0 :         return false;
     154             : 
     155           0 :     if (rSep.compareToAscii("a") >= 0 && rSep.compareToAscii("z") <= 0)
     156           0 :         return false;
     157             : 
     158           0 :     if (rSep.compareToAscii("A") >= 0 && rSep.compareToAscii("Z") <= 0)
     159           0 :         return false;
     160             : 
     161           0 :     sal_Unicode c = rSep.getStr()[0];
     162           0 :     switch (c)
     163             :     {
     164             :         case '+':
     165             :         case '-':
     166             :         case '/':
     167             :         case '*':
     168             :         case '<':
     169             :         case '>':
     170             :         case '[':
     171             :         case ']':
     172             :         case '(':
     173             :         case ')':
     174             :         case '"':
     175             :         case '\'':
     176             :             // Disallowed characters.  Anything else we want to disallow ?
     177           0 :             return false;
     178             :     }
     179             : 
     180           0 :     if (c == mnDecSep)
     181             :         // decimal separator is not allowed.
     182           0 :         return false;
     183             : 
     184           0 :     return true;
     185             : }
     186             : 
     187           0 : bool ScTpFormulaOptions::IsValidSeparatorSet() const
     188             : {
     189             :     // Make sure the column and row separators are different.
     190           0 :     String aColStr = maEdSepArrayCol.GetText();
     191           0 :     String aRowStr = maEdSepArrayRow.GetText();
     192           0 :     if (aColStr == aRowStr)
     193           0 :         return false;
     194             : 
     195           0 :     return true;
     196             : }
     197             : 
     198           0 : IMPL_LINK( ScTpFormulaOptions, ButtonHdl, Button*, pBtn )
     199             : {
     200           0 :     if (pBtn == &maBtnSepReset)
     201           0 :         ResetSeparators();
     202           0 :     else if (pBtn == &maBtnCustomCalcDefault)
     203           0 :         UpdateCustomCalcRadioButtons(true);
     204           0 :     else if (pBtn == &maBtnCustomCalcCustom)
     205           0 :         UpdateCustomCalcRadioButtons(false);
     206           0 :     else if (pBtn == &maBtnCustomCalcDetails)
     207           0 :         LaunchCustomCalcSettings();
     208             : 
     209           0 :     return 0;
     210             : }
     211             : 
     212           0 : IMPL_LINK( ScTpFormulaOptions, SepModifyHdl, Edit*, pEdit )
     213             : {
     214           0 :     if (!pEdit)
     215           0 :         return 0;
     216             : 
     217           0 :     String aStr = pEdit->GetText();
     218           0 :     if (aStr.Len() > 1)
     219             :     {
     220             :         // In case the string is more than one character long, only grab the
     221             :         // first character.
     222           0 :         aStr = aStr.Copy(0, 1);
     223           0 :         pEdit->SetText(aStr);
     224             :     }
     225             : 
     226           0 :     if ((!IsValidSeparator(aStr) || !IsValidSeparatorSet()) && !maOldSepValue.isEmpty())
     227             :         // Invalid separator.  Restore the old value.
     228           0 :         pEdit->SetText(maOldSepValue);
     229             : 
     230           0 :     OnFocusSeparatorInput(pEdit);
     231           0 :     return 0;
     232             : }
     233             : 
     234           0 : IMPL_LINK( ScTpFormulaOptions, SepEditOnFocusHdl, Edit*, pEdit )
     235             : {
     236           0 :     OnFocusSeparatorInput(pEdit);
     237           0 :     return 0;
     238             : }
     239             : 
     240           0 : SfxTabPage* ScTpFormulaOptions::Create(Window* pParent, const SfxItemSet& rCoreSet)
     241             : {
     242           0 :     return new ScTpFormulaOptions(pParent, rCoreSet);
     243             : }
     244             : 
     245           0 : sal_Bool ScTpFormulaOptions::FillItemSet(SfxItemSet& rCoreSet)
     246             : {
     247           0 :     bool bRet = false;
     248           0 :     ScFormulaOptions aOpt;
     249           0 :     sal_Bool bEnglishFuncName = maCbEnglishFuncName.IsChecked();
     250           0 :     sal_Int16 aSyntaxPos      = maLbFormulaSyntax.GetSelectEntryPos();
     251           0 :     OUString aSep             = maEdSepFuncArg.GetText();
     252           0 :     OUString aSepArrayCol     = maEdSepArrayCol.GetText();
     253           0 :     OUString aSepArrayRow     = maEdSepArrayRow.GetText();
     254           0 :     sal_Int16 nOOXMLRecalcMode = maLbOOXMLRecalcOptions.GetSelectEntryPos();
     255           0 :     sal_Int16 nODFRecalcMode = maLbODFRecalcOptions.GetSelectEntryPos();
     256             : 
     257           0 :     if (maBtnCustomCalcDefault.IsChecked())
     258             :     {
     259             :         // When Default is selected, reset all the calc config settings to default.
     260           0 :         maCurrentConfig.reset();
     261             :     }
     262             : 
     263           0 :     if ( maLbFormulaSyntax.GetSavedValue() != aSyntaxPos
     264           0 :          || maCbEnglishFuncName.GetSavedValue() != bEnglishFuncName
     265           0 :          || static_cast<OUString>(maEdSepFuncArg.GetSavedValue()) != aSep
     266           0 :          || static_cast<OUString>(maEdSepArrayCol.GetSavedValue()) != aSepArrayCol
     267           0 :          || static_cast<OUString>(maEdSepArrayRow.GetSavedValue()) != aSepArrayRow
     268           0 :          || maLbOOXMLRecalcOptions.GetSavedValue() != nOOXMLRecalcMode
     269           0 :          || maLbODFRecalcOptions.GetSavedValue() != nODFRecalcMode
     270           0 :          || maSavedConfig != maCurrentConfig )
     271             :     {
     272           0 :         ::formula::FormulaGrammar::Grammar eGram = ::formula::FormulaGrammar::GRAM_DEFAULT;
     273             : 
     274           0 :         switch (aSyntaxPos)
     275             :         {
     276             :         case 0:
     277           0 :             eGram = ::formula::FormulaGrammar::GRAM_NATIVE;
     278           0 :         break;
     279             :         case 1:
     280           0 :             eGram = ::formula::FormulaGrammar::GRAM_NATIVE_XL_A1;
     281           0 :         break;
     282             :         case 2:
     283           0 :             eGram = ::formula::FormulaGrammar::GRAM_NATIVE_XL_R1C1;
     284           0 :         break;
     285             :         }
     286             : 
     287           0 :         ScRecalcOptions eOOXMLRecalc = static_cast<ScRecalcOptions>(nOOXMLRecalcMode);
     288           0 :         ScRecalcOptions eODFRecalc = static_cast<ScRecalcOptions>(nODFRecalcMode);
     289             : 
     290           0 :         aOpt.SetFormulaSyntax(eGram);
     291           0 :         aOpt.SetUseEnglishFuncName(bEnglishFuncName);
     292           0 :         aOpt.SetFormulaSepArg(aSep);
     293           0 :         aOpt.SetFormulaSepArrayCol(aSepArrayCol);
     294           0 :         aOpt.SetFormulaSepArrayRow(aSepArrayRow);
     295           0 :         aOpt.SetCalcConfig(maCurrentConfig);
     296           0 :         aOpt.SetOOXMLRecalcOptions(eOOXMLRecalc);
     297           0 :         aOpt.SetODFRecalcOptions(eODFRecalc);
     298             : 
     299           0 :         rCoreSet.Put( ScTpFormulaItem( SID_SCFORMULAOPTIONS, aOpt ) );
     300           0 :         bRet = true;
     301             :     }
     302           0 :     return bRet;
     303             : }
     304             : 
     305           0 : void ScTpFormulaOptions::Reset(const SfxItemSet& rCoreSet)
     306             : {
     307           0 :     ScFormulaOptions aOpt;
     308           0 :     const SfxPoolItem* pItem = NULL;
     309             : 
     310           0 :     if(SFX_ITEM_SET == rCoreSet.GetItemState(SID_SCFORMULAOPTIONS, false , &pItem))
     311           0 :         aOpt = ((const ScTpFormulaItem*)pItem)->GetFormulaOptions();
     312             : 
     313             :     // formula grammar.
     314           0 :     ::formula::FormulaGrammar::Grammar eGram = aOpt.GetFormulaSyntax();
     315             : 
     316           0 :     switch (eGram)
     317             :     {
     318             :     case ::formula::FormulaGrammar::GRAM_NATIVE:
     319           0 :         maLbFormulaSyntax.SelectEntryPos(0);
     320           0 :         break;
     321             :     case ::formula::FormulaGrammar::GRAM_NATIVE_XL_A1:
     322           0 :         maLbFormulaSyntax.SelectEntryPos(1);
     323           0 :         break;
     324             :     case ::formula::FormulaGrammar::GRAM_NATIVE_XL_R1C1:
     325           0 :         maLbFormulaSyntax.SelectEntryPos(2);
     326           0 :         break;
     327             :     default:
     328           0 :         maLbFormulaSyntax.SelectEntryPos(0);
     329             :     }
     330             : 
     331           0 :     maLbFormulaSyntax.SaveValue();
     332             : 
     333           0 :     ScRecalcOptions eOOXMLRecalc = aOpt.GetOOXMLRecalcOptions();
     334           0 :     maLbOOXMLRecalcOptions.SelectEntryPos(static_cast<sal_uInt16>(eOOXMLRecalc));
     335           0 :     maLbOOXMLRecalcOptions.SaveValue();
     336             : 
     337           0 :     ScRecalcOptions eODFRecalc = aOpt.GetODFRecalcOptions();
     338           0 :     maLbODFRecalcOptions.SelectEntryPos(static_cast<sal_uInt16>(eODFRecalc));
     339           0 :     maLbODFRecalcOptions.SaveValue();
     340             : 
     341             :     // english function name.
     342           0 :     maCbEnglishFuncName.Check( aOpt.GetUseEnglishFuncName() );
     343           0 :     maCbEnglishFuncName.SaveValue();
     344             : 
     345             :     // Separators
     346           0 :     OUString aSep = aOpt.GetFormulaSepArg();
     347           0 :     OUString aSepArrayRow = aOpt.GetFormulaSepArrayRow();
     348           0 :     OUString aSepArrayCol = aOpt.GetFormulaSepArrayCol();
     349             : 
     350           0 :     if (aSep.getLength() == 1 && aSepArrayRow.getLength() == 1 && aSepArrayCol.getLength() == 1)
     351             :     {
     352             :         // Each separator must be one character long.
     353           0 :         maEdSepFuncArg.SetText(aSep);
     354           0 :         maEdSepArrayCol.SetText(aSepArrayCol);
     355           0 :         maEdSepArrayRow.SetText(aSepArrayRow);
     356             : 
     357           0 :         maEdSepFuncArg.SaveValue();
     358           0 :         maEdSepArrayCol.SaveValue();
     359           0 :         maEdSepArrayRow.SaveValue();
     360             :     }
     361             :     else
     362           0 :         ResetSeparators();
     363             : 
     364             :     // detailed calc settings.
     365           0 :     ScFormulaOptions aDefaults;
     366             : 
     367           0 :     maSavedConfig = aOpt.GetCalcConfig();
     368           0 :     bool bDefault = aDefaults.GetCalcConfig() == maSavedConfig;
     369           0 :     UpdateCustomCalcRadioButtons(bDefault);
     370             : 
     371           0 :     maCurrentConfig = maSavedConfig;
     372           0 : }
     373             : 
     374           0 : int ScTpFormulaOptions::DeactivatePage(SfxItemSet* /*pSet*/)
     375             : {
     376             :     // What's this method for ?
     377           0 :     return KEEP_PAGE;
     378           0 : }
     379             : 
     380             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10