From 2eac6f15cfb4155057f70d6838801ab67c265a40 Mon Sep 17 00:00:00 2001 From: mattias Date: Tue, 24 Feb 2004 20:26:50 +0000 Subject: [PATCH] published some TRadioButton properties git-svn-id: trunk@5232 - --- lcl/include/radiobutton.inc | 7 +++++-- lcl/stdctrls.pp | 11 ++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/lcl/include/radiobutton.inc b/lcl/include/radiobutton.inc index 303c6fa1a7..d6625d1688 100644 --- a/lcl/include/radiobutton.inc +++ b/lcl/include/radiobutton.inc @@ -49,9 +49,9 @@ Create a new TRadioButton ------------------------------------------------------------------------------} -constructor TRadioButton.Create(AnOwner : TComponent); +constructor TRadioButton.Create(TheOwner : TComponent); begin - inherited Create(AnOwner); + inherited Create(TheOwner); fCompStyle := csRadioButton; AutoSize := True; end; @@ -108,6 +108,9 @@ end; { $Log$ + Revision 1.15 2004/02/24 20:26:50 mattias + published some TRadioButton properties + Revision 1.14 2004/01/06 17:58:06 mattias fixed setting TRadioButton.Caption for gtk diff --git a/lcl/stdctrls.pp b/lcl/stdctrls.pp index 0486389125..ccfe16f757 100644 --- a/lcl/stdctrls.pp +++ b/lcl/stdctrls.pp @@ -928,13 +928,15 @@ type procedure DoAutoSize; override; procedure SetText(const Value: TCaption); override; public - constructor Create(AnOwner: TComponent); override; + constructor Create(TheOwner: TComponent); override; published + property Align; property Anchors; property AutoSize; property AllowGrayed; property Caption; property Checked; + property Constraints; property State; property Visible; property Enabled; @@ -956,6 +958,10 @@ type property OnMouseDown; property OnMouseMove; property OnMouseUp; + property OnMouseEnter; + property OnMouseLeave; + property OnChangeBounds; + property OnResize; property OnStartDrag; end; @@ -1510,6 +1516,9 @@ end. { ============================================================================= $Log$ + Revision 1.135 2004/02/24 20:26:50 mattias + published some TRadioButton properties + Revision 1.134 2004/02/23 23:15:12 mattias improved FindDragTarget