-
Notifications
You must be signed in to change notification settings - Fork 3
/
History.lfm
189 lines (189 loc) · 4.26 KB
/
History.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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
object fHistory: TfHistory
Left = 242
Top = 107
HelpContext = 330
Caption = 'History'
ClientHeight = 430
ClientWidth = 582
Color = clBtnFace
Constraints.MinHeight = 335
Constraints.MinWidth = 430
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poDesigned
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
object pagHistory: TPageControl
Left = 0
Top = 0
Width = 582
Height = 430
ActivePage = tbsHistory
Align = alClient
TabOrder = 0
object tbsHistory: TTabSheet
Caption = 'History'
object lstHistory: TListView
Left = 0
Top = 0
Width = 574
Height = 402
Align = alClient
Columns = <>
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnColumnClick = lstHistoryColumnClick
OnCompare = lstHistoryCompare
end
end
object tbsRanking: TTabSheet
Caption = 'Ranking'
ImageIndex = 1
object grdRanking: TStringGrid
Left = 0
Top = 0
Width = 574
Height = 402
Align = alClient
ColCount = 4
DefaultColWidth = 100
DefaultRowHeight = 17
DefaultDrawing = False
FixedCols = 0
FixedRows = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine]
ScrollBars = ssVertical
TabOrder = 0
OnDrawCell = grdRankingDrawCell
ColumnClickSorts = True
OnCompareCells = GridCompareCells
end
end
object tbsCompare: TTabSheet
Caption = 'Compare'
ImageIndex = 2
object Label1: TLabel
Left = 5
Top = 10
Width = 38
Height = 13
Caption = 'Player 1'
end
object Label2: TLabel
Left = 260
Top = 10
Width = 38
Height = 13
Caption = 'Player 2'
end
object Label3: TLabel
Left = 190
Top = 20
Width = 32
Height = 13
Caption = 'Versus'
end
object Bevel1: TBevel
Left = 5
Top = 65
Width = 146
Height = 6
Shape = bsBottomLine
end
object Bevel2: TBevel
Left = 260
Top = 65
Width = 146
Height = 6
Shape = bsBottomLine
end
object cboPlayer1: TComboBox
Left = 5
Top = 25
Width = 145
Height = 21
Style = csDropDownList
Sorted = True
TabOrder = 0
end
object cboPlayer2: TComboBox
Left = 260
Top = 25
Width = 145
Height = 21
Style = csDropDownList
Sorted = True
TabOrder = 1
end
object cmdAnalyze: TBitBtn
Left = 170
Top = 55
Width = 75
Height = 25
Caption = 'Analyze'
TabOrder = 2
OnClick = cmdAnalyzeClick
end
object panAnalyze: TPanel
Left = 0
Top = 85
Width = 411
Height = 196
BevelOuter = bvNone
TabOrder = 3
object lblAnalyze: TLabel
Left = 41
Top = 21
Width = 321
Height = 13
Alignment = taCenter
AutoSize = False
Caption = 'Results of direct fights between P1 and P2'
end
object lblPlayer1: TLabel
Left = 41
Top = 71
Width = 321
Height = 13
AutoSize = False
Caption = 'P1 won X times (x%)'
end
object lblPlayer2: TLabel
Left = 41
Top = 91
Width = 321
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'P2 won X times (x%)'
end
object prbPlayer2: TProgressBar
Left = 366
Top = 6
Width = 36
Height = 176
Orientation = pbVertical
Position = 50
Smooth = True
TabOrder = 0
end
object prbPlayer1: TProgressBar
Left = 1
Top = 6
Width = 36
Height = 176
Orientation = pbVertical
Position = 50
Smooth = True
TabOrder = 1
end
end
end
end
end