source: trunk/Forms/FormMove.lfm

Last change on this file was 317, checked in by chronos, 6 months ago
  • Modified: Remove U prefix from unit names.
  • Modified: Use TFormEx for all forms for code simplification.
File size: 3.3 KB
Line 
1object FormMove: TFormMove
2 Left = 1104
3 Height = 278
4 Top = 604
5 Width = 421
6 ActiveControl = ButtonOk
7 Caption = 'Move'
8 ClientHeight = 278
9 ClientWidth = 421
10 Constraints.MinHeight = 278
11 Constraints.MinWidth = 421
12 DesignTimePPI = 144
13 OnKeyPress = FormKeyPress
14 OnShow = FormShow
15 Position = poMainFormCenter
16 LCLVersion = '3.4.0.0'
17 object SpinEditOnce: TSpinEdit
18 Left = 208
19 Height = 43
20 Top = 40
21 Width = 98
22 OnChange = SpinEditOnceChange
23 OnKeyPress = FormKeyPress
24 ParentFont = False
25 TabOrder = 0
26 end
27 object Label1: TLabel
28 Left = 16
29 Height = 26
30 Top = 40
31 Width = 49
32 Caption = 'Once:'
33 ParentColor = False
34 ParentFont = False
35 end
36 object ButtonOk: TButton
37 Left = 296
38 Height = 38
39 Top = 224
40 Width = 100
41 Caption = 'Ok'
42 Default = True
43 ModalResult = 1
44 ParentFont = False
45 TabOrder = 1
46 end
47 object ButtonCancel: TButton
48 Left = 176
49 Height = 38
50 Top = 224
51 Width = 100
52 Caption = 'Cancel'
53 ModalResult = 2
54 ParentFont = False
55 TabOrder = 2
56 end
57 object Label2: TLabel
58 Left = 24
59 Height = 26
60 Top = 136
61 Width = 90
62 Caption = 'Every turn:'
63 ParentColor = False
64 ParentFont = False
65 end
66 object SpinEditRepeat: TSpinEdit
67 Left = 208
68 Height = 43
69 Top = 128
70 Width = 98
71 OnChange = SpinEditRepeatChange
72 OnKeyPress = FormKeyPress
73 ParentFont = False
74 TabOrder = 3
75 end
76 object TrackBarOnce: TTrackBar
77 Left = 88
78 Height = 58
79 Top = 80
80 Width = 245
81 OnChange = TrackBarOnceChange
82 PageSize = 1
83 Position = 0
84 TickStyle = tsNone
85 Anchors = [akTop, akLeft, akRight]
86 OnKeyPress = FormKeyPress
87 ParentFont = False
88 TabOrder = 4
89 end
90 object TrackBarRepeat: TTrackBar
91 Left = 96
92 Height = 58
93 Top = 168
94 Width = 231
95 OnChange = TrackBarRepeatChange
96 PageSize = 1
97 Position = 0
98 TickStyle = tsNone
99 Anchors = [akTop, akLeft, akRight]
100 OnKeyPress = FormKeyPress
101 ParentFont = False
102 TabOrder = 5
103 end
104 object ButtonOnceMin: TButton
105 Left = 8
106 Height = 38
107 Top = 88
108 Width = 80
109 Caption = 'Min'
110 ParentFont = False
111 TabOrder = 6
112 OnClick = ButtonOnceMinClick
113 end
114 object ButtonOnceMax: TButton
115 Left = 333
116 Height = 38
117 Top = 88
118 Width = 80
119 Anchors = [akTop, akRight]
120 Caption = 'Max'
121 ParentFont = False
122 TabOrder = 7
123 OnClick = ButtonOnceMaxClick
124 end
125 object ButtonRepeatMin: TButton
126 Left = 8
127 Height = 38
128 Top = 176
129 Width = 80
130 Caption = 'Min'
131 ParentFont = False
132 TabOrder = 8
133 OnClick = ButtonRepeatMinClick
134 end
135 object ButtonRepeatMax: TButton
136 Left = 333
137 Height = 38
138 Top = 176
139 Width = 80
140 Anchors = [akTop, akRight]
141 Caption = 'Max'
142 ParentFont = False
143 TabOrder = 9
144 OnClick = ButtonRepeatMaxClick
145 end
146 object Label3: TLabel
147 Left = 16
148 Height = 26
149 Top = 8
150 Width = 134
151 Caption = 'Win probability:'
152 ParentColor = False
153 ParentFont = False
154 end
155 object LabelWinProbability: TLabel
156 Left = 264
157 Height = 26
158 Top = 8
159 Width = 15
160 Caption = ' '
161 ParentColor = False
162 ParentFont = False
163 end
164 object ButtonRemove: TButton
165 Left = 48
166 Height = 38
167 Top = 224
168 Width = 100
169 Caption = 'Delete'
170 ParentFont = False
171 TabOrder = 10
172 OnClick = ButtonRemoveClick
173 end
174end
Note: See TracBrowser for help on using the repository browser.