fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / sd / source / ui / dlg / PaneShells.cxx
blobd3338ab411d25bbb706e0492e86e60c7b60d7ec8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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"
24 #include "glob.hrc"
25 #include "sdresid.hxx"
27 #include <sfx2/msg.hxx>
28 #include <sfx2/objface.hxx>
30 namespace sd {
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)
50 : SfxShell()
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)
83 : SfxShell()
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()
110 :SfxShell()
112 SetName(OUString("ToolPanel"));
115 ToolPanelPaneShell::~ToolPanelPaneShell(void)
119 } // end of namespace ::sd
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */