fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / sfx2 / templdlg.hxx
blob9c57455bc57d4bf60fd60881f74074c8c9eab8ef
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 .
19 #ifndef _SFX_TEMPLDLG_HXX
20 #define _SFX_TEMPLDLG_HXX
22 #include "sal/config.h"
23 #include "sfx2/dllapi.h"
24 #include <vcl/ctrl.hxx>
25 #include <rsc/rscsfx.hxx>
27 #include <sfx2/dockwin.hxx>
28 #include <sfx2/childwin.hxx>
29 #include <sfx2/basedlgs.hxx>
31 class SfxTemplateDialog_Impl;
33 // class ISfxTemplateCommon ----------------------------------------------
35 class ISfxTemplateCommon
37 public:
38 virtual SfxStyleFamily GetActualFamily() const = 0;
39 virtual String GetSelectedEntry() const = 0;
41 protected:
42 ~ISfxTemplateCommon() {}
45 // class SfxTemplateDialog -----------------------------------------------
47 class SfxTemplateDialog : public SfxDockingWindow
49 private:
50 friend class SfxTemplateDialogWrapper;
51 friend class SfxTemplateDialog_Impl;
53 SfxTemplateDialog_Impl* pImpl;
55 virtual void DataChanged( const DataChangedEvent& _rDCEvt );
56 virtual void Resize();
57 virtual SfxChildAlignment CheckAlignment( SfxChildAlignment, SfxChildAlignment );
58 virtual void StateChanged( StateChangedType nStateChange );
60 public:
61 SfxTemplateDialog( SfxBindings*, SfxChildWindow*, Window* );
62 ~SfxTemplateDialog();
64 virtual void Update();
66 ISfxTemplateCommon* GetISfxTemplateCommon();
67 void SetParagraphFamily();
70 // class SfxTemplateDialogWrapper ----------------------------------------
72 class SFX2_DLLPUBLIC SfxTemplateDialogWrapper : public SfxChildWindow
74 public:
75 SfxTemplateDialogWrapper
76 (Window*,sal_uInt16,SfxBindings*,SfxChildWinInfo*);
77 SFX_DECL_CHILDWINDOW_WITHID(SfxTemplateDialogWrapper);
79 void SetParagraphFamily();
82 // class SfxTemplatePanelControl -----------------------------------------
84 class SFX2_DLLPUBLIC SfxTemplatePanelControl : public DockingWindow
86 public:
87 SfxTemplatePanelControl (SfxBindings* pBindings, Window* pParentWindow);
88 ~SfxTemplatePanelControl (void);
90 virtual void Update();
91 virtual void DataChanged( const DataChangedEvent& _rDCEvt );
92 virtual void Resize();
93 virtual SfxChildAlignment CheckAlignment( SfxChildAlignment, SfxChildAlignment );
94 virtual void StateChanged( StateChangedType nStateChange );
95 virtual void FreeResource (void);
97 ISfxTemplateCommon* GetISfxTemplateCommon();
98 void SetParagraphFamily();
100 private:
101 SfxTemplateDialog_Impl* pImpl;
102 SfxBindings* mpBindings;
106 #endif
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */