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