]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f6bcfd97 | 2 | // Name: wx/msw/combobox.h |
2bda0e17 KB |
3 | // Purpose: wxComboBox class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_COMBOBOX_H_ |
13 | #define _WX_COMBOBOX_H_ | |
2bda0e17 | 14 | |
2bda0e17 | 15 | #include "wx/choice.h" |
74f35eea | 16 | #include "wx/textentry.h" |
2bda0e17 | 17 | |
47d67540 | 18 | #if wxUSE_COMBOBOX |
2bda0e17 | 19 | |
4438caf4 VZ |
20 | // ---------------------------------------------------------------------------- |
21 | // Combobox control | |
22 | // ---------------------------------------------------------------------------- | |
23 | ||
53a2db12 | 24 | class WXDLLIMPEXP_CORE wxComboBox : public wxChoice, |
b7bfef38 | 25 | public wxTextEntry |
2bda0e17 | 26 | { |
4438caf4 | 27 | public: |
b7bfef38 | 28 | wxComboBox() { Init(); } |
4438caf4 VZ |
29 | |
30 | wxComboBox(wxWindow *parent, wxWindowID id, | |
31 | const wxString& value = wxEmptyString, | |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, | |
34 | int n = 0, const wxString choices[] = NULL, | |
35 | long style = 0, | |
36 | const wxValidator& validator = wxDefaultValidator, | |
6463b9f5 JS |
37 | const wxString& name = wxComboBoxNameStr) |
38 | { | |
b7bfef38 | 39 | Init(); |
6463b9f5 | 40 | Create(parent, id, value, pos, size, n, choices, style, validator, name); |
b7bfef38 | 41 | |
6463b9f5 | 42 | } |
b7bfef38 | 43 | |
584ad2a3 MB |
44 | wxComboBox(wxWindow *parent, wxWindowID id, |
45 | const wxString& value, | |
46 | const wxPoint& pos, | |
47 | const wxSize& size, | |
48 | const wxArrayString& choices, | |
49 | long style = 0, | |
50 | const wxValidator& validator = wxDefaultValidator, | |
51 | const wxString& name = wxComboBoxNameStr) | |
52 | { | |
b7bfef38 VZ |
53 | Init(); |
54 | ||
584ad2a3 MB |
55 | Create(parent, id, value, pos, size, choices, style, validator, name); |
56 | } | |
4438caf4 | 57 | |
f6bcfd97 BP |
58 | bool Create(wxWindow *parent, |
59 | wxWindowID id, | |
60 | const wxString& value = wxEmptyString, | |
61 | const wxPoint& pos = wxDefaultPosition, | |
62 | const wxSize& size = wxDefaultSize, | |
63 | int n = 0, | |
64 | const wxString choices[] = NULL, | |
65 | long style = 0, | |
66 | const wxValidator& validator = wxDefaultValidator, | |
67 | const wxString& name = wxComboBoxNameStr); | |
584ad2a3 MB |
68 | bool Create(wxWindow *parent, |
69 | wxWindowID id, | |
70 | const wxString& value, | |
71 | const wxPoint& pos, | |
72 | const wxSize& size, | |
73 | const wxArrayString& choices, | |
74 | long style = 0, | |
75 | const wxValidator& validator = wxDefaultValidator, | |
76 | const wxString& name = wxComboBoxNameStr); | |
4438caf4 | 77 | |
74f35eea VZ |
78 | // resolve ambiguities among virtual functions inherited from both base |
79 | // classes | |
e6a84162 | 80 | virtual void Clear(); |
e9717bd5 | 81 | virtual wxString GetValue() const; |
4438caf4 | 82 | virtual void SetValue(const wxString& value); |
74f35eea VZ |
83 | virtual wxString GetStringSelection() const |
84 | { return wxChoice::GetStringSelection(); } | |
4438caf4 | 85 | |
7d90194c | 86 | virtual void SetSelection(int n) { wxChoice::SetSelection(n); } |
74f35eea VZ |
87 | virtual void SetSelection(long from, long to) |
88 | { wxTextEntry::SetSelection(from, to); } | |
7d90194c | 89 | virtual int GetSelection() const { return wxChoice::GetSelection(); } |
e9717bd5 | 90 | virtual void GetSelection(long *from, long *to) const; |
74f35eea | 91 | |
7d90194c | 92 | virtual bool IsEditable() const; |
150e31d2 | 93 | |
f6bcfd97 | 94 | // implementation only from now on |
4438caf4 | 95 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
f6bcfd97 | 96 | bool MSWProcessEditMsg(WXUINT msg, WXWPARAM wParam, WXLPARAM lParam); |
c140b7e7 | 97 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
90ac8b50 | 98 | bool MSWShouldPreProcessMessage(WXMSG *pMsg); |
fc7a2a60 | 99 | |
150e31d2 JS |
100 | // Standard event handling |
101 | void OnCut(wxCommandEvent& event); | |
102 | void OnCopy(wxCommandEvent& event); | |
103 | void OnPaste(wxCommandEvent& event); | |
104 | void OnUndo(wxCommandEvent& event); | |
105 | void OnRedo(wxCommandEvent& event); | |
106 | void OnDelete(wxCommandEvent& event); | |
107 | void OnSelectAll(wxCommandEvent& event); | |
108 | ||
109 | void OnUpdateCut(wxUpdateUIEvent& event); | |
110 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
111 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
112 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
113 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
114 | void OnUpdateDelete(wxUpdateUIEvent& event); | |
115 | void OnUpdateSelectAll(wxUpdateUIEvent& event); | |
116 | ||
71e57cd6 VZ |
117 | virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; |
118 | ||
63f7d502 VZ |
119 | #if wxUSE_UXTHEME |
120 | // override wxTextEntry method to work around Windows bug | |
121 | virtual bool SetHint(const wxString& hint); | |
122 | #endif // wxUSE_UXTHEME | |
123 | ||
3c75d8ba | 124 | protected: |
d6b9cc87 VZ |
125 | #if wxUSE_TOOLTIPS |
126 | virtual void DoSetToolTip(wxToolTip *tip); | |
127 | #endif | |
128 | ||
e9717bd5 VZ |
129 | // this is the implementation of GetEditHWND() which can also be used when |
130 | // we don't have the edit control, it simply returns NULL then | |
131 | // | |
132 | // try not to use this function unless absolutely necessary (as in the | |
133 | // message handling code where the edit control might not be created yet | |
134 | // for the messages we receive during the control creation) as normally | |
135 | // just testing for IsEditable() and using GetEditHWND() should be enough | |
136 | WXHWND GetEditHWNDIfAvailable() const; | |
137 | ||
b7bfef38 VZ |
138 | virtual void EnableTextChangedEvents(bool enable) |
139 | { | |
140 | m_allowTextEvents = enable; | |
141 | } | |
142 | ||
fc7a2a60 | 143 | private: |
63f7d502 VZ |
144 | // there are the overridden wxTextEntry methods which should only be called |
145 | // when we do have an edit control so they assert if this is not the case | |
146 | virtual wxWindow *GetEditableWindow(); | |
3c75d8ba PC |
147 | virtual WXHWND GetEditHWND() const; |
148 | ||
b7bfef38 VZ |
149 | // common part of all ctors |
150 | void Init() | |
151 | { | |
152 | m_allowTextEvents = true; | |
153 | } | |
154 | ||
155 | // normally true, false if text events are currently disabled | |
156 | bool m_allowTextEvents; | |
157 | ||
fc7a2a60 | 158 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox) |
150e31d2 | 159 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
160 | }; |
161 | ||
47d67540 | 162 | #endif // wxUSE_COMBOBOX |
74f35eea VZ |
163 | |
164 | #endif // _WX_COMBOBOX_H_ |