-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoption.dfm
148 lines (148 loc) · 2.84 KB
/
option.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
object FormOptions: TFormOptions
Left = 328
Top = 108
BorderStyle = bsDialog
Caption = 'Options'
ClientHeight = 151
ClientWidth = 411
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnKeyPress = FormKeyPress
PixelsPerInch = 96
TextHeight = 13
object BevelPref: TBevel
Left = 5
Top = 10
Width = 196
Height = 101
Shape = bsFrame
end
object LabelPref: TLabel
Left = 10
Top = 4
Width = 63
Height = 13
Caption = ' Preferences '
end
object LabelInitFirst: TLabel
Left = 35
Top = 65
Width = 119
Height = 13
Caption = 'Initial &first card pair value:'
FocusControl = EditInitFirst
end
object BevelNames: TBevel
Left = 210
Top = 10
Width = 196
Height = 101
Shape = bsFrame
end
object LabelNames: TLabel
Left = 215
Top = 4
Width = 71
Height = 13
Caption = ' Player Names '
end
object LabelPlayer2: TLabel
Left = 220
Top = 30
Width = 41
Height = 13
Caption = 'Player &2:'
FocusControl = EditPlayer2
end
object LabelPlayer3: TLabel
Left = 220
Top = 55
Width = 41
Height = 13
Caption = 'Player &3:'
FocusControl = EditPlayer3
end
object LabelPlayer4: TLabel
Left = 220
Top = 80
Width = 41
Height = 13
Caption = 'Player &4:'
FocusControl = EditPlayer4
end
object cbPassCard: TCheckBox
Left = 15
Top = 25
Width = 126
Height = 17
Caption = '&Passing card required.'
TabOrder = 0
end
object cbIncFirst: TCheckBox
Left = 15
Top = 45
Width = 156
Height = 17
Caption = '&Increase first card pair value.'
TabOrder = 1
OnClick = cbIncFirstClick
end
object EditPlayer2: TEdit
Left = 275
Top = 25
Width = 121
Height = 21
TabOrder = 2
end
object EditPlayer3: TEdit
Left = 275
Top = 50
Width = 121
Height = 21
TabOrder = 3
end
object EditPlayer4: TEdit
Left = 275
Top = 75
Width = 121
Height = 21
TabOrder = 4
end
object ButtonOK: TButton
Left = 330
Top = 120
Width = 76
Height = 26
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 5
OnClick = ButtonOKClick
end
object ButtonCancel: TButton
Left = 245
Top = 120
Width = 76
Height = 26
Caption = 'Cancel'
ModalResult = 2
TabOrder = 6
end
object EditInitFirst: TMaskEdit
Left = 35
Top = 80
Width = 41
Height = 21
EditMask = '9;0; '
MaxLength = 1
TabOrder = 7
end
end