]>
Commit | Line | Data |
---|---|---|
a340b80d VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/generic/combo.h | |
a57d600f | 3 | // Purpose: Generic wxComboCtrl |
a340b80d VZ |
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 | ||
129c8cf3 RR |
12 | #ifndef _WX_GENERIC_COMBOCTRL_H_ |
13 | #define _WX_GENERIC_COMBOCTRL_H_ | |
a340b80d | 14 | |
a57d600f | 15 | #if wxUSE_COMBOCTRL |
a340b80d VZ |
16 | |
17 | // Only define generic if native doesn't have all the features | |
18 | #if !defined(wxCOMBOCONTROL_FULLY_FEATURED) | |
19 | ||
20 | // ---------------------------------------------------------------------------- | |
a57d600f | 21 | // Generic wxComboCtrl |
a340b80d VZ |
22 | // ---------------------------------------------------------------------------- |
23 | ||
24 | #if defined(__WXUNIVERSAL__) | |
25 | ||
26 | // all actions of single line text controls are supported | |
27 | ||
28 | // popup/dismiss the choice window | |
9a83f860 VZ |
29 | #define wxACTION_COMBOBOX_POPUP wxT("popup") |
30 | #define wxACTION_COMBOBOX_DISMISS wxT("dismiss") | |
a340b80d VZ |
31 | |
32 | #endif | |
33 | ||
f36e602b | 34 | extern WXDLLIMPEXP_DATA_CORE(const char) wxComboBoxNameStr[]; |
a340b80d | 35 | |
53a2db12 | 36 | class WXDLLIMPEXP_CORE wxGenericComboCtrl : public wxComboCtrlBase |
a340b80d VZ |
37 | { |
38 | public: | |
39 | // ctors and such | |
129c8cf3 RR |
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) | |
a57d600f | 50 | : wxComboCtrlBase() |
a340b80d VZ |
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 | ||
129c8cf3 | 66 | virtual ~wxGenericComboCtrl(); |
a340b80d | 67 | |
8e9ec723 RR |
68 | void SetCustomPaintWidth( int width ); |
69 | ||
b445b6a7 VZ |
70 | virtual bool IsKeyPopupToggle(const wxKeyEvent& event) const; |
71 | ||
a57d600f | 72 | static int GetFeatures() { return wxComboCtrlFeatures::All; } |
a340b80d VZ |
73 | |
74 | #if defined(__WXUNIVERSAL__) | |
75 | // we have our own input handler and our own actions | |
76 | virtual bool PerformAction(const wxControlAction& action, | |
77 | long numArg = 0l, | |
78 | const wxString& strArg = wxEmptyString); | |
79 | #endif | |
80 | ||
81 | protected: | |
82 | ||
83 | // Mandatory virtuals | |
84 | virtual void OnResize(); | |
85 | ||
86 | // Event handlers | |
87 | void OnPaintEvent( wxPaintEvent& event ); | |
88 | void OnMouseEvent( wxMouseEvent& event ); | |
89 | ||
90 | private: | |
91 | void Init(); | |
92 | ||
93 | DECLARE_EVENT_TABLE() | |
94 | ||
129c8cf3 | 95 | DECLARE_DYNAMIC_CLASS(wxGenericComboCtrl) |
a340b80d VZ |
96 | }; |
97 | ||
98 | ||
99 | #ifndef _WX_COMBOCONTROL_H_ | |
100 | ||
a57d600f | 101 | // If native wxComboCtrl was not defined, then prepare a simple |
a340b80d VZ |
102 | // front-end so that wxRTTI works as expected. |
103 | ||
53a2db12 | 104 | class WXDLLIMPEXP_CORE wxComboCtrl : public wxGenericComboCtrl |
a340b80d VZ |
105 | { |
106 | public: | |
129c8cf3 | 107 | wxComboCtrl() : wxGenericComboCtrl() {} |
a340b80d | 108 | |
a57d600f | 109 | wxComboCtrl(wxWindow *parent, |
129c8cf3 RR |
110 | wxWindowID id = wxID_ANY, |
111 | const wxString& value = wxEmptyString, | |
112 | const wxPoint& pos = wxDefaultPosition, | |
113 | const wxSize& size = wxDefaultSize, | |
114 | long style = 0, | |
115 | const wxValidator& validator = wxDefaultValidator, | |
116 | const wxString& name = wxComboBoxNameStr) | |
117 | : wxGenericComboCtrl() | |
a340b80d VZ |
118 | { |
119 | (void)Create(parent, id, value, pos, size, style, validator, name); | |
120 | } | |
121 | ||
a57d600f | 122 | virtual ~wxComboCtrl() {} |
a340b80d VZ |
123 | |
124 | protected: | |
125 | ||
126 | private: | |
a57d600f | 127 | DECLARE_DYNAMIC_CLASS(wxComboCtrl) |
a340b80d VZ |
128 | }; |
129 | ||
130 | #endif // _WX_COMBOCONTROL_H_ | |
131 | ||
132 | #else | |
133 | ||
129c8cf3 | 134 | #define wxGenericComboCtrl wxComboCtrl |
a340b80d VZ |
135 | |
136 | #endif // !defined(wxCOMBOCONTROL_FULLY_FEATURED) | |
137 | ||
a57d600f | 138 | #endif // wxUSE_COMBOCTRL |
a340b80d | 139 | #endif |
129c8cf3 | 140 | // _WX_GENERIC_COMBOCTRL_H_ |