]>
Commit | Line | Data |
---|---|---|
a340b80d | 1 | ///////////////////////////////////////////////////////////////////////////// |
b61f4f77 | 2 | // Name: src/common/combocmn.cpp |
a57d600f | 3 | // Purpose: wxComboCtrlBase |
a340b80d VZ |
4 | // Author: Jaakko Salli |
5 | // Modified by: | |
6 | // Created: Apr-30-2006 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2005 Jaakko Salli | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
f4120538 PC |
26 | #include "wx/combo.h" |
27 | ||
f313deaa | 28 | #if wxUSE_COMBOBOX |
a5bbd1cc | 29 | #include "wx/combobox.h" |
f313deaa | 30 | extern WXDLLEXPORT_DATA(const char) wxComboBoxNameStr[] = "comboBox"; |
a340b80d | 31 | |
28953245 SC |
32 | // ---------------------------------------------------------------------------- |
33 | // XTI | |
34 | // ---------------------------------------------------------------------------- | |
35 | ||
36 | wxDEFINE_FLAGS( wxComboBoxStyle ) | |
37 | wxBEGIN_FLAGS( wxComboBoxStyle ) | |
38 | // new style border flags, we put them first to | |
39 | // use them for streaming out | |
40 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) | |
41 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
42 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
43 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
44 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
45 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
46 | ||
47 | // old style border flags | |
48 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) | |
49 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
50 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
51 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
52 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
53 | wxFLAGS_MEMBER(wxBORDER) | |
54 | ||
55 | // standard window styles | |
56 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) | |
57 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
58 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
59 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
60 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) | |
61 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) | |
62 | wxFLAGS_MEMBER(wxVSCROLL) | |
63 | wxFLAGS_MEMBER(wxHSCROLL) | |
64 | ||
65 | wxFLAGS_MEMBER(wxCB_SIMPLE) | |
66 | wxFLAGS_MEMBER(wxCB_SORT) | |
67 | wxFLAGS_MEMBER(wxCB_READONLY) | |
68 | wxFLAGS_MEMBER(wxCB_DROPDOWN) | |
69 | ||
70 | wxEND_FLAGS( wxComboBoxStyle ) | |
71 | ||
72259abb | 72 | wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxComboBox, wxControl, "wx/combobox.h") |
28953245 SC |
73 | |
74 | wxBEGIN_PROPERTIES_TABLE(wxComboBox) | |
75 | wxEVENT_PROPERTY( Select, wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEvent ) | |
76 | wxEVENT_PROPERTY( TextEnter, wxEVT_COMMAND_TEXT_ENTER, wxCommandEvent ) | |
77 | ||
78 | // TODO DELEGATES | |
79 | wxPROPERTY( Font, wxFont, SetFont, GetFont, wxEMPTY_PARAMETER_VALUE, \ | |
80 | 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
81 | wxPROPERTY_COLLECTION( Choices, wxArrayString, wxString, AppendString, \ | |
82 | GetStrings, 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
83 | wxPROPERTY( Value,wxString, SetValue, GetValue, wxEMPTY_PARAMETER_VALUE, \ | |
84 | 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
85 | wxPROPERTY( Selection,int, SetSelection, GetSelection, wxEMPTY_PARAMETER_VALUE, \ | |
86 | 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
87 | ||
88 | wxPROPERTY_FLAGS( WindowStyle, wxComboBoxStyle, long, SetWindowStyleFlag, \ | |
89 | GetWindowStyleFlag, wxEMPTY_PARAMETER_VALUE, 0 /*flags*/, \ | |
90 | wxT("Helpstring"), wxT("group")) // style | |
91 | wxEND_PROPERTIES_TABLE() | |
92 | ||
93 | wxEMPTY_HANDLERS_TABLE(wxComboBox) | |
94 | ||
95 | wxCONSTRUCTOR_5( wxComboBox, wxWindow*, Parent, wxWindowID, Id, \ | |
96 | wxString, Value, wxPoint, Position, wxSize, Size ) | |
a340b80d | 97 | |
f4120538 PC |
98 | #endif // wxUSE_COMBOBOX |
99 | ||
100 | #if wxUSE_COMBOCTRL | |
101 | ||
102 | #ifndef WX_PRECOMP | |
103 | #include "wx/app.h" | |
104 | #include "wx/log.h" | |
105 | #include "wx/dcclient.h" | |
106 | #include "wx/settings.h" | |
107 | #include "wx/timer.h" | |
108 | #include "wx/textctrl.h" | |
109 | #endif | |
110 | ||
111 | #include "wx/tooltip.h" | |
112 | ||
a340b80d VZ |
113 | // constants |
114 | // ---------------------------------------------------------------------------- | |
115 | ||
a340b80d VZ |
116 | #define DEFAULT_DROPBUTTON_WIDTH 19 |
117 | ||
118 | #define BMP_BUTTON_MARGIN 4 | |
119 | ||
7962f85a | 120 | #define DEFAULT_POPUP_HEIGHT 400 |
a340b80d VZ |
121 | |
122 | #define DEFAULT_TEXT_INDENT 3 | |
123 | ||
124 | #define COMBO_MARGIN 2 // spacing right of wxTextCtrl | |
125 | ||
126 | ||
127 | #if defined(__WXMSW__) | |
128 | ||
fd5b4315 JS |
129 | // Let's use wxFrame as a fall-back solution until wxMSW gets wxNonOwnedWindow |
130 | #include "wx/frame.h" | |
131 | #define wxCC_GENERIC_TLW_IS_FRAME | |
132 | #define wxComboCtrlGenericTLW wxFrame | |
133 | ||
a340b80d | 134 | #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform) |
06077aaf VZ |
135 | #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common |
136 | // native controls work on it like normal. | |
137 | #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window. | |
7e4545b8 | 138 | #define TEXTCTRL_TEXT_CENTERED 0 // 1 if text in textctrl is vertically centered |
2dfa37d6 | 139 | #define FOCUS_RING 0 // No focus ring on wxMSW |
a340b80d VZ |
140 | |
141 | //#undef wxUSE_POPUPWIN | |
142 | //#define wxUSE_POPUPWIN 0 | |
143 | ||
144 | #elif defined(__WXGTK__) | |
145 | ||
06077aaf VZ |
146 | // NB: It is not recommended to use wxDialog as popup on wxGTK, because of |
147 | // this bug: If wxDialog is hidden, its position becomes corrupt | |
148 | // between hide and next show, but without internal coordinates being | |
149 | // reflected (or something like that - atleast commenting out ->Hide() | |
150 | // seemed to eliminate the position change). | |
151 | ||
fd5b4315 JS |
152 | #include "wx/dialog.h" |
153 | #define wxCC_GENERIC_TLW_IS_DIALOG | |
154 | #define wxComboCtrlGenericTLW wxDialog | |
155 | ||
b9d0da6f JJ |
156 | #if defined(__WXGTK20__) |
157 | # include "wx/gtk/private.h" | |
158 | #else | |
159 | # include "wx/gtk1/private.h" | |
160 | #endif | |
fd5b4315 | 161 | |
d42b8621 | 162 | // NB: Let's not be afraid to use wxGTK's wxPopupTransientWindow as a |
4c51a665 | 163 | // 'perfect' popup, as it can successfully host child controls even in |
d42b8621 JS |
164 | // popups that are shown in modal dialogs. |
165 | ||
a340b80d | 166 | #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform) |
d42b8621 | 167 | #define TRANSIENT_POPUPWIN_IS_PERFECT 1 // wxPopupTransientWindow works, its child can have focus, and common |
06077aaf VZ |
168 | // native controls work on it like normal. |
169 | #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window. | |
7e4545b8 | 170 | #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered |
2dfa37d6 | 171 | #define FOCUS_RING 0 // No focus ring on wxGTK |
a340b80d VZ |
172 | |
173 | #elif defined(__WXMAC__) | |
174 | ||
fd5b4315 JS |
175 | #include "wx/nonownedwnd.h" |
176 | #define wxCC_GENERIC_TLW_IS_NONOWNEDWINDOW | |
177 | #define wxComboCtrlGenericTLW wxNonOwnedWindow | |
178 | ||
b48eedfc RR |
179 | #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform) |
180 | #define TRANSIENT_POPUPWIN_IS_PERFECT 1 // wxPopupTransientWindow works, its child can have focus, and common | |
06077aaf | 181 | // native controls work on it like normal. |
b48eedfc | 182 | #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window. |
7e4545b8 | 183 | #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered |
2dfa37d6 RD |
184 | #define FOCUS_RING 3 // Reserve room for the textctrl's focus ring to display |
185 | ||
186 | #undef DEFAULT_DROPBUTTON_WIDTH | |
187 | #define DEFAULT_DROPBUTTON_WIDTH 22 | |
188 | #undef COMBO_MARGIN | |
189 | #define COMBO_MARGIN FOCUS_RING | |
a340b80d VZ |
190 | |
191 | #else | |
192 | ||
fd5b4315 JS |
193 | #include "wx/dialog.h" |
194 | #define wxCC_GENERIC_TLW_IS_DIALOG | |
195 | #define wxComboCtrlGenericTLW wxDialog | |
196 | ||
a340b80d | 197 | #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform) |
06077aaf VZ |
198 | #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common |
199 | // native controls work on it like normal. | |
200 | #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window. | |
7e4545b8 | 201 | #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered |
2dfa37d6 | 202 | #define FOCUS_RING 0 |
f3fcecd6 | 203 | |
a340b80d VZ |
204 | #endif |
205 | ||
206 | ||
207 | // Popupwin is really only supported on wxMSW (not WINCE) and wxGTK, regardless | |
208 | // what the wxUSE_POPUPWIN says. | |
209 | // FIXME: Why isn't wxUSE_POPUPWIN reliable any longer? (it was in wxW2.6.2) | |
b48eedfc | 210 | #if (!defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMAC__)) || defined(__WXWINCE__) |
a340b80d VZ |
211 | #undef wxUSE_POPUPWIN |
212 | #define wxUSE_POPUPWIN 0 | |
213 | #endif | |
214 | ||
215 | ||
216 | #if wxUSE_POPUPWIN | |
217 | #include "wx/popupwin.h" | |
218 | #else | |
219 | #undef USE_TRANSIENT_POPUP | |
220 | #define USE_TRANSIENT_POPUP 0 | |
221 | #endif | |
222 | ||
223 | ||
06077aaf VZ |
224 | // Define different types of popup windows |
225 | enum | |
226 | { | |
227 | POPUPWIN_NONE = 0, | |
228 | POPUPWIN_WXPOPUPTRANSIENTWINDOW = 1, | |
229 | POPUPWIN_WXPOPUPWINDOW = 2, | |
fd5b4315 | 230 | POPUPWIN_GENERICTLW = 3 |
06077aaf | 231 | }; |
a340b80d | 232 | |
06077aaf VZ |
233 | |
234 | #if USE_TRANSIENT_POPUP | |
235 | // wxPopupTransientWindow is implemented | |
236 | ||
237 | #define wxComboPopupWindowBase wxPopupTransientWindow | |
238 | #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPTRANSIENTWINDOW | |
239 | #define USES_WXPOPUPTRANSIENTWINDOW 1 | |
240 | ||
241 | #if TRANSIENT_POPUPWIN_IS_PERFECT | |
242 | // | |
243 | #elif POPUPWIN_IS_PERFECT | |
244 | #define wxComboPopupWindowBase2 wxPopupWindow | |
245 | #define SECONDARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW | |
246 | #define USES_WXPOPUPWINDOW 1 | |
247 | #else | |
fd5b4315 JS |
248 | #define wxComboPopupWindowBase2 wxComboCtrlGenericTLW |
249 | #define SECONDARY_POPUP_TYPE POPUPWIN_GENERICTLW | |
250 | #define USES_GENERICTLW 1 | |
06077aaf | 251 | #endif |
a340b80d VZ |
252 | |
253 | #elif wxUSE_POPUPWIN | |
06077aaf | 254 | // wxPopupWindow (but not wxPopupTransientWindow) is properly implemented |
a340b80d | 255 | |
06077aaf VZ |
256 | #define wxComboPopupWindowBase wxPopupWindow |
257 | #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW | |
258 | #define USES_WXPOPUPWINDOW 1 | |
259 | ||
260 | #if !POPUPWIN_IS_PERFECT | |
fd5b4315 JS |
261 | #define wxComboPopupWindowBase2 wxComboCtrlGenericTLW |
262 | #define SECONDARY_POPUP_TYPE POPUPWIN_GENERICTLW | |
263 | #define USES_GENERICTLW 1 | |
06077aaf | 264 | #endif |
a340b80d VZ |
265 | |
266 | #else | |
06077aaf VZ |
267 | // wxPopupWindow is not implemented |
268 | ||
fd5b4315 JS |
269 | #define wxComboPopupWindowBase wxComboCtrlGenericTLW |
270 | #define PRIMARY_POPUP_TYPE POPUPWIN_GENERICTLW | |
271 | #define USES_GENERICTLW 1 | |
06077aaf VZ |
272 | |
273 | #endif | |
274 | ||
275 | ||
276 | #ifndef USES_WXPOPUPTRANSIENTWINDOW | |
277 | #define USES_WXPOPUPTRANSIENTWINDOW 0 | |
278 | #endif | |
a340b80d | 279 | |
06077aaf VZ |
280 | #ifndef USES_WXPOPUPWINDOW |
281 | #define USES_WXPOPUPWINDOW 0 | |
282 | #endif | |
a340b80d | 283 | |
fd5b4315 JS |
284 | #ifndef USES_GENERICTLW |
285 | #define USES_GENERICTLW 0 | |
a340b80d VZ |
286 | #endif |
287 | ||
288 | ||
06077aaf VZ |
289 | #if USES_WXPOPUPWINDOW |
290 | #define INSTALL_TOPLEV_HANDLER 1 | |
291 | #else | |
292 | #define INSTALL_TOPLEV_HANDLER 0 | |
293 | #endif | |
294 | ||
a340b80d | 295 | |
52999871 JS |
296 | // Returns true if given popup window type can be classified as perfect |
297 | // on this platform. | |
298 | static inline bool IsPopupWinTypePerfect( wxByte popupWinType ) | |
299 | { | |
300 | #if POPUPWIN_IS_PERFECT && TRANSIENT_POPUPWIN_IS_PERFECT | |
301 | wxUnusedVar(popupWinType); | |
302 | return true; | |
303 | #else | |
304 | return ( popupWinType == POPUPWIN_GENERICTLW | |
305 | #if POPUPWIN_IS_PERFECT | |
ce00f59b | 306 | || popupWinType == POPUPWIN_WXPOPUPWINDOW |
52999871 JS |
307 | #endif |
308 | #if TRANSIENT_POPUPWIN_IS_PERFECT | |
ce00f59b | 309 | || popupWinType == POPUPWIN_WXPOPUPTRANSIENTWINDOW |
52999871 JS |
310 | #endif |
311 | ); | |
312 | #endif | |
313 | } | |
314 | ||
315 | ||
a340b80d VZ |
316 | // |
317 | // ** TODO ** | |
318 | // * wxComboPopupWindow for external use (ie. replace old wxUniv wxPopupComboWindow) | |
319 | // | |
320 | ||
321 | ||
322 | // ---------------------------------------------------------------------------- | |
323 | // wxComboFrameEventHandler takes care of hiding the popup when events happen | |
324 | // in its top level parent. | |
325 | // ---------------------------------------------------------------------------- | |
326 | ||
327 | #if INSTALL_TOPLEV_HANDLER | |
328 | ||
329 | // | |
330 | // This will no longer be necessary after wxTransientPopupWindow | |
331 | // works well on all platforms. | |
332 | // | |
333 | ||
334 | class wxComboFrameEventHandler : public wxEvtHandler | |
335 | { | |
336 | public: | |
a57d600f | 337 | wxComboFrameEventHandler( wxComboCtrlBase* pCb ); |
d3c7fc99 | 338 | virtual ~wxComboFrameEventHandler(); |
a340b80d VZ |
339 | |
340 | void OnPopup(); | |
341 | ||
342 | void OnIdle( wxIdleEvent& event ); | |
343 | void OnMouseEvent( wxMouseEvent& event ); | |
344 | void OnActivate( wxActivateEvent& event ); | |
345 | void OnResize( wxSizeEvent& event ); | |
346 | void OnMove( wxMoveEvent& event ); | |
347 | void OnMenuEvent( wxMenuEvent& event ); | |
348 | void OnClose( wxCloseEvent& event ); | |
349 | ||
350 | protected: | |
351 | wxWindow* m_focusStart; | |
a57d600f | 352 | wxComboCtrlBase* m_combo; |
a340b80d VZ |
353 | |
354 | private: | |
355 | DECLARE_EVENT_TABLE() | |
356 | }; | |
357 | ||
358 | BEGIN_EVENT_TABLE(wxComboFrameEventHandler, wxEvtHandler) | |
359 | EVT_IDLE(wxComboFrameEventHandler::OnIdle) | |
360 | EVT_LEFT_DOWN(wxComboFrameEventHandler::OnMouseEvent) | |
361 | EVT_RIGHT_DOWN(wxComboFrameEventHandler::OnMouseEvent) | |
362 | EVT_SIZE(wxComboFrameEventHandler::OnResize) | |
363 | EVT_MOVE(wxComboFrameEventHandler::OnMove) | |
364 | EVT_MENU_HIGHLIGHT(wxID_ANY,wxComboFrameEventHandler::OnMenuEvent) | |
365 | EVT_MENU_OPEN(wxComboFrameEventHandler::OnMenuEvent) | |
366 | EVT_ACTIVATE(wxComboFrameEventHandler::OnActivate) | |
367 | EVT_CLOSE(wxComboFrameEventHandler::OnClose) | |
368 | END_EVENT_TABLE() | |
369 | ||
a57d600f | 370 | wxComboFrameEventHandler::wxComboFrameEventHandler( wxComboCtrlBase* combo ) |
a340b80d VZ |
371 | : wxEvtHandler() |
372 | { | |
373 | m_combo = combo; | |
374 | } | |
375 | ||
376 | wxComboFrameEventHandler::~wxComboFrameEventHandler() | |
377 | { | |
378 | } | |
379 | ||
380 | void wxComboFrameEventHandler::OnPopup() | |
381 | { | |
382 | m_focusStart = ::wxWindow::FindFocus(); | |
383 | } | |
384 | ||
385 | void wxComboFrameEventHandler::OnIdle( wxIdleEvent& event ) | |
386 | { | |
387 | wxWindow* winFocused = ::wxWindow::FindFocus(); | |
388 | ||
c667b518 | 389 | wxWindow* popup = m_combo->GetPopupControl()->GetControl(); |
a340b80d VZ |
390 | wxWindow* winpopup = m_combo->GetPopupWindow(); |
391 | ||
392 | if ( | |
393 | winFocused != m_focusStart && | |
394 | winFocused != popup && | |
395 | winFocused->GetParent() != popup && | |
396 | winFocused != winpopup && | |
397 | winFocused->GetParent() != winpopup && | |
398 | winFocused != m_combo && | |
399 | winFocused != m_combo->GetButton() // GTK (atleast) requires this | |
400 | ) | |
401 | { | |
a1d5aa93 | 402 | m_combo->HidePopup(true); |
a340b80d VZ |
403 | } |
404 | ||
405 | event.Skip(); | |
406 | } | |
407 | ||
408 | void wxComboFrameEventHandler::OnMenuEvent( wxMenuEvent& event ) | |
409 | { | |
a1d5aa93 | 410 | m_combo->HidePopup(true); |
a340b80d VZ |
411 | event.Skip(); |
412 | } | |
413 | ||
414 | void wxComboFrameEventHandler::OnMouseEvent( wxMouseEvent& event ) | |
415 | { | |
a1d5aa93 | 416 | m_combo->HidePopup(true); |
a340b80d VZ |
417 | event.Skip(); |
418 | } | |
419 | ||
420 | void wxComboFrameEventHandler::OnClose( wxCloseEvent& event ) | |
421 | { | |
a1d5aa93 | 422 | m_combo->HidePopup(true); |
a340b80d VZ |
423 | event.Skip(); |
424 | } | |
425 | ||
426 | void wxComboFrameEventHandler::OnActivate( wxActivateEvent& event ) | |
427 | { | |
a1d5aa93 | 428 | m_combo->HidePopup(true); |
a340b80d VZ |
429 | event.Skip(); |
430 | } | |
431 | ||
432 | void wxComboFrameEventHandler::OnResize( wxSizeEvent& event ) | |
433 | { | |
a1d5aa93 | 434 | m_combo->HidePopup(true); |
a340b80d VZ |
435 | event.Skip(); |
436 | } | |
437 | ||
438 | void wxComboFrameEventHandler::OnMove( wxMoveEvent& event ) | |
439 | { | |
a1d5aa93 | 440 | m_combo->HidePopup(true); |
a340b80d VZ |
441 | event.Skip(); |
442 | } | |
443 | ||
444 | #endif // INSTALL_TOPLEV_HANDLER | |
445 | ||
446 | // ---------------------------------------------------------------------------- | |
06077aaf | 447 | // wxComboPopupWindow is, in essence, wxPopupWindow customized for |
a57d600f | 448 | // wxComboCtrl. |
a340b80d VZ |
449 | // ---------------------------------------------------------------------------- |
450 | ||
451 | class wxComboPopupWindow : public wxComboPopupWindowBase | |
452 | { | |
453 | public: | |
454 | ||
06077aaf VZ |
455 | wxComboPopupWindow( wxComboCtrlBase *parent, |
456 | int style ) | |
457 | #if USES_WXPOPUPWINDOW || USES_WXPOPUPTRANSIENTWINDOW | |
458 | : wxComboPopupWindowBase(parent,style) | |
459 | #else | |
460 | : wxComboPopupWindowBase(parent, | |
461 | wxID_ANY, | |
462 | wxEmptyString, | |
463 | wxPoint(-21,-21), | |
464 | wxSize(20,20), | |
465 | style) | |
466 | #endif | |
467 | { | |
974a12f8 | 468 | m_inShow = 0; |
06077aaf | 469 | } |
a340b80d | 470 | |
06077aaf | 471 | #if USES_WXPOPUPTRANSIENTWINDOW |
974a12f8 | 472 | virtual bool Show( bool show ); |
a340b80d | 473 | virtual bool ProcessLeftDown(wxMouseEvent& event); |
d7e15728 | 474 | protected: |
06077aaf | 475 | virtual void OnDismiss(); |
a340b80d VZ |
476 | #endif |
477 | ||
974a12f8 RR |
478 | private: |
479 | wxByte m_inShow; | |
06077aaf | 480 | }; |
a340b80d | 481 | |
a340b80d | 482 | |
06077aaf | 483 | #if USES_WXPOPUPTRANSIENTWINDOW |
974a12f8 | 484 | bool wxComboPopupWindow::Show( bool show ) |
06077aaf | 485 | { |
974a12f8 RR |
486 | // Guard against recursion |
487 | if ( m_inShow ) | |
488 | return wxComboPopupWindowBase::Show(show); | |
489 | ||
490 | m_inShow++; | |
491 | ||
31a33b67 VZ |
492 | wxPopupTransientWindow* const |
493 | ptw = static_cast<wxPopupTransientWindow*>(this); | |
974a12f8 RR |
494 | |
495 | if ( show != ptw->IsShown() ) | |
496 | { | |
497 | if ( show ) | |
c905c0d6 VZ |
498 | // We used to do wxPopupTransientWindow::Popup here, |
499 | // but this would hide normal Show, which we are | |
500 | // also going to need. | |
501 | ptw->Show(); | |
974a12f8 RR |
502 | else |
503 | ptw->Dismiss(); | |
504 | } | |
505 | ||
506 | m_inShow--; | |
507 | ||
508 | return true; | |
509 | } | |
510 | ||
511 | bool wxComboPopupWindow::ProcessLeftDown(wxMouseEvent& event) | |
512 | { | |
513 | return wxPopupTransientWindow::ProcessLeftDown(event); | |
06077aaf | 514 | } |
a340b80d | 515 | |
06077aaf VZ |
516 | // First thing that happens when a transient popup closes is that this method gets called. |
517 | void wxComboPopupWindow::OnDismiss() | |
518 | { | |
519 | wxComboCtrlBase* combo = (wxComboCtrlBase*) GetParent(); | |
345c78ca | 520 | wxASSERT_MSG( wxDynamicCast(combo, wxComboCtrlBase), |
06077aaf VZ |
521 | wxT("parent might not be wxComboCtrl, but check IMPLEMENT_DYNAMIC_CLASS(2) macro for correctness") ); |
522 | ||
a1d5aa93 | 523 | combo->OnPopupDismiss(true); |
06077aaf VZ |
524 | } |
525 | #endif // USES_WXPOPUPTRANSIENTWINDOW | |
526 | ||
527 | ||
528 | // ---------------------------------------------------------------------------- | |
529 | // wxComboPopupWindowEvtHandler does bulk of the custom event handling | |
530 | // of a popup window. It is separate so we can have different types | |
531 | // of popup windows. | |
532 | // ---------------------------------------------------------------------------- | |
533 | ||
534 | class wxComboPopupWindowEvtHandler : public wxEvtHandler | |
535 | { | |
536 | public: | |
537 | ||
538 | wxComboPopupWindowEvtHandler( wxComboCtrlBase *parent ) | |
539 | { | |
540 | m_combo = parent; | |
541 | } | |
542 | ||
974a12f8 | 543 | void OnSizeEvent( wxSizeEvent& event ); |
06077aaf | 544 | void OnKeyEvent(wxKeyEvent& event); |
fd5b4315 | 545 | #if USES_GENERICTLW |
06077aaf | 546 | void OnActivate( wxActivateEvent& event ); |
a340b80d VZ |
547 | #endif |
548 | ||
549 | private: | |
06077aaf VZ |
550 | wxComboCtrlBase* m_combo; |
551 | ||
a340b80d VZ |
552 | DECLARE_EVENT_TABLE() |
553 | }; | |
554 | ||
555 | ||
06077aaf VZ |
556 | BEGIN_EVENT_TABLE(wxComboPopupWindowEvtHandler, wxEvtHandler) |
557 | EVT_KEY_DOWN(wxComboPopupWindowEvtHandler::OnKeyEvent) | |
558 | EVT_KEY_UP(wxComboPopupWindowEvtHandler::OnKeyEvent) | |
c765e6fb | 559 | EVT_CHAR(wxComboPopupWindowEvtHandler::OnKeyEvent) |
fd5b4315 | 560 | #if USES_GENERICTLW |
06077aaf | 561 | EVT_ACTIVATE(wxComboPopupWindowEvtHandler::OnActivate) |
a340b80d | 562 | #endif |
974a12f8 | 563 | EVT_SIZE(wxComboPopupWindowEvtHandler::OnSizeEvent) |
a340b80d VZ |
564 | END_EVENT_TABLE() |
565 | ||
566 | ||
974a12f8 RR |
567 | void wxComboPopupWindowEvtHandler::OnSizeEvent( wxSizeEvent& WXUNUSED(event) ) |
568 | { | |
569 | // Block the event so that the popup control does not get auto-resized. | |
570 | } | |
571 | ||
06077aaf | 572 | void wxComboPopupWindowEvtHandler::OnKeyEvent( wxKeyEvent& event ) |
a340b80d VZ |
573 | { |
574 | // Relay keyboard event to the main child controls | |
06077aaf | 575 | wxWindowList children = m_combo->GetPopupWindow()->GetChildren(); |
a340b80d VZ |
576 | wxWindowList::iterator node = children.begin(); |
577 | wxWindow* child = (wxWindow*)*node; | |
174b5c87 | 578 | child->GetEventHandler()->ProcessEvent(event); |
a340b80d VZ |
579 | } |
580 | ||
fd5b4315 | 581 | #if USES_GENERICTLW |
06077aaf | 582 | void wxComboPopupWindowEvtHandler::OnActivate( wxActivateEvent& event ) |
a340b80d VZ |
583 | { |
584 | if ( !event.GetActive() ) | |
585 | { | |
586 | // Tell combo control that we are dismissed. | |
a1d5aa93 | 587 | m_combo->HidePopup(true); |
a340b80d VZ |
588 | |
589 | event.Skip(); | |
590 | } | |
591 | } | |
592 | #endif | |
593 | ||
a340b80d VZ |
594 | |
595 | // ---------------------------------------------------------------------------- | |
596 | // wxComboPopup | |
597 | // | |
598 | // ---------------------------------------------------------------------------- | |
599 | ||
600 | wxComboPopup::~wxComboPopup() | |
601 | { | |
602 | } | |
603 | ||
604 | void wxComboPopup::OnPopup() | |
605 | { | |
606 | } | |
607 | ||
608 | void wxComboPopup::OnDismiss() | |
609 | { | |
610 | } | |
611 | ||
8c61a9ea JS |
612 | wxComboCtrl* wxComboPopup::GetComboCtrl() const |
613 | { | |
614 | return wxStaticCast(m_combo, wxComboCtrl); | |
615 | } | |
616 | ||
a340b80d VZ |
617 | wxSize wxComboPopup::GetAdjustedSize( int minWidth, |
618 | int prefHeight, | |
619 | int WXUNUSED(maxHeight) ) | |
620 | { | |
621 | return wxSize(minWidth,prefHeight); | |
622 | } | |
623 | ||
a57d600f | 624 | void wxComboPopup::DefaultPaintComboControl( wxComboCtrlBase* combo, |
6d0ce565 | 625 | wxDC& dc, const wxRect& rect ) |
a340b80d | 626 | { |
6d0ce565 | 627 | if ( combo->GetWindowStyle() & wxCB_READONLY ) // ie. no textctrl |
a340b80d | 628 | { |
118f5fbd | 629 | combo->PrepareBackground(dc,rect,0); |
a340b80d | 630 | |
6d0ce565 | 631 | dc.DrawText( combo->GetValue(), |
0847e36e | 632 | rect.x + combo->m_marginLeft, |
6d0ce565 | 633 | (rect.height-dc.GetCharHeight())/2 + rect.y ); |
a340b80d VZ |
634 | } |
635 | } | |
636 | ||
6d0ce565 VZ |
637 | void wxComboPopup::PaintComboControl( wxDC& dc, const wxRect& rect ) |
638 | { | |
639 | DefaultPaintComboControl(m_combo,dc,rect); | |
640 | } | |
641 | ||
a340b80d VZ |
642 | void wxComboPopup::OnComboKeyEvent( wxKeyEvent& event ) |
643 | { | |
644 | event.Skip(); | |
645 | } | |
646 | ||
c765e6fb VS |
647 | void wxComboPopup::OnComboCharEvent( wxKeyEvent& event ) |
648 | { | |
649 | event.Skip(); | |
650 | } | |
651 | ||
a340b80d VZ |
652 | void wxComboPopup::OnComboDoubleClick() |
653 | { | |
654 | } | |
655 | ||
656 | void wxComboPopup::SetStringValue( const wxString& WXUNUSED(value) ) | |
657 | { | |
658 | } | |
659 | ||
238b33ab JS |
660 | bool wxComboPopup::FindItem(const wxString& WXUNUSED(item), |
661 | wxString* WXUNUSED(trueItem)) | |
662 | { | |
663 | return true; | |
664 | } | |
665 | ||
a340b80d VZ |
666 | bool wxComboPopup::LazyCreate() |
667 | { | |
668 | return false; | |
669 | } | |
670 | ||
671 | void wxComboPopup::Dismiss() | |
672 | { | |
a1d5aa93 | 673 | m_combo->HidePopup(true); |
a340b80d VZ |
674 | } |
675 | ||
df3c4a42 JS |
676 | void wxComboPopup::DestroyPopup() |
677 | { | |
678 | // Here we make sure that the popup control's Destroy() gets called. | |
679 | // This is necessary for the wxPersistentWindow to work properly. | |
680 | wxWindow* popupCtrl = GetControl(); | |
681 | if ( popupCtrl ) | |
682 | { | |
683 | // While all wxComboCtrl examples have m_popupInterface and | |
684 | // popupCtrl as the same class (that will be deleted via the | |
685 | // Destroy() call below), it is technically still possible to | |
686 | // have implementations where they are in fact not same | |
687 | // multiple-inherited class. Here we use C++ RTTI to check for | |
688 | // this rare case. | |
689 | #ifndef wxNO_RTTI | |
690 | // It is probably better to delete m_popupInterface first, so | |
691 | // that it retains access to its popup control window. | |
692 | if ( dynamic_cast<void*>(this) != | |
693 | dynamic_cast<void*>(popupCtrl) ) | |
694 | delete this; | |
695 | #endif | |
696 | popupCtrl->Destroy(); | |
697 | } | |
698 | else | |
699 | { | |
700 | delete this; | |
701 | } | |
702 | } | |
703 | ||
a340b80d VZ |
704 | // ---------------------------------------------------------------------------- |
705 | // input handling | |
706 | // ---------------------------------------------------------------------------- | |
707 | ||
708 | // | |
b445b6a7 | 709 | // This is pushed to the event handler queue of the child textctrl. |
a340b80d VZ |
710 | // |
711 | class wxComboBoxExtraInputHandler : public wxEvtHandler | |
712 | { | |
713 | public: | |
714 | ||
a57d600f | 715 | wxComboBoxExtraInputHandler( wxComboCtrlBase* combo ) |
a340b80d VZ |
716 | : wxEvtHandler() |
717 | { | |
718 | m_combo = combo; | |
719 | } | |
d3c7fc99 | 720 | virtual ~wxComboBoxExtraInputHandler() { } |
a340b80d VZ |
721 | void OnKey(wxKeyEvent& event); |
722 | void OnFocus(wxFocusEvent& event); | |
723 | ||
724 | protected: | |
a57d600f | 725 | wxComboCtrlBase* m_combo; |
a340b80d VZ |
726 | |
727 | private: | |
728 | DECLARE_EVENT_TABLE() | |
729 | }; | |
730 | ||
731 | ||
732 | BEGIN_EVENT_TABLE(wxComboBoxExtraInputHandler, wxEvtHandler) | |
733 | EVT_KEY_DOWN(wxComboBoxExtraInputHandler::OnKey) | |
df6007a5 JS |
734 | EVT_KEY_UP(wxComboBoxExtraInputHandler::OnKey) |
735 | EVT_CHAR(wxComboBoxExtraInputHandler::OnKey) | |
a340b80d | 736 | EVT_SET_FOCUS(wxComboBoxExtraInputHandler::OnFocus) |
c905c0d6 | 737 | EVT_KILL_FOCUS(wxComboBoxExtraInputHandler::OnFocus) |
a340b80d VZ |
738 | END_EVENT_TABLE() |
739 | ||
740 | ||
741 | void wxComboBoxExtraInputHandler::OnKey(wxKeyEvent& event) | |
742 | { | |
b445b6a7 VZ |
743 | // Let the wxComboCtrl event handler have a go first. |
744 | wxComboCtrlBase* combo = m_combo; | |
a340b80d | 745 | |
110d27b3 JS |
746 | wxKeyEvent redirectedEvent(event); |
747 | redirectedEvent.SetId(combo->GetId()); | |
748 | redirectedEvent.SetEventObject(combo); | |
a340b80d | 749 | |
110d27b3 JS |
750 | if ( !combo->GetEventHandler()->ProcessEvent(redirectedEvent) ) |
751 | { | |
752 | // Don't let TAB through to the text ctrl - looks ugly | |
753 | if ( event.GetKeyCode() != WXK_TAB ) | |
754 | event.Skip(); | |
755 | } | |
a340b80d VZ |
756 | } |
757 | ||
a340b80d VZ |
758 | void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent& event) |
759 | { | |
760 | // FIXME: This code does run when control is clicked, | |
761 | // yet on Windows it doesn't select all the text. | |
c905c0d6 VZ |
762 | if ( event.GetEventType() == wxEVT_SET_FOCUS && |
763 | !(m_combo->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT) ) | |
a340b80d VZ |
764 | { |
765 | if ( m_combo->GetTextCtrl() ) | |
766 | m_combo->GetTextCtrl()->SelectAll(); | |
767 | else | |
70680b61 | 768 | m_combo->SelectAll(); |
a340b80d VZ |
769 | } |
770 | ||
b445b6a7 VZ |
771 | // Send focus indication to parent. |
772 | // NB: This is needed for cases where the textctrl gets focus | |
773 | // instead of its parent. While this may trigger multiple | |
774 | // wxEVT_SET_FOCUSes (since m_text->SetFocus is called | |
775 | // from combo's focus event handler), they should be quite | |
776 | // harmless. | |
81ebc041 VZ |
777 | wxFocusEvent evt2(event); |
778 | evt2.SetId(m_combo->GetId()); | |
b445b6a7 VZ |
779 | evt2.SetEventObject(m_combo); |
780 | m_combo->GetEventHandler()->ProcessEvent(evt2); | |
6d0ce565 | 781 | |
a340b80d VZ |
782 | event.Skip(); |
783 | } | |
784 | ||
785 | ||
786 | // | |
787 | // This is pushed to the event handler queue of the control in popup. | |
788 | // | |
789 | ||
06315578 | 790 | class wxComboPopupEvtHandler : public wxEvtHandler |
a340b80d VZ |
791 | { |
792 | public: | |
793 | ||
06315578 | 794 | wxComboPopupEvtHandler( wxComboCtrlBase* combo ) |
a340b80d VZ |
795 | : wxEvtHandler() |
796 | { | |
797 | m_combo = combo; | |
798 | m_beenInside = false; | |
4794626d JS |
799 | |
800 | // Let's make it so that the popup control will not receive mouse | |
801 | // events until mouse left button has been up. | |
802 | m_blockEventsToPopup = true; | |
a340b80d | 803 | } |
06315578 | 804 | virtual ~wxComboPopupEvtHandler() { } |
a340b80d VZ |
805 | |
806 | void OnMouseEvent( wxMouseEvent& event ); | |
807 | ||
a57d600f | 808 | // Called from wxComboCtrlBase::OnPopupDismiss |
a340b80d VZ |
809 | void OnPopupDismiss() |
810 | { | |
811 | m_beenInside = false; | |
4794626d | 812 | m_blockEventsToPopup = true; |
a340b80d VZ |
813 | } |
814 | ||
815 | protected: | |
a57d600f | 816 | wxComboCtrlBase* m_combo; |
a340b80d | 817 | |
4794626d JS |
818 | bool m_beenInside; |
819 | bool m_blockEventsToPopup; | |
a340b80d VZ |
820 | |
821 | private: | |
822 | DECLARE_EVENT_TABLE() | |
823 | }; | |
824 | ||
825 | ||
06315578 JS |
826 | BEGIN_EVENT_TABLE(wxComboPopupEvtHandler, wxEvtHandler) |
827 | EVT_MOUSE_EVENTS(wxComboPopupEvtHandler::OnMouseEvent) | |
a340b80d VZ |
828 | END_EVENT_TABLE() |
829 | ||
830 | ||
06315578 | 831 | void wxComboPopupEvtHandler::OnMouseEvent( wxMouseEvent& event ) |
a340b80d VZ |
832 | { |
833 | wxPoint pt = event.GetPosition(); | |
6d0ce565 | 834 | wxSize sz = m_combo->GetPopupControl()->GetControl()->GetClientSize(); |
a340b80d VZ |
835 | int evtType = event.GetEventType(); |
836 | bool isInside = pt.x >= 0 && pt.y >= 0 && pt.x < sz.x && pt.y < sz.y; | |
c905c0d6 VZ |
837 | bool relayToButton = false; |
838 | ||
839 | event.Skip(); | |
a340b80d | 840 | |
4794626d | 841 | if ( !isInside || !m_combo->IsPopupShown() ) |
a340b80d | 842 | { |
4794626d JS |
843 | // Mouse is outside the popup or popup is not actually shown (yet) |
844 | ||
845 | if ( evtType == wxEVT_MOTION || | |
846 | evtType == wxEVT_LEFT_DOWN || | |
847 | evtType == wxEVT_LEFT_UP || | |
848 | evtType == wxEVT_RIGHT_DOWN ) | |
a340b80d | 849 | { |
4794626d | 850 | // Block motion and click events outside the popup |
974a12f8 | 851 | event.Skip(false); |
a340b80d | 852 | } |
4794626d JS |
853 | } |
854 | else | |
855 | { | |
856 | // Mouse is inside the popup, which is fully shown | |
857 | ||
858 | m_beenInside = true; | |
859 | ||
860 | // Do not let the popup control respond to mouse events until | |
861 | // mouse press used to display the popup has been lifted. This | |
862 | // is important for users with slower mouse fingers or mouse | |
863 | // drivers. Note that we have some redundancy here, just in | |
864 | // case the popup is some native control that does not emit all | |
865 | // mouse event types. | |
866 | if ( evtType == wxEVT_MOTION ) | |
a340b80d | 867 | { |
4794626d | 868 | if ( m_blockEventsToPopup ) |
a340b80d | 869 | { |
4794626d JS |
870 | if ( event.LeftIsDown() ) |
871 | event.Skip(false); | |
872 | else | |
873 | m_blockEventsToPopup = false; | |
a340b80d | 874 | } |
4794626d JS |
875 | } |
876 | else if ( evtType == wxEVT_LEFT_DOWN ) | |
877 | { | |
878 | if ( m_blockEventsToPopup ) | |
879 | m_blockEventsToPopup = false; | |
880 | } | |
881 | else if ( evtType == wxEVT_LEFT_UP ) | |
882 | { | |
883 | if ( m_blockEventsToPopup ) | |
a340b80d | 884 | { |
4794626d JS |
885 | // On first left up, stop blocking mouse events (but still |
886 | // block this one) | |
887 | m_blockEventsToPopup = false; | |
888 | event.Skip(false); | |
db3d7543 JS |
889 | |
890 | // Also, this button press was (probably) used to display | |
891 | // the popup, so relay it back to the drop-down button | |
892 | // (which supposedly originated it). This is necessary to | |
893 | // refresh it properly. | |
894 | relayToButton = true; | |
a340b80d | 895 | } |
a340b80d | 896 | } |
4794626d JS |
897 | else if ( m_blockEventsToPopup ) |
898 | { | |
899 | event.Skip(false); | |
900 | } | |
901 | } | |
902 | ||
903 | // | |
904 | // Some mouse events to popup that happen outside it, before cursor | |
905 | // has been inside the popup, need to be ignored by it but relayed to | |
906 | // the dropbutton. | |
907 | // | |
908 | if ( evtType == wxEVT_LEFT_UP ) | |
909 | { | |
910 | if ( !m_combo->IsPopupShown() ) | |
911 | { | |
912 | event.Skip(false); | |
913 | relayToButton = true; | |
914 | } | |
915 | else if ( !isInside && !m_beenInside ) | |
916 | { | |
917 | // Popup is shown but the cursor is not inside, nor it has been | |
918 | relayToButton = true; | |
919 | } | |
a340b80d VZ |
920 | } |
921 | ||
c905c0d6 VZ |
922 | if ( relayToButton ) |
923 | { | |
c905c0d6 VZ |
924 | wxWindow* btn = m_combo->GetButton(); |
925 | if ( btn ) | |
db3d7543 JS |
926 | btn->GetEventHandler()->ProcessEvent(event); |
927 | else | |
928 | // Bypass the event handling mechanism. Using it would be | |
929 | // confusing for the platform-specific wxComboCtrl | |
930 | // implementations. | |
931 | m_combo->HandleButtonMouseEvent(event, 0); | |
c905c0d6 | 932 | } |
a340b80d VZ |
933 | } |
934 | ||
c905c0d6 VZ |
935 | // ---------------------------------------------------------------------------- |
936 | // wxComboCtrlTextCtrl | |
937 | // ---------------------------------------------------------------------------- | |
938 | ||
939 | class wxComboCtrlTextCtrl : public wxTextCtrl | |
940 | { | |
941 | public: | |
942 | wxComboCtrlTextCtrl() : wxTextCtrl() { } | |
a0e55920 | 943 | virtual ~wxComboCtrlTextCtrl() { } |
c905c0d6 VZ |
944 | |
945 | virtual wxWindow *GetMainWindowOfCompositeControl() | |
946 | { | |
947 | wxComboCtrl* combo = (wxComboCtrl*) GetParent(); | |
948 | ||
949 | // Returning this instead of just 'parent' lets FindFocus work | |
950 | // correctly even when parent control is a child of a composite | |
951 | // generic control (as is case with wxGenericDatePickerCtrl). | |
952 | return combo->GetMainWindowOfCompositeControl(); | |
953 | } | |
954 | }; | |
955 | ||
a340b80d | 956 | // ---------------------------------------------------------------------------- |
a57d600f | 957 | // wxComboCtrlBase |
a340b80d VZ |
958 | // ---------------------------------------------------------------------------- |
959 | ||
960 | ||
a57d600f | 961 | BEGIN_EVENT_TABLE(wxComboCtrlBase, wxControl) |
a57d600f VZ |
962 | EVT_SIZE(wxComboCtrlBase::OnSizeEvent) |
963 | EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent) | |
964 | EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent) | |
2dfa37d6 | 965 | EVT_IDLE(wxComboCtrlBase::OnIdleEvent) |
a57d600f | 966 | //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent) |
b445b6a7 | 967 | EVT_KEY_DOWN(wxComboCtrlBase::OnKeyEvent) |
c765e6fb | 968 | EVT_CHAR(wxComboCtrlBase::OnCharEvent) |
a57d600f | 969 | EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged) |
a340b80d VZ |
970 | END_EVENT_TABLE() |
971 | ||
972 | ||
a57d600f | 973 | IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase, wxControl) |
a340b80d | 974 | |
a57d600f | 975 | void wxComboCtrlBase::Init() |
a340b80d | 976 | { |
d3b9f782 VZ |
977 | m_winPopup = NULL; |
978 | m_popup = NULL; | |
974a12f8 | 979 | m_popupWinState = Hidden; |
d3b9f782 VZ |
980 | m_btn = NULL; |
981 | m_text = NULL; | |
982 | m_popupInterface = NULL; | |
a340b80d | 983 | |
06315578 | 984 | m_popupEvtHandler = NULL; |
d3b9f782 | 985 | m_textEvtHandler = NULL; |
a340b80d VZ |
986 | |
987 | #if INSTALL_TOPLEV_HANDLER | |
d3b9f782 | 988 | m_toplevEvtHandler = NULL; |
a340b80d VZ |
989 | #endif |
990 | ||
4427c0a3 RR |
991 | m_mainCtrlWnd = this; |
992 | ||
a340b80d VZ |
993 | m_heightPopup = -1; |
994 | m_widthMinPopup = -1; | |
995 | m_anchorSide = 0; | |
996 | m_widthCustomPaint = 0; | |
997 | m_widthCustomBorder = 0; | |
998 | ||
999 | m_btnState = 0; | |
1000 | m_btnWidDefault = 0; | |
1001 | m_blankButtonBg = false; | |
ce968519 | 1002 | m_ignoreEvtText = 0; |
06077aaf | 1003 | m_popupWinType = POPUPWIN_NONE; |
7dc234d6 | 1004 | m_btnWid = m_btnHei = -1; |
a340b80d VZ |
1005 | m_btnSide = wxRIGHT; |
1006 | m_btnSpacingX = 0; | |
1007 | ||
1008 | m_extLeft = 0; | |
1009 | m_extRight = 0; | |
0847e36e | 1010 | m_marginLeft = -1; |
a340b80d | 1011 | m_iFlags = 0; |
1ac5cfc7 | 1012 | m_textCtrlStyle = 0; |
a340b80d | 1013 | m_timeCanAcceptClick = 0; |
2dfa37d6 RD |
1014 | |
1015 | m_resetFocus = false; | |
bed867e3 | 1016 | m_hasTcBgCol = false; |
a340b80d VZ |
1017 | } |
1018 | ||
a57d600f | 1019 | bool wxComboCtrlBase::Create(wxWindow *parent, |
b61f4f77 WS |
1020 | wxWindowID id, |
1021 | const wxString& value, | |
1022 | const wxPoint& pos, | |
1023 | const wxSize& size, | |
1024 | long style, | |
1025 | const wxValidator& validator, | |
1026 | const wxString& name) | |
a340b80d VZ |
1027 | { |
1028 | if ( !wxControl::Create(parent, | |
1029 | id, | |
1030 | pos, | |
1031 | size, | |
1032 | style | wxWANTS_CHARS, | |
1033 | validator, | |
1034 | name) ) | |
1035 | return false; | |
1036 | ||
1037 | m_valueString = value; | |
1038 | ||
1039 | // Get colours | |
1040 | OnThemeChange(); | |
0847e36e | 1041 | m_marginLeft = GetNativeTextIndent(); |
a340b80d | 1042 | |
a9e8bf2d WS |
1043 | m_iFlags |= wxCC_IFLAG_CREATED; |
1044 | ||
1045 | // If x and y indicate valid size, wxSizeEvent won't be | |
df97a4ef | 1046 | // emitted automatically, so we need to add artificial one. |
a9e8bf2d WS |
1047 | if ( size.x > 0 && size.y > 0 ) |
1048 | { | |
1049 | wxSizeEvent evt(size,GetId()); | |
54580df4 | 1050 | evt.SetEventObject(this); |
a9e8bf2d WS |
1051 | GetEventHandler()->AddPendingEvent(evt); |
1052 | } | |
1053 | ||
a340b80d VZ |
1054 | return true; |
1055 | } | |
1056 | ||
b445b6a7 | 1057 | void wxComboCtrlBase::InstallInputHandlers() |
a340b80d | 1058 | { |
b445b6a7 | 1059 | if ( m_text ) |
a340b80d VZ |
1060 | { |
1061 | m_textEvtHandler = new wxComboBoxExtraInputHandler(this); | |
1062 | m_text->PushEventHandler(m_textEvtHandler); | |
1063 | } | |
a340b80d VZ |
1064 | } |
1065 | ||
42a3ecf5 | 1066 | void |
fda62793 | 1067 | wxComboCtrlBase::CreateTextCtrl(int style) |
a340b80d VZ |
1068 | { |
1069 | if ( !(m_windowStyle & wxCB_READONLY) ) | |
1070 | { | |
8e9ec723 RR |
1071 | if ( m_text ) |
1072 | m_text->Destroy(); | |
1073 | ||
42a3ecf5 VZ |
1074 | // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is |
1075 | // not used by the wxPropertyGrid and therefore the tab is processed by | |
1076 | // looking at ancestors to see if they have wxTAB_TRAVERSAL. The | |
1077 | // navigation event is then sent to the wrong window. | |
1ac5cfc7 | 1078 | style |= wxTE_PROCESS_TAB | m_textCtrlStyle; |
42a3ecf5 | 1079 | |
5d95cab8 | 1080 | if ( HasFlag(wxTE_PROCESS_ENTER) ) |
42a3ecf5 VZ |
1081 | style |= wxTE_PROCESS_ENTER; |
1082 | ||
ce968519 RR |
1083 | // Ignore EVT_TEXT generated by the constructor (but only |
1084 | // if the event redirector already exists) | |
1085 | // NB: This must be " = 1" instead of "++"; | |
1086 | if ( m_textEvtHandler ) | |
1087 | m_ignoreEvtText = 1; | |
1088 | else | |
1089 | m_ignoreEvtText = 0; | |
1090 | ||
c905c0d6 VZ |
1091 | m_text = new wxComboCtrlTextCtrl(); |
1092 | m_text->Create(this, wxID_ANY, m_valueString, | |
1093 | wxDefaultPosition, wxSize(10,-1), | |
fda62793 | 1094 | style); |
25b7a51f JS |
1095 | |
1096 | // Connecting the events is currently the most reliable way | |
1097 | wxWindowID id = m_text->GetId(); | |
1098 | m_text->Connect(id, wxEVT_COMMAND_TEXT_UPDATED, | |
1099 | wxCommandEventHandler(wxComboCtrlBase::OnTextCtrlEvent), | |
1100 | NULL, this); | |
1101 | m_text->Connect(id, wxEVT_COMMAND_TEXT_ENTER, | |
1102 | wxCommandEventHandler(wxComboCtrlBase::OnTextCtrlEvent), | |
1103 | NULL, this); | |
1104 | ||
107defe3 | 1105 | m_text->SetHint(m_hintText); |
a340b80d VZ |
1106 | } |
1107 | } | |
1108 | ||
a57d600f | 1109 | void wxComboCtrlBase::OnThemeChange() |
a340b80d | 1110 | { |
10ba2677 JS |
1111 | // Because wxComboCtrl has transparent parts on most platforms, we |
1112 | // don't want to touch the actual background colour. Instead, we just | |
1113 | // usually re-obtain m_tcBgCol here. | |
1114 | ||
1115 | #if defined(__WXMSW__) || defined(__WXGTK__) | |
2ec335db | 1116 | wxVisualAttributes vattrs = wxComboBox::GetClassDefaultAttributes(); |
10ba2677 | 1117 | #else |
2ec335db JS |
1118 | wxVisualAttributes vattrs; |
1119 | vattrs.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT); | |
1120 | vattrs.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW); | |
10ba2677 JS |
1121 | #endif |
1122 | ||
bed867e3 | 1123 | if ( !m_hasTcBgCol ) |
10ba2677 | 1124 | m_tcBgCol = vattrs.colBg; |
2ec335db | 1125 | |
10ba2677 | 1126 | #ifndef __WXMAC__ |
2ec335db JS |
1127 | // Only change the colours if application has not specified |
1128 | // custom ones. | |
1129 | if ( !m_hasFgCol ) | |
1130 | { | |
1131 | SetOwnForegroundColour(vattrs.colFg); | |
2ec335db | 1132 | } |
10ba2677 | 1133 | if ( !HasTransparentBackground() ) |
3b9ba64c | 1134 | { |
10ba2677 | 1135 | SetOwnBackgroundColour(GetParent()->GetBackgroundColour()); |
3b9ba64c | 1136 | } |
2ec335db | 1137 | #endif // !__WXMAC__ |
a340b80d VZ |
1138 | } |
1139 | ||
a57d600f | 1140 | wxComboCtrlBase::~wxComboCtrlBase() |
a340b80d VZ |
1141 | { |
1142 | if ( HasCapture() ) | |
1143 | ReleaseMouse(); | |
1144 | ||
a340b80d VZ |
1145 | #if INSTALL_TOPLEV_HANDLER |
1146 | delete ((wxComboFrameEventHandler*)m_toplevEvtHandler); | |
d3b9f782 | 1147 | m_toplevEvtHandler = NULL; |
a340b80d VZ |
1148 | #endif |
1149 | ||
7ca4ac63 | 1150 | DestroyPopup(); |
a340b80d | 1151 | |
a340b80d VZ |
1152 | if ( m_text ) |
1153 | m_text->RemoveEventHandler(m_textEvtHandler); | |
1154 | ||
1155 | delete m_textEvtHandler; | |
a340b80d VZ |
1156 | } |
1157 | ||
1158 | ||
1159 | // ---------------------------------------------------------------------------- | |
1160 | // geometry stuff | |
1161 | // ---------------------------------------------------------------------------- | |
1162 | ||
1163 | // Recalculates button and textctrl areas | |
a57d600f | 1164 | void wxComboCtrlBase::CalculateAreas( int btnWidth ) |
a340b80d VZ |
1165 | { |
1166 | wxSize sz = GetClientSize(); | |
1167 | int customBorder = m_widthCustomBorder; | |
a340b80d VZ |
1168 | int btnBorder; // border for button only |
1169 | ||
87419e97 VZ |
1170 | // check if button should really be outside the border: we'll do it it if |
1171 | // its platform default or bitmap+pushbutton background is used, but not if | |
1172 | // there is vertical size adjustment or horizontal spacing. | |
1173 | if ( ( (m_iFlags & wxCC_BUTTON_OUTSIDE_BORDER) || | |
a1b806b9 | 1174 | (m_bmpNormal.IsOk() && m_blankButtonBg) ) && |
87419e97 | 1175 | m_btnSpacingX == 0 && |
7dc234d6 | 1176 | m_btnHei <= 0 ) |
a340b80d | 1177 | { |
a340b80d VZ |
1178 | m_iFlags |= wxCC_IFLAG_BUTTON_OUTSIDE; |
1179 | btnBorder = 0; | |
1180 | } | |
c905c0d6 | 1181 | else if ( (m_iFlags & wxCC_BUTTON_COVERS_BORDER) && |
a1b806b9 | 1182 | m_btnSpacingX == 0 && !m_bmpNormal.IsOk() ) |
c905c0d6 VZ |
1183 | { |
1184 | m_iFlags &= ~(wxCC_IFLAG_BUTTON_OUTSIDE); | |
1185 | btnBorder = 0; | |
1186 | } | |
a340b80d VZ |
1187 | else |
1188 | { | |
a340b80d VZ |
1189 | m_iFlags &= ~(wxCC_IFLAG_BUTTON_OUTSIDE); |
1190 | btnBorder = customBorder; | |
1191 | } | |
1192 | ||
1193 | // Defaul indentation | |
0847e36e JS |
1194 | if ( m_marginLeft < 0 ) |
1195 | m_marginLeft = GetNativeTextIndent(); | |
a340b80d VZ |
1196 | |
1197 | int butWidth = btnWidth; | |
1198 | ||
1199 | if ( butWidth <= 0 ) | |
1200 | butWidth = m_btnWidDefault; | |
1201 | else | |
1202 | m_btnWidDefault = butWidth; | |
1203 | ||
1204 | if ( butWidth <= 0 ) | |
1205 | return; | |
1206 | ||
a9e8bf2d WS |
1207 | int butHeight = sz.y - btnBorder*2; |
1208 | ||
a340b80d | 1209 | // Adjust button width |
7dc234d6 | 1210 | if ( m_btnWid > 0 ) |
a340b80d | 1211 | butWidth = m_btnWid; |
a9e8bf2d WS |
1212 | else |
1213 | { | |
1214 | // Adjust button width to match aspect ratio | |
1215 | // (but only if control is smaller than best size). | |
1216 | int bestHeight = GetBestSize().y; | |
1217 | int height = GetSize().y; | |
a340b80d | 1218 | |
a9e8bf2d WS |
1219 | if ( height < bestHeight ) |
1220 | { | |
1221 | // Make very small buttons square, as it makes | |
1222 | // them accommodate arrow image better and still | |
1223 | // looks decent. | |
1224 | if ( height > 18 ) | |
1225 | butWidth = (height*butWidth)/bestHeight; | |
1226 | else | |
1227 | butWidth = butHeight; | |
1228 | } | |
1229 | } | |
a340b80d VZ |
1230 | |
1231 | // Adjust button height | |
7dc234d6 | 1232 | if ( m_btnHei > 0 ) |
a340b80d VZ |
1233 | butHeight = m_btnHei; |
1234 | ||
1235 | // Use size of normal bitmap if... | |
1236 | // It is larger | |
1237 | // OR | |
1238 | // button width is set to default and blank button bg is not drawn | |
a1b806b9 | 1239 | if ( m_bmpNormal.IsOk() ) |
a340b80d VZ |
1240 | { |
1241 | int bmpReqWidth = m_bmpNormal.GetWidth(); | |
1242 | int bmpReqHeight = m_bmpNormal.GetHeight(); | |
1243 | ||
1244 | // If drawing blank button background, we need to add some margin. | |
1245 | if ( m_blankButtonBg ) | |
1246 | { | |
1247 | bmpReqWidth += BMP_BUTTON_MARGIN*2; | |
1248 | bmpReqHeight += BMP_BUTTON_MARGIN*2; | |
1249 | } | |
1250 | ||
1251 | if ( butWidth < bmpReqWidth || ( m_btnWid == 0 && !m_blankButtonBg ) ) | |
1252 | butWidth = bmpReqWidth; | |
1253 | if ( butHeight < bmpReqHeight || ( m_btnHei == 0 && !m_blankButtonBg ) ) | |
1254 | butHeight = bmpReqHeight; | |
1255 | ||
1256 | // Need to fix height? | |
1257 | if ( (sz.y-(customBorder*2)) < butHeight && btnWidth == 0 ) | |
1258 | { | |
1259 | int newY = butHeight+(customBorder*2); | |
a5bbd1cc | 1260 | SetClientSize(wxDefaultCoord,newY); |
a1b806b9 | 1261 | if ( m_bmpNormal.IsOk() || m_btnArea.width != butWidth || m_btnArea.height != butHeight ) |
640a91ab PC |
1262 | m_iFlags |= wxCC_IFLAG_HAS_NONSTANDARD_BUTTON; |
1263 | else | |
1264 | m_iFlags &= ~wxCC_IFLAG_HAS_NONSTANDARD_BUTTON; | |
c905c0d6 | 1265 | |
a340b80d VZ |
1266 | sz.y = newY; |
1267 | } | |
1268 | } | |
1269 | ||
1270 | int butAreaWid = butWidth + (m_btnSpacingX*2); | |
1271 | ||
1272 | m_btnSize.x = butWidth; | |
1273 | m_btnSize.y = butHeight; | |
1274 | ||
1275 | m_btnArea.x = ( m_btnSide==wxRIGHT ? sz.x - butAreaWid - btnBorder : btnBorder ); | |
2dfa37d6 | 1276 | m_btnArea.y = btnBorder + FOCUS_RING; |
a340b80d | 1277 | m_btnArea.width = butAreaWid; |
2dfa37d6 | 1278 | m_btnArea.height = sz.y - ((btnBorder+FOCUS_RING)*2); |
a340b80d | 1279 | |
2dfa37d6 RD |
1280 | m_tcArea.x = ( m_btnSide==wxRIGHT ? 0 : butAreaWid ) + customBorder + FOCUS_RING; |
1281 | m_tcArea.y = customBorder + FOCUS_RING; | |
1282 | m_tcArea.width = sz.x - butAreaWid - (customBorder*2) - (FOCUS_RING*2); | |
1283 | m_tcArea.height = sz.y - ((customBorder+FOCUS_RING)*2); | |
a340b80d VZ |
1284 | |
1285 | /* | |
1286 | if ( m_text ) | |
1287 | { | |
1288 | ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) + | |
1289 | wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height)); | |
1290 | } | |
1291 | */ | |
1292 | } | |
1293 | ||
a57d600f | 1294 | void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust, int textCtrlYAdjust ) |
a340b80d VZ |
1295 | { |
1296 | if ( !m_text ) | |
1297 | return; | |
1298 | ||
1299 | wxSize sz = GetClientSize(); | |
a340b80d | 1300 | |
f85f5ddf | 1301 | int customBorder = m_widthCustomBorder; |
a340b80d VZ |
1302 | if ( (m_text->GetWindowStyleFlag() & wxBORDER_MASK) == wxNO_BORDER ) |
1303 | { | |
4bcf25e9 JS |
1304 | int x; |
1305 | ||
1306 | if ( !m_widthCustomPaint ) | |
1307 | { | |
1308 | // No special custom paint area - we can use 0 left margin | |
1309 | // with wxTextCtrl. | |
1310 | if ( m_text->SetMargins(0) ) | |
1311 | textCtrlXAdjust = 0; | |
1312 | x = m_tcArea.x + m_marginLeft + textCtrlXAdjust; | |
1313 | } | |
1314 | else | |
1315 | { | |
1316 | // There is special custom paint area - it is better to | |
1317 | // use some margin with the wxTextCtrl. | |
1318 | m_text->SetMargins(m_marginLeft); | |
ce00f59b | 1319 | x = m_tcArea.x + m_widthCustomPaint + |
4bcf25e9 JS |
1320 | m_marginLeft + textCtrlXAdjust; |
1321 | } | |
0847e36e | 1322 | |
4bcf25e9 | 1323 | // Centre textctrl vertically, if needed |
0847e36e | 1324 | #if !TEXTCTRL_TEXT_CENTERED |
a340b80d | 1325 | int tcSizeY = m_text->GetBestSize().y; |
0847e36e JS |
1326 | int diff0 = sz.y - tcSizeY; |
1327 | int y = textCtrlYAdjust + (diff0/2); | |
1328 | #else | |
1329 | wxUnusedVar(textCtrlYAdjust); | |
1330 | int y = 0; | |
1331 | #endif | |
a340b80d VZ |
1332 | |
1333 | if ( y < customBorder ) | |
1334 | y = customBorder; | |
1335 | ||
0847e36e JS |
1336 | m_text->SetSize(x, |
1337 | y, | |
1338 | m_tcArea.width - m_tcArea.x - x, | |
0847e36e | 1339 | -1 ); |
a340b80d VZ |
1340 | |
1341 | // Make sure textctrl doesn't exceed the bottom custom border | |
1342 | wxSize tsz = m_text->GetSize(); | |
0847e36e JS |
1343 | int diff1 = (y + tsz.y) - (sz.y - customBorder); |
1344 | if ( diff1 >= 0 ) | |
a340b80d | 1345 | { |
0847e36e | 1346 | tsz.y = tsz.y - diff1 - 1; |
a340b80d VZ |
1347 | m_text->SetSize(tsz); |
1348 | } | |
1349 | } | |
1350 | else | |
1351 | { | |
0847e36e | 1352 | // If it has border, have textctrl fill the entire text field. |
7e4545b8 | 1353 | m_text->SetSize( m_tcArea.x + m_widthCustomPaint, |
2dfa37d6 RD |
1354 | m_tcArea.y, |
1355 | m_tcArea.width - m_widthCustomPaint, | |
1356 | m_tcArea.height ); | |
a340b80d VZ |
1357 | } |
1358 | } | |
1359 | ||
a57d600f | 1360 | wxSize wxComboCtrlBase::DoGetBestSize() const |
a340b80d | 1361 | { |
e2ac737f | 1362 | int width = m_text ? m_text->GetBestSize().x : 80; |
a340b80d | 1363 | |
e2ac737f VZ |
1364 | return GetSizeFromTextSize(width); |
1365 | } | |
a340b80d | 1366 | |
e2ac737f VZ |
1367 | wxSize wxComboCtrlBase::DoGetSizeFromTextSize(int xlen, int ylen) const |
1368 | { | |
1369 | // Calculate close-to-native control height | |
a340b80d VZ |
1370 | |
1371 | int fhei; | |
e2ac737f VZ |
1372 | |
1373 | #if wxUSE_COMBOBOX && (defined(__WXMSW__) || defined(__WXGTK__)) \ | |
1374 | && !defined(__WXUNIVERSAL__) | |
1375 | wxComboBox* cb = new wxComboBox; | |
1376 | cb->Hide(); | |
1377 | cb->Create(const_cast<wxComboCtrlBase*>(this), wxID_ANY); | |
1378 | if ( m_font.IsOk() ) | |
1379 | cb->SetFont(m_font); | |
1380 | fhei = cb->GetBestSize().y; | |
1381 | cb->Destroy(); | |
1382 | #else | |
a1b806b9 | 1383 | if ( m_font.IsOk() ) |
a340b80d | 1384 | fhei = (m_font.GetPointSize()*2) + 5; |
a1b806b9 | 1385 | else if ( wxNORMAL_FONT->IsOk() ) |
a340b80d VZ |
1386 | fhei = (wxNORMAL_FONT->GetPointSize()*2) + 5; |
1387 | else | |
e2ac737f VZ |
1388 | fhei = 22; |
1389 | #endif // only for wxComboBox on MSW or GTK | |
a340b80d | 1390 | |
37424888 | 1391 | // Need to force height to accommodate bitmap? |
a340b80d | 1392 | int btnSizeY = m_btnSize.y; |
a1b806b9 | 1393 | if ( m_bmpNormal.IsOk() && fhei < btnSizeY ) |
a340b80d VZ |
1394 | fhei = btnSizeY; |
1395 | ||
1396 | // Control height doesn't depend on border | |
1397 | /* | |
1398 | // Add border | |
1399 | int border = m_windowStyle & wxBORDER_MASK; | |
1400 | if ( border == wxSIMPLE_BORDER ) | |
1401 | fhei += 2; | |
1402 | else if ( border == wxNO_BORDER ) | |
1403 | fhei += (m_widthCustomBorder*2); | |
1404 | else | |
1405 | // Sunken etc. | |
1406 | fhei += 4; | |
1407 | */ | |
1408 | ||
c66ed668 RD |
1409 | #ifdef __WXMAC__ |
1410 | // these are the numbers from the HIG: | |
1411 | switch ( m_windowVariant ) | |
1412 | { | |
1413 | case wxWINDOW_VARIANT_NORMAL: | |
1414 | default : | |
1415 | fhei = 22; | |
1416 | break; | |
1417 | case wxWINDOW_VARIANT_SMALL: | |
1418 | fhei = 19; | |
1419 | break; | |
1420 | case wxWINDOW_VARIANT_MINI: | |
1421 | fhei = 15; | |
1422 | break; | |
1423 | } | |
1424 | #endif | |
a340b80d | 1425 | |
2dfa37d6 | 1426 | fhei += 2 * FOCUS_RING; |
2dfa37d6 | 1427 | |
e2ac737f VZ |
1428 | // Calculate width |
1429 | int fwid = xlen + FOCUS_RING + COMBO_MARGIN + DEFAULT_DROPBUTTON_WIDTH; | |
1430 | ||
1431 | // Add the margins we have previously set | |
1432 | wxPoint marg( GetMargins() ); | |
1433 | fwid += wxMax(0, marg.x); | |
1434 | fhei += wxMax(0, marg.y); | |
1435 | ||
1436 | if ( ylen > 0 ) | |
1437 | fhei += ylen - GetCharHeight(); | |
1438 | ||
1439 | return wxSize(fwid, fhei); | |
a340b80d VZ |
1440 | } |
1441 | ||
a57d600f | 1442 | void wxComboCtrlBase::OnSizeEvent( wxSizeEvent& event ) |
a340b80d VZ |
1443 | { |
1444 | if ( !IsCreated() ) | |
1445 | return; | |
1446 | ||
a57d600f | 1447 | // defined by actual wxComboCtrls |
a340b80d VZ |
1448 | OnResize(); |
1449 | ||
1450 | event.Skip(); | |
1451 | } | |
1452 | ||
1453 | // ---------------------------------------------------------------------------- | |
1454 | // standard operations | |
1455 | // ---------------------------------------------------------------------------- | |
1456 | ||
a57d600f | 1457 | bool wxComboCtrlBase::Enable(bool enable) |
a340b80d VZ |
1458 | { |
1459 | if ( !wxControl::Enable(enable) ) | |
1460 | return false; | |
1461 | ||
1462 | if ( m_btn ) | |
1463 | m_btn->Enable(enable); | |
1464 | if ( m_text ) | |
1465 | m_text->Enable(enable); | |
004867db | 1466 | |
4df230b8 | 1467 | Refresh(); |
a340b80d VZ |
1468 | |
1469 | return true; | |
1470 | } | |
1471 | ||
a57d600f | 1472 | bool wxComboCtrlBase::Show(bool show) |
a340b80d VZ |
1473 | { |
1474 | if ( !wxControl::Show(show) ) | |
1475 | return false; | |
1476 | ||
1477 | if (m_btn) | |
1478 | m_btn->Show(show); | |
1479 | ||
1480 | if (m_text) | |
1481 | m_text->Show(show); | |
1482 | ||
1483 | return true; | |
1484 | } | |
1485 | ||
a57d600f | 1486 | bool wxComboCtrlBase::SetFont ( const wxFont& font ) |
a340b80d VZ |
1487 | { |
1488 | if ( !wxControl::SetFont(font) ) | |
1489 | return false; | |
1490 | ||
4bcf25e9 JS |
1491 | if ( m_text ) |
1492 | { | |
1493 | // Without hiding the wxTextCtrl there would be some | |
1494 | // visible 'flicker' (at least on Windows XP). | |
1495 | m_text->Hide(); | |
a340b80d | 1496 | m_text->SetFont(font); |
4bcf25e9 JS |
1497 | OnResize(); |
1498 | m_text->Show(); | |
1499 | } | |
a340b80d VZ |
1500 | |
1501 | return true; | |
1502 | } | |
1503 | ||
1504 | #if wxUSE_TOOLTIPS | |
a57d600f | 1505 | void wxComboCtrlBase::DoSetToolTip(wxToolTip *tooltip) |
a340b80d VZ |
1506 | { |
1507 | wxControl::DoSetToolTip(tooltip); | |
1508 | ||
1509 | // Set tool tip for button and text box | |
1510 | if ( tooltip ) | |
1511 | { | |
1512 | const wxString &tip = tooltip->GetTip(); | |
1513 | if ( m_text ) m_text->SetToolTip(tip); | |
1514 | if ( m_btn ) m_btn->SetToolTip(tip); | |
1515 | } | |
1516 | else | |
1517 | { | |
d3b9f782 VZ |
1518 | if ( m_text ) m_text->SetToolTip( NULL ); |
1519 | if ( m_btn ) m_btn->SetToolTip( NULL ); | |
a340b80d VZ |
1520 | } |
1521 | } | |
1522 | #endif // wxUSE_TOOLTIPS | |
1523 | ||
5f540750 JS |
1524 | bool wxComboCtrlBase::SetForegroundColour(const wxColour& colour) |
1525 | { | |
1526 | if ( wxControl::SetForegroundColour(colour) ) | |
1527 | { | |
1528 | if ( m_text ) | |
1529 | m_text->SetForegroundColour(colour); | |
1530 | return true; | |
1531 | } | |
1532 | return false; | |
1533 | } | |
1534 | ||
1535 | bool wxComboCtrlBase::SetBackgroundColour(const wxColour& colour) | |
1536 | { | |
10ba2677 JS |
1537 | if ( m_text ) |
1538 | m_text->SetBackgroundColour(colour); | |
1539 | m_tcBgCol = colour; | |
bed867e3 | 1540 | m_hasTcBgCol = true; |
10ba2677 | 1541 | return true; |
5f540750 | 1542 | } |
10ba2677 JS |
1543 | |
1544 | wxColour wxComboCtrlBase::GetBackgroundColour() const | |
1545 | { | |
1546 | if ( m_text ) | |
1547 | return m_text->GetBackgroundColour(); | |
1548 | return m_tcBgCol; | |
1549 | } | |
1550 | ||
a340b80d VZ |
1551 | // ---------------------------------------------------------------------------- |
1552 | // painting | |
1553 | // ---------------------------------------------------------------------------- | |
1554 | ||
118f5fbd RR |
1555 | #if (!defined(__WXMSW__)) || defined(__WXUNIVERSAL__) |
1556 | // prepare combo box background on area in a way typical on platform | |
1557 | void wxComboCtrlBase::PrepareBackground( wxDC& dc, const wxRect& rect, int flags ) const | |
a340b80d VZ |
1558 | { |
1559 | wxSize sz = GetClientSize(); | |
1560 | bool isEnabled; | |
c905c0d6 | 1561 | bool doDrawFocusRect; // also selected |
a340b80d VZ |
1562 | |
1563 | // For smaller size control (and for disabled background) use less spacing | |
1564 | int focusSpacingX; | |
1565 | int focusSpacingY; | |
1566 | ||
1567 | if ( !(flags & wxCONTROL_ISSUBMENU) ) | |
1568 | { | |
1569 | // Drawing control | |
1570 | isEnabled = IsEnabled(); | |
640a91ab | 1571 | doDrawFocusRect = ShouldDrawFocus() && !(m_iFlags & wxCC_FULL_BUTTON); |
a340b80d VZ |
1572 | |
1573 | // Windows-style: for smaller size control (and for disabled background) use less spacing | |
1574 | focusSpacingX = isEnabled ? 2 : 1; | |
1575 | focusSpacingY = sz.y > (GetCharHeight()+2) && isEnabled ? 2 : 1; | |
1576 | } | |
1577 | else | |
1578 | { | |
1579 | // Drawing a list item | |
1580 | isEnabled = true; // they are never disabled | |
640a91ab | 1581 | doDrawFocusRect = (flags & wxCONTROL_SELECTED) != 0; |
a340b80d VZ |
1582 | |
1583 | focusSpacingX = 0; | |
1584 | focusSpacingY = 0; | |
1585 | } | |
1586 | ||
1587 | // Set the background sub-rectangle for selection, disabled etc | |
1588 | wxRect selRect(rect); | |
1589 | selRect.y += focusSpacingY; | |
1590 | selRect.height -= (focusSpacingY*2); | |
8e5ec129 WS |
1591 | |
1592 | int wcp = 0; | |
1593 | ||
1594 | if ( !(flags & wxCONTROL_ISSUBMENU) ) | |
1595 | wcp += m_widthCustomPaint; | |
1596 | ||
1597 | selRect.x += wcp + focusSpacingX; | |
1598 | selRect.width -= wcp + (focusSpacingX*2); | |
a340b80d VZ |
1599 | |
1600 | wxColour bgCol; | |
3b9ba64c JS |
1601 | wxColour fgCol; |
1602 | ||
c905c0d6 | 1603 | bool doDrawSelRect = true; |
a340b80d | 1604 | |
3b9ba64c JS |
1605 | // Determine foreground colour |
1606 | if ( isEnabled ) | |
1607 | { | |
1608 | if ( doDrawFocusRect ) | |
1609 | { | |
1610 | fgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); | |
1611 | } | |
1612 | else if ( m_hasFgCol ) | |
1613 | { | |
1614 | // Honour the custom foreground colour | |
1615 | fgCol = GetForegroundColour(); | |
1616 | } | |
1617 | else | |
1618 | { | |
1619 | fgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT); | |
1620 | } | |
1621 | } | |
1622 | else | |
1623 | { | |
1624 | fgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT); | |
1625 | } | |
1626 | ||
1627 | // Determine background colour | |
a340b80d VZ |
1628 | if ( isEnabled ) |
1629 | { | |
c905c0d6 | 1630 | if ( doDrawFocusRect ) |
a340b80d | 1631 | { |
a340b80d VZ |
1632 | bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); |
1633 | } | |
bed867e3 | 1634 | else if ( m_hasTcBgCol ) |
3b9ba64c JS |
1635 | { |
1636 | // Honour the custom background colour | |
bed867e3 | 1637 | bgCol = m_tcBgCol; |
3b9ba64c | 1638 | } |
a340b80d VZ |
1639 | else |
1640 | { | |
2dfa37d6 | 1641 | #ifndef __WXMAC__ // see note in OnThemeChange |
c905c0d6 | 1642 | doDrawSelRect = false; |
a340b80d | 1643 | bgCol = GetBackgroundColour(); |
2dfa37d6 RD |
1644 | #else |
1645 | bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW); | |
1646 | #endif | |
a340b80d VZ |
1647 | } |
1648 | } | |
1649 | else | |
1650 | { | |
2dfa37d6 | 1651 | #ifndef __WXMAC__ // see note in OnThemeChange |
a340b80d | 1652 | bgCol = GetBackgroundColour(); |
2dfa37d6 RD |
1653 | #else |
1654 | bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW); | |
1655 | #endif | |
a340b80d VZ |
1656 | } |
1657 | ||
3b9ba64c | 1658 | dc.SetTextForeground( fgCol ); |
a340b80d | 1659 | dc.SetBrush( bgCol ); |
c905c0d6 VZ |
1660 | if ( doDrawSelRect ) |
1661 | { | |
1662 | dc.SetPen( bgCol ); | |
1663 | dc.DrawRectangle( selRect ); | |
1664 | } | |
118f5fbd RR |
1665 | |
1666 | // Don't clip exactly to the selection rectangle so we can draw | |
1667 | // to the non-selected area in front of it. | |
1668 | wxRect clipRect(rect.x,rect.y, | |
1669 | (selRect.x+selRect.width)-rect.x,rect.height); | |
1670 | dc.SetClippingRegion(clipRect); | |
a340b80d | 1671 | } |
118f5fbd RR |
1672 | #else |
1673 | // Save the library size a bit for platforms that re-implement this. | |
1674 | void wxComboCtrlBase::PrepareBackground( wxDC&, const wxRect&, int ) const | |
1675 | { | |
1676 | } | |
1677 | #endif | |
a340b80d | 1678 | |
c905c0d6 | 1679 | void wxComboCtrlBase::DrawButton( wxDC& dc, const wxRect& rect, int flags ) |
a340b80d VZ |
1680 | { |
1681 | int drawState = m_btnState; | |
1682 | ||
c905c0d6 VZ |
1683 | if ( (m_iFlags & wxCC_BUTTON_STAYS_DOWN) && |
1684 | GetPopupWindowState() >= Animating ) | |
a340b80d | 1685 | drawState |= wxCONTROL_PRESSED; |
a340b80d VZ |
1686 | |
1687 | wxRect drawRect(rect.x+m_btnSpacingX, | |
1688 | rect.y+((rect.height-m_btnSize.y)/2), | |
1689 | m_btnSize.x, | |
1690 | m_btnSize.y); | |
1691 | ||
1692 | // Make sure area is not larger than the control | |
1693 | if ( drawRect.y < rect.y ) | |
1694 | drawRect.y = rect.y; | |
1695 | if ( drawRect.height > rect.height ) | |
1696 | drawRect.height = rect.height; | |
1697 | ||
1698 | bool enabled = IsEnabled(); | |
1699 | ||
1700 | if ( !enabled ) | |
1701 | drawState |= wxCONTROL_DISABLED; | |
1702 | ||
3e4e0908 JS |
1703 | // Need to clear button background even if m_btn is present |
1704 | // and also when using custom bitmap for the button | |
1705 | if ( (flags & Button_PaintBackground) && | |
1706 | (!HasTransparentBackground() || | |
1707 | !(m_iFlags & wxCC_IFLAG_BUTTON_OUTSIDE)) ) | |
a340b80d | 1708 | { |
3e4e0908 | 1709 | wxColour bgCol; |
c905c0d6 | 1710 | |
3e4e0908 JS |
1711 | if ( m_iFlags & wxCC_IFLAG_BUTTON_OUTSIDE ) |
1712 | bgCol = GetParent()->GetBackgroundColour(); | |
1713 | else | |
1714 | bgCol = GetBackgroundColour(); | |
b61f4f77 | 1715 | |
3e4e0908 JS |
1716 | dc.SetBrush(bgCol); |
1717 | dc.SetPen(bgCol); | |
1718 | dc.DrawRectangle(rect); | |
1719 | } | |
b61f4f77 | 1720 | |
a1b806b9 | 1721 | if ( !m_bmpNormal.IsOk() ) |
3e4e0908 JS |
1722 | { |
1723 | if ( flags & Button_BitmapOnly ) | |
1724 | return; | |
a340b80d VZ |
1725 | |
1726 | // Draw standard button | |
1727 | wxRendererNative::Get().DrawComboBoxDropButton(this, | |
1728 | dc, | |
1729 | drawRect, | |
1730 | drawState); | |
1731 | } | |
1732 | else | |
1733 | { | |
1734 | // Draw bitmap | |
1735 | ||
1736 | wxBitmap* pBmp; | |
1737 | ||
1738 | if ( !enabled ) | |
1739 | pBmp = &m_bmpDisabled; | |
1740 | else if ( m_btnState & wxCONTROL_PRESSED ) | |
1741 | pBmp = &m_bmpPressed; | |
1742 | else if ( m_btnState & wxCONTROL_CURRENT ) | |
1743 | pBmp = &m_bmpHover; | |
1744 | else | |
1745 | pBmp = &m_bmpNormal; | |
1746 | ||
1747 | if ( m_blankButtonBg ) | |
1748 | { | |
c905c0d6 VZ |
1749 | if ( !(flags & Button_BitmapOnly) ) |
1750 | { | |
1751 | wxRendererNative::Get().DrawPushButton(this, | |
1752 | dc, | |
1753 | drawRect, | |
1754 | drawState); | |
1755 | } | |
a340b80d | 1756 | } |
a340b80d VZ |
1757 | |
1758 | // Draw bitmap centered in drawRect | |
1759 | dc.DrawBitmap(*pBmp, | |
1760 | drawRect.x + (drawRect.width-pBmp->GetWidth())/2, | |
1761 | drawRect.y + (drawRect.height-pBmp->GetHeight())/2, | |
1762 | true); | |
1763 | } | |
1764 | } | |
1765 | ||
a57d600f | 1766 | void wxComboCtrlBase::RecalcAndRefresh() |
a340b80d VZ |
1767 | { |
1768 | if ( IsCreated() ) | |
1769 | { | |
1770 | wxSizeEvent evt(GetSize(),GetId()); | |
54580df4 | 1771 | evt.SetEventObject(this); |
a340b80d VZ |
1772 | GetEventHandler()->ProcessEvent(evt); |
1773 | Refresh(); | |
1774 | } | |
1775 | } | |
1776 | ||
a340b80d VZ |
1777 | // ---------------------------------------------------------------------------- |
1778 | // miscellaneous event handlers | |
1779 | // ---------------------------------------------------------------------------- | |
1780 | ||
a57d600f | 1781 | void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent& event) |
a340b80d | 1782 | { |
8fd38e33 JS |
1783 | // Avoid infinite recursion |
1784 | if ( event.GetEventObject() == this ) | |
1785 | { | |
1786 | event.Skip(); | |
1787 | return; | |
1788 | } | |
1789 | ||
ce968519 RR |
1790 | if ( event.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED ) |
1791 | { | |
1792 | if ( m_ignoreEvtText > 0 ) | |
1793 | { | |
1794 | m_ignoreEvtText--; | |
1795 | return; | |
1796 | } | |
1797 | } | |
1798 | ||
8fd38e33 | 1799 | // For safety, completely re-create a new wxCommandEvent |
63722a74 JS |
1800 | wxCommandEvent evt2(event); |
1801 | evt2.SetId(GetId()); | |
8fd38e33 | 1802 | evt2.SetEventObject(this); |
8fd38e33 | 1803 | HandleWindowEvent(evt2); |
26844be5 JS |
1804 | |
1805 | event.StopPropagation(); | |
a340b80d VZ |
1806 | } |
1807 | ||
1808 | // call if cursor is on button area or mouse is captured for the button | |
a57d600f | 1809 | bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent& event, |
c905c0d6 | 1810 | int flags ) |
a340b80d VZ |
1811 | { |
1812 | int type = event.GetEventType(); | |
1813 | ||
1814 | if ( type == wxEVT_MOTION ) | |
1815 | { | |
c905c0d6 VZ |
1816 | if ( (flags & wxCC_MF_ON_BUTTON) && |
1817 | IsPopupWindowState(Hidden) ) | |
a340b80d VZ |
1818 | { |
1819 | if ( !(m_btnState & wxCONTROL_CURRENT) ) | |
1820 | { | |
1821 | // Mouse hover begins | |
1822 | m_btnState |= wxCONTROL_CURRENT; | |
1823 | if ( HasCapture() ) // Retain pressed state. | |
1824 | m_btnState |= wxCONTROL_PRESSED; | |
1825 | Refresh(); | |
1826 | } | |
1827 | } | |
1828 | else if ( (m_btnState & wxCONTROL_CURRENT) ) | |
1829 | { | |
1830 | // Mouse hover ends | |
1831 | m_btnState &= ~(wxCONTROL_CURRENT|wxCONTROL_PRESSED); | |
1832 | Refresh(); | |
1833 | } | |
1834 | } | |
974a12f8 | 1835 | else if ( type == wxEVT_LEFT_DOWN || type == wxEVT_LEFT_DCLICK ) |
a340b80d | 1836 | { |
1efad474 | 1837 | if ( flags & (wxCC_MF_ON_CLICK_AREA|wxCC_MF_ON_BUTTON) ) |
a340b80d | 1838 | { |
1efad474 RR |
1839 | m_btnState |= wxCONTROL_PRESSED; |
1840 | Refresh(); | |
a340b80d | 1841 | |
1efad474 RR |
1842 | if ( !(m_iFlags & wxCC_POPUP_ON_MOUSE_UP) ) |
1843 | OnButtonClick(); | |
1844 | else | |
1845 | // If showing popup now, do not capture mouse or there will be interference | |
1846 | CaptureMouse(); | |
a340b80d | 1847 | } |
a340b80d VZ |
1848 | } |
1849 | else if ( type == wxEVT_LEFT_UP ) | |
1850 | { | |
1851 | ||
1852 | // Only accept event if mouse was left-press was previously accepted | |
1853 | if ( HasCapture() ) | |
1854 | ReleaseMouse(); | |
1855 | ||
1856 | if ( m_btnState & wxCONTROL_PRESSED ) | |
1857 | { | |
1858 | // If mouse was inside, fire the click event. | |
1859 | if ( m_iFlags & wxCC_POPUP_ON_MOUSE_UP ) | |
1860 | { | |
1efad474 | 1861 | if ( flags & (wxCC_MF_ON_CLICK_AREA|wxCC_MF_ON_BUTTON) ) |
a340b80d VZ |
1862 | OnButtonClick(); |
1863 | } | |
1864 | ||
1865 | m_btnState &= ~(wxCONTROL_PRESSED); | |
1866 | Refresh(); | |
1867 | } | |
1868 | } | |
1869 | else if ( type == wxEVT_LEAVE_WINDOW ) | |
1870 | { | |
1871 | if ( m_btnState & (wxCONTROL_CURRENT|wxCONTROL_PRESSED) ) | |
1872 | { | |
1873 | m_btnState &= ~(wxCONTROL_CURRENT); | |
1874 | ||
1875 | // Mouse hover ends | |
974a12f8 | 1876 | if ( IsPopupWindowState(Hidden) ) |
a340b80d VZ |
1877 | { |
1878 | m_btnState &= ~(wxCONTROL_PRESSED); | |
1879 | Refresh(); | |
1880 | } | |
1881 | } | |
1882 | } | |
1883 | else | |
1884 | return false; | |
1885 | ||
c905c0d6 VZ |
1886 | // Never have 'hot' state when popup is being shown |
1887 | // (this is mostly needed because of the animation). | |
1888 | if ( !IsPopupWindowState(Hidden) ) | |
1889 | m_btnState &= ~wxCONTROL_CURRENT; | |
1890 | ||
a340b80d VZ |
1891 | return true; |
1892 | } | |
1893 | ||
a340b80d | 1894 | // returns true if event was consumed or filtered |
a57d600f | 1895 | bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent& event, |
b104d1f0 | 1896 | int WXUNUSED(flags) ) |
a340b80d VZ |
1897 | { |
1898 | wxLongLong t = ::wxGetLocalTimeMillis(); | |
1899 | int evtType = event.GetEventType(); | |
1900 | ||
fd5b4315 | 1901 | #if USES_WXPOPUPWINDOW || USES_GENERICTLW |
06077aaf | 1902 | if ( m_popupWinType != POPUPWIN_WXPOPUPTRANSIENTWINDOW ) |
c667b518 | 1903 | { |
974a12f8 | 1904 | if ( IsPopupWindowState(Visible) && |
06077aaf VZ |
1905 | ( evtType == wxEVT_LEFT_DOWN || evtType == wxEVT_RIGHT_DOWN ) ) |
1906 | { | |
a1d5aa93 | 1907 | HidePopup(true); |
06077aaf VZ |
1908 | return true; |
1909 | } | |
c667b518 VZ |
1910 | } |
1911 | #endif | |
1912 | ||
c905c0d6 | 1913 | // Filter out clicks on button immediately after popup dismiss |
a340b80d VZ |
1914 | if ( evtType == wxEVT_LEFT_DOWN && t < m_timeCanAcceptClick ) |
1915 | { | |
1916 | event.SetEventType(0); | |
1917 | return true; | |
1918 | } | |
1919 | ||
1920 | return false; | |
1921 | } | |
1922 | ||
a57d600f | 1923 | void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent& event ) |
a340b80d VZ |
1924 | { |
1925 | int evtType = event.GetEventType(); | |
1926 | ||
1927 | if ( (evtType == wxEVT_LEFT_DOWN || evtType == wxEVT_LEFT_DCLICK) && | |
1928 | (m_windowStyle & wxCB_READONLY) ) | |
1929 | { | |
974a12f8 | 1930 | if ( GetPopupWindowState() >= Animating ) |
a340b80d | 1931 | { |
06077aaf | 1932 | #if USES_WXPOPUPWINDOW |
a340b80d | 1933 | // Click here always hides the popup. |
06077aaf | 1934 | if ( m_popupWinType == POPUPWIN_WXPOPUPWINDOW ) |
a1d5aa93 | 1935 | HidePopup(true); |
a340b80d VZ |
1936 | #endif |
1937 | } | |
1938 | else | |
1939 | { | |
1940 | if ( !(m_windowStyle & wxCC_SPECIAL_DCLICK) ) | |
1941 | { | |
1942 | // In read-only mode, clicking the text is the | |
1943 | // same as clicking the button. | |
1944 | OnButtonClick(); | |
1945 | } | |
1946 | else if ( /*evtType == wxEVT_LEFT_UP || */evtType == wxEVT_LEFT_DCLICK ) | |
1947 | { | |
1948 | //if ( m_popupInterface->CycleValue() ) | |
1949 | // Refresh(); | |
1950 | if ( m_popupInterface ) | |
1951 | m_popupInterface->OnComboDoubleClick(); | |
1952 | } | |
1953 | } | |
1954 | } | |
f4084513 | 1955 | else if ( evtType == wxEVT_MOUSEWHEEL ) |
a340b80d | 1956 | { |
f4084513 VS |
1957 | if ( IsPopupShown() ) |
1958 | { | |
1959 | // relay (some) mouse events to the popup | |
174b5c87 | 1960 | m_popup->GetEventHandler()->ProcessEvent(event); |
f4084513 VS |
1961 | } |
1962 | else if ( event.GetWheelAxis() == 0 && | |
1963 | event.GetWheelRotation() != 0 && | |
1964 | event.GetModifiers() == 0 ) | |
1965 | { | |
1966 | // Translate mousewheel actions into key up/down. This is | |
1967 | // the simplest way of getting native behaviour: scrolling the | |
1968 | // wheel moves selection up/down by one item. | |
1969 | wxKeyEvent kevent(wxEVT_KEY_DOWN); | |
1970 | kevent.m_keyCode = event.GetWheelRotation() > 0 | |
1971 | ? WXK_UP | |
1972 | : WXK_DOWN; | |
174b5c87 | 1973 | GetEventHandler()->ProcessEvent(kevent); |
f4084513 VS |
1974 | } |
1975 | else | |
1976 | { | |
1977 | event.Skip(); | |
1978 | } | |
a340b80d VZ |
1979 | } |
1980 | else if ( evtType ) | |
f4084513 | 1981 | { |
a340b80d | 1982 | event.Skip(); |
f4084513 | 1983 | } |
a340b80d VZ |
1984 | } |
1985 | ||
b445b6a7 | 1986 | void wxComboCtrlBase::OnKeyEvent(wxKeyEvent& event) |
a340b80d | 1987 | { |
b445b6a7 VZ |
1988 | if ( IsPopupShown() ) |
1989 | { | |
1990 | // pass it to the popped up control | |
174b5c87 | 1991 | GetPopupControl()->GetControl()->GetEventHandler()->ProcessEvent(event); |
b445b6a7 VZ |
1992 | } |
1993 | else // no popup | |
1994 | { | |
bbb86904 JS |
1995 | wxWindow* mainCtrl = GetMainWindowOfCompositeControl(); |
1996 | ||
1997 | if ( mainCtrl->GetParent()->HasFlag(wxTAB_TRAVERSAL) ) | |
1998 | { | |
1999 | if ( mainCtrl->HandleAsNavigationKey(event) ) | |
2000 | return; | |
2001 | } | |
b445b6a7 VZ |
2002 | |
2003 | if ( IsKeyPopupToggle(event) ) | |
2004 | { | |
2005 | OnButtonClick(); | |
2006 | return; | |
2007 | } | |
2008 | ||
2009 | int comboStyle = GetWindowStyle(); | |
2010 | wxComboPopup* popupInterface = GetPopupControl(); | |
2011 | ||
2012 | if ( !popupInterface ) | |
2013 | { | |
2014 | event.Skip(); | |
2015 | return; | |
2016 | } | |
2017 | ||
f029f1d1 VS |
2018 | int keycode = event.GetKeyCode(); |
2019 | ||
b445b6a7 VZ |
2020 | if ( (comboStyle & wxCB_READONLY) || |
2021 | (keycode != WXK_RIGHT && keycode != WXK_LEFT) ) | |
2022 | { | |
2023 | popupInterface->OnComboKeyEvent(event); | |
2024 | } | |
2025 | else | |
2026 | event.Skip(); | |
2027 | } | |
2028 | } | |
2029 | ||
c765e6fb VS |
2030 | void wxComboCtrlBase::OnCharEvent(wxKeyEvent& event) |
2031 | { | |
2032 | if ( IsPopupShown() ) | |
2033 | { | |
2034 | // pass it to the popped up control | |
2035 | GetPopupControl()->GetControl()->GetEventHandler()->ProcessEvent(event); | |
2036 | } | |
2037 | else // no popup | |
2038 | { | |
2039 | wxComboPopup* popupInterface = GetPopupControl(); | |
2040 | if ( popupInterface ) | |
2041 | { | |
2042 | popupInterface->OnComboCharEvent(event); | |
2043 | } | |
2044 | else | |
2045 | { | |
2046 | event.Skip(); | |
2047 | } | |
2048 | } | |
2049 | } | |
2050 | ||
b445b6a7 VZ |
2051 | void wxComboCtrlBase::OnFocusEvent( wxFocusEvent& event ) |
2052 | { | |
e2ac737f | 2053 | // On Mac, this leads to infinite recursion and eventually a crash |
2e7ad064 SC |
2054 | #ifdef __WXMAC__ |
2055 | wxUnusedVar(event); | |
2056 | #else | |
b445b6a7 | 2057 | if ( event.GetEventType() == wxEVT_SET_FOCUS ) |
a340b80d | 2058 | { |
9727e8a3 JS |
2059 | wxWindow* tc = GetTextCtrl(); |
2060 | if ( tc && tc != DoFindFocus() ) | |
c905c0d6 | 2061 | { |
9727e8a3 | 2062 | tc->SetFocus(); |
c905c0d6 | 2063 | } |
a340b80d | 2064 | } |
b445b6a7 VZ |
2065 | |
2066 | Refresh(); | |
4f8870e3 | 2067 | #endif |
a340b80d VZ |
2068 | } |
2069 | ||
2dfa37d6 RD |
2070 | void wxComboCtrlBase::OnIdleEvent( wxIdleEvent& WXUNUSED(event) ) |
2071 | { | |
2072 | if ( m_resetFocus ) | |
2073 | { | |
2074 | m_resetFocus = false; | |
2075 | wxWindow* tc = GetTextCtrl(); | |
2076 | if ( tc ) | |
2077 | tc->SetFocus(); | |
2078 | } | |
2079 | } | |
2080 | ||
a57d600f | 2081 | void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event)) |
a340b80d VZ |
2082 | { |
2083 | OnThemeChange(); | |
0847e36e JS |
2084 | // left margin may also have changed |
2085 | if ( !(m_iFlags & wxCC_IFLAG_LEFT_MARGIN_SET) ) | |
2086 | m_marginLeft = GetNativeTextIndent(); | |
a340b80d VZ |
2087 | RecalcAndRefresh(); |
2088 | } | |
2089 | ||
2090 | // ---------------------------------------------------------------------------- | |
2091 | // popup handling | |
2092 | // ---------------------------------------------------------------------------- | |
2093 | ||
2094 | // Create popup window and the child control | |
a57d600f | 2095 | void wxComboCtrlBase::CreatePopup() |
a340b80d VZ |
2096 | { |
2097 | wxComboPopup* popupInterface = m_popupInterface; | |
2098 | wxWindow* popup; | |
2099 | ||
2100 | if ( !m_winPopup ) | |
06077aaf VZ |
2101 | { |
2102 | #ifdef wxComboPopupWindowBase2 | |
2103 | if ( m_iFlags & wxCC_IFLAG_USE_ALT_POPUP ) | |
2104 | { | |
fd5b4315 | 2105 | #if !USES_GENERICTLW |
06077aaf VZ |
2106 | m_winPopup = new wxComboPopupWindowBase2( this, wxNO_BORDER ); |
2107 | #else | |
fd5b4315 JS |
2108 | int tlwFlags = wxNO_BORDER; |
2109 | #ifdef wxCC_GENERIC_TLW_IS_FRAME | |
2110 | tlwFlags |= wxFRAME_NO_TASKBAR; | |
2111 | #endif | |
2112 | ||
2113 | #ifdef wxCC_GENERIC_TLW_IS_NONOWNEDWINDOW | |
2114 | m_winPopup = new wxComboPopupWindowBase2( this, wxID_ANY, | |
2115 | wxPoint(-21,-21), wxSize(20, 20), | |
2116 | tlwFlags ); | |
2117 | #else | |
06077aaf VZ |
2118 | m_winPopup = new wxComboPopupWindowBase2( this, wxID_ANY, wxEmptyString, |
2119 | wxPoint(-21,-21), wxSize(20, 20), | |
fd5b4315 JS |
2120 | tlwFlags ); |
2121 | #endif | |
06077aaf VZ |
2122 | #endif |
2123 | m_popupWinType = SECONDARY_POPUP_TYPE; | |
2124 | } | |
2125 | else | |
c905c0d6 | 2126 | #endif // wxComboPopupWindowBase2 |
06077aaf VZ |
2127 | { |
2128 | m_winPopup = new wxComboPopupWindow( this, wxNO_BORDER ); | |
2129 | m_popupWinType = PRIMARY_POPUP_TYPE; | |
2130 | } | |
2131 | m_popupWinEvtHandler = new wxComboPopupWindowEvtHandler(this); | |
2132 | m_winPopup->PushEventHandler(m_popupWinEvtHandler); | |
2133 | } | |
a340b80d VZ |
2134 | |
2135 | popupInterface->Create(m_winPopup); | |
2136 | m_popup = popup = popupInterface->GetControl(); | |
2137 | ||
06315578 JS |
2138 | m_popupEvtHandler = new wxComboPopupEvtHandler(this); |
2139 | popup->PushEventHandler( m_popupEvtHandler ); | |
a340b80d VZ |
2140 | |
2141 | // This may be helpful on some platforms | |
2142 | // (eg. it bypasses a wxGTK popupwindow bug where | |
2143 | // window is not initially hidden when it should be) | |
2144 | m_winPopup->Hide(); | |
2145 | ||
2146 | popupInterface->m_iFlags |= wxCP_IFLAG_CREATED; | |
2147 | } | |
2148 | ||
7ca4ac63 WS |
2149 | // Destroy popup window and the child control |
2150 | void wxComboCtrlBase::DestroyPopup() | |
2151 | { | |
a1d5aa93 | 2152 | HidePopup(true); |
c667b518 | 2153 | |
7ca4ac63 | 2154 | if ( m_popup ) |
06315578 | 2155 | m_popup->RemoveEventHandler(m_popupEvtHandler); |
7ca4ac63 | 2156 | |
5276b0a5 | 2157 | wxDELETE(m_popupEvtHandler); |
7ca4ac63 | 2158 | |
a516284f JS |
2159 | if ( m_popupInterface ) |
2160 | { | |
df3c4a42 JS |
2161 | // NB: DestroyPopup() performs 'delete this'. |
2162 | m_popupInterface->DestroyPopup(); | |
a516284f JS |
2163 | m_popupInterface = NULL; |
2164 | } | |
7ca4ac63 WS |
2165 | |
2166 | if ( m_winPopup ) | |
06077aaf VZ |
2167 | { |
2168 | m_winPopup->RemoveEventHandler(m_popupWinEvtHandler); | |
5276b0a5 | 2169 | wxDELETE(m_popupWinEvtHandler); |
7ca4ac63 | 2170 | m_winPopup->Destroy(); |
5276b0a5 | 2171 | m_winPopup = NULL; |
06077aaf | 2172 | } |
7ca4ac63 | 2173 | |
d3b9f782 | 2174 | m_popup = NULL; |
7ca4ac63 WS |
2175 | } |
2176 | ||
db53c6ea | 2177 | void wxComboCtrlBase::DoSetPopupControl(wxComboPopup* iface) |
a340b80d | 2178 | { |
a57d600f | 2179 | wxCHECK_RET( iface, wxT("no popup interface set for wxComboCtrl") ); |
6d0ce565 | 2180 | |
7ca4ac63 | 2181 | DestroyPopup(); |
a340b80d | 2182 | |
6d0ce565 VZ |
2183 | iface->InitBase(this); |
2184 | iface->Init(); | |
2185 | ||
a340b80d VZ |
2186 | m_popupInterface = iface; |
2187 | ||
7ca4ac63 | 2188 | if ( !iface->LazyCreate() ) |
a340b80d VZ |
2189 | { |
2190 | CreatePopup(); | |
2191 | } | |
2192 | else | |
2193 | { | |
d3b9f782 | 2194 | m_popup = NULL; |
a340b80d VZ |
2195 | } |
2196 | ||
6d0ce565 | 2197 | // This must be done after creation |
6636ef8d | 2198 | if ( !m_valueString.empty() ) |
6d0ce565 | 2199 | { |
a340b80d | 2200 | iface->SetStringValue(m_valueString); |
6d0ce565 VZ |
2201 | //Refresh(); |
2202 | } | |
2203 | } | |
a340b80d | 2204 | |
6d0ce565 | 2205 | // Ensures there is atleast the default popup |
a57d600f | 2206 | void wxComboCtrlBase::EnsurePopupControl() |
6d0ce565 VZ |
2207 | { |
2208 | if ( !m_popupInterface ) | |
2209 | SetPopupControl(NULL); | |
a340b80d VZ |
2210 | } |
2211 | ||
a57d600f | 2212 | void wxComboCtrlBase::OnButtonClick() |
a340b80d VZ |
2213 | { |
2214 | // Derived classes can override this method for totally custom | |
2215 | // popup action | |
dc2b49b3 | 2216 | switch ( GetPopupWindowState() ) |
a1d5aa93 | 2217 | { |
dc2b49b3 VS |
2218 | case Hidden: |
2219 | { | |
ffb9247a | 2220 | Popup(); |
dc2b49b3 VS |
2221 | break; |
2222 | } | |
2223 | ||
2224 | case Animating: | |
2225 | case Visible: | |
2226 | { | |
2227 | HidePopup(true); | |
2228 | break; | |
2229 | } | |
a1d5aa93 | 2230 | } |
a340b80d VZ |
2231 | } |
2232 | ||
ffb9247a JS |
2233 | void wxComboCtrlBase::Popup() |
2234 | { | |
2235 | wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_DROPDOWN, GetId()); | |
2236 | event.SetEventObject(this); | |
2237 | HandleWindowEvent(event); | |
2238 | ||
2239 | ShowPopup(); | |
2240 | } | |
2241 | ||
a57d600f | 2242 | void wxComboCtrlBase::ShowPopup() |
a340b80d | 2243 | { |
6d0ce565 | 2244 | EnsurePopupControl(); |
974a12f8 RR |
2245 | wxCHECK_RET( !IsPopupWindowState(Visible), wxT("popup window already shown") ); |
2246 | ||
2247 | if ( IsPopupWindowState(Animating) ) | |
2248 | return; | |
a340b80d VZ |
2249 | |
2250 | SetFocus(); | |
2251 | ||
2252 | // Space above and below | |
2253 | int screenHeight; | |
2254 | wxPoint scrPos; | |
2255 | int spaceAbove; | |
2256 | int spaceBelow; | |
2257 | int maxHeightPopup; | |
2258 | wxSize ctrlSz = GetSize(); | |
2259 | ||
2260 | screenHeight = wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ); | |
2261 | scrPos = GetParent()->ClientToScreen(GetPosition()); | |
2262 | ||
2263 | spaceAbove = scrPos.y; | |
2264 | spaceBelow = screenHeight - spaceAbove - ctrlSz.y; | |
2265 | ||
2266 | maxHeightPopup = spaceBelow; | |
2267 | if ( spaceAbove > spaceBelow ) | |
2268 | maxHeightPopup = spaceAbove; | |
2269 | ||
2270 | // Width | |
2271 | int widthPopup = ctrlSz.x + m_extLeft + m_extRight; | |
2272 | ||
2273 | if ( widthPopup < m_widthMinPopup ) | |
2274 | widthPopup = m_widthMinPopup; | |
2275 | ||
2276 | wxWindow* winPopup = m_winPopup; | |
2277 | wxWindow* popup; | |
2278 | ||
2279 | // Need to disable tab traversal of parent | |
2280 | // | |
2281 | // NB: This is to fix a bug in wxMSW. In theory it could also be fixed | |
2282 | // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage | |
2283 | // that if transient popup is open, then tab traversal is to be ignored. | |
2284 | // However, I think this code would still be needed for cases where | |
2285 | // transient popup doesn't work yet (wxWinCE?). | |
bbb86904 JS |
2286 | wxWindow* mainCtrl = GetMainWindowOfCompositeControl(); |
2287 | wxWindow* parent = mainCtrl->GetParent(); | |
a340b80d VZ |
2288 | int parentFlags = parent->GetWindowStyle(); |
2289 | if ( parentFlags & wxTAB_TRAVERSAL ) | |
2290 | { | |
2291 | parent->SetWindowStyle( parentFlags & ~(wxTAB_TRAVERSAL) ); | |
2292 | m_iFlags |= wxCC_IFLAG_PARENT_TAB_TRAVERSAL; | |
2293 | } | |
2294 | ||
2295 | if ( !winPopup ) | |
2296 | { | |
2297 | CreatePopup(); | |
2298 | winPopup = m_winPopup; | |
2299 | popup = m_popup; | |
2300 | } | |
2301 | else | |
2302 | { | |
2303 | popup = m_popup; | |
2304 | } | |
2305 | ||
9727e8a3 | 2306 | winPopup->Enable(); |
a61c9122 | 2307 | |
a340b80d VZ |
2308 | wxASSERT( !m_popup || m_popup == popup ); // Consistency check. |
2309 | ||
2310 | wxSize adjustedSize = m_popupInterface->GetAdjustedSize(widthPopup, | |
2311 | m_heightPopup<=0?DEFAULT_POPUP_HEIGHT:m_heightPopup, | |
2312 | maxHeightPopup); | |
2313 | ||
2314 | popup->SetSize(adjustedSize); | |
2315 | popup->Move(0,0); | |
2316 | m_popupInterface->OnPopup(); | |
2317 | ||
2318 | // | |
2319 | // Reposition and resize popup window | |
2320 | // | |
2321 | ||
2322 | wxSize szp = popup->GetSize(); | |
2323 | ||
2324 | int popupX; | |
2325 | int popupY = scrPos.y + ctrlSz.y; | |
2326 | ||
b7540dc1 | 2327 | // Default anchor is wxLEFT |
a340b80d VZ |
2328 | int anchorSide = m_anchorSide; |
2329 | if ( !anchorSide ) | |
b7540dc1 | 2330 | anchorSide = wxLEFT; |
a340b80d | 2331 | |
b7540dc1 WS |
2332 | int rightX = scrPos.x + ctrlSz.x + m_extRight - szp.x; |
2333 | int leftX = scrPos.x - m_extLeft; | |
c4b37573 VZ |
2334 | |
2335 | if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft ) | |
2336 | leftX -= ctrlSz.x; | |
2337 | ||
b7540dc1 WS |
2338 | int screenWidth = wxSystemSettings::GetMetric( wxSYS_SCREEN_X ); |
2339 | ||
2340 | // If there is not enough horizontal space, anchor on the other side. | |
2341 | // If there is no space even then, place the popup at x 0. | |
2342 | if ( anchorSide == wxRIGHT ) | |
2343 | { | |
2344 | if ( rightX < 0 ) | |
2345 | { | |
2346 | if ( (leftX+szp.x) < screenWidth ) | |
2347 | anchorSide = wxLEFT; | |
2348 | else | |
2349 | anchorSide = 0; | |
2350 | } | |
2351 | } | |
2352 | else | |
2353 | { | |
2354 | if ( (leftX+szp.x) >= screenWidth ) | |
2355 | { | |
2356 | if ( rightX >= 0 ) | |
2357 | anchorSide = wxRIGHT; | |
2358 | else | |
2359 | anchorSide = 0; | |
2360 | } | |
2361 | } | |
2362 | ||
2363 | // Select x coordinate according to the anchor side | |
a340b80d | 2364 | if ( anchorSide == wxRIGHT ) |
b7540dc1 WS |
2365 | popupX = rightX; |
2366 | else if ( anchorSide == wxLEFT ) | |
2367 | popupX = leftX; | |
a340b80d | 2368 | else |
b7540dc1 | 2369 | popupX = 0; |
a340b80d | 2370 | |
974a12f8 RR |
2371 | int showFlags = CanDeferShow; |
2372 | ||
a340b80d VZ |
2373 | if ( spaceBelow < szp.y ) |
2374 | { | |
2375 | popupY = scrPos.y - szp.y; | |
974a12f8 | 2376 | showFlags |= ShowAbove; |
a340b80d VZ |
2377 | } |
2378 | ||
974a12f8 RR |
2379 | #if INSTALL_TOPLEV_HANDLER |
2380 | // Put top level window event handler into place | |
2381 | if ( m_popupWinType == POPUPWIN_WXPOPUPWINDOW ) | |
2382 | { | |
2383 | if ( !m_toplevEvtHandler ) | |
2384 | m_toplevEvtHandler = new wxComboFrameEventHandler(this); | |
a340b80d | 2385 | |
974a12f8 RR |
2386 | wxWindow* toplev = ::wxGetTopLevelParent( this ); |
2387 | wxASSERT( toplev ); | |
2388 | ((wxComboFrameEventHandler*)m_toplevEvtHandler)->OnPopup(); | |
2389 | toplev->PushEventHandler( m_toplevEvtHandler ); | |
2390 | } | |
2391 | #endif | |
a340b80d VZ |
2392 | |
2393 | // Set string selection (must be this way instead of SetStringSelection) | |
2394 | if ( m_text ) | |
2395 | { | |
2396 | if ( !(m_iFlags & wxCC_NO_TEXT_AUTO_SELECT) ) | |
2397 | m_text->SelectAll(); | |
2398 | ||
2399 | m_popupInterface->SetStringValue( m_text->GetValue() ); | |
2400 | } | |
2401 | else | |
2402 | { | |
2403 | // This is neede since focus/selection indication may change when popup is shown | |
a340b80d VZ |
2404 | Refresh(); |
2405 | } | |
2406 | ||
2407 | // This must be after SetStringValue | |
974a12f8 | 2408 | m_popupWinState = Animating; |
a340b80d | 2409 | |
974a12f8 | 2410 | wxRect popupWinRect( popupX, popupY, szp.x, szp.y ); |
a340b80d | 2411 | |
974a12f8 | 2412 | m_popup = popup; |
30be036c RR |
2413 | if ( (m_iFlags & wxCC_IFLAG_DISABLE_POPUP_ANIM) || |
2414 | AnimateShow( popupWinRect, showFlags ) ) | |
06077aaf | 2415 | { |
974a12f8 RR |
2416 | DoShowPopup( popupWinRect, showFlags ); |
2417 | } | |
2418 | } | |
a340b80d | 2419 | |
974a12f8 RR |
2420 | bool wxComboCtrlBase::AnimateShow( const wxRect& WXUNUSED(rect), int WXUNUSED(flags) ) |
2421 | { | |
2422 | return true; | |
2423 | } | |
2424 | ||
2425 | void wxComboCtrlBase::DoShowPopup( const wxRect& rect, int WXUNUSED(flags) ) | |
2426 | { | |
2427 | wxWindow* winPopup = m_winPopup; | |
2428 | ||
2429 | if ( IsPopupWindowState(Animating) ) | |
2430 | { | |
2431 | // Make sure the popup window is shown in the right position. | |
2432 | // Should not matter even if animation already did this. | |
2433 | ||
2434 | // Some platforms (GTK) may like SetSize and Move to be separate | |
2435 | // (though the bug was probably fixed). | |
2436 | winPopup->SetSize( rect ); | |
2437 | ||
c905c0d6 VZ |
2438 | #if USES_WXPOPUPTRANSIENTWINDOW |
2439 | if ( m_popupWinType == POPUPWIN_WXPOPUPTRANSIENTWINDOW ) | |
2440 | ((wxPopupTransientWindow*)winPopup)->Popup(m_popup); | |
2441 | else | |
2442 | #endif | |
2443 | winPopup->Show(); | |
974a12f8 RR |
2444 | |
2445 | m_popupWinState = Visible; | |
52999871 JS |
2446 | |
2447 | // If popup window was a generic top-level window, or the | |
2448 | // wxPopupWindow implemenation on this platform is classified as | |
2449 | // perfect, then we should be able to safely set focus to the popup | |
2450 | // control. | |
2451 | if ( IsPopupWinTypePerfect(m_popupWinType) ) | |
2452 | m_popup->SetFocus(); | |
06077aaf | 2453 | } |
974a12f8 RR |
2454 | else if ( IsPopupWindowState(Hidden) ) |
2455 | { | |
2456 | // Animation was aborted | |
a340b80d | 2457 | |
974a12f8 RR |
2458 | wxASSERT( !winPopup->IsShown() ); |
2459 | ||
2460 | m_popupWinState = Hidden; | |
2461 | } | |
c905c0d6 VZ |
2462 | |
2463 | Refresh(); | |
a340b80d VZ |
2464 | } |
2465 | ||
a1d5aa93 | 2466 | void wxComboCtrlBase::OnPopupDismiss(bool generateEvent) |
974a12f8 | 2467 | { |
a340b80d | 2468 | // Just in case, avoid double dismiss |
974a12f8 | 2469 | if ( IsPopupWindowState(Hidden) ) |
a340b80d VZ |
2470 | return; |
2471 | ||
9727e8a3 JS |
2472 | // This must be set before focus - otherwise there will be recursive |
2473 | // OnPopupDismisses. | |
974a12f8 | 2474 | m_popupWinState = Hidden; |
a340b80d | 2475 | |
9727e8a3 JS |
2476 | //SetFocus(); |
2477 | m_winPopup->Disable(); | |
2478 | ||
a340b80d VZ |
2479 | // Inform popup control itself |
2480 | m_popupInterface->OnDismiss(); | |
2481 | ||
06315578 JS |
2482 | if ( m_popupEvtHandler ) |
2483 | ((wxComboPopupEvtHandler*)m_popupEvtHandler)->OnPopupDismiss(); | |
a340b80d VZ |
2484 | |
2485 | #if INSTALL_TOPLEV_HANDLER | |
2486 | // Remove top level window event handler | |
2487 | if ( m_toplevEvtHandler ) | |
2488 | { | |
2489 | wxWindow* toplev = ::wxGetTopLevelParent( this ); | |
2490 | if ( toplev ) | |
2491 | toplev->RemoveEventHandler( m_toplevEvtHandler ); | |
2492 | } | |
2493 | #endif | |
2494 | ||
974a12f8 RR |
2495 | m_timeCanAcceptClick = ::wxGetLocalTimeMillis(); |
2496 | ||
2497 | if ( m_popupWinType == POPUPWIN_WXPOPUPTRANSIENTWINDOW ) | |
2498 | m_timeCanAcceptClick += 150; | |
a340b80d VZ |
2499 | |
2500 | // If cursor not on dropdown button, then clear its state | |
2501 | // (technically not required by all ports, but do it for all just in case) | |
22a35096 | 2502 | if ( !m_btnArea.Contains(ScreenToClient(::wxGetMousePosition())) ) |
a340b80d VZ |
2503 | m_btnState = 0; |
2504 | ||
2505 | // Return parent's tab traversal flag. | |
2506 | // See ShowPopup for notes. | |
2507 | if ( m_iFlags & wxCC_IFLAG_PARENT_TAB_TRAVERSAL ) | |
2508 | { | |
2509 | wxWindow* parent = GetParent(); | |
2510 | parent->SetWindowStyle( parent->GetWindowStyle() | wxTAB_TRAVERSAL ); | |
2511 | m_iFlags &= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL); | |
2512 | } | |
2513 | ||
2514 | // refresh control (necessary even if m_text) | |
2515 | Refresh(); | |
2516 | ||
a340b80d | 2517 | SetFocus(); |
a1d5aa93 JS |
2518 | |
2519 | if ( generateEvent ) | |
2520 | { | |
2521 | wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_CLOSEUP, GetId()); | |
2522 | event.SetEventObject(this); | |
65702d2f | 2523 | HandleWindowEvent(event); |
a1d5aa93 | 2524 | } |
a340b80d VZ |
2525 | } |
2526 | ||
a1d5aa93 | 2527 | void wxComboCtrlBase::HidePopup(bool generateEvent) |
a340b80d VZ |
2528 | { |
2529 | // Should be able to call this without popup interface | |
974a12f8 | 2530 | if ( IsPopupWindowState(Hidden) ) |
a340b80d VZ |
2531 | return; |
2532 | ||
2533 | // transfer value and show it in textctrl, if any | |
974a12f8 | 2534 | if ( !IsPopupWindowState(Animating) ) |
0306e73e | 2535 | SetValueByUser( m_popupInterface->GetStringValue() ); |
a340b80d | 2536 | |
974a12f8 | 2537 | m_winPopup->Hide(); |
a340b80d | 2538 | |
a1d5aa93 | 2539 | OnPopupDismiss(generateEvent); |
a340b80d VZ |
2540 | } |
2541 | ||
2542 | // ---------------------------------------------------------------------------- | |
2543 | // customization methods | |
2544 | // ---------------------------------------------------------------------------- | |
2545 | ||
a57d600f | 2546 | void wxComboCtrlBase::SetButtonPosition( int width, int height, |
7dc234d6 | 2547 | int side, int spacingX ) |
a340b80d VZ |
2548 | { |
2549 | m_btnWid = width; | |
2550 | m_btnHei = height; | |
2551 | m_btnSide = side; | |
2552 | m_btnSpacingX = spacingX; | |
2553 | ||
735a300a JS |
2554 | if ( width > 0 || height > 0 || spacingX ) |
2555 | m_iFlags |= wxCC_IFLAG_HAS_NONSTANDARD_BUTTON; | |
2556 | ||
a340b80d VZ |
2557 | RecalcAndRefresh(); |
2558 | } | |
2559 | ||
7dc234d6 WS |
2560 | wxSize wxComboCtrlBase::GetButtonSize() |
2561 | { | |
2562 | if ( m_btnSize.x > 0 ) | |
2563 | return m_btnSize; | |
2564 | ||
2565 | wxSize retSize(m_btnWid,m_btnHei); | |
2566 | ||
2567 | // Need to call CalculateAreas now if button size is | |
2568 | // is not explicitly specified. | |
2569 | if ( retSize.x <= 0 || retSize.y <= 0) | |
2570 | { | |
2571 | OnResize(); | |
2572 | ||
2573 | retSize = m_btnSize; | |
2574 | } | |
2575 | ||
2576 | return retSize; | |
2577 | } | |
2578 | ||
a57d600f | 2579 | void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap& bmpNormal, |
a340b80d VZ |
2580 | bool blankButtonBg, |
2581 | const wxBitmap& bmpPressed, | |
2582 | const wxBitmap& bmpHover, | |
2583 | const wxBitmap& bmpDisabled ) | |
2584 | { | |
2585 | m_bmpNormal = bmpNormal; | |
2586 | m_blankButtonBg = blankButtonBg; | |
2587 | ||
a1b806b9 | 2588 | if ( bmpPressed.IsOk() ) |
a340b80d VZ |
2589 | m_bmpPressed = bmpPressed; |
2590 | else | |
2591 | m_bmpPressed = bmpNormal; | |
2592 | ||
a1b806b9 | 2593 | if ( bmpHover.IsOk() ) |
a340b80d VZ |
2594 | m_bmpHover = bmpHover; |
2595 | else | |
2596 | m_bmpHover = bmpNormal; | |
2597 | ||
a1b806b9 | 2598 | if ( bmpDisabled.IsOk() ) |
a340b80d VZ |
2599 | m_bmpDisabled = bmpDisabled; |
2600 | else | |
2601 | m_bmpDisabled = bmpNormal; | |
2602 | ||
2603 | RecalcAndRefresh(); | |
2604 | } | |
2605 | ||
a57d600f | 2606 | void wxComboCtrlBase::SetCustomPaintWidth( int width ) |
a340b80d VZ |
2607 | { |
2608 | if ( m_text ) | |
2609 | { | |
2610 | // move textctrl accordingly | |
2611 | wxRect r = m_text->GetRect(); | |
2612 | int inc = width - m_widthCustomPaint; | |
2613 | r.x += inc; | |
2614 | r.width -= inc; | |
2615 | m_text->SetSize( r ); | |
2616 | } | |
2617 | ||
2618 | m_widthCustomPaint = width; | |
2619 | ||
2620 | RecalcAndRefresh(); | |
2621 | } | |
2622 | ||
0847e36e JS |
2623 | bool wxComboCtrlBase::DoSetMargins(const wxPoint& margins) |
2624 | { | |
2625 | // For general sanity's sake, we ignore top margin. Instead | |
2626 | // we will always try to center the text vertically. | |
2627 | bool res = true; | |
2628 | ||
2629 | if ( margins.x != -1 ) | |
2630 | { | |
2631 | m_marginLeft = margins.x; | |
2632 | m_iFlags |= wxCC_IFLAG_LEFT_MARGIN_SET; | |
2633 | } | |
2634 | else | |
2635 | { | |
2636 | m_marginLeft = GetNativeTextIndent(); | |
2637 | m_iFlags &= ~(wxCC_IFLAG_LEFT_MARGIN_SET); | |
2638 | } | |
2639 | ||
2640 | if ( margins.y != -1 ) | |
2641 | { | |
2642 | res = false; | |
2643 | } | |
2644 | ||
2645 | RecalcAndRefresh(); | |
2646 | ||
2647 | return res; | |
2648 | } | |
2649 | ||
2650 | wxPoint wxComboCtrlBase::DoGetMargins() const | |
2651 | { | |
2652 | return wxPoint(m_marginLeft, -1); | |
2653 | } | |
2654 | ||
ddadf560 | 2655 | #if WXWIN_COMPATIBILITY_2_8 |
a57d600f | 2656 | void wxComboCtrlBase::SetTextIndent( int indent ) |
a340b80d VZ |
2657 | { |
2658 | if ( indent < 0 ) | |
2659 | { | |
0847e36e JS |
2660 | m_marginLeft = GetNativeTextIndent(); |
2661 | m_iFlags &= ~(wxCC_IFLAG_LEFT_MARGIN_SET); | |
a340b80d VZ |
2662 | } |
2663 | else | |
2664 | { | |
0847e36e JS |
2665 | m_marginLeft = indent; |
2666 | m_iFlags |= wxCC_IFLAG_LEFT_MARGIN_SET; | |
a340b80d VZ |
2667 | } |
2668 | ||
2669 | RecalcAndRefresh(); | |
2670 | } | |
2671 | ||
48284cc7 | 2672 | wxCoord wxComboCtrlBase::GetTextIndent() const |
0847e36e JS |
2673 | { |
2674 | return m_marginLeft; | |
2675 | } | |
2676 | #endif | |
2677 | ||
a57d600f | 2678 | wxCoord wxComboCtrlBase::GetNativeTextIndent() const |
a340b80d VZ |
2679 | { |
2680 | return DEFAULT_TEXT_INDENT; | |
2681 | } | |
2682 | ||
1ac5cfc7 JS |
2683 | void wxComboCtrlBase::SetTextCtrlStyle( int style ) |
2684 | { | |
2685 | m_textCtrlStyle = style; | |
2686 | ||
2687 | if ( m_text ) | |
2688 | m_text->SetWindowStyle(style); | |
2689 | } | |
2690 | ||
a340b80d | 2691 | // ---------------------------------------------------------------------------- |
fda62793 | 2692 | // wxTextEntry interface |
a340b80d VZ |
2693 | // ---------------------------------------------------------------------------- |
2694 | ||
fda62793 | 2695 | wxString wxComboCtrlBase::DoGetValue() const |
a340b80d VZ |
2696 | { |
2697 | if ( m_text ) | |
2698 | return m_text->GetValue(); | |
2699 | return m_valueString; | |
2700 | } | |
2701 | ||
0306e73e JS |
2702 | void wxComboCtrlBase::SetValueWithEvent(const wxString& value, |
2703 | bool withEvent) | |
a340b80d | 2704 | { |
0306e73e JS |
2705 | DoSetValue(value, withEvent ? SetValue_SendEvent : 0); |
2706 | } | |
22b6de6a | 2707 | |
0306e73e JS |
2708 | void wxComboCtrlBase::OnSetValue(const wxString& value) |
2709 | { | |
2710 | // Note: before wxComboCtrl inherited from wxTextEntry, | |
2711 | // this code used to be in SetValueWithEvent(). | |
a340b80d VZ |
2712 | |
2713 | // Since wxComboPopup may want to paint the combo as well, we need | |
2714 | // to set the string value here (as well as sometimes in ShowPopup). | |
4738d674 | 2715 | if ( m_valueString != value ) |
a340b80d | 2716 | { |
238b33ab JS |
2717 | bool found = true; |
2718 | wxString trueValue = value; | |
2719 | ||
4c51a665 | 2720 | // Conform to wxComboBox behaviour: read-only control can only accept |
238b33ab JS |
2721 | // valid list items and empty string |
2722 | if ( m_popupInterface && HasFlag(wxCB_READONLY) && value.length() ) | |
2723 | { | |
2724 | found = m_popupInterface->FindItem(value, | |
2725 | &trueValue); | |
2726 | } | |
4738d674 | 2727 | |
238b33ab JS |
2728 | if ( found ) |
2729 | { | |
2730 | m_valueString = trueValue; | |
4738d674 | 2731 | |
238b33ab JS |
2732 | EnsurePopupControl(); |
2733 | ||
2734 | if ( m_popupInterface ) | |
2735 | m_popupInterface->SetStringValue(trueValue); | |
2736 | } | |
a340b80d | 2737 | } |
4738d674 VZ |
2738 | |
2739 | Refresh(); | |
6d0ce565 VZ |
2740 | } |
2741 | ||
0306e73e | 2742 | void wxComboCtrlBase::SetValueByUser(const wxString& value) |
ce968519 | 2743 | { |
0306e73e JS |
2744 | // NB: Order of function calls is important here. Otherwise |
2745 | // the SelectAll() may not work. | |
2746 | ||
2747 | if ( m_text ) | |
2748 | { | |
2749 | m_text->SetValue(value); | |
2750 | ||
2751 | if ( !(m_iFlags & wxCC_NO_TEXT_AUTO_SELECT) ) | |
2752 | m_text->SelectAll(); | |
2753 | } | |
2754 | ||
2755 | OnSetValue(value); | |
ce968519 RR |
2756 | } |
2757 | ||
6d0ce565 | 2758 | // In this SetValue variant wxComboPopup::SetStringValue is not called |
a57d600f | 2759 | void wxComboCtrlBase::SetText(const wxString& value) |
6d0ce565 VZ |
2760 | { |
2761 | // Unlike in SetValue(), this must be called here or | |
2762 | // the behaviour will no be consistent in readonlys. | |
2763 | EnsurePopupControl(); | |
a340b80d VZ |
2764 | |
2765 | m_valueString = value; | |
2766 | ||
ce968519 RR |
2767 | if ( m_text ) |
2768 | { | |
2769 | m_ignoreEvtText++; | |
2770 | m_text->SetValue( value ); | |
2771 | } | |
2772 | ||
a340b80d VZ |
2773 | Refresh(); |
2774 | } | |
2775 | ||
a57d600f | 2776 | void wxComboCtrlBase::Copy() |
a340b80d VZ |
2777 | { |
2778 | if ( m_text ) | |
2779 | m_text->Copy(); | |
2780 | } | |
2781 | ||
a57d600f | 2782 | void wxComboCtrlBase::Cut() |
a340b80d VZ |
2783 | { |
2784 | if ( m_text ) | |
2785 | m_text->Cut(); | |
2786 | } | |
2787 | ||
a57d600f | 2788 | void wxComboCtrlBase::Paste() |
a340b80d VZ |
2789 | { |
2790 | if ( m_text ) | |
2791 | m_text->Paste(); | |
2792 | } | |
2793 | ||
a57d600f | 2794 | void wxComboCtrlBase::SetInsertionPoint(long pos) |
a340b80d VZ |
2795 | { |
2796 | if ( m_text ) | |
2797 | m_text->SetInsertionPoint(pos); | |
2798 | } | |
2799 | ||
a57d600f | 2800 | long wxComboCtrlBase::GetInsertionPoint() const |
a340b80d VZ |
2801 | { |
2802 | if ( m_text ) | |
2803 | return m_text->GetInsertionPoint(); | |
2804 | ||
2805 | return 0; | |
2806 | } | |
2807 | ||
a57d600f | 2808 | long wxComboCtrlBase::GetLastPosition() const |
a340b80d VZ |
2809 | { |
2810 | if ( m_text ) | |
2811 | return m_text->GetLastPosition(); | |
2812 | ||
2813 | return 0; | |
2814 | } | |
2815 | ||
0306e73e | 2816 | void wxComboCtrlBase::WriteText(const wxString& text) |
a340b80d VZ |
2817 | { |
2818 | if ( m_text ) | |
0306e73e JS |
2819 | { |
2820 | m_text->WriteText(text); | |
2821 | OnSetValue(m_text->GetValue()); | |
2822 | } | |
2823 | else | |
2824 | { | |
2825 | OnSetValue(text); | |
2826 | } | |
a340b80d VZ |
2827 | } |
2828 | ||
0306e73e | 2829 | void wxComboCtrlBase::DoSetValue(const wxString& value, int flags) |
fda62793 JS |
2830 | { |
2831 | if ( m_text ) | |
0306e73e JS |
2832 | { |
2833 | if ( flags & SetValue_SendEvent ) | |
2834 | m_text->SetValue(value); | |
2835 | else | |
2836 | m_text->ChangeValue(value); | |
2837 | } | |
2838 | ||
2839 | OnSetValue(value); | |
2840 | } | |
2841 | ||
2842 | void wxComboCtrlBase::Replace(long from, long to, const wxString& value) | |
2843 | { | |
2844 | if ( m_text ) | |
2845 | { | |
2846 | m_text->Replace(from, to, value); | |
2847 | OnSetValue(m_text->GetValue()); | |
2848 | } | |
fda62793 JS |
2849 | } |
2850 | ||
a57d600f | 2851 | void wxComboCtrlBase::Remove(long from, long to) |
a340b80d VZ |
2852 | { |
2853 | if ( m_text ) | |
0306e73e | 2854 | { |
a340b80d | 2855 | m_text->Remove(from, to); |
0306e73e JS |
2856 | OnSetValue(m_text->GetValue()); |
2857 | } | |
a340b80d VZ |
2858 | } |
2859 | ||
a57d600f | 2860 | void wxComboCtrlBase::SetSelection(long from, long to) |
a340b80d VZ |
2861 | { |
2862 | if ( m_text ) | |
2863 | m_text->SetSelection(from, to); | |
2864 | } | |
2865 | ||
fda62793 JS |
2866 | void wxComboCtrlBase::GetSelection(long *from, long *to) const |
2867 | { | |
2868 | if ( m_text ) | |
2869 | { | |
2870 | m_text->GetSelection(from, to); | |
2871 | } | |
2872 | else | |
2873 | { | |
2874 | *from = 0; | |
2875 | *to = 0; | |
2876 | } | |
2877 | } | |
2878 | ||
2879 | bool wxComboCtrlBase::IsEditable() const | |
2880 | { | |
2881 | if ( m_text ) | |
2882 | return m_text->IsEditable(); | |
2883 | return false; | |
2884 | } | |
2885 | ||
2886 | void wxComboCtrlBase::SetEditable(bool editable) | |
2887 | { | |
2888 | if ( m_text ) | |
2889 | m_text->SetEditable(editable); | |
2890 | } | |
2891 | ||
a57d600f | 2892 | void wxComboCtrlBase::Undo() |
a340b80d VZ |
2893 | { |
2894 | if ( m_text ) | |
2895 | m_text->Undo(); | |
2896 | } | |
2897 | ||
fda62793 JS |
2898 | void wxComboCtrlBase::Redo() |
2899 | { | |
2900 | if ( m_text ) | |
2901 | m_text->Redo(); | |
2902 | } | |
2903 | ||
2904 | bool wxComboCtrlBase::CanUndo() const | |
2905 | { | |
2906 | if ( m_text ) | |
2907 | return m_text->CanUndo(); | |
2908 | ||
2909 | return false; | |
2910 | } | |
2911 | ||
2912 | bool wxComboCtrlBase::CanRedo() const | |
2913 | { | |
2914 | if ( m_text ) | |
2915 | return m_text->CanRedo(); | |
2916 | ||
2917 | return false; | |
2918 | } | |
2919 | ||
107defe3 JS |
2920 | bool wxComboCtrlBase::SetHint(const wxString& hint) |
2921 | { | |
2922 | m_hintText = hint; | |
2923 | bool res = true; | |
2924 | if ( m_text ) | |
2925 | res = m_text->SetHint(hint); | |
2926 | Refresh(); | |
2927 | return res; | |
2928 | } | |
2929 | ||
2930 | wxString wxComboCtrlBase::GetHint() const | |
2931 | { | |
2932 | return m_hintText; | |
2933 | } | |
2934 | ||
a57d600f | 2935 | #endif // wxUSE_COMBOCTRL |