xref: /AOO41X/main/svx/source/form/datanavi.src (revision 14d89e6d7e8ff90a682e6d512a6ade05b6ea0df6)
1*09a1d057SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*09a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*09a1d057SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*09a1d057SAndrew Rist * distributed with this work for additional information
6*09a1d057SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*09a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*09a1d057SAndrew Rist * "License"); you may not use this file except in compliance
9*09a1d057SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11*09a1d057SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13*09a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*09a1d057SAndrew Rist * software distributed under the License is distributed on an
15*09a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*09a1d057SAndrew Rist * KIND, either express or implied.  See the License for the
17*09a1d057SAndrew Rist * specific language governing permissions and limitations
18*09a1d057SAndrew Rist * under the License.
19cdf0e10cSrcweir *
20*09a1d057SAndrew Rist *************************************************************/
21*09a1d057SAndrew Rist
22cdf0e10cSrcweir#include "datanavi.hrc"
23cdf0e10cSrcweir#include "globlmn.hrc"
24cdf0e10cSrcweir#include "svx/fmresids.hrc"
25cdf0e10cSrcweir#include "fmhelp.hrc"
26cdf0e10cSrcweir
27cdf0e10cSrcweir#define MASKCOLOR   MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
28cdf0e10cSrcweir
29cdf0e10cSrcweirTabPage RID_SVX_XFORMS_TABPAGES
30cdf0e10cSrcweir{
31cdf0e10cSrcweir    HelpID = "svx:TabPage:RID_SVX_XFORMS_TABPAGES";
32cdf0e10cSrcweir    Hide = TRUE ;
33cdf0e10cSrcweir    DialogControl = TRUE;
34cdf0e10cSrcweir    Size = MAP_APPFONT ( 63 , 100 ) ;
35cdf0e10cSrcweir    ToolBox TB_ITEMS
36cdf0e10cSrcweir    {
37cdf0e10cSrcweir        HelpId = HID_XFORMS_TOOLBOX ;
38cdf0e10cSrcweir        SVLook = TRUE ;
39cdf0e10cSrcweir        Pos = MAP_APPFONT ( 0 , 0 ) ;
40cdf0e10cSrcweir        ItemList =
41cdf0e10cSrcweir        {
42cdf0e10cSrcweir            ToolBoxItem
43cdf0e10cSrcweir            {
44cdf0e10cSrcweir                Identifier = TBI_ITEM_ADD ;
45cdf0e10cSrcweir                HelpId = HID_XFORMS_TOOLBOX_ITEM_ADD ;
46cdf0e10cSrcweir                Text [ en-US ] = "Add Item" ;
47cdf0e10cSrcweir            };
48cdf0e10cSrcweir            ToolBoxItem
49cdf0e10cSrcweir            {
50cdf0e10cSrcweir                Identifier = TBI_ITEM_ADD_ELEMENT ;
51cdf0e10cSrcweir                HelpId = HID_XFORMS_TOOLBOX_ITEM_ADD_ELEMENT ;
52cdf0e10cSrcweir                Text [ en-US ] = "Add Element" ;
53cdf0e10cSrcweir            };
54cdf0e10cSrcweir            ToolBoxItem
55cdf0e10cSrcweir            {
56cdf0e10cSrcweir                Identifier = TBI_ITEM_ADD_ATTRIBUTE ;
57cdf0e10cSrcweir                HelpId = HID_XFORMS_TOOLBOX_ITEM_ADD_ATTRIBUTE ;
58cdf0e10cSrcweir                Text [ en-US ] = "Add Attribute" ;
59cdf0e10cSrcweir            };
60cdf0e10cSrcweir            ToolBoxItem
61cdf0e10cSrcweir            {
62cdf0e10cSrcweir                Identifier = TBI_ITEM_EDIT ;
63cdf0e10cSrcweir                HelpId = HID_XFORMS_TOOLBOX_ITEM_EDIT ;
64cdf0e10cSrcweir                Text [ en-US ] = "Edit" ;
65cdf0e10cSrcweir            };
66cdf0e10cSrcweir            ToolBoxItem
67cdf0e10cSrcweir            {
68cdf0e10cSrcweir                Type = TOOLBOXITEM_SEPARATOR ;
69cdf0e10cSrcweir            };
70cdf0e10cSrcweir            ToolBoxItem
71cdf0e10cSrcweir            {
72cdf0e10cSrcweir                Identifier = TBI_ITEM_REMOVE ;
73cdf0e10cSrcweir                HelpId = HID_XFORMS_TOOLBOX_ITEM_REMOVE ;
74cdf0e10cSrcweir                Text [ en-US ] = "Delete" ;
75cdf0e10cSrcweir            };
76cdf0e10cSrcweir        };
77cdf0e10cSrcweir    };
78cdf0e10cSrcweir    Control LB_ITEMS
79cdf0e10cSrcweir    {
80cdf0e10cSrcweir        HelpId = HID_XFORMS_ITEMS_LIST ;
81cdf0e10cSrcweir        Pos = MAP_APPFONT ( 0 , 0 ) ;
82cdf0e10cSrcweir        Size = MAP_APPFONT ( 63 , 100 ) ;
83cdf0e10cSrcweir        Border = TRUE ;
84cdf0e10cSrcweir        TabStop = TRUE;
85cdf0e10cSrcweir    };
86cdf0e10cSrcweir#define IMG_LST                 \
87cdf0e10cSrcweirIdList =                        \
88cdf0e10cSrcweir{                               \
89cdf0e10cSrcweir    IID_ITEM_ADD ;              \
90cdf0e10cSrcweir    IID_ITEM_ADD_ELEMENT ;      \
91cdf0e10cSrcweir    IID_ITEM_ADD_ATTRIBUTE ;    \
92cdf0e10cSrcweir    IID_ITEM_EDIT ;             \
93cdf0e10cSrcweir    IID_ITEM_REMOVE ;           \
94cdf0e10cSrcweir};                              \
95cdf0e10cSrcweirIdCount = { 5 ; } ;
96cdf0e10cSrcweir
97cdf0e10cSrcweir    ImageList IL_TBX_BMPS
98cdf0e10cSrcweir    {
99cdf0e10cSrcweir        Prefix = "tb";
100cdf0e10cSrcweir        MASKCOLOR
101cdf0e10cSrcweir        IMG_LST
102cdf0e10cSrcweir    };
103cdf0e10cSrcweir    ImageList IL_TBX_BMPS_HC
104cdf0e10cSrcweir    {
105cdf0e10cSrcweir        Prefix = "tbh";
106cdf0e10cSrcweir        MASKCOLOR
107cdf0e10cSrcweir        IMG_LST
108cdf0e10cSrcweir    };
109cdf0e10cSrcweir#undef IMG_LST
110cdf0e10cSrcweir};
111cdf0e10cSrcweir
112cdf0e10cSrcweirWindow RID_SVXWIN_DATANAVIGATOR
113cdf0e10cSrcweir{
114cdf0e10cSrcweir    OutputSize = TRUE ;
115cdf0e10cSrcweir    Hide = TRUE ;
116cdf0e10cSrcweir    SVLook = TRUE ;
117cdf0e10cSrcweir    DialogControl = TRUE ;
118cdf0e10cSrcweir    HelpId = HID_DATA_NAVIGATOR_WIN ;
119cdf0e10cSrcweir    Pos = MAP_APPFONT ( 0 , 0 ) ;
120cdf0e10cSrcweir    Size = MAP_APPFONT ( 300 , 400 ) ;
121cdf0e10cSrcweir    ListBox LB_MODELS
122cdf0e10cSrcweir    {
123cdf0e10cSrcweir        HelpId = HID_XFORMS_MODELS_LIST ;
124cdf0e10cSrcweir        Pos = MAP_APPFONT ( 3 , 4 ) ;
125cdf0e10cSrcweir        Size = MAP_APPFONT ( 63 , 45 ) ;
126cdf0e10cSrcweir        DropDown = TRUE ;
127cdf0e10cSrcweir        DDExtraWidth = TRUE ;
128cdf0e10cSrcweir    };
129cdf0e10cSrcweir    MenuButton MB_MODELS
130cdf0e10cSrcweir    {
131cdf0e10cSrcweir        HelpId = HID_XFORMS_MODELS_MENUBTN ;
132cdf0e10cSrcweir        Pos = MAP_APPFONT ( 69 , 3 ) ;
133cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
134cdf0e10cSrcweir        Text [ en-US ] = "~Models";
135cdf0e10cSrcweir        ButtonMenu = Menu
136cdf0e10cSrcweir        {
137cdf0e10cSrcweir            ItemList =
138cdf0e10cSrcweir            {
139cdf0e10cSrcweir                MenuItem
140cdf0e10cSrcweir                {
141cdf0e10cSrcweir                    Identifier = MID_MODELS_ADD ;
142cdf0e10cSrcweir                    HelpId = HID_MN_XFORMS_MODELS_ADD ;
143cdf0e10cSrcweir                    Text [ en-US ] = "~Add..." ;
144cdf0e10cSrcweir                };
145cdf0e10cSrcweir                MenuItem
146cdf0e10cSrcweir                {
147cdf0e10cSrcweir                    Identifier = MID_MODELS_EDIT ;
148cdf0e10cSrcweir                    HelpId = HID_MN_XFORMS_MODELS_EDIT ;
149cdf0e10cSrcweir                    Text [ en-US ] = "~Edit..." ;
150cdf0e10cSrcweir                };
151cdf0e10cSrcweir                MenuItem
152cdf0e10cSrcweir                {
153cdf0e10cSrcweir                    Identifier = MID_MODELS_REMOVE ;
154cdf0e10cSrcweir                    HelpId = HID_MN_XFORMS_MODELS_REMOVE ;
155cdf0e10cSrcweir                    Text [ en-US ] = "~Remove" ;
156cdf0e10cSrcweir                };
157cdf0e10cSrcweir            };
158cdf0e10cSrcweir        };
159cdf0e10cSrcweir    };
160cdf0e10cSrcweir    TabControl TC_ITEMS
161cdf0e10cSrcweir    {
162cdf0e10cSrcweir        HelpId = HID_XFORMS_TAB_CONTROL ;
163cdf0e10cSrcweir        Pos = MAP_APPFONT ( 3, 20 ) ;
164cdf0e10cSrcweir        TabStop = TRUE;
165cdf0e10cSrcweir        PageList =
166cdf0e10cSrcweir        {
167cdf0e10cSrcweir            PageItem
168cdf0e10cSrcweir            {
169cdf0e10cSrcweir                Identifier = TID_INSTANCE ;
170cdf0e10cSrcweir                Text [ en-US ] = "Instance";
171cdf0e10cSrcweir            };
172cdf0e10cSrcweir            PageItem
173cdf0e10cSrcweir            {
174cdf0e10cSrcweir                Identifier = TID_SUBMISSION ;
175cdf0e10cSrcweir                Text [ en-US ] = "Submissions";
176cdf0e10cSrcweir            };
177cdf0e10cSrcweir            PageItem
178cdf0e10cSrcweir            {
179cdf0e10cSrcweir                Identifier = TID_BINDINGS ;
180cdf0e10cSrcweir                Text [ en-US ] = "Bindings";
181cdf0e10cSrcweir            };
182cdf0e10cSrcweir        };
183cdf0e10cSrcweir    };
184cdf0e10cSrcweir    MenuButton MB_INSTANCES
185cdf0e10cSrcweir    {
186cdf0e10cSrcweir        HelpId = HID_XFORMS_INSTANCES_MENUBTN ;
187cdf0e10cSrcweir        Pos = MAP_APPFONT ( 69 , 133 ) ;
188cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
189cdf0e10cSrcweir        Text [ en-US ] = "~Instances";
190cdf0e10cSrcweir        ButtonMenu = Menu
191cdf0e10cSrcweir        {
192cdf0e10cSrcweir            ItemList =
193cdf0e10cSrcweir            {
194cdf0e10cSrcweir                MenuItem
195cdf0e10cSrcweir                {
196cdf0e10cSrcweir                    Identifier = MID_INSTANCES_ADD ;
197cdf0e10cSrcweir                    HelpId = HID_MN_XFORMS_INSTANCES_ADD ;
198cdf0e10cSrcweir                    Text [ en-US ] = "~Add..." ;
199cdf0e10cSrcweir                };
200cdf0e10cSrcweir                MenuItem
201cdf0e10cSrcweir                {
202cdf0e10cSrcweir                    Identifier = MID_INSTANCES_EDIT ;
203cdf0e10cSrcweir                    HelpId = HID_MN_XFORMS_INSTANCES_EDIT ;
204cdf0e10cSrcweir                    Text [ en-US ] = "~Edit..." ;
205cdf0e10cSrcweir                };
206cdf0e10cSrcweir                MenuItem
207cdf0e10cSrcweir                {
208cdf0e10cSrcweir                    Identifier = MID_INSTANCES_REMOVE ;
209cdf0e10cSrcweir                    HelpId = HID_MN_XFORMS_INSTANCES_REMOVE ;
210cdf0e10cSrcweir                    Text [ en-US ] = "~Remove" ;
211cdf0e10cSrcweir                };
212cdf0e10cSrcweir                MenuItem
213cdf0e10cSrcweir                {
214cdf0e10cSrcweir                    Separator = TRUE;
215cdf0e10cSrcweir                };
216cdf0e10cSrcweir                MenuItem
217cdf0e10cSrcweir                {
218cdf0e10cSrcweir                    Identifier = MID_SHOW_DETAILS ;
219cdf0e10cSrcweir                    HelpId = HID_MN_XFORMS_SHOW_DETAILS ;
220cdf0e10cSrcweir                    Text [ en-US ] = "~Show Details" ;
221cdf0e10cSrcweir                };
222cdf0e10cSrcweir            };
223cdf0e10cSrcweir        };
224cdf0e10cSrcweir    };
225cdf0e10cSrcweir
226cdf0e10cSrcweir#define IMG_LST2            \
227cdf0e10cSrcweirIdList =                    \
228cdf0e10cSrcweir{                           \
229cdf0e10cSrcweir    IID_GROUP_CLOSED ;      \
230cdf0e10cSrcweir    IID_GROUP_OPEN ;        \
231cdf0e10cSrcweir    IID_ELEMENT ;           \
232cdf0e10cSrcweir    IID_ATTRIBUTE ;         \
233cdf0e10cSrcweir    IID_TEXT ;              \
234cdf0e10cSrcweir    IID_OTHER ;             \
235cdf0e10cSrcweir};                          \
236cdf0e10cSrcweirIdCount = { 6 ; } ;
237cdf0e10cSrcweir
238cdf0e10cSrcweir    ImageList IL_ITEM_BMPS
239cdf0e10cSrcweir    {
240cdf0e10cSrcweir        Prefix = "da";
241cdf0e10cSrcweir        MASKCOLOR
242cdf0e10cSrcweir        IMG_LST2
243cdf0e10cSrcweir    };
244cdf0e10cSrcweir    ImageList IL_ITEM_BMPS_HC
245cdf0e10cSrcweir    {
246cdf0e10cSrcweir        Prefix = "dah";
247cdf0e10cSrcweir        MASKCOLOR
248cdf0e10cSrcweir        IMG_LST2
249cdf0e10cSrcweir    };
250cdf0e10cSrcweir};
251cdf0e10cSrcweir
252cdf0e10cSrcweirQueryBox RID_QRY_REMOVE_MODEL
253cdf0e10cSrcweir{
254cdf0e10cSrcweir    Buttons = WB_YES_NO ;
255cdf0e10cSrcweir    DefButton = WB_DEF_NO ;
256cdf0e10cSrcweir    Message [ en-US ] = "Deleting the model '$MODELNAME' affects all controls currently bound to this model.\nDo you really want to delete this model?" ;
257cdf0e10cSrcweir};
258cdf0e10cSrcweir
259cdf0e10cSrcweirQueryBox RID_QRY_REMOVE_INSTANCE
260cdf0e10cSrcweir{
261cdf0e10cSrcweir    Buttons = WB_YES_NO ;
262cdf0e10cSrcweir    DefButton = WB_DEF_NO ;
263cdf0e10cSrcweir    Message [ en-US ] = "Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\nDo you really want to delete this instance?" ;
264cdf0e10cSrcweir};
265cdf0e10cSrcweir
266cdf0e10cSrcweirQueryBox RID_QRY_REMOVE_ELEMENT
267cdf0e10cSrcweir{
268cdf0e10cSrcweir    Buttons = WB_YES_NO ;
269cdf0e10cSrcweir    DefButton = WB_DEF_NO ;
270cdf0e10cSrcweir    Message [ en-US ] = "Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\nDo you really want to delete this element?" ;
271cdf0e10cSrcweir};
272cdf0e10cSrcweir
273cdf0e10cSrcweirQueryBox RID_QRY_REMOVE_ATTRIBUTE
274cdf0e10cSrcweir{
275cdf0e10cSrcweir    Buttons = WB_YES_NO ;
276cdf0e10cSrcweir    DefButton = WB_DEF_NO ;
277cdf0e10cSrcweir    Message [ en-US ] = "Do you really want to delete the attribute '$ATTRIBUTENAME'?" ;
278cdf0e10cSrcweir};
279cdf0e10cSrcweir
280cdf0e10cSrcweirQueryBox RID_QRY_REMOVE_SUBMISSION
281cdf0e10cSrcweir{
282cdf0e10cSrcweir    Buttons = WB_YES_NO ;
283cdf0e10cSrcweir    DefButton = WB_DEF_NO ;
284cdf0e10cSrcweir    Message [ en-US ] = "Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n\nDo you really want to delete this submission?" ;
285cdf0e10cSrcweir};
286cdf0e10cSrcweir
287cdf0e10cSrcweirQueryBox RID_QRY_REMOVE_BINDING
288cdf0e10cSrcweir{
289cdf0e10cSrcweir    Buttons = WB_YES_NO ;
290cdf0e10cSrcweir    DefButton = WB_DEF_NO ;
291cdf0e10cSrcweir    Message [ en-US ] = "Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n\nDo you really want to delete this binding?" ;
292cdf0e10cSrcweir};
293cdf0e10cSrcweir
294cdf0e10cSrcweirMessBox RID_QRY_LINK_WARNING
295cdf0e10cSrcweir{
296cdf0e10cSrcweir    Buttons = 0 ;
297cdf0e10cSrcweir    Message [ en-US ] = "This instance is linked with the form.\n\nThe changes you make to this instance will be lost when the form is reloaded.\n\nHow do you want to proceed?" ;
298cdf0e10cSrcweir};
299cdf0e10cSrcweir
300cdf0e10cSrcweirErrorBox RID_ERR_INVALID_XMLNAME
301cdf0e10cSrcweir{
302cdf0e10cSrcweir    Buttons = WB_OK ;
303cdf0e10cSrcweir    Message [ en-US ] = "The name '%1' is not valid in XML. Please enter a different name." ;
304cdf0e10cSrcweir};
305cdf0e10cSrcweir
306cdf0e10cSrcweirErrorBox RID_ERR_INVALID_XMLPREFIX
307cdf0e10cSrcweir{
308cdf0e10cSrcweir    Buttons = WB_OK ;
309cdf0e10cSrcweir    Message [ en-US ] = "The prefix '%1' is not valid in XML. Please enter a different prefix." ;
310cdf0e10cSrcweir};
311cdf0e10cSrcweir
312cdf0e10cSrcweirErrorBox RID_ERR_DOUBLE_MODELNAME
313cdf0e10cSrcweir{
314cdf0e10cSrcweir    Buttons = WB_OK ;
315cdf0e10cSrcweir    Message [ en-US ] = "The name '%1' already exists. Please enter a new name." ;
316cdf0e10cSrcweir};
317cdf0e10cSrcweir
318cdf0e10cSrcweirErrorBox RID_ERR_EMPTY_SUBMISSIONNAME
319cdf0e10cSrcweir{
320cdf0e10cSrcweir    Buttons = WB_OK ;
321cdf0e10cSrcweir    Message [ en-US ] = "The submission must have a name." ;
322cdf0e10cSrcweir};
323cdf0e10cSrcweir
324cdf0e10cSrcweirModalDialog RID_SVXDLG_ADD_DATAITEM
325cdf0e10cSrcweir{
326cdf0e10cSrcweir    HelpID = HID_XFORMS_ADDDATAITEM_DLG ;
327cdf0e10cSrcweir    OutputSize = TRUE ;
328cdf0e10cSrcweir    SVLook = TRUE ;
329cdf0e10cSrcweir    Size = MAP_APPFONT ( 180 , 186 ) ;
330cdf0e10cSrcweir    Moveable = TRUE ;
331cdf0e10cSrcweir    FixedLine FL_ITEM
332cdf0e10cSrcweir    {
333cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 3 ) ;
334cdf0e10cSrcweir        Size = MAP_APPFONT ( 172 , 8 ) ;
335cdf0e10cSrcweir        Text [ en-US ] = "Item" ;
336cdf0e10cSrcweir    };
337cdf0e10cSrcweir    FixedText FT_NAME
338cdf0e10cSrcweir    {
339cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 15 ) ;
340cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
341cdf0e10cSrcweir        LeftLabel = TRUE ;
342cdf0e10cSrcweir        Text [ en-US ] = "~Name" ;
343cdf0e10cSrcweir    };
344cdf0e10cSrcweir    Edit ED_NAME
345cdf0e10cSrcweir    {
346cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_ADD_DATAITEM:ED_NAME";
347cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 14 ) ;
348cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 12 ) ;
349cdf0e10cSrcweir        Border = TRUE ;
350cdf0e10cSrcweir    };
351cdf0e10cSrcweir    FixedText FT_DEFAULT
352cdf0e10cSrcweir    {
353cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 30 ) ;
354cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
355cdf0e10cSrcweir        LeftLabel = TRUE ;
356cdf0e10cSrcweir        Text [ en-US ] = "~Default Value" ;
357cdf0e10cSrcweir    };
358cdf0e10cSrcweir    Edit ED_DEFAULT
359cdf0e10cSrcweir    {
360cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_ADD_DATAITEM:ED_DEFAULT";
361cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 29 ) ;
362cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 12 ) ;
363cdf0e10cSrcweir        Border = TRUE ;
364cdf0e10cSrcweir    };
365cdf0e10cSrcweir    PushButton PB_DEFAULT
366cdf0e10cSrcweir    {
367cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_DEFAULT";
368cdf0e10cSrcweir        Pos = MAP_APPFONT ( 160 , 29 ) ;
369cdf0e10cSrcweir        Size = MAP_APPFONT ( 14 , 14 ) ;
370cdf0e10cSrcweir        TabStop = TRUE ;
371cdf0e10cSrcweir        Hide = TRUE ;
372cdf0e10cSrcweir        Text = "..." ;
373cdf0e10cSrcweir    };
374cdf0e10cSrcweir    FixedLine FL_SETTINGS
375cdf0e10cSrcweir    {
376cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 44 ) ;
377cdf0e10cSrcweir        Size = MAP_APPFONT ( 172 , 8 ) ;
378cdf0e10cSrcweir        Text [ en-US ] = "Settings" ;
379cdf0e10cSrcweir    };
380cdf0e10cSrcweir    FixedText FT_DATATYPE
381cdf0e10cSrcweir    {
382cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 56 ) ;
383cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
384cdf0e10cSrcweir        LeftLabel = TRUE ;
385cdf0e10cSrcweir        Text [ en-US ] = "~Data Type" ;
386cdf0e10cSrcweir    };
387cdf0e10cSrcweir    ListBox LB_DATATYPE
388cdf0e10cSrcweir    {
389cdf0e10cSrcweir        HelpID = "svx:ListBox:RID_SVXDLG_ADD_DATAITEM:LB_DATATYPE";
390cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 55 ) ;
391cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 45 ) ;
392cdf0e10cSrcweir        Border = TRUE ;
393cdf0e10cSrcweir        DropDown = TRUE;
394cdf0e10cSrcweir    };
395cdf0e10cSrcweir    CheckBox CB_REQUIRED
396cdf0e10cSrcweir    {
397cdf0e10cSrcweir        HelpID = "svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_REQUIRED";
398cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 72 ) ;
399cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 10 ) ;
400cdf0e10cSrcweir        TabStop = TRUE ;
401cdf0e10cSrcweir        Text [ en-US ] = "~Required" ;
402cdf0e10cSrcweir    };
403cdf0e10cSrcweir    PushButton PB_REQUIRED
404cdf0e10cSrcweir    {
405cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_REQUIRED";
406cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 70 ) ;
407cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
408cdf0e10cSrcweir        TabStop = TRUE ;
409cdf0e10cSrcweir        Text [ en-US ] = "Condition" ;
410cdf0e10cSrcweir    };
411cdf0e10cSrcweir    CheckBox CB_RELEVANT
412cdf0e10cSrcweir    {
413cdf0e10cSrcweir        HelpID = "svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_RELEVANT";
414cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 89 ) ;
415cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 10 ) ;
416cdf0e10cSrcweir        TabStop = TRUE ;
417cdf0e10cSrcweir        Text [ en-US ] = "R~elevant" ;
418cdf0e10cSrcweir    };
419cdf0e10cSrcweir    PushButton PB_RELEVANT
420cdf0e10cSrcweir    {
421cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_RELEVANT";
422cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 87 ) ;
423cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
424cdf0e10cSrcweir        TabStop = TRUE ;
425cdf0e10cSrcweir        Text [ en-US ] = "Condition" ;
426cdf0e10cSrcweir    };
427cdf0e10cSrcweir    CheckBox CB_CONSTRAINT
428cdf0e10cSrcweir    {
429cdf0e10cSrcweir        HelpID = "svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_CONSTRAINT";
430cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 106 ) ;
431cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 10 ) ;
432cdf0e10cSrcweir        TabStop = TRUE ;
433cdf0e10cSrcweir        Text [ en-US ] = "~Constraint" ;
434cdf0e10cSrcweir    };
435cdf0e10cSrcweir    PushButton PB_CONSTRAINT
436cdf0e10cSrcweir    {
437cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_CONSTRAINT";
438cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 104 ) ;
439cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
440cdf0e10cSrcweir        TabStop = TRUE ;
441cdf0e10cSrcweir        Text [ en-US ] = "Condition" ;
442cdf0e10cSrcweir    };
443cdf0e10cSrcweir    CheckBox CB_READONLY
444cdf0e10cSrcweir    {
445cdf0e10cSrcweir        HelpID = "svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_READONLY";
446cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 123 ) ;
447cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 10 ) ;
448cdf0e10cSrcweir        TabStop = TRUE ;
449cdf0e10cSrcweir        Text [ en-US ] = "Read-~only" ;
450cdf0e10cSrcweir    };
451cdf0e10cSrcweir    PushButton PB_READONLY
452cdf0e10cSrcweir    {
453cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_READONLY";
454cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 121 ) ;
455cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
456cdf0e10cSrcweir        TabStop = TRUE ;
457cdf0e10cSrcweir        Text [ en-US ] = "Condition" ;
458cdf0e10cSrcweir    };
459cdf0e10cSrcweir    CheckBox CB_CALCULATE
460cdf0e10cSrcweir    {
461cdf0e10cSrcweir        HelpID = "svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_CALCULATE";
462cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 140 ) ;
463cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 10 ) ;
464cdf0e10cSrcweir        TabStop = TRUE ;
465cdf0e10cSrcweir        Text [ en-US ] = "Calc~ulate" ;
466cdf0e10cSrcweir    };
467cdf0e10cSrcweir    PushButton PB_CALCULATE
468cdf0e10cSrcweir    {
469cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_CALCULATE";
470cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 138 ) ;
471cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
472cdf0e10cSrcweir        TabStop = TRUE ;
473cdf0e10cSrcweir        Text [ en-US ] = "Condition" ;
474cdf0e10cSrcweir    };
475cdf0e10cSrcweir    FixedLine FL_DATANAV_BTN
476cdf0e10cSrcweir    {
477cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 155 ) ;
478cdf0e10cSrcweir        Size = MAP_APPFONT ( 172 , 8 ) ;
479cdf0e10cSrcweir    };
480cdf0e10cSrcweir    OKButton BTN_DATANAV_OK
481cdf0e10cSrcweir    {
482cdf0e10cSrcweir        Pos = MAP_APPFONT ( 15 , 166 ) ;
483cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
484cdf0e10cSrcweir        TabStop = TRUE ;
485cdf0e10cSrcweir        DefButton = TRUE ;
486cdf0e10cSrcweir    };
487cdf0e10cSrcweir    CancelButton BTN_DATANAV_ESC
488cdf0e10cSrcweir    {
489cdf0e10cSrcweir        Pos = MAP_APPFONT ( 68 , 166 ) ;
490cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
491cdf0e10cSrcweir        TabStop = TRUE ;
492cdf0e10cSrcweir    };
493cdf0e10cSrcweir    HelpButton BTN_DATANAV_HELP
494cdf0e10cSrcweir    {
495cdf0e10cSrcweir        Pos = MAP_APPFONT ( 124 , 166 ) ;
496cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
497cdf0e10cSrcweir        TabStop = TRUE ;
498cdf0e10cSrcweir    };
499cdf0e10cSrcweir    String STR_FIXEDLINE_ELEMENT
500cdf0e10cSrcweir    {
501cdf0e10cSrcweir        Text [ en-US ] = "Element" ;
502cdf0e10cSrcweir    };
503cdf0e10cSrcweir    String STR_FIXEDLINE_ATTRIBUTE
504cdf0e10cSrcweir    {
505cdf0e10cSrcweir        Text [ en-US ] = "Attribute" ;
506cdf0e10cSrcweir    };
507cdf0e10cSrcweir    String STR_FIXEDLINE_BINDING
508cdf0e10cSrcweir    {
509cdf0e10cSrcweir        Text [ en-US ] = "Binding" ;
510cdf0e10cSrcweir    };
511cdf0e10cSrcweir    String STR_FIXEDTEXT_BINDING
512cdf0e10cSrcweir    {
513cdf0e10cSrcweir        Text [ en-US ] = "Binding expression" ;
514cdf0e10cSrcweir    };
515cdf0e10cSrcweir};
516cdf0e10cSrcweir
517cdf0e10cSrcweirMenu RID_MENU_DATANAVIGATOR
518cdf0e10cSrcweir{
519cdf0e10cSrcweir    ItemList =
520cdf0e10cSrcweir    {
521cdf0e10cSrcweir        // MID_INSERT_CONTROL not implemented, yet (#i99890#)
522cdf0e10cSrcweir        /*MenuItem
523cdf0e10cSrcweir        {
524cdf0e10cSrcweir            Identifier = MID_INSERT_CONTROL ;
525cdf0e10cSrcweir            HelpId = HID_XFORMS_MID_INSERT_CONTROL ;
526cdf0e10cSrcweir            Text [ en-US ] = "Insert Control" ;
527cdf0e10cSrcweir        };
528cdf0e10cSrcweir        MenuItem
529cdf0e10cSrcweir        {
530cdf0e10cSrcweir            Separator = TRUE;
531cdf0e10cSrcweir        };*/
532cdf0e10cSrcweir        MenuItem
533cdf0e10cSrcweir        {
534cdf0e10cSrcweir            Identifier = TBI_ITEM_ADD ;
535cdf0e10cSrcweir            HelpId = HID_XFORMS_TOOLBOX_ITEM_ADD ;
536cdf0e10cSrcweir            Text [ en-US ] = "Add Item" ;
537cdf0e10cSrcweir        };
538cdf0e10cSrcweir        MenuItem
539cdf0e10cSrcweir        {
540cdf0e10cSrcweir            Identifier = TBI_ITEM_ADD_ELEMENT ;
541cdf0e10cSrcweir            HelpId = HID_XFORMS_TOOLBOX_ITEM_ADD_ELEMENT ;
542cdf0e10cSrcweir            Text [ en-US ] = "Add Element" ;
543cdf0e10cSrcweir        };
544cdf0e10cSrcweir        MenuItem
545cdf0e10cSrcweir        {
546cdf0e10cSrcweir            Identifier = TBI_ITEM_ADD_ATTRIBUTE ;
547cdf0e10cSrcweir            HelpId = HID_XFORMS_TOOLBOX_ITEM_ADD_ATTRIBUTE ;
548cdf0e10cSrcweir            Text [ en-US ] = "Add Attribute" ;
549cdf0e10cSrcweir        };
550cdf0e10cSrcweir        MenuItem
551cdf0e10cSrcweir        {
552cdf0e10cSrcweir            Identifier = TBI_ITEM_EDIT ;
553cdf0e10cSrcweir            HelpId = HID_XFORMS_TOOLBOX_ITEM_EDIT ;
554cdf0e10cSrcweir            Text [ en-US ] = "Edit" ;
555cdf0e10cSrcweir        };
556cdf0e10cSrcweir        MenuItem
557cdf0e10cSrcweir        {
558cdf0e10cSrcweir            Separator = TRUE;
559cdf0e10cSrcweir        };
560cdf0e10cSrcweir        MenuItem
561cdf0e10cSrcweir        {
562cdf0e10cSrcweir            Identifier = TBI_ITEM_REMOVE ;
563cdf0e10cSrcweir            HelpId = HID_XFORMS_TOOLBOX_ITEM_REMOVE ;
564cdf0e10cSrcweir            Text [ en-US ] = "Delete" ;
565cdf0e10cSrcweir        };
566cdf0e10cSrcweir    };
567cdf0e10cSrcweir};
568cdf0e10cSrcweir
569cdf0e10cSrcweirModalDialog RID_SVXDLG_ADD_CONDITION
570cdf0e10cSrcweir{
571cdf0e10cSrcweir    HelpID = HID_XFORMS_ADDCONDITION_DLG ;
572cdf0e10cSrcweir    OutputSize = TRUE ;
573cdf0e10cSrcweir    SVLook = TRUE ;
574cdf0e10cSrcweir    Size = MAP_APPFONT ( 210 , 150 ) ;
575cdf0e10cSrcweir    Text [ en-US ] = "Add Condition" ;
576cdf0e10cSrcweir    Moveable = TRUE ;
577cdf0e10cSrcweir    FixedText FT_CONDITION
578cdf0e10cSrcweir    {
579cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 3 ) ;
580cdf0e10cSrcweir        Size = MAP_APPFONT ( 198 , 8 ) ;
581cdf0e10cSrcweir        LeftLabel = TRUE ;
582cdf0e10cSrcweir        Text [ en-US ] = "~Condition" ;
583cdf0e10cSrcweir    };
584cdf0e10cSrcweir    MultiLineEdit ED_CONDITION
585cdf0e10cSrcweir    {
586cdf0e10cSrcweir        HelpID = "svx:MultiLineEdit:RID_SVXDLG_ADD_CONDITION:ED_CONDITION";
587cdf0e10cSrcweir        Border = TRUE ;
588cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 14 ) ;
589cdf0e10cSrcweir        Size = MAP_APPFONT ( 198 , 34 ) ;
590cdf0e10cSrcweir        TabStop = TRUE ;
591cdf0e10cSrcweir        Left = TRUE ;
592cdf0e10cSrcweir        IgnoreTab = TRUE;
593cdf0e10cSrcweir    };
594cdf0e10cSrcweir    FixedText FT_RESULT
595cdf0e10cSrcweir    {
596cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 51 ) ;
597cdf0e10cSrcweir        Size = MAP_APPFONT ( 198 , 8 ) ;
598cdf0e10cSrcweir        LeftLabel = TRUE ;
599cdf0e10cSrcweir        Text [ en-US ] = "~Result" ;
600cdf0e10cSrcweir    };
601cdf0e10cSrcweir    FixedText FT_RESULT_PREVIEW
602cdf0e10cSrcweir    {
603cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 62 ) ;
604cdf0e10cSrcweir        Size = MAP_APPFONT ( 198 , 34 ) ;
605cdf0e10cSrcweir        Border = TRUE;
606cdf0e10cSrcweir        TabStop = TRUE ;
607cdf0e10cSrcweir        Left = TRUE ;
608cdf0e10cSrcweir        WordBreak = TRUE ;
609cdf0e10cSrcweir    };
610cdf0e10cSrcweir    PushButton PB_EDIT_NAMESPACES
611cdf0e10cSrcweir    {
612cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_CONDITION:PB_EDIT_NAMESPACES";
613cdf0e10cSrcweir        Pos = MAP_APPFONT ( 132 , 102 ) ;
614cdf0e10cSrcweir        Size = MAP_APPFONT ( 72 , 14 ) ;
615cdf0e10cSrcweir        TabStop = TRUE ;
616cdf0e10cSrcweir        Text [ en-US ] = "~Edit Namespaces..." ;
617cdf0e10cSrcweir    };
618cdf0e10cSrcweir    FixedLine FL_DATANAV_BTN
619cdf0e10cSrcweir    {
620cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 119 ) ;
621cdf0e10cSrcweir        Size = MAP_APPFONT ( 202 , 8 ) ;
622cdf0e10cSrcweir    };
623cdf0e10cSrcweir    OKButton BTN_DATANAV_OK
624cdf0e10cSrcweir    {
625cdf0e10cSrcweir        Pos = MAP_APPFONT ( 45 , 130 ) ;
626cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
627cdf0e10cSrcweir        TabStop = TRUE ;
628cdf0e10cSrcweir        DefButton = TRUE ;
629cdf0e10cSrcweir    };
630cdf0e10cSrcweir    CancelButton BTN_DATANAV_ESC
631cdf0e10cSrcweir    {
632cdf0e10cSrcweir        Pos = MAP_APPFONT ( 98 , 130 ) ;
633cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
634cdf0e10cSrcweir        TabStop = TRUE ;
635cdf0e10cSrcweir    };
636cdf0e10cSrcweir    HelpButton BTN_DATANAV_HELP
637cdf0e10cSrcweir    {
638cdf0e10cSrcweir        Pos = MAP_APPFONT ( 154 , 130 ) ;
639cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
640cdf0e10cSrcweir        TabStop = TRUE ;
641cdf0e10cSrcweir    };
642cdf0e10cSrcweir};
643cdf0e10cSrcweir
644cdf0e10cSrcweirModalDialog RID_SVXDLG_NAMESPACE_ITEM
645cdf0e10cSrcweir{
646cdf0e10cSrcweir    HelpID = HID_XFORMS_NAMESPACEITEM_DLG ;
647cdf0e10cSrcweir    OutputSize = TRUE ;
648cdf0e10cSrcweir    SVLook = TRUE ;
649cdf0e10cSrcweir    Size = MAP_APPFONT ( 240 , 120 ) ;
650cdf0e10cSrcweir    Text [ en-US ] = "Namespaces for Forms" ;
651cdf0e10cSrcweir    Moveable = TRUE ;
652cdf0e10cSrcweir    FixedText FT_NAMESPACES
653cdf0e10cSrcweir    {
654cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 3 ) ;
655cdf0e10cSrcweir        Size = MAP_APPFONT ( 228 , 8 ) ;
656cdf0e10cSrcweir        LeftLabel = TRUE ;
657cdf0e10cSrcweir        Text [ en-US ] = "~Namespaces" ;
658cdf0e10cSrcweir    };
659cdf0e10cSrcweir    Control LB_NAMESPACES
660cdf0e10cSrcweir    {
661cdf0e10cSrcweir        HelpId = HID_XFORMS_NAMESPACEITEM_LIST;
662cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 14 ) ;
663cdf0e10cSrcweir        Size = MAP_APPFONT ( 175 , 72 ) ;
664cdf0e10cSrcweir        Border = TRUE ;
665cdf0e10cSrcweir        TabStop = TRUE ;
666cdf0e10cSrcweir    };
667cdf0e10cSrcweir    PushButton PB_ADD_NAMESPACE
668cdf0e10cSrcweir    {
669cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_ADD_NAMESPACE";
670cdf0e10cSrcweir        Pos = MAP_APPFONT ( 184 , 14 ) ;
671cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
672cdf0e10cSrcweir        TabStop = TRUE ;
673cdf0e10cSrcweir        Text [ en-US ] = "~Add..." ;
674cdf0e10cSrcweir    };
675cdf0e10cSrcweir    PushButton PB_EDIT_NAMESPACE
676cdf0e10cSrcweir    {
677cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_EDIT_NAMESPACE";
678cdf0e10cSrcweir        Pos = MAP_APPFONT ( 184 , 31 ) ;
679cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
680cdf0e10cSrcweir        TabStop = TRUE ;
681cdf0e10cSrcweir        Text [ en-US ] = "~Edit..." ;
682cdf0e10cSrcweir    };
683cdf0e10cSrcweir    PushButton PB_DELETE_NAMESPACE
684cdf0e10cSrcweir    {
685cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_DELETE_NAMESPACE";
686cdf0e10cSrcweir        Pos = MAP_APPFONT ( 184 , 48 ) ;
687cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
688cdf0e10cSrcweir        TabStop = TRUE ;
689cdf0e10cSrcweir        Text [ en-US ] = "~Delete" ;
690cdf0e10cSrcweir    };
691cdf0e10cSrcweir    FixedLine FL_DATANAV_BTN
692cdf0e10cSrcweir    {
693cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 89 ) ;
694cdf0e10cSrcweir        Size = MAP_APPFONT ( 232 , 8 ) ;
695cdf0e10cSrcweir    };
696cdf0e10cSrcweir    OKButton BTN_DATANAV_OK
697cdf0e10cSrcweir    {
698cdf0e10cSrcweir        Pos = MAP_APPFONT ( 75 , 100 ) ;
699cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
700cdf0e10cSrcweir        TabStop = TRUE ;
701cdf0e10cSrcweir        DefButton = TRUE ;
702cdf0e10cSrcweir    };
703cdf0e10cSrcweir    CancelButton BTN_DATANAV_ESC
704cdf0e10cSrcweir    {
705cdf0e10cSrcweir        Pos = MAP_APPFONT ( 128 , 100 ) ;
706cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
707cdf0e10cSrcweir        TabStop = TRUE ;
708cdf0e10cSrcweir    };
709cdf0e10cSrcweir    HelpButton BTN_DATANAV_HELP
710cdf0e10cSrcweir    {
711cdf0e10cSrcweir        Pos = MAP_APPFONT ( 184 , 100 ) ;
712cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
713cdf0e10cSrcweir        TabStop = TRUE ;
714cdf0e10cSrcweir    };
715cdf0e10cSrcweir    String STR_HEADER_PREFIX
716cdf0e10cSrcweir    {
717cdf0e10cSrcweir        Text [ en-US ] = "Prefix" ;
718cdf0e10cSrcweir    };
719cdf0e10cSrcweir    String STR_HEADER_URL
720cdf0e10cSrcweir    {
721cdf0e10cSrcweir        Text [ en-US ] = "URL" ;
722cdf0e10cSrcweir    };
723cdf0e10cSrcweir};
724cdf0e10cSrcweir
725cdf0e10cSrcweirModalDialog RID_SVXDLG_MANAGE_NAMESPACE
726cdf0e10cSrcweir{
727cdf0e10cSrcweir    HelpID = HID_XFORMS_MANAGENAMESPACE_DLG ;
728cdf0e10cSrcweir    OutputSize = TRUE ;
729cdf0e10cSrcweir    SVLook = TRUE ;
730cdf0e10cSrcweir    Size = MAP_APPFONT ( 210 , 60 ) ;
731cdf0e10cSrcweir    Text [ en-US ] = "Add Namespace" ;
732cdf0e10cSrcweir    Moveable = TRUE ;
733cdf0e10cSrcweir    FixedText FT_PREFIX
734cdf0e10cSrcweir    {
735cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 3 ) ;
736cdf0e10cSrcweir        Size = MAP_APPFONT ( 45 , 8 ) ;
737cdf0e10cSrcweir        LeftLabel = TRUE ;
738cdf0e10cSrcweir        Text [ en-US ] = "~Prefix" ;
739cdf0e10cSrcweir    };
740cdf0e10cSrcweir    Edit ED_PREFIX
741cdf0e10cSrcweir    {
742cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_MANAGE_NAMESPACE:ED_PREFIX";
743cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 14 ) ;
744cdf0e10cSrcweir        Size = MAP_APPFONT ( 45 , 12 ) ;
745cdf0e10cSrcweir        Border = TRUE;
746cdf0e10cSrcweir    };
747cdf0e10cSrcweir    FixedText FT_URL
748cdf0e10cSrcweir    {
749cdf0e10cSrcweir        Pos = MAP_APPFONT ( 54 , 3 ) ;
750cdf0e10cSrcweir        Size = MAP_APPFONT ( 150 , 8 ) ;
751cdf0e10cSrcweir        LeftLabel = TRUE ;
752cdf0e10cSrcweir        Text [ en-US ] = "~URL" ;
753cdf0e10cSrcweir    };
754cdf0e10cSrcweir    Edit ED_URL
755cdf0e10cSrcweir    {
756cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_MANAGE_NAMESPACE:ED_URL";
757cdf0e10cSrcweir        Pos = MAP_APPFONT ( 54 , 14 ) ;
758cdf0e10cSrcweir        Size = MAP_APPFONT ( 150 , 12 ) ;
759cdf0e10cSrcweir        Border = TRUE;
760cdf0e10cSrcweir    };
761cdf0e10cSrcweir    FixedLine FL_DATANAV_BTN
762cdf0e10cSrcweir    {
763cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 29 ) ;
764cdf0e10cSrcweir        Size = MAP_APPFONT ( 202 , 8 ) ;
765cdf0e10cSrcweir    };
766cdf0e10cSrcweir    OKButton BTN_DATANAV_OK
767cdf0e10cSrcweir    {
768cdf0e10cSrcweir        Pos = MAP_APPFONT ( 45 , 40 ) ;
769cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
770cdf0e10cSrcweir        TabStop = TRUE ;
771cdf0e10cSrcweir        DefButton = TRUE ;
772cdf0e10cSrcweir    };
773cdf0e10cSrcweir    CancelButton BTN_DATANAV_ESC
774cdf0e10cSrcweir    {
775cdf0e10cSrcweir        Pos = MAP_APPFONT ( 98 , 40 ) ;
776cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
777cdf0e10cSrcweir        TabStop = TRUE ;
778cdf0e10cSrcweir    };
779cdf0e10cSrcweir    HelpButton BTN_DATANAV_HELP
780cdf0e10cSrcweir    {
781cdf0e10cSrcweir        Pos = MAP_APPFONT ( 154 , 40 ) ;
782cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
783cdf0e10cSrcweir        TabStop = TRUE ;
784cdf0e10cSrcweir    };
785cdf0e10cSrcweir    String STR_EDIT_TEXT
786cdf0e10cSrcweir    {
787cdf0e10cSrcweir        Text [ en-US ] = "Edit Namespace" ;
788cdf0e10cSrcweir    };
789cdf0e10cSrcweir};
790cdf0e10cSrcweir
791cdf0e10cSrcweirModalDialog RID_SVXDLG_ADD_SUBMISSION
792cdf0e10cSrcweir{
793cdf0e10cSrcweir    HelpID = HID_XFORMS_ADDSUBMISSION_DLG ;
794cdf0e10cSrcweir    OutputSize = TRUE ;
795cdf0e10cSrcweir    SVLook = TRUE ;
796cdf0e10cSrcweir    Size = MAP_APPFONT ( 180 , 136 ) ;
797cdf0e10cSrcweir    Text [ en-US ] = "Add Submission" ;
798cdf0e10cSrcweir    Moveable = TRUE ;
799cdf0e10cSrcweir    FixedLine FL_SUBMISSION
800cdf0e10cSrcweir    {
801cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 3 ) ;
802cdf0e10cSrcweir        Size = MAP_APPFONT ( 172 , 8 ) ;
803cdf0e10cSrcweir        Text [ en-US ] = "Submission" ;
804cdf0e10cSrcweir    };
805cdf0e10cSrcweir    FixedText FT_SUBMIT_NAME
806cdf0e10cSrcweir    {
807cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 16 ) ;
808cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
809cdf0e10cSrcweir        LeftLabel = TRUE ;
810cdf0e10cSrcweir        Text [ en-US ] = "~Name" ;
811cdf0e10cSrcweir    };
812cdf0e10cSrcweir    Edit ED_SUBMIT_NAME
813cdf0e10cSrcweir    {
814cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_NAME";
815cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 14 ) ;
816cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 12 ) ;
817cdf0e10cSrcweir        Border = TRUE ;
818cdf0e10cSrcweir    };
819cdf0e10cSrcweir    FixedText FT_SUBMIT_ACTION
820cdf0e10cSrcweir    {
821cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 31 ) ;
822cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
823cdf0e10cSrcweir        LeftLabel = TRUE ;
824cdf0e10cSrcweir        Text [ en-US ] = "~Action" ;
825cdf0e10cSrcweir    };
826cdf0e10cSrcweir    Edit ED_SUBMIT_ACTION
827cdf0e10cSrcweir    {
828cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_ACTION";
829cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 29 ) ;
830cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 12 ) ;
831cdf0e10cSrcweir        Border = TRUE ;
832cdf0e10cSrcweir    };
833cdf0e10cSrcweir    FixedText FT_SUBMIT_METHOD
834cdf0e10cSrcweir    {
835cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 46 ) ;
836cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
837cdf0e10cSrcweir        LeftLabel = TRUE ;
838cdf0e10cSrcweir        Text [ en-US ] = "~Method" ;
839cdf0e10cSrcweir    };
840cdf0e10cSrcweir    ListBox LB_SUBMIT_METHOD
841cdf0e10cSrcweir    {
842cdf0e10cSrcweir        HelpID = "svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_METHOD";
843cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 44 ) ;
844cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 51 ) ;
845cdf0e10cSrcweir        Border = TRUE ;
846cdf0e10cSrcweir        DropDown = TRUE;
847cdf0e10cSrcweir    };
848cdf0e10cSrcweir    FixedText FT_SUBMIT_REF
849cdf0e10cSrcweir    {
850cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 62 ) ;
851cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
852cdf0e10cSrcweir        LeftLabel = TRUE ;
853cdf0e10cSrcweir        Text [ en-US ] = "Binding e~xpression" ;
854cdf0e10cSrcweir    };
855cdf0e10cSrcweir    Edit ED_SUBMIT_REF
856cdf0e10cSrcweir    {
857cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_REF";
858cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 60 ) ;
859cdf0e10cSrcweir        Size = MAP_APPFONT ( 79, 12 ) ;
860cdf0e10cSrcweir        Border = TRUE ;
861cdf0e10cSrcweir    };
862cdf0e10cSrcweir    PushButton PB_SUBMIT_REF
863cdf0e10cSrcweir    {
864cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_SUBMISSION:PB_SUBMIT_REF";
865cdf0e10cSrcweir        Pos = MAP_APPFONT ( 159 , 59 ) ;
866cdf0e10cSrcweir        Size = MAP_APPFONT ( 14 , 14 ) ;
867cdf0e10cSrcweir        TabStop = TRUE ;
868cdf0e10cSrcweir        Text [ en-US ] = "~..." ;
869cdf0e10cSrcweir    };
870cdf0e10cSrcweir    FixedText FT_SUBMIT_BIND
871cdf0e10cSrcweir    {
872cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 77 ) ;
873cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
874cdf0e10cSrcweir        LeftLabel = TRUE ;
875cdf0e10cSrcweir        Text [ en-US ] = "~Binding" ;
876cdf0e10cSrcweir    };
877cdf0e10cSrcweir    ListBox LB_SUBMIT_BIND
878cdf0e10cSrcweir    {
879cdf0e10cSrcweir        HelpID = "svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_BIND";
880cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 75 ) ;
881cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 51 ) ;
882cdf0e10cSrcweir        Border = TRUE ;
883cdf0e10cSrcweir        DropDown = TRUE;
884cdf0e10cSrcweir    };
885cdf0e10cSrcweir    FixedText FT_SUBMIT_REPLACE
886cdf0e10cSrcweir    {
887cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 92 ) ;
888cdf0e10cSrcweir        Size = MAP_APPFONT ( 69 , 8 ) ;
889cdf0e10cSrcweir        LeftLabel = TRUE ;
890cdf0e10cSrcweir        Text [ en-US ] = "~Replace" ;
891cdf0e10cSrcweir    };
892cdf0e10cSrcweir    ListBox LB_SUBMIT_REPLACE
893cdf0e10cSrcweir    {
894cdf0e10cSrcweir        HelpID = "svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_REPLACE";
895cdf0e10cSrcweir        Pos = MAP_APPFONT ( 78 , 90 ) ;
896cdf0e10cSrcweir        Size = MAP_APPFONT ( 96 , 51 ) ;
897cdf0e10cSrcweir        Border = TRUE ;
898cdf0e10cSrcweir        DropDown = TRUE;
899cdf0e10cSrcweir    };
900cdf0e10cSrcweir    FixedLine FL_DATANAV_BTN
901cdf0e10cSrcweir    {
902cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 105 ) ;
903cdf0e10cSrcweir        Size = MAP_APPFONT ( 172 , 8 ) ;
904cdf0e10cSrcweir    };
905cdf0e10cSrcweir    OKButton BTN_DATANAV_OK
906cdf0e10cSrcweir    {
907cdf0e10cSrcweir        Pos = MAP_APPFONT ( 15 , 116 ) ;
908cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
909cdf0e10cSrcweir        TabStop = TRUE ;
910cdf0e10cSrcweir        DefButton = TRUE ;
911cdf0e10cSrcweir    };
912cdf0e10cSrcweir    CancelButton BTN_DATANAV_ESC
913cdf0e10cSrcweir    {
914cdf0e10cSrcweir        Pos = MAP_APPFONT ( 68 , 116 ) ;
915cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
916cdf0e10cSrcweir        TabStop = TRUE ;
917cdf0e10cSrcweir    };
918cdf0e10cSrcweir    HelpButton BTN_DATANAV_HELP
919cdf0e10cSrcweir    {
920cdf0e10cSrcweir        Pos = MAP_APPFONT ( 124 , 116 ) ;
921cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
922cdf0e10cSrcweir        TabStop = TRUE ;
923cdf0e10cSrcweir    };
924cdf0e10cSrcweir
925cdf0e10cSrcweir    String STR_METHOD_POST
926cdf0e10cSrcweir    {
927cdf0e10cSrcweir        Text [ en-US ] = "Post" ;
928cdf0e10cSrcweir    };
929cdf0e10cSrcweir    String STR_METHOD_PUT
930cdf0e10cSrcweir    {
931cdf0e10cSrcweir        Text [ en-US ] = "Put" ;
932cdf0e10cSrcweir    };
933cdf0e10cSrcweir    String STR_METHOD_GET
934cdf0e10cSrcweir    {
935cdf0e10cSrcweir        Text [ en-US ] = "Get" ;
936cdf0e10cSrcweir    };
937cdf0e10cSrcweir    String STR_REPLACE_NONE
938cdf0e10cSrcweir    {
939cdf0e10cSrcweir        Text [ en-US ] = "None" ;
940cdf0e10cSrcweir    };
941cdf0e10cSrcweir    String STR_REPLACE_INST
942cdf0e10cSrcweir    {
943cdf0e10cSrcweir        Text [ en-US ] = "Instance" ;
944cdf0e10cSrcweir    };
945cdf0e10cSrcweir    String STR_REPLACE_DOC
946cdf0e10cSrcweir    {
947cdf0e10cSrcweir        Text [ en-US ] = "Document" ;
948cdf0e10cSrcweir    };
949cdf0e10cSrcweir};
950cdf0e10cSrcweir
951cdf0e10cSrcweirModalDialog RID_SVXDLG_ADD_MODEL
952cdf0e10cSrcweir{
953cdf0e10cSrcweir    HelpID = HID_XFORMS_ADDMODEL_DLG ;
954cdf0e10cSrcweir    OutputSize = TRUE ;
955cdf0e10cSrcweir    SVLook = TRUE ;
956cdf0e10cSrcweir    Size = MAP_APPFONT ( 180 , 82 ) ;
957cdf0e10cSrcweir    Text [ en-US ] = "Add Model" ;
958cdf0e10cSrcweir    Moveable = TRUE ;
959cdf0e10cSrcweir    FixedLine FL_INSTANCE
960cdf0e10cSrcweir    {
961cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 3 ) ;
962cdf0e10cSrcweir        Size = MAP_APPFONT ( 172 , 8 ) ;
963cdf0e10cSrcweir        Text [ en-US ] = "Model" ;
964cdf0e10cSrcweir    };
965cdf0e10cSrcweir    FixedText FT_INST_NAME
966cdf0e10cSrcweir    {
967cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 14 ) ;
968cdf0e10cSrcweir        Size = MAP_APPFONT ( 51 , 12 ) ;
969cdf0e10cSrcweir        LeftLabel = TRUE ;
970cdf0e10cSrcweir        VCenter = TRUE;
971cdf0e10cSrcweir        Text [ en-US ] = "~Name" ;
972cdf0e10cSrcweir    };
973cdf0e10cSrcweir    Edit ED_INST_NAME
974cdf0e10cSrcweir    {
975cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_ADD_MODEL:ED_INST_NAME";
976cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 14 ) ;
977cdf0e10cSrcweir        Size = MAP_APPFONT ( 114 , 12 ) ;
978cdf0e10cSrcweir        Border = TRUE ;
979cdf0e10cSrcweir    };
980cdf0e10cSrcweir    CheckBox CB_MODIFIES_DOCUMENT
981cdf0e10cSrcweir    {
982cdf0e10cSrcweir        HelpID = "svx:CheckBox:RID_SVXDLG_ADD_MODEL:CB_MODIFIES_DOCUMENT";
983cdf0e10cSrcweir        Pos = MAP_APPFONT( 6, 32 );
984cdf0e10cSrcweir        Size = MAP_APPFONT( 168, 16 );
985cdf0e10cSrcweir        Top = TRUE;
986cdf0e10cSrcweir        WordBreak = TRUE;
987cdf0e10cSrcweir
988cdf0e10cSrcweir        Text [ en-US ] = "Model data updates change document's modification status";
989cdf0e10cSrcweir    };
990cdf0e10cSrcweir    FixedLine FL_DATANAV_BTN
991cdf0e10cSrcweir    {
992cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 51 ) ;
993cdf0e10cSrcweir        Size = MAP_APPFONT ( 172 , 8 ) ;
994cdf0e10cSrcweir    };
995cdf0e10cSrcweir    OKButton BTN_DATANAV_OK
996cdf0e10cSrcweir    {
997cdf0e10cSrcweir        Pos = MAP_APPFONT ( 15 , 62 ) ;
998cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
999cdf0e10cSrcweir        TabStop = TRUE ;
1000cdf0e10cSrcweir        DefButton = TRUE ;
1001cdf0e10cSrcweir    };
1002cdf0e10cSrcweir    CancelButton BTN_DATANAV_ESC
1003cdf0e10cSrcweir    {
1004cdf0e10cSrcweir        Pos = MAP_APPFONT ( 68 , 62 ) ;
1005cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
1006cdf0e10cSrcweir        TabStop = TRUE ;
1007cdf0e10cSrcweir    };
1008cdf0e10cSrcweir    HelpButton BTN_DATANAV_HELP
1009cdf0e10cSrcweir    {
1010cdf0e10cSrcweir        Pos = MAP_APPFONT ( 124 , 62 ) ;
1011cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
1012cdf0e10cSrcweir        TabStop = TRUE ;
1013cdf0e10cSrcweir    };
1014cdf0e10cSrcweir    String STR_EDIT_TEXT
1015cdf0e10cSrcweir    {
1016cdf0e10cSrcweir        Text [ en-US ] = "Edit Model" ;
1017cdf0e10cSrcweir    };
1018cdf0e10cSrcweir};
1019cdf0e10cSrcweir
1020cdf0e10cSrcweirModalDialog RID_SVXDLG_ADD_INSTANCE
1021cdf0e10cSrcweir{
1022cdf0e10cSrcweir    HelpID = HID_XFORMS_ADDINSTANCE_DLG ;
1023cdf0e10cSrcweir    OutputSize = TRUE ;
1024cdf0e10cSrcweir    SVLook = TRUE ;
1025cdf0e10cSrcweir    Size = MAP_APPFONT ( 210 , 88 ) ;
1026cdf0e10cSrcweir    Text [ en-US ] = "Add Instance" ;
1027cdf0e10cSrcweir    Moveable = TRUE ;
1028cdf0e10cSrcweir    FixedLine FL_INSTANCE
1029cdf0e10cSrcweir    {
1030cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 3 ) ;
1031cdf0e10cSrcweir        Size = MAP_APPFONT ( 202 , 8 ) ;
1032cdf0e10cSrcweir        Text [ en-US ] = "Instance" ;
1033cdf0e10cSrcweir    };
1034cdf0e10cSrcweir    FixedText FT_INST_NAME
1035cdf0e10cSrcweir    {
1036cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 15 ) ;
1037cdf0e10cSrcweir        Size = MAP_APPFONT ( 51 , 8 ) ;
1038cdf0e10cSrcweir        LeftLabel = TRUE ;
1039cdf0e10cSrcweir        Text [ en-US ] = "~Name" ;
1040cdf0e10cSrcweir    };
1041cdf0e10cSrcweir    Edit ED_INST_NAME
1042cdf0e10cSrcweir    {
1043cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVXDLG_ADD_INSTANCE:ED_INST_NAME";
1044cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 14 ) ;
1045cdf0e10cSrcweir        Size = MAP_APPFONT ( 144 , 12 ) ;
1046cdf0e10cSrcweir        Border = TRUE ;
1047cdf0e10cSrcweir    };
1048cdf0e10cSrcweir    FixedText FT_INST_URL
1049cdf0e10cSrcweir    {
1050cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 30 ) ;
1051cdf0e10cSrcweir        Size = MAP_APPFONT ( 51 , 8 ) ;
1052cdf0e10cSrcweir        LeftLabel = TRUE ;
1053cdf0e10cSrcweir        Text [ en-US ] = "~URL" ;
1054cdf0e10cSrcweir    };
1055cdf0e10cSrcweir    ComboBox ED_INST_URL
1056cdf0e10cSrcweir    {
1057cdf0e10cSrcweir        HelpID = "svx:ComboBox:RID_SVXDLG_ADD_INSTANCE:ED_INST_URL";
1058cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 29 ) ;
1059cdf0e10cSrcweir        Size = MAP_APPFONT ( 127 , 48 ) ;
1060cdf0e10cSrcweir        DropDown = TRUE ;
1061cdf0e10cSrcweir        Border = TRUE ;
1062cdf0e10cSrcweir    };
1063cdf0e10cSrcweir    PushButton PB_FILEPICKER
1064cdf0e10cSrcweir    {
1065cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVXDLG_ADD_INSTANCE:PB_FILEPICKER";
1066cdf0e10cSrcweir        Pos = MAP_APPFONT ( 190 , 28 ) ;
1067cdf0e10cSrcweir        Size = MAP_APPFONT ( 14 , 14 ) ;
1068cdf0e10cSrcweir        TabStop = TRUE ;
1069cdf0e10cSrcweir        Text = "~..." ;
1070cdf0e10cSrcweir    };
1071cdf0e10cSrcweir    CheckBox CB_INST_LINKINST
1072cdf0e10cSrcweir    {
1073cdf0e10cSrcweir        HelpID = "svx:CheckBox:RID_SVXDLG_ADD_INSTANCE:CB_INST_LINKINST";
1074cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 44 ) ;
1075cdf0e10cSrcweir        Size = MAP_APPFONT ( 198 , 10 ) ;
1076cdf0e10cSrcweir        TabStop = TRUE ;
1077cdf0e10cSrcweir        Text [ en-US ] = "~Link instance" ;
1078cdf0e10cSrcweir    };
1079cdf0e10cSrcweir    FixedLine FL_DATANAV_BTN
1080cdf0e10cSrcweir    {
1081cdf0e10cSrcweir        Pos = MAP_APPFONT ( 4 , 57 ) ;
1082cdf0e10cSrcweir        Size = MAP_APPFONT ( 202 , 8 ) ;
1083cdf0e10cSrcweir    };
1084cdf0e10cSrcweir    OKButton BTN_DATANAV_OK
1085cdf0e10cSrcweir    {
1086cdf0e10cSrcweir        Pos = MAP_APPFONT ( 45 , 68 ) ;
1087cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
1088cdf0e10cSrcweir        TabStop = TRUE ;
1089cdf0e10cSrcweir        DefButton = TRUE ;
1090cdf0e10cSrcweir    };
1091cdf0e10cSrcweir    CancelButton BTN_DATANAV_ESC
1092cdf0e10cSrcweir    {
1093cdf0e10cSrcweir        Pos = MAP_APPFONT ( 98 , 68 ) ;
1094cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
1095cdf0e10cSrcweir        TabStop = TRUE ;
1096cdf0e10cSrcweir    };
1097cdf0e10cSrcweir    HelpButton BTN_DATANAV_HELP
1098cdf0e10cSrcweir    {
1099cdf0e10cSrcweir        Pos = MAP_APPFONT ( 154 , 68 ) ;
1100cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
1101cdf0e10cSrcweir        TabStop = TRUE ;
1102cdf0e10cSrcweir    };
1103cdf0e10cSrcweir    String STR_EDIT_TEXT
1104cdf0e10cSrcweir    {
1105cdf0e10cSrcweir        Text [ en-US ] = "Edit Instance" ;
1106cdf0e10cSrcweir    };
1107cdf0e10cSrcweir};
1108cdf0e10cSrcweir
1109cdf0e10cSrcweirString RID_STR_DATANAV_SUBM_PARENT
1110cdf0e10cSrcweir{
1111cdf0e10cSrcweir    Text [ en-US ] = "Submission: " ;
1112cdf0e10cSrcweir};
1113cdf0e10cSrcweirString RID_STR_DATANAV_SUBM_ID
1114cdf0e10cSrcweir{
1115cdf0e10cSrcweir    Text [ en-US ] = "ID: " ;
1116cdf0e10cSrcweir};
1117cdf0e10cSrcweirString RID_STR_DATANAV_SUBM_BIND
1118cdf0e10cSrcweir{
1119cdf0e10cSrcweir    Text [ en-US ] = "Binding: " ;
1120cdf0e10cSrcweir};
1121cdf0e10cSrcweirString RID_STR_DATANAV_SUBM_REF
1122cdf0e10cSrcweir{
1123cdf0e10cSrcweir    Text [ en-US ] = "Reference: " ;
1124cdf0e10cSrcweir};
1125cdf0e10cSrcweirString RID_STR_DATANAV_SUBM_ACTION
1126cdf0e10cSrcweir{
1127cdf0e10cSrcweir    Text [ en-US ] = "Action: " ;
1128cdf0e10cSrcweir};
1129cdf0e10cSrcweirString RID_STR_DATANAV_SUBM_METHOD
1130cdf0e10cSrcweir{
1131cdf0e10cSrcweir    Text [ en-US ] = "Method: " ;
1132cdf0e10cSrcweir};
1133cdf0e10cSrcweirString RID_STR_DATANAV_SUBM_REPLACE
1134cdf0e10cSrcweir{
1135cdf0e10cSrcweir    Text [ en-US ] = "Replace: " ;
1136cdf0e10cSrcweir};
1137cdf0e10cSrcweirString RID_STR_DATANAV_ADD_ELEMENT
1138cdf0e10cSrcweir{
1139cdf0e10cSrcweir    Text [ en-US ] = "Add Element" ;
1140cdf0e10cSrcweir};
1141cdf0e10cSrcweirString RID_STR_DATANAV_EDIT_ELEMENT
1142cdf0e10cSrcweir{
1143cdf0e10cSrcweir    Text [ en-US ] = "Edit Element" ;
1144cdf0e10cSrcweir};
1145cdf0e10cSrcweirString RID_STR_DATANAV_REMOVE_ELEMENT
1146cdf0e10cSrcweir{
1147cdf0e10cSrcweir    Text [ en-US ] = "Delete Element" ;
1148cdf0e10cSrcweir};
1149cdf0e10cSrcweirString RID_STR_DATANAV_ADD_ATTRIBUTE
1150cdf0e10cSrcweir{
1151cdf0e10cSrcweir    Text [ en-US ] = "Add Attribute" ;
1152cdf0e10cSrcweir};
1153cdf0e10cSrcweirString RID_STR_DATANAV_EDIT_ATTRIBUTE
1154cdf0e10cSrcweir{
1155cdf0e10cSrcweir    Text [ en-US ] = "Edit Attribute" ;
1156cdf0e10cSrcweir};
1157cdf0e10cSrcweirString RID_STR_DATANAV_REMOVE_ATTRIBUTE
1158cdf0e10cSrcweir{
1159cdf0e10cSrcweir    Text [ en-US ] = "Delete Attribute" ;
1160cdf0e10cSrcweir};
1161cdf0e10cSrcweirString RID_STR_DATANAV_ADD_BINDING
1162cdf0e10cSrcweir{
1163cdf0e10cSrcweir    Text [ en-US ] = "Add Binding" ;
1164cdf0e10cSrcweir};
1165cdf0e10cSrcweirString RID_STR_DATANAV_EDIT_BINDING
1166cdf0e10cSrcweir{
1167cdf0e10cSrcweir    Text [ en-US ] = "Edit Binding" ;
1168cdf0e10cSrcweir};
1169cdf0e10cSrcweirString RID_STR_DATANAV_REMOVE_BINDING
1170cdf0e10cSrcweir{
1171cdf0e10cSrcweir    Text [ en-US ] = "Delete Binding" ;
1172cdf0e10cSrcweir};
1173cdf0e10cSrcweirString RID_STR_DATANAV_ADD_SUBMISSION
1174cdf0e10cSrcweir{
1175cdf0e10cSrcweir    Text [ en-US ] = "Add Submission" ;
1176cdf0e10cSrcweir};
1177cdf0e10cSrcweirString RID_STR_DATANAV_EDIT_SUBMISSION
1178cdf0e10cSrcweir{
1179cdf0e10cSrcweir    Text [ en-US ] = "Edit Submission" ;
1180cdf0e10cSrcweir};
1181cdf0e10cSrcweirString RID_STR_DATANAV_REMOVE_SUBMISSION
1182cdf0e10cSrcweir{
1183cdf0e10cSrcweir    Text [ en-US ] = "Delete Submission" ;
1184cdf0e10cSrcweir};
1185cdf0e10cSrcweirString RID_STR_DATANAV_LINKWARN_BUTTON
1186cdf0e10cSrcweir{
1187cdf0e10cSrcweir    Text [ en-US ] = "~Edit" ;
1188cdf0e10cSrcweir};
1189cdf0e10cSrcweir
1190