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 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
|
{
Double Commander components
-------------------------------------------------------------------------
Toolbar panel class
Copyright (C) 2006-2019 Alexander Koblov (alexx2000@mail.ru)
contributors:
2012 Przemyslaw Nagay (cobines@gmail.com)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program 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
General Public License for more details.
You should have received a copy of the GNU General Public License
in a file called COPYING along with this program; if not, write to
the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
02139, USA.
}
unit KASToolBar;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, ComCtrls,
Graphics, Dialogs, ExtCtrls, Buttons, FileUtil, Menus,
DCXmlConfig, KASToolItems, LCLVersion;
type
TOnToolButtonClick = procedure (Sender: TObject) of object;
TOnToolButtonMouseUpDown = procedure (Sender: TObject; Button: TMouseButton; Shift:TShiftState; X,Y:Integer) of object;
TOnToolButtonMouseMove = procedure (Sender: TObject; Shift:TShiftState; X,Y:Integer; NumberOfButton: Integer) of object;
TOnToolButtonDragOver = procedure(Sender, Source: TObject; X,Y: Integer;
State: TDragState; var Accept: Boolean; NumberOfButton: Integer) of object;
TOnToolButtonDragDrop = procedure(Sender, Source: TObject; X, Y: Integer) of object;
TOnToolButtonEndDrag = procedure(Sender, Target: TObject; X,Y: Integer) of object;
TOnLoadButtonGlyph = function (ToolItem: TKASToolItem; iIconSize: Integer; clBackColor: TColor): TBitmap of object;
TOnToolItemExecute = procedure (ToolItem: TKASToolItem) of object;
TOnConfigLoadItem = function (Config: TXmlConfig; Node: TXmlNode): TKASToolItem of object;
TOnToolItemShortcutsHint = function (Sender: TObject; ToolItem: TKASNormalItem): String of object;
TTypeOfConfigurationLoad = (tocl_FlushCurrentToolbarContent, tocl_AddToCurrentToolbarContent);
TKASToolBar = class;
{ TKASToolButton }
TKASToolButton = class(TSpeedButton)
private
FOverlay: TBitmap;
FToolItem: TKASToolItem;
function GetToolBar: TKASToolBar;
protected
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean); override;
function DrawGlyph(ACanvas: TCanvas; const AClient: TRect; const AOffset: TPoint;
AState: TButtonState; ATransparent: Boolean; BiDiFlags: Longint): TRect; override;
procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
public
constructor Create(AOwner: TComponent; Item: TKASToolItem); reintroduce;
destructor Destroy; override;
procedure Click; override;
public
property ToolBar: TKASToolBar read GetToolBar;
property ToolItem: TKASToolItem read FToolItem;
end;
{ TKASToolDivider }
TKASToolDivider = class(TKASToolButton)
protected
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean); override;
procedure Paint; override;
end;
{ TKASToolBar }
TKASToolBar = class(TToolBar, IToolOwner)
private
FButtonHeight: Integer;
FButtonWidth: Integer;
FFlat: Boolean;
FGlyphSize: Integer;
FRadioToolBar: Boolean;
FRowHeight, FRowWidth: Integer;
FShowDividerAsButton: Boolean;
FToolItemExecutors: TFPList;
FToolItems: TKASToolBarItems;
FToolPopupMenu: TPopupMenu;
FOwnsToolItems: Boolean;
{$if lcl_fullversion < 1010000}
FUpdateCount: Integer;
{$endif}
FOnToolButtonClick: TOnToolButtonClick;
FOnToolButtonMouseDown: TOnToolButtonMouseUpDown;
FOnToolButtonMouseUp: TOnToolButtonMouseUpDown;
FOnToolButtonMouseMove: TOnToolButtonMouseMove;
FOnToolButtonDragOver: TOnToolButtonDragOver;
FOnToolButtonDragDrop: TOnToolButtonDragDrop;
FOnToolButtonEndDrag: TOnToolButtonEndDrag;
FOnLoadButtonGlyph: TOnLoadButtonGlyph;
FOnLoadButtonOverlay: TOnLoadButtonGlyph;
FOnToolItemExecute: TOnToolItemExecute;
FOnToolItemShortcutsHint: TOnToolItemShortcutsHint;
FKASToolBarFlags: TToolBarFlags;
FResizeButtonsNeeded: Boolean;
procedure AssignToolButtonProperties(ToolButton: TKASToolButton);
procedure ClearExecutors;
function CreateButton(Item: TKASToolItem): TKASToolButton;
function ExecuteToolItem(Item: TKASToolItem): Boolean;
function FindButton(Button: TKASToolButton): Integer;
function GetToolItemShortcutsHint(Item: TKASToolItem): String;
function LoadBtnIcon(IconPath: String): TBitMap;
function GetButton(Index: Integer): TKASToolButton;
procedure InsertButton(InsertAt: Integer; ToolButton: TKASToolButton);
procedure SetButtonHeight(const AValue: Integer);
procedure SetButtonWidth(const AValue: Integer);
procedure SetChangePath(const {%H-}AValue: String);
procedure SetEnvVar(const {%H-}AValue: String);
procedure SetFlat(const AValue: Boolean);
procedure SetGlyphSize(const AValue: Integer);
procedure ShowMenu(ToolButton: TKASToolButton);
procedure ToolButtonClick(Sender: TObject);
procedure ToolButtonMouseDown(Sender: TObject; Button: TMouseButton; Shift:TShiftState; X,Y:Integer);
procedure ToolButtonMouseUp(Sender: TObject; Button: TMouseButton; Shift:TShiftState; X,Y:Integer);
procedure ToolButtonMouseMove(Sender: TObject; Shift:TShiftState; X,Y:Integer);
procedure ToolButtonDragOver(Sender, Source: TObject; X,Y: Integer; State: TDragState; var Accept: Boolean);
procedure ToolButtonDragDrop(Sender, Source: TObject; X,Y: Integer);
procedure ToolButtonEndDrag(Sender, Target: TObject; X, Y: Integer);
procedure ToolItemLoaded(Item: TKASToolItem);
procedure ToolMenuClicked(Sender: TObject);
procedure UpdateButtonsTags;
protected
procedure CalculatePreferredSize(var PreferredWidth,
PreferredHeight: Integer; WithThemeSpace: Boolean); override;
procedure AlignControls(AControl: TControl; var RemainingClientRect: TRect); override;
procedure FontChanged(Sender: TObject); override;
function WrapButtons(UseWidth: integer;
out NewWidth, NewHeight: Integer; Simulate: boolean): Boolean;
procedure ResizeButtons;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
function AddButton(Item: TKASToolItem): TKASToolButton;
procedure AddToolItemExecutor(ToolItemClass: TKASToolItemClass;
ExecuteFunction: TOnToolItemExecute);
procedure Clear;
procedure ClickItem(ToolItemID: String); overload;
function InsertButton(InsertAt: Integer; Item: TKASToolItem): TKASToolButton;
function InsertButton(InsertAt: TKASToolButton; Item: TKASToolItem): TKASToolButton;
procedure MoveButton(ButtonIndex, MovePosition: Integer);
procedure MoveButton(SourceButton: TKASToolButton; TargetToolBar: TKASToolBar; InsertAt: TKASToolButton);
procedure RemoveButton(Index: Integer);
procedure RemoveButton(Button: TKASToolButton);
procedure RemoveToolItemExecutor(ExecuteFunction: TOnToolItemExecute);
procedure UncheckAllButtons;
procedure UpdateIcon(ToolButton: TKASToolButton);
procedure UseItems(AItems: TKASToolBarItems);
procedure LoadConfiguration(Config: TXmlConfig; RootNode: TXmlNode;
Loader: TKASToolBarLoader; ConfigurationLoadType:TTypeOfConfigurationLoad);
procedure SaveConfiguration(Config: TXmlConfig; RootNode: TXmlNode);
procedure BeginUpdate; override;
procedure EndUpdate; override;
procedure SetButtonSize(NewButtonWidth, NewButtonHeight: Integer);
function PublicExecuteToolItem(Item: TKASToolItem): Boolean;
property Buttons[Index: Integer]: TKASToolButton read GetButton;
published
property OnLoadButtonGlyph : TOnLoadButtonGlyph read FOnLoadButtonGlyph write FOnLoadButtonGlyph;
property OnToolButtonClick: TOnToolButtonClick read FOnToolButtonClick write FOnToolButtonClick;
property OnLoadButtonOverlay: TOnLoadButtonGlyph read FOnLoadButtonOverlay write FOnLoadButtonOverlay;
property OnToolButtonMouseDown: TOnToolButtonMouseUpDown read FOnToolButtonMouseDown write FOnToolButtonMouseDown;
property OnToolButtonMouseUp: TOnToolButtonMouseUpDown read FOnToolButtonMouseUp write FOnToolButtonMouseUp;
property OnToolButtonMouseMove: TOnToolButtonMouseMove read FOnToolButtonMouseMove write FOnToolButtonMouseMove;
property OnToolButtonDragDrop: TOnToolButtonDragDrop read FOnToolButtonDragDrop write FOnToolButtonDragDrop;
property OnToolButtonEndDrag: TOnToolButtonEndDrag read FOnToolButtonEndDrag write FOnToolButtonEndDrag;
property OnToolButtonDragOver: TOnToolButtonDragOver read FOnToolButtonDragOver write FOnToolButtonDragOver;
property OnToolItemExecute: TOnToolItemExecute read FOnToolItemExecute write FOnToolItemExecute;
property OnToolItemShortcutsHint: TOnToolItemShortcutsHint read FOnToolItemShortcutsHint write FOnToolItemShortcutsHint;
property RadioToolBar: Boolean read FRadioToolBar write FRadioToolBar default False;
property Flat: Boolean read FFlat write SetFlat default False;
property GlyphSize: Integer read FGlyphSize write SetGlyphSize;
property ButtonHeight: Integer read FButtonHeight write SetButtonHeight default 22;
property ButtonWidth: Integer read FButtonWidth write SetButtonWidth default 23;
property ShowDividerAsButton: Boolean read FShowDividerAsButton write FShowDividerAsButton default False;
end;
procedure Register;
implementation
uses
Themes, Types, Math, ActnList, DCOSUtils;
type
PToolItemExecutor = ^TToolItemExecutor;
TToolItemExecutor = record
ToolItemClass: TKASToolItemClass;
ToolItemExecute: TOnToolItemExecute;
end;
procedure Register;
begin
RegisterComponents('KASComponents',[TKASToolBar]);
end;
{ TKASToolBar }
procedure TKASToolBar.InsertButton(InsertAt: Integer; ToolButton: TKASToolButton);
begin
if InsertAt < 0 then
InsertAt:= 0;
if InsertAt > ButtonList.Count then
InsertAt:= ButtonList.Count;
ButtonList.Insert(InsertAt, ToolButton);
FToolItems.Insert(InsertAt, ToolButton.ToolItem);
UpdateButtonsTags;
ResizeButtons;
end;
function TKASToolBar.InsertButton(InsertAt: TKASToolButton; Item: TKASToolItem): TKASToolButton;
var
Index: Integer;
begin
Index := ButtonList.IndexOf(InsertAt);
if Index < 0 then
Index := ButtonCount;
Result := InsertButton(Index, Item);
end;
procedure TKASToolBar.CalculatePreferredSize(var PreferredWidth,
PreferredHeight: Integer; WithThemeSpace: Boolean);
begin
WrapButtons(Width, PreferredWidth, PreferredHeight, True);
end;
procedure TKASToolBar.AlignControls(AControl: TControl; var RemainingClientRect: TRect);
var
NewWidth, NewHeight: integer;
begin
if tbfPlacingControls in FKASToolBarFlags then exit;
Include(FKASToolBarFlags, tbfPlacingControls);
DisableAlign;
try
AdjustClientRect(RemainingClientRect);
if IsVertical then
WrapButtons(Height, NewWidth, NewHeight, False)
else
WrapButtons(Width, NewWidth, NewHeight, False);
finally
Exclude(FKASToolBarFlags, tbfPlacingControls);
EnableAlign;
end;
end;
procedure TKASToolBar.FontChanged(Sender: TObject);
begin
inherited FontChanged(Sender);
ResizeButtons;
end;
function TKASToolBar.WrapButtons(UseWidth: integer;
out NewWidth, NewHeight: Integer; Simulate: boolean): Boolean;
var
ARect: TRect;
x: Integer;
y: Integer;
CurControl: TControl;
StartX, StartY: Integer;
procedure CalculatePosition;
var
NewBounds: TRect;
begin
if IsVertical then
begin
NewBounds := Bounds(x, y, FRowWidth, CurControl.Height);
repeat
if (not Wrapable) or
(NewBounds.Bottom <= ARect.Bottom) or
(NewBounds.Top = StartY) then
begin
// control fits into the column
x := NewBounds.Left;
y := NewBounds.Top;
break;
end;
// try next column
NewBounds.Top := StartY;
NewBounds.Bottom := NewBounds.Top + CurControl.Height;
inc(NewBounds.Left, FRowWidth);
inc(NewBounds.Right, FRowWidth);
until false;
end
else begin
NewBounds := Bounds(x, y, CurControl.Width, FRowHeight);
repeat
if (not Wrapable) or
(NewBounds.Right <= ARect.Right) or
(NewBounds.Left = StartX) then
begin
// control fits into the row
x := NewBounds.Left;
y := NewBounds.Top;
break;
end;
// try next row
NewBounds.Left := StartX;
NewBounds.Right := NewBounds.Left + CurControl.Width;
inc(NewBounds.Top, FRowHeight);
inc(NewBounds.Bottom, FRowHeight);
until false;
end;
end;
var
CurClientRect: TRect;
AdjustClientFrame: TRect;
i: Integer;
w, h: Longint;
begin
Result := True;
NewWidth := 0;
NewHeight := 0;
DisableAlign;
BeginUpdate;
try
CurClientRect := ClientRect;
inc(CurClientRect.Right, UseWidth - Width);
ARect := CurClientRect;
AdjustClientRect(ARect);
AdjustClientFrame.Left := ARect.Left - CurClientRect.Left;
AdjustClientFrame.Top := ARect.Top - CurClientRect.Top;
AdjustClientFrame.Right := CurClientRect.Right - ARect.Right;
AdjustClientFrame.Bottom := CurClientRect.Bottom - ARect.Bottom;
//DebugLn(['TToolBar.WrapButtons ',DbgSName(Self),' ARect=',dbgs(ARect)]);
// important: top, left button must start in the AdjustClientRect top, left
// otherwise Toolbar.AutoSize=true will create an endless loop
StartX := ARect.Left;
StartY := ARect.Top;
x := StartX;
y := StartY;
for i := 0 to ButtonList.Count - 1 do
begin
CurControl := TControl(ButtonList[i]);
if not CurControl.IsControlVisible then
Continue;
CalculatePosition;
w := CurControl.Width;
h := CurControl.Height;
if (not Simulate) and ((CurControl.Left <> x) or (CurControl.Top <> y)) then
begin
CurControl.SetBounds(x,y,w,h); // Note: do not use SetBoundsKeepBase
end;
// adjust NewWidth, NewHeight
NewWidth := Max(NewWidth, x + w + AdjustClientFrame.Right);
NewHeight := Max(NewHeight, y + h + AdjustClientFrame.Bottom);
// step to next position
if IsVertical then
Inc(y, h)
else
Inc(x, w);
end;
finally
EndUpdate;
EnableAlign;
end;
end;
procedure TKASToolBar.ResizeButtons;
var
w, h: LongInt;
i: Integer;
CurControl: TControl;
begin
if FUpdateCount > 0 then
begin
FResizeButtonsNeeded := True;
Exit;
end;
InvalidatePreferredChildSizes;
FRowWidth := ButtonWidth;
FRowHeight := ButtonHeight; // Row height is at least initial button height
// First recalculate RowWidth & RowHeight
for i := 0 to ButtonList.Count - 1 do
begin
CurControl := TControl(ButtonList[i]);
w := ButtonWidth;
h := ButtonHeight;
CurControl.GetPreferredSize(w, h);
if FRowWidth < w then
FRowWidth := w;
if FRowHeight < h then
FRowHeight := h;
end;
FResizeButtonsNeeded := False;
// Now resize buttons.
DisableAlign;
BeginUpdate;
try
for i := 0 to ButtonList.Count - 1 do
begin
CurControl := TControl(ButtonList[i]);
if IsVertical then
begin
w := FRowWidth;
h := ButtonHeight;
end
else begin
w := ButtonWidth;
h := FRowHeight;
end;
CurControl.GetPreferredSize(w, h);
if (CurControl.Width <> w) or (CurControl.Height <> h) then
CurControl.SetBounds(CurControl.Left, CurControl.Top, w, h);
end;
InvalidatePreferredSize;
AdjustSize;
finally
EndUpdate;
EnableAlign;
end;
end;
procedure TKASToolBar.SaveConfiguration(Config: TXmlConfig; RootNode: TXmlNode);
var
Node: TXmlNode;
Item: TKASToolItem;
i: Integer;
begin
if ButtonCount > 0 then
begin
Node := Config.AddNode(RootNode, 'Row');
for i := 0 to ButtonCount - 1 do
begin
Item := TKASToolButton(Buttons[i]).ToolItem;
Item.Save(Config, Node);
end;
end;
end;
function TKASToolBar.LoadBtnIcon(IconPath: String): TBitMap;
var
picture: TPicture;
begin
if (IconPath = '') or (not mbFileExists(IconPath)) then Exit(nil);
Picture := TPicture.Create;
try
Picture.LoadFromFile(IconPath);
Result := TBitmap.Create;
Result.Assign(Picture.Bitmap);
finally
FreeAndNil(Picture);
end;
end;
procedure TKASToolBar.LoadConfiguration(Config: TXmlConfig; RootNode: TXmlNode;
Loader: TKASToolBarLoader; ConfigurationLoadType:TTypeOfConfigurationLoad);
var
Node: TXmlNode;
begin
BeginUpdate;
if ConfigurationLoadType=tocl_FlushCurrentToolbarContent then
begin
Clear;
end;
try
Node := Config.FindNode(RootNode, 'Row', False);
if Assigned(Node) then
Loader.Load(Config, Node, @ToolItemLoaded);
finally
EndUpdate;
end;
end;
procedure TKASToolBar.AssignToolButtonProperties(ToolButton: TKASToolButton);
begin
ToolButton.OnClick:= @ToolButtonClick;
ToolButton.OnMouseDown:= @ToolButtonMouseDown;
ToolButton.OnMouseUp:= @ToolButtonMouseUp;
ToolButton.OnMouseMove:= @ToolButtonMouseMove;
ToolButton.OnDragDrop:= @ToolButtonDragDrop;
ToolButton.OnDragOver:= @ToolButtonDragOver;
ToolButton.OnEndDrag:= @ToolButtonEndDrag;
end;
function TKASToolBar.GetToolItemShortcutsHint(Item: TKASToolItem): String;
begin
Result := '';
if Assigned(FOnToolItemShortcutsHint) and (Item is TKASNormalItem) then
Result := FOnToolItemShortcutsHint(Self, TKASNormalItem(Item));
end;
function TKASToolBar.GetButton(Index: Integer): TKASToolButton;
begin
Result:= TKASToolButton(ButtonList.Items[Index]);
end;
procedure TKASToolBar.SetChangePath(const AValue: String);
begin
end;
procedure TKASToolBar.SetEnvVar(const AValue: String);
begin
end;
procedure TKASToolBar.SetFlat(const AValue: Boolean);
var
I: Integer;
begin
FFlat:= AValue;
for I:= 0 to ButtonList.Count - 1 do
TKASToolButton(ButtonList.Items[I]).Flat:= FFlat;
end;
procedure TKASToolBar.SetGlyphSize(const AValue: Integer);
var
I: Integer;
begin
if FGlyphSize = AValue then Exit;
FGlyphSize:= AValue;
BeginUpdate;
try
for I := 0 to ButtonList.Count - 1 do
UpdateIcon(TKASToolButton(ButtonList[i]));
finally
EndUpdate;
end;
end;
procedure TKASToolBar.ShowMenu(ToolButton: TKASToolButton);
procedure MakeMenu(PopupMenu: TMenuItem; MenuItem: TKASMenuItem);
var
I: Integer;
Item: TKASToolItem;
PopupMenuItem: TMenuItem;
BitmapTmp: TBitmap = nil;
sText: String;
begin
for I := 0 to MenuItem.SubItems.Count - 1 do
begin
Item := MenuItem.SubItems.Items[I];
if Item is TKASSeparatorItem then
begin
PopupMenu.AddSeparator;
end
else
begin
PopupMenuItem := TMenuItem.Create(PopupMenu);
sText := Item.GetEffectiveText;
if sText = '' then
sText := Item.GetEffectiveHint;
PopupMenuItem.Caption := StringReplace(StringReplace(sText, #$0A, ' | ', [rfReplaceAll]), ' | ----', '', [rfReplaceAll]);
if Item is TKASNormalItem then
begin
if Assigned(FOnLoadButtonGlyph) then
BitmapTmp := FOnLoadButtonGlyph(Item, 16, clMenu);
if not Assigned(BitmapTmp) then
BitmapTmp := LoadBtnIcon(TKASNormalItem(Item).Icon);
PopupMenuItem.Bitmap := BitmapTmp;
FreeAndNil(BitmapTmp);
end;
PopupMenuItem.Tag := PtrInt(Item);
PopupMenuItem.OnClick := TNotifyEvent(@ToolMenuClicked);
PopupMenu.Add(PopupMenuItem);
if Item is TKASMenuItem then
MakeMenu(PopupMenuItem, TKASMenuItem(Item));
end;
end;
end;
var
Point: TPoint;
begin
FToolPopupMenu.Free;
FToolPopupMenu := TPopupMenu.Create(Self);
MakeMenu(FToolPopupMenu.Items, ToolButton.ToolItem as TKASMenuItem);
Point.x := ToolButton.Left;
Point.y := ToolButton.Top + ToolButton.Height;
Point := Self.ClientToScreen(Point);
FToolPopupMenu.PopUp(Point.x, Point.y);
end;
procedure TKASToolBar.ToolButtonClick(Sender: TObject);
var
Button: TKASToolButton;
begin
Button := Sender as TKASToolButton;
// Do not allow depressing down buttons.
if FRadioToolBar and not Button.Down then
Button.Down := True;
if not ExecuteToolItem(Button.ToolItem) then
begin
if Assigned(FOnToolButtonClick) then
FOnToolButtonClick(Button)
else if Button.ToolItem is TKASMenuItem then
begin
ShowMenu(Button);
end;
end;
end;
procedure TKASToolBar.ToolButtonMouseDown(Sender: TObject; Button: TMouseButton; Shift:TShiftState; X,Y:Integer);
begin
if Assigned(FOnToolButtonMouseDown) then
FOnToolButtonMouseDown(Sender, Button, Shift, X,Y);
end;
procedure TKASToolBar.ToolButtonMouseUp(Sender: TObject; Button: TMouseButton; Shift:TShiftState; X,Y:Integer);
begin
if Assigned(FOnToolButtonMouseUp) then
FOnToolButtonMouseUp(Sender, Button, Shift, X,Y);
end;
procedure TKASToolBar.ToolItemLoaded(Item: TKASToolItem);
begin
AddButton(Item);
end;
procedure TKASToolBar.ToolMenuClicked(Sender: TObject);
begin
ExecuteToolItem(TKASToolItem((Sender as TMenuItem).Tag));
end;
procedure TKASToolBar.ToolButtonMouseMove(Sender: TObject; Shift:TShiftState; X,Y:Integer);
begin
if Assigned(FOnToolButtonMouseMove) then
FOnToolButtonMouseMove(Sender, Shift, X,Y, (Sender as TSpeedButton).Tag);
end;
procedure TKASToolBar.ToolButtonDragOver(Sender, Source: TObject; X,Y: Integer; State: TDragState; var Accept: Boolean);
begin
if Assigned(FOnToolButtonDragOver) then
FOnToolButtonDragOver(Sender, Source, X,Y, State, Accept, (Sender as TSpeedButton).Tag);
end;
procedure TKASToolBar.ToolButtonDragDrop(Sender, Source: TObject; X,Y: Integer);
begin
if Assigned(FOnToolButtonDragDrop) then
FOnToolButtonDragDrop(Sender, Source, X, Y);
end;
procedure TKASToolBar.ToolButtonEndDrag(Sender, Target: TObject; X, Y: Integer);
begin
if Assigned(FOnToolButtonEndDrag) then
FOnToolButtonEndDrag(Sender, Target, X, Y);
end;
procedure TKASToolBar.MoveButton(ButtonIndex, MovePosition: Integer);
begin
ButtonList.Move(ButtonIndex, MovePosition);
FToolItems.Move(ButtonIndex, MovePosition);
UpdateButtonsTags;
ResizeButtons;
end;
procedure TKASToolBar.MoveButton(SourceButton: TKASToolButton; TargetToolBar: TKASToolBar; InsertAt: TKASToolButton);
var
Index: Integer;
begin
Index := FindButton(SourceButton);
if (Index <> -1) and (FToolItems[Index] = SourceButton.ToolItem) then
begin
SourceButton.FToolItem := nil;
TargetToolBar.InsertButton(InsertAt, FToolItems.ReleaseItem(Index));
ButtonList.Delete(Index);
Application.ReleaseComponent(SourceButton); // Free later
UpdateButtonsTags;
Resize;
end;
end;
procedure TKASToolBar.UpdateButtonsTags;
var
I: Integer;
begin
for I:= 0 to ButtonList.Count - 1 do
TKASToolButton(ButtonList.Items[I]).Tag:= I;
end;
procedure TKASToolBar.UpdateIcon(ToolButton: TKASToolButton);
var
Bitmap: TBitmap = nil;
begin
try
if Assigned(FOnLoadButtonGlyph) then
Bitmap := FOnLoadButtonGlyph(ToolButton.ToolItem, FGlyphSize, clBtnFace);
if not Assigned(Bitmap) and (ToolButton.ToolItem is TKASNormalItem) then
Bitmap := LoadBtnIcon(TKASNormalItem(ToolButton.ToolItem).Icon);
try
if Assigned(Bitmap) and Assigned(FOnLoadButtonOverlay) and (not (ToolButton.ToolItem is TKASSeparatorItem)) then
begin
FreeAndNil(ToolButton.FOverlay);
ToolButton.FOverlay := FOnLoadButtonOverlay(ToolButton.ToolItem, FGlyphSize div 2, clBtnFace);
end;
ToolButton.Glyph.Assign(Bitmap);
finally
Bitmap.Free;
end;
except
// Ignore
end;
end;
procedure TKASToolBar.UseItems(AItems: TKASToolBarItems);
var
i: Integer;
Button: TKASToolButton;
begin
if Assigned(AItems) then
begin
BeginUpdate;
Clear;
if FOwnsToolItems then
FToolItems.Free;
FToolItems := AItems;
FOwnsToolItems := False;
// Insert the existing items as buttons.
for i := 0 to FToolItems.Count - 1 do
begin
Button := CreateButton(FToolItems.Items[i]);
if Assigned(Button) then
ButtonList.Insert(ButtonCount, Button);
end;
UpdateButtonsTags;
ResizeButtons;
EndUpdate;
end;
end;
procedure TKASToolBar.Clear;
var
I: Integer;
begin
BeginUpdate;
for I := 0 to ButtonList.Count - 1 do
TKASToolButton(ButtonList.Items[I]).Free;
ButtonList.Clear;
if Assigned(FToolItems) then
FToolItems.Clear;
EndUpdate;
end;
procedure TKASToolBar.ClearExecutors;
var
I: Integer;
begin
for I := 0 to FToolItemExecutors.Count - 1 do
Dispose(PToolItemExecutor(FToolItemExecutors[I]));
FToolItemExecutors.Clear;
end;
procedure TKASToolBar.ClickItem(ToolItemID: String);
var
I: Integer;
Button: TKASToolButton;
NormalItem: TKASNormalItem;
begin
for I := 0 to ButtonList.Count - 1 do
begin
Button := TKASToolButton(ButtonList.Items[I]);
if Button.ToolItem is TKASNormalItem then
begin
NormalItem := TKASNormalItem(Button.ToolItem);
if NormalItem.ID = ToolItemID then
begin
Button.Click;
Break;
end;
if Button.ToolItem.CheckExecute(ToolItemID) then
Break;
end;
end;
end;
procedure TKASToolBar.SetButtonHeight(const AValue: Integer);
begin
SetButtonSize(ButtonWidth, AValue);
end;
procedure TKASToolBar.SetButtonWidth(const AValue: Integer);
begin
SetButtonSize(AValue, ButtonHeight);
end;
constructor TKASToolBar.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
FGlyphSize:= 16; // by default
FUpdateCount:= 0;
FButtonWidth := 23;
FButtonHeight := 22;
FKASToolBarFlags := [];
FToolItemExecutors := TFPList.Create;
FToolItems := TKASToolBarItems.Create;
FOwnsToolItems := True;
end;
function TKASToolBar.CreateButton(Item: TKASToolItem): TKASToolButton;
begin
if Assigned(Item) then
begin
if FOwnsToolItems then
Item.SetToolOwner(Self);
if Item is TKASSeparatorItem then
begin
Result := TKASToolDivider.Create(Self, Item);
end
else
begin
Result := TKASToolButton.Create(Self, Item);
Result.ShowHint := True;
Result.Caption := Item.GetEffectiveText;
Result.Hint := Item.GetEffectiveHint;
if ShowCaptions and (Result.Caption = '') then
Result.Caption := Result.Hint;
if Assigned(Item.Action) then
begin
Result.AllowAllUp := True;
Result.Action := Item.Action;
end;
end;
Result.Flat := FFlat;
if FRadioToolBar then
begin
Result.GroupIndex := 1;
Result.AllowAllUp := True;
end;
Result.ShowCaption := ShowCaptions;
UpdateIcon(Result);
AssignToolButtonProperties(Result);
Result.Parent := Self;
end
else
Result := nil;
end;
destructor TKASToolBar.Destroy;
begin
if not FOwnsToolItems then
FToolItems := nil; // Unassign before Clear so that items are not cleared.
Clear;
inherited Destroy;
ClearExecutors;
FToolItemExecutors.Free;
if FOwnsToolItems then
FToolItems.Free;
end;
function TKASToolBar.ExecuteToolItem(Item: TKASToolItem): Boolean;
var
I: Integer;
Executor: PToolItemExecutor;
BestMatch: PToolItemExecutor = nil;
begin
for I := 0 to FToolItemExecutors.Count - 1 do
begin
Executor := PToolItemExecutor(FToolItemExecutors[I]);
if Assigned(Executor^.ToolItemExecute) and
Item.InheritsFrom(Executor^.ToolItemClass) and
(not Assigned(BestMatch) or
(Executor^.ToolItemClass.InheritsFrom(BestMatch^.ToolItemClass))) then
begin
BestMatch := Executor;
end;
end;
Result := Assigned(BestMatch);
if Result then
BestMatch^.ToolItemExecute(Item);
end;
{ TKASToolBar.PublicExecuteToolItem }
function TKASToolBar.PublicExecuteToolItem(Item: TKASToolItem): Boolean;
begin
result:=ExecuteToolItem(Item);
end;
procedure TKASToolBar.BeginUpdate;
begin
{$if lcl_fullversion < 1010000}
Inc(FUpdateCount);
{$endif}
inherited BeginUpdate;
DisableAutoSizing;
end;
procedure TKASToolBar.EndUpdate;
begin
EnableAutoSizing;
inherited EndUpdate;
{$if lcl_fullversion < 1010000}
Dec(FUpdateCount);
{$endif}
if (FUpdateCount = 0) and FResizeButtonsNeeded then
ResizeButtons;
end;
function TKASToolBar.FindButton(Button: TKASToolButton): Integer;
var
I: Integer;
begin
for I := 0 to ButtonList.Count - 1 do
if TKASToolButton(ButtonList[I]) = Button then
Exit(I);
Result := -1;
end;
procedure TKASToolBar.SetButtonSize(NewButtonWidth, NewButtonHeight: Integer);
begin
FButtonWidth := NewButtonWidth;
FButtonHeight := NewButtonHeight;
ResizeButtons;
end;
function TKASToolBar.AddButton(Item: TKASToolItem): TKASToolButton;
begin
Result := InsertButton(ButtonCount, Item);
end;
procedure TKASToolBar.AddToolItemExecutor(ToolItemClass: TKASToolItemClass; ExecuteFunction: TOnToolItemExecute);
var
Executor: PToolItemExecutor;
begin
New(Executor);
FToolItemExecutors.Add(Executor);
Executor^.ToolItemClass := ToolItemClass;
Executor^.ToolItemExecute := ExecuteFunction;
end;
function TKASToolBar.InsertButton(InsertAt: Integer; Item: TKASToolItem): TKASToolButton;
begin
Result := CreateButton(Item);
if Assigned(Result) then
InsertButton(InsertAt, Result);
end;
procedure TKASToolBar.RemoveButton(Index: Integer);
var
Button: TKASToolButton;
begin
Button := TKASToolButton(ButtonList.Items[Index]);
ButtonList.Delete(Index);
Button.Free;
FToolItems.Remove(Index);
UpdateButtonsTags;
Resize;
end;
procedure TKASToolBar.RemoveButton(Button: TKASToolButton);
var
Index: Integer;
begin
Index := FindButton(Button);
if Index <> -1 then
RemoveButton(Index);
end;
procedure TKASToolBar.RemoveToolItemExecutor(ExecuteFunction: TOnToolItemExecute);
var
Executor: PToolItemExecutor;
I: Integer;
begin
for I := FToolItemExecutors.Count - 1 downto 0 do
begin
Executor := PToolItemExecutor(FToolItemExecutors[I]);
if (TMethod(Executor^.ToolItemExecute).Code = TMethod(ExecuteFunction).Code) and
(TMethod(Executor^.ToolItemExecute).Data = TMethod(ExecuteFunction).Data) then
begin
Dispose(Executor);
FToolItemExecutors.Delete(I);
end;
end;
end;
procedure TKASToolBar.UncheckAllButtons;
var
I: Integer;
begin
for I:= 0 to ButtonCount - 1 do
Buttons[I].Down:= False;
end;
{ TKASToolButton }
procedure TKASToolButton.CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean);
var
TextSize: TSize;
begin
if (Parent = nil) then
inherited
else begin
if ToolBar.IsVertical then
begin
PreferredWidth := ToolBar.FRowWidth;
PreferredHeight := ToolBar.ButtonHeight;
end
else begin
PreferredWidth := ToolBar.ButtonWidth;
PreferredHeight := ToolBar.FRowHeight;
end;
if ShowCaption and (Caption <> EmptyStr) then
begin
// Size to extent of the icon + caption.
TextSize := Canvas.TextExtent(Caption);
PreferredWidth := Max(TextSize.cx + Glyph.Width + 16, PreferredWidth);
PreferredHeight := Max(TextSize.cy + 4, PreferredHeight);
end;
end;
end;
function TKASToolButton.DrawGlyph(ACanvas: TCanvas; const AClient: TRect;
const AOffset: TPoint; AState: TButtonState; ATransparent: Boolean;
BiDiFlags: Longint): TRect;
var
X, Y: Integer;
AWidth : Integer;
begin
Result := inherited DrawGlyph(ACanvas, AClient, AOffset, AState, ATransparent, BiDiFlags);
if Assigned(FOverlay) then
begin
AWidth := FOverlay.Width;
X := AClient.Left + AOffset.X + ToolBar.FGlyphSize - AWidth;
Y := AClient.Top + AOffset.Y + ToolBar.FGlyphSize - AWidth;
Canvas.Draw(X, Y, FOverlay);
end;
end;
procedure TKASToolButton.ActionChange(Sender: TObject; CheckDefaults: Boolean);
begin
if Sender is TCustomAction then
begin
with TCustomAction(Sender) do
begin
if CheckDefaults or (Self.GroupIndex = 0) then
Self.GroupIndex := GroupIndex;
if not CheckDefaults or Enabled then
Self.Enabled := Enabled;
if not CheckDefaults or Visible then
Self.Visible := Visible;
if not CheckDefaults or Checked then
Self.Down := Checked;
end;
end;
end;
constructor TKASToolButton.Create(AOwner: TComponent; Item: TKASToolItem);
begin
inherited Create(AOwner);
FToolItem := Item;
end;
destructor TKASToolButton.Destroy;
begin
inherited Destroy;
FOverlay.Free;
end;
procedure TKASToolButton.Click;
begin
if Assigned(OnClick) then OnClick(Self);
end;
function TKASToolButton.GetToolBar: TKASToolBar;
begin
Result := Parent as TKASToolBar;
end;
{ TKASToolDivider }
procedure TKASToolDivider.CalculatePreferredSize(var PreferredWidth,
PreferredHeight: integer; WithThemeSpace: Boolean);
begin
if Assigned(Parent) and (Parent is TKASToolBar) and
(not TKASSeparatorItem(FToolItem).Style) and
(not TKASToolBar(Parent).FShowDividerAsButton) then
begin
if ToolBar.IsVertical then
begin
PreferredHeight := 5;
PreferredWidth := ToolBar.FRowWidth;
end
else begin
PreferredWidth := 5;
PreferredHeight := ToolBar.FRowHeight;
end;
end
else
inherited;
end;
procedure TKASToolDivider.Paint;
var
DividerRect: TRect;
Details: TThemedElementDetails;
begin
if Assigned(Parent) and (Parent is TKASToolBar) and
not TKASToolBar(Parent).FShowDividerAsButton then
begin
if TKASSeparatorItem(FToolItem).Style then Exit;
DividerRect:= ClientRect;
if ToolBar.IsVertical then
begin
Details:= ThemeServices.GetElementDetails(ttbSeparatorVertNormal);
// Theme services have no strict rule to draw divider in the center,
// so we should calculate rectangle here
// on windows 7 divider can't be less than 4 pixels
if (DividerRect.Bottom - DividerRect.Top) > 5 then
begin
DividerRect.Top := (DividerRect.Top + DividerRect.Bottom) div 2 - 3;
DividerRect.Bottom := DividerRect.Top + 5;
end;
if not ThemeServices.ThemesEnabled then
begin
InflateRect(DividerRect, -2, 0);
Canvas.Pen.Color := clBtnShadow;
Canvas.Line(DividerRect.Left, DividerRect.Top + 1, DividerRect.Right, DividerRect.Top + 1);
Canvas.Pen.Color := clBtnHighlight;
Canvas.Line(DividerRect.Left, DividerRect.Top + 2, DividerRect.Right, DividerRect.Top + 2);
Exit;
end;
end
else begin
Details:= ThemeServices.GetElementDetails(ttbSeparatorNormal);
// Theme services have no strict rule to draw divider in the center,
// so we should calculate rectangle here
// on windows 7 divider can't be less than 4 pixels
if (DividerRect.Right - DividerRect.Left) > 5 then
begin
DividerRect.Left := (DividerRect.Left + DividerRect.Right) div 2 - 3;
DividerRect.Right := DividerRect.Left + 5;
end;
end;
ThemeServices.DrawElement(Canvas.GetUpdatedHandle([csBrushValid, csPenValid]), Details, DividerRect);
end
else
inherited Paint;
end;
end.
|