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 : #ifndef _SFX_TEMPLDLG_HXX
20 : #define _SFX_TEMPLDLG_HXX
21 :
22 : #include <sal/config.h>
23 : #include <sfx2/dllapi.h>
24 : #include <vcl/ctrl.hxx>
25 : #include <rsc/rscsfx.hxx>
26 :
27 : #include <sfx2/dockwin.hxx>
28 : #include <sfx2/childwin.hxx>
29 : #include <sfx2/basedlgs.hxx>
30 :
31 : class SfxTemplateDialog_Impl;
32 :
33 : // class ISfxTemplateCommon ----------------------------------------------
34 :
35 0 : class ISfxTemplateCommon
36 : {
37 : public:
38 : virtual SfxStyleFamily GetActualFamily() const = 0;
39 : virtual OUString GetSelectedEntry() const = 0;
40 :
41 : protected:
42 0 : ~ISfxTemplateCommon() {}
43 : };
44 :
45 : // class SfxTemplateDialog -----------------------------------------------
46 :
47 : class SfxTemplateDialog : public SfxDockingWindow
48 : {
49 : private:
50 : friend class SfxTemplateDialogWrapper;
51 : friend class SfxTemplateDialog_Impl;
52 :
53 : SfxTemplateDialog_Impl* pImpl;
54 :
55 : virtual void DataChanged( const DataChangedEvent& _rDCEvt ) SAL_OVERRIDE;
56 : virtual void Resize() SAL_OVERRIDE;
57 : virtual SfxChildAlignment CheckAlignment( SfxChildAlignment, SfxChildAlignment ) SAL_OVERRIDE;
58 : virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
59 :
60 : public:
61 : SfxTemplateDialog( SfxBindings*, SfxChildWindow*, Window* );
62 : virtual ~SfxTemplateDialog();
63 :
64 : virtual void Update();
65 :
66 : ISfxTemplateCommon* GetISfxTemplateCommon();
67 : void SetParagraphFamily();
68 : };
69 :
70 : // class SfxTemplateDialogWrapper ----------------------------------------
71 :
72 0 : class SFX2_DLLPUBLIC SfxTemplateDialogWrapper : public SfxChildWindow
73 : {
74 : public:
75 : SfxTemplateDialogWrapper
76 : (Window*,sal_uInt16,SfxBindings*,SfxChildWinInfo*);
77 : SFX_DECL_CHILDWINDOW_WITHID(SfxTemplateDialogWrapper);
78 :
79 : void SetParagraphFamily();
80 : };
81 :
82 : // class SfxTemplatePanelControl -----------------------------------------
83 :
84 : class SFX2_DLLPUBLIC SfxTemplatePanelControl : public DockingWindow
85 : {
86 : public:
87 : SfxTemplatePanelControl (SfxBindings* pBindings, Window* pParentWindow);
88 : virtual ~SfxTemplatePanelControl();
89 :
90 : virtual void Update();
91 : virtual void DataChanged( const DataChangedEvent& _rDCEvt ) SAL_OVERRIDE;
92 : virtual void Resize() SAL_OVERRIDE;
93 : virtual SfxChildAlignment CheckAlignment( SfxChildAlignment, SfxChildAlignment );
94 : virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
95 : virtual void FreeResource (void);
96 :
97 : private:
98 : SfxTemplateDialog_Impl* pImpl;
99 : SfxBindings* mpBindings;
100 : };
101 :
102 :
103 : #endif
104 :
105 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|