blob: 2284961c4e395abe9dc5915aee14197f269a0c29 (
plain)
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
|
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef _SVX_DATANAVI_HRC
#define _SVX_DATANAVI_HRC
// global
#define FL_DATANAV_BTN 100
#define BTN_DATANAV_OK 101
#define BTN_DATANAV_ESC 102
#define BTN_DATANAV_HELP 103
// class XFormsInstancePage
// Controls
#define TB_ITEMS 10
#define LB_ITEMS 11
// Menu items
#define MID_INSERT_CONTROL 100
// ToolBox items
#define TBI_ITEM_ADD 10
#define TBI_ITEM_ADD_ELEMENT 11
#define TBI_ITEM_ADD_ATTRIBUTE 12
#define TBI_ITEM_EDIT 13
#define TBI_ITEM_REMOVE 14
// ImageLists
#define IL_TBX_BMPS 20
// ImageIndexes
#define IID_ITEM_ADD 1
#define IID_ITEM_ADD_ELEMENT 2
#define IID_ITEM_ADD_ATTRIBUTE 3
#define IID_ITEM_EDIT 4
#define IID_ITEM_REMOVE 5
// class DataNavigatorWindow
// Controls
#define LB_MODELS 10
#define MB_MODELS 11
#define TC_ITEMS 12
#define MB_INSTANCES 13
// MenuItems
#define MID_MODELS_ADD 10
#define MID_MODELS_EDIT 11
#define MID_MODELS_REMOVE 12
#define MID_INSTANCES_ADD 20
#define MID_INSTANCES_EDIT 21
#define MID_INSTANCES_REMOVE 22
#define MID_SHOW_DETAILS 30
// TabPage Ids
#define TID_SUBMISSION 10
#define TID_BINDINGS 11
#define TID_INSTANCE 12
// ImageLists
#define IL_ITEM_BMPS 30
// ImageIndexes
#define IID_GROUP_CLOSED 1
#define IID_GROUP_OPEN 2
#define IID_ELEMENT 3
#define IID_ATTRIBUTE 4
#define IID_TEXT 5
#define IID_OTHER 6
// class AddDataItemDialog
#define FL_ITEM 10
#define FT_NAME 11
#define ED_NAME 12
#define FT_DEFAULT 13
#define ED_DEFAULT 14
#define PB_DEFAULT 15
#define FL_SETTINGS 16
#define FT_DATATYPE 17
#define LB_DATATYPE 18
#define CB_REQUIRED 19
#define PB_REQUIRED 20
#define CB_RELEVANT 21
#define PB_RELEVANT 22
#define CB_CONSTRAINT 23
#define PB_CONSTRAINT 24
#define CB_READONLY 25
#define PB_READONLY 26
#define CB_CALCULATE 27
#define PB_CALCULATE 28
#define STR_FIXEDLINE_ELEMENT 10
#define STR_FIXEDLINE_ATTRIBUTE 11
#define STR_FIXEDLINE_BINDING 12
#define STR_FIXEDTEXT_BINDING 13
// class AddConditionDialog
#define FT_CONDITION 10
#define ED_CONDITION 11
#define FT_RESULT 12
#define FT_RESULT_PREVIEW 13
#define PB_EDIT_NAMESPACES 14
// class NamespaceItemDialog
#define FT_NAMESPACES 10
#define LB_NAMESPACES 11
#define PB_ADD_NAMESPACE 12
#define PB_EDIT_NAMESPACE 13
#define PB_DELETE_NAMESPACE 14
#define STR_HEADER_PREFIX 10
#define STR_HEADER_URL 11
// class ManageNamespaceDialog
#define FT_PREFIX 10
#define ED_PREFIX 11
#define FT_URL 12
#define ED_URL 13
#define STR_EDIT_TEXT 10
// class AddSubmissionDialog
#define FL_SUBMISSION 10
#define FT_SUBMIT_NAME 11
#define ED_SUBMIT_NAME 12
#define FT_SUBMIT_ACTION 13
#define ED_SUBMIT_ACTION 14
#define FT_SUBMIT_METHOD 15
#define LB_SUBMIT_METHOD 16
#define FT_SUBMIT_REF 17
#define ED_SUBMIT_REF 18
#define PB_SUBMIT_REF 19
#define FT_SUBMIT_BIND 20
#define LB_SUBMIT_BIND 21
#define FT_SUBMIT_REPLACE 22
#define LB_SUBMIT_REPLACE 23
#define STR_METHOD_POST 10
#define STR_METHOD_PUT 11
#define STR_METHOD_GET 12
#define STR_REPLACE_NONE 13
#define STR_REPLACE_INST 14
#define STR_REPLACE_DOC 15
// class AddModelDialog
#define FL_MODEL 10
#define FT_MODEL_NAME 11
#define ED_MODEL_NAME 12
// class AddInstanceDialog
#define FL_INSTANCE 10
#define FT_INST_NAME 11
#define ED_INST_NAME 12
#define FT_INST_URL 13
#define ED_INST_URL 14
#define PB_FILEPICKER 15
#define CB_INST_LINKINST 16
// class AddModelDialog
#define CB_MODIFIES_DOCUMENT 1
#endif //_SVX_DATANAVI_HRC
|