1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
/*************************************************************************
*
* $RCSfile: formmetadata.hxx,v $
*
* $Revision: 1.10 $
*
* last change: $Author: tbe $ $Date: 2001-10-19 12:58:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _EXTENSIONS_PROPCTRLR_FORMMETADATA_HXX_
#define _EXTENSIONS_PROPCTRLR_FORMMETADATA_HXX_
#ifndef _EXTENSIONS_PROPCTRLR_PROPERTYINFO_HXX_
#include "propertyinfo.hxx"
#endif
#ifndef _EXTENSIONS_PROPCTRLR_MODULEPRC_HXX_
#include "modulepcr.hxx"
#endif
//............................................................................
namespace pcr
{
//............................................................................
struct OPropertyInfoImpl;
//========================================================================
//= OFormPropertyInfoService
//========================================================================
class OFormPropertyInfoService
:public IPropertyInfoService
,public OModuleResourceClient
{
protected:
static sal_uInt16 s_nCount;
static OPropertyInfoImpl* s_pPropertyInfos;
// TODO: a real structure which allows quick access by name as well as by id
public:
sal_Int32 getPropertyId(const String& _rName) const;
String getPropertyTranslation(sal_Int32 _nId) const;
sal_Int32 getPropertyHelpId(sal_Int32 _nId) const;
sal_Int16 getPropertyPos(sal_Int32 _nId) const;
sal_Bool getPropertyMultiFlag(sal_Int32 _nId) const;
sal_uInt32 getPropertyUIFlags(sal_Int32 _nId) const;
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString >
getPropertyEnumRepresentations(sal_Int32 _nId) const;
protected:
static const OPropertyInfoImpl* getPropertyInfo();
static const OPropertyInfoImpl* getPropertyInfo(const String& _rName);
static const OPropertyInfoImpl* getPropertyInfo(sal_Int32 _nId);
};
//========================================================================
//= event description
//========================================================================
class EventDisplayDescription
{
public:
::rtl::OUString sName;
String sDisplayName;
sal_Int32 nHelpId;
sal_Int32 nIndex;
EventDisplayDescription(sal_Int32 _nId, const ::rtl::OUString& _rName, const UniString& _rDisplayName, sal_Int32 _nHelpId)
:nIndex(_nId)
,sName(_rName)
,sDisplayName(_rDisplayName)
,nHelpId(_nHelpId)
{
}
};
//========================================================================
//= event helpers
//========================================================================
EventDisplayDescription* GetEvtTranslation(const ::rtl::OUString& _rName);
//========================================================================
//= UI flags (for all browseable properties)
//========================================================================
const sal_uInt32 PROP_NONE_VISIBLE = 0x00000000;
const sal_uInt32 PROP_FORM_VISIBLE = 0x00000001;
const sal_uInt32 PROP_DIALOG_VISIBLE = 0x00000002;
//========================================================================
//= property ids (for all browseable properties)
//========================================================================
#define PROPERTY_ID_NAME 1
#define PROPERTY_ID_LABEL 2
#define PROPERTY_ID_CONTROLLABEL 3
#define PROPERTY_ID_MAXTEXTLEN 4
#define PROPERTY_ID_EDITMASK 5
#define PROPERTY_ID_LITERALMASK 6
#define PROPERTY_ID_STRICTFORMAT 7
#define PROPERTY_ID_ENABLED 8
#define PROPERTY_ID_READONLY 9
#define PROPERTY_ID_PRINTABLE 10
#define PROPERTY_ID_CONTROLSOURCE 11
#define PROPERTY_ID_TABSTOP 12
#define PROPERTY_ID_TABINDEX 13
#define PROPERTY_ID_DATASOURCE 14
#define PROPERTY_ID_COMMAND 15
#define PROPERTY_ID_COMMANDTYPE 16
#define PROPERTY_ID_FILTER_CRITERIA 17
#define PROPERTY_ID_SORT 18
#define PROPERTY_ID_INSERTONLY 19
#define PROPERTY_ID_ALLOWADDITIONS 20
#define PROPERTY_ID_ALLOWEDITS 21
#define PROPERTY_ID_ALLOWDELETIONS 22
#define PROPERTY_ID_NAVIGATION 24
#define PROPERTY_ID_CYCLE 25
#define PROPERTY_ID_HIDDEN_VALUE 26
#define PROPERTY_ID_VALUEMIN 27
#define PROPERTY_ID_VALUEMAX 28
#define PROPERTY_ID_VALUESTEP 29
#define PROPERTY_ID_DEFAULT_VALUE 30
#define PROPERTY_ID_DECIMAL_ACCURACY 31
#define PROPERTY_ID_SHOWTHOUSANDSEP 32
#define PROPERTY_ID_REFVALUE 33
#define PROPERTY_ID_CURRENCYSYMBOL 34
#define PROPERTY_ID_CURRSYM_POSITION 35
#define PROPERTY_ID_DATEMIN 36
#define PROPERTY_ID_DATEMAX 37
#define PROPERTY_ID_DATEFORMAT 38
#define PROPERTY_ID_DATE_SHOW_CENTURY 39
#define PROPERTY_ID_DEFAULT_DATE 40
#define PROPERTY_ID_TIMEMIN 41
#define PROPERTY_ID_TIMEMAX 42
#define PROPERTY_ID_TIMEFORMAT 43
#define PROPERTY_ID_DEFAULT_TIME 44
#define PROPERTY_ID_EFFECTIVE_MIN 45
#define PROPERTY_ID_EFFECTIVE_MAX 46
#define PROPERTY_ID_EFFECTIVE_DEFAULT 47
#define PROPERTY_ID_FORMATKEY 48
#define PROPERTY_ID_CLASSID 50
#define PROPERTY_ID_HEIGHT 51
#define PROPERTY_ID_WIDTH 52
#define PROPERTY_ID_BOUNDCOLUMN 53
#define PROPERTY_ID_LISTSOURCETYPE 54
#define PROPERTY_ID_LISTSOURCE 55
#define PROPERTY_ID_LISTINDEX 56
#define PROPERTY_ID_STRINGITEMLIST 57
#define PROPERTY_ID_DEFAULT_TEXT 58
#define PROPERTY_ID_FONT_NAME 59
#define PROPERTY_ID_ALIGN 60
#define PROPERTY_ID_ROWHEIGHT 61
#define PROPERTY_ID_BACKGROUNDCOLOR 62
#define PROPERTY_ID_FILLCOLOR 63
#define PROPERTY_ID_ESCAPE_PROCESSING 64
#define PROPERTY_ID_LINECOLOR 65
#define PROPERTY_ID_BORDER 66
#define PROPERTY_ID_DROPDOWN 67
#define PROPERTY_ID_AUTOCOMPLETE 68
#define PROPERTY_ID_LINECOUNT 69
#define PROPERTY_ID_MULTI 70
#define PROPERTY_ID_MULTILINE 71
#define PROPERTY_ID_MULTISELECTION 72
#define PROPERTY_ID_HARDLINEBREAKS 73
#define PROPERTY_ID_HSCROLL 74
#define PROPERTY_ID_VSCROLL 75
#define PROPERTY_ID_SPIN 76
#define PROPERTY_ID_BUTTONTYPE 77
#define PROPERTY_ID_TARGET_URL 78
#define PROPERTY_ID_TARGET_FRAME 79
#define PROPERTY_ID_SUBMIT_ACTION 80
#define PROPERTY_ID_SUBMIT_TARGET 81
#define PROPERTY_ID_SUBMIT_METHOD 82
#define PROPERTY_ID_SUBMIT_ENCODING 83
#define PROPERTY_ID_DEFAULT_CHECKED 84
#define PROPERTY_ID_DEFAULT_BUTTON 85
#define PROPERTY_ID_IMAGE_URL 86
#define PROPERTY_ID_DEFAULT_SELECT_SEQ 87
#define PROPERTY_ID_ECHO_CHAR 88
#define PROPERTY_ID_EMPTY_IS_NULL 89
#define PROPERTY_ID_TRISTATE 90
#define PROPERTY_ID_MASTERFIELDS 91
#define PROPERTY_ID_DETAILFIELDS 92
#define PROPERTY_ID_RECORDMARKER 93
#define PROPERTY_ID_FILTERPROPOSAL 94
#define PROPERTY_ID_TAG 95
#define PROPERTY_ID_HELPTEXT 96
#define PROPERTY_ID_HELPURL 97
#define PROPERTY_ID_HASNAVIGATION 98
#define PROPERTY_ID_POSITIONX 99
#define PROPERTY_ID_POSITIONY 100
#define PROPERTY_ID_TITLE 101
#define PROPERTY_ID_STEP 102
#define PROPERTY_ID_PROGRESSVALUE 103
#define PROPERTY_ID_PROGRESSVALUE_MIN 104
#define PROPERTY_ID_PROGRESSVALUE_MAX 105
#define PROPERTY_ID_SCROLLVALUE 106
#define PROPERTY_ID_SCROLLVALUE_MAX 107
#define PROPERTY_ID_LINEINCREMENT 108
#define PROPERTY_ID_BLOCKINCREMENT 109
#define PROPERTY_ID_VISIBLESIZE 110
#define PROPERTY_ID_ORIENTATION 111
#define PROPERTY_ID_IMAGEALIGN 112
#define PROPERTY_ID_DATE 113
#define PROPERTY_ID_STATE 114
#define PROPERTY_ID_TIME 115
#define PROPERTY_ID_VALUE 116
#define PROPERTY_ID_SCALEIMAGE 117
#define PROPERTY_ID_PUSHBUTTONTYPE 118
//............................................................................
} // namespace pcr
//............................................................................
#endif // _EXTENSIONS_PROPCTRLR_FORMMETADATA_HXX_
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
* Revision 1.9 2001/06/06 10:37:54 fs
* #86837# +PROPERTY_IMAGEALIGN
*
* Revision 1.8 2001/05/02 12:42:11 tbe
* added scrollbar properties
*
* Revision 1.7 2001/04/26 09:15:54 tbe
* added progressbar properties
*
* Revision 1.6 2001/03/07 14:35:42 tbe
* added step property
*
* Revision 1.5 2001/03/02 16:28:16 tbe
* added title property
*
* Revision 1.4 2001/02/22 09:31:55 tbe
* added properties for dialog controls
*
* Revision 1.3 2001/02/06 10:18:10 fs
* #83479# reintroduced the HasNavigationBar property
*
* Revision 1.2 2001/01/17 08:42:10 fs
* tightened the property id range
*
* Revision 1.1 2001/01/12 11:28:36 fs
* initial checkin - outsourced the form property browser
*
*
* Revision 1.0 08.01.01 12:09:11 fs
************************************************************************/
|