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 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
|
{ $Id$}
{
/***************************************************************************
buttons.pp
----------
Component Library Code
Initial Revision : Sun Mar 28 23:15:32 CST 1999
Revised: Sat Jul 3 1999
***************************************************************************/
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit Buttons;
{$mode objfpc}{$H+}
interface
{$ifdef Trace}
{$ASSERTIONS ON}
{$endif}
uses
Types, Classes, SysUtils, Math,
// LCL
LCLType, LCLProc, LCLIntf, LCLStrConsts, LResources, Graphics, ImgList, ActnList,
Controls, StdCtrls, LMessages, Forms, Themes, Menus, ImageListCache,
// LazUtils
GraphType, LazUtilities;
type
TButtonLayout =
(
blGlyphLeft,
blGlyphRight,
blGlyphTop,
blGlyphBottom
);
TButtonState =
(
bsUp, // button is up
bsDisabled, // button disabled (grayed)
bsDown, // button is down
bsExclusive,// button is the only down in his group
bsHot // button is under mouse
);
TButtonImage = idButtonOk..idButtonNoToAll;
{
TNumGlyphs holds the number of glyphs in an image.
If we change this the code in SetNumGlyphs for @link(TCustomSpeedButton)
needs to be changed
}
TNumGlyphs = 1..5;
{ TButtonGlyph }
TGlyphTransparencyMode = (
gtmGlyph, // transparency is defined by the glyph itself (bitbtn)
gtmOpaque, // transparent = false is defined by the owner (speedbutton)
gtmTransparent // transparent = true
);
TButtonGlyph = class(TObject, IUnknown, IImageCacheListener)
private
FIsDesigning: Boolean;
FShowMode: TGlyphShowMode;
FImageIndexes: array[TButtonState] of Integer;
FImages: TCustomImageList;
FExternalImages: TCustomImageList;
FExternalImageIndexes: array[TButtonState] of Integer;
FExternalImageWidth: Integer;
FLCLGlyphResourceName: string;
FOriginal: TBitmap;
FNumGlyphs: TNumGlyphs;
FOnChange: TNotifyEvent;
FImagesCache: TImageListCache;
FTransparentMode: TGlyphTransparencyMode; // set by our owner to indicate that the glyphbitmap should be transparent
FLCLGlyphName: string;
function GetExternalImageIndex(AState: TButtonState): Integer;
function GetHeight: Integer;
function GetNumGlyphs: TNumGlyphs;
function GetWidth: Integer;
procedure ResetExternalImageIndexes;
procedure SetExternalImageIndex(AState: TButtonState; const AExternalImageIndex: Integer);
procedure SetExternalImages(const AExternalImages: TCustomImageList);
procedure SetExternalImageWidth(const AExternalImageWidth: Integer);
procedure SetGlyph(Value: TBitmap);
procedure SetNumGlyphs(Value: TNumGlyphs);
procedure SetShowMode(const AValue: TGlyphShowMode);
procedure ClearImages;
procedure ClearLCLGlyph;
procedure SetLCLGlyphName(const ALCLGlyphName: string);
public
// IUnknown
function QueryInterface(constref iid: TGuid; out obj): LongInt; {$IFDEF WINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
function _AddRef: LongInt; {$IFDEF WINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
function _Release: LongInt; {$IFDEF WINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
// IImageCacheListener
procedure CacheSetImageList(AImageList: TCustomImageList);
procedure CacheSetImageIndex(AIndex, AImageIndex: Integer);
protected
function CanShow: Boolean;
function CanShowGlyph: Boolean;
procedure DoChange; virtual;
procedure GlyphChanged(Sender: TObject);
procedure SetTransparentMode(AValue: TGlyphTransparencyMode);
property TransparentMode: TGlyphTransparencyMode read FTransparentMode;
public
constructor Create;
destructor Destroy; override;
procedure GetImageIndexAndEffect(State: TButtonState;
APPI: Integer; const ACanvasScaleFactor: Double;
out AImageResolution: TScaledImageListResolution;
out AIndex: Integer; out AEffect: TGraphicsDrawEffect);
function Draw(Canvas: TCanvas; const Client: TRect; const Offset: TPoint;
State: TButtonState; Transparent: Boolean;
BiDiFlags: Longint): TRect;
function Draw(Canvas: TCanvas; const Client: TRect; const Offset: TPoint;
State: TButtonState; Transparent: Boolean;
BiDiFlags, PPI: Longint; const ScaleFactor: Double): TRect;
procedure Refresh;
property Glyph: TBitmap read FOriginal write SetGlyph;
property IsDesigning: Boolean read FIsDesigning write FIsDesigning;
property NumGlyphs: TNumGlyphs read GetNumGlyphs write SetNumGlyphs;
property Images: TCustomImageList read FImages;
property LCLGlyphName: string read FLCLGlyphName write SetLCLGlyphName;
property ExternalImages: TCustomImageList read FExternalImages write SetExternalImages;
property ExternalImageWidth: Integer read FExternalImageWidth write SetExternalImageWidth;
property ExternalImageIndex: Integer index bsUp read GetExternalImageIndex write SetExternalImageIndex;
property ExternalHotImageIndex: Integer index bsHot read GetExternalImageIndex write SetExternalImageIndex;
property ExternalDisabledImageIndex: Integer index bsDisabled read GetExternalImageIndex write SetExternalImageIndex;
property ExternalPressedImageIndex: Integer index bsDown read GetExternalImageIndex write SetExternalImageIndex;
property ExternalSelectedImageIndex: Integer index bsExclusive read GetExternalImageIndex write SetExternalImageIndex;
property Width: Integer read GetWidth;
property Height: Integer read GetHeight;
property ShowMode: TGlyphShowMode read FShowMode write SetShowMode;
public
property OnChange: TNotifyEvent read FOnChange write FOnChange;
end;
{ TCustomBitBtn }
// when adding items here, also update TBitBtn.GetCaptionOfKind
TBitBtnKind = (bkCustom, bkOK, bkCancel, bkHelp, bkYes, bkNo,
bkClose, bkAbort, bkRetry, bkIgnore, bkAll,
bkNoToAll, bkYesToAll);
TBitBtnKinds = set of TBitBtnKind;
TCustomBitBtn = class(TCustomButton)
private
FDefaultCaption: Boolean;
FKind: TBitBtnKind;
FLayout: TButtonLayout;
FMargin: integer;
FSpacing: Integer;
FImageChangeLink: TChangeLink;
function GetGlyph: TBitmap;
function GetGlyphShowMode: TGlyphShowMode;
function GetNumGlyphs: Integer;
procedure ImageListChange(Sender: TObject);
function IsGlyphStored: Boolean;
procedure SetGlyph(AValue: TBitmap);
procedure SetGlyphShowMode(const AValue: TGlyphShowMode);
procedure SetKind(AValue: TBitBtnKind);
procedure SetLayout(AValue: TButtonLayout);
procedure SetMargin(const AValue: integer);
procedure SetNumGlyphs(AValue: Integer);
procedure SetSpacing(AValue: Integer);
procedure RealizeKind(ForceDefaults: Boolean);
procedure SetDefaultCaption(const AValue: Boolean);
//Return the caption associated with the aKind value.
function GetCaptionOfKind(AKind: TBitBtnKind): String;
function GetImages: TCustomImageList;
procedure SetImages(const aImages: TCustomImageList);
function GetImageIndex(AState: TButtonState): TImageIndex;
procedure SetImageIndex(AState: TButtonState; const AImageIndex: TImageIndex);
function GetImageWidth: Integer;
procedure SetImageWidth(const aImageWidth: Integer);
protected
FButtonGlyph: TButtonGlyph;
class procedure WSRegisterClass; override;
procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
procedure GlyphChanged(Sender: TObject);
procedure InitializeWnd; override;
function IsCaptionStored: Boolean;
procedure Loaded; override;
procedure Notification(AComponent: TComponent;
Operation: TOperation); override;
procedure TextChanged; override;
class function GetControlClassDefaultSize: TSize; override;
procedure CMAppShowBtnGlyphChanged(var Message: TLMessage); message CM_APPSHOWBTNGLYPHCHANGED;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure Click; override;
procedure LoadGlyphFromResourceName(Instance: TLCLHandle; const AName: String);
procedure LoadGlyphFromLazarusResource(const AName: String);
procedure LoadGlyphFromStock(idButton: Integer); // not DPI-aware, uses widgetset themed icons if available
procedure LoadGlyphFromResource(idButton: TButtonImage); // DPI-aware
function CanShowGlyph(const AWithShowMode: Boolean = False): Boolean;
public
property Caption stored IsCaptionStored;
property DefaultCaption: Boolean read FDefaultCaption write SetDefaultCaption default False;
property DisabledImageIndex: TImageIndex index bsDisabled read GetImageIndex write SetImageIndex default -1;
property Glyph: TBitmap read GetGlyph write SetGlyph stored IsGlyphStored;
property NumGlyphs: Integer read GetNumGlyphs write SetNumGlyphs default 1;
property HotImageIndex: TImageIndex index bsHot read GetImageIndex write SetImageIndex default -1;
property Images: TCustomImageList read GetImages write SetImages;
property ImageIndex: TImageIndex index bsUp read GetImageIndex write SetImageIndex default -1;
property ImageWidth: Integer read GetImageWidth write SetImageWidth default 0;
property Kind: TBitBtnKind read FKind write SetKind default bkCustom;
property Layout: TButtonLayout read FLayout write SetLayout default blGlyphLeft;
property Margin: integer read FMargin write SetMargin default -1;
property PressedImageIndex: TImageIndex index bsDown read GetImageIndex write SetImageIndex default -1;
// property SelectedImageIndex: TImageIndex index bsExclusive read GetImageIndex write SetImageIndex default -1;
property Spacing: Integer read FSpacing write SetSpacing default 4;
property GlyphShowMode: TGlyphShowMode read GetGlyphShowMode write SetGlyphShowMode default gsmApplication;
end;
{ TBitBtn }
{ To set custom bitbtn glyphs for the whole application, see below for
GetDefaultBitBtnGlyph }
TBitBtn = class(TCustomBitBtn)
published
property Action;
property Align;
property Anchors;
property AutoSize;
property BidiMode;
property BorderSpacing;
property Cancel;
property Caption;
property Color;
property Constraints;
property Default;
property DefaultCaption;
property DisabledImageIndex;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Font;
property Glyph;
property GlyphShowMode;
property HotImageIndex;
property Kind;
property Layout;
property Margin;
property ModalResult;
property NumGlyphs;
property Images;
property ImageIndex;
property ImageWidth;
property ParentBidiMode;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property PressedImageIndex;
// property SelectedImageIndex;
property ShowHint;
property Spacing;
property TabOrder;
property TabStop;
property Visible;
property OnChangeBounds;
property OnClick;
property OnContextPopup;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDrag;
property OnUTF8KeyPress;
end;
{ TSpeedButtonActionLink }
TSpeedButtonActionLink = class(TControlActionLink)
protected
procedure AssignClient(AClient: TObject); override;
procedure SetGroupIndex(Value: Integer); override;
procedure SetChecked(Value: Boolean); override;
procedure SetImageIndex(Value: Integer); override;
public
function IsCheckedLinked: Boolean; override;
function IsGroupIndexLinked: Boolean; override;
function IsImageIndexLinked: Boolean; override;
end;
{ TCustomSpeedButton }
TCustomSpeedButton = class(TGraphicControl)
private
FGlyph: TButtonGlyph;
FGroupIndex: Integer;
FImageChangeLink: TChangeLink;
FLastDrawDetails: TThemedElementDetails;
FLayout: TButtonLayout;
FMargin: integer;
FSpacing: integer;
FShortcut: TShortCut;
FShowAccelChar: boolean;
FShowCaption: boolean;
FAllowAllUp: Boolean;
FDown: Boolean;
FDownLoaded : Boolean;// value of Down set during loading
FDragging: Boolean;
FFlat: Boolean;
FMouseInControl: Boolean;
FAlignment: TAlignment;
function GetGlyph: TBitmap;
procedure ImageListChange(Sender: TObject);
function IsGlyphStored: Boolean;
procedure SetShowCaption(const AValue: boolean);
procedure UpdateExclusive;
function GetTransparent: Boolean;
procedure SetAlignment(Value: TAlignment);
procedure SetAllowAllUp(Value: Boolean);
procedure SetGlyph(Value: TBitmap);
procedure SetLayout(const Value: TButtonLayout);
procedure SetShowAccelChar(Value: boolean);
procedure SetTransparent(const AValue: boolean);
procedure CMButtonPressed(var Message: TLMessage); message CM_BUTTONPRESSED;
procedure CMEnabledChanged(var Message: TLMessage); message CM_ENABLEDCHANGED;
private
procedure WMLButtonDown(Var Message: TLMLButtonDown); message LM_LBUTTONDOWN;
procedure WMLButtonUp(var Message: TLMLButtonUp); message LM_LBUTTONUP;
procedure WMLButtonDBLCLK(Var Message: TLMLButtonDblClk); message LM_LBUTTONDBLCLK;
function GetImages: TCustomImageList;
procedure SetImages(const aImages: TCustomImageList);
function GetImageIndex(AState: TButtonState): TImageIndex;
procedure SetImageIndex(AState: TButtonState; const AImageIndex: TImageIndex);
function GetImageWidth: Integer;
procedure SetImageWidth(const aImageWidth: Integer);
protected
FState: TButtonState;
class procedure WSRegisterClass; override;
function ButtonGlyph: TButtonGlyph;
function GetNumGlyphs: Integer;
procedure GlyphChanged(Sender: TObject); virtual;
function DialogChar(var Message: TLMKey): boolean; override;
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean); override;
procedure MeasureDraw(Draw: boolean; PaintRect: TRect;
out PreferredWidth, PreferredHeight: integer);
procedure MouseEnter; override;
procedure MouseLeave; override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer); override;
procedure MouseMove(Shift: TShiftState; X, Y: Integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer); override;
procedure Notification(AComponent: TComponent;
Operation: TOperation); override;
procedure Paint; override;
procedure PaintBackground(var PaintRect: TRect); virtual;
procedure SetDown(Value: Boolean);
procedure SetGroupIndex(const Value: Integer);
procedure SetFlat(const Value: Boolean);
procedure SetMargin(const Value: integer);
procedure SetNumGlyphs(Value: integer);
procedure SetSpacing(const Value: integer);
procedure RealSetText(const Value: TCaption); override;
procedure UpdateState(InvalidateOnChange: boolean); virtual;
function GetDrawDetails: TThemedElementDetails; virtual;
property MouseInControl: Boolean read FMouseInControl;
procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
function GetActionLinkClass: TControlActionLinkClass; override;
class function GetControlClassDefaultSize: TSize; override;
procedure Loaded; override;
protected
function GetGlyphSize(Drawing: boolean; PaintRect: TRect): TSize; virtual;
function GetTextSize(Drawing: boolean; PaintRect: TRect): TSize; virtual;
function DrawGlyph(ACanvas: TCanvas; const AClient: TRect; const AOffset: TPoint;
AState: TButtonState; ATransparent: Boolean; BiDiFlags: Longint): TRect; virtual;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function FindDownButton: TCustomSpeedButton;
procedure Click; override; // make Click public
procedure LoadGlyphFromResourceName(Instance: TLCLHandle; const AName: String);
procedure LoadGlyphFromLazarusResource(const AName: String);
public
property Alignment: TAlignment read FAlignment write SetAlignment default taCenter;
property AllowAllUp: Boolean read FAllowAllUp write SetAllowAllUp default false;
property Color default clBtnFace;
property DisabledImageIndex: TImageIndex index bsDisabled read GetImageIndex write SetImageIndex default -1;
property Down: Boolean read FDown write SetDown default false;
property Flat: Boolean read FFlat write SetFlat default false;
property Glyph: TBitmap read GetGlyph write SetGlyph stored IsGlyphStored;
property GroupIndex: Integer read FGroupIndex write SetGroupIndex default 0;
property HotImageIndex: TImageIndex index bsHot read GetImageIndex write SetImageIndex default -1;
property Images: TCustomImageList read GetImages write SetImages;
property ImageIndex: TImageIndex index bsUp read GetImageIndex write SetImageIndex default -1;
property ImageWidth: Integer read GetImageWidth write SetImageWidth default 0;
property Layout: TButtonLayout read FLayout write SetLayout default blGlyphLeft;
property Margin: integer read FMargin write SetMargin default -1;
property NumGlyphs: Integer read GetNumGlyphs write SetNumGlyphs default 1;
property PressedImageIndex: TImageIndex index bsDown read GetImageIndex write SetImageIndex default -1;
property SelectedImageIndex: TImageIndex index bsExclusive read GetImageIndex write SetImageIndex default -1;
property ShowAccelChar: boolean read FShowAccelChar write SetShowAccelChar default true;
property ShowCaption: boolean read FShowCaption write SetShowCaption default true;
property Spacing: integer read FSpacing write SetSpacing default 4;
property Transparent: Boolean read GetTransparent write SetTransparent default true;
end;
{ TSpeedButton }
TSpeedButton = class(TCustomSpeedButton)
published
property Action;
property Align;
property Alignment;
property AllowAllUp;
property Anchors;
property AutoSize;
property BidiMode;
property BorderSpacing;
property Constraints;
property Caption;
property Color;
property DisabledImageIndex;
property Down;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Flat;
property Font;
property Glyph;
property GroupIndex;
property HotImageIndex;
property Images;
property ImageIndex;
property ImageWidth;
property Layout;
property Margin;
property NumGlyphs;
property PressedImageIndex;
property SelectedImageIndex;
property Spacing;
property Transparent;
property Visible;
property ShowCaption;
property ShowHint;
property ParentBidiMode;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property OnClick;
property OnContextPopup;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnPaint;
property OnResize;
property OnStartDrag;
property OnChangeBounds;
end;
{ To override the default TBitBtn glyphs set GetDefaultBitBtnGlyph below.
Example:
function GetBitBtnGlyph(Kind: TBitBtnKind): TBitmap;
begin
if Kind in [bkOK, bkCancel] then begin
Result:=TBitmap.Create;
case Kind of
bkOk: Result.Assign(MyOkGlyph);
bkCancel: Result.Assign(MyCancelGlyph);
end;
end else
Result:=nil;
end;
}
type
TGetDefaultBitBtnGlyph = function(Kind: TBitBtnKind; var Handled: Boolean): TBitmap;
var
GetDefaultBitBtnGlyph: TGetDefaultBitBtnGlyph = nil;
function GetLCLDefaultBtnGlyph(Kind: TBitBtnKind): TGraphic;
procedure LoadGlyphFromResourceName(AGlyph: TButtonGlyph; Instance: TLCLHandle; const AName: String);
procedure LoadGlyphFromLazarusResource(AGlyph: TButtonGlyph; const AName: String);
procedure LoadGlyphFromStock(AGlyph: TButtonGlyph; idButton: Integer);
procedure LoadGlyphFromResource(AGlyph: TButtonGlyph; idButton: Integer); // DPI-aware
// helper functions (search LCLType for idButton)
function GetButtonCaption(idButton: Integer): String;
function GetDefaultButtonIcon(idButton: Integer; ScalePercent: Integer = 100): TCustomBitmap;
function GetButtonIcon(idButton: Integer): TCustomBitmap;
function GetButtonImageIndex(idButton: TButtonImage): Integer; // DPI-aware: image index for the LCLGlyphs image list
function BidiAdjustButtonLayout(IsRightToLeft: Boolean; Layout: TButtonLayout): TButtonLayout;
function dbgs(Kind: TBitBtnKind): string; overload;
procedure Register;
const
BitBtnModalResults: array[TBitBtnKind] of TModalResult = (
0, mrOK, mrCancel, 0, mrYes, mrNo,
mrClose, mrAbort, mrRetry, mrIgnore, mrAll,
mrNoToAll, mrYesToAll);
BitBtnImages: array[TBitBtnKind] of Longint = (
idButtonBase, idButtonOk, idButtonCancel, idButtonHelp, idButtonYes,
idButtonNo, idButtonClose, idButtonAbort, idButtonRetry, idButtonIgnore,
idButtonAll, idButtonNoToAll, idButtonYesToAll);
BitBtnResNames: array[TButtonImage] of String =
(
{idButtonOk } 'btn_ok',
{idButtonCancel } 'btn_cancel',
{idButtonHelp } 'btn_help',
{idButtonYes } 'btn_yes',
{idButtonNo } 'btn_no',
{idButtonClose } 'btn_close',
{idButtonAbort } 'btn_abort',
{idButtonRetry } 'btn_retry',
{idButtonIgnore } 'btn_ignore',
{idButtonAll } 'btn_all',
{idButtonYesToAll} 'btn_all',
{idButtonNoToAll } 'btn_no'
);
implementation
{$R btn_icons.res}
uses
WSButtons;
function GetLCLDefaultBtnGlyph(Kind: TBitBtnKind): TGraphic;
begin
Result := GetDefaultButtonIcon(BitBtnImages[Kind]);
end;
function GetDefaultButtonIcon(idButton: Integer;
ScalePercent: Integer): TCustomBitmap;
begin
Result := nil;
if (idButton < Low(BitBtnResNames)) or (idButton > High(BitBtnResNames)) then
Exit;
if BitBtnResNames[idButton] = '' then
Exit;
Result := GetDefaultGlyph(BitBtnResNames[idButton], ScalePercent);
end;
procedure LoadGlyphFromResourceName(AGlyph: TButtonGlyph; Instance: TLCLHandle; const AName: String);
var
C: TCustomBitmap;
begin
if AName = '' then
C := nil
else
C := CreateBitmapFromResourceName(Instance, AName);
try
AGlyph.Glyph.Assign(C);
finally
C.Free;
end;
end;
procedure LoadGlyphFromLazarusResource(AGlyph: TButtonGlyph; const AName: String);
var
C: TCustomBitmap;
begin
if AName = '' then
C := nil
else
C := CreateBitmapFromLazarusResource(AName);
try
AGlyph.Glyph.Assign(C);
finally
C.Free;
end;
end;
procedure LoadGlyphFromStock(AGlyph: TButtonGlyph; idButton: Integer);
var
C: TCustomBitmap;
begin
C := GetButtonIcon(idButton);
try
AGlyph.Glyph.Assign(C);
finally
C.Free;
end;
end;
procedure LoadGlyphFromResource(AGlyph: TButtonGlyph; idButton: Integer);
begin
if not((Low(TButtonImage)<=idButton) and (idButton<=High(TButtonImage))) then
Exit;
AGlyph.LCLGlyphName := BitBtnResNames[idButton];
end;
function GetButtonCaption(idButton: Integer): String;
begin
case idButton of
idButtonOk : Result := rsmbOK;
idButtonCancel : Result := rsmbCancel;
idButtonHelp : Result := rsmbHelp;
idButtonYes : Result := rsmbYes;
idButtonNo : Result := rsmbNo;
idButtonClose : Result := rsmbClose;
idButtonAbort : Result := rsmbAbort;
idButtonRetry : Result := rsmbRetry;
idButtonIgnore : Result := rsmbIgnore;
idButtonAll : Result := rsmbAll;
idButtonYesToAll : Result := rsmbYesToAll;
idButtonNoToAll : Result := rsmbNoToAll;
idButtonOpen : Result := rsmbOpen;
idButtonSave : Result := rsmbSave;
idButtonShield : Result := rsmbUnlock;
else
Result := '?';
end;
end;
function GetButtonIcon(idButton: Integer): TCustomBitmap;
var
BitmapHandle, MaskHandle: HBitmap;
begin
if ThemeServices.GetStockImage(idButton, BitmapHandle, MaskHandle) then
begin
Result := TBitmap.Create;
Result.Handle := BitmapHandle;
if MaskHandle <> 0 then
Result.MaskHandle := MaskHandle;
end
else
Result := GetDefaultButtonIcon(idButton);
end;
function GetButtonImageIndex(idButton: TButtonImage): Integer;
begin
Result := LCLGlyphs.GetImageIndex(BitBtnResNames[idButton]);
end;
const
BtnBidiLayout: array[Boolean, TButtonLayout] of TButtonLayout =
(
(
blGlyphLeft,
blGlyphRight,
blGlyphTop,
blGlyphBottom
),
(
blGlyphRight,
blGlyphLeft,
blGlyphTop,
blGlyphBottom
)
);
function BidiAdjustButtonLayout(IsRightToLeft: Boolean; Layout: TButtonLayout): TButtonLayout;
begin
Result := BtnBidiLayout[IsRightToLeft, Layout];
end;
function dbgs(Kind: TBitBtnKind): string;
begin
Result:='';
writestr(Result,Kind);
end;
procedure Register;
begin
RegisterComponents('Additional',[TBitBtn,TSpeedButton]);
end;
{$I bitbtn.inc}
{$I buttonglyph.inc}
{$I speedbutton.inc}
end.
|