fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / sd / source / ui / dlg / LayerDialogChildWindow.cxx
blobd88b0b621a6956ea188357732432cb601ca9bea4
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 .
21 #include "LayerDialogChildWindow.hxx"
22 #include <sfx2/dockwin.hxx>
23 #include "app.hrc"
24 #include <sfx2/app.hxx>
26 // Instantiate the implementation of the docking window before files
27 // are included that define ::sd::Window. The ... macros are not really
28 // namespace proof.
29 namespace sd {
30 SFX_IMPL_DOCKINGWINDOW_WITHID(LayerDialogChildWindow, SID_LAYER_DIALOG_WIN)
33 #include "LayerDialog.hrc"
34 #include "LayerDialogContent.hxx"
37 #include "ViewShellBase.hxx"
38 #include "DrawViewShell.hxx"
39 #include <sfx2/dispatch.hxx>
41 namespace sd {
44 LayerDialogChildWindow::LayerDialogChildWindow (
45 ::Window* _pParent,
46 sal_uInt16 nId,
47 SfxBindings* pBindings,
48 SfxChildWinInfo* pInfo)
49 : SfxChildWindow (_pParent, nId)
51 ViewShellBase& rBase (*ViewShellBase::GetViewShellBase(
52 pBindings->GetDispatcher()->GetFrame()));
53 LayerDialogContent* pContent = new LayerDialogContent (
54 pBindings,
55 this,
56 _pParent,
57 SdResId( FLT_WIN_LAYER_DIALOG),
58 rBase);
59 pWindow = pContent;
61 eChildAlignment = SFX_ALIGN_NOALIGNMENT;
63 pContent->Initialize(pInfo);
68 LayerDialogChildWindow::~LayerDialogChildWindow (void)
74 } // end of namespace sd
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */