1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
20 #ifndef INCLUDED_SC_SOURCE_UI_INC_HFEDTDLG_HXX
21 #define INCLUDED_SC_SOURCE_UI_INC_HFEDTDLG_HXX
23 #include <sfx2/tabdlg.hxx>
24 #include <svx/pageitem.hxx>
28 class ScHFEditDlg
: public SfxTabDialog
32 ScHFEditDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
33 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
,
34 const OUString
& rID
, const OUString
& rUIXMLDescription
);
36 virtual void PageCreated( sal_uInt16 nId
, SfxTabPage
& rPage
) SAL_OVERRIDE
;
39 class ScHFEditHeaderDlg
: public ScHFEditDlg
42 ScHFEditHeaderDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
43 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
46 class ScHFEditFooterDlg
: public ScHFEditDlg
49 ScHFEditFooterDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
50 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
53 class ScHFEditLeftHeaderDlg
: public ScHFEditDlg
56 ScHFEditLeftHeaderDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
57 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
60 class ScHFEditRightHeaderDlg
: public ScHFEditDlg
63 ScHFEditRightHeaderDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
64 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
67 class ScHFEditLeftFooterDlg
: public ScHFEditDlg
70 ScHFEditLeftFooterDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
71 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
74 class ScHFEditRightFooterDlg
: public ScHFEditDlg
77 ScHFEditRightFooterDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
78 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
81 class ScHFEditSharedHeaderDlg
: public ScHFEditDlg
84 ScHFEditSharedHeaderDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
85 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
88 class ScHFEditSharedFooterDlg
: public ScHFEditDlg
91 ScHFEditSharedFooterDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
92 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
95 class ScHFEditAllDlg
: public ScHFEditDlg
98 ScHFEditAllDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
99 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
102 class ScHFEditActiveDlg
: public ScHFEditDlg
105 ScHFEditActiveDlg(SfxViewFrame
* pFrame
, vcl::Window
* pParent
,
106 const SfxItemSet
& rCoreSet
, const OUString
& rPageStyle
);
109 #endif // INCLUDED_SC_SOURCE_UI_INC_HFEDTDLG_HXX
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */