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 "PaneShells.hxx"
21 :
22 : #include "PaneChildWindows.hxx"
23 :
24 : #include "glob.hrc"
25 : #include "sdresid.hxx"
26 :
27 : #include <sfx2/msg.hxx>
28 : #include <sfx2/objface.hxx>
29 :
30 : namespace sd {
31 :
32 : //===== LeftImpressPaneShell ==================================================
33 :
34 : static SfxSlot aLeftImpressPaneShellSlots_Impl[] =
35 : {
36 : { 0, 0, 0, SfxSlotMode::NONE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
37 : };
38 :
39 1031 : SFX_IMPL_INTERFACE(LeftImpressPaneShell, SfxShell)
40 :
41 7 : void LeftImpressPaneShell::InitInterface_Impl()
42 : {
43 7 : GetStaticInterface()->RegisterChildWindow(::sd::LeftPaneImpressChildWindow::GetChildWindowId());
44 7 : }
45 :
46 747 : TYPEINIT1(LeftImpressPaneShell, SfxShell);
47 :
48 40 : LeftImpressPaneShell::LeftImpressPaneShell()
49 40 : : SfxShell()
50 : {
51 40 : SetName(OUString("LeftImpressPane"));
52 40 : }
53 :
54 0 : LeftImpressPaneShell::~LeftImpressPaneShell()
55 : {
56 0 : }
57 :
58 : //===== LeftDrawPaneShell =====================================================
59 :
60 : static SfxSlot aLeftDrawPaneShellSlots_Impl[] =
61 : {
62 : { 0, 0, 0, SfxSlotMode::NONE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
63 : };
64 :
65 4322 : SFX_IMPL_INTERFACE(LeftDrawPaneShell, SfxShell)
66 :
67 10 : void LeftDrawPaneShell::InitInterface_Impl()
68 : {
69 10 : GetStaticInterface()->RegisterChildWindow(::sd::LeftPaneDrawChildWindow::GetChildWindowId());
70 10 : }
71 :
72 2052 : TYPEINIT1(LeftDrawPaneShell, SfxShell);
73 :
74 86 : LeftDrawPaneShell::LeftDrawPaneShell()
75 86 : : SfxShell()
76 : {
77 86 : SetName(OUString("LeftDrawPane"));
78 86 : }
79 :
80 0 : LeftDrawPaneShell::~LeftDrawPaneShell()
81 : {
82 0 : }
83 :
84 : } // end of namespace ::sd
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|