1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/printer.hxx>
22 #include <sfx2/objface.hxx>
24 #include "unomodel.hxx"
27 #define basctl_DocShell // This CANNOT come before basdoc apparently
28 #include <basslots.hxx>
29 #include <sfx2/sfxmodelfactory.hxx>
30 #include <svx/svxids.hrc>
35 TYPEINIT1(DocShell
, SfxObjectShell
);
37 SFX_IMPL_OBJECTFACTORY( DocShell
, SvGlobalName(), SfxObjectShellFlags::STD_NORMAL
, "sbasic" )
39 SFX_IMPL_SUPERCLASS_INTERFACE(basctl_DocShell
, SfxObjectShell
)
41 void basctl_DocShell::InitInterface_Impl()
43 GetStaticInterface()->RegisterStatusBar(IDEResId(SID_BASICIDE_STATUSBAR
));
47 :SfxObjectShell( SfxModelFlags::DISABLE_EMBEDDED_SCRIPTS
| SfxModelFlags::DISABLE_DOCUMENT_RECOVERY
)
49 SetPool( &SfxGetpApp()->GetPool() );
50 SetBaseModel( new SIDEModel(this) );
55 pPrinter
.disposeAndClear();
58 SfxPrinter
* DocShell::GetPrinter( bool bCreate
)
60 if ( !pPrinter
&& bCreate
)
61 pPrinter
.reset(new SfxPrinter(new SfxItemSet(
62 GetPool(), SID_PRINTER_NOTFOUND_WARN
, SID_PRINTER_NOTFOUND_WARN
65 return pPrinter
.get();
68 void DocShell::SetPrinter( SfxPrinter
* pPr
)
70 if (pPr
!= pPrinter
.get())
72 pPrinter
.disposeAndClear();
77 void DocShell::FillClass( SvGlobalName
*, SotClipboardFormatId
*, OUString
*, OUString
*, OUString
*, sal_Int32
, bool bTemplate
) const
80 DBG_ASSERT( !bTemplate
, "No template for Basic" );
83 void DocShell::Draw( OutputDevice
*, const JobSetup
&, sal_uInt16
)
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */