fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / inc / hfedtdlg.hxx
blob64887a9e25c935c8c70f8dc362c4cbf913e450c0
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 <svx/pageitem.hxx>
26 #include "sc.hrc"
28 class ScHFEditDlg : public SfxTabDialog
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;
39 class ScHFEditHeaderDlg : public ScHFEditDlg
41 public:
42 ScHFEditHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
43 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
46 class ScHFEditFooterDlg : public ScHFEditDlg
48 public:
49 ScHFEditFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
50 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
53 class ScHFEditLeftHeaderDlg : public ScHFEditDlg
55 public:
56 ScHFEditLeftHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
57 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
60 class ScHFEditRightHeaderDlg : public ScHFEditDlg
62 public:
63 ScHFEditRightHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
64 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
67 class ScHFEditLeftFooterDlg : public ScHFEditDlg
69 public:
70 ScHFEditLeftFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
71 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
74 class ScHFEditRightFooterDlg : public ScHFEditDlg
76 public:
77 ScHFEditRightFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
78 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
81 class ScHFEditSharedHeaderDlg : public ScHFEditDlg
83 public:
84 ScHFEditSharedHeaderDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
85 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
88 class ScHFEditSharedFooterDlg : public ScHFEditDlg
90 public:
91 ScHFEditSharedFooterDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
92 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
95 class ScHFEditAllDlg : public ScHFEditDlg
97 public:
98 ScHFEditAllDlg(SfxViewFrame* pFrame, vcl::Window* pParent,
99 const SfxItemSet& rCoreSet, const OUString& rPageStyle);
102 class ScHFEditActiveDlg : public ScHFEditDlg
104 public:
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: */