]>
Commit | Line | Data |
---|---|---|
3f7f284d RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/common/srchcmn.cpp | |
3 | // Purpose: common (to all ports) bits of wxSearchCtrl | |
4 | // Author: Robin Dunn | |
5 | // Modified by: | |
6 | // Created: 19-Dec-2006 | |
3f7f284d RD |
7 | // Copyright: (c) wxWidgets team |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | // For compilers that support precompilation, includes "wx.h". | |
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
26 | #if wxUSE_SEARCHCTRL | |
27 | ||
28 | #include "wx/srchctrl.h" | |
29 | ||
30 | #ifndef WX_PRECOMP | |
31 | #endif | |
32 | ||
33 | // ---------------------------------------------------------------------------- | |
34 | ||
f36e602b | 35 | const char wxSearchCtrlNameStr[] = "searchCtrl"; |
3f7f284d | 36 | |
ce7fe42e VZ |
37 | wxDEFINE_EVENT(wxEVT_SEARCHCTRL_CANCEL_BTN, wxCommandEvent); |
38 | wxDEFINE_EVENT(wxEVT_SEARCHCTRL_SEARCH_BTN, wxCommandEvent); | |
3f7f284d RD |
39 | |
40 | ||
41 | #endif // wxUSE_SEARCHCTRL |