2004-01-15 02:48:05 +01:00
|
|
|
/*
|
2004-06-16 00:45:15 +02:00
|
|
|
* Winetest resources
|
2004-01-15 02:48:05 +01:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-01-15 02:48:05 +01:00
|
|
|
*/
|
|
|
|
|
2007-08-07 08:30:43 +02:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
|
2004-06-16 00:45:15 +02:00
|
|
|
#include "resource.h"
|
2004-01-15 02:48:05 +01:00
|
|
|
|
2005-03-31 17:22:41 +02:00
|
|
|
IDD_TAG DIALOG 0, 0, 150, 65
|
2006-09-11 14:32:00 +02:00
|
|
|
STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU
|
2005-03-31 17:22:41 +02:00
|
|
|
CAPTION "No tag supplied"
|
|
|
|
BEGIN
|
|
|
|
CTEXT "Please supply a tag for your report. You can use letters, digits, dashes and periods."
|
|
|
|
IDC_STATIC, 10, 5, 130, 30
|
2005-04-18 11:54:24 +02:00
|
|
|
EDITTEXT IDC_TAG, 35, 30, 80, 10, ES_AUTOHSCROLL
|
2005-03-31 17:22:41 +02:00
|
|
|
DEFPUSHBUTTON "Start", IDOK, 25, 45, 40, 14
|
|
|
|
PUSHBUTTON "Abort", IDABORT, 85, 45, 40, 14
|
|
|
|
END
|
|
|
|
|
|
|
|
IDD_STATUS DIALOG 0, 0, 160, 150
|
2004-06-16 00:45:15 +02:00
|
|
|
STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
|
2004-01-15 02:48:05 +01:00
|
|
|
CAPTION "Wine Test Shell"
|
|
|
|
BEGIN
|
|
|
|
LTEXT "Extracting:", IDC_ST0, 10, 5, 140, 10
|
|
|
|
CONTROL "PB0", IDC_PB0, PROGRESS_CLASS, 0, 5, 15, 150, 10
|
|
|
|
LTEXT "Running:", IDC_ST1, 10, 30, 140, 10
|
2008-11-18 11:39:55 +01:00
|
|
|
CONTROL "PB1", IDC_PB1, PROGRESS_CLASS, 0, 5, 40, 150, 10
|
|
|
|
LTEXT "Network transfer:", IDC_ST2, 10, 55, 140, 10
|
|
|
|
CONTROL "PB2", IDC_PB2, PROGRESS_CLASS, 0, 5, 65, 150, 10
|
2004-01-15 02:48:05 +01:00
|
|
|
|
2005-03-31 17:22:41 +02:00
|
|
|
LTEXT "Tag:", IDC_STATIC, 10, 89, 100, 10
|
|
|
|
EDITTEXT IDC_TAG, 25, 88, 125, 10,
|
|
|
|
ES_READONLY
|
|
|
|
LTEXT "Working directory:", IDC_STATIC, 10, 100, 100, 10
|
|
|
|
EDITTEXT IDC_DIR, 71, 99, 79, 10,
|
2004-01-15 02:48:05 +01:00
|
|
|
ES_READONLY | ES_AUTOHSCROLL
|
2005-03-31 17:22:41 +02:00
|
|
|
LTEXT "Output file:", IDC_STATIC, 10, 111, 100, 10
|
|
|
|
EDITTEXT IDC_OUT, 46, 110, 104, 10,
|
2004-01-15 02:48:05 +01:00
|
|
|
ES_READONLY | ES_AUTOHSCROLL
|
|
|
|
|
2005-03-31 17:22:41 +02:00
|
|
|
DEFPUSHBUTTON "About", IDHELP, 20, 123, 30, 14
|
|
|
|
PUSHBUTTON "Edit", IDCANCEL, 65, 123, 30, 14,
|
2004-01-15 02:48:05 +01:00
|
|
|
WS_DISABLED
|
2005-03-31 17:22:41 +02:00
|
|
|
PUSHBUTTON "Stop", IDABORT, 110, 123, 30, 14
|
2004-01-15 02:48:05 +01:00
|
|
|
|
|
|
|
CONTROL "Created", IDC_SB, STATUSCLASSNAME, 0, 0,0,0,0
|
|
|
|
END
|
|
|
|
|
2004-03-02 21:56:35 +01:00
|
|
|
IDD_ABOUT DIALOG 0, 0, 150, 60
|
2004-01-15 02:48:05 +01:00
|
|
|
STYLE WS_POPUP
|
|
|
|
CAPTION "About Wine Test Shell"
|
|
|
|
BEGIN
|
2004-03-02 21:56:35 +01:00
|
|
|
CTEXT "This program extracts and runs a series of tests which check Wine's conformance to the Windows API.",
|
2004-01-15 02:48:05 +01:00
|
|
|
IDC_STATIC, 10, 5, 130, 30
|
2004-03-02 21:56:35 +01:00
|
|
|
DEFPUSHBUTTON "Close", IDCANCEL, 55, 40, 40, 14
|
2004-01-15 02:48:05 +01:00
|
|
|
END
|
|
|
|
|
2008-03-28 19:24:52 +01:00
|
|
|
/* @makedep: winetest.ico */
|
|
|
|
IDI_WINE ICON "winetest.ico"
|