-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathosColorComboBox.pas
283 lines (258 loc) · 6.33 KB
/
osColorComboBox.pas
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
unit osColorComboBox;
interface
uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TShowStyle = (ssOnlyColor, ssOnlyText, ssColorAndText);
TosColorComboBox = class(TCustomComboBox)
private
FColorValue: TColor;
FShowStyle: TShowStyle;
FShowSystemColors : Boolean;
procedure CMFontChanged(var Message: TMessage); message CM_FONTCHANGED;
function IndexOfColor(Value: TColor): Integer;
procedure SetColorValue(NewValue: TColor);
procedure ResetItemHeight;
protected
FOnChange: TNotifyEvent;
procedure CreateWnd; override;
procedure DrawItem(Index: Integer; Rect: TRect; State: TOwnerDrawState); override;
procedure Click; override;
procedure BuildList; virtual;
procedure Change; override;
procedure SetShowStyle(Value: TShowStyle);
public
constructor Create(AOwner: TComponent); override;
procedure AddColor(ColorValue: TColor; ColorText: string);
property Text;
published
property ColorValue: TColor read FColorValue write SetColorValue
default clNone;
property Color;
property Ctl3D;
property DragMode;
property DragCursor;
property Enabled;
property Font;
property Height default 23;
property ItemHeight default 17;
property ParentColor;
property ParentCtl3D;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property ShowStyle: TShowStyle read FShowStyle write SetShowStyle
default ssOnlyColor;
property ShowSystemColors : Boolean read FShowSystemColors write FShowSystemColors;
property TabOrder;
property TabStop;
property Visible;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnDropDown;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
end;
function GetItemHeight(Font: TFont): Integer;
implementation
function GetItemHeight(Font: TFont): Integer;
var
DC: HDC;
SaveFont: HFont;
Metrics: TTextMetric;
begin
DC := GetDC(0);
try
SaveFont := SelectObject(DC, Font.Handle);
GetTextMetrics(DC, Metrics);
SelectObject(DC, SaveFont);
finally
ReleaseDC(0, DC);
end;
Result := Metrics.tmHeight + 2;
end;
{ TosColorComboBox }
const
ColorsInList = 42;
ColorValues: array [1..ColorsInList] of TColor = (
clNone,
clBlack,
clMaroon,
clGreen,
clOlive,
clNavy,
clPurple,
clTeal,
clGray,
clSilver,
clRed,
clLime,
clYellow,
clBlue,
clFuchsia,
clAqua,
clWhite,
clScrollBar,
clBackground,
clActiveCaption,
clInactiveCaption,
clMenu,
clWindow,
clWindowFrame,
clMenuText,
clWindowText,
clCaptionText,
clActiveBorder,
clInactiveBorder,
clAppWorkSpace,
clHighlight,
clHighlightText,
clBtnFace,
clBtnShadow,
clGrayText,
clBtnText,
clInactiveCaptionText,
clBtnHighlight,
cl3DDkShadow,
cl3DLight,
clInfoText,
clInfoBk);
constructor TosColorComboBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Style := csOwnerDrawFixed;
ItemHeight := 17;
Height := 23;
FColorValue := clBlack;
FShowStyle := ssOnlyColor;
FShowSystemColors := True;
end;
procedure TosColorComboBox.AddColor(ColorValue: TColor; ColorText: string);
begin
if IndexOfColor(ColorValue) = -1 then
Items.AddObject(ColorText, TObject(ColorValue));
end;
procedure TosColorComboBox.BuildList;
var
I: Integer;
ColorName: string;
begin
Clear;
for I := 1 to ColorsInList do
if (I <= 16) or
((I > 16) and FShowSystemColors) then
begin
ColorName := Copy(ColorToString(ColorValues[I]), 3, 30);
Items.AddObject(ColorName, TObject(ColorValues[I]));
end;
end;
function TosColorComboBox.IndexOfColor(Value: TColor): Integer;
var
nItem: Integer;
begin
for nItem := Items.Count - 1 downto 0 do
if TColor(Items.Objects[nItem]) = Value then
Break;
Result := nItem;
end;
procedure TosColorComboBox.SetColorValue(NewValue: TColor);
var
Item: Integer;
begin
if (ItemIndex < 0) or (NewValue <> FColorValue) then
begin
Item := IndexOfColor(NewValue);
if Item >= 0 then
begin
FColorValue := NewValue;
if ItemIndex <> Item then
ItemIndex := Item;
Change;
end;
end;
end;
procedure TosColorComboBox.CreateWnd;
begin
inherited CreateWnd;
BuildList;
SetColorValue(FColorValue);
end;
procedure TosColorComboBox.DrawItem(Index: Integer; Rect: TRect;
State: TOwnerDrawState);
const
ColorWidth = 22;
var
DrawColor: TColor;
ARect: TRect;
begin
if FShowStyle = ssOnlyText then
inherited
else
begin
DrawColor := TColor(Items.Objects[Index]);
ARect := Rect;
Inc(ARect.Top, 2);
Inc(ARect.Left, 4);
Dec(ARect.Bottom, 2);
Canvas.FillRect(Rect);
if FShowStyle = ssOnlyColor then
Dec(ARect.Right, 4)
else
begin
ARect.Right := ARect.Left + ColorWidth;
Canvas.TextOut(ARect.Right + 8, ARect.Top, Items[Index]);
end;
with Canvas do
begin
Brush.Color := DrawColor;
with ARect do
Rectangle(Left, Top, Right, Bottom);
end;
end;
end;
procedure TosColorComboBox.Click;
begin
if ItemIndex >= 0 then
ColorValue := TColor(Items.Objects[ItemIndex]);
inherited Click;
end;
procedure TosColorComboBox.CMFontChanged(var Message: TMessage);
begin
inherited;
if FShowStyle = ssColorAndText then
begin
ResetItemHeight;
RecreateWnd;
end;
end;
procedure TosColorComboBox.ResetItemHeight;
var
newHeight: Integer;
begin
newHeight := GetItemHeight(Font);
if newHeight < 9 then
newHeight := 9;
ItemHeight := newHeight;
end;
procedure TosColorComboBox.Change;
begin
if Assigned(FOnChange) then
FOnChange(Self);
end;
procedure TosColorComboBox.SetShowStyle(Value: TShowStyle);
begin
if FShowStyle <> Value then
begin
FShowStyle := Value;
Refresh;
end;
end;
end.