-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlib_unit.lfm
More file actions
150 lines (150 loc) · 3.37 KB
/
lib_unit.lfm
File metadata and controls
150 lines (150 loc) · 3.37 KB
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
object lib_form: Tlib_form
Left = 60
Height = 743
Top = 230
Width = 218
BorderIcons = [biSystemMenu]
BorderStyle = bsSizeToolWin
Caption = ' library templates'
ClientHeight = 743
ClientWidth = 218
Color = 15852503
DesignTimePPI = 120
Font.Color = clWindowText
Font.Height = -18
Font.Name = 'Arial'
Font.Style = [fsBold]
OnCreate = FormCreate
OnDeactivate = FormDeactivate
OnResize = FormResize
OnShow = FormShow
LCLVersion = '3.4.0.0'
Scaled = False
object datestamp_label: TLabel
Left = 0
Height = 4
Top = 692
Width = 200
AutoSize = False
end
object empty_label: TLabel
Left = 16
Height = 81
Top = 36
Width = 153
Alignment = taCenter
AutoSize = False
Caption = 'there are no library templates in your storage box'
Font.Color = clWindowText
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
end
object lib_label: TLabel
Left = 0
Height = 56
Top = 558
Width = 198
AutoSize = False
Caption = 'Viewer shows all library templates currently in the storage box. Click one to copy it to the control.'
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
ParentFont = False
WordWrap = True
end
object count_label: TLabel
Left = 8
Height = 24
Top = 666
Width = 110
AutoSize = False
Caption = '0 templates'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Layout = tlBottom
ParentFont = False
end
object lib_listbox: TListBox
Cursor = crHandPoint
Left = 0
Height = 552
Top = 0
Width = 200
Color = 14745568
ItemHeight = 132
Style = lbOwnerDrawFixed
TabOrder = 1
Visible = False
OnClick = lib_listboxClick
OnDrawItem = lib_listboxDrawItem
OnMouseMove = lib_listboxMouseMove
end
object hide_panel: TPanel
Left = 130
Height = 26
Top = 666
Width = 70
Alignment = taLeftJustify
Caption = ' hide'
ClientHeight = 26
ClientWidth = 70
Color = clYellow
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 0
OnClick = hide_buttonClick
object hide_button: TButton
Left = 50
Height = 16
Top = 6
Width = 16
Cancel = True
Caption = ' '
TabOrder = 0
OnClick = hide_buttonClick
end
end
object group_to_library_button: TButton
Left = 0
Height = 23
Hint = ' copy the group templates and convert them to library templates '
Top = 610
Width = 166
Caption = 'copy group to library'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = group_to_library_buttonClick
end
object store_control_button: TButton
Left = 0
Height = 23
Hint = ' store the control template as a library template '
Top = 640
Width = 124
Caption = 'store as library'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = store_control_buttonClick
end
end