LCOV - code coverage report
Current view: top level - basctl/source/basicide - basdoc.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 27 0.0 %
Date: 2014-11-03 Functions: 0 21 0.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 <sfx2/app.hxx>
      21             : #include <sfx2/docfac.hxx>
      22             : #include <sfx2/printer.hxx>
      23             : #include <sfx2/objface.hxx>
      24             : #include <sfx2/objsh.hxx>
      25             : #include <svl/itemset.hxx>
      26             : 
      27             : #include "unomodel.hxx"
      28             : 
      29             : #include <basdoc.hxx>
      30             : #define basctl_DocShell     // This CANNOT come before basdoc apparently
      31             : #include <basslots.hxx>
      32             : #include <sfx2/sfxmodelfactory.hxx>
      33             : #include <svx/svxids.hrc>
      34             : 
      35             : namespace basctl
      36             : {
      37             : 
      38           0 : TYPEINIT1(DocShell, SfxObjectShell);
      39             : 
      40           0 : SFX_IMPL_OBJECTFACTORY( DocShell, SvGlobalName(), SFXOBJECTSHELL_STD_NORMAL, "sbasic" )
      41             : 
      42           0 : SFX_IMPL_INTERFACE(basctl_DocShell, SfxObjectShell, IDEResId(0))
      43             : 
      44           0 : void basctl_DocShell::InitInterface_Impl()
      45             : {
      46           0 :     GetStaticInterface()->RegisterStatusBar(IDEResId(SID_BASICIDE_STATUSBAR));
      47           0 : }
      48             : 
      49           0 : DocShell::DocShell()
      50           0 :     :SfxObjectShell( SFXMODEL_DISABLE_EMBEDDED_SCRIPTS | SFXMODEL_DISABLE_DOCUMENT_RECOVERY )
      51             : {
      52           0 :     SetPool( &SfxGetpApp()->GetPool() );
      53           0 :     SetBaseModel( new SIDEModel(this) );
      54           0 : }
      55             : 
      56           0 : DocShell::~DocShell()
      57           0 : { }
      58             : 
      59           0 : SfxPrinter* DocShell::GetPrinter( bool bCreate )
      60             : {
      61           0 :     if ( !pPrinter && bCreate )
      62             :         pPrinter.reset(new SfxPrinter(new SfxItemSet(
      63           0 :             GetPool(), SID_PRINTER_NOTFOUND_WARN, SID_PRINTER_NOTFOUND_WARN
      64           0 :         )));
      65             : 
      66           0 :     return pPrinter.get();
      67             : }
      68             : 
      69           0 : void DocShell::SetPrinter( SfxPrinter* pPr )
      70             : {
      71           0 :     if (pPr != pPrinter.get())
      72           0 :         pPrinter.reset(pPr);
      73           0 : }
      74             : 
      75           0 : void DocShell::FillClass( SvGlobalName*, sal_uInt32*, OUString*, OUString*, OUString*, sal_Int32, bool bTemplate) const
      76             : {
      77             :     (void)bTemplate;
      78             :     DBG_ASSERT( !bTemplate, "No template for Basic" );
      79           0 : }
      80             : 
      81           0 : void DocShell::Draw( OutputDevice *, const JobSetup &, sal_uInt16 )
      82           0 : {}
      83             : 
      84           0 : } // namespace basctl
      85             : 
      86             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10