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 "SlideSorterViewShellBase.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(SlideSorterViewShellBase, ViewShellBase); 38 39 // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a 40 // new SlideSorterViewShellBase object has been constructed. 41 42 SfxViewFactory* SlideSorterViewShellBase::pFactory; 43 SfxViewShell* __EXPORT SlideSorterViewShellBase::CreateInstance ( 44 SfxViewFrame *pFrame, SfxViewShell *pOldView) 45 { 46 SlideSorterViewShellBase* pBase = new SlideSorterViewShellBase(pFrame, pOldView); 47 pBase->LateInit(framework::FrameworkHelper::msSlideSorterURL); 48 return pBase; 49 } 50 51 52 53 54 void SlideSorterViewShellBase::RegisterFactory( sal_uInt16 nPrio ) 55 { 56 pFactory = new SfxViewFactory( 57 &CreateInstance,&InitFactory,nPrio,"SlideSorter"); 58 InitFactory(); 59 } 60 61 62 63 64 void SlideSorterViewShellBase::InitFactory() 65 { 66 SFX_VIEW_REGISTRATION(DrawDocShell); 67 } 68 69 70 71 72 73 74 75 SlideSorterViewShellBase::SlideSorterViewShellBase ( 76 SfxViewFrame* _pFrame, 77 SfxViewShell* pOldShell) 78 : ImpressViewShellBase (_pFrame, pOldShell) 79 { 80 } 81 82 83 84 85 SlideSorterViewShellBase::~SlideSorterViewShellBase (void) 86 { 87 } 88 89 90 91 92 } // end of namespace sd 93 94