[ 1557284 ] wxGenericComboControl -> wxGenericComboCtrl
[wxWidgets.git] / include / wx / generic / combo.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/combo.h
3 // Purpose: Generic wxComboCtrl
4 // Author: Jaakko Salli
5 // Modified by:
6 // Created: Apr-30-2006
7 // RCS-ID: $Id$
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_GENERIC_COMBOCTRL_H_
13 #define _WX_GENERIC_COMBOCTRL_H_
14
15 #if wxUSE_COMBOCTRL
16
17 // Only define generic if native doesn't have all the features
18 #if !defined(wxCOMBOCONTROL_FULLY_FEATURED)
19
20 // ----------------------------------------------------------------------------
21 // Generic wxComboCtrl
22 // ----------------------------------------------------------------------------
23
24 #if defined(__WXUNIVERSAL__)
25
26 // all actions of single line text controls are supported
27
28 // popup/dismiss the choice window
29 #define wxACTION_COMBOBOX_POPUP _T("popup")
30 #define wxACTION_COMBOBOX_DISMISS _T("dismiss")
31
32 #endif
33
34 extern WXDLLIMPEXP_DATA_CORE(const wxChar) wxComboBoxNameStr[];
35
36 class WXDLLEXPORT wxGenericComboCtrl : public wxComboCtrlBase
37 {
38 public:
39 // ctors and such
40 wxGenericComboCtrl() : wxComboCtrlBase() { Init(); }
41
42 wxGenericComboCtrl(wxWindow *parent,
43 wxWindowID id = wxID_ANY,
44 const wxString& value = wxEmptyString,
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxDefaultSize,
47 long style = 0,
48 const wxValidator& validator = wxDefaultValidator,
49 const wxString& name = wxComboBoxNameStr)
50 : wxComboCtrlBase()
51 {
52 Init();
53
54 (void)Create(parent, id, value, pos, size, style, validator, name);
55 }
56
57 bool Create(wxWindow *parent,
58 wxWindowID id = wxID_ANY,
59 const wxString& value = wxEmptyString,
60 const wxPoint& pos = wxDefaultPosition,
61 const wxSize& size = wxDefaultSize,
62 long style = 0,
63 const wxValidator& validator = wxDefaultValidator,
64 const wxString& name = wxComboBoxNameStr);
65
66 virtual ~wxGenericComboCtrl();
67
68 virtual bool IsKeyPopupToggle(const wxKeyEvent& event) const;
69
70 static int GetFeatures() { return wxComboCtrlFeatures::All; }
71
72 #if defined(__WXUNIVERSAL__)
73 // we have our own input handler and our own actions
74 virtual bool PerformAction(const wxControlAction& action,
75 long numArg = 0l,
76 const wxString& strArg = wxEmptyString);
77 #endif
78
79 protected:
80
81 // Mandatory virtuals
82 virtual void OnResize();
83
84 // Event handlers
85 void OnPaintEvent( wxPaintEvent& event );
86 void OnMouseEvent( wxMouseEvent& event );
87
88 private:
89 void Init();
90
91 DECLARE_EVENT_TABLE()
92
93 DECLARE_DYNAMIC_CLASS(wxGenericComboCtrl)
94 };
95
96
97 #ifndef _WX_COMBOCONTROL_H_
98
99 // If native wxComboCtrl was not defined, then prepare a simple
100 // front-end so that wxRTTI works as expected.
101
102 class WXDLLEXPORT wxComboCtrl : public wxGenericComboCtrl
103 {
104 public:
105 wxComboCtrl() : wxGenericComboCtrl() {}
106
107 wxComboCtrl(wxWindow *parent,
108 wxWindowID id = wxID_ANY,
109 const wxString& value = wxEmptyString,
110 const wxPoint& pos = wxDefaultPosition,
111 const wxSize& size = wxDefaultSize,
112 long style = 0,
113 const wxValidator& validator = wxDefaultValidator,
114 const wxString& name = wxComboBoxNameStr)
115 : wxGenericComboCtrl()
116 {
117 (void)Create(parent, id, value, pos, size, style, validator, name);
118 }
119
120 virtual ~wxComboCtrl() {}
121
122 protected:
123
124 private:
125 DECLARE_DYNAMIC_CLASS(wxComboCtrl)
126 };
127
128 #endif // _WX_COMBOCONTROL_H_
129
130 #else
131
132 #define wxGenericComboCtrl wxComboCtrl
133
134 #endif // !defined(wxCOMBOCONTROL_FULLY_FEATURED)
135
136 #endif // wxUSE_COMBOCTRL
137 #endif
138 // _WX_GENERIC_COMBOCTRL_H_