LCOV - code coverage report
Current view: top level - sc/source/core/tool - inputopt.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 117 121 96.7 %
Date: 2014-11-03 Functions: 11 13 84.6 %
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 <com/sun/star/uno/Any.hxx>
      21             : #include <com/sun/star/uno/Sequence.hxx>
      22             : 
      23             : #include "cfgids.hxx"
      24             : #include "inputopt.hxx"
      25             : #include "rechead.hxx"
      26             : #include "scresid.hxx"
      27             : #include "global.hxx"
      28             : #include "sc.hrc"
      29             : #include "miscuno.hxx"
      30             : 
      31             : using namespace utl;
      32             : using namespace com::sun::star::uno;
      33             : 
      34             : // ScInputOptions - input options
      35             : 
      36          70 : ScInputOptions::ScInputOptions()
      37             : {
      38          70 :     SetDefaults();
      39          70 : }
      40             : 
      41         722 : ScInputOptions::ScInputOptions( const ScInputOptions& rCpy )
      42             : {
      43         722 :     *this = rCpy;
      44         722 : }
      45             : 
      46         742 : ScInputOptions::~ScInputOptions()
      47             : {
      48         742 : }
      49             : 
      50          70 : void ScInputOptions::SetDefaults()
      51             : {
      52          70 :     nMoveDir        = DIR_BOTTOM;
      53          70 :     bMoveSelection  = true;
      54          70 :     bEnterEdit      = false;
      55          70 :     bExtendFormat   = false;
      56          70 :     bRangeFinder    = true;
      57          70 :     bExpandRefs     = false;
      58          70 :     mbSortRefUpdate = true;
      59          70 :     bMarkHeader     = true;
      60          70 :     bUseTabCol      = false;
      61          70 :     bTextWysiwyg    = false;
      62          70 :     bReplCellsWarn  = true;
      63          70 :     bLegacyCellSelection = false;
      64          70 : }
      65             : 
      66         898 : const ScInputOptions& ScInputOptions::operator=( const ScInputOptions& rCpy )
      67             : {
      68         898 :     nMoveDir        = rCpy.nMoveDir;
      69         898 :     bMoveSelection  = rCpy.bMoveSelection;
      70         898 :     bEnterEdit      = rCpy.bEnterEdit;
      71         898 :     bExtendFormat   = rCpy.bExtendFormat;
      72         898 :     bRangeFinder    = rCpy.bRangeFinder;
      73         898 :     bExpandRefs     = rCpy.bExpandRefs;
      74         898 :     mbSortRefUpdate = rCpy.mbSortRefUpdate;
      75         898 :     bMarkHeader     = rCpy.bMarkHeader;
      76         898 :     bUseTabCol      = rCpy.bUseTabCol;
      77         898 :     bTextWysiwyg    = rCpy.bTextWysiwyg;
      78         898 :     bReplCellsWarn  = rCpy.bReplCellsWarn;
      79         898 :     bLegacyCellSelection = rCpy.bLegacyCellSelection;
      80             : 
      81         898 :     return *this;
      82             : }
      83             : 
      84             : //  Config Item containing input options
      85             : 
      86             : #define CFGPATH_INPUT           "Office.Calc/Input"
      87             : 
      88             : #define SCINPUTOPT_MOVEDIR                 0
      89             : #define SCINPUTOPT_MOVESEL                 1
      90             : #define SCINPUTOPT_EDTEREDIT               2
      91             : #define SCINPUTOPT_EXTENDFMT               3
      92             : #define SCINPUTOPT_RANGEFIND               4
      93             : #define SCINPUTOPT_EXPANDREFS              5
      94             : #define SCINPUTOPT_SORT_REF_UPDATE         6
      95             : #define SCINPUTOPT_MARKHEADER              7
      96             : #define SCINPUTOPT_USETABCOL               8
      97             : #define SCINPUTOPT_TEXTWYSIWYG             9
      98             : #define SCINPUTOPT_REPLCELLSWARN          10
      99             : #define SCINPUTOPT_LEGACY_CELL_SELECTION  11
     100             : #define SCINPUTOPT_COUNT                  12
     101             : 
     102          76 : Sequence<OUString> ScInputCfg::GetPropertyNames()
     103             : {
     104             :     static const char* aPropNames[] =
     105             :     {
     106             :         "MoveSelectionDirection",   // SCINPUTOPT_MOVEDIR
     107             :         "MoveSelection",            // SCINPUTOPT_MOVESEL
     108             :         "SwitchToEditMode",         // SCINPUTOPT_EDTEREDIT
     109             :         "ExpandFormatting",         // SCINPUTOPT_EXTENDFMT
     110             :         "ShowReference",            // SCINPUTOPT_RANGEFIND
     111             :         "ExpandReference",          // SCINPUTOPT_EXPANDREFS
     112             :         "UpdateReferenceOnSort",    // SCINPUTOPT_SORT_REF_UPDATE
     113             :         "HighlightSelection",       // SCINPUTOPT_MARKHEADER
     114             :         "UseTabCol",                // SCINPUTOPT_USETABCOL
     115             :         "UsePrinterMetrics",        // SCINPUTOPT_TEXTWYSIWYG
     116             :         "ReplaceCellsWarning",      // SCINPUTOPT_REPLCELLSWARN
     117             :         "LegacyCellSelection"       // SCINPUTOPT_LEGACY_CELL_SELECTION
     118             :     };
     119          76 :     Sequence<OUString> aNames(SCINPUTOPT_COUNT);
     120          76 :     OUString* pNames = aNames.getArray();
     121         988 :     for(int i = 0; i < SCINPUTOPT_COUNT; i++)
     122         912 :         pNames[i] = OUString::createFromAscii(aPropNames[i]);
     123             : 
     124          76 :     return aNames;
     125             : }
     126             : 
     127          70 : ScInputCfg::ScInputCfg() :
     128          70 :     ConfigItem( OUString( CFGPATH_INPUT ) )
     129             : {
     130          70 :     Sequence<OUString> aNames = GetPropertyNames();
     131         140 :     Sequence<Any> aValues = GetProperties(aNames);
     132          70 :     EnableNotification(aNames);
     133          70 :     const Any* pValues = aValues.getConstArray();
     134             :     OSL_ENSURE(aValues.getLength() == aNames.getLength(), "GetProperties failed");
     135          70 :     if(aValues.getLength() == aNames.getLength())
     136             :     {
     137         910 :         for(int nProp = 0; nProp < aNames.getLength(); nProp++)
     138             :         {
     139             :             OSL_ENSURE(pValues[nProp].hasValue(), "property value missing");
     140         840 :             if(pValues[nProp].hasValue())
     141             :             {
     142         840 :                 sal_Int32 nIntVal = 0;
     143         840 :                 switch(nProp)
     144             :                 {
     145             :                     case SCINPUTOPT_MOVEDIR:
     146          70 :                         if ( pValues[nProp] >>= nIntVal )
     147          70 :                             SetMoveDir( (sal_uInt16)nIntVal );
     148          70 :                         break;
     149             :                     case SCINPUTOPT_MOVESEL:
     150          70 :                         SetMoveSelection( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     151          70 :                         break;
     152             :                     case SCINPUTOPT_EDTEREDIT:
     153          70 :                         SetEnterEdit( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     154          70 :                         break;
     155             :                     case SCINPUTOPT_EXTENDFMT:
     156          70 :                         SetExtendFormat( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     157          70 :                         break;
     158             :                     case SCINPUTOPT_RANGEFIND:
     159          70 :                         SetRangeFinder( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     160          70 :                         break;
     161             :                     case SCINPUTOPT_EXPANDREFS:
     162          70 :                         SetExpandRefs( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     163          70 :                         break;
     164             :                     case SCINPUTOPT_SORT_REF_UPDATE:
     165          70 :                         SetSortRefUpdate(ScUnoHelpFunctions::GetBoolFromAny(pValues[nProp]));
     166          70 :                         break;
     167             :                     case SCINPUTOPT_MARKHEADER:
     168          70 :                         SetMarkHeader( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     169          70 :                         break;
     170             :                     case SCINPUTOPT_USETABCOL:
     171          70 :                         SetUseTabCol( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     172          70 :                         break;
     173             :                     case SCINPUTOPT_TEXTWYSIWYG:
     174          70 :                         SetTextWysiwyg( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     175          70 :                         break;
     176             :                     case SCINPUTOPT_REPLCELLSWARN:
     177          70 :                         SetReplaceCellsWarn( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     178          70 :                         break;
     179             :                     case SCINPUTOPT_LEGACY_CELL_SELECTION:
     180          70 :                         SetLegacyCellSelection( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
     181          70 :                         break;
     182             :                 }
     183             :             }
     184             :         }
     185          70 :     }
     186          70 : }
     187             : 
     188           6 : void ScInputCfg::Commit()
     189             : {
     190           6 :     Sequence<OUString> aNames = GetPropertyNames();
     191          12 :     Sequence<Any> aValues(aNames.getLength());
     192           6 :     Any* pValues = aValues.getArray();
     193             : 
     194          78 :     for(int nProp = 0; nProp < aNames.getLength(); nProp++)
     195             :     {
     196          72 :         switch(nProp)
     197             :         {
     198             :             case SCINPUTOPT_MOVEDIR:
     199           6 :                 pValues[nProp] <<= (sal_Int32) GetMoveDir();
     200           6 :                 break;
     201             :             case SCINPUTOPT_MOVESEL:
     202           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetMoveSelection() );
     203           6 :                 break;
     204             :             case SCINPUTOPT_EDTEREDIT:
     205           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetEnterEdit() );
     206           6 :                 break;
     207             :             case SCINPUTOPT_EXTENDFMT:
     208           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetExtendFormat() );
     209           6 :                 break;
     210             :             case SCINPUTOPT_RANGEFIND:
     211           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetRangeFinder() );
     212           6 :                 break;
     213             :             case SCINPUTOPT_EXPANDREFS:
     214           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetExpandRefs() );
     215           6 :                 break;
     216             :             case SCINPUTOPT_SORT_REF_UPDATE:
     217           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetSortRefUpdate() );
     218           6 :                 break;
     219             :             case SCINPUTOPT_MARKHEADER:
     220           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetMarkHeader() );
     221           6 :                 break;
     222             :             case SCINPUTOPT_USETABCOL:
     223           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetUseTabCol() );
     224           6 :                 break;
     225             :             case SCINPUTOPT_TEXTWYSIWYG:
     226           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetTextWysiwyg() );
     227           6 :                 break;
     228             :             case SCINPUTOPT_REPLCELLSWARN:
     229           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetReplaceCellsWarn() );
     230           6 :                 break;
     231             :             case SCINPUTOPT_LEGACY_CELL_SELECTION:
     232           6 :                 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetLegacyCellSelection() );
     233           6 :                 break;
     234             :         }
     235             :     }
     236          12 :     PutProperties(aNames, aValues);
     237           6 : }
     238             : 
     239           0 : void ScInputCfg::Notify( const Sequence<OUString>& /* aPropertyNames */ )
     240             : {
     241             :     OSL_FAIL("properties have been changed");
     242           0 : }
     243             : 
     244         176 : void ScInputCfg::SetOptions( const ScInputOptions& rNew )
     245             : {
     246         176 :     *(ScInputOptions*)this = rNew;
     247         176 :     SetModified();
     248         176 : }
     249             : 
     250           0 : void ScInputCfg::OptionsChanged()
     251             : {
     252           0 :     SetModified();
     253         228 : }
     254             : 
     255             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10