LCOV - code coverage report
Current view: top level - starmath/source - smmod.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 97 137 70.8 %
Date: 2014-11-03 Functions: 26 33 78.8 %
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 <tools/globname.hxx>
      21             : #include <vcl/status.hxx>
      22             : #include <sfx2/msg.hxx>
      23             : #include <sfx2/objface.hxx>
      24             : #include <svl/whiter.hxx>
      25             : #include <sfx2/request.hxx>
      26             : #include <sfx2/sfx.hrc>
      27             : #include <sfx2/viewsh.hxx>
      28             : #include <vcl/wrkwin.hxx>
      29             : #include <svx/svxids.hrc>
      30             : #include <vcl/msgbox.hxx>
      31             : #include <vcl/virdev.hxx>
      32             : #include <unotools/syslocale.hxx>
      33             : #include <tools/rtti.hxx>
      34             : #include "smmod.hxx"
      35             : #include "symbol.hxx"
      36             : #include "config.hxx"
      37             : #include "dialog.hxx"
      38             : #include "edit.hxx"
      39             : #include "view.hxx"
      40             : #include "starmath.hrc"
      41             : #include "svx/modctrl.hxx"
      42             : 
      43         204 : TYPEINIT1( SmModule, SfxModule );
      44             : 
      45             : #define SmModule
      46             : #include "smslots.hxx"
      47             : 
      48             : #include <svx/xmlsecctrl.hxx>
      49             : 
      50             : 
      51             : 
      52        8844 : SmResId::SmResId( sal_uInt16 nId )
      53        8844 :     : ResId(nId, *SM_MOD()->GetResMgr())
      54             : {
      55        8844 : }
      56             : 
      57             : 
      58             : 
      59          40 : SmLocalizedSymbolData::SmLocalizedSymbolData() :
      60             :     Resource( SmResId(RID_LOCALIZED_NAMES) ),
      61             :     aUiSymbolNamesAry       ( SmResId(RID_UI_SYMBOL_NAMES) ),
      62             :     aExportSymbolNamesAry   ( SmResId(RID_EXPORT_SYMBOL_NAMES) ),
      63             :     aUiSymbolSetNamesAry    ( SmResId(RID_UI_SYMBOLSET_NAMES) ),
      64          40 :     aExportSymbolSetNamesAry( SmResId(RID_EXPORT_SYMBOLSET_NAMES) )
      65             : {
      66          40 :     FreeResource();
      67          40 : }
      68             : 
      69             : 
      70          20 : SmLocalizedSymbolData::~SmLocalizedSymbolData()
      71             : {
      72          20 : }
      73             : 
      74             : 
      75        1320 : const OUString SmLocalizedSymbolData::GetUiSymbolName( const OUString &rExportName ) const
      76             : {
      77        1320 :     OUString aRes;
      78             : 
      79        1320 :     const SmLocalizedSymbolData &rData = SM_MOD()->GetLocSymbolData();
      80        1320 :     const ResStringArray &rUiNames = rData.GetUiSymbolNamesArray();
      81        1320 :     const ResStringArray &rExportNames = rData.GetExportSymbolNamesArray();
      82        1320 :     sal_uInt32 nCount = rExportNames.Count();
      83       44220 :     for (sal_uInt32 i = 0;  i < nCount  &&  aRes.isEmpty();  ++i)
      84             :     {
      85       44220 :         if (rExportNames.GetString(i).equals(rExportName))
      86             :         {
      87        1320 :             aRes = rUiNames.GetString(i);
      88        1320 :             break;
      89             :         }
      90             :     }
      91             : 
      92        1320 :     return aRes;
      93             : }
      94             : 
      95             : 
      96           0 : const OUString SmLocalizedSymbolData::GetExportSymbolName( const OUString &rUiName ) const
      97             : {
      98           0 :     OUString aRes;
      99             : 
     100           0 :     const SmLocalizedSymbolData &rData = SM_MOD()->GetLocSymbolData();
     101           0 :     const ResStringArray &rUiNames = rData.GetUiSymbolNamesArray();
     102           0 :     const ResStringArray &rExportNames = rData.GetExportSymbolNamesArray();
     103           0 :     sal_uInt32 nCount = rUiNames.Count();
     104           0 :     for (sal_uInt32 i = 0;  i < nCount  &&  aRes.isEmpty();  ++i)
     105             :     {
     106           0 :         if (rUiNames.GetString(i).equals(rUiName))
     107             :         {
     108           0 :             aRes = rExportNames.GetString(i);
     109           0 :             break;
     110             :         }
     111             :     }
     112             : 
     113           0 :     return aRes;
     114             : }
     115             : 
     116             : 
     117        1340 : const OUString SmLocalizedSymbolData::GetUiSymbolSetName( const OUString &rExportName ) const
     118             : {
     119        1340 :     OUString aRes;
     120             : 
     121        1340 :     const SmLocalizedSymbolData &rData = SM_MOD()->GetLocSymbolData();
     122        1340 :     const ResStringArray &rUiNames = rData.GetUiSymbolSetNamesArray();
     123        1340 :     const ResStringArray &rExportNames = rData.GetExportSymbolSetNamesArray();
     124        1340 :     sal_uInt32 nCount = rExportNames.Count();
     125        1580 :     for (sal_uInt32 i = 0;  i < nCount  &&  aRes.isEmpty();  ++i)
     126             :     {
     127        1580 :         if (rExportNames.GetString(i).equals(rExportName))
     128             :         {
     129        1340 :             aRes = rUiNames.GetString(i);
     130        1340 :             break;
     131             :         }
     132             :     }
     133             : 
     134        1340 :     return aRes;
     135             : }
     136             : 
     137             : 
     138         260 : const OUString SmLocalizedSymbolData::GetExportSymbolSetName( const OUString &rUiName ) const
     139             : {
     140         260 :     OUString aRes;
     141             : 
     142         260 :     const SmLocalizedSymbolData &rData = SM_MOD()->GetLocSymbolData();
     143         260 :     const ResStringArray &rUiNames = rData.GetUiSymbolSetNamesArray();
     144         260 :     const ResStringArray &rExportNames = rData.GetExportSymbolSetNamesArray();
     145         260 :     sal_uInt32 nCount = rUiNames.Count();
     146         308 :     for (sal_uInt32 i = 0;  i < nCount  &&  aRes.isEmpty();  ++i)
     147             :     {
     148         308 :         if (rUiNames.GetString(i).equals(rUiName))
     149             :         {
     150         260 :             aRes = rExportNames.GetString(i);
     151         260 :             break;
     152             :         }
     153             :     }
     154             : 
     155         260 :     return aRes;
     156             : }
     157             : 
     158         364 : SFX_IMPL_INTERFACE(SmModule, SfxModule, SmResId(RID_APPLICATION))
     159             : 
     160          24 : void SmModule::InitInterface_Impl()
     161             : {
     162          24 :     GetStaticInterface()->RegisterStatusBar(SmResId(RID_STATUSBAR));
     163          24 : }
     164             : 
     165          24 : SmModule::SmModule(SfxObjectFactory* pObjFact) :
     166             :     SfxModule(ResMgr::CreateResMgr("sm"), false, pObjFact, NULL),
     167             :     pColorConfig( 0 ),
     168             :     pConfig( 0 ),
     169             :     pLocSymbolData( 0 ),
     170             :     pSysLocale( 0 ),
     171          24 :     pVirtualDev( 0 )
     172             : {
     173          24 :     SetName(OUString("StarMath"));
     174             : 
     175          24 :     SvxModifyControl::RegisterControl(SID_DOC_MODIFIED, this);
     176          24 : }
     177             : 
     178          12 : SmModule::~SmModule()
     179             : {
     180           4 :     delete pConfig;
     181           4 :     if (pColorConfig)
     182           4 :         pColorConfig->RemoveListener(this);
     183           4 :     delete pColorConfig;
     184           4 :     delete pLocSymbolData;
     185           4 :     delete pSysLocale;
     186           4 :     delete pVirtualDev;
     187           8 : }
     188             : 
     189          24 : void SmModule::_CreateSysLocale() const
     190             : {
     191          24 :     SmModule* pThis = (SmModule*)this;
     192          24 :     pThis->pSysLocale = new SvtSysLocale;
     193          24 : }
     194             : 
     195          24 : void SmModule::_CreateVirtualDev() const
     196             : {
     197          24 :     SmModule* pThis = (SmModule*)this;
     198          24 :     pThis->pVirtualDev = new VirtualDevice;
     199          24 :     pThis->pVirtualDev->SetReferenceDevice( VirtualDevice::REFDEV_MODE_MSO1 );
     200          24 : }
     201             : 
     202          28 : void SmModule::ApplyColorConfigValues( const svtools::ColorConfig &rColorCfg )
     203             : {
     204             :     //invalidate all graphic and edit windows
     205          28 :     const TypeId aSmViewTypeId = TYPE(SmViewShell);
     206          28 :     SfxViewShell* pViewShell = SfxViewShell::GetFirst();
     207          58 :     while (pViewShell)
     208             :     {
     209           2 :         if ((pViewShell->IsA(aSmViewTypeId)))
     210             :         {
     211           0 :             SmViewShell *pSmView = (SmViewShell *) pViewShell;
     212           0 :             pSmView->GetGraphicWindow().ApplyColorConfigValues( rColorCfg );
     213           0 :             SmEditWindow *pEditWin = pSmView->GetEditWindow();
     214           0 :             if (pEditWin)
     215           0 :                 pEditWin->ApplyColorConfigValues( rColorCfg );
     216             :         }
     217           2 :         pViewShell = SfxViewShell::GetNext( *pViewShell );
     218             :     }
     219          28 : }
     220             : 
     221       97585 : svtools::ColorConfig & SmModule::GetColorConfig()
     222             : {
     223       97585 :     if(!pColorConfig)
     224             :     {
     225          24 :         pColorConfig = new svtools::ColorConfig;
     226          24 :         ApplyColorConfigValues( *pColorConfig );
     227          24 :         pColorConfig->AddListener(this);
     228             :     }
     229       97585 :     return *pColorConfig;
     230             : }
     231             : 
     232           4 : void SmModule::ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 )
     233             : {
     234           4 :     ApplyColorConfigValues(*pColorConfig);
     235           4 : }
     236             : 
     237        9661 : SmConfig * SmModule::GetConfig()
     238             : {
     239        9661 :     if(!pConfig)
     240          24 :         pConfig = new SmConfig;
     241        9661 :     return pConfig;
     242             : }
     243             : 
     244        6480 : SmSymbolManager & SmModule::GetSymbolManager()
     245             : {
     246        6480 :     return GetConfig()->GetSymbolManager();
     247             : }
     248             : 
     249        5820 : SmLocalizedSymbolData & SmModule::GetLocSymbolData() const
     250             : {
     251        5820 :     if (!pLocSymbolData)
     252          20 :         ((SmModule *) this)->pLocSymbolData = new SmLocalizedSymbolData;
     253        5820 :     return *pLocSymbolData;
     254             : }
     255             : 
     256           0 : void SmModule::GetState(SfxItemSet &rSet)
     257             : {
     258           0 :     SfxWhichIter aIter(rSet);
     259             : 
     260           0 :     for (sal_uInt16 nWh = aIter.FirstWhich(); 0 != nWh; nWh = aIter.NextWhich())
     261           0 :         switch (nWh)
     262             :         {
     263             :             case SID_CONFIGEVENT :
     264           0 :                 rSet.DisableItem(SID_CONFIGEVENT);
     265           0 :                 break;
     266           0 :         }
     267           0 : }
     268             : 
     269           0 : SfxItemSet*  SmModule::CreateItemSet( sal_uInt16 nId )
     270             : {
     271           0 :     SfxItemSet*  pRet = 0;
     272           0 :     if(nId == SID_SM_EDITOPTIONS)
     273             :     {
     274           0 :         pRet = new SfxItemSet(GetPool(),
     275             :                              //TP_SMPRINT
     276             :                              SID_PRINTSIZE,         SID_PRINTSIZE,
     277             :                              SID_PRINTZOOM,         SID_PRINTZOOM,
     278             :                              SID_PRINTTITLE,        SID_PRINTTITLE,
     279             :                              SID_PRINTTEXT,         SID_PRINTTEXT,
     280             :                              SID_PRINTFRAME,        SID_PRINTFRAME,
     281             :                              SID_NO_RIGHT_SPACES,   SID_NO_RIGHT_SPACES,
     282             :                              SID_SAVE_ONLY_USED_SYMBOLS, SID_SAVE_ONLY_USED_SYMBOLS,
     283           0 :                              0 );
     284             : 
     285           0 :             GetConfig()->ConfigToItemSet(*pRet);
     286             :     }
     287           0 :     return pRet;
     288             : }
     289           0 : void SmModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet )
     290             : {
     291           0 :     if(nId == SID_SM_EDITOPTIONS)
     292             :     {
     293           0 :         GetConfig()->ItemSetToConfig(rSet);
     294             :     }
     295           0 : }
     296           0 : SfxTabPage*  SmModule::CreateTabPage( sal_uInt16 nId, vcl::Window* pParent, const SfxItemSet& rSet )
     297             : {
     298           0 :     SfxTabPage*  pRet = 0;
     299           0 :     if(nId == SID_SM_TP_PRINTOPTIONS)
     300           0 :         pRet = SmPrintOptionsTabPage::Create( pParent, rSet );
     301           0 :     return pRet;
     302             : 
     303          72 : }
     304             : 
     305             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10