-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindigui_connect.lfm
80 lines (80 loc) · 1.42 KB
/
indigui_connect.lfm
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
object f_connect: Tf_connect
Left = 369
Height = 158
Top = 30
Width = 408
Caption = 'f_connect'
ClientHeight = 158
ClientWidth = 408
Menu = MainMenu1
OnClose = FormClose
OnCreate = FormCreate
object BtnConnect: TButton
Left = 291
Height = 25
Top = 92
Width = 88
Caption = 'Connect'
OnClick = BtnConnectClick
TabOrder = 0
end
object Label1: TLabel
Left = 24
Height = 19
Top = 8
Width = 144
Caption = 'Connect to INDI server'
ParentColor = False
end
object Label2: TLabel
Left = 24
Height = 19
Top = 50
Width = 29
Caption = 'Host'
ParentColor = False
end
object Label3: TLabel
Left = 248
Height = 19
Top = 50
Width = 27
Caption = 'Port'
ParentColor = False
end
object ServerHost: TComboBox
Left = 64
Height = 31
Top = 43
Width = 161
ItemHeight = 0
OnKeyDown = ServerHostKeyDown
TabOrder = 1
Text = 'localhost'
end
object ServerPort: TComboBox
Left = 291
Height = 31
Top = 43
Width = 88
ItemHeight = 0
OnKeyDown = ServerPortKeyDown
TabOrder = 2
Text = '7624'
end
object Timer1: TTimer
Enabled = False
Interval = 100
OnTimer = Timer1Timer
Left = 186
Top = 84
end
object MainMenu1: TMainMenu
Left = 81
Top = 84
object MenuHelp: TMenuItem
Caption = 'Help'
OnClick = MenuHelpClick
end
end
end