]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/srchctrl.h
Corrected library association
[wxWidgets.git] / interface / wx / srchctrl.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: srchctrl.h
e54c96f1 3// Purpose: interface of wxSearchCtrl
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxSearchCtrl
7c913512
FM
11
12 A search control is a composite control with a search button, a text
23324ae1 13 control, and a cancel button.
7c913512 14
23324ae1 15 @beginStyleTable
8c6791e4 16 @style{wxTE_PROCESS_ENTER}
23324ae1
FM
17 The control will generate the event wxEVT_COMMAND_TEXT_ENTER
18 (otherwise pressing Enter key is either processed internally by the
19 control or used for navigation between dialog controls).
8c6791e4 20 @style{wxTE_PROCESS_TAB}
23324ae1
FM
21 The control will receive wxEVT_CHAR events for TAB pressed -
22 normally, TAB is used for passing to the next control in a dialog
23 instead. For the control created with this style, you can still use
24 Ctrl-Enter to pass to the next control from the keyboard.
8c6791e4 25 @style{wxTE_NOHIDESEL}
23324ae1
FM
26 By default, the Windows text control doesn't show the selection
27 when it doesn't have focus - use this style to force it to always
28 show it. It doesn't do anything under other platforms.
8c6791e4 29 @style{wxTE_LEFT}
23324ae1 30 The text in the control will be left-justified (default).
8c6791e4 31 @style{wxTE_CENTRE}
23324ae1
FM
32 The text in the control will be centered (currently wxMSW and
33 wxGTK2 only).
8c6791e4 34 @style{wxTE_RIGHT}
23324ae1
FM
35 The text in the control will be right-justified (currently wxMSW
36 and wxGTK2 only).
8c6791e4 37 @style{wxTE_CAPITALIZE}
23324ae1
FM
38 On PocketPC and Smartphone, causes the first letter to be
39 capitalized.
40 @endStyleTable
7c913512 41
e725ba4f
FM
42 @beginEventTable{wxCommandEvent}
43 To retrieve actual search queries, use EVT_TEXT and EVT_TEXT_ENTER events,
44 just as you would with wxTextCtrl.
45 @event{EVT_SEARCHCTRL_SEARCH_BTN(id, func)}
46 Respond to a wxEVT_SEARCHCTRL_SEARCH_BTN event, generated when the
47 search button is clicked. Note that this does not initiate a search.
48 @event{EVT_SEARCHCTRL_CANCEL_BTN(id, func)}
49 Respond to a wxEVT_SEARCHCTRL_CANCEL_BTN event, generated when the
50 cancel button is clicked.
51 @endEventTable
52
23324ae1 53 @library{wxcore}
e725ba4f 54 @category{ctrl}
7c913512 55
e54c96f1 56 @see wxTextCtrl::Create, wxValidator
23324ae1
FM
57*/
58class wxSearchCtrl : public wxTextCtrl
59{
60public:
671600d8
RR
61 /**
62 Default constructor
63 */
64 wxSearchCtrl();
e725ba4f 65
23324ae1
FM
66 /**
67 Constructor, creating and showing a text control.
3c4f71cc 68
7c913512 69 @param parent
4cc4bfaf 70 Parent window. Should not be @NULL.
7c913512 71 @param id
4cc4bfaf 72 Control identifier. A value of -1 denotes a default value.
7c913512 73 @param value
4cc4bfaf 74 Default text value.
7c913512 75 @param pos
4cc4bfaf 76 Text control position.
7c913512 77 @param size
4cc4bfaf 78 Text control size.
7c913512 79 @param style
4cc4bfaf 80 Window style. See wxSearchCtrl.
7c913512 81 @param validator
4cc4bfaf 82 Window validator.
7c913512 83 @param name
4cc4bfaf 84 Window name.
3c4f71cc 85
4cc4bfaf 86 @see wxTextCtrl::Create, wxValidator
23324ae1 87 */
7c913512
FM
88 wxSearchCtrl(wxWindow* parent, wxWindowID id,
89 const wxString& value = "",
90 const wxPoint& pos = wxDefaultPosition,
91 const wxSize& size = wxDefaultSize,
92 long style = 0,
93 const wxValidator& validator = wxDefaultValidator,
94 const wxString& name = wxSearchCtrlNameStr);
23324ae1
FM
95
96 /**
97 Destructor, destroying the search control.
98 */
adaaa686 99 virtual ~wxSearchCtrl();
23324ae1
FM
100
101 /**
7c913512 102 Returns a pointer to the search control's menu object or @NULL if there is no
23324ae1
FM
103 menu attached.
104 */
105 virtual wxMenu* GetMenu();
106
107 /**
7c913512 108 Returns the search button visibility value.
23324ae1 109 If there is a menu attached, the search button will be visible regardless of
e725ba4f
FM
110 the search button visibility value.
111
23324ae1
FM
112 This always returns @false in Mac OS X v10.3
113 */
adaaa686 114 virtual bool IsSearchButtonVisible() const;
23324ae1
FM
115
116 /**
e725ba4f
FM
117 Sets the search control's menu object.
118 If there is already a menu associated with the search control it is deleted.
3c4f71cc 119
7c913512 120 @param menu
4cc4bfaf 121 Menu to attach to the search control.
23324ae1
FM
122 */
123 virtual void SetMenu(wxMenu* menu);
124
125 /**
126 Shows or hides the cancel button.
127 */
128 virtual void ShowCancelButton(bool show);
129
130 /**
7c913512 131 Sets the search button visibility value on the search control.
23324ae1 132 If there is a menu attached, the search button will be visible regardless of
e725ba4f
FM
133 the search button visibility value.
134
23324ae1
FM
135 This has no effect in Mac OS X v10.3
136 */
137 virtual void ShowSearchButton(bool show);
138};
e54c96f1 139