diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2009-10-03 16:27:24 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@graemeg-laptop.(none)> | 2009-11-09 22:40:14 +0200 |
commit | fcb2773b8a7f89c7c157668a698a498501567b92 (patch) | |
tree | 911bc8f09f6a64e31f6ea570e4c63aff8decb2ec /src | |
parent | eea1edfec2a10f698b52e76d77ae865cb40aed9d (diff) | |
download | fpGUI-fcb2773b8a7f89c7c157668a698a498501567b92.tar.xz |
Published the OnDoubleClick event for the Treeview and Listbox components.
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/fpg_listbox.pas | 1 | ||||
-rw-r--r-- | src/gui/fpg_tree.pas | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/fpg_listbox.pas b/src/gui/fpg_listbox.pas index 9b597d20..271162d0 100644 --- a/src/gui/fpg_listbox.pas +++ b/src/gui/fpg_listbox.pas @@ -144,6 +144,7 @@ type property ShowHint; property TabOrder; property TextColor; + property OnDoubleClick; end; diff --git a/src/gui/fpg_tree.pas b/src/gui/fpg_tree.pas index 86377dff..5f511f05 100644 --- a/src/gui/fpg_tree.pas +++ b/src/gui/fpg_tree.pas @@ -235,6 +235,7 @@ type property TreeLineStyle: TfpgLineStyle read FTreeLineStyle write SetTreeLineStyle default lsDot; property OnChange: TNotifyEvent read FOnChange write FOnChange; property OnExpand: TfpgTreeExpandEvent read FOnExpand write FOnExpand; + property OnDoubleClick; end; |