-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainunit.dfm
82 lines (82 loc) · 1.55 KB
/
mainunit.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
object OptionsForm: TOptionsForm
Left = 540
Top = 274
Width = 728
Height = 430
Caption = 'OptionsForm'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object LabelDevices: TLabel
Left = 18
Top = 18
Width = 62
Height = 13
Caption = 'Device List : '
end
object LabelDebugLog: TLabel
Left = 210
Top = 18
Width = 62
Height = 13
Caption = 'Debug Log : '
end
object LabelVLCLog: TLabel
Left = 210
Top = 120
Width = 60
Height = 13
Caption = 'libVLC Log : '
end
object ScanButton: TButton
Left = 16
Top = 350
Width = 75
Height = 25
Caption = 'Scan'
TabOrder = 0
OnClick = ScanButtonClick
end
object SetOPVLCCastDeviceList: TListBox
Left = 16
Top = 32
Width = 181
Height = 307
ItemHeight = 13
TabOrder = 1
end
object StopButton: TButton
Left = 122
Top = 350
Width = 75
Height = 25
Caption = 'Stop'
Enabled = False
TabOrder = 2
OnClick = StopButtonClick
end
object DebugLB: TListBox
Left = 208
Top = 32
Width = 487
Height = 83
ItemHeight = 13
TabOrder = 3
end
object LogLB: TListBox
Left = 208
Top = 134
Width = 487
Height = 241
ItemHeight = 13
TabOrder = 4
end
end