~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/programs/winetest/winetest.rc

Version: ~ [ wine-1.1.40 ] ~ [ wine-1.1.39 ] ~ [ wine-1.1.38 ] ~ [ wine-1.1.37 ] ~ [ wine-1.1.36 ] ~ [ wine-1.1.35 ] ~ [ wine-1.1.34 ] ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  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  */
 20 
 21 #include <windef.h>
 22 #include <winuser.h>
 23 #include <commctrl.h>
 24 
 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 BEGIN
 31     CTEXT "Please supply a tag for your report.  You can use letters, digits, dashes and periods."
 32         IDC_STATIC, 10, 5, 130, 30
 33     EDITTEXT IDC_TAG, 35, 30, 80, 10, ES_AUTOHSCROLL
 34     DEFPUSHBUTTON "Start", IDOK, 25, 45, 40, 14
 35     PUSHBUTTON    "Abort", IDABORT, 85, 45, 40, 14
 36 END
 37 
 38 IDD_EMAIL DIALOG 0, 0, 150, 65
 39 STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU
 40 CAPTION "No email supplied"
 41 BEGIN
 42     CTEXT "Please supply an email address to enable developers to contact you about your report."
 43         IDC_STATIC, 10, 5, 130, 30
 44     EDITTEXT IDC_EMAIL, 10, 30, 130, 10, ES_AUTOHSCROLL
 45     DEFPUSHBUTTON "Start", IDOK, 25, 45, 40, 14
 46     PUSHBUTTON    "Abort", IDABORT, 85, 45, 40, 14
 47 END
 48 
 49 IDD_STATUS DIALOG 0, 0, 160, 150
 50 STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
 51 CAPTION "Wine Test Shell"
 52 BEGIN
 53     LTEXT   "Extracting:",       IDC_ST0,        10,   5, 140, 10
 54     CONTROL "PB0", IDC_PB0, PROGRESS_CLASS, 0,    5,  15, 150, 10
 55     LTEXT   "Running:",          IDC_ST1,        10,  30, 140, 10
 56     CONTROL "PB1", IDC_PB1, PROGRESS_CLASS, 0,    5,  40, 150, 10
 57     LTEXT   "Network transfer:", IDC_ST2,        10,  55, 140, 10
 58     CONTROL "PB2", IDC_PB2, PROGRESS_CLASS, 0,    5,  65, 150, 10
 59                                                
 60     LTEXT   "Tag:",               IDC_STATIC,    10,  89, 100, 10
 61     EDITTEXT                      IDC_TAG,       25,  88, 125, 10,
 62              ES_READONLY
 63     LTEXT   "Working directory:", IDC_STATIC,    10, 100, 100, 10
 64     EDITTEXT                      IDC_DIR,       71,  99,  79, 10,
 65              ES_READONLY | ES_AUTOHSCROLL
 66     LTEXT   "Output file:",       IDC_STATIC,    10, 111, 100, 10
 67     EDITTEXT                      IDC_OUT,       46, 110, 104, 10,
 68              ES_READONLY | ES_AUTOHSCROLL
 69 
 70     DEFPUSHBUTTON "About", IDHELP,               20, 123,  30, 14
 71     PUSHBUTTON    "Edit",  IDCANCEL,             65, 123,  30, 14,
 72                    WS_DISABLED
 73     PUSHBUTTON    "Stop",  IDABORT,             110, 123,  30, 14
 74 
 75     CONTROL "Created", IDC_SB, STATUSCLASSNAME, 0, 0,0,0,0
 76 END
 77 
 78 IDD_ABOUT DIALOG 0, 0, 150, 60
 79 STYLE WS_POPUP
 80 CAPTION "About Wine Test Shell"
 81 BEGIN
 82     CTEXT "This program extracts and runs a series of tests which check Wine's conformance to the Windows API.",
 83         IDC_STATIC, 10, 5, 130, 30
 84     DEFPUSHBUTTON "Close", IDCANCEL, 55, 40, 40, 14
 85 END
 86 
 87 /* @makedep: winetest.ico */
 88 IDI_WINE ICON "winetest.ico"

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.