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 SCUI_TPHFEDIT_HXX
21 : #define SCUI_TPHFEDIT_HXX
22 :
23 : #include "tphfedit.hxx"
24 :
25 : //===================================================================
26 : enum ScHFEntryId
27 : {
28 : eNoneEntry ,
29 : ePageEntry ,
30 : ePagesEntry ,
31 : eSheetEntry ,
32 : eConfidentialEntry ,
33 : eFileNamePageEntry ,
34 : eExtFileNameEntry ,
35 : ePageSheetEntry ,
36 : ePageFileNameEntry ,
37 : ePageExtFileNameEntry ,
38 : eUserNameEntry ,
39 : eCreatedByEntry ,
40 : eEntryCount
41 : };
42 :
43 : class EditTextObject;
44 :
45 :
46 : class ScHFEditPage : public SfxTabPage
47 : {
48 : public:
49 : virtual sal_Bool FillItemSet ( SfxItemSet& rCoreSet );
50 : virtual void Reset ( const SfxItemSet& rCoreSet );
51 :
52 : void SetNumType(SvxNumType eNumType);
53 : void ClearTextAreas();
54 :
55 : protected:
56 : ScHFEditPage( Window* pParent,
57 : sal_uInt16 nResId,
58 : const SfxItemSet& rCoreSet,
59 : sal_uInt16 nWhich, bool bHeader );
60 : virtual ~ScHFEditPage();
61 :
62 : private:
63 : FixedText aFtLeft;
64 : ScEditWindow aWndLeft;
65 : FixedText aFtCenter;
66 : ScEditWindow aWndCenter;
67 : FixedText aFtRight;
68 : ScEditWindow aWndRight;
69 : FixedText maFtDefinedHF;
70 : ListBox maLbDefined;
71 : FixedText maFtCustomHF;
72 : ImageButton aBtnText;
73 : ScExtIButton aBtnFile;
74 : ImageButton aBtnTable;
75 : ImageButton aBtnPage;
76 : ImageButton aBtnLastPage;
77 : ImageButton aBtnDate;
78 : ImageButton aBtnTime;
79 : FixedLine aFlInfo;
80 : FixedInfo aFtInfo;
81 : ScPopupMenu aPopUpFile;
82 :
83 : sal_uInt16 nWhich;
84 : String aCmdArr[6];
85 :
86 : private:
87 : #ifdef _TPHFEDIT_CXX
88 : void FillCmdArr();
89 : void InitPreDefinedList();
90 : void ProcessDefinedListSel(ScHFEntryId eSel, bool bTravelling = false);
91 : void InsertToDefinedList();
92 : void RemoveFromDefinedList();
93 : void SetSelectDefinedList();
94 : bool IsPageEntry(EditEngine*pEngine, EditTextObject* pTextObj);
95 : bool IsDateEntry(EditTextObject* pTextObj);
96 : bool IsExtFileNameEntry(EditTextObject* pTextObj);
97 : DECL_LINK( ListHdl_Impl, ListBox* );
98 : DECL_LINK( ClickHdl, ImageButton* );
99 : DECL_LINK( MenuHdl, ScExtIButton* );
100 : #endif
101 : };
102 :
103 : //===================================================================
104 :
105 0 : class ScRightHeaderEditPage : public ScHFEditPage
106 : {
107 : public:
108 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rCoreSet );
109 :
110 : private:
111 : ScRightHeaderEditPage( Window* pParent, const SfxItemSet& rSet );
112 : };
113 :
114 : //===================================================================
115 :
116 0 : class ScLeftHeaderEditPage : public ScHFEditPage
117 : {
118 : public:
119 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rCoreSet );
120 :
121 : private:
122 : ScLeftHeaderEditPage( Window* pParent, const SfxItemSet& rSet );
123 : };
124 :
125 : //===================================================================
126 :
127 0 : class ScRightFooterEditPage : public ScHFEditPage
128 : {
129 : public:
130 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rCoreSet );
131 :
132 : private:
133 : ScRightFooterEditPage( Window* pParent, const SfxItemSet& rSet );
134 : };
135 :
136 : //===================================================================
137 :
138 0 : class ScLeftFooterEditPage : public ScHFEditPage
139 : {
140 : public:
141 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rCoreSet );
142 :
143 : private:
144 : ScLeftFooterEditPage( Window* pParent, const SfxItemSet& rSet );
145 : };
146 :
147 : #endif
148 :
149 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|