push e1d8a1293d44015bb0894687d02c5c53339996f7
[wine/hacks.git] / programs / winetest / winetest.rc
blob4d406f2f409f5be25bc965d1e160adc628ca9ac4
1 /*
2  * Winetest resources
3  *
4  * Copyright 2004 Ferenc Wagner
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
21 #include <windef.h>
22 #include <winuser.h>
23 #include <commctrl.h>
25 #include "resource.h"
27 #ifdef BUILD_SHA1
28 STRINGTABLE
29 BEGIN
30     IDS_BUILD_ID BUILD_SHA1
31 END
32 #endif
34 IDD_TAG DIALOG 0, 0, 150, 65
35 STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU
36 CAPTION "No tag supplied"
37 BEGIN
38     CTEXT "Please supply a tag for your report.  You can use letters, digits, dashes and periods."
39         IDC_STATIC, 10, 5, 130, 30
40     EDITTEXT IDC_TAG, 35, 30, 80, 10, ES_AUTOHSCROLL
41     DEFPUSHBUTTON "Start", IDOK, 25, 45, 40, 14
42     PUSHBUTTON    "Abort", IDABORT, 85, 45, 40, 14
43 END
45 IDD_STATUS DIALOG 0, 0, 160, 150
46 STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
47 CAPTION "Wine Test Shell"
48 BEGIN
49     LTEXT   "Extracting:",       IDC_ST0,        10,   5, 140, 10
50     CONTROL "PB0", IDC_PB0, PROGRESS_CLASS, 0,    5,  15, 150, 10
51     LTEXT   "Running:",          IDC_ST1,        10,  30, 140, 10
52     CONTROL "PB1", IDC_PB1, PROGRESS_CLASS, 0,    5,  40, 150, 10
53     LTEXT   "Network transfer:", IDC_ST2,        10,  55, 140, 10
54     CONTROL "PB2", IDC_PB2, PROGRESS_CLASS, 0,    5,  65, 150, 10
55                                                
56     LTEXT   "Tag:",               IDC_STATIC,    10,  89, 100, 10
57     EDITTEXT                      IDC_TAG,       25,  88, 125, 10,
58              ES_READONLY
59     LTEXT   "Working directory:", IDC_STATIC,    10, 100, 100, 10
60     EDITTEXT                      IDC_DIR,       71,  99,  79, 10,
61              ES_READONLY | ES_AUTOHSCROLL
62     LTEXT   "Output file:",       IDC_STATIC,    10, 111, 100, 10
63     EDITTEXT                      IDC_OUT,       46, 110, 104, 10,
64              ES_READONLY | ES_AUTOHSCROLL
66     DEFPUSHBUTTON "About", IDHELP,               20, 123,  30, 14
67     PUSHBUTTON    "Edit",  IDCANCEL,             65, 123,  30, 14,
68                    WS_DISABLED
69     PUSHBUTTON    "Stop",  IDABORT,             110, 123,  30, 14
71     CONTROL "Created", IDC_SB, STATUSCLASSNAME, 0, 0,0,0,0
72 END
74 IDD_ABOUT DIALOG 0, 0, 150, 60
75 STYLE WS_POPUP
76 CAPTION "About Wine Test Shell"
77 BEGIN
78     CTEXT "This program extracts and runs a series of tests which check Wine's conformance to the Windows API.",
79         IDC_STATIC, 10, 5, 130, 30
80     DEFPUSHBUTTON "Close", IDCANCEL, 55, 40, 40, 14
81 END
83 /* @makedep: winetest.ico */
84 IDI_WINE ICON "winetest.ico"
86 #include "tests.rc"