-
Notifications
You must be signed in to change notification settings - Fork 1
/
unit_listbox.lfm
81 lines (81 loc) · 1.89 KB
/
unit_listbox.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
81
object form_listbox1: Tform_listbox1
Left = 824
Height = 294
Top = 182
Width = 303
AutoSize = True
BorderWidth = 5
Caption = 'Search database'
ClientHeight = 294
ClientWidth = 303
KeyPreview = True
OnClose = FormClose
OnKeyPress = FormKeyPress
OnShow = FormShow
Position = poOwnerFormCenter
LCLVersion = '2.0.12.0'
object Edit1: TEdit
Left = 5
Height = 23
Hint = 'Enter designation to retrieve position. Use wildcard to find designations. E.g. ngc1* or boo*'
Top = 24
Width = 291
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object ok1: TButton
Left = 56
Height = 30
Hint = 'Accept the α, δ of the object as an initial start for solving.'
Top = 256
Width = 86
Caption = '✔'
Default = True
OnClick = ok1Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object keyboard_question1: TLabel
Left = 7
Height = 15
Top = 5
Width = 191
Caption = 'Enter object designation or position:'
ParentColor = False
ParentFont = False
WordWrap = True
end
object ListBox1: TListBox
AnchorSideLeft.Control = Edit1
AnchorSideTop.Control = Edit1
AnchorSideTop.Side = asrBottom
Left = 5
Height = 200
Hint = 'This listbox will be filled if you enter an object designation with a wildcard. E.g. ngc10*'
Top = 47
Width = 291
ItemHeight = 0
OnClick = ListBox1Click
OnDblClick = ListBox1DblClick
ParentColor = True
ParentShowHint = False
ScrollWidth = 273
ShowHint = True
Sorted = True
TabOrder = 2
end
object cancel1: TBitBtn
Left = 184
Height = 30
Hint = 'Cancel search'
Top = 256
Width = 75
Caption = '🗙'
OnClick = cancel1Click
TabOrder = 3
end
end