forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
colsetup.lfm
82 lines (82 loc) · 1.84 KB
/
colsetup.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
inherited ColSetupForm: TColSetupForm
Left = 401
Height = 326
Top = 193
Width = 355
HorzScrollBar.Page = 399
VertScrollBar.Page = 299
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Columns setup'
ClientHeight = 326
ClientWidth = 355
Constraints.MinHeight = 200
Constraints.MinWidth = 260
OnCreate = FormCreate
Position = poMainFormCenter
object Buttons: TButtonPanel[0]
Left = 8
Height = 36
Top = 282
Width = 339
BorderSpacing.Left = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
BorderSpacing.Around = 0
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 1
Spacing = 8
ShowButtons = [pbOK, pbCancel]
end
object Panel1: TPanel[1]
Left = 8
Height = 266
Top = 8
Width = 339
Align = alClient
BorderSpacing.Around = 8
BevelOuter = bvNone
ClientHeight = 266
ClientWidth = 339
TabOrder = 0
object lstColumns: TCheckListBox
Left = 0
Height = 266
Top = 0
Width = 256
Anchors = [akTop, akLeft, akRight, akBottom]
ItemHeight = 0
OnClick = lstColumnsClick
OnClickCheck = lstColumnsClickCheck
TabOrder = 0
end
object btUp: TButton
Left = 264
Height = 23
Top = 0
Width = 75
Anchors = [akTop, akRight]
Caption = 'Up'
OnClick = btUpClick
TabOrder = 1
end
object btDown: TButton
Left = 264
Height = 23
Top = 28
Width = 75
Anchors = [akTop, akRight]
Caption = 'Down'
OnClick = btDownClick
TabOrder = 2
end
end
end