-
Notifications
You must be signed in to change notification settings - Fork 12
/
ClientU.dfm
113 lines (113 loc) · 2.36 KB
/
ClientU.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
object ClientF: TClientF
Left = 745
Top = 376
Width = 346
Height = 404
Caption = 'VideoCoDec Demo Client'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poDesktopCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object imgDisplay: TImage
Left = 8
Top = 8
Width = 320
Height = 240
Center = True
Proportional = True
end
object Panel1: TPanel
Left = 0
Top = 268
Width = 338
Height = 98
Align = alBottom
BevelInner = bvLowered
TabOrder = 0
DesignSize = (
338
98)
object Label1: TLabel
Left = 8
Top = 12
Width = 22
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Host'
end
object Label2: TLabel
Left = 216
Top = 12
Width = 19
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Port'
end
object txtHost: TEdit
Left = 8
Top = 30
Width = 201
Height = 21
Anchors = [akLeft, akBottom]
BevelKind = bkFlat
BorderStyle = bsNone
TabOrder = 0
Text = '192.168.1.31'
end
object txtPort: TEdit
Left = 216
Top = 30
Width = 113
Height = 21
Anchors = [akLeft, akBottom]
BevelKind = bkFlat
BorderStyle = bsNone
TabOrder = 1
Text = '33000'
end
object btnConnect: TButton
Left = 8
Top = 61
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Connect'
TabOrder = 2
OnClick = btnConnectClick
end
object btnDisconnect: TButton
Left = 96
Top = 61
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Disconnect'
Enabled = False
TabOrder = 3
OnClick = btnDisconnectClick
end
end
object TCPClient: TIdTCPClient
MaxLineAction = maException
ReadTimeout = 0
OnDisconnected = TCPClientDisconnected
OnConnected = TCPClientConnected
Port = 0
Left = 16
Top = 16
end
object tmrDisplay: TTimer
Enabled = False
OnTimer = tmrDisplayTimer
Left = 80
Top = 16
end
end