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
|
{*****************************************************************************}
{ }
{ Tnt Delphi Unicode Controls }
{ http://tnt.ccci.org/delphi_unicode_controls/ }
{ Version: 2.1.11 }
{ }
{ Copyright (c) 2002-2004, Troy Wolbrink (troy.wolbrink@ccci.org) }
{ }
{*****************************************************************************}
unit TntActnList;
{$INCLUDE TntCompilers.inc}
interface
uses
Classes, Controls, ActnList, Buttons, TntControls, ExtCtrls, ComCtrls, StdCtrls, Menus;
type
{TNT-WARN TActionList}
TTntActionList = class(TActionList{TNT-ALLOW TActionList})
private
FCheckActionsTimer: TTimer;
procedure CheckActions(Sender: TObject);
public
constructor Create(AOwner: TComponent); override;
end;
ITntAction = interface
['{59D0AE37-8161-4AD6-9102-14B28E5761EB}']
end;
//---------------------------------------------------------------------------------------------
// ACTIONS
//---------------------------------------------------------------------------------------------
{TNT-WARN TCustomAction}
TTntCustomAction = class(TCustomAction{TNT-ALLOW TCustomAction}, ITntAction)
private
function GetCaption: WideString;
procedure SetCaption(const Value: WideString);
function GetHint: WideString;
procedure SetHint(const Value: WideString);
protected
procedure DefineProperties(Filer: TFiler); override;
public
procedure Assign(Source: TPersistent); override;
public
property Caption: WideString read GetCaption write SetCaption;
property Hint: WideString read GetHint write SetHint;
end;
{TNT-WARN TAction}
TTntAction = class(TAction{TNT-ALLOW TAction}, ITntAction)
private
function GetCaption: WideString;
procedure SetCaption(const Value: WideString);
function GetHint: WideString;
procedure SetHint(const Value: WideString);
protected
procedure DefineProperties(Filer: TFiler); override;
public
procedure Assign(Source: TPersistent); override;
published
property Caption: WideString read GetCaption write SetCaption;
property Hint: WideString read GetHint write SetHint;
end;
//---------------------------------------------------------------------------------------------
// MENU ACTION LINK
//---------------------------------------------------------------------------------------------
{TNT-WARN TMenuActionLink}
TTntMenuActionLink = class(TMenuActionLink{TNT-ALLOW TMenuActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
//---------------------------------------------------------------------------------------------
// CONTROL ACTION LINKS
//---------------------------------------------------------------------------------------------
{$IFDEF COMPILER_6_UP}
{TNT-WARN TListViewActionLink}
TTntListViewActionLink = class(TListViewActionLink{TNT-ALLOW TListViewActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
{TNT-WARN TComboBoxExActionLink}
TTntComboBoxExActionLink = class(TComboBoxExActionLink{TNT-ALLOW TComboBoxExActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
{TNT-WARN TSpeedButtonActionLink}
TTntSpeedButtonActionLink = class(TSpeedButtonActionLink{TNT-ALLOW TSpeedButtonActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
{$ENDIF}
{TNT-WARN TToolButtonActionLink}
TTntToolButtonActionLink = class(TToolButtonActionLink{TNT-ALLOW TToolButtonActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
{TNT-WARN TButtonActionLink}
TTntButtonActionLink = class(TButtonActionLink{TNT-ALLOW TButtonActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
{TNT-WARN TWinControlActionLink}
TTntWinControlActionLink = class(TWinControlActionLink{TNT-ALLOW TWinControlActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
{TNT-WARN TControlActionLink}
TTntControlActionLink = class(TControlActionLink{TNT-ALLOW TControlActionLink})
protected
function IsCaptionLinked: Boolean; override;
function IsHintLinked: Boolean; override;
procedure SetCaption(const Value: string{TNT-ALLOW string}); override;
procedure SetHint(const Value: string{TNT-ALLOW string}); override;
end;
//---------------------------------------------------------------------------------------------
// helper procs
//---------------------------------------------------------------------------------------------
procedure TntAction_SetCaption(Action: TCustomAction{TNT-ALLOW TCustomAction}; const Value: WideString);
function TntAction_GetCaption(Action: TCustomAction{TNT-ALLOW TCustomAction}): WideString;
procedure TntAction_SetHint(Action: TCustomAction{TNT-ALLOW TCustomAction}; const Value: WideString);
function TntAction_GetHint(Action: TCustomAction{TNT-ALLOW TCustomAction}): WideString;
procedure TntAction_AfterInherited_Assign(Action: TCustomAction{TNT-ALLOW TCustomAction}; Source: TPersistent);
function TntControl_GetActionLinkClass(Control: TControl; InheritedLinkClass: TControlActionLinkClass): TControlActionLinkClass;
procedure TntControl_BeforeInherited_ActionChange(Control: TControl; Sender: TObject; CheckDefaults: Boolean);
type
TUpgradeActionListItemsProc = procedure (ActionList: TTntActionList);
var
UpgradeActionListItemsProc: TUpgradeActionListItemsProc;
implementation
uses
SysUtils, TntMenus, TntClasses, TntSysUtils;
{ TActionListList }
type
TActionListList = class(TList)
private
FActionList: TTntActionList;
protected
procedure Notify(Ptr: Pointer; Action: TListNotification); override;
end;
procedure TActionListList.Notify(Ptr: Pointer; Action: TListNotification);
begin
inherited;
if (Action = lnAdded) and (FActionList <> nil) and (Ptr <> nil)
and (not Supports(TObject(Ptr), ITntAction)) then
begin
FActionList.FCheckActionsTimer.Enabled := False;
FActionList.FCheckActionsTimer.Enabled := True;
end;
end;
{ THackActionList }
type
{$IFDEF COMPILER_5} // verified against VCL source in Delphi 5 and BCB 5
THackCustomActionList = class(TComponent)
private
FActions: TList;
end;
{$ENDIF}
{$IFDEF COMPILER_6} // verified against VCL source in Delphi 6 and BCB 6
THackCustomActionList = class(TComponent)
private
FActions: TList;
end;
{$ENDIF}
{$IFDEF DELPHI_7}
THackCustomActionList = class(TComponent)
private
FActions: TList;
end;
{$ENDIF}
{$IFDEF DELPHI_9}
THackCustomActionList = class(TComponent)
private
FActions: TList;
end;
{$ENDIF}
{ TTntActionList }
constructor TTntActionList.Create(AOwner: TComponent);
begin
inherited;
if (csDesigning in ComponentState) then begin
FCheckActionsTimer := TTimer.Create(Self);
FCheckActionsTimer.Enabled := False;
FCheckActionsTimer.Interval := 50;
FCheckActionsTimer.OnTimer := CheckActions;
//
THackCustomActionList(Self).FActions.Free;
THackCustomActionList(Self).FActions := TActionListList.Create;
TActionListList(THackCustomActionList(Self).FActions).FActionList := Self;
end;
end;
procedure TTntActionList.CheckActions(Sender: TObject);
begin
if FCheckActionsTimer <> nil then begin
FCheckActionsTimer.Enabled := False;
end;
Assert(csDesigning in ComponentState);
Assert(Assigned(UpgradeActionListItemsProc));
UpgradeActionListItemsProc(Self);
end;
{ TCustomActionHelper }
type
TCustomActionHelper = class(TComponent)
private
FAction: TCustomAction{TNT-ALLOW TCustomAction};
private
FCaption: WideString;
FSettingNewCaption: Boolean;
FOldWideCaption: WideString;
FNewAnsiCaption: AnsiString;
procedure SetAnsiCaption(const Value: AnsiString);
function SettingNewCaption: Boolean;
procedure SetCaption(const Value: WideString);
function GetCaption: WideString;
private
FHint: WideString;
FSettingNewHint: Boolean;
FOldWideHint: WideString;
FNewAnsiHint: AnsiString;
procedure SetAnsiHint(const Value: AnsiString);
function SettingNewHint: Boolean;
procedure SetHint(const Value: WideString);
function GetHint: WideString;
end;
procedure TCustomActionHelper.SetAnsiCaption(const Value: AnsiString);
begin
FAction.Caption := Value;
if (Value = '') and (FNewAnsiCaption <> '') then
FOldWideCaption := '';
end;
function TCustomActionHelper.SettingNewCaption: Boolean;
begin
Result := FSettingNewCaption and (FAction.Caption <> FNewAnsiCaption);
end;
function TCustomActionHelper.GetCaption: WideString;
begin
if SettingNewCaption then
Result := FOldWideCaption
else
Result := GetSyncedWideString(FCaption, FAction.Caption)
end;
procedure TCustomActionHelper.SetCaption(const Value: WideString);
begin
FOldWideCaption := GetCaption;
FNewAnsiCaption := Value;
FSettingNewCaption := True;
try
SetSyncedWideString(Value, FCaption, FAction.Caption, SetAnsiCaption)
finally
FSettingNewCaption := False;
end;
end;
procedure TCustomActionHelper.SetAnsiHint(const Value: AnsiString);
begin
FAction.Hint := Value;
if (Value = '') and (FNewAnsiHint <> '') then
FOldWideHint := '';
end;
function TCustomActionHelper.SettingNewHint: Boolean;
begin
Result := FSettingNewHint and (FAction.Hint <> FNewAnsiHint);
end;
function TCustomActionHelper.GetHint: WideString;
begin
if SettingNewHint then
Result := FOldWideHint
else
Result := GetSyncedWideString(FHint, FAction.Hint)
end;
procedure TCustomActionHelper.SetHint(const Value: WideString);
begin
FOldWideHint := GetHint;
FNewAnsiHint := Value;
FSettingNewHint := True;
try
SetSyncedWideString(Value, FHint, FAction.Hint, SetAnsiHint)
finally
FSettingNewHint := False;
end;
end;
function FindActionHelper(Action: TCustomAction{TNT-ALLOW TCustomAction}): TCustomActionHelper;
var
i: integer;
begin
Assert(Action <> nil);
Result := nil;
if Supports(Action, ITntAction) then begin
for i := 0 to Action.ComponentCount - 1 do begin
if Action.Components[i] is TCustomActionHelper then begin
Result := TCustomActionHelper(Action.Components[i]);
break;
end;
end;
if Result = nil then begin
Result := TCustomActionHelper.Create(Action);
Result.FAction := Action;
end;
end;
end;
//-- TCustomAction helper routines
procedure TntAction_SetCaption(Action: TCustomAction{TNT-ALLOW TCustomAction}; const Value: WideString);
begin
if Supports(Action, ITntAction) then
with FindActionHelper(Action) do
SetCaption(Value)
else
Action.Caption := Value;
end;
function TntAction_GetCaption(Action: TCustomAction{TNT-ALLOW TCustomAction}): WideString;
begin
if Supports(Action, ITntAction) then
with FindActionHelper(Action) do
Result := GetCaption
else
Result := Action.Caption;
end;
function TntAction_GetNewCaption(Action: TCustomAction{TNT-ALLOW TCustomAction}; const Default: WideString): WideString;
begin
Result := Default;
if Supports(Action, ITntAction) then
with FindActionHelper(Action) do
if SettingNewCaption then
Result := FCaption;
end;
procedure TntAction_SetHint(Action: TCustomAction{TNT-ALLOW TCustomAction}; const Value: WideString);
begin
if Supports(Action, ITntAction) then
with FindActionHelper(Action) do
SetHint(Value)
else
Action.Hint := Value;
end;
function TntAction_GetHint(Action: TCustomAction{TNT-ALLOW TCustomAction}): WideString;
begin
if Supports(Action, ITntAction) then
with FindActionHelper(Action) do
Result := GetHint
else
Result := Action.Hint;
end;
function TntAction_GetNewHint(Action: TCustomAction{TNT-ALLOW TCustomAction}; const Default: WideString): WideString;
begin
Result := Default;
if Supports(Action, ITntAction) then
with FindActionHelper(Action) do
if SettingNewHint then
Result := FHint;
end;
procedure TntAction_AfterInherited_Assign(Action: TCustomAction{TNT-ALLOW TCustomAction}; Source: TPersistent);
begin
with Action do begin
if (Source is TCustomAction{TNT-ALLOW TCustomAction}) then begin
Caption := TntAction_GetCaption(Source as TCustomAction{TNT-ALLOW TCustomAction});
Hint := TntAction_GetHint(Source as TCustomAction{TNT-ALLOW TCustomAction});
end else if (Source is TControl) then begin
Caption := TntControl_GetText(Source as TControl);
Hint := TntControl_GetHint(Source as TControl);
end;
end;
end;
// -- TControl helper routines
function TntControl_GetActionLinkClass(Control: TControl; InheritedLinkClass: TControlActionLinkClass): TControlActionLinkClass;
begin
{$IFDEF COMPILER_6_UP}
if Control is TCustomListView{TNT-ALLOW TCustomListView} then
Result := TTntListViewActionLink
else if Control is TComboBoxEx then
Result := TTntComboBoxExActionLink
else if Control is TSpeedButton{TNT-ALLOW TSpeedButton} then
Result := TTntSpeedButtonActionLink
else
{$ENDIF}
begin
if Control is TToolButton then
Result := TTntToolButtonActionLink
else if Control is TButtonControl then
Result := TTntButtonActionLink
else if Control is TWinControl then
Result := TTntWinControlActionLink
else
Result := TTntControlActionLink;
end;
Assert(Result.ClassParent = InheritedLinkClass);
end;
procedure TntControl_BeforeInherited_ActionChange(Control: TControl; Sender: TObject; CheckDefaults: Boolean);
begin
if (Sender is TCustomAction{TNT-ALLOW TCustomAction}) and Supports(Sender, ITntAction) then begin
if not CheckDefaults or (TntControl_GetText(Control) = '') or (TntControl_GetText(Control) = Control.Name) then
TntControl_SetText(Control, TntAction_GetCaption(TCustomAction{TNT-ALLOW TCustomAction}(Sender)));
if not CheckDefaults or (TntControl_GetHint(Control) = '') then
TntControl_SetHint(Control, TntAction_GetHint(TCustomAction{TNT-ALLOW TCustomAction}(Sender)));
end;
end;
// -- TControlActionLink helper routines
function TntActionLink_IsCaptionLinked(InheritedIsCaptionLinked: Boolean; Action: TBasicAction; FClient: TControl): Boolean;
begin
Result := InheritedIsCaptionLinked
and (TntAction_GetCaption(Action as TCustomAction{TNT-ALLOW TCustomAction}) = TntControl_GetText(FClient));
end;
function TntActionLink_IsHintLinked(InheritedIsHintLinked: Boolean; Action: TBasicAction; FClient: TControl): Boolean;
begin
Result := InheritedIsHintLinked
and (TntAction_GetHint(Action as TCustomAction{TNT-ALLOW TCustomAction}) = TntControl_GetHint(FClient));
end;
procedure TntActionLink_SetCaption(IsCaptionLinked: Boolean; Action: TBasicAction; FClient: TControl; const Value: string{TNT-ALLOW string});
begin
if IsCaptionLinked then
TntControl_SetText(FClient, TntAction_GetNewCaption(Action as TCustomAction{TNT-ALLOW TCustomAction}, Value));
end;
procedure TntActionLink_SetHint(IsHintLinked: Boolean; Action: TBasicAction; FClient: TControl; const Value: string{TNT-ALLOW string});
begin
if IsHintLinked then
TntControl_SetHint(FClient, TntAction_GetNewHint(Action as TCustomAction{TNT-ALLOW TCustomAction}, Value));
end;
//---------------------------------------------------------------------------------------------
// ACTIONS
//---------------------------------------------------------------------------------------------
{ TTntCustomAction }
procedure TTntCustomAction.Assign(Source: TPersistent);
begin
inherited;
TntAction_AfterInherited_Assign(Self, Source);
end;
procedure TTntCustomAction.DefineProperties(Filer: TFiler);
begin
inherited;
TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;
function TTntCustomAction.GetCaption: WideString;
begin
Result := TntAction_GetCaption(Self);
end;
procedure TTntCustomAction.SetCaption(const Value: WideString);
begin
TntAction_SetCaption(Self, Value);
end;
function TTntCustomAction.GetHint: WideString;
begin
Result := TntAction_GetHint(Self);
end;
procedure TTntCustomAction.SetHint(const Value: WideString);
begin
TntAction_SetHint(Self, Value);
end;
{ TTntAction }
procedure TTntAction.Assign(Source: TPersistent);
begin
inherited;
TntAction_AfterInherited_Assign(Self, Source);
end;
procedure TTntAction.DefineProperties(Filer: TFiler);
begin
inherited;
TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;
function TTntAction.GetCaption: WideString;
begin
Result := TntAction_GetCaption(Self);
end;
procedure TTntAction.SetCaption(const Value: WideString);
begin
TntAction_SetCaption(Self, Value);
end;
function TTntAction.GetHint: WideString;
begin
Result := TntAction_GetHint(Self);
end;
procedure TTntAction.SetHint(const Value: WideString);
begin
TntAction_SetHint(Self, Value);
end;
//---------------------------------------------------------------------------------------------
// MENU ACTION LINK
//---------------------------------------------------------------------------------------------
{ TTntMenuActionLink }
function TTntMenuActionLink.IsCaptionLinked: Boolean;
begin
Result := inherited IsCaptionLinked
and WideSameCaption(TntAction_GetCaption(Action as TCustomAction{TNT-ALLOW TCustomAction}), (FClient as TTntMenuItem).Caption);
end;
function TTntMenuActionLink.IsHintLinked: Boolean;
begin
Result := inherited IsHintLinked
and (TntAction_GetHint(Action as TCustomAction{TNT-ALLOW TCustomAction}) = (FClient as TTntMenuItem).Hint);
end;
procedure TTntMenuActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
if IsCaptionLinked then
(FClient as TTntMenuItem).Caption := TntAction_GetNewCaption(Action as TCustomAction{TNT-ALLOW TCustomAction}, Value);
end;
procedure TTntMenuActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
if IsHintLinked then
(FClient as TTntMenuItem).Hint := TntAction_GetNewHint(Action as TCustomAction{TNT-ALLOW TCustomAction}, Value);
end;
//---------------------------------------------------------------------------------------------
// CONTROL ACTION LINKS
//---------------------------------------------------------------------------------------------
{$IFDEF COMPILER_6_UP}
{ TTntListViewActionLink }
function TTntListViewActionLink.IsCaptionLinked: Boolean;
begin
Result := TntActionLink_IsCaptionLinked(inherited IsCaptionLinked, Action, FClient);
end;
function TTntListViewActionLink.IsHintLinked: Boolean;
begin
Result := TntActionLink_IsHintLinked(inherited IsHintLinked, Action, FClient);
end;
procedure TTntListViewActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetCaption(IsCaptionLinked, Action, FClient, Value);
end;
procedure TTntListViewActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetHint(IsHintLinked, Action, FClient, Value);
end;
{ TTntComboBoxExActionLink }
function TTntComboBoxExActionLink.IsCaptionLinked: Boolean;
begin
Result := TntActionLink_IsCaptionLinked(inherited IsCaptionLinked, Action, FClient);
end;
function TTntComboBoxExActionLink.IsHintLinked: Boolean;
begin
Result := TntActionLink_IsHintLinked(inherited IsHintLinked, Action, FClient);
end;
procedure TTntComboBoxExActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetCaption(IsCaptionLinked, Action, FClient, Value);
end;
procedure TTntComboBoxExActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetHint(IsHintLinked, Action, FClient, Value);
end;
{ TTntSpeedButtonActionLink }
function TTntSpeedButtonActionLink.IsCaptionLinked: Boolean;
begin
Result := TntActionLink_IsCaptionLinked(inherited IsCaptionLinked, Action, FClient);
end;
function TTntSpeedButtonActionLink.IsHintLinked: Boolean;
begin
Result := TntActionLink_IsHintLinked(inherited IsHintLinked, Action, FClient);
end;
procedure TTntSpeedButtonActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetCaption(IsCaptionLinked, Action, FClient, Value);
end;
procedure TTntSpeedButtonActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetHint(IsHintLinked, Action, FClient, Value);
end;
{$ENDIF}
{ TTntToolButtonActionLink }
function TTntToolButtonActionLink.IsCaptionLinked: Boolean;
begin
Result := TntActionLink_IsCaptionLinked(inherited IsCaptionLinked, Action, FClient);
end;
function TTntToolButtonActionLink.IsHintLinked: Boolean;
begin
Result := TntActionLink_IsHintLinked(inherited IsHintLinked, Action, FClient);
end;
procedure TTntToolButtonActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetCaption(IsCaptionLinked, Action, FClient, Value);
end;
procedure TTntToolButtonActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetHint(IsHintLinked, Action, FClient, Value);
end;
{ TTntButtonActionLink }
function TTntButtonActionLink.IsCaptionLinked: Boolean;
begin
Result := TntActionLink_IsCaptionLinked(inherited IsCaptionLinked, Action, FClient);
end;
function TTntButtonActionLink.IsHintLinked: Boolean;
begin
Result := TntActionLink_IsHintLinked(inherited IsHintLinked, Action, FClient);
end;
procedure TTntButtonActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetCaption(IsCaptionLinked, Action, FClient, Value);
end;
procedure TTntButtonActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetHint(IsHintLinked, Action, FClient, Value);
end;
{ TTntWinControlActionLink }
function TTntWinControlActionLink.IsCaptionLinked: Boolean;
begin
Result := TntActionLink_IsCaptionLinked(inherited IsCaptionLinked, Action, FClient);
end;
function TTntWinControlActionLink.IsHintLinked: Boolean;
begin
Result := TntActionLink_IsHintLinked(inherited IsHintLinked, Action, FClient);
end;
procedure TTntWinControlActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetCaption(IsCaptionLinked, Action, FClient, Value);
end;
procedure TTntWinControlActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetHint(IsHintLinked, Action, FClient, Value);
end;
{ TTntControlActionLink }
function TTntControlActionLink.IsCaptionLinked: Boolean;
begin
Result := TntActionLink_IsCaptionLinked(inherited IsCaptionLinked, Action, FClient);
end;
function TTntControlActionLink.IsHintLinked: Boolean;
begin
Result := TntActionLink_IsHintLinked(inherited IsHintLinked, Action, FClient);
end;
procedure TTntControlActionLink.SetCaption(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetCaption(IsCaptionLinked, Action, FClient, Value);
end;
procedure TTntControlActionLink.SetHint(const Value: string{TNT-ALLOW string});
begin
TntActionLink_SetHint(IsHintLinked, Action, FClient, Value);
end;
end.
|