-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitFavorites.dfm
93 lines (93 loc) · 2.04 KB
/
UnitFavorites.dfm
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
object FrameFavorites: TFrameFavorites
Left = 0
Top = 0
Width = 1112
Height = 648
Align = alClient
TabOrder = 0
object PanelLeft: TPanel
Left = 0
Top = 0
Width = 392
Height = 648
Align = alLeft
BevelOuter = bvNone
TabOrder = 0
object PanelListActions: TPanel
Left = 0
Top = 616
Width = 392
Height = 32
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
object ButtonAlphaSort: TButton
Left = 0
Top = 8
Width = 72
Height = 24
Caption = 'Alphasort'
TabOrder = 0
OnClick = ButtonAlphaSortClick
end
object ButtonDelete: TButton
Left = 80
Top = 8
Width = 72
Height = 24
Caption = 'Remove'
TabOrder = 1
OnClick = ButtonDeleteClick
end
end
object ListViewFiles: TListView
Left = 0
Top = 0
Width = 392
Height = 616
Align = alClient
BorderStyle = bsNone
Columns = <
item
AutoSize = True
end>
DoubleBuffered = True
DragMode = dmAutomatic
MultiSelect = True
ReadOnly = True
RowSelect = True
ParentDoubleBuffered = False
ShowColumnHeaders = False
TabOrder = 0
ViewStyle = vsReport
OnDeletion = ListViewFilesDeletion
OnDragDrop = ListViewFilesDragDrop
OnDragOver = ListViewFilesDragOver
OnKeyDown = ListViewFilesKeyDown
OnSelectItem = ListViewFilesSelectItem
OnStartDrag = ListViewFilesStartDrag
end
end
object PanelSpacer: TPanel
Left = 392
Top = 0
Width = 8
Height = 648
Align = alLeft
BevelOuter = bvNone
TabOrder = 1
end
object TimerLazyLoad: TTimer
Interval = 1
OnTimer = TimerLazyLoadTimer
Left = 184
Top = 392
end
object TimerDnDScroll: TTimer
Enabled = False
Interval = 100
OnTimer = TimerDnDScrollTimer
Left = 288
Top = 392
end
end