-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameterform.lfm
101 lines (101 loc) · 1.85 KB
/
parameterform.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
object frmParameter: TfrmParameter
Left = 759
Height = 174
Top = 317
Width = 346
BorderStyle = bsDialog
Caption = 'Parameter'
ClientHeight = 174
ClientWidth = 346
OnCreate = FormCreate
Position = poMainFormCenter
LCLVersion = '2.2.0.4'
object btnCancel: TButton
Left = 265
Height = 25
Top = 142
Width = 75
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 0
end
object btnOK: TButton
Left = 185
Height = 25
Top = 142
Width = 75
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
OnClick = btnOKClick
TabOrder = 1
end
object lblKind: TLabel
Left = 8
Height = 15
Top = 8
Width = 27
Caption = 'Kind:'
end
object cbbKind: TComboBox
Left = 8
Height = 23
Top = 24
Width = 100
ItemHeight = 15
ItemIndex = 1
Items.Strings = (
'COOKIE'
'GET/POST'
'URL-SEGMENT'
'HEADER'
'BODY'
'FILE'
'QUERY'
)
Style = csDropDownList
TabOrder = 2
Text = 'GET/POST'
end
object lblName: TLabel
Left = 112
Height = 15
Top = 8
Width = 35
Caption = 'Name:'
end
object edtValue: TEdit
Left = 8
Height = 23
Top = 72
Width = 329
Anchors = [akTop, akLeft, akRight]
TabOrder = 3
end
object lblValue: TLabel
Left = 8
Height = 15
Top = 56
Width = 31
Caption = 'Value:'
end
object cbbName: TComboBox
Left = 112
Height = 23
Top = 24
Width = 225
Anchors = [akTop, akLeft, akRight]
ItemHeight = 15
TabOrder = 4
end
object chkNotEncoded: TCheckBox
Left = 8
Height = 19
Top = 112
Width = 98
Caption = 'Do not encode'
TabOrder = 5
end
end