xref: /trunk/main/basctl/source/basicide/moduldlg.src (revision ef4882fc8f0ef2394a48bfabe9ea38cd50d34252)
18e0a7b1bSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
38e0a7b1bSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
48e0a7b1bSAndrew Rist * or more contributor license agreements.  See the NOTICE file
58e0a7b1bSAndrew Rist * distributed with this work for additional information
68e0a7b1bSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
78e0a7b1bSAndrew Rist * to you under the Apache License, Version 2.0 (the
88e0a7b1bSAndrew Rist * "License"); you may not use this file except in compliance
98e0a7b1bSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
118e0a7b1bSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
138e0a7b1bSAndrew Rist * Unless required by applicable law or agreed to in writing,
148e0a7b1bSAndrew Rist * software distributed under the License is distributed on an
158e0a7b1bSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
168e0a7b1bSAndrew Rist * KIND, either express or implied.  See the License for the
178e0a7b1bSAndrew Rist * specific language governing permissions and limitations
188e0a7b1bSAndrew Rist * under the License.
19cdf0e10cSrcweir *
208e0a7b1bSAndrew Rist *************************************************************/
218e0a7b1bSAndrew Rist
228e0a7b1bSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "helpid.hrc"
25dd913a84Sdamjan#include "moduldlg.hrc"
26cdf0e10cSrcweir#include <basidesh.hrc>
27cdf0e10cSrcweirTabDialog RID_TD_ORGANIZE
28cdf0e10cSrcweir{
29cdf0e10cSrcweir    OutputSize = TRUE ;
30cdf0e10cSrcweir    SVLook = TRUE ;
31cdf0e10cSrcweir    Text [ en-US ] = "%PRODUCTNAME Basic Macro Organizer" ;
32cdf0e10cSrcweir    Moveable = TRUE ;
33cdf0e10cSrcweir    Closeable = TRUE ;
34cdf0e10cSrcweir    // Da Cancel-Button auf TabPage, nicht auf Dialog!
35cdf0e10cSrcweir    TabControl RID_TC_ORGANIZE
36cdf0e10cSrcweir    {
37cdf0e10cSrcweir        //      HelpID = HID_BASICIDE_ORG_TC ;
38cdf0e10cSrcweir        OutputSize = TRUE ;
39cdf0e10cSrcweir        PageList =
40cdf0e10cSrcweir        {
41cdf0e10cSrcweir            PageItem
42cdf0e10cSrcweir            {
43cdf0e10cSrcweir                Identifier = RID_TP_MOD ;
44cdf0e10cSrcweir                Text [ en-US ] = "Modules" ;
45cdf0e10cSrcweir            };
46cdf0e10cSrcweir            PageItem
47cdf0e10cSrcweir            {
48cdf0e10cSrcweir                Identifier = RID_TP_DLG ;
49cdf0e10cSrcweir                Text [ en-US ] = "Dialogs" ;
50cdf0e10cSrcweir            };
51cdf0e10cSrcweir            PageItem
52cdf0e10cSrcweir            {
53cdf0e10cSrcweir                Identifier = RID_TP_LIB ;
54cdf0e10cSrcweir                Text [ en-US ] = "Libraries" ;
55cdf0e10cSrcweir            };
56cdf0e10cSrcweir        };
57cdf0e10cSrcweir    };
58cdf0e10cSrcweir};
59cdf0e10cSrcweirTabPage RID_TP_MODULS
60cdf0e10cSrcweir{
61cdf0e10cSrcweir    HelpId = "basctl:TabPage:RID_TP_MODULS" ;
62cdf0e10cSrcweir    Hide = TRUE ;
63cdf0e10cSrcweir    SVLook = TRUE ;
64cdf0e10cSrcweir    Size = MAP_APPFONT ( 210, 140 ) ;
65cdf0e10cSrcweir    FixedText RID_STR_LIB
66cdf0e10cSrcweir    {
67cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 6 ) ;
68cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 10 ) ;
69cdf0e10cSrcweir        Text [ en-US ] = "M~odule" ;
70cdf0e10cSrcweir    };
71cdf0e10cSrcweir    Control RID_TRLBOX
72cdf0e10cSrcweir    {
73cdf0e10cSrcweir        HelpId = HID_BASICIDE_MODULES_TREE ;
74cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 17 ) ;
75cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 117 ) ;
76cdf0e10cSrcweir        TabStop = TRUE ;
77cdf0e10cSrcweir        Border = TRUE ;
78cdf0e10cSrcweir    };
79cdf0e10cSrcweir    PushButton RID_PB_EDIT
80cdf0e10cSrcweir    {
81cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_MODULS:RID_PB_EDIT" ;
82cdf0e10cSrcweir        Text [ en-US ] = "~Edit" ;
83cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 6 ) ;
84cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
85cdf0e10cSrcweir        TabStop = TRUE ;
86cdf0e10cSrcweir        DefButton = TRUE ;
87cdf0e10cSrcweir    };
88cdf0e10cSrcweir    CancelButton RID_PB_CLOSE
89cdf0e10cSrcweir    {
90cdf0e10cSrcweir        Text [ en-US ] = "Close" ;
91cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 23 ) ;
92cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
93cdf0e10cSrcweir        TabStop = TRUE ;
94cdf0e10cSrcweir    };
95cdf0e10cSrcweir    PushButton RID_PB_NEWMOD
96cdf0e10cSrcweir    {
97cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_MODULS:RID_PB_NEWMOD" ;
98cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 103 ) ;
99cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
100cdf0e10cSrcweir        Text [ en-US ] = "~New..." ;
101cdf0e10cSrcweir        TabStop = TRUE ;
102cdf0e10cSrcweir    };
103cdf0e10cSrcweir    PushButton RID_PB_NEWDLG
104cdf0e10cSrcweir    {
105cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_MODULS:RID_PB_NEWDLG" ;
106cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 103 ) ;
107cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
108cdf0e10cSrcweir        Text [ en-US ] = "~New..." ;
109cdf0e10cSrcweir        TabStop = TRUE ;
110cdf0e10cSrcweir    };
111cdf0e10cSrcweir    PushButton RID_PB_DELETE
112cdf0e10cSrcweir    {
113cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_MODULS:RID_PB_DELETE" ;
114cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 120 ) ;
115cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
116cdf0e10cSrcweir        Text [ en-US ] = "~Delete" ;
117cdf0e10cSrcweir        TabStop = TRUE ;
118cdf0e10cSrcweir    };
119cdf0e10cSrcweir};
120cdf0e10cSrcweirTabPage RID_TP_DLGS
121cdf0e10cSrcweir{
122cdf0e10cSrcweir    HelpID = "basctl:TabPage:RID_TP_DLGS" ;
123cdf0e10cSrcweir    Hide = TRUE ;
124cdf0e10cSrcweir    SVLook = TRUE ;
125cdf0e10cSrcweir    Size = MAP_APPFONT ( 210, 140 ) ;
126cdf0e10cSrcweir    FixedText RID_STR_LIB
127cdf0e10cSrcweir    {
128cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 6 ) ;
129cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 10 ) ;
130cdf0e10cSrcweir        Text [ en-US ] = "Dialog" ;
131cdf0e10cSrcweir    };
132cdf0e10cSrcweir    Control RID_TRLBOX
133cdf0e10cSrcweir    {
134cdf0e10cSrcweir        HelpId = HID_BASICIDE_MODULES_TREE ;
135cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 17 ) ;
136cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 117 ) ;
137cdf0e10cSrcweir        TabStop = TRUE ;
138cdf0e10cSrcweir        Border = TRUE ;
139cdf0e10cSrcweir    };
140cdf0e10cSrcweir    PushButton RID_PB_EDIT
141cdf0e10cSrcweir    {
142cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_DLGS:RID_PB_EDIT" ;
143cdf0e10cSrcweir        Text [ en-US ] = "~Edit" ;
144cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 6 ) ;
145cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
146cdf0e10cSrcweir        TabStop = TRUE ;
147cdf0e10cSrcweir        DefButton = TRUE ;
148cdf0e10cSrcweir    };
149cdf0e10cSrcweir    CancelButton RID_PB_CLOSE
150cdf0e10cSrcweir    {
151cdf0e10cSrcweir        Text [ en-US ] = "Close" ;
152cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 23 ) ;
153cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
154cdf0e10cSrcweir        TabStop = TRUE ;
155cdf0e10cSrcweir    };
156cdf0e10cSrcweir    PushButton RID_PB_NEWMOD
157cdf0e10cSrcweir    {
158cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_DLGS:RID_PB_NEWMOD" ;
159cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 103 ) ;
160cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
161cdf0e10cSrcweir        Text [ en-US ] = "~New..." ;
162cdf0e10cSrcweir        TabStop = TRUE ;
163cdf0e10cSrcweir    };
164cdf0e10cSrcweir    PushButton RID_PB_NEWDLG
165cdf0e10cSrcweir    {
166cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_DLGS:RID_PB_NEWDLG" ;
167cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 103 ) ;
168cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
169cdf0e10cSrcweir        Text [ en-US ] = "~New..." ;
170cdf0e10cSrcweir        TabStop = TRUE ;
171cdf0e10cSrcweir    };
172cdf0e10cSrcweir    PushButton RID_PB_DELETE
173cdf0e10cSrcweir    {
174cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_DLGS:RID_PB_DELETE" ;
175cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 120 ) ;
176cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
177cdf0e10cSrcweir        Text [ en-US ] = "~Delete" ;
178cdf0e10cSrcweir        TabStop = TRUE ;
179cdf0e10cSrcweir    };
180cdf0e10cSrcweir};
181cdf0e10cSrcweirTabPage RID_TP_LIBS
182cdf0e10cSrcweir{
183cdf0e10cSrcweir    HelpId = "basctl:TabPage:RID_TP_LIBS" ;
184cdf0e10cSrcweir    Hide = TRUE ;
185cdf0e10cSrcweir    SVLook = TRUE ;
186cdf0e10cSrcweir    Size = MAP_APPFONT ( 210, 140 ) ;
187cdf0e10cSrcweir    FixedText RID_STR_BASICS
188cdf0e10cSrcweir    {
189cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 6 ) ;
190cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 10 ) ;
191cdf0e10cSrcweir        Text [ en-US ] = "L~ocation" ;
192cdf0e10cSrcweir    };
193cdf0e10cSrcweir    ListBox RID_LB_BASICS
194cdf0e10cSrcweir    {
195cdf0e10cSrcweir        HelpID = "basctl:ListBox:RID_TP_LIBS:RID_LB_BASICS" ;
196cdf0e10cSrcweir        Border = TRUE ;
197cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 17 ) ;
198cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 80 ) ;
199cdf0e10cSrcweir        TabStop = TRUE ;
200cdf0e10cSrcweir        DropDown = TRUE ;
201cdf0e10cSrcweir    };
202cdf0e10cSrcweir    FixedText RID_STR_LIB
203cdf0e10cSrcweir    {
204cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 36 ) ;
205cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 10 ) ;
206cdf0e10cSrcweir        Text [ en-US ] = "~Library" ;
207cdf0e10cSrcweir    };
208cdf0e10cSrcweir    Control RID_TRLBOX
209cdf0e10cSrcweir    {
210cdf0e10cSrcweir        HelpID = HID_BASICIDE_LIBS_TREE ;
211cdf0e10cSrcweir        Border = TRUE ;
212cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 47 ) ;
213cdf0e10cSrcweir        Size = MAP_APPFONT ( 130, 87 ) ;
214cdf0e10cSrcweir        TabStop = TRUE ;
215cdf0e10cSrcweir    };
216cdf0e10cSrcweir
217cdf0e10cSrcweir    PushButton RID_PB_EDIT
218cdf0e10cSrcweir    {
219cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_LIBS:RID_PB_EDIT" ;
220cdf0e10cSrcweir        Text [ en-US ] = "~Edit" ;
221cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 6 ) ;
222cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
223cdf0e10cSrcweir        TabStop = TRUE ;
224cdf0e10cSrcweir        DefButton = TRUE ;
225cdf0e10cSrcweir    };
226cdf0e10cSrcweir    CancelButton RID_PB_CLOSE
227cdf0e10cSrcweir    {
228cdf0e10cSrcweir        Text [ en-US ] = "Close" ;
229cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 23 ) ;
230cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
231cdf0e10cSrcweir        TabStop = TRUE ;
232cdf0e10cSrcweir    };
233cdf0e10cSrcweir    PushButton RID_PB_PASSWORD
234cdf0e10cSrcweir    {
235cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_LIBS:RID_PB_PASSWORD" ;
236cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 43 ) ;
237cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
238cdf0e10cSrcweir        Text [ en-US ] = "~Password..." ;
239cdf0e10cSrcweir        TabStop = TRUE ;
240cdf0e10cSrcweir    };
241cdf0e10cSrcweir
242cdf0e10cSrcweir    PushButton RID_PB_NEWLIB
243cdf0e10cSrcweir    {
244cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_LIBS:RID_PB_NEWLIB" ;
245cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 69 ) ;
246cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
247cdf0e10cSrcweir        Text [ en-US ] = "~New..." ;
248cdf0e10cSrcweir        TabStop = TRUE ;
249cdf0e10cSrcweir    };
250cdf0e10cSrcweir    PushButton RID_PB_APPEND
251cdf0e10cSrcweir    {
252cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_LIBS:RID_PB_APPEND" ;
253cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 86 ) ;
254cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
255cdf0e10cSrcweir        Text [ en-US ] = "~Import..." ;
256cdf0e10cSrcweir    };
257cdf0e10cSrcweir    PushButton RID_PB_EXPORT
258cdf0e10cSrcweir    {
259cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_LIBS:RID_PB_EXPORT" ;
260cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 103 ) ;
261cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
262cdf0e10cSrcweir        Text [ en-US ] = "E~xport..." ;
263cdf0e10cSrcweir        TabStop = TRUE ;
264cdf0e10cSrcweir    };
265cdf0e10cSrcweir    PushButton RID_PB_DELETE
266cdf0e10cSrcweir    {
267cdf0e10cSrcweir        HelpID = "basctl:PushButton:RID_TP_LIBS:RID_PB_DELETE" ;
268cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 120 ) ;
269cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 14 ) ;
270cdf0e10cSrcweir        Text [ en-US ] = "~Delete" ;
271cdf0e10cSrcweir        TabStop = TRUE ;
272cdf0e10cSrcweir    };
273cdf0e10cSrcweir};
274cdf0e10cSrcweirModalDialog RID_DLG_LIBS
275cdf0e10cSrcweir{
276cdf0e10cSrcweir    HelpId = "basctl:ModalDialog:RID_DLG_LIBS" ;
277cdf0e10cSrcweir    OutputSize = TRUE ;
278cdf0e10cSrcweir    SVLook = TRUE ;
279cdf0e10cSrcweir    Size = MAP_APPFONT ( 168, 132 ) ;
280cdf0e10cSrcweir    Moveable = TRUE ;
281cdf0e10cSrcweir    Closeable = TRUE ;
282cdf0e10cSrcweir    OKButton RID_PB_OK
283cdf0e10cSrcweir    {
284cdf0e10cSrcweir        Pos = MAP_APPFONT ( 112, 6 ) ;
285cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
286cdf0e10cSrcweir        TabStop = TRUE ;
287cdf0e10cSrcweir        DefButton = TRUE ;
288cdf0e10cSrcweir    };
289cdf0e10cSrcweir    CancelButton RID_PB_CANCEL
290cdf0e10cSrcweir    {
291cdf0e10cSrcweir        Pos = MAP_APPFONT ( 112, 23 ) ;
292cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
293cdf0e10cSrcweir        TabStop = TRUE ;
294cdf0e10cSrcweir    };
295cdf0e10cSrcweir    FixedText RID_FT_STORAGENAME
296cdf0e10cSrcweir    {
297cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 6 ) ;
298cdf0e10cSrcweir        Size = MAP_APPFONT ( 100, 10 ) ;
299cdf0e10cSrcweir    };
300cdf0e10cSrcweir    Control RID_CTRL_LIBS
301cdf0e10cSrcweir    {
302cdf0e10cSrcweir        HelpID = HID_BASICIDE_LIBSDLG_TREE ;
303cdf0e10cSrcweir        Border = TRUE ;
304cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 19 ) ;
305cdf0e10cSrcweir        Size = MAP_APPFONT ( 100, 67 ) ;
306cdf0e10cSrcweir        TabStop = TRUE ;
307cdf0e10cSrcweir    };
308cdf0e10cSrcweir    FixedLine RID_FL_OPTIONS
309cdf0e10cSrcweir    {
310cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 89 ) ;
311cdf0e10cSrcweir        Size = MAP_APPFONT ( 156, 8 ) ;
312cdf0e10cSrcweir        Text [ en-US ] = "Options" ;
313cdf0e10cSrcweir    };
314cdf0e10cSrcweir    CheckBox RID_CB_REF
315cdf0e10cSrcweir    {
316cdf0e10cSrcweir        HelpID = "basctl:CheckBox:RID_DLG_LIBS:RID_CB_REF" ;
317cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 100 ) ;
318cdf0e10cSrcweir        Size = MAP_APPFONT ( 146, 10 ) ;
319cdf0e10cSrcweir        TabStop = TRUE ;
320cdf0e10cSrcweir        Text [ en-US ] = "Insert as reference (read-only)" ;
321cdf0e10cSrcweir    };
322cdf0e10cSrcweir    CheckBox RID_CB_REPL
323cdf0e10cSrcweir    {
324cdf0e10cSrcweir        HelpID = "basctl:CheckBox:RID_DLG_LIBS:RID_CB_REPL" ;
325cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 113 ) ;
326cdf0e10cSrcweir        Size = MAP_APPFONT ( 146, 10 ) ;
327cdf0e10cSrcweir        Text [ en-US ] = "Replace existing libraries" ;
328cdf0e10cSrcweir    };
329cdf0e10cSrcweir};
330cdf0e10cSrcweirModalDialog RID_DLG_NEWLIB
331cdf0e10cSrcweir{
332cdf0e10cSrcweir    HelpID = "basctl:ModalDialog:RID_DLG_NEWLIB" ;
333cdf0e10cSrcweir    OutputSize = TRUE ;
334cdf0e10cSrcweir    SVLook = TRUE ;
335cdf0e10cSrcweir    Size = MAP_APPFONT ( 160, 55 ) ;
336cdf0e10cSrcweir    Moveable = TRUE ;
337cdf0e10cSrcweir    Closeable = TRUE ;
338cdf0e10cSrcweir    OKButton RID_PB_OK
339cdf0e10cSrcweir    {
340cdf0e10cSrcweir        Pos = MAP_APPFONT ( 104, 6 ) ;
341cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
342cdf0e10cSrcweir        TabStop = TRUE ;
343cdf0e10cSrcweir        DefButton = TRUE ;
344cdf0e10cSrcweir    };
345cdf0e10cSrcweir    CancelButton RID_PB_CANCEL
346cdf0e10cSrcweir    {
347cdf0e10cSrcweir        Pos = MAP_APPFONT ( 104, 23 ) ;
348cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
349cdf0e10cSrcweir        TabStop = TRUE ;
350cdf0e10cSrcweir    };
351cdf0e10cSrcweir    FixedText RID_FT_NEWLIB
352cdf0e10cSrcweir    {
353cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 6 ) ;
354cdf0e10cSrcweir        Size = MAP_APPFONT ( 100, 10 ) ;
355cdf0e10cSrcweir        Text [ en-US ] = "~Name:" ;
356cdf0e10cSrcweir    };
357cdf0e10cSrcweir    Edit RID_ED_LIBNAME
358cdf0e10cSrcweir    {
359cdf0e10cSrcweir        HelpID = "basctl:Edit:RID_DLG_NEWLIB:RID_ED_LIBNAME" ;
360cdf0e10cSrcweir        Border = TRUE ;
361cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 19 ) ;
362cdf0e10cSrcweir        Size = MAP_APPFONT ( 92, 12 ) ;
363cdf0e10cSrcweir        TabStop = TRUE ;
364cdf0e10cSrcweir    };
365cdf0e10cSrcweir};
366cdf0e10cSrcweir
367cdf0e10cSrcweirModalDialog RID_DLG_EXPORT
368cdf0e10cSrcweir{
369cdf0e10cSrcweir    HelpID = "basctl:ModalDialog:RID_DLG_EXPORT" ;
370cdf0e10cSrcweir    OutputSize = TRUE ;
371cdf0e10cSrcweir    SVLook = TRUE ;
372cdf0e10cSrcweir    Size = MAP_APPFONT ( 115, 55 ) ;
373cdf0e10cSrcweir    Moveable = TRUE ;
374cdf0e10cSrcweir    Closeable = TRUE ;
375cdf0e10cSrcweir    Text [ en-US ] = "Export Basic library" ;
376cdf0e10cSrcweir    OKButton RID_PB_OK
377cdf0e10cSrcweir    {
378cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 35 ) ;
379cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
380cdf0e10cSrcweir        TabStop = TRUE ;
381cdf0e10cSrcweir        DefButton = TRUE ;
382cdf0e10cSrcweir    };
383cdf0e10cSrcweir    CancelButton RID_PB_CANCEL
384cdf0e10cSrcweir    {
385cdf0e10cSrcweir        Pos = MAP_APPFONT ( 59, 35 ) ;
386cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
387cdf0e10cSrcweir        TabStop = TRUE ;
388cdf0e10cSrcweir    };
389cdf0e10cSrcweir
390cdf0e10cSrcweir    RadioButton RB_EXPORTASPACKAGE
391cdf0e10cSrcweir    {
392cdf0e10cSrcweir        HelpID = "basctl:RadioButton:RID_DLG_EXPORT:RB_EXPORTASPACKAGE" ;
393cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 6 ) ;
394cdf0e10cSrcweir        Size = MAP_APPFONT ( 103, 10 ) ;
395cdf0e10cSrcweir        Group = TRUE ;
396cdf0e10cSrcweir        Text [ en-US ] = "Export as ~extension" ;
397cdf0e10cSrcweir        TabStop = TRUE ;
398cdf0e10cSrcweir    };
399cdf0e10cSrcweir    RadioButton RB_EXPORTASBASIC
400cdf0e10cSrcweir    {
401cdf0e10cSrcweir        HelpID = "basctl:RadioButton:RID_DLG_EXPORT:RB_EXPORTASBASIC" ;
402cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 19 ) ;
403cdf0e10cSrcweir        Size = MAP_APPFONT ( 103, 10 ) ;
404cdf0e10cSrcweir        //Group = TRUE ;
405cdf0e10cSrcweir        Text [ en-US ] = "Export as BASIC library" ;
406cdf0e10cSrcweir    };
407cdf0e10cSrcweir};
408cdf0e10cSrcweir
409cdf0e10cSrcweirString RID_STR_EXPORTPACKAGE
410cdf0e10cSrcweir{
411cdf0e10cSrcweir    Text [ en-US ] = "Export library as extension" ;
412cdf0e10cSrcweir};
413cdf0e10cSrcweir
414cdf0e10cSrcweirString RID_STR_EXPORTBASIC
415cdf0e10cSrcweir{
416cdf0e10cSrcweir    Text [ en-US ] = "Export as BASIC library" ;
417cdf0e10cSrcweir};
418cdf0e10cSrcweir
419cdf0e10cSrcweirString RID_STR_PACKAGE_BUNDLE
420cdf0e10cSrcweir{
421cdf0e10cSrcweir    Text [ en-US ] = "Extension" ;
422cdf0e10cSrcweir};
423cdf0e10cSrcweir
424*ef4882fcSmseidel// ********************************************************************** EOF
425