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 "ImpressViewShellBase.hxx"
21 :
22 : #include "DrawDocShell.hxx"
23 : #include "sdresid.hxx"
24 : #include "strings.hrc"
25 : #include "app.hrc"
26 : #include "framework/FrameworkHelper.hxx"
27 : #include "framework/ImpressModule.hxx"
28 : #include "MasterPageObserver.hxx"
29 : #include <sfx2/request.hxx>
30 : #include <sfx2/viewfrm.hxx>
31 : #include <sfx2/viewsh.hxx>
32 :
33 : namespace sd {
34 :
35 1434 : TYPEINIT1(ImpressViewShellBase, ViewShellBase);
36 :
37 : // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a
38 : // new ImpressViewShellBase object has been constructed.
39 :
40 : SfxViewFactory* ImpressViewShellBase::pFactory;
41 41 : SfxViewShell* ImpressViewShellBase::CreateInstance (
42 : SfxViewFrame *pFrame, SfxViewShell *pOldView)
43 : {
44 41 : ImpressViewShellBase* pBase = new ImpressViewShellBase(pFrame, pOldView);
45 41 : pBase->LateInit("");
46 41 : return pBase;
47 : }
48 21 : void ImpressViewShellBase::RegisterFactory( sal_uInt16 nPrio )
49 : {
50 21 : pFactory = new SfxViewFactory(&CreateInstance,nPrio,"Default");
51 21 : InitFactory();
52 21 : }
53 21 : void ImpressViewShellBase::InitFactory()
54 : {
55 21 : SFX_VIEW_REGISTRATION(DrawDocShell);
56 21 : }
57 :
58 41 : ImpressViewShellBase::ImpressViewShellBase (
59 : SfxViewFrame* _pFrame,
60 : SfxViewShell* pOldShell)
61 41 : : ViewShellBase (_pFrame, pOldShell)
62 : {
63 41 : MasterPageObserver::Instance().RegisterDocument (*GetDocShell()->GetDoc());
64 41 : }
65 :
66 123 : ImpressViewShellBase::~ImpressViewShellBase()
67 : {
68 41 : MasterPageObserver::Instance().UnregisterDocument (*GetDocShell()->GetDoc());
69 82 : }
70 :
71 0 : void ImpressViewShellBase::Execute (SfxRequest& rRequest)
72 : {
73 0 : sal_uInt16 nSlotId = rRequest.GetSlot();
74 :
75 0 : switch (nSlotId)
76 : {
77 : case SID_LEFT_PANE_DRAW:
78 : // Prevent a Draw-only slots from being executed.
79 0 : rRequest.Cancel();
80 0 : break;
81 :
82 : default:
83 : // The remaining requests are forwarded to our base class.
84 0 : ViewShellBase::Execute(rRequest);
85 0 : break;
86 : }
87 0 : }
88 :
89 41 : void ImpressViewShellBase::InitializeFramework()
90 : {
91 : ::com::sun::star::uno::Reference<com::sun::star::frame::XController>
92 41 : xController (GetController());
93 41 : sd::framework::ImpressModule::Initialize(xController);
94 41 : }
95 :
96 66 : } // end of namespace sd
97 :
98 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|