Some more _BTN changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43944 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-12-11 21:32:09 +00:00
parent eebbbda154
commit 4ed51f4d1c
7 changed files with 34 additions and 34 deletions

View File

@@ -23,8 +23,8 @@ MAKE_CONST_WXSTRING(SearchCtrlNameStr);
// define a dummy class for builds that don't have wxSearchCtrl
enum {
wxEVT_COMMAND_SEARCHCTRL_CANCEL,
wxEVT_COMMAND_SEARCHCTRL_SEARCH
wxEVT_COMMAND_SEARCHCTRL_CANCEL_BTN,
wxEVT_COMMAND_SEARCHCTRL_SEARCH_BTN
};
class wxSearchCtrl : public wxTextCtrl
@@ -94,14 +94,14 @@ Enter key in the control and wishes to start a search.
Events
-------
====================== =========================================
EVT_SEARCHCTRL_SEARCH Sent when the search icon is clicked
EVT_SEARCHCTRL_CANCEL Sent when the cancel icon is clicked
EVT_TEXT Sent when the text changes
EVT_TEXT_ENTER Sent when the RETURN/ENTER key is pressed
in the search control and the control has
the wx.TE_PROCESS_ENTER style flag set.
====================== =========================================
========================= =========================================
EVT_SEARCHCTRL_SEARCH_BTN Sent when the search icon is clicked
EVT_SEARCHCTRL_CANCEL_BTN Sent when the cancel icon is clicked
EVT_TEXT Sent when the text changes
EVT_TEXT_ENTER Sent when the RETURN/ENTER key is pressed
in the search control and the control has
the wx.TE_PROCESS_ENTER style flag set.
========================= =========================================
");