mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
IDE: cleanup of GenericCheckListForm/GenericListEditorForm/GenericListSelectForm, patch from n7800
This commit is contained in:
parent
3fda0a9be8
commit
c9e2e06abe
@ -52,7 +52,6 @@ object GenericCheckListForm: TGenericCheckListForm
|
||||
Width = 331
|
||||
Align = alTop
|
||||
BorderSpacing.Around = 6
|
||||
Caption = 'InfoLabel'
|
||||
ParentColor = False
|
||||
WordWrap = True
|
||||
end
|
||||
|
@ -24,33 +24,22 @@ type
|
||||
fActionBtn: TBitBtn;
|
||||
procedure UpdateButtons;
|
||||
public
|
||||
constructor Create(TheOwner: TComponent); override;
|
||||
constructor CreateWithActionButton(aCaption: TCaption; aResourceGlyphName: string = '');
|
||||
destructor Destroy; override;
|
||||
end;
|
||||
|
||||
var
|
||||
GenericCheckListForm: TGenericCheckListForm;
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
{ TGenericCheckListForm }
|
||||
|
||||
constructor TGenericCheckListForm.Create(TheOwner: TComponent);
|
||||
begin
|
||||
inherited Create(TheOwner);
|
||||
InfoLabel.Caption := '';
|
||||
end;
|
||||
|
||||
constructor TGenericCheckListForm.CreateWithActionButton(aCaption: TCaption;
|
||||
aResourceGlyphName: string);
|
||||
begin
|
||||
Create(Nil);
|
||||
inherited Create(nil);
|
||||
fActionBtn := TBitBtn.Create(ButtonPanel1);
|
||||
fActionBtn.Caption := aCaption;
|
||||
fActionBtn.ModalResult := mrYes; // ActionButton will return mrYes.
|
||||
fActionBtn.ModalResult := mrYes; // ActionButton will return mrYes.
|
||||
fActionBtn.Align := alRight;
|
||||
fActionBtn.BorderSpacing.Left := 6;
|
||||
fActionBtn.BorderSpacing.Right := 6;
|
||||
@ -60,11 +49,6 @@ begin
|
||||
fActionBtn.Parent := ButtonPanel1;
|
||||
end;
|
||||
|
||||
destructor TGenericCheckListForm.Destroy;
|
||||
begin
|
||||
inherited Destroy;
|
||||
end;
|
||||
|
||||
procedure TGenericCheckListForm.FormShow(Sender: TObject);
|
||||
begin
|
||||
UpdateButtons;
|
||||
|
@ -14,14 +14,7 @@ type
|
||||
TGenericListEditForm = class(TForm)
|
||||
ButtonPanel1: TButtonPanel;
|
||||
Memo1: TMemo;
|
||||
private
|
||||
|
||||
public
|
||||
|
||||
end;
|
||||
|
||||
var
|
||||
GenericListEditForm: TGenericListEditForm;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
|
@ -35,7 +35,6 @@ object GenericListSelectForm: TGenericListSelectForm
|
||||
Width = 454
|
||||
Align = alTop
|
||||
BorderSpacing.Around = 6
|
||||
Caption = 'InfoLabel'
|
||||
ParentColor = False
|
||||
WordWrap = True
|
||||
end
|
||||
|
@ -21,31 +21,14 @@ type
|
||||
procedure ListBoxDblClick(Sender: TObject);
|
||||
private
|
||||
procedure UpdateButtons;
|
||||
public
|
||||
constructor Create(TheOwner: TComponent); override;
|
||||
destructor Destroy; override;
|
||||
end;
|
||||
|
||||
var
|
||||
GenericListSelectForm: TGenericListSelectForm;
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
{ TGenericListSelectForm }
|
||||
|
||||
constructor TGenericListSelectForm.Create(TheOwner: TComponent);
|
||||
begin
|
||||
inherited Create(TheOwner);
|
||||
InfoLabel.Caption := '';
|
||||
end;
|
||||
|
||||
destructor TGenericListSelectForm.Destroy;
|
||||
begin
|
||||
inherited Destroy;
|
||||
end;
|
||||
|
||||
procedure TGenericListSelectForm.FormShow(Sender: TObject);
|
||||
begin
|
||||
UpdateButtons;
|
||||
@ -58,14 +41,13 @@ end;
|
||||
|
||||
procedure TGenericListSelectForm.ListBoxDblClick(Sender: TObject);
|
||||
begin
|
||||
if ListBox.ItemIndex > -1 then
|
||||
ModalResult:=mrOK;
|
||||
if ListBox.ItemIndex >= 0 then
|
||||
ModalResult := mrOK;
|
||||
end;
|
||||
|
||||
procedure TGenericListSelectForm.UpdateButtons;
|
||||
begin
|
||||
ButtonPanel1.OKButton.Enabled := ListBox.ItemIndex >= 0;
|
||||
//ListBox.Selected[1];
|
||||
end;
|
||||
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user