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 : #define ShellClass LeftImpressPaneShell
35 :
36 : SFX_SLOTMAP(LeftImpressPaneShell)
37 : {
38 : { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
39 : };
40 :
41 0 : SFX_IMPL_INTERFACE(LeftImpressPaneShell, SfxShell, SdResId(STR_LEFT_IMPRESS_PANE_SHELL))
42 : {
43 0 : SFX_CHILDWINDOW_REGISTRATION(
44 0 : ::sd::LeftPaneImpressChildWindow::GetChildWindowId());
45 0 : }
46 :
47 0 : TYPEINIT1(LeftImpressPaneShell, SfxShell);
48 :
49 :
50 :
51 0 : LeftImpressPaneShell::LeftImpressPaneShell (void)
52 0 : : SfxShell()
53 : {
54 0 : SetName(rtl::OUString("LeftImpressPane"));
55 0 : }
56 :
57 :
58 :
59 :
60 0 : LeftImpressPaneShell::~LeftImpressPaneShell (void)
61 : {
62 0 : }
63 :
64 :
65 :
66 :
67 : //===== LeftDrawPaneShell =====================================================
68 :
69 : #undef ShellClass
70 : #define ShellClass LeftDrawPaneShell
71 :
72 : SFX_SLOTMAP(LeftDrawPaneShell)
73 : {
74 : { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
75 : };
76 :
77 0 : SFX_IMPL_INTERFACE(LeftDrawPaneShell, SfxShell, SdResId(STR_LEFT_DRAW_PANE_SHELL))
78 : {
79 0 : SFX_CHILDWINDOW_REGISTRATION(
80 0 : ::sd::LeftPaneDrawChildWindow::GetChildWindowId());
81 0 : }
82 :
83 0 : TYPEINIT1(LeftDrawPaneShell, SfxShell);
84 :
85 :
86 :
87 0 : LeftDrawPaneShell::LeftDrawPaneShell (void)
88 0 : : SfxShell()
89 : {
90 0 : SetName(rtl::OUString("LeftDrawPane"));
91 0 : }
92 :
93 :
94 :
95 :
96 0 : LeftDrawPaneShell::~LeftDrawPaneShell (void)
97 : {
98 0 : }
99 :
100 :
101 :
102 :
103 : //===== ToolPanelPaneShell ========================================================
104 :
105 : #undef ShellClass
106 : #define ShellClass ToolPanelPaneShell
107 :
108 : SFX_SLOTMAP( ToolPanelPaneShell )
109 : {
110 : { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
111 : };
112 :
113 0 : SFX_IMPL_INTERFACE( ToolPanelPaneShell, SfxShell, SdResId( STR_TOOL_PANEL_SHELL ) )
114 : {
115 0 : SFX_CHILDWINDOW_REGISTRATION( ::sd::ToolPanelChildWindow::GetChildWindowId() );
116 0 : }
117 :
118 0 : TYPEINIT1( ToolPanelPaneShell, SfxShell );
119 :
120 0 : ToolPanelPaneShell::ToolPanelPaneShell()
121 0 : :SfxShell()
122 : {
123 0 : SetName(rtl::OUString("ToolPanel"));
124 0 : }
125 :
126 0 : ToolPanelPaneShell::~ToolPanelPaneShell(void)
127 : {
128 0 : }
129 :
130 : } // end of namespace ::sd
131 :
132 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|