nss: upgrade to release 3.73
[LibreOffice.git] / sc / source / ui / inc / hfedtdlg.hxx
blobd1448e8fa836d81083174518ba5acd2021667558
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 .
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 <editeng/svxenum.hxx>
26 class ScHFEditDlg : public SfxTabDialogController
28 SvxNumType eNumType;
29 protected:
30 ScHFEditDlg(weld::Window* pParent,
31 const SfxItemSet& rCoreSet, const OUString& rPageStyle,
32 const OUString& rUIXMLDescription, const OString& rID);
33 public:
34 virtual void PageCreated(const OString& rId, SfxTabPage& rPage) override;
37 class ScHFEditHeaderDlg : public ScHFEditDlg
39 public:
40 ScHFEditHeaderDlg(weld::Window* pParent,
41 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
44 class ScHFEditFooterDlg : public ScHFEditDlg
46 public:
47 ScHFEditFooterDlg(weld::Window* pParent,
48 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
51 class ScHFEditLeftHeaderDlg : public ScHFEditDlg
53 public:
54 ScHFEditLeftHeaderDlg(weld::Window* pParent,
55 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
58 class ScHFEditRightHeaderDlg : public ScHFEditDlg
60 public:
61 ScHFEditRightHeaderDlg(weld::Window* pParent,
62 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
65 class ScHFEditLeftFooterDlg : public ScHFEditDlg
67 public:
68 ScHFEditLeftFooterDlg(weld::Window* pParent,
69 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
72 class ScHFEditRightFooterDlg : public ScHFEditDlg
74 public:
75 ScHFEditRightFooterDlg(weld::Window* pParent,
76 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
79 class ScHFEditSharedHeaderDlg : public ScHFEditDlg
81 public:
82 ScHFEditSharedHeaderDlg(weld::Window* pParent,
83 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
86 class ScHFEditSharedFooterDlg : public ScHFEditDlg
88 public:
89 ScHFEditSharedFooterDlg(weld::Window* pParent,
90 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
93 class ScHFEditAllDlg : public ScHFEditDlg
95 public:
96 ScHFEditAllDlg(weld::Window* pParent,
97 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
100 class ScHFEditActiveDlg : public ScHFEditDlg
102 public:
103 ScHFEditActiveDlg(weld::Window* pParent,
104 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
107 #endif // INCLUDED_SC_SOURCE_UI_INC_HFEDTDLG_HXX
109 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */