-
Notifications
You must be signed in to change notification settings - Fork 1
/
WizFavs.FormSettings.dfm
194 lines (194 loc) · 3.78 KB
/
WizFavs.FormSettings.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
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
object frmSettings: TfrmSettings
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
Caption = 'Settings'
ClientHeight = 276
ClientWidth = 329
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
Padding.Left = 5
Padding.Top = 5
Padding.Right = 5
Padding.Bottom = 5
OldCreateOrder = False
Position = poMainFormCenter
OnClose = FormClose
OnShow = FormShow
DesignSize = (
329
276)
PixelsPerInch = 120
TextHeight = 16
object panToolbar: TPanel
Left = 125
Top = 13
Width = 196
Height = 218
Anchors = [akLeft, akTop, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 3
Visible = False
object Label1: TLabel
Left = 8
Top = 8
Width = 107
Height = 16
Caption = 'Destination toolbar'
end
object Label2: TLabel
Left = 8
Top = 64
Width = 70
Height = 16
Caption = 'Button index'
end
object cbDestToolbar: TComboBox
Left = 8
Top = 24
Width = 177
Height = 24
Style = csDropDownList
TabOrder = 0
end
object udBtnIndex: TUpDown
Left = 113
Top = 80
Width = 20
Height = 24
Associate = eBtnIndex
TabOrder = 1
end
object eBtnIndex: TEdit
Left = 8
Top = 80
Width = 105
Height = 24
NumbersOnly = True
ReadOnly = True
TabOrder = 2
Text = '0'
end
end
object panMainMenu: TPanel
Left = 125
Top = 13
Width = 196
Height = 218
Anchors = [akLeft, akTop, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 4
Visible = False
object Label3: TLabel
Left = 8
Top = 8
Width = 64
Height = 16
Caption = 'Insert after'
end
object cbMainMenuInsertAfter: TComboBox
Left = 8
Top = 24
Width = 177
Height = 24
Style = csDropDownList
TabOrder = 0
end
end
object panSubMenu: TPanel
Left = 125
Top = 13
Width = 196
Height = 218
Anchors = [akLeft, akTop, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 5
Visible = False
object Label4: TLabel
Left = 8
Top = 8
Width = 58
Height = 16
Caption = 'Insert into'
end
object submenu: TLabel
Left = 8
Top = 56
Width = 64
Height = 16
Caption = 'Insert after'
end
object Label5: TLabel
Left = 8
Top = 104
Width = 180
Height = 21
Caption = 'Under construction...'
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -17
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object cbSubMenuInsertInto: TComboBox
Left = 8
Top = 24
Width = 177
Height = 24
Style = csDropDownList
TabOrder = 0
OnChange = cbSubMenuInsertIntoChange
end
object cbSubMenuInsertAfter: TComboBox
Left = 8
Top = 72
Width = 177
Height = 24
Style = csDropDownList
TabOrder = 1
end
end
object btnOk: TButton
Left = 167
Top = 236
Width = 75
Height = 33
Anchors = [akRight, akBottom]
Caption = 'Ok'
Default = True
ModalResult = 1
TabOrder = 0
end
object btnCancel: TButton
Left = 245
Top = 236
Width = 75
Height = 33
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object rgPlacement: TRadioGroup
Left = 5
Top = 5
Width = 116
Height = 100
Caption = ' Placement '
Items.Strings = (
'Toolbar'
'Main menu'
'Submenu')
TabOrder = 2
OnClick = rgPlacementClick
end
end