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 : SFX_STATUSBAR_REGISTRATION( IDEResId( SID_BASICIDE_STATUSBAR ) );
45 0 : }
46 :
47 0 : DocShell::DocShell()
48 0 : :SfxObjectShell( SFXMODEL_DISABLE_EMBEDDED_SCRIPTS | SFXMODEL_DISABLE_DOCUMENT_RECOVERY )
49 : {
50 0 : SetPool( &SFX_APP()->GetPool() );
51 0 : SetBaseModel( new SIDEModel(this) );
52 0 : }
53 :
54 0 : DocShell::~DocShell()
55 0 : { }
56 :
57 0 : SfxPrinter* DocShell::GetPrinter( bool bCreate )
58 : {
59 0 : if ( !pPrinter && bCreate )
60 : pPrinter.reset(new SfxPrinter(new SfxItemSet(
61 0 : GetPool(), SID_PRINTER_NOTFOUND_WARN, SID_PRINTER_NOTFOUND_WARN
62 0 : )));
63 :
64 0 : return pPrinter.get();
65 : }
66 :
67 0 : void DocShell::SetPrinter( SfxPrinter* pPr )
68 : {
69 0 : if (pPr != pPrinter.get())
70 0 : pPrinter.reset(pPr);
71 0 : }
72 :
73 0 : void DocShell::FillClass( SvGlobalName*, sal_uInt32*, OUString*, OUString*, OUString*, sal_Int32, bool bTemplate) const
74 : {
75 : (void)bTemplate;
76 : DBG_ASSERT( !bTemplate, "No template for Basic" );
77 0 : }
78 :
79 0 : void DocShell::Draw( OutputDevice *, const JobSetup &, sal_uInt16 )
80 0 : {}
81 :
82 : } // namespace basctl
83 :
84 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|