-
Notifications
You must be signed in to change notification settings - Fork 8
/
FiftyTiftyDBCUI.dfm
96 lines (96 loc) · 1.97 KB
/
FiftyTiftyDBCUI.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
object Frame3: TFrame3
Left = 0
Top = 0
Width = 249
Height = 81
TabOrder = 0
object formGroupEntry01: TGroupBox
Left = 0
Top = 0
Width = 243
Height = 78
Caption = 'Entry #01'
TabOrder = 0
object formTime: TEdit
Left = 98
Top = 51
Width = 65
Height = 21
Hint = 'Time in multiples of 30 seconds Min = 0 Max = 2880'
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object buttonColour: TButton
Left = 169
Top = 51
Width = 65
Height = 21
Hint = 'Open colour picker'
Caption = 'Colour'
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object formB01: TEdit
Left = 169
Top = 24
Width = 65
Height = 21
Hint = 'Blue value'
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnKeyDown = formColourEditKeyDown
OnKeyUp = formColourEditKeyDown
end
object formA01: TEdit
Left = 31
Top = 51
Width = 61
Height = 21
Hint = 'Alpha value'
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 3
end
object formG01: TEdit
Left = 98
Top = 24
Width = 65
Height = 21
Hint = 'Green value'
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 4
OnKeyDown = formColourEditKeyDown
OnKeyUp = formColourEditKeyDown
end
object formR01: TEdit
Left = 31
Top = 24
Width = 62
Height = 21
Hint = 'Red value'
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 5
OnKeyDown = formColourEditKeyDown
OnKeyUp = formColourEditKeyDown
end
object formColour: TEdit
Left = 3
Top = 24
Width = 22
Height = 21
Color = clNone
ReadOnly = True
TabOrder = 6
end
end
end