LCOV - code coverage report
Current view: top level - starmath/source - smdll.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 28 28 100.0 %
Date: 2014-04-11 Functions: 5 5 100.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             : #include <sot/factory.hxx>
      21             : #include <svx/svxids.hrc>
      22             : #include <svx/modctrl.hxx>
      23             : #include <svx/zoomctrl.hxx>
      24             : #include <svx/zoomsliderctrl.hxx>
      25             : #include <sfx2/docfac.hxx>
      26             : #include <svx/lboxctrl.hxx>
      27             : #include <sfx2/docfile.hxx>
      28             : #include <sfx2/docfilt.hxx>
      29             : #include <sfx2/app.hxx>
      30             : #include <sfx2/taskpane.hxx>
      31             : 
      32             : #include <smdll.hxx>
      33             : #include <document.hxx>
      34             : #include <toolbox.hxx>
      35             : #include <view.hxx>
      36             : 
      37             : #include <ElementsDockingWindow.hxx>
      38             : 
      39             : #include <starmath.hrc>
      40             : 
      41             : #include <svx/xmlsecctrl.hxx>
      42             : 
      43             : namespace
      44             : {
      45             :     class SmDLL
      46             :     {
      47             :     public:
      48             :         SmDLL();
      49             :         ~SmDLL();
      50             :     };
      51             : 
      52           9 :     SmDLL::SmDLL()
      53             :     {
      54           9 :         SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM);
      55           9 :         if ( *ppShlPtr )
      56           9 :             return;
      57             : 
      58           9 :         SfxObjectFactory& rFactory = SmDocShell::Factory();
      59           9 :         SmModule *pModule = new SmModule( &rFactory );
      60           9 :         *ppShlPtr = pModule;
      61             : 
      62           9 :         rFactory.SetDocumentServiceName( OUString("com.sun.star.formula.FormulaProperties") );
      63             : 
      64           9 :         SmModule::RegisterInterface(pModule);
      65           9 :         SmDocShell::RegisterInterface(pModule);
      66           9 :         SmViewShell::RegisterInterface(pModule);
      67             : 
      68           9 :         SmViewShell::RegisterFactory(1);
      69             : 
      70           9 :         SvxZoomStatusBarControl::RegisterControl(SID_ATTR_ZOOM, pModule);
      71           9 :         SvxZoomSliderControl::RegisterControl(SID_ATTR_ZOOMSLIDER, pModule);
      72           9 :         SvxModifyControl::RegisterControl(SID_TEXTSTATUS, pModule);
      73           9 :         SvxUndoRedoControl::RegisterControl(SID_UNDO, pModule);
      74           9 :         SvxUndoRedoControl::RegisterControl(SID_REDO, pModule);
      75           9 :         XmlSecStatusBarControl::RegisterControl(SID_SIGNATURE, pModule);
      76             : 
      77           9 :         SmToolBoxWrapper::RegisterChildWindow(true);
      78           9 :         SmCmdBoxWrapper::RegisterChildWindow(true);
      79           9 :         SmElementsDockingWindowWrapper::RegisterChildWindow(true);
      80             : 
      81           9 :         ::sfx2::TaskPaneWrapper::RegisterChildWindow(false, pModule);
      82             :     }
      83             : 
      84           9 :     SmDLL::~SmDLL()
      85             :     {
      86             : #if 0
      87             :         // the SdModule must be destroyed
      88             :         SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM);
      89             :         delete (*ppShlPtr);
      90             :         (*ppShlPtr) = NULL;
      91             :         *GetAppData(SHL_SM) = 0;
      92             : #endif
      93           9 :     }
      94             : 
      95             :     struct theSmDLLInstance : public rtl::Static<SmDLL, theSmDLLInstance> {};
      96             : }
      97             : 
      98             : namespace SmGlobals
      99             : {
     100         316 :     void ensure()
     101             :     {
     102         316 :         theSmDLLInstance::get();
     103         316 :     }
     104          27 : }
     105             : 
     106             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10