-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathuMain.dfm
More file actions
191 lines (191 loc) · 3.73 KB
/
uMain.dfm
File metadata and controls
191 lines (191 loc) · 3.73 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
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
object fMain: TfMain
Left = 0
Top = 0
Caption = 'TMQTT Version 2 Test'
ClientHeight = 413
ClientWidth = 421
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object lblHeader: TLabel
Left = 8
Top = 0
Width = 410
Height = 34
Alignment = taCenter
AutoSize = False
Caption = 'Sample Client'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -21
Font.Name = 'Tahoma'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
Layout = tlCenter
end
object lnlMQTTInfo: TLabel
Left = 8
Top = 337
Width = 194
Height = 13
Caption = 'For more information about MQTT goto: '
end
object lblMQTTUrl: TLabel
Left = 208
Top = 337
Width = 102
Height = 13
Cursor = crHandPoint
Caption = 'http://www.mqtt.org'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsUnderline]
ParentFont = False
end
object lblPrimarilyTested: TLabel
Left = 8
Top = 356
Width = 154
Height = 13
Caption = 'Server primarily tested against: '
end
object lblRSMBUrl: TLabel
Left = 168
Top = 356
Width = 181
Height = 13
Cursor = crHandPoint
Caption = 'http://alphaworks.ibm.com/tech/rsmb'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsUnderline]
ParentFont = False
end
object lblLimits: TLabel
Left = 8
Top = 375
Width = 398
Height = 13
Caption =
'This Sample is not comprehensive of either the TMQTTClient nor t' +
'he MQTT Protocol'
end
object lblLimits2: TLabel
Left = 8
Top = 392
Width = 288
Height = 13
Caption = 'but is a good place to start in learning how to use the client.'
end
object lblSynapse: TLabel
Left = 8
Top = 40
Width = 402
Height = 13
Caption =
'You will need the Synapse Internet components to be in your proj' +
'ect search paths. '
end
object btnConnect: TButton
Left = 343
Top = 56
Width = 75
Height = 25
Caption = 'Connect'
TabOrder = 0
OnClick = btnConnectClick
end
object btnDisconnect: TButton
Left = 343
Top = 87
Width = 75
Height = 25
Caption = 'Disconnect'
TabOrder = 1
OnClick = btnDisconnectClick
end
object btnPublish: TButton
Left = 343
Top = 150
Width = 75
Height = 25
Caption = 'Publish'
TabOrder = 2
OnClick = btnPublishClick
end
object eTopic: TEdit
Left = 8
Top = 152
Width = 121
Height = 21
TabOrder = 3
Text = '/dev/test'
end
object eMessage: TEdit
Left = 135
Top = 152
Width = 202
Height = 21
TabOrder = 4
Text = 'This is a test message'
end
object eIP: TEdit
Left = 8
Top = 58
Width = 202
Height = 21
TabOrder = 5
Text = '127.0.0.1'
end
object ePort: TEdit
Left = 216
Top = 58
Width = 121
Height = 21
TabOrder = 6
Text = '1883'
end
object btnPing: TButton
Left = 343
Top = 118
Width = 75
Height = 25
Caption = 'Ping'
TabOrder = 7
OnClick = btnPingClick
end
object btnSubscribe: TButton
Left = 343
Top = 179
Width = 75
Height = 25
Caption = 'Subscribe'
TabOrder = 8
OnClick = btnSubscribeClick
end
object eSubTopic: TEdit
Left = 135
Top = 179
Width = 202
Height = 21
TabOrder = 9
Text = '/dev/test'
end
object mStatus: TMemo
Left = 8
Top = 210
Width = 409
Height = 121
TabOrder = 10
end
end