-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPropertyCat.lfm
102 lines (102 loc) · 1.95 KB
/
PropertyCat.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
object frmPropertyCat: TfrmPropertyCat
Left = 0
Height = 160
Top = 0
Width = 281
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Properties'
ClientHeight = 160
ClientWidth = 281
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnCloseQuery = FormCloseQuery
Position = poMainFormCenter
LCLVersion = '1.0.6.0'
object btnCancel: TButton
Left = 198
Height = 25
Top = 127
Width = 75
Caption = 'Cancel'
ModalResult = 2
OnClick = btnCancelClick
TabOrder = 2
end
object btnOk: TButton
Left = 119
Height = 25
Top = 127
Width = 75
Caption = 'Ok'
Default = True
ModalResult = 1
OnClick = btnOkClick
TabOrder = 1
end
object Panel1: TPanel
Left = 8
Height = 113
Top = 8
Width = 265
ClientHeight = 113
ClientWidth = 265
TabOrder = 0
object lbName: TLabel
Left = 8
Height = 13
Top = 8
Width = 41
AutoSize = False
Caption = 'Name'
ParentColor = False
end
object lbPathIcon: TLabel
Left = 8
Height = 14
Top = 53
Width = 133
Caption = 'Custom icon path (optional)'
ParentColor = False
end
object edtName: TEdit
Left = 8
Height = 21
Top = 24
Width = 249
OnEnter = edtNameEnter
TabOrder = 0
end
object edtPathIcon: TEdit
Left = 8
Height = 21
Top = 69
Width = 185
TabOrder = 1
Text = '$ASuite\'
end
object btnBrowseIcon: TButton
Left = 200
Height = 21
Top = 69
Width = 57
Caption = 'Browse'
OnClick = btnBrowseIconClick
TabOrder = 2
end
object cbHideSoftware: TCheckBox
Left = 8
Height = 19
Top = 96
Width = 161
Caption = 'Hide this software from menu'
TabOrder = 3
end
end
object OpenDialog1: TOpenDialog
left = 8
top = 128
end
end