Fixed DevStudio 2003 build with memory check code.
[pwlib.git] / tools / pwtest / resources.prc
blob5a11b70e5e9983da375c67b48f96c97b084d1f5c
1 /*
2  * RESOURCES.PRC
3  *
4  * PWLib application resources file for pwtest
5  *
6  * Copyright 98 Equivalence
7  *
8  * $Log$
9  * Revision 1.20  2002/12/02 00:15:59  robertj
10  * Additional URL testing
11  *
12  * Revision 1.19  2002/11/19 10:37:13  robertj
13  * Added functions to set anf get "file:" URL. as PFilePath and do the right
14  *   things with platform dependent directory components.
15  *
16  * Revision 1.18  2001/12/06 04:06:03  robertj
17  * Removed "Win32 SSL xxx" build configurations in favour of system
18  *   environment variables to select optional libraries.
19  *
20  * Revision 1.17  2001/11/08 00:31:27  robertj
21  * Reinstated URL test code and added "parameter" string dictionary display.
22  *
23  * Revision 1.16  2001/05/10 02:43:23  robertj
24  * Added SSL test code.
25  *
26  * Revision 1.15  2000/11/12 23:34:10  craigs
27  * Added hierarchical menu test
28  *
29  * Revision 1.14  2000/11/09 05:50:23  robertj
30  * Added RFC822 aware channel class for doing internet mail.
31  *
32  * Revision 1.13  2000/08/30 03:17:00  robertj
33  * Improved multithreaded reliability of the timers under stress.
34  *
35  * Revision 1.12  2000/07/15 09:47:35  robertj
36  * Added video I/O device classes.
37  *
38  * Revision 1.11  1999/09/10 04:35:43  robertj
39  * Added Windows version of PIPSocket::GetInterfaceTable() function.
40  *
41  * Revision 1.10  1999/08/07 07:11:14  robertj
42  * Added test for menu text change
43  *
44  * Revision 1.9  1999/08/07 01:47:18  robertj
45  * Fixed some trivial errors.
46  *
47  * Revision 1.8  1999/07/03 03:12:59  robertj
48  * #ifdef'ed test code for stuff not in general distrubution.
49  *
50  * Revision 1.7  1999/06/24 14:00:09  robertj
51  * Added URL parse test
52  *
53  * Revision 1.6  1999/02/22 10:15:16  robertj
54  * Sound driver interface implementation to Linux OSS specification.
55  *
56  * Revision 1.5  1999/01/31 08:51:37  robertj
57  * Formatting
58  *
59  * Revision 1.4  1999/01/31 08:43:53  robertj
60  * Changed about dialog to be full company name
61  *
62  * Revision 1.3  1999/01/31 00:59:27  robertj
63  * Added IP Access Control List class to PTLib Components
64  *
65  * Revision 1.2  1998/12/23 01:16:05  robertj
66  * New directory structure
67  */
69 #include <pwlib/stdres.h>
72 #inline hdr
73 #include "main.h"
74 #inline end
77 String @IDS_TITLE              "pwtest";
78 String @IDS_TEST_BUTTON        "Test!";
81 MenuBar
83     Class MainMenu;
84     Window MainWindow;
86     Menu PSTD_STR_FILE_MENU {
87         Item {
88             Title        PSTD_STR_NEW_MENU;
89             Notify       NewCmd;
90             Accelerators PSTD_STR_NEW_ACCEL;
91             Id           @IDM_NEW;
92         }
93         Item {
94             Title        PSTD_STR_OPEN_MENU;
95             Notify       OpenCmd;
96             Accelerators PSTD_STR_OPEN_ACCEL;
97             Id           @IDM_OPEN;
98         }
99         Item {
100             Title        PSTD_STR_CLOSE_MENU;
101             Notify       CloseCmd;
102             Accelerators PSTD_STR_CLOSE_ACCEL;
103             Id           @IDM_CLOSE;
104         }
105         Separator;
106         Item {
107             Title        PSTD_STR_SAVE_MENU;
108             Notify       SaveCmd;
109             Accelerators PSTD_STR_SAVE_ACCEL;
110             Id           @IDM_SAVE;
111         }
112         Item {
113             Title        PSTD_STR_SAVE_AS_MENU;
114             Notify       SaveAsCmd;
115             Id           @IDM_SAVE_AS;
116         }
117         Separator;
118         Item {
119             Title        PSTD_STR_PRINT_MENU;
120             Notify       PrintCmd;
121             Accelerators PSTD_STR_PRINT_ACCEL;
122             Id           @IDM_PRINT;
123         }
124         Item {
125             Title        PSTD_STR_PRINTER_SETUP_MENU;
126             Notify       PrinterSetupCmd;
127         }
128         Separator;
129         Item {
130             Title        PSTD_STR_EXIT_MENU;
131             Notify       ExitCmd;
132             Accelerators PSTD_STR_EXIT_ACCEL;
133         }
134     }
136     Menu PSTD_STR_EDIT_MENU {
137         Item {
138             Title  PSTD_STR_UNDO_MENU;
139             Notify "Undo";
140             Accelerators { PSTD_STR_UNDO_ACCEL1,  PSTD_STR_UNDO_ACCEL2  }
141         }
142         Separator;
143         Item {
144             Title  PSTD_STR_CUT_MENU;
145             Notify "Cut";
146             Accelerators { PSTD_STR_CUT_ACCEL1,  PSTD_STR_CUT_ACCEL2  }
147         }
148         Item {
149             Title  PSTD_STR_COPY_MENU;
150             Notify "Copy";
151             Accelerators { PSTD_STR_COPY_ACCEL1,  PSTD_STR_COPY_ACCEL2  }
152         }
153         Item {
154             Title  PSTD_STR_PASTE_MENU;
155             Notify "Paste";
156             Accelerators { PSTD_STR_PASTE_ACCEL1, PSTD_STR_PASTE_ACCEL2 }
157         }
158         Item {
159             Title  PSTD_STR_CLEAR_MENU;
160             Notify "Clear";
161             Accelerators { PSTD_STR_CLEAR_ACCEL1, PSTD_STR_CLEAR_ACCEL2 }
162         }
163         Separator;
164         Item {
165             Title        "&Select All";
166             Notify       "SelectAll";
167             Accelerators "Ctrl+Shift+A";
168         }
169     }
170     Menu "&Test" {
171         Item {
172             Title  "Menu test";
173             Notify "MenuTest";
174             Field  menuTestItem;
175         }
176         Item {
177             Title  "Timer Stress";
178             Notify "TimerStress";
179         }
180         Item {
181             Title  "IP Access Control Lists";
182             Notify "IP_ACL";
183         }
184         Item {
185             Title  "List Interfaces";
186             Notify ListInterfacesCmd;
187         }
188 #ifdef P_SSL1
189         Item {
190             Title  "SSL Tests";
191             Notify "TestSSL";
192         }
193 #endif
194         Item {
195             Title  "Parse URL";
196             Notify "ParseURL";
197         }
198         Item {
199             Title  "Mail Message";
200             Notify "MailTest";
201         }
202         Separator;
203         Item {
204             Title  "Play Sound";
205             Notify "PlaySound";
206         }
207         Item {
208             Title  "Record Sound";
209             Notify "RecordSound";
210         }
211         Item {
212             Title  "Video Capture";
213             Notify "VideoCapture";
214         }
215         Separator;
216         Item {
217             Title  "Timer Stress";
218             Notify "TimerStress";
219         }
220         Separator;
221         Menu "Tree" {
222                 Item {
223                         Title  "Item 1";
224                 }
225                 Item {
226                         Title  "Item 2";
227                 }
228                 Menu "SubMenu" {
229                         Item {
230                                 Title  "Item 3";
231                         }
232                         Menu "SubMenu" {
233                                 Item {
234                                         Title  "Item 4";
235                                 }
236                         }
237                 }
238         }
239     }
243 Icon @IDI_MAIN_WINDOW
245     Dimensions 32,32,4;
246     Colours {
247           0,   0,   0,
248         128,   0,   0,
249           0, 128,   0,
250         128, 128,   0,
251           0,   0, 128,
252         128,   0, 128,
253           0, 128, 128,
254         128, 128, 128,
255         192, 192, 192,
256         255,   0,   0,
257           0, 255,   0,
258         255, 255,   0,
259           0,   0, 255,
260         255,   0, 255,
261           0, 255, 255,
262         255, 255, 255
263     }
264     Pixels {
265          0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
266          0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
267          0  0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
268          0  0 15  0  0 15 15 15 15 15 15 15  0  0 15 15 15  0 15 15 15 15  0  0  0  0  0 15 15 15  0  0
269          0  0 15  0  0  0 15 15 15 15 15  0  0 15 15 15 15 15  0  0  0  0  9  9  0 10 10  0  0 15  0  0
270          0  0 15 15  0  0  0 15 15 15  0  0 15 15 15 15 15  9 15 15  0  9  9  9  0 10 10 10  0 15  0  0
271          0  0 15 15 15  0  0  0 15  0  0 15 15 15 15 15 15 15 15 15  0  9  9  9  0 10 10 10  0 15  0  0
272          0  0 15 15 15 15  0  0  0  0 15 15 15 15 15 15 15  9 15 15  0  9  9  9  0 10 10 10  0 15  0  0
273          0  0 15 15 15 15 15  0  0  0 15 15 15 15 15 15 15  0 15 15  0  9  0  0  0  0  0 10  0 15  0  0
274          0  0 15 15 15 15  0  0  0  0  0 15 15 15 15 15 15 15  0  0  0  0 12 12  0 11 11  0  0 15  0  0
275          0  0 15 15 15  0  0 15 15  0  0  0 15 15 15 15 15 12 15 12  0 12 12 12  0 11 11 11  0 15  0  0
276          0  0 15 15  0  0 15 15 15 15  0  0  0 15 15 15 15 15 12 15  0 12 12 12  0 11 11 11  0 15  0  0
277          0  0 15  0  0 15 15 15 15 15 15  0  0  0 15 15 15 12 15 12  0 12 12 12  0 11 11 11  0 15  0  0
278          0  0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0 12 15  0 12  0  0  0  0  0 11  0 15  0  0
279          0  0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0  0  0 15 15 15 15 15  0  0 15  0  0
280          0  0 15 15 15 15 15 15 15  2  2  2 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
281          0  0 15 15 15 15 15 15  2  2  2 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
282          0  0 15 15 15 15 15 15  2 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
283          0  0 15 15 15  2  2  2  2  2  2  2  2 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
284          0  0 15 15 11 11 11 11 11 11 11 11 11 11 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
285          0  0 15 11 11 11 11 11 11 11 11 11 11 15 15 15 15 15  7  7  7  7  7  7  7  7  7  7 15 15  0  0
286          0  0 15 11  9 11  9 11  9 11  9 11 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
287          0  0 15  9 11  9 11  9 11  9 11 11 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
288          0  0 15  9  9  9  9  9  9  9  9  9 15 15 15 15 15 15  7  7  7  7  7  7  7  7  7  7 15 15  0  0
289          0  0 15  9  9  9  9  9  9  9  9  9  9 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
290          0  0 15 13 13 13 13 13 13 13 13 13 13 13 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
291          0  0 15 15 13 13 13 13 13 13 13 13 13 15 15 15 15 15  7  7  7  7  7  7  7  7  7  7 15 15  0  0
292          0  0 15 15 15 12 12 12 12 12 12 12 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
293          0  0 15 15 15 15 12 12 12 12 12 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
294          0  0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15  0  0
295          0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
296          0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
297     }
298     AndMask {
299         1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
300         1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
301         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
302         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
303         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
304         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1
305         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1
306         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1
307         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1
308         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
309         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
310         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
311         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
312         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
313         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
314         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
315         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
316         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
317         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
318         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
319         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
320         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
321         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
322         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
323         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
324         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
325         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
326         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
327         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
328         1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
329         1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
330         1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
331     }
332     XorMask {
333         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
334         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
335         0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
336         0 0 1 0 0 1 1 1 1 1 1 1 0 0 1 1 1 0 1 1 1 1 0 0 0 0 0 1 1 1 0 0
337         0 0 1 0 0 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 0 0 1 1 0 1 1 0 0 1 0 0
338         0 0 1 1 0 0 0 1 1 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 0 0
339         0 0 1 1 1 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 0 0
340         0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 0 0
341         0 0 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 0 0 1 0 1 0 0
342         0 0 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 1 1 0 1 1 0 0 1 0 0
343         0 0 1 1 1 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 0 0
344         0 0 1 1 0 0 1 1 1 1 0 0 0 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 0 0
345         0 0 1 0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 0 0
346         0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 0 0 1 0 1 0 0
347         0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 1 1 1 1 0 0 1 0 0
348         0 0 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
349         0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
350         0 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
351         0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
352         0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
353         0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0
354         0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
355         0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
356         0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0
357         0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
358         0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
359         0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0
360         0 0 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
361         0 0 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
362         0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0
363         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
364         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
365     }
369 Image @IDM_TEST_ENABLED
371     Dimensions 24,22,4;
372     Colours {
373           0,   0,   0,
374         128,   0,   0,
375           0, 128,   0,
376         128, 128,   0,
377           0,   0, 128,
378         128,   0, 128,
379           0, 128, 128,
380         192, 192, 192,
381         128, 128, 128,
382         255,   0,   0,
383           0, 255,   0,
384         255, 255,   0,
385           0,   0, 255,
386         255,   0, 255,
387           0, 255, 255,
388         255, 255, 255
389     }
390     Pixels {
391          7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7
392          7  7  7  7  0  0  0  0  0  0  0  7  7  7  7  7  7  7  7  7  7  7  7  7
393          7  7  7  7  0 15 15 15 15  0 15  0  7  7  7  7  7  7  7  7  7  7  7  7
394          7  7  7  7  0 15  0  0  0  0  0  0  0  7  7  7  7  7  7  7  7  7  7  7
395          7  7  7  7  0 15  0 15 15 15 15  0 15  0  7  7  7  7  7  7  7  7  7  7
396          7  7  7  7  0 15  0 15  0  0  0  0  0  0  0  7  7  7  7  7  7  7  7  7
397          7  7  7  7  0 15  0 15  0 15 15 15 15  0 15  0  7  7  7  7  7  7  7  7
398          7  7  7  7  0 15  0 15  0 15  0  0  0  0  0  0  0  7  7  7  7  7  7  7
399          7  7  7  7  0 15  0 15  0 15  0 15 15 15 15  0 15  0  7  7  7  7  7  7
400          7  7  7  7  0 15  0 15  0 15  0 15 15 15 15  0 15 15  0  7  7  7  7  7
401          7  7  7  7  0 15  0 15  0 15  0 15 15 15 15  0 15 15 15  0  7  7  7  7
402          7  7  7  7  0 15  0 15  0 15  0 15 15 15 15  0  0  0  0  0  7  7  7  7
403          7  7  7  7  0 15  0 15  0 15  0 15 15 15 15 15 15 15 15  0  7  7  7  7
404          7  7  7  7  0  0  0 15  0 15  0 15 15 15 15 15 15 15 15  0  7  7  7  7
405          7  7  7  7  7  7  0 15  0 15  0 15 15 15 15 15 15 15 15  0  7  7  7  7
406          7  7  7  7  7  7  0  0  0 15  0 15 15 15 15 15 15 15 15  0  7  7  7  7
407          7  7  7  7  7  7  7  7  0 15  0 15 15 15 15 15 15 15 15  0  7  7  7  7
408          7  7  7  7  7  7  7  7  0  0  0 15 15 15 15 15 15 15 15  0  7  7  7  7
409          7  7  7  7  7  7  7  7  7  7  0 15 15 15 15 15 15 15 15  0  7  7  7  7
410          7  7  7  7  7  7  7  7  7  7  0  0  0  0  0  0  0  0  0  0  7  7  7  7
411          7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7
412          7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7
413     }
417 //  History (disabled)
420 Image @IDM_TEST_DISABLED
422     Dimensions 24,22,4;
423     Colours {
424           0,   0,   0,
425         128,   0,   0,
426           0, 128,   0,
427         128, 128,   0,
428           0,   0, 128,
429         128,   0, 128,
430           0, 128, 128,
431         192, 192, 192,
432         128, 128, 128,
433         255,   0,   0,
434           0, 255,   0,
435         255, 255,   0,
436           0,   0, 255,
437         255,   0, 255,
438           0, 255, 255,
439         255, 255, 255
440     }
441     Pixels {
442          7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7
443          7  7  7  7  8  8  8  8  8  8  8  7  7  7  7  7  7  7  7  7  7  7  7  7
444          7  7  7  7  8  7 15 15 15  8  7  8  7  7  7  7  7  7  7  7  7  7  7  7
445          7  7  7  7  8 15  8  8  8  8  8  8  8  7  7  7  7  7  7  7  7  7  7  7
446          7  7  7  7  8 15  8  7 15 15 15  8  7  8  7  7  7  7  7  7  7  7  7  7
447          7  7  7  7  8 15  8 15  8  8  8  8  8  8  8  7  7  7  7  7  7  7  7  7
448          7  7  7  7  8 15  8 15  8  7 15 15 15  8  7  8  7  7  7  7  7  7  7  7
449          7  7  7  7  8 15  8 15  8 15  8  8  8  8  8  8  8  7  7  7  7  7  7  7
450          7  7  7  7  8 15  8 15  8 15  8  7 15 15 15  8  7  8  7  7  7  7  7  7
451          7  7  7  7  8 15  8 15  8 15  8 15  7  7  7  8 15  7  8  7  7  7  7  7
452          7  7  7  7  8 15  8 15  8 15  8 15  7  7  7  8 15  7  7  8  7  7  7  7
453          7  7  7  7  8 15  8 15  8 15  8 15  7  7  7  8  8  8  8  8  7  7  7  7
454          7  7  7  7  8 15  8 15  8 15  8 15  7  7  7  7 15 15 15  8 15  7  7  7
455          7  7  7  7  8  8  8 15  8 15  8 15  7  7  7  7  7  7  7  8 15  7  7  7
456          7  7  7  7  7 15  8 15  8 15  8 15  7  7  7  7  7  7  7  8 15  7  7  7
457          7  7  7  7  7  7  8  8  8 15  8 15  7  7  7  7  7  7  7  8 15  7  7  7
458          7  7  7  7  7  7  7 15  8 15  8 15  7  7  7  7  7  7  7  8 15  7  7  7
459          7  7  7  7  7  7  7  7  8  8  8 15  7  7  7  7  7  7  7  8 15  7  7  7
460          7  7  7  7  7  7  7  7  7 15  8 15  7  7  7  7  7  7  7  8 15  7  7  7
461          7  7  7  7  7  7  7  7  7  7  8  8  8  8  8  8  8  8  8  8 15  7  7  7
462          7  7  7  7  7  7  7  7  7  7  7 15 15 15 15 15 15 15 15 15 15  7  7  7
463          7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7  7
464     }
468 ModalDialog {
469     Title "About pwtest";
470     Dim   165, 135;
471     Id    @IDD_ABOUT;
472     Class AboutDialog;
474     CentreText { Title "pwtest";              Pos 30, 10;  Dim 131,  8; }
475     CentreText { Title "Version 1.0b1";               Pos 30, 20;  Dim 125,  8; }
477     StaticIcon { Icon IDI_MAIN_WINDOW;                Pos 10, 10; }
479     StaticBox  {                                      Pos  5, 75;  Dim 150, 1; }
481     CentreText { Title "This software is free to all personal users.";
482                                                       Pos  5, 45;  Dim 150, 10; }
483     CentreText { Title "All other users should contact the author for licensing details.";
484                                                       Pos 10, 55;  Dim 140, 18; }
486     StaticBox  {                                      Pos  5, 40;  Dim 150, 1; }
488     CentreText { Title "Copyright © 1998 Equivalence Pty. Ltd."; Pos  5, 80;  Dim 150, 9; }
489     CentreText { Title "support@equival.com.au";      Pos  5, 90;  Dim 150, 9; }
491     StaticBox  {                                      Pos  5, 100; Dim 150, 1; }
493     PushButton { Title "Ok";  Options ok, default;    Pos 55, 110; Dim 45, 15; }
497 ModalDialog {
498     Title "Parse URL";
499     Class ParseURLDialog;
501     RightText  { Pos 10,15;  Dim 29,8;   Title "URL:"; }
502     ComboBox   { Pos 40,13;  Dim 200,90; Value url;
503         StringList {
504             "http://website.com/path/to/here",
505             "http://fred@website.com/path/to/here",
506             "http://fred:secret@website.com:123/path/to/here",
507             "/a/uri/path",
508             "file://localhost/root/path/to/there",
509             "file:///root/path/to/there",
510             "file:relative/path/to/there",
511             "ftp://annoymous.com/path/to/it",
512             "ftp://fred@authenticated.com/path/to/it",
513             "ftp://fred:secret@authenticated.com:123/path/to/it",
514             "mailto:fred@nurk.com",
515             "mailto:fred@nurk.com?subject=Hi+there",
516             "h323:fred@nurk.com",
517             "h323:fred@nurk.com;faststart=false",
518             "sip:fred@nurk.com",
519             "sip:fred:secret@nurk.com:5070;transport=tcp"
520         }
521     }
523     CheckBox   { Pos 50, 30; Dim 50,12;  Title "File Path"; Value filePath; }
525     PushButton { Pos 40, 55; Dim 45, 15; Title "Ok";     Options ok, default; }
526     PushButton { Pos 130,55; Dim 45, 15; Title "Cancel"; Options cancel;      }
530 ///////////////////////////////////////////////////////////////////////////////