File: anchordockoptionsdlg.lfm

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (404 lines) | stat: -rw-r--r-- 10,642 bytes parent folder | download | duplicates (3)
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
object AnchorDockOptionsFrame: TAnchorDockOptionsFrame
  Left = 0
  Height = 842
  Top = 0
  Width = 636
  ClientHeight = 842
  ClientWidth = 636
  DesignTimePPI = 144
  ParentFont = False
  TabOrder = 0
  DesignLeft = 517
  DesignTop = 239
  object DragThresholdLabel: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = DragThresholdSpinEdit
    AnchorSideTop.Side = asrCenter
    Left = 15
    Height = 25
    Top = 13
    Width = 158
    BorderSpacing.Left = 15
    BorderSpacing.Top = 15
    Caption = 'DragThresholdLabel'
    ParentColor = False
    ParentFont = False
  end
  object DragThresholdTrackBar: TTrackBar
    AnchorSideLeft.Control = DragThresholdLabel
    AnchorSideTop.Control = DragThresholdLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 15
    Height = 70
    Top = 38
    Width = 606
    Max = 20
    OnChange = DragThresholdTrackBarChange
    Position = 0
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Right = 15
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 1
  end
  object DragThresholdSpinEdit: TSpinEdit
    AnchorSideLeft.Control = DragThresholdLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = Owner
    AnchorSideRight.Control = Owner
    Left = 182
    Height = 33
    Top = 9
    Width = 90
    BorderSpacing.Left = 9
    BorderSpacing.Top = 9
    MaxValue = 20
    ParentFont = False
    TabOrder = 0
    Visible = False
  end
  object SplitterWidthLabel: TLabel
    AnchorSideLeft.Control = DragThresholdLabel
    AnchorSideTop.Control = DragThresholdTrackBar
    AnchorSideTop.Side = asrBottom
    Left = 15
    Height = 25
    Top = 123
    Width = 145
    BorderSpacing.Top = 15
    Caption = 'SplitterWidthLabel'
    ParentColor = False
    ParentFont = False
  end
  object SplitterWidthTrackBar: TTrackBar
    AnchorSideLeft.Control = DragThresholdTrackBar
    AnchorSideTop.Control = SplitterWidthLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = DragThresholdTrackBar
    AnchorSideRight.Side = asrBottom
    Left = 15
    Height = 70
    Top = 148
    Width = 606
    Min = 1
    OnChange = SplitterWidthTrackBarChange
    Position = 1
    Anchors = [akTop, akLeft, akRight]
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 3
  end
  object ScaleOnResizeCheckBox: TCheckBox
    AnchorSideLeft.Control = DragThresholdLabel
    AnchorSideTop.Control = SplitterWidthTrackBar
    AnchorSideTop.Side = asrBottom
    Left = 15
    Height = 29
    Top = 224
    Width = 214
    BorderSpacing.Top = 6
    Caption = 'ScaleOnResizeCheckBox'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 4
  end
  object ShowHeaderCheckBox: TCheckBox
    AnchorSideLeft.Control = ScaleOnResizeCheckBox
    AnchorSideTop.Control = ScaleOnResizeCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 15
    Height = 29
    Top = 253
    Width = 202
    Caption = 'ShowHeaderCheckBox'
    OnChange = ShowHeaderCheckBoxChange
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 5
  end
  object ShowHeaderCaptionCheckBox: TCheckBox
    AnchorSideLeft.Control = ScaleOnResizeCheckBox
    AnchorSideTop.Control = ShowHeaderCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 37
    Height = 29
    Top = 282
    Width = 264
    BorderSpacing.Left = 22
    Caption = 'ShowHeaderCaptionCheckBox'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 6
  end
  object HideHeaderCaptionForFloatingCheckBox: TCheckBox
    AnchorSideLeft.Control = ShowHeaderCaptionCheckBox
    AnchorSideTop.Control = ShowHeaderCaptionCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 37
    Height = 29
    Top = 311
    Width = 347
    Caption = 'HideHeaderCaptionForFloatingCheckBox'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 7
  end
  object HeaderStyleComboBox: TComboBox
    AnchorSideLeft.Control = HeaderStyleLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = FilledHeadersCheckBox
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 174
    Height = 33
    Top = 398
    Width = 447
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 9
    BorderSpacing.Right = 15
    ItemHeight = 25
    OnDrawItem = HeaderStyleComboBoxDrawItem
    ParentFont = False
    Style = csDropDownList
    TabOrder = 10
  end
  object HeaderStyleLabel: TLabel
    AnchorSideLeft.Control = ShowHeaderCheckBox
    AnchorSideTop.Control = HeaderStyleComboBox
    AnchorSideTop.Side = asrCenter
    Left = 30
    Height = 25
    Top = 402
    Width = 135
    BorderSpacing.Left = 15
    Caption = 'HeaderStyleLabel'
    ParentColor = False
    ParentFont = False
  end
  object FlattenHeadersCheckBox: TCheckBox
    AnchorSideLeft.Control = HideHeaderCaptionForFloatingCheckBox
    AnchorSideTop.Control = HideHeaderCaptionForFloatingCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 37
    Height = 29
    Top = 340
    Width = 219
    Caption = 'FlattenHeadersCheckBox'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 8
  end
  object FilledHeadersCheckBox: TCheckBox
    AnchorSideLeft.Control = FlattenHeadersCheckBox
    AnchorSideTop.Control = FlattenHeadersCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 37
    Height = 29
    Top = 369
    Width = 207
    Caption = 'FilledHeadersCheckBox'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 9
  end
  object HighlightFocusedCheckBox: TCheckBox
    AnchorSideLeft.Control = FilledHeadersCheckBox
    AnchorSideTop.Control = HeaderStyleComboBox
    AnchorSideTop.Side = asrBottom
    Left = 37
    Height = 29
    Top = 431
    Width = 240
    Caption = 'HighlightFocusedCheckBox'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 11
  end
  object SplitterWidthSpinEdit: TSpinEdit
    AnchorSideLeft.Control = SplitterWidthLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = SplitterWidthLabel
    AnchorSideTop.Side = asrCenter
    Left = 169
    Height = 33
    Top = 119
    Width = 90
    BorderSpacing.Left = 9
    MaxValue = 10
    MinValue = 1
    ParentFont = False
    TabOrder = 2
    Value = 1
    Visible = False
  end
  object HeaderAlignTopLabel: TLabel
    AnchorSideLeft.Control = DragThresholdLabel
    AnchorSideTop.Control = FlatHeadersButtons
    AnchorSideTop.Side = asrBottom
    Left = 15
    Height = 25
    Top = 533
    Width = 168
    BorderSpacing.Top = 15
    Caption = 'HeaderAlignTopLabel'
    ParentColor = False
    ParentFont = False
  end
  object HeaderAlignTopTrackBar: TTrackBar
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = HeaderAlignTopLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = DragThresholdTrackBar
    AnchorSideRight.Side = asrBottom
    Left = 15
    Height = 70
    Top = 558
    Width = 606
    Frequency = 10
    Max = 150
    OnChange = HeaderAlignTopTrackBarChange
    PageSize = 10
    Position = 0
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 15
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 13
  end
  object HeaderAlignTopSpinEdit: TSpinEdit
    AnchorSideLeft.Control = HeaderAlignTopLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = HeaderAlignTopLabel
    AnchorSideTop.Side = asrCenter
    Left = 192
    Height = 33
    Top = 529
    Width = 90
    BorderSpacing.Left = 9
    MaxValue = 150
    ParentFont = False
    TabOrder = 12
    Visible = False
  end
  object HeaderAlignLeftLabel: TLabel
    AnchorSideLeft.Control = DragThresholdLabel
    AnchorSideTop.Control = HeaderAlignTopTrackBar
    AnchorSideTop.Side = asrBottom
    Left = 15
    Height = 25
    Top = 643
    Width = 168
    BorderSpacing.Top = 15
    Caption = 'HeaderAlignLeftLabel'
    ParentColor = False
    ParentFont = False
  end
  object HeaderAlignLeftTrackBar: TTrackBar
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = HeaderAlignLeftLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = DragThresholdTrackBar
    AnchorSideRight.Side = asrBottom
    Left = 15
    Height = 70
    Top = 668
    Width = 606
    Frequency = 10
    Max = 200
    OnChange = HeaderAlignLeftTrackBarChange
    PageSize = 10
    Position = 0
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 15
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 15
  end
  object HeaderAlignLeftSpinEdit: TSpinEdit
    AnchorSideLeft.Control = HeaderAlignLeftLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = HeaderAlignLeftLabel
    AnchorSideTop.Side = asrCenter
    Left = 192
    Height = 33
    Top = 639
    Width = 90
    BorderSpacing.Left = 9
    MaxValue = 200
    ParentFont = False
    TabOrder = 14
    Visible = False
  end
  object DockSitesCanBeMinimized: TCheckBox
    AnchorSideLeft.Control = FilledHeadersCheckBox
    AnchorSideTop.Control = HighlightFocusedCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 37
    Height = 29
    Top = 460
    Width = 234
    Caption = 'DockSitesCanBeMinimized'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 16
  end
  object MultiLinePagesCheckBox: TCheckBox
    AnchorSideLeft.Control = ShowHeaderCheckBox
    AnchorSideTop.Control = HeaderAlignLeftTrackBar
    AnchorSideTop.Side = asrBottom
    Left = 15
    Height = 29
    Top = 744
    Width = 219
    BorderSpacing.Top = 6
    Caption = 'MultiLinePagesCheckBox'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 17
  end
  object FloatingWindowsOnTop: TCheckBox
    AnchorSideLeft.Control = DragThresholdLabel
    AnchorSideTop.Control = MultiLinePagesCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 15
    Height = 29
    Top = 779
    Width = 218
    BorderSpacing.Top = 6
    Caption = 'FloatingWindowsOnTop'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 18
  end
  object FlatHeadersButtons: TCheckBox
    AnchorSideLeft.Control = FilledHeadersCheckBox
    AnchorSideTop.Control = DockSitesCanBeMinimized
    AnchorSideTop.Side = asrBottom
    Left = 37
    Height = 29
    Top = 489
    Width = 179
    Caption = 'FlatHeadersButtons'
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 19
  end
end