-
Notifications
You must be signed in to change notification settings - Fork 3
/
NetSetup.dfm
177 lines (177 loc) · 3.71 KB
/
NetSetup.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
object FNetSetup: TFNetSetup
Left = 1410
Top = 206
Width = 416
Height = 479
Caption = 'Network Services'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object BOk: TButton
Left = 136
Top = 392
Width = 75
Height = 25
Caption = 'OK'
TabOrder = 0
OnClick = BOkClick
end
object BCancel: TButton
Left = 216
Top = 392
Width = 75
Height = 25
Caption = 'Cancel'
TabOrder = 1
OnClick = BCancelClick
end
object GBListeners: TGroupBox
Left = 8
Top = 8
Width = 385
Height = 129
Caption = ' Listen for Android and Viewer Requests '
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 2
object LInterface: TLabel
Left = 72
Top = 34
Width = 135
Height = 16
Caption = 'Which IP to serve from:'
end
object LPort: TLabel
Left = 126
Top = 66
Width = 79
Height = 16
Caption = 'Network Port:'
end
object LEnable: TLabel
Left = 123
Top = 98
Width = 82
Height = 16
Caption = 'Enable server:'
end
object CBIPs: TComboBox
Left = 216
Top = 32
Width = 145
Height = 24
ItemHeight = 16
TabOrder = 0
end
object EPort: TEdit
Left = 216
Top = 64
Width = 81
Height = 24
TabOrder = 1
Text = '8080'
OnChange = EPortChange
end
object CBEnabled: TCheckBox
Left = 216
Top = 96
Width = 97
Height = 24
TabOrder = 2
end
end
object GBLaunchers: TGroupBox
Left = 8
Top = 152
Width = 385
Height = 233
Caption = ' Send to Remote Screens '
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 3
object SGScreens: TStringGrid
Left = 24
Top = 24
Width = 321
Height = 153
ColCount = 4
FixedCols = 0
RowCount = 2
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRowSelect]
TabOrder = 0
OnClick = SGScreensClick
OnDrawCell = SGScreensDrawCell
OnMouseDown = SGScreensMouseDown
ColWidths = (
258
250
64
64)
end
object BAddScreen: TButton
Left = 104
Top = 184
Width = 75
Height = 25
Caption = 'Add'
TabOrder = 1
OnClick = BAddScreenClick
end
object BRemoveScreen: TButton
Left = 184
Top = 184
Width = 75
Height = 25
Caption = 'Remove'
TabOrder = 2
OnClick = BRemoveScreenClick
end
object BTestScreens: TButton
Left = 264
Top = 184
Width = 75
Height = 25
Caption = 'Test'
TabOrder = 3
OnClick = BTestScreensClick
end
end
object IdEncoderMIME1: TIdEncoderMIME
FillChar = '='
Left = 8
Top = 400
end
object IdHTTP1: TIdHTTP
MaxLineAction = maException
ReadTimeout = 0
AllowCookies = True
ProxyParams.BasicAuthentication = False
ProxyParams.ProxyPort = 0
Request.ContentLength = -1
Request.ContentRangeEnd = 0
Request.ContentRangeStart = 0
Request.ContentType = 'text/html'
Request.Accept = 'text/html, */*'
Request.BasicAuthentication = False
Request.UserAgent = 'Mozilla/3.0 (compatible; Indy Library)'
HTTPOptions = [hoForceEncodeParams]
Left = 40
Top = 400
end
end