LCOV - code coverage report
Current view: top level - starmath/source - smmod.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 91 133 68.4 %
Date: 2015-06-13 12:38:46 Functions: 25 33 75.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 "cfgitem.hxx"
      37             : #include "dialog.hxx"
      38             : #include "edit.hxx"
      39             : #include "view.hxx"
      40             : #include "starmath.hrc"
      41             : #include "svx/modctrl.hxx"
      42             : 
      43         102 : TYPEINIT1( SmModule, SfxModule );
      44             : 
      45             : #define SmModule
      46             : #include "smslots.hxx"
      47             : 
      48             : #include <svx/xmlsecctrl.hxx>
      49             : 
      50             : 
      51             : 
      52        4178 : SmResId::SmResId( sal_uInt16 nId )
      53        4178 :     : ResId(nId, *SM_MOD()->GetResMgr())
      54             : {
      55        4178 : }
      56             : 
      57             : 
      58             : 
      59          10 : 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          10 :     aExportSymbolSetNamesAry( SmResId(RID_EXPORT_SYMBOLSET_NAMES) )
      65             : {
      66          10 :     FreeResource();
      67          10 : }
      68             : 
      69             : 
      70           0 : SmLocalizedSymbolData::~SmLocalizedSymbolData()
      71             : {
      72           0 : }
      73             : 
      74             : 
      75         660 : const OUString SmLocalizedSymbolData::GetUiSymbolName( const OUString &rExportName )
      76             : {
      77         660 :     OUString aRes;
      78             : 
      79         660 :     const SmLocalizedSymbolData &rData = SM_MOD()->GetLocSymbolData();
      80         660 :     const ResStringArray &rUiNames = rData.GetUiSymbolNamesArray();
      81         660 :     const ResStringArray &rExportNames = rData.GetExportSymbolNamesArray();
      82         660 :     sal_uInt32 nCount = rExportNames.Count();
      83       22110 :     for (sal_uInt32 i = 0;  i < nCount  &&  aRes.isEmpty();  ++i)
      84             :     {
      85       22110 :         if (rExportNames.GetString(i).equals(rExportName))
      86             :         {
      87         660 :             aRes = rUiNames.GetString(i);
      88         660 :             break;
      89             :         }
      90             :     }
      91             : 
      92         660 :     return aRes;
      93             : }
      94             : 
      95             : 
      96           0 : const OUString SmLocalizedSymbolData::GetExportSymbolName( const OUString &rUiName )
      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         670 : const OUString SmLocalizedSymbolData::GetUiSymbolSetName( const OUString &rExportName )
     118             : {
     119         670 :     OUString aRes;
     120             : 
     121         670 :     const SmLocalizedSymbolData &rData = SM_MOD()->GetLocSymbolData();
     122         670 :     const ResStringArray &rUiNames = rData.GetUiSymbolSetNamesArray();
     123         670 :     const ResStringArray &rExportNames = rData.GetExportSymbolSetNamesArray();
     124         670 :     sal_uInt32 nCount = rExportNames.Count();
     125         790 :     for (sal_uInt32 i = 0;  i < nCount  &&  aRes.isEmpty();  ++i)
     126             :     {
     127         790 :         if (rExportNames.GetString(i).equals(rExportName))
     128             :         {
     129         670 :             aRes = rUiNames.GetString(i);
     130         670 :             break;
     131             :         }
     132             :     }
     133             : 
     134         670 :     return aRes;
     135             : }
     136             : 
     137             : 
     138         130 : const OUString SmLocalizedSymbolData::GetExportSymbolSetName( const OUString &rUiName )
     139             : {
     140         130 :     OUString aRes;
     141             : 
     142         130 :     const SmLocalizedSymbolData &rData = SM_MOD()->GetLocSymbolData();
     143         130 :     const ResStringArray &rUiNames = rData.GetUiSymbolSetNamesArray();
     144         130 :     const ResStringArray &rExportNames = rData.GetExportSymbolSetNamesArray();
     145         130 :     sal_uInt32 nCount = rUiNames.Count();
     146         154 :     for (sal_uInt32 i = 0;  i < nCount  &&  aRes.isEmpty();  ++i)
     147             :     {
     148         154 :         if (rUiNames.GetString(i).equals(rUiName))
     149             :         {
     150         130 :             aRes = rExportNames.GetString(i);
     151         130 :             break;
     152             :         }
     153             :     }
     154             : 
     155         130 :     return aRes;
     156             : }
     157             : 
     158         350 : SFX_IMPL_INTERFACE(SmModule, SfxModule)
     159             : 
     160          14 : void SmModule::InitInterface_Impl()
     161             : {
     162          14 :     GetStaticInterface()->RegisterStatusBar(SmResId(RID_STATUSBAR));
     163          14 : }
     164             : 
     165          14 : SmModule::SmModule(SfxObjectFactory* pObjFact) :
     166          14 :     SfxModule(ResMgr::CreateResMgr("sm"), false, pObjFact, nullptr)
     167             : {
     168          14 :     SetName(OUString("StarMath"));
     169             : 
     170          14 :     SvxModifyControl::RegisterControl(SID_DOC_MODIFIED, this);
     171          14 : }
     172             : 
     173           6 : SmModule::~SmModule()
     174             : {
     175           2 :     if (mpColorConfig)
     176           2 :         mpColorConfig->RemoveListener(this);
     177           2 :     mpVirtualDev.disposeAndClear();
     178           4 : }
     179             : 
     180          15 : void SmModule::ApplyColorConfigValues( const svtools::ColorConfig &rColorCfg )
     181             : {
     182             :     //invalidate all graphic and edit windows
     183          15 :     const TypeId aSmViewTypeId = TYPE(SmViewShell);
     184          15 :     SfxViewShell* pViewShell = SfxViewShell::GetFirst();
     185          31 :     while (pViewShell)
     186             :     {
     187           1 :         if ((pViewShell->IsA(aSmViewTypeId)))
     188             :         {
     189           0 :             SmViewShell *pSmView = static_cast<SmViewShell *>(pViewShell);
     190           0 :             pSmView->GetGraphicWindow().ApplyColorConfigValues( rColorCfg );
     191           0 :             SmEditWindow *pEditWin = pSmView->GetEditWindow();
     192           0 :             if (pEditWin)
     193           0 :                 pEditWin->ApplyColorConfigValues( rColorCfg );
     194             :         }
     195           1 :         pViewShell = SfxViewShell::GetNext( *pViewShell );
     196             :     }
     197          15 : }
     198             : 
     199       49526 : svtools::ColorConfig & SmModule::GetColorConfig()
     200             : {
     201       49526 :     if(!mpColorConfig)
     202             :     {
     203          13 :         mpColorConfig.reset(new svtools::ColorConfig);
     204          13 :         ApplyColorConfigValues( *mpColorConfig );
     205          13 :         mpColorConfig->AddListener(this);
     206             :     }
     207       49526 :     return *mpColorConfig;
     208             : }
     209             : 
     210           2 : void SmModule::ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 )
     211             : {
     212           2 :     ApplyColorConfigValues(*mpColorConfig);
     213           2 : }
     214             : 
     215        4874 : SmMathConfig * SmModule::GetConfig()
     216             : {
     217        4874 :     if(!mpConfig)
     218          14 :         mpConfig.reset(new SmMathConfig);
     219        4874 :     return mpConfig.get();
     220             : }
     221             : 
     222        3244 : SmSymbolManager & SmModule::GetSymbolManager()
     223             : {
     224        3244 :     return GetConfig()->GetSymbolManager();
     225             : }
     226             : 
     227        1460 : SmLocalizedSymbolData & SmModule::GetLocSymbolData()
     228             : {
     229        1460 :     if (!mpLocSymbolData)
     230          10 :         mpLocSymbolData.reset(new SmLocalizedSymbolData);
     231        1460 :     return *mpLocSymbolData;
     232             : }
     233             : 
     234       19198 : const SvtSysLocale& SmModule::GetSysLocale()
     235             : {
     236       19198 :     if( !mpSysLocale )
     237          13 :         mpSysLocale.reset(new SvtSysLocale);
     238       19198 :     return *mpSysLocale;
     239             : }
     240             : 
     241         410 : VirtualDevice &SmModule::GetDefaultVirtualDev()
     242             : {
     243         410 :     if (!mpVirtualDev)
     244             :     {
     245          13 :         mpVirtualDev.reset( VclPtr<VirtualDevice>::Create() );
     246          13 :         mpVirtualDev->SetReferenceDevice( VirtualDevice::REFDEV_MODE_MSO1 );
     247             :     }
     248         410 :     return *mpVirtualDev;
     249             : }
     250             : 
     251           0 : void SmModule::GetState(SfxItemSet &rSet)
     252             : {
     253           0 :     SfxWhichIter aIter(rSet);
     254             : 
     255           0 :     for (sal_uInt16 nWh = aIter.FirstWhich(); 0 != nWh; nWh = aIter.NextWhich())
     256           0 :         switch (nWh)
     257             :         {
     258             :             case SID_CONFIGEVENT :
     259           0 :                 rSet.DisableItem(SID_CONFIGEVENT);
     260           0 :                 break;
     261           0 :         }
     262           0 : }
     263             : 
     264           0 : SfxItemSet*  SmModule::CreateItemSet( sal_uInt16 nId )
     265             : {
     266           0 :     SfxItemSet*  pRet = 0;
     267           0 :     if(nId == SID_SM_EDITOPTIONS)
     268             :     {
     269           0 :         pRet = new SfxItemSet(GetPool(),
     270             :                              //TP_SMPRINT
     271             :                              SID_PRINTSIZE,         SID_PRINTSIZE,
     272             :                              SID_PRINTZOOM,         SID_PRINTZOOM,
     273             :                              SID_PRINTTITLE,        SID_PRINTTITLE,
     274             :                              SID_PRINTTEXT,         SID_PRINTTEXT,
     275             :                              SID_PRINTFRAME,        SID_PRINTFRAME,
     276             :                              SID_NO_RIGHT_SPACES,   SID_NO_RIGHT_SPACES,
     277             :                              SID_SAVE_ONLY_USED_SYMBOLS, SID_SAVE_ONLY_USED_SYMBOLS,
     278           0 :                              0 );
     279             : 
     280           0 :             GetConfig()->ConfigToItemSet(*pRet);
     281             :     }
     282           0 :     return pRet;
     283             : }
     284           0 : void SmModule::ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet )
     285             : {
     286           0 :     if(nId == SID_SM_EDITOPTIONS)
     287             :     {
     288           0 :         GetConfig()->ItemSetToConfig(rSet);
     289             :     }
     290           0 : }
     291           0 : VclPtr<SfxTabPage> SmModule::CreateTabPage( sal_uInt16 nId, vcl::Window* pParent, const SfxItemSet& rSet )
     292             : {
     293           0 :     VclPtr<SfxTabPage> pRet;
     294           0 :     if(nId == SID_SM_TP_PRINTOPTIONS)
     295           0 :         pRet = SmPrintOptionsTabPage::Create( pParent, rSet );
     296           0 :     return pRet;
     297             : 
     298          42 : }
     299             : 
     300             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11