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 :
20 : #ifndef INCLUDED_SC_SOURCE_UI_INC_HFEDTDLG_HXX
21 : #define INCLUDED_SC_SOURCE_UI_INC_HFEDTDLG_HXX
22 :
23 : #include <sfx2/tabdlg.hxx>
24 : #include <svx/pageitem.hxx>
25 :
26 : #include "sc.hrc"
27 :
28 0 : class ScHFEditDlg : public SfxTabDialog
29 : {
30 : SvxNumType eNumType;
31 : protected:
32 : ScHFEditDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
33 : const SfxItemSet& rCoreSet, const OUString& rPageStyle,
34 : const OUString& rID, const OUString& rUIXMLDescription );
35 : public:
36 : virtual void PageCreated( sal_uInt16 nId, SfxTabPage& rPage ) SAL_OVERRIDE;
37 : };
38 :
39 0 : class ScHFEditHeaderDlg : public ScHFEditDlg
40 : {
41 : public:
42 : ScHFEditHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
43 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
44 : };
45 :
46 0 : class ScHFEditFooterDlg : public ScHFEditDlg
47 : {
48 : public:
49 : ScHFEditFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
50 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
51 : };
52 :
53 0 : class ScHFEditLeftHeaderDlg : public ScHFEditDlg
54 : {
55 : public:
56 : ScHFEditLeftHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
57 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
58 : };
59 :
60 0 : class ScHFEditRightHeaderDlg : public ScHFEditDlg
61 : {
62 : public:
63 : ScHFEditRightHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
64 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
65 : };
66 :
67 0 : class ScHFEditLeftFooterDlg : public ScHFEditDlg
68 : {
69 : public:
70 : ScHFEditLeftFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
71 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
72 : };
73 :
74 0 : class ScHFEditRightFooterDlg : public ScHFEditDlg
75 : {
76 : public:
77 : ScHFEditRightFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
78 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
79 : };
80 :
81 0 : class ScHFEditSharedHeaderDlg : public ScHFEditDlg
82 : {
83 : public:
84 : ScHFEditSharedHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
85 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
86 : };
87 :
88 0 : class ScHFEditSharedFooterDlg : public ScHFEditDlg
89 : {
90 : public:
91 : ScHFEditSharedFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
92 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
93 : };
94 :
95 0 : class ScHFEditAllDlg : public ScHFEditDlg
96 : {
97 : public:
98 : ScHFEditAllDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
99 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
100 : };
101 :
102 0 : class ScHFEditActiveDlg : public ScHFEditDlg
103 : {
104 : public:
105 : ScHFEditActiveDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
106 : const SfxItemSet& rCoreSet, const OUString& rPageStyle);
107 : };
108 :
109 : #endif // INCLUDED_SC_SOURCE_UI_INC_HFEDTDLG_HXX
110 :
111 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|