set eol-style for XML files in rosapps
[reactos.git] / rosapps / games / winemine / winemine.rc
1 /*
2 * WineMine (rsrc.rc)
3 *
4 * Copyright 2000 Joshua Thielen <jt85296@ltu.edu>
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include <windows.h>
22 #include "resource.h"
23
24 IDI_WINEMINE ICON MOVEABLE "rc/winemine.ico"
25
26 IDB_FACES BITMAP MOVEABLE "rc/faces.bmp"
27
28 IDB_LEDS BITMAP MOVEABLE "rc/leds.bmp"
29
30 IDB_MINES BITMAP MOVEABLE "rc/mines.bmp"
31
32 /* English-US Resources */
33 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
34
35 STRINGTABLE {
36 IDS_APPNAME, "WineMine"
37
38 }
39
40 MENU_WINEMINE MENU DISCARDABLE
41 {
42 POPUP "&Options" {
43 MENUITEM "&New", IDM_NEW
44 MENUITEM SEPARATOR
45 MENUITEM "&Mark Question", IDM_MARKQ
46 MENUITEM SEPARATOR
47 MENUITEM "&Beginner", IDM_BEGINNER
48 MENUITEM "&Advanced", IDM_ADVANCED
49 MENUITEM "&Expert", IDM_EXPERT
50 MENUITEM "&Custom", IDM_CUSTOM
51 MENUITEM SEPARATOR
52 MENUITEM "E&xit", IDM_EXIT
53 }
54 POPUP "&Info" {
55 MENUITEM "&Fastest Times", IDM_TIMES
56 MENUITEM "&About", IDM_ABOUT
57 }
58 }
59
60 DLG_TIMES DIALOG DISCARDABLE 0, 0, 160, 80
61 STYLE DS_MODALFRAME | DS_3DLOOK |
62 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
63 CAPTION "Fastest Times"
64 {
65 GROUPBOX "Fastest Times", IDIGNORE, 10, 10, 140, 45
66 LTEXT "Beginner", IDIGNORE, 20, 20, 40, 8
67 LTEXT "Advanced", IDIGNORE, 20, 30, 40, 8
68 LTEXT "Expert", IDIGNORE, 20, 40, 40, 8
69 LTEXT "999", IDC_TIME1, 70, 20, 15, 8
70 LTEXT "999", IDC_TIME2, 70, 30, 15, 8
71 LTEXT "999", IDC_TIME3, 70, 40, 15, 8
72 LTEXT "", IDC_NAME1, 90, 20, 55, 8
73 LTEXT "", IDC_NAME2, 90, 30, 55, 8
74 LTEXT "", IDC_NAME3, 90, 40, 55, 8
75 DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
76 }
77
78 DLG_CONGRATS DIALOG DISCARDABLE 0, 0, 160, 60
79 STYLE DS_MODALFRAME | DS_3DLOOK |
80 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
81 CAPTION "Congratulations!"
82 {
83 LTEXT "Please enter your name", IDIGNORE, 10, 10, 150, 10
84 EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
85 DEFPUSHBUTTON "Ok", IDOK, 60, 40, 40, 15
86 }
87
88 DLG_CUSTOM DIALOG DISCARDABLE 0, 0, 100, 100
89 STYLE DS_MODALFRAME | DS_3DLOOK |
90 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
91 CAPTION "Custom Game"
92 {
93 LTEXT "Rows", IDIGNORE, 5, 5, 30, 10
94 LTEXT "Cols", IDIGNORE, 5, 35, 30, 10
95 LTEXT "Mines", IDIGNORE, 5, 65, 30, 10
96 EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
97 EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
98 EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
99 DEFPUSHBUTTON "Ok", IDOK, 40, 30, 50, 15
100 PUSHBUTTON "Cancel", IDCANCEL, 40, 50, 50, 15
101 }
102
103 DLG_ABOUT DIALOG DISCARDABLE 0, 0, 145, 80
104 STYLE DS_MODALFRAME | DS_3DLOOK |
105 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
106 CAPTION "About"
107 {
108 LTEXT "Winemine", IDIGNORE, 10, 10, 35, 10
109 LTEXT "Copyright 2000, Joshua Thielen", IDIGNORE, 35, 25, 100, 10
110 LTEXT "under the Wine license", IDIGNORE, 35, 35, 100, 10
111 ICON "WINEMINE", IDIGNORE, 10, 25, 20, 20
112 DEFPUSHBUTTON "Ok", IDOK, 50, 60, 55, 15
113 }
114
115 /* End of English-US Resources */