source: trunk/Forms/UFormNew.lfm

Last change on this file was 79, checked in by chronos, 3 years ago
  • Added: Toggle full screen mode (F11) from View main menu.
  • Modified: Updated Common package files.
File size: 1.7 KB
Line 
1object FormNew: TFormNew
2 Left = 703
3 Height = 266
4 Top = 694
5 Width = 501
6 Caption = 'New game'
7 ClientHeight = 266
8 ClientWidth = 501
9 DesignTimePPI = 144
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 LCLVersion = '2.0.10.0'
14 object Label1: TLabel
15 Left = 16
16 Height = 24
17 Top = 16
18 Width = 93
19 Caption = 'Board size:'
20 ParentColor = False
21 end
22 object ComboBoxSize: TComboBox
23 Left = 173
24 Height = 38
25 Top = 11
26 Width = 262
27 ItemHeight = 0
28 Items.Strings = (
29 '2 x 2'
30 '3 x 3'
31 '4 x 4'
32 '5 x 5'
33 '6 x 6'
34 '7 x 7'
35 '8 x 8'
36 '9 x 9'
37 '10 x 10 '
38 '11 x 11'
39 '12 x 12'
40 )
41 Style = csDropDownList
42 TabOrder = 0
43 end
44 object ButtonCancel: TButton
45 Left = 120
46 Height = 38
47 Top = 212
48 Width = 113
49 Anchors = [akLeft, akBottom]
50 Caption = 'Cancel'
51 ModalResult = 2
52 TabOrder = 1
53 end
54 object ButtonOk: TButton
55 Left = 280
56 Height = 38
57 Top = 212
58 Width = 113
59 Anchors = [akLeft, akBottom]
60 Caption = 'OK'
61 ModalResult = 1
62 TabOrder = 2
63 end
64 object CheckBoxUndoEnabled: TCheckBox
65 Left = 16
66 Height = 30
67 Top = 56
68 Width = 145
69 Caption = 'Undo enabled'
70 TabOrder = 3
71 end
72 object CheckBoxRecordHistory: TCheckBox
73 Left = 16
74 Height = 30
75 Top = 88
76 Width = 209
77 Caption = 'Record moves history'
78 TabOrder = 4
79 end
80 object Label2: TLabel
81 Left = 16
82 Height = 24
83 Top = 125
84 Width = 75
85 Caption = 'Tile skin:'
86 ParentColor = False
87 end
88 object ComboBoxSkin: TComboBox
89 Left = 173
90 Height = 37
91 Top = 120
92 Width = 262
93 ItemHeight = 0
94 Items.Strings = (
95 ''
96 )
97 Style = csDropDownList
98 TabOrder = 5
99 end
100end
Note: See TracBrowser for help on using the repository browser.