-
Notifications
You must be signed in to change notification settings - Fork 3
/
SimRun.lfm
130 lines (130 loc) · 2.31 KB
/
SimRun.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
object fSimRun: TfSimRun
Left = 0
Top = 0
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Simulation progress'
ClientHeight = 442
ClientWidth = 534
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
PixelsPerInch = 96
object Label1: TLabel
Left = 8
Top = 13
Width = 38
Height = 13
Caption = 'Game #'
end
object Label2: TLabel
Left = 8
Top = 73
Width = 50
Height = 13
Caption = 'Game time'
end
object Label3: TLabel
Left = 8
Top = 43
Width = 60
Height = 13
Caption = 'Current turn'
end
object Label4: TLabel
Left = 8
Top = 103
Width = 71
Height = 13
Caption = 'Simulation time'
end
object Label5: TLabel
Left = 8
Top = 138
Width = 65
Height = 13
Caption = 'Simulation log'
end
object prbGames: TProgressBar
Left = 162
Top = 8
Width = 364
Height = 24
TabOrder = 0
end
object panGameNbr: TPanel
Left = 96
Top = 8
Width = 55
Height = 24
BevelOuter = bvLowered
Caption = '0'
TabOrder = 1
end
object cmdStop: TBitBtn
Left = 396
Top = 68
Width = 130
Height = 54
Caption = 'Stop simulation'
TabOrder = 2
OnClick = cmdStopClick
end
object panSimTime: TPanel
Left = 96
Top = 98
Width = 55
Height = 24
BevelOuter = bvLowered
Caption = '0'
TabOrder = 3
end
object txtSimLog: TMemo
Left = 8
Top = 157
Width = 518
Height = 274
TabStop = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
Lines.Strings = (
'txtSimLog')
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 4
end
object panTurn: TPanel
Left = 96
Top = 38
Width = 55
Height = 24
BevelOuter = bvLowered
Caption = '0'
TabOrder = 5
end
object panGameTime: TPanel
Left = 96
Top = 68
Width = 55
Height = 24
BevelOuter = bvLowered
Caption = '0'
TabOrder = 6
end
object cmdAbortGame: TBitBtn
Left = 260
Top = 68
Width = 130
Height = 54
Caption = 'Abort current game'
TabOrder = 7
OnClick = cmdAbortGameClick
end
end