1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "PaneShells.hxx"
22 #include "PaneChildWindows.hxx"
25 #include "sdresid.hxx"
27 #include <sfx2/msg.hxx>
28 #include <sfx2/objface.hxx>
32 //===== LeftImpressPaneShell ==================================================
34 SFX_SLOTMAP(LeftImpressPaneShell
)
36 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
39 SFX_IMPL_INTERFACE(LeftImpressPaneShell
, SfxShell
, SdResId(STR_LEFT_IMPRESS_PANE_SHELL
))
41 SFX_CHILDWINDOW_REGISTRATION(
42 ::sd::LeftPaneImpressChildWindow::GetChildWindowId());
45 TYPEINIT1(LeftImpressPaneShell
, SfxShell
);
49 LeftImpressPaneShell::LeftImpressPaneShell (void)
52 SetName(OUString("LeftImpressPane"));
58 LeftImpressPaneShell::~LeftImpressPaneShell (void)
65 //===== LeftDrawPaneShell =====================================================
67 SFX_SLOTMAP(LeftDrawPaneShell
)
69 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
72 SFX_IMPL_INTERFACE(LeftDrawPaneShell
, SfxShell
, SdResId(STR_LEFT_DRAW_PANE_SHELL
))
74 SFX_CHILDWINDOW_REGISTRATION(
75 ::sd::LeftPaneDrawChildWindow::GetChildWindowId());
78 TYPEINIT1(LeftDrawPaneShell
, SfxShell
);
82 LeftDrawPaneShell::LeftDrawPaneShell (void)
85 SetName(OUString("LeftDrawPane"));
91 LeftDrawPaneShell::~LeftDrawPaneShell (void)
95 //===== ToolPanelPaneShell ========================================================
97 SFX_SLOTMAP( ToolPanelPaneShell
)
99 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
102 SFX_IMPL_INTERFACE( ToolPanelPaneShell
, SfxShell
, SdResId( STR_TOOL_PANEL_SHELL
) )
104 SFX_CHILDWINDOW_REGISTRATION( ::sd::ToolPanelChildWindow::GetChildWindowId() );
107 TYPEINIT1( ToolPanelPaneShell
, SfxShell
);
109 ToolPanelPaneShell::ToolPanelPaneShell()
112 SetName(OUString("ToolPanel"));
115 ToolPanelPaneShell::~ToolPanelPaneShell(void)
119 } // end of namespace ::sd
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */