winetest.rc 3.41 KB
Newer Older
1
/*
2
 * Winetest resources
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * Copyright 2004 Ferenc Wagner
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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 20
 */

21 22 23 24
#include <windef.h>
#include <winuser.h>
#include <commctrl.h>

25
#include "resource.h"
26

27
IDD_TAG DIALOG 0, 0, 150, 65
28
STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU
29
CAPTION "No tag supplied"
30
FONT 8, "MS Shell Dlg"
31 32
BEGIN
    CTEXT "Please supply a tag for your report.  You can use letters, digits, dashes and periods."
33
        IDC_STATIC, 5, 5, 130, 30
34
    EDITTEXT IDC_TAG, 35, 30, 80, 10, ES_AUTOHSCROLL
35 36 37 38
    DEFPUSHBUTTON "Start", IDOK, 25, 45, 40, 14
    PUSHBUTTON    "Abort", IDABORT, 85, 45, 40, 14
END

39 40 41
IDD_EMAIL DIALOG 0, 0, 150, 65
STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "No email supplied"
42
FONT 8, "MS Shell Dlg"
43 44
BEGIN
    CTEXT "Please supply an email address to enable developers to contact you about your report."
45
        IDC_STATIC, 5, 5, 130, 30
46 47 48 49 50
    EDITTEXT IDC_EMAIL, 10, 30, 130, 10, ES_AUTOHSCROLL
    DEFPUSHBUTTON "Start", IDOK, 25, 45, 40, 14
    PUSHBUTTON    "Abort", IDABORT, 85, 45, 40, 14
END

51
IDD_STATUS DIALOG 0, 0, 160, 150
52
STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
53
CAPTION "Wine Test Shell"
54
FONT 8, "MS Shell Dlg"
55
BEGIN
56
    LTEXT   "Extracting:",       IDC_ST0,         5,   5, 140, 10
57
    CONTROL "PB0", IDC_PB0, PROGRESS_CLASSA, 0,   5,  15, 150, 10
58
    LTEXT   "Running:",          IDC_ST1,         5,  30, 140, 10
59
    CONTROL "PB1", IDC_PB1, PROGRESS_CLASSA, 0,   5,  40, 150, 10
60
    LTEXT   "Network transfer:", IDC_ST2,         5,  55, 140, 10
61
    CONTROL "PB2", IDC_PB2, PROGRESS_CLASSA, 0,   5,  65, 150, 10
62
                                               
63
    LTEXT   "Tag:",               IDC_STATIC,     5,  89, 100, 10
64 65
    EDITTEXT                      IDC_TAG,       25,  88, 125, 10,
             ES_READONLY
66
    LTEXT   "Working directory:", IDC_STATIC,     5, 100, 100, 10
67
    EDITTEXT                      IDC_DIR,       71,  99,  79, 10,
68
             ES_READONLY | ES_AUTOHSCROLL
69
    LTEXT   "Output file:",       IDC_STATIC,     5, 111, 100, 10
70
    EDITTEXT                      IDC_OUT,       46, 110, 104, 10,
71 72
             ES_READONLY | ES_AUTOHSCROLL

73 74
    DEFPUSHBUTTON "About", IDHELP,               20, 123,  30, 14
    PUSHBUTTON    "Edit",  IDCANCEL,             65, 123,  30, 14,
75
                   WS_DISABLED
76
    PUSHBUTTON    "Stop",  IDABORT,             110, 123,  30, 14
77

78
    CONTROL "Created", IDC_SB, STATUSCLASSNAMEA, 0, 0,0,0,0
79 80
END

81
IDD_ABOUT DIALOG 0, 0, 150, 60
82 83
STYLE WS_POPUP
CAPTION "About Wine Test Shell"
84
FONT 8, "MS Shell Dlg"
85
BEGIN
86
    CTEXT "This program extracts and runs a series of tests which check Wine's conformance to the Windows API.",
87
        IDC_STATIC, 5, 5, 130, 30
88
    DEFPUSHBUTTON "Close", IDCANCEL, 55, 40, 40, 14
89 90
END

Herve Chanal's avatar
Herve Chanal committed
91 92
/* @makedep: winetest.ico */
IDI_WINE ICON "winetest.ico"