1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_sd.hxx"
26 
27 #include "OutlineViewShellBase.hxx"
28 #include "sdresid.hxx"
29 #include "DrawDocShell.hxx"
30 #include "strings.hrc"
31 #include "framework/FrameworkHelper.hxx"
32 
33 namespace sd {
34 
35 class DrawDocShell;
36 
37 TYPEINIT1(OutlineViewShellBase, ViewShellBase);
38 
39 // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a
40 // new OutlineViewShellBase object has been constructed.
41 
42 SfxViewFactory* OutlineViewShellBase::pFactory;
CreateInstance(SfxViewFrame * pFrame,SfxViewShell * pOldView)43 SfxViewShell* __EXPORT OutlineViewShellBase::CreateInstance (
44     SfxViewFrame *pFrame, SfxViewShell *pOldView)
45 {
46     OutlineViewShellBase* pBase = new OutlineViewShellBase(pFrame, pOldView);
47     pBase->LateInit(framework::FrameworkHelper::msOutlineViewURL);
48     return pBase;
49 }
RegisterFactory(sal_uInt16 nPrio)50 void OutlineViewShellBase::RegisterFactory( sal_uInt16 nPrio )
51 {
52     pFactory = new SfxViewFactory(
53         &CreateInstance,&InitFactory,nPrio,"Outline");
54     InitFactory();
55 }
InitFactory()56 void OutlineViewShellBase::InitFactory()
57 {
58 	SFX_VIEW_REGISTRATION(DrawDocShell);
59 }
60 
61 
62 
63 
OutlineViewShellBase(SfxViewFrame * _pFrame,SfxViewShell * pOldShell)64 OutlineViewShellBase::OutlineViewShellBase (
65     SfxViewFrame* _pFrame,
66     SfxViewShell* pOldShell)
67     : ImpressViewShellBase (_pFrame, pOldShell)
68 {
69 }
70 
71 
72 
73 
~OutlineViewShellBase(void)74 OutlineViewShellBase::~OutlineViewShellBase (void)
75 {
76 }
77 
78 
79 
80 
81 } // end of namespace sd
82 
83