diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-24 08:21:28 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-24 08:21:28 +0000 |
commit | 690f5e6d29d1c85c4be72638eb22843964c2f512 (patch) | |
tree | 47c50956fef107bb1004f9389b817cbe3626d919 /plugins/!NotAdopted/Chess4Net/lib/TntUnicodeControls/Source/TntCheckLst.pas | |
parent | e7112d3e58f97fa0630e0afa04e27796cdf3ce38 (diff) |
All non-working stuff moved from trunk
git-svn-id: http://svn.miranda-ng.org/main/trunk@13071 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/Chess4Net/lib/TntUnicodeControls/Source/TntCheckLst.pas')
-rw-r--r-- | plugins/!NotAdopted/Chess4Net/lib/TntUnicodeControls/Source/TntCheckLst.pas | 184 |
1 files changed, 0 insertions, 184 deletions
diff --git a/plugins/!NotAdopted/Chess4Net/lib/TntUnicodeControls/Source/TntCheckLst.pas b/plugins/!NotAdopted/Chess4Net/lib/TntUnicodeControls/Source/TntCheckLst.pas deleted file mode 100644 index 9d1ae95aa3..0000000000 --- a/plugins/!NotAdopted/Chess4Net/lib/TntUnicodeControls/Source/TntCheckLst.pas +++ /dev/null @@ -1,184 +0,0 @@ -
-{*****************************************************************************}
-{ }
-{ Tnt Delphi Unicode Controls }
-{ http://www.tntware.com/delphicontrols/unicode/ }
-{ Version: 2.3.0 }
-{ }
-{ Copyright (c) 2002-2007, Troy Wolbrink (troy.wolbrink@tntware.com) }
-{ }
-{*****************************************************************************}
-
-unit TntCheckLst;
-
-{$INCLUDE TntCompilers.inc}
-
-interface
-
-uses
- Classes, Messages, Windows, Controls, StdCtrls, CheckLst,
- TntClasses, TntControls, TntStdCtrls;
-
-type
-{TNT-WARN TCheckListBox}
- TTntCheckListBox = class(TCheckListBox{TNT-ALLOW TCheckListBox}, IWideCustomListControl)
- private
- FItems: TTntStrings;
- FSaveItems: TTntStrings;
- FSaveTopIndex: Integer;
- FSaveItemIndex: Integer;
- FSaved_ItemEnabled: array of Boolean;
- FSaved_State: array of TCheckBoxState;
- FSaved_Header: array of Boolean;
- FOnData: TLBGetWideDataEvent;
- procedure SetItems(const Value: TTntStrings);
- function GetHint: WideString;
- procedure SetHint(const Value: WideString);
- function IsHintStored: Boolean;
- procedure LBGetText(var Message: TMessage); message LB_GETTEXT;
- procedure LBGetTextLen(var Message: TMessage); message LB_GETTEXTLEN;
- protected
- procedure CreateWindowHandle(const Params: TCreateParams); override;
- procedure DefineProperties(Filer: TFiler); override;
- function GetActionLinkClass: TControlActionLinkClass; override;
- procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
- procedure CreateWnd; override;
- procedure DestroyWnd; override;
- procedure DrawItem(Index: Integer; Rect: TRect; State: TOwnerDrawState); override;
- public
- constructor Create(AOwner: TComponent); override;
- destructor Destroy; override;
- procedure CopySelection(Destination: TCustomListControl); override;
- procedure AddItem(const Item: WideString; AObject: TObject); reintroduce; virtual;
- published
- property Hint: WideString read GetHint write SetHint stored IsHintStored;
- property Items: TTntStrings read FItems write SetItems;
- property OnData: TLBGetWideDataEvent read FOnData write FOnData;
- end;
-
-implementation
-
-uses
- SysUtils, Math, TntActnList;
-
-{ TTntCheckListBox }
-
-constructor TTntCheckListBox.Create(AOwner: TComponent);
-begin
- inherited;
- FItems := TTntListBoxStrings.Create;
- TTntListBoxStrings(FItems).ListBox := Self;
-end;
-
-destructor TTntCheckListBox.Destroy;
-begin
- FreeAndNil(FItems);
- inherited;
-end;
-
-procedure TTntCheckListBox.CreateWindowHandle(const Params: TCreateParams);
-begin
- CreateUnicodeHandle(Self, Params, 'LISTBOX');
-end;
-
-procedure TTntCheckListBox.DefineProperties(Filer: TFiler);
-begin
- inherited;
- TntPersistent_AfterInherited_DefineProperties(Filer, Self);
-end;
-
-procedure TTntCheckListBox.CreateWnd;
-var
- i: integer;
-begin
- inherited;
- TntListBox_AfterInherited_CreateWnd(Self, FSaveItems, FItems, FSaveTopIndex, FSaveItemIndex);
- if Length(FSaved_ItemEnabled) > 0 then begin
- for i := 0 to Min(Items.Count - 1, High(FSaved_ItemEnabled)) do begin
- ItemEnabled[i] := FSaved_ItemEnabled[i];
- State[i] := FSaved_State[i];
- Header[i] := FSaved_Header[i];
- end;
- SetLength(FSaved_ItemEnabled, 0);
- SetLength(FSaved_State, 0);
- SetLength(FSaved_Header, 0);
- end;
-end;
-
-procedure TTntCheckListBox.DestroyWnd;
-var
- i: integer;
-begin
- SetLength(FSaved_ItemEnabled, Items.Count);
- SetLength(FSaved_State, Items.Count);
- SetLength(FSaved_Header, Items.Count);
- for i := 0 to Items.Count - 1 do begin
- FSaved_ItemEnabled[i] := ItemEnabled[i];
- FSaved_State[i] := State[i];
- FSaved_Header[i] := Header[i];
- end;
- TntListBox_BeforeInherited_DestroyWnd(Self, FSaveItems, FItems, FSaveTopIndex, FSaveItemIndex);
- inherited;
-end;
-
-procedure TTntCheckListBox.SetItems(const Value: TTntStrings);
-begin
- FItems.Assign(Value);
-end;
-
-procedure TTntCheckListBox.DrawItem(Index: Integer; Rect: TRect; State: TOwnerDrawState);
-begin
- inherited;
- if not Assigned(OnDrawItem) then
- TntListBox_DrawItem_Text(Self, Items, Index, Rect);
-end;
-
-function TTntCheckListBox.IsHintStored: Boolean;
-begin
- Result := TntControl_IsHintStored(Self)
-end;
-
-function TTntCheckListBox.GetHint: WideString;
-begin
- Result := TntControl_GetHint(Self)
-end;
-
-procedure TTntCheckListBox.SetHint(const Value: WideString);
-begin
- TntControl_SetHint(Self, Value);
-end;
-
-procedure TTntCheckListBox.AddItem(const Item: WideString; AObject: TObject);
-begin
- TntListBox_AddItem(Items, Item, AObject);
-end;
-
-procedure TTntCheckListBox.CopySelection(Destination: TCustomListControl);
-begin
- TntListBox_CopySelection(Self, Items, Destination);
-end;
-
-procedure TTntCheckListBox.ActionChange(Sender: TObject; CheckDefaults: Boolean);
-begin
- TntControl_BeforeInherited_ActionChange(Self, Sender, CheckDefaults);
- inherited;
-end;
-
-function TTntCheckListBox.GetActionLinkClass: TControlActionLinkClass;
-begin
- Result := TntControl_GetActionLinkClass(Self, inherited GetActionLinkClass);
-end;
-
-procedure TTntCheckListBox.LBGetText(var Message: TMessage);
-begin
- if not TntCustomListBox_LBGetText(Self, OnData, Message) then
- inherited;
-end;
-
-procedure TTntCheckListBox.LBGetTextLen(var Message: TMessage);
-begin
- if not TntCustomListBox_LBGetTextLen(Self, OnData, Message) then
- inherited;
-end;
-
-end.
|