-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuMain.dfm
201 lines (201 loc) · 3.93 KB
/
uMain.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
195
196
197
198
199
200
201
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 702
ClientWidth = 852
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object mmDados: TMemo
Left = 351
Top = 16
Width = 493
Height = 384
ScrollBars = ssVertical
TabOrder = 0
end
object grbBasic: TGroupBox
Left = 8
Top = 49
Width = 337
Height = 161
Caption = 'Basic Auth '
TabOrder = 1
object edtLogin: TLabeledEdit
Left = 16
Top = 36
Width = 233
Height = 21
EditLabel.Width = 28
EditLabel.Height = 13
EditLabel.Caption = 'Login '
TabOrder = 0
Text = '[email protected]'
end
object edtSenha: TLabeledEdit
Left = 16
Top = 83
Width = 233
Height = 21
EditLabel.Width = 30
EditLabel.Height = 13
EditLabel.Caption = 'Senha'
PasswordChar = '*'
TabOrder = 1
Text = 'admin'
end
object btnLogar: TButton
Left = 16
Top = 114
Width = 75
Height = 25
Caption = 'Logar'
TabOrder = 2
end
end
object grbOauth: TGroupBox
Left = 8
Top = 216
Width = 337
Height = 457
Caption = 'OAuth 2'
Enabled = False
TabOrder = 2
object edtLoginOauth2: TLabeledEdit
Left = 16
Top = 36
Width = 233
Height = 21
EditLabel.Width = 28
EditLabel.Height = 13
EditLabel.Caption = 'Login '
TabOrder = 0
Text = '[email protected]'
end
object edtSenhaOauth2: TLabeledEdit
Left = 16
Top = 81
Width = 233
Height = 21
EditLabel.Width = 30
EditLabel.Height = 13
EditLabel.Caption = 'Senha'
PasswordChar = '*'
TabOrder = 1
Text = 'admin'
end
object BtnToken: TButton
Left = 16
Top = 195
Width = 75
Height = 25
Caption = 'Get Token'
TabOrder = 2
OnClick = BtnTokenClick
end
object edtClientId: TLabeledEdit
Left = 16
Top = 125
Width = 121
Height = 21
EditLabel.Width = 40
EditLabel.Height = 13
EditLabel.Caption = 'Client Id'
TabOrder = 3
Text = 'angular'
end
object edtSecretID: TLabeledEdit
Left = 16
Top = 168
Width = 121
Height = 21
EditLabel.Width = 44
EditLabel.Height = 13
EditLabel.Caption = 'Secret Id'
PasswordChar = '*'
TabOrder = 4
Text = '@ngul@r0'
end
object mmToken: TMemo
Left = 2
Top = 238
Width = 333
Height = 217
Align = alBottom
ScrollBars = ssVertical
TabOrder = 5
end
end
object btnGetAll: TButton
Left = 351
Top = 452
Width = 75
Height = 25
Caption = 'Get All'
TabOrder = 3
OnClick = btnGetAllClick
end
object chkAutorizacao: TCheckBox
Left = 10
Top = 18
Width = 97
Height = 17
Caption = 'OAuth 2'
TabOrder = 4
OnClick = chkAutorizacaoClick
end
object edtAuthorization: TLabeledEdit
Left = 351
Top = 425
Width = 493
Height = 21
EditLabel.Width = 64
EditLabel.Height = 13
EditLabel.Caption = 'Authorization'
TabOrder = 5
end
object btnGet: TButton
Left = 351
Top = 483
Width = 75
Height = 25
Caption = 'Get'
TabOrder = 6
OnClick = btnGetClick
end
object btnPost: TButton
Left = 351
Top = 514
Width = 75
Height = 25
Caption = 'Post'
TabOrder = 7
OnClick = btnPostClick
end
object btnPut: TButton
Left = 351
Top = 545
Width = 75
Height = 25
Caption = 'Put'
TabOrder = 8
OnClick = btnPutClick
end
object Button1: TButton
Left = 351
Top = 576
Width = 75
Height = 25
Caption = 'Delete'
TabOrder = 9
OnClick = Button1Click
end
end