-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmouse_colour_unit.lfm
More file actions
127 lines (127 loc) · 2.82 KB
/
mouse_colour_unit.lfm
File metadata and controls
127 lines (127 loc) · 2.82 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
object mouse_colour_form: Tmouse_colour_form
Left = 72
Height = 180
Top = 201
Width = 440
BorderIcons = [biSystemMenu]
BorderStyle = bsSizeToolWin
Caption = ' screen colour at mouse location ...'
ClientHeight = 180
ClientWidth = 440
Color = 16314608
DesignTimePPI = 120
Font.Color = clBlack
Font.Height = -21
Font.Name = 'Trebuchet MS'
KeyPreview = True
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '3.4.0.0'
Scaled = False
object Label2: TLabel
Left = 30
Height = 49
Top = 4
Width = 380
Alignment = taCenter
AutoSize = False
Caption = 'Move the mouse pointer anywhere on the screen and then press the SPACE-BAR.'
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
end
object add_label: TLabel
Left = 0
Height = 45
Top = 60
Width = 440
Alignment = taCenter
AutoSize = False
Caption = 'The colour under the mouse pointer can now be added to the custom colours available on the colour selector dialog.'
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentFont = False
Visible = False
WordWrap = True
end
object mouse_colour_shape: TShape
Left = 32
Height = 60
Top = 112
Width = 60
Brush.Color = 16314608
Pen.Color = 16314608
Shape = stSquare
end
object datestamp_label: TLabel
Left = 0
Height = 4
Top = 176
Width = 440
AutoSize = False
Font.Color = clGray
Font.Height = -7
Font.Name = 'Arial'
ParentFont = False
end
object ok_panel: TPanel
Left = 260
Height = 25
Top = 144
Width = 173
Alignment = taLeftJustify
Caption = ' add custom colour'
ClientHeight = 25
ClientWidth = 173
Color = clLime
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 0
Visible = False
OnClick = ok_buttonClick
object ok_button: TButton
Left = 154
Height = 15
Top = 6
Width = 15
Caption = ' '
Default = True
Font.Color = clBlack
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnClick = ok_buttonClick
end
end
object cancel_panel: TPanel
Left = 184
Height = 25
Top = 144
Width = 64
Caption = 'cancel'
Color = clYellow
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 1
OnClick = cancel_panelClick
end
end