Menu

[91660d]: / HSSpeedButton.pas  Maximize  Restore  History

Download this file

687 lines (575 with data), 21.3 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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
{
HSButtons Suite - Two new buttons for Delphi!
Copyright (C) 2000-2010 Leif Bruder, Haitham Shatti
e-Mail: haitham.shatti@gmail.com
This file is part of HSButtons Suite.
HSButtons Suite is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
HSButtons Suite is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with HSButtons Suite; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
unit HSSpeedButton;
interface
uses
Windows, SysUtils, {$ifdef fpc} LMessages {$else} messages {$endif}, Classes, Graphics, Controls, Forms, ImgList, ActnList, HSButtons;
type
THSSpeedButton = class(TGraphicControl)
private
FAlignment: TAlignment;
FAllowAllUp: boolean;
FColorWhenDown: TColor;
FDown: boolean;
{$ifdef FPC} FMem:TMemoryStream; {$endif}
FFlat: boolean;
FWordWrap: boolean;
FGlyph: TBitmap;
FGroupIndex: integer;
FHotTrackColor: TColor;
FHTFont: TFont;
FLayout: THSButtonLayout;
FLightColor: TColor;
FNumGlyphs: integer;
FShadowColor: TColor;
FStyle: THSButtonStyle;
FTransparent: boolean;
FUseHTFont: boolean;
FOnMouseEnter: TNotifyEvent;
FOnMouseExit: TNotifyEvent;
FDummyStyle: THSColorStyle;
bCursorOnButton: boolean;
FTimer: THSButtonTimer;
FSlowDecease: THSSlowDecease;
FHotTrackStep: integer;
FColor: TColor;
FBorder: Byte;
FSmooth: Smallint;
procedure SetColor(const Value: TColor);
procedure SetBorder(const Value: Byte);
procedure SetSmooth(const Value: Smallint);
public
constructor Create(aOwner: TComponent); override;
destructor Destroy; override;
procedure Click; override;
protected
procedure Paint; override;
procedure DoStep(Sender: TObject);
function GetCaption: TCaption;
procedure SetAlignment(fNew: TAlignment);
procedure SetFlat(fNew: boolean);
procedure SetColorWhenDown(fNew: TColor);
procedure SetColorStyle(fNew: THSColorStyle);
procedure SetDown(fNew: boolean);
procedure SetCaption(const fNew: TCaption);
procedure SetGlyph(fNew: TBitmap);
procedure SetGroupIndex(fNew: integer);
procedure SetHTFont(fNew: TFont);
procedure SetLayout(fNew: THSButtonLayout);
procedure SetLightColor(fNew: TColor);
procedure SetNumGlyphs(fNew: integer);
procedure SetShadowColor(fNew: TColor);
procedure SetStyle(fNew: THSButtonStyle);
procedure SetTransparent(fNew: boolean);
procedure SetWordWrap(fNew: boolean);
procedure SetSlowDecease(Value: THSSlowDecease);
procedure DoMouseEnter(var Msg: TMessage); message CM_MOUSEENTER;
procedure DoMouseLeave(var Msg: TMessage); message CM_MOUSELEAVE;
procedure DoDialogChar(var Message: TCMDialogChar); message CM_DIALOGCHAR;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
procedure WMLButtonDblClk(var Message: TWMLButtonDblClk); message WM_LBUTTONDBLCLK;
published
property Action;
property Align;
property Alignment: TAlignment read FAlignment write SetAlignment default taLeftJustify;
property AllowAllUp: boolean read FAllowAllUp write FAllowAllUp default false;
property Anchors;
property Border:Byte read FBorder write SetBorder default 4;
property Caption: TCaption read GetCaption write SetCaption;
property Color:TColor read FColor write SetColor;
property ColorWhenDown: TColor read FColorWhenDown write SetColorWhenDown default clNone;
property ColorStyle: THSColorStyle read FDummyStyle write SetColorStyle default lcsCustom;
property Down: boolean read FDown write SetDown default false;
property Enabled;
property Flat: boolean read FFlat write SetFlat default false;
property Font;
property Glyph: TBitmap read FGlyph write SetGlyph;
property GroupIndex: integer read FGroupIndex write SetGroupIndex default 0;
property HotTrackColor: TColor read FHotTrackColor write FHotTrackColor default clNone;
property HotTrackFont: TFont read FHTFont write SetHTFont;
property Hint;
property Layout: THSButtonLayout read FLayout write SetLayout default blGlyphLeft;
property LightColor: TColor read FLightColor write SetLightColor default clWhite;
property NumGlyphs: integer read FNumGlyphs write SetNumGlyphs default 0;
property ParentColor;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShadowColor: TColor read FShadowColor write SetShadowColor default clBlack;
property ShowHint;
property SlowDecease: THSSlowDecease read FSlowDecease write SetSlowDecease default sdNone;
property Smooth:Smallint read FSmooth write SetSmooth;
property Style: THSButtonStyle read FStyle write SetStyle default bsNormal;
property Transparent: boolean read FTransparent write SetTransparent default false;
property UseHotTrackFont: boolean read FUseHTFont write FUseHTFont default false;
property Visible;
property WordWrap: boolean read FWordWrap write SetWordWrap default false;
property OnClick;
// property OnDblClick;
property OnMouseDown;
property OnMouseEnter: TNotifyEvent read FOnMouseEnter write FOnMouseEnter;
property OnMouseExit: TNotifyEvent read FOnMouseExit write FOnMouseExit;
property OnMouseMove;
property OnMouseUp;
end;
procedure Register;
implementation
{##############################################################################}
procedure Register;
begin
RegisterComponents('HS', [THSSpeedButton]);
end;
{##############################################################################}
constructor THSSpeedButton.Create(aOwner: TComponent);
begin
inherited;
// ControlStyle := [csCaptureMouse, csDoubleClicks];
ControlStyle := ControlStyle + [csSetCaption, csDoubleClicks, csCaptureMouse];
ControlStyle := ControlStyle - [csOpaque];
Height := 23;
Width := 100;
bCursorOnButton := false;
FLightColor := clWhite;
FShadowColor := clBlack;
FColorWhenDown := clNone;
{$ifdef FPC} Fmem:=TMemoryStream.Create; {$endif}
FHotTrackColor := clNone;
FWordWrap := false;
FAlignment := taCenter;
FBorder:=1;
FDummyStyle := lcsCustom;
FSlowDecease := sdNone;
FGlyph := TBitmap.Create;
FHtFont := TFont.Create;
FHotTrackStep := 0;
FTimer := nil;
FColor:=clBtnFace;
if aOwner is TForm then
FHtFont.Assign(TForm(aOwner).Font);
end;
{##############################################################################}
destructor THSSpeedButton.Destroy;
begin
if Assigned(FTimer) then
begin
FTimer.Enabled:=False;
FTimer.Free;
end;
{$ifdef FPC }FMem.Free; {$endif FPC}
FHtFont.Free;
FGlyph.Free;
inherited;
end;
{##############################################################################}
procedure THSSpeedButton.SetAlignment(fNew: TAlignment);
begin
FAlignment := fNew;
if FTransparent then invalidate else paint; // Could have generally used invalidate, but why make it flicker if it is not transparent?
end;
procedure THSSpeedButton.SetBorder(const Value: Byte);
begin
FBorder := Value;
Invalidate
end;
{##############################################################################}
procedure THSSpeedButton.SetCaption(const fNew: TCaption);
begin
inherited Caption := fNew;
invalidate;
end;
{##############################################################################}
function THSSpeedButton.GetCaption: TCaption;
begin
Result := inherited Caption;
end;
{##############################################################################}
procedure THSSpeedButton.SetColorWhenDown(fNew: TColor);
begin
FColorWhenDown := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetColorStyle(fNew: THSColorStyle);
var
bModern, bQuicken: boolean;
FontColor: TColor;
begin
if fNew = lcsCustom then exit;
GetPreDefinedColors(fNew, FColor, FLightColor, FShadowColor, FColorWhenDown, FHotTrackColor, FontColor, FFlat, bModern, bQuicken);
// Color := FColor;
Font.Color := FontColor;
FStyle := bsNormal; if bModern then FStyle := bsModern; if bQuicken then FStyle := bsQuicken;
if fNew in [lcsGlassGold,lcsGlassChrome,lcsGlassBlue,lcsGlassRed,lcsGlassAqua] then
FStyle:=bsGlass;
Paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetDown(fNew: boolean);
var
i: integer;
begin
if FDown = fNew then exit;
// If grouped, set all siblings to down=false
if GroupIndex <> 0 then
for i := 0 to Parent.ControlCount-1 do
if Parent.Controls[i] is THSSpeedButton then
if THSSpeedButton(Parent.Controls[i]).GroupIndex = GroupIndex then
if THSSpeedButton(Parent.Controls[i]) <> self then
THSSpeedButton(Parent.Controls[i]).Down := false;
FDown := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetFlat(fNew: boolean);
begin
FFlat := fNew;
Invalidate;
end;
{##############################################################################}
procedure THSSpeedButton.SetGlyph(fNew: TBitmap);
begin
if fNew <> nil then
begin
FGlyph.Assign(fNew);
if fNew.Height <> 0 then FNumGlyphs := fNew.Width div fNew.Height else FNumGlyphs := 0;
end
else
begin
FGlyph.Height := 0;
FNumGlyphs := 0;
end;
invalidate;
end;
{##############################################################################}
procedure THSSpeedButton.SetGroupIndex(fNew: integer);
begin
FGroupIndex := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetHTFont(fNew: TFont);
begin
FHTFont.Assign(fNew);
end;
{##############################################################################}
procedure THSSpeedButton.SetLayout(fNew: THSButtonLayout);
begin
FLayout := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetLightColor(fNew: TColor);
begin
FLightColor := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetNumGlyphs(fNew: integer);
begin
FNumGlyphs := fNew;
invalidate;
end;
{##############################################################################}
procedure THSSpeedButton.SetShadowColor(fNew: TColor);
begin
FShadowColor := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetSlowDecease(Value: THSSlowDecease);
begin
FSlowDecease := Value;
if FSlowDecease<>sdNone then
begin
if not Assigned(FTimer) then
begin
FTimer := THSButtonTimer.Create(DoStep);
// FThread.FreeOnTerminate := false;
end;
end
else
begin
if Assigned(FTimer) then
begin
FHotTrackStep := 0;
FTimer.Free;
FTimer := nil;
end;
end;
Invalidate;
end;
procedure THSSpeedButton.SetSmooth(const Value: Smallint);
begin
FSmooth := Value;
Invalidate
end;
{##############################################################################}
procedure THSSpeedButton.SetStyle(fNew: THSButtonStyle);
begin
if fNew = bsModern then if GetDeviceCaps(Canvas.Handle, BITSPIXEL) <= 8 then if not (csDesigning in ComponentState) then fNew := bsNormal;
FStyle := fNew;
invalidate;
end;
{##############################################################################}
procedure THSSpeedButton.SetTransparent(fNew: boolean);
begin
FTransparent := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetWordWrap(fNew: boolean);
begin
FWordwrap := fNew;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.Paint;
var
aStyle: THSButtonStyle;
aLayout: THSButtonLayout;
aBitmap: TBitmap;
// aPicture: TPicture;
begin
// if not (Visible or (csDesigning in ComponentState)) or (csLoading in ComponentState) then exit;
Inherited ;
aStyle := FStyle;//HSButtons.bsNormal;
{ case FStyle of
bsEncarta: aStyle := HSButtons.bsEncarta;
bsModern: aStyle := HSButtons.bsModern;
bsOld: aStyle := HSButtons.bsOld;
bsShape: aStyle := HSButtons.bsShape;
bsQuicken: aStyle := HSButtons.bsQuicken;
end;}
aLayout := HSButtons.blGlyphLeft;
case FLayout of
blGlyphTop: aLayout := HSButtons.blGlyphTop;
blGlyphRight: aLayout := HSButtons.blGlyphRight;
blGlyphBottom: aLayout := HSButtons.blGlyphBottom;
end;
aBitmap := TBitmap.Create;
aBitmap.PixelFormat:=pf32bit;
aBitmap.Height := Height;
aBitmap.Width := Width;
if FTransparent or (FStyle in [bsGlass,bsModern, bsShape, bsQuicken]) then
begin
// aBitmap.TransparentMode := tmAuto;
aBitmap.Canvas.Brush.Color := clFuchsia;
aBitmap.Transparent := True;
aBitmap.TransparentColor := clFuchsia;
aBitmap.Canvas.FillRect(Rect(0, 0, Width, Height));
// TWinControl(Self).SetShape(aBitmap)
end;
if bCursorOnButton and FUseHTFont then
HSPaintButton(aBitmap, Width, Height,FBorder, FHotTrackStep,FSmooth, FNumGlyphs, FGlyph, FDown, bCursorOnButton, FTransparent, Enabled, Flat, FWordWrap, assigned(PopupMenu), aStyle, Color, FColorWhenDown, FHotTrackColor, FLightColor, FShadowColor, FHTFont, aLayout, Caption, FAlignment)
else
HSPaintButton(aBitmap, Width, Height,FBorder, FHotTrackStep,FSmooth, FNumGlyphs, FGlyph, FDown, bCursorOnButton, FTransparent, Enabled, Flat, FWordWrap, assigned(PopupMenu), aStyle, Color, FColorWhenDown, FHotTrackColor, FLightColor, FShadowColor, Font, aLayout, Caption, FAlignment);
{
if FStyle in [bsShape, bsModern] then
begin
aPicture := TPicture.Create;
try aPicture.Bitmap.Assign(aBitmap); except end;
aPicture.Bitmap.Width := Width;
aPicture.Bitmap.Height := Height;
aPicture.Graphic.Transparent := true;
Canvas.Draw(0, 0, aPicture.Graphic);
aPicture.Free;
end
else
Canvas.Draw(0, 0, aBitmap);
}
aBitmap.TransparentColor:=clFuchsia;
aBitmap.Transparent:=True;
{$ifdef FPC}
// for some reason FPC doesn't apply transparency
// except of a stream or file was loaded fooling FPC below
FMem.Clear;
aBitmap.SaveToStream(Fmem);
Fmem.Position:=0;
aBitmap.Clear;
aBitmap.FreeImage;
aBitmap.Transparent:=true;
aBitmap.TransparentColor:=clFuchsia;
aBitmap.LoadFromStream(Fmem);
{$endif}
if Parent<>nil then
begin
// Canvas.Lock;
Canvas.Draw(0, 0, aBitmap);
// Canvas.Unlock;
end;
aBitmap.Free;
end;
{##############################################################################}
procedure THSSpeedButton.DoMouseEnter(var Msg: TMessage);
begin
if not(csDesigning in Componentstate) and Enabled and Visible and (Parent <> nil) and Parent.Showing then
begin
bCursorOnButton := true;
if FSlowDecease=sdEnterLeave then
if Assigned(FTimer) then
if not (FTimer.Enabled) then
FTimer.Start
else
else
else
begin
FHotTrackStep := cHotTrackSteps;
if FTransparent then invalidate else paint;
end;
if assigned(FOnMouseEnter) then FOnMouseEnter(self);
end;
end;
{##############################################################################}
procedure THSSpeedButton.DoMouseLeave(var Msg: TMessage);
begin
bCursorOnButton := false;
if FSlowDecease<>sdNone then
// if not Assigned(FThread) then FThread:=THSButtonThread.Create(DoStep);
if Assigned(FTimer) then
if not(FTimer.Enabled) then
FTimer.Start
else
else
else
begin
FHotTrackStep := 0;
if FTransparent then invalidate else paint;
end;
if Enabled and Visible and (Parent <> nil) and Parent.Showing then if assigned(FOnMouseExit) then FOnMouseExit(self);
end;
{##############################################################################}
procedure THSSpeedButton.MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
inherited;
if (Button <> mbLeft) then exit;
if GroupIndex = 0 then Down := true
else
begin
if Down then
begin
if FAllowAllUp then Down := false;
end
else
Down := true;
end;
end;
{##############################################################################}
procedure THSSpeedButton.MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
inherited;
if GroupIndex = 0 then Down := false;
end;
{##############################################################################}
procedure THSSpeedButton.WMLButtonDblClk(var Message: TWMLButtonDblClk);
begin
Perform(WM_LBUTTONDOWN, Message.Keys, Longint(Message.Pos));
end;
{##############################################################################}
procedure THSSpeedButton.ActionChange(Sender: TObject; CheckDefaults: Boolean);
procedure CopyImage(ImageList: TCustomImageList; Index: Integer);
begin
with Glyph do
begin
Width := ImageList.Width;
Height := ImageList.Height;
Canvas.Brush.Color := clBlack;
Canvas.FillRect(Rect(0,0, Width, Height));
ImageList.Draw(Canvas, 0, 0, Index);
end;
NumGlyphs := 1;
Paint;
end;
begin
inherited;
if Sender is TCustomAction then
begin
with TCustomAction(Sender) do
begin
if (Glyph.Empty) and (ActionList <> nil) and (ActionList.Images <> nil) and (ImageIndex >= 0) and (ImageIndex < ActionList.Images.Count) then
CopyImage(ActionList.Images, ImageIndex);
end;
end;
end;
{##############################################################################}
procedure THSSpeedButton.DoDialogChar(var Message: TCMDialogChar);
var
bWasDown: boolean;
begin
with Message do
begin
if IsAccel(CharCode, Caption) and Enabled and Visible and (Parent <> nil) and Parent.Showing then
begin
bWasDown := Down;
Down := true;
Paint;
Click;
Down := bWasDown;
Paint;
Result := 1;
end
else
inherited;
end;
end;
{##############################################################################}
procedure THSSpeedButton.Click;
begin
// if assigned(PopupMenu) then PopupMenu.PopUp(ClientToScreen(Point(0, Height)).X + Width, ClientToScreen(Point(0, Height)).Y);
if assigned(PopupMenu) then PopupMenu.PopUp(ClientToScreen(Point(0, Height)).X, ClientToScreen(Point(0, Height)).Y);
inherited; // just to make it public :-)
end;
{##############################################################################}
procedure THSSpeedButton.DoStep(Sender: TObject);
begin
if csDestroying in ComponentState then exit;
if bCursorOnButton then
inc(FHotTrackStep)
else
dec(FHotTrackStep);
if (0>=FHotTrackStep) or (FHotTrackStep>=cHotTrackSteps) then
begin
if bCursorOnButton then
FHotTrackStep:=cHotTrackSteps
else
FHotTrackStep := 0;
if Assigned(FTimer) and (FTimer.Enabled) then
begin
FTimer.Suspend;
end;
end;
if FTransparent then invalidate else paint;
end;
{##############################################################################}
procedure THSSpeedButton.SetColor(const Value: TColor);
begin
// inherited;
FColor := Value;
{ if FStyle in [bsGlass,bsModern] then} begin
FLightColor:=ColorBright(FColor,128);
FHotTrackColor:=ColorBright(FColor,$20);
FShadowColor:=ColorBright(FColor,-$80);
if GetGrayScale(FColor)<$606060 then
Font.Color:=clWhite
else
Font.Color:=clBlack;
end;
ColorWhenDown:=clNone
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.