lok: Don't attempt to select the exact text after a failed search.
[LibreOffice.git] / basctl / source / basicide / basdoc.cxx
blob93302febee1d8d06abd2a58d16ee58140b7aa069
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/printer.hxx>
22 #include <sfx2/objface.hxx>
24 #include "unomodel.hxx"
26 #include <basdoc.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>
32 namespace basctl
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));
46 DocShell::DocShell()
47 :SfxObjectShell( SfxModelFlags::DISABLE_EMBEDDED_SCRIPTS | SfxModelFlags::DISABLE_DOCUMENT_RECOVERY )
49 SetPool( &SfxGetpApp()->GetPool() );
50 SetBaseModel( new SIDEModel(this) );
53 DocShell::~DocShell()
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
63 )));
65 return pPrinter.get();
68 void DocShell::SetPrinter( SfxPrinter* pPr )
70 if (pPr != pPrinter.get())
72 pPrinter.disposeAndClear();
73 pPrinter.reset(pPr);
77 void DocShell::FillClass( SvGlobalName*, SotClipboardFormatId*, OUString*, OUString*, OUString*, sal_Int32, bool bTemplate) const
79 (void)bTemplate;
80 DBG_ASSERT( !bTemplate, "No template for Basic" );
83 void DocShell::Draw( OutputDevice *, const JobSetup &, sal_uInt16 )
86 } // namespace basctl
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */