bump product version to 4.1.6.2
[LibreOffice.git] / basctl / source / basicide / basdoc.cxx
blobd682f4e92216200d724044adca2b4be1d8e1c128
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
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>
27 #include "unomodel.hxx"
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>
35 namespace basctl
38 TYPEINIT1(DocShell, SfxObjectShell);
40 SFX_IMPL_OBJECTFACTORY( DocShell, SvGlobalName(), SFXOBJECTSHELL_STD_NORMAL, "sbasic" )
42 SFX_IMPL_INTERFACE( basctl_DocShell, SfxObjectShell, IDEResId( 0 ) )
44 SFX_STATUSBAR_REGISTRATION( IDEResId( SID_BASICIDE_STATUSBAR ) );
47 DocShell::DocShell()
48 :SfxObjectShell( SFXMODEL_DISABLE_EMBEDDED_SCRIPTS | SFXMODEL_DISABLE_DOCUMENT_RECOVERY )
50 SetPool( &SFX_APP()->GetPool() );
51 SetBaseModel( new SIDEModel(this) );
54 DocShell::~DocShell()
55 { }
57 SfxPrinter* DocShell::GetPrinter( bool bCreate )
59 if ( !pPrinter && bCreate )
60 pPrinter.reset(new SfxPrinter(new SfxItemSet(
61 GetPool(), SID_PRINTER_NOTFOUND_WARN, SID_PRINTER_NOTFOUND_WARN
62 )));
64 return pPrinter.get();
67 void DocShell::SetPrinter( SfxPrinter* pPr )
69 if (pPr != pPrinter.get())
70 pPrinter.reset(pPr);
73 void DocShell::FillClass( SvGlobalName*, sal_uInt32*, OUString*, OUString*, OUString*, sal_Int32, sal_Bool bTemplate) const
75 (void)bTemplate;
76 DBG_ASSERT( !bTemplate, "No template for Basic" );
79 void DocShell::Draw( OutputDevice *, const JobSetup &, sal_uInt16 )
82 } // namespace basctl
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */