diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2013-08-27 10:39:56 +0100 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2013-08-27 10:39:56 +0100 |
commit | baddca52b3c35a8526c6143be723806f39572f03 (patch) | |
tree | 46c25c33de302784334e0489a90c36f5b8df85f7 /src/gui | |
parent | fbc3b585676501c5bb4323a43cd276e661bc4dba (diff) | |
download | fpGUI-baddca52b3c35a8526c6143be723806f39572f03.tar.xz |
Published some useful events for TfpgRadioButton class
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/fpg_radiobutton.pas | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/gui/fpg_radiobutton.pas b/src/gui/fpg_radiobutton.pas index 2ce8d566..76f36664 100644 --- a/src/gui/fpg_radiobutton.pas +++ b/src/gui/fpg_radiobutton.pas @@ -1,7 +1,7 @@ { fpGUI - Free Pascal GUI Toolkit - Copyright (C) 2006 - 2010 See the file AUTHORS.txt, included in this + Copyright (C) 2006 - 2013 See the file AUTHORS.txt, included in this distribution, for details of the copyright. See the file COPYING.modifiedLGPL, included in this distribution, @@ -77,6 +77,17 @@ type property Text: string read FText write SetText; property TextColor; property OnChange: TNotifyEvent read FOnChange write FOnChange; + property OnDragEnter; + property OnDragLeave; + property OnDragDrop; + property OnDragStartDetected; + property OnEnter; + property OnExit; + property OnMouseDown; + property OnMouseExit; + property OnMouseEnter; + property OnMouseMove; + property OnMouseUp; property OnShowHint; end; |