LCOV - code coverage report
Current view: top level - sc/source/ui/optdlg - tpformula.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 207 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 22 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             : #include <scmod.hxx>
      23             : #include <svl/eitem.hxx>
      24             : #include <svl/stritem.hxx>
      25             : #include "tpformula.hxx"
      26             : #include "formulaopt.hxx"
      27             : #include "sc.hrc"
      28             : #include "scresid.hxx"
      29             : #include <formula/grammar.hxx>
      30             : #include "calcoptionsdlg.hxx"
      31             : #include <vcl/msgbox.hxx>
      32             : 
      33             : #include <unotools/localedatawrapper.hxx>
      34             : 
      35             : #include <com/sun/star/lang/Locale.hpp>
      36             : #include <com/sun/star/i18n/LocaleDataItem.hpp>
      37             : 
      38             : using ::com::sun::star::lang::Locale;
      39             : using ::com::sun::star::i18n::LocaleDataItem;
      40             : 
      41           0 : ScTpFormulaOptions::ScTpFormulaOptions(vcl::Window* pParent, const SfxItemSet& rCoreAttrs) :
      42             :     SfxTabPage(pParent, "OptFormula", "modules/scalc/ui/optformula.ui", &rCoreAttrs),
      43           0 :     mnDecSep(0)
      44             : {
      45           0 :     get(mpLbFormulaSyntax, "formulasyntax");
      46           0 :     get(mpCbEnglishFuncName, "englishfuncname");
      47           0 :     get(mpBtnCustomCalcDefault, "calcdefault");
      48           0 :     get(mpBtnCustomCalcCustom, "calccustom");
      49           0 :     get(mpBtnCustomCalcDetails, "details");
      50           0 :     get(mpEdSepFuncArg, "function");
      51           0 :     get(mpEdSepArrayCol, "arraycolumn");
      52           0 :     get(mpEdSepArrayRow, "arrayrow");
      53           0 :     get(mpBtnSepReset, "reset");
      54           0 :     get(mpLbOOXMLRecalcOptions, "ooxmlrecalc");
      55           0 :     get(mpLbODFRecalcOptions, "odfrecalc");
      56             : 
      57           0 :     mpLbFormulaSyntax->InsertEntry(ScResId(SCSTR_FORMULA_SYNTAX_CALC_A1).toString());
      58           0 :     mpLbFormulaSyntax->InsertEntry(ScResId(SCSTR_FORMULA_SYNTAX_XL_A1).toString());
      59           0 :     mpLbFormulaSyntax->InsertEntry(ScResId(SCSTR_FORMULA_SYNTAX_XL_R1C1).toString());
      60             : 
      61           0 :     Link<> aLink = LINK( this, ScTpFormulaOptions, ButtonHdl );
      62           0 :     mpBtnSepReset->SetClickHdl(aLink);
      63           0 :     mpBtnCustomCalcDefault->SetClickHdl(aLink);
      64           0 :     mpBtnCustomCalcCustom->SetClickHdl(aLink);
      65           0 :     mpBtnCustomCalcDetails->SetClickHdl(aLink);
      66             : 
      67           0 :     aLink = LINK( this, ScTpFormulaOptions, SepModifyHdl );
      68           0 :     mpEdSepFuncArg->SetModifyHdl(aLink);
      69           0 :     mpEdSepArrayCol->SetModifyHdl(aLink);
      70           0 :     mpEdSepArrayRow->SetModifyHdl(aLink);
      71             : 
      72           0 :     aLink = LINK( this, ScTpFormulaOptions, SepEditOnFocusHdl );
      73           0 :     mpEdSepFuncArg->SetGetFocusHdl(aLink);
      74           0 :     mpEdSepArrayCol->SetGetFocusHdl(aLink);
      75           0 :     mpEdSepArrayRow->SetGetFocusHdl(aLink);
      76             : 
      77             :     // Get the decimal separator for current locale.
      78           0 :     OUString aSep = ScGlobal::GetpLocaleData()->getNumDecimalSep();
      79           0 :     mnDecSep = aSep.isEmpty() ? sal_Unicode('.') : aSep[0];
      80           0 : }
      81             : 
      82           0 : ScTpFormulaOptions::~ScTpFormulaOptions()
      83             : {
      84           0 :     disposeOnce();
      85           0 : }
      86             : 
      87           0 : void ScTpFormulaOptions::dispose()
      88             : {
      89           0 :     mpLbFormulaSyntax.clear();
      90           0 :     mpCbEnglishFuncName.clear();
      91           0 :     mpBtnCustomCalcDefault.clear();
      92           0 :     mpBtnCustomCalcCustom.clear();
      93           0 :     mpBtnCustomCalcDetails.clear();
      94           0 :     mpEdSepFuncArg.clear();
      95           0 :     mpEdSepArrayCol.clear();
      96           0 :     mpEdSepArrayRow.clear();
      97           0 :     mpBtnSepReset.clear();
      98           0 :     mpLbOOXMLRecalcOptions.clear();
      99           0 :     mpLbODFRecalcOptions.clear();
     100           0 :     SfxTabPage::dispose();
     101           0 : }
     102             : 
     103           0 : void ScTpFormulaOptions::ResetSeparators()
     104             : {
     105           0 :     OUString aFuncArg, aArrayCol, aArrayRow;
     106           0 :     ScFormulaOptions::GetDefaultFormulaSeparators(aFuncArg, aArrayCol, aArrayRow);
     107           0 :     mpEdSepFuncArg->SetText(aFuncArg);
     108           0 :     mpEdSepArrayCol->SetText(aArrayCol);
     109           0 :     mpEdSepArrayRow->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 :     sal_Int32 nLen = pEdit->GetText().getLength();
     119           0 :     Selection aSel(0, (sal_uInt16)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 :         mpBtnCustomCalcDefault->Check(true);
     129           0 :         mpBtnCustomCalcCustom->Check(false);
     130           0 :         mpBtnCustomCalcDetails->Disable();
     131             :     }
     132             :     else
     133             :     {
     134           0 :         mpBtnCustomCalcDefault->Check(false);
     135           0 :         mpBtnCustomCalcCustom->Check(true);
     136           0 :         mpBtnCustomCalcDetails->Enable();
     137             :     }
     138           0 : }
     139             : 
     140           0 : void ScTpFormulaOptions::LaunchCustomCalcSettings()
     141             : {
     142           0 :     ScopedVclPtrInstance< 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[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 :     OUString aColStr = mpEdSepArrayCol->GetText();
     191           0 :     OUString aRowStr = mpEdSepArrayRow->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 == mpBtnSepReset)
     201           0 :         ResetSeparators();
     202           0 :     else if (pBtn == mpBtnCustomCalcDefault)
     203           0 :         UpdateCustomCalcRadioButtons(true);
     204           0 :     else if (pBtn == mpBtnCustomCalcCustom)
     205           0 :         UpdateCustomCalcRadioButtons(false);
     206           0 :     else if (pBtn == mpBtnCustomCalcDetails)
     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 :     OUString aStr = pEdit->GetText();
     218           0 :     if (aStr.getLength() > 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 : VclPtr<SfxTabPage> ScTpFormulaOptions::Create(vcl::Window* pParent, const SfxItemSet* rCoreSet)
     241             : {
     242           0 :     return VclPtr<ScTpFormulaOptions>::Create(pParent, *rCoreSet);
     243             : }
     244             : 
     245           0 : bool ScTpFormulaOptions::FillItemSet(SfxItemSet* rCoreSet)
     246             : {
     247           0 :     bool bRet = false;
     248           0 :     ScFormulaOptions aOpt;
     249           0 :     bool bEnglishFuncName = mpCbEnglishFuncName->IsChecked();
     250           0 :     sal_Int16 aSyntaxPos      = mpLbFormulaSyntax->GetSelectEntryPos();
     251           0 :     OUString aSep             = mpEdSepFuncArg->GetText();
     252           0 :     OUString aSepArrayCol     = mpEdSepArrayCol->GetText();
     253           0 :     OUString aSepArrayRow     = mpEdSepArrayRow->GetText();
     254           0 :     sal_Int16 nOOXMLRecalcMode = mpLbOOXMLRecalcOptions->GetSelectEntryPos();
     255           0 :     sal_Int16 nODFRecalcMode = mpLbODFRecalcOptions->GetSelectEntryPos();
     256             : 
     257           0 :     if (mpBtnCustomCalcDefault->IsChecked())
     258             :     {
     259             :         // When Default is selected, reset all the calc config settings to default.
     260           0 :         maCurrentConfig.reset();
     261             :     }
     262             : 
     263           0 :     if ( mpLbFormulaSyntax->GetSavedValue() != aSyntaxPos
     264           0 :          || mpCbEnglishFuncName->GetSavedValue() != (bEnglishFuncName ? 1 : 0)
     265           0 :          || static_cast<OUString>(mpEdSepFuncArg->GetSavedValue()) != aSep
     266           0 :          || static_cast<OUString>(mpEdSepArrayCol->GetSavedValue()) != aSepArrayCol
     267           0 :          || static_cast<OUString>(mpEdSepArrayRow->GetSavedValue()) != aSepArrayRow
     268           0 :          || mpLbOOXMLRecalcOptions->GetSavedValue() != nOOXMLRecalcMode
     269           0 :          || mpLbODFRecalcOptions->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(SfxItemState::SET == rCoreSet->GetItemState(SID_SCFORMULAOPTIONS, false , &pItem))
     311           0 :         aOpt = static_cast<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 :         mpLbFormulaSyntax->SelectEntryPos(0);
     320           0 :         break;
     321             :     case ::formula::FormulaGrammar::GRAM_NATIVE_XL_A1:
     322           0 :         mpLbFormulaSyntax->SelectEntryPos(1);
     323           0 :         break;
     324             :     case ::formula::FormulaGrammar::GRAM_NATIVE_XL_R1C1:
     325           0 :         mpLbFormulaSyntax->SelectEntryPos(2);
     326           0 :         break;
     327             :     default:
     328           0 :         mpLbFormulaSyntax->SelectEntryPos(0);
     329             :     }
     330             : 
     331           0 :     mpLbFormulaSyntax->SaveValue();
     332             : 
     333           0 :     ScRecalcOptions eOOXMLRecalc = aOpt.GetOOXMLRecalcOptions();
     334           0 :     mpLbOOXMLRecalcOptions->SelectEntryPos(static_cast<sal_uInt16>(eOOXMLRecalc));
     335           0 :     mpLbOOXMLRecalcOptions->SaveValue();
     336             : 
     337           0 :     ScRecalcOptions eODFRecalc = aOpt.GetODFRecalcOptions();
     338           0 :     mpLbODFRecalcOptions->SelectEntryPos(static_cast<sal_uInt16>(eODFRecalc));
     339           0 :     mpLbODFRecalcOptions->SaveValue();
     340             : 
     341             :     // english function name.
     342           0 :     mpCbEnglishFuncName->Check( aOpt.GetUseEnglishFuncName() );
     343           0 :     mpCbEnglishFuncName->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 :         mpEdSepFuncArg->SetText(aSep);
     354           0 :         mpEdSepArrayCol->SetText(aSepArrayCol);
     355           0 :         mpEdSepArrayRow->SetText(aSepArrayRow);
     356             : 
     357           0 :         mpEdSepFuncArg->SaveValue();
     358           0 :         mpEdSepArrayCol->SaveValue();
     359           0 :         mpEdSepArrayRow->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 : SfxTabPage::sfxpg 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.11