-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPlayers.lfm
120 lines (120 loc) · 2.11 KB
/
Players.lfm
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
object fPlayers: TfPlayers
Left = 220
Top = 107
HelpContext = 410
BorderStyle = bsDialog
Caption = 'Players'
ClientHeight = 362
ClientWidth = 191
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
object lblName: TLabel
Left = 5
Top = 80
Width = 28
Height = 13
Caption = 'Name'
end
object Label3: TLabel
Left = 5
Top = 120
Width = 24
Height = 13
Caption = 'Color'
end
object cboPrgFile: TEdit
Left = 5
Top = 95
Width = 160
Height = 21
TabOrder = 5
OnClick = cboPrgFileCustomDlg
end
object cboPrgFileSelect: TButton
Left = 165
Top = 95
Height = 37
Width = 21
TabOrder = 5
Caption = '...'
OnClick = cboPrgFileCustomDlg
end
object txtName: TEdit
Left = 5
Top = 95
Width = 181
Height = 21
MaxLength = 15
TabOrder = 0
end
object optTipo: TRadioGroup
Left = 5
Top = 5
Width = 181
Height = 71
Caption = 'Type'
Items.Strings = (
'Human'
'Computer'
)
TabOrder = 1
OnClick = optTipoClick
end
object cmdOK: TBitBtn
Left = 8
Top = 310
Width = 76
Height = 40
Kind = bkOK
TabOrder = 4
OnClick = cmdOKClick
end
object optCarte: TRadioGroup
Left = 5
Top = 170
Width = 181
Height = 96
Caption = 'Cards handling'
Items.Strings = (
'Manual'
'Smart'
'Full auto'
)
TabOrder = 2
end
object chkLog: TCheckBox
Left = 5
Top = 275
Width = 148
Height = 17
Caption = 'Keep log'
TabOrder = 3
end
object cboColor: TColorBox
Left = 5
Top = 135
Width = 181
Height = 22
DefaultColorColor = clRed
Selected = clRed
Style = [cbStandardColors, cbExtendedColors, cbPrettyNames]
TabOrder = 6
OnChange = cboColorChange
end
object BitBtn1: TBitBtn
Left = 105
Top = 310
Width = 76
Height = 40
Kind = bkCancel
TabOrder = 7
OnClick = cmdCancel
end
end