LCOV - code coverage report
Current view: top level - svtools/source/config - helpopt.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 79 128 61.7 %
Date: 2014-11-03 Functions: 16 30 53.3 %
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 <sal/config.h>
      21             : 
      22             : #include <map>
      23             : 
      24             : #include <svtools/helpopt.hxx>
      25             : #include <unotools/configmgr.hxx>
      26             : #include <unotools/configitem.hxx>
      27             : #include <tools/debug.hxx>
      28             : #include <com/sun/star/uno/Any.hxx>
      29             : #include <com/sun/star/uno/Sequence.hxx>
      30             : #include <vcl/help.hxx>
      31             : #include <osl/mutex.hxx>
      32             : 
      33             : #include "itemholder2.hxx"
      34             : 
      35             : using namespace utl;
      36             : using namespace com::sun::star::uno;
      37             : using namespace com::sun::star;
      38             : 
      39             : 
      40             : static SvtHelpOptions_Impl* pOptions = NULL;
      41             : static sal_Int32           nRefCount = 0;
      42             : 
      43             : #define EXTENDEDHELP        0
      44             : #define HELPTIPS            1
      45             : #define LOCALE              2
      46             : #define SYSTEM              3
      47             : #define STYLESHEET          4
      48             : 
      49         598 : class SvtHelpOptions_Impl : public utl::ConfigItem
      50             : {
      51             :     bool            bExtendedHelp;
      52             :     bool            bHelpTips;
      53             :     bool            bWelcomeScreen;
      54             :     OUString        aLocale;
      55             :     OUString        aSystem;
      56             :     OUString        sHelpStyleSheet;
      57             : 
      58             :     typedef std::map <OUString, sal_Int32> MapString2Int;
      59             :     MapString2Int   aURLIgnoreCounters;
      60             : 
      61             :     Sequence< OUString > GetPropertyNames();
      62             : 
      63             : public:
      64             :                     SvtHelpOptions_Impl();
      65             : 
      66             :     virtual void    Notify( const com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
      67             :     void            Load( const ::com::sun::star::uno::Sequence< OUString>& aPropertyNames);
      68             :     virtual void    Commit() SAL_OVERRIDE;
      69             : 
      70           0 :     void            SetExtendedHelp( bool b )           { bExtendedHelp= b; SetModified(); }
      71         606 :     bool            IsExtendedHelp() const                  { return bExtendedHelp; }
      72           0 :     void            SetHelpTips( bool b )               { bHelpTips = b; SetModified(); }
      73        1212 :     bool            IsHelpTips() const                      { return bHelpTips; }
      74             : 
      75           0 :     void            SetWelcomeScreen( bool b )          { bWelcomeScreen = b; SetModified(); }
      76           0 :     bool            IsWelcomeScreen() const                 { return bWelcomeScreen; }
      77        5156 :     OUString        GetSystem() const                       { return aSystem; }
      78             : 
      79           0 :     const OUString& GetHelpStyleSheet()const{return sHelpStyleSheet;}
      80           0 :     void            SetHelpStyleSheet(const OUString& rStyleSheet){sHelpStyleSheet = rStyleSheet; SetModified();}
      81             : 
      82             :     static ::osl::Mutex & getInitMutex();
      83             : };
      84             : 
      85         606 : Sequence< OUString > SvtHelpOptions_Impl::GetPropertyNames()
      86             : {
      87             :     static const char* aPropNames[] =
      88             :     {
      89             :         "ExtendedTip",
      90             :         "Tip",
      91             :         "Locale",
      92             :         "System",
      93             :         "HelpStyleSheet"
      94             :     };
      95             : 
      96         606 :     const int nCount = sizeof( aPropNames ) / sizeof( const char* );
      97         606 :     Sequence< OUString > aNames( nCount );
      98         606 :     OUString* pNames = aNames.getArray();
      99        3636 :     for ( int i = 0; i < nCount; i++ )
     100        3030 :         pNames[i] = OUString::createFromAscii( aPropNames[i] );
     101             : 
     102         606 :     return aNames;
     103             : }
     104             : 
     105       12732 : ::osl::Mutex & SvtHelpOptions_Impl::getInitMutex()
     106             : {
     107             :     static ::osl::Mutex *pMutex = 0;
     108             : 
     109       12732 :     if( ! pMutex )
     110             :     {
     111         303 :         ::osl::MutexGuard guard( ::osl::Mutex::getGlobalMutex() );
     112         303 :         if( ! pMutex )
     113             :         {
     114         303 :             static ::osl::Mutex mutex;
     115         303 :             pMutex = &mutex;
     116         303 :         }
     117             :     }
     118       12732 :     return *pMutex;
     119             : }
     120             : 
     121             : 
     122             : 
     123             : 
     124         303 : SvtHelpOptions_Impl::SvtHelpOptions_Impl()
     125             :     : ConfigItem( OUString( "Office.Common/Help" ) )
     126             :     , bExtendedHelp( false )
     127             :     , bHelpTips( true )
     128         303 :     , bWelcomeScreen( false )
     129             : {
     130         303 :     Sequence< OUString > aNames = GetPropertyNames();
     131         303 :     Load( aNames );
     132         303 :     EnableNotification( aNames );
     133         303 : }
     134             : 
     135             : 
     136         606 : static int lcl_MapPropertyName( const OUString& rCompare,
     137             :                 const uno::Sequence< OUString>& aInternalPropertyNames)
     138             : {
     139         909 :     for(int nProp = 0; nProp < aInternalPropertyNames.getLength(); ++nProp)
     140             :     {
     141         909 :         if( aInternalPropertyNames[nProp] == rCompare )
     142         606 :             return nProp;
     143             :     }
     144           0 :     return -1;
     145             : }
     146             : 
     147         303 : void  SvtHelpOptions_Impl::Load(const uno::Sequence< OUString>& rPropertyNames)
     148             : {
     149         303 :     const uno::Sequence< OUString> aInternalPropertyNames( GetPropertyNames());
     150         606 :     Sequence< Any > aValues = GetProperties( rPropertyNames );
     151         303 :     const Any* pValues = aValues.getConstArray();
     152             :     DBG_ASSERT( aValues.getLength() == rPropertyNames.getLength(), "GetProperties failed" );
     153         303 :     if ( aValues.getLength() == rPropertyNames.getLength() )
     154             :     {
     155        1818 :         for ( int nProp = 0; nProp < rPropertyNames.getLength(); nProp++ )
     156             :         {
     157             : #if OSL_DEBUG_LEVEL > 1
     158             :             DBG_ASSERT( pValues[nProp].hasValue(), "property value missing" );
     159             : #endif
     160        1515 :             if ( pValues[nProp].hasValue() )
     161             :             {
     162             :                 bool bTmp;
     163        1515 :                 OUString aTmpStr;
     164        1515 :                 sal_Int32 nTmpInt = 0;
     165        1515 :                 if ( pValues[nProp] >>= bTmp )
     166             :                 {
     167         606 :                     switch ( lcl_MapPropertyName(rPropertyNames[nProp], aInternalPropertyNames) )
     168             :                     {
     169             :                         case EXTENDEDHELP :
     170         303 :                             bExtendedHelp = bTmp;
     171         303 :                             break;
     172             :                         case HELPTIPS :
     173         303 :                             bHelpTips = bTmp;
     174         303 :                             break;
     175             :                         default:
     176             :                             SAL_WARN( "svtools.config", "Wrong Member!" );
     177           0 :                             break;
     178             :                     }
     179             :                 }
     180         909 :                 else if ( pValues[nProp] >>= aTmpStr )
     181             :                 {
     182         909 :                     switch ( nProp )
     183             :                     {
     184             :                         case LOCALE:
     185         303 :                             aLocale = aTmpStr;
     186         303 :                             break;
     187             : 
     188             :                         case SYSTEM:
     189         303 :                             aSystem = aTmpStr;
     190         303 :                             break;
     191             :                         case STYLESHEET :
     192         303 :                             sHelpStyleSheet = aTmpStr;
     193         303 :                         break;
     194             :                         default:
     195             :                             SAL_WARN( "svtools.config", "Wrong Member!" );
     196           0 :                             break;
     197             :                     }
     198             :                 }
     199           0 :                 else if ( pValues[nProp] >>= nTmpInt )
     200             :                 {
     201             :                     SAL_WARN( "svtools.config", "Wrong Member!" );
     202             :                 }
     203             :                 else
     204             :                 {
     205             :                     SAL_WARN( "svtools.config", "Wrong Type!" );
     206        1515 :                 }
     207             :             }
     208             :         }
     209         303 :         if ( IsHelpTips() != Help::IsQuickHelpEnabled() )
     210         303 :             IsHelpTips() ? Help::EnableQuickHelp() : Help::DisableQuickHelp();
     211         303 :         if ( IsExtendedHelp() != Help::IsBalloonHelpEnabled() )
     212           0 :             IsExtendedHelp() ? Help::EnableBalloonHelp() : Help::DisableBalloonHelp();
     213         303 :     }
     214         303 : }
     215             : 
     216             : 
     217             : 
     218           0 : void SvtHelpOptions_Impl::Commit()
     219             : {
     220           0 :     Sequence< OUString > aNames = GetPropertyNames();
     221           0 :     Sequence< Any > aValues( aNames.getLength() );
     222           0 :     Any* pValues = aValues.getArray();
     223           0 :     for ( int nProp = 0; nProp < aNames.getLength(); nProp++ )
     224             :     {
     225           0 :         switch ( nProp )
     226             :         {
     227             :             case EXTENDEDHELP :
     228           0 :                 pValues[nProp] <<= bExtendedHelp;
     229           0 :                 break;
     230             : 
     231             :             case HELPTIPS :
     232           0 :                 pValues[nProp] <<= bHelpTips;
     233           0 :                 break;
     234             : 
     235             :             case LOCALE:
     236           0 :                 pValues[nProp] <<= OUString(aLocale);
     237           0 :                 break;
     238             : 
     239             :             case SYSTEM:
     240           0 :                 pValues[nProp] <<= OUString(aSystem);
     241           0 :                 break;
     242             :             case STYLESHEET :
     243           0 :                 pValues[nProp] <<= OUString(sHelpStyleSheet);
     244           0 :             break;
     245             : 
     246             :         }
     247             :     }
     248             : 
     249           0 :     PutProperties( aNames, aValues );
     250           0 : }
     251             : 
     252             : 
     253             : 
     254           0 : void SvtHelpOptions_Impl::Notify( const Sequence<OUString>& aPropertyNames )
     255             : {
     256           0 :     Load( aPropertyNames );
     257           0 : }
     258             : 
     259        6368 : SvtHelpOptions::SvtHelpOptions()
     260             : {
     261             :     // Global access, must be guarded (multithreading)
     262        6368 :     ::osl::MutexGuard aGuard( SvtHelpOptions_Impl::getInitMutex() );
     263        6368 :     ++nRefCount;
     264        6368 :     if ( !pOptions )
     265             :     {
     266         303 :         pOptions = new SvtHelpOptions_Impl;
     267             : 
     268         303 :         svtools::ItemHolder2::holdConfigItem(E_HELPOPTIONS);
     269             :     }
     270        6368 :     pImp = pOptions;
     271        6368 : }
     272             : 
     273             : 
     274             : 
     275       13027 : SvtHelpOptions::~SvtHelpOptions()
     276             : {
     277             :     // Global access, must be guarded (multithreading)
     278        6364 :     ::osl::MutexGuard aGuard( SvtHelpOptions_Impl::getInitMutex() );
     279        6364 :     if ( !--nRefCount )
     280             :     {
     281         299 :         if ( pOptions->IsModified() )
     282           0 :             pOptions->Commit();
     283         299 :         DELETEZ( pOptions );
     284        6364 :     }
     285        6663 : }
     286             : 
     287           0 : void SvtHelpOptions::SetExtendedHelp( bool b )
     288             : {
     289           0 :     pImp->SetExtendedHelp( b );
     290           0 : }
     291             : 
     292         303 : bool SvtHelpOptions::IsExtendedHelp() const
     293             : {
     294         303 :     return pImp->IsExtendedHelp();
     295             : }
     296             : 
     297           0 : void SvtHelpOptions::SetHelpTips( bool b )
     298             : {
     299           0 :     pImp->SetHelpTips( b );
     300           0 : }
     301             : 
     302         606 : bool SvtHelpOptions::IsHelpTips() const
     303             : {
     304         606 :     return pImp->IsHelpTips();
     305             : }
     306             : 
     307             : 
     308             : 
     309           0 : void SvtHelpOptions::SetWelcomeScreen( bool b )
     310             : {
     311           0 :     pImp->SetWelcomeScreen( b );
     312           0 : }
     313             : 
     314           0 : bool SvtHelpOptions::IsWelcomeScreen() const
     315             : {
     316           0 :     return pImp->IsWelcomeScreen();
     317             : }
     318             : 
     319        5156 : OUString SvtHelpOptions::GetSystem() const
     320             : {
     321        5156 :     return pImp->GetSystem();
     322             : }
     323             : 
     324           0 : const OUString&   SvtHelpOptions::GetHelpStyleSheet()const
     325             : {
     326           0 :     return pImp->GetHelpStyleSheet();
     327             : }
     328             : 
     329           0 : void  SvtHelpOptions::SetHelpStyleSheet(const OUString& rStyleSheet)
     330             : {
     331           0 :     pImp->SetHelpStyleSheet(rStyleSheet);
     332           0 : }
     333             : 
     334             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10