source: trunk/Forms/FormSettings.lfm

Last change on this file was 325, checked in by chronos, 6 months ago
  • Fixed: Size of buttons was too small in some cases.
File size: 5.4 KB
Line 
1object FormSettings: TFormSettings
2 Left = 851
3 Height = 613
4 Top = 413
5 Width = 857
6 ActiveControl = ButtonOk
7 Caption = 'Settings'
8 ClientHeight = 613
9 ClientWidth = 857
10 Constraints.MinHeight = 300
11 Constraints.MinWidth = 454
12 DesignTimePPI = 144
13 OnCreate = FormCreate
14 OnShow = FormShow
15 Position = poMainFormCenter
16 LCLVersion = '3.4.0.0'
17 object ButtonOk: TButton
18 Left = 735
19 Height = 38
20 Top = 568
21 Width = 114
22 Anchors = [akRight, akBottom]
23 Caption = 'Ok'
24 ModalResult = 1
25 ParentFont = False
26 TabOrder = 0
27 end
28 object ButtonCancel: TButton
29 Left = 600
30 Height = 38
31 Top = 568
32 Width = 114
33 Anchors = [akRight, akBottom]
34 Caption = 'Cancel'
35 ModalResult = 2
36 ParentFont = False
37 TabOrder = 1
38 end
39 object PageControl1: TPageControl
40 Left = 8
41 Height = 552
42 Top = 8
43 Width = 841
44 ActivePage = TabSheetGeneral
45 Align = alTop
46 Anchors = [akTop, akLeft, akRight, akBottom]
47 BorderSpacing.Around = 8
48 ParentFont = False
49 TabIndex = 0
50 TabOrder = 2
51 object TabSheetGeneral: TTabSheet
52 Caption = 'General'
53 ClientHeight = 512
54 ClientWidth = 831
55 ParentFont = False
56 object Panel1: TPanel
57 Left = 0
58 Height = 512
59 Top = 0
60 Width = 831
61 Align = alClient
62 BevelOuter = bvNone
63 ClientHeight = 512
64 ClientWidth = 831
65 ParentFont = False
66 TabOrder = 0
67 object Label1: TLabel
68 Left = 20
69 Height = 26
70 Top = 32
71 Width = 88
72 Caption = 'Language:'
73 ParentColor = False
74 ParentFont = False
75 end
76 object ComboBoxLanguage: TComboBox
77 Left = 178
78 Height = 42
79 Top = 24
80 Width = 196
81 ItemHeight = 0
82 ParentFont = False
83 Style = csDropDownList
84 TabOrder = 0
85 end
86 object ComboBoxTheme: TComboBox
87 Left = 176
88 Height = 42
89 Top = 72
90 Width = 196
91 ItemHeight = 0
92 ParentFont = False
93 Style = csDropDownList
94 TabOrder = 1
95 end
96 object Label6: TLabel
97 Left = 20
98 Height = 26
99 Top = 80
100 Width = 63
101 Caption = 'Theme:'
102 ParentColor = False
103 ParentFont = False
104 end
105 object SpinEditAnimSpeed: TSpinEdit
106 Left = 232
107 Height = 43
108 Top = 120
109 Width = 122
110 ParentFont = False
111 TabOrder = 2
112 end
113 object Label3: TLabel
114 Left = 368
115 Height = 26
116 Top = 124
117 Width = 15
118 Caption = '%'
119 ParentColor = False
120 ParentFont = False
121 end
122 object Label2: TLabel
123 Left = 20
124 Height = 26
125 Top = 120
126 Width = 149
127 Caption = 'Animation speed:'
128 ParentColor = False
129 ParentFont = False
130 end
131 object CheckBoxAutoSaveTurn: TCheckBox
132 Left = 20
133 Height = 30
134 Top = 154
135 Width = 269
136 Caption = 'Autosave game on each turn'
137 ParentFont = False
138 TabOrder = 3
139 end
140 object CheckBoxReopenLastFile: TCheckBox
141 Left = 20
142 Height = 30
143 Top = 194
144 Width = 248
145 Caption = 'Reopen last game on start'
146 ParentFont = False
147 TabOrder = 4
148 end
149 end
150 end
151 object TabSheetDebug: TTabSheet
152 Caption = 'Debug'
153 ClientHeight = 512
154 ClientWidth = 831
155 ParentFont = False
156 object Panel2: TPanel
157 Left = 0
158 Height = 512
159 Top = 0
160 Width = 831
161 Align = alClient
162 BevelOuter = bvNone
163 ClientHeight = 512
164 ClientWidth = 831
165 ParentFont = False
166 TabOrder = 0
167 object CheckBox2: TCheckBox
168 Left = 16
169 Height = 24
170 Top = 32
171 Width = 799
172 Anchors = [akTop, akLeft, akRight]
173 AutoSize = False
174 Caption = 'Automatic DPI'
175 ParentFont = False
176 TabOrder = 0
177 OnChange = CheckBox2Change
178 end
179 object Label4: TLabel
180 Left = 14
181 Height = 26
182 Top = 67
183 Width = 35
184 Caption = 'DPI:'
185 ParentColor = False
186 ParentFont = False
187 end
188 object SpinEditX: TSpinEdit
189 Left = 104
190 Height = 43
191 Top = 64
192 Width = 96
193 MaxValue = 500
194 MinValue = 20
195 ParentFont = False
196 TabOrder = 1
197 Value = 50
198 end
199 object Label5: TLabel
200 Left = 208
201 Height = 26
202 Top = 67
203 Width = 10
204 Caption = 'x'
205 ParentColor = False
206 ParentFont = False
207 end
208 object SpinEditY: TSpinEdit
209 Left = 232
210 Height = 43
211 Top = 64
212 Width = 90
213 MaxValue = 500
214 MinValue = 20
215 ParentFont = False
216 TabOrder = 2
217 Value = 20
218 end
219 object CheckBoxDevelMode: TCheckBox
220 Left = 16
221 Height = 26
222 Top = 136
223 Width = 803
224 Anchors = [akTop, akLeft, akRight]
225 AutoSize = False
226 Caption = 'Developer mode'
227 ParentFont = False
228 TabOrder = 3
229 end
230 end
231 end
232 end
233end
Note: See TracBrowser for help on using the repository browser.