]>
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 | ||
a57d600f | 26 | #if wxUSE_COMBOCTRL |
a340b80d | 27 | |
a5bbd1cc WS |
28 | #include "wx/combobox.h" |
29 | ||
a340b80d | 30 | #ifndef WX_PRECOMP |
a340b80d | 31 | #include "wx/log.h" |
a340b80d VZ |
32 | #include "wx/dcclient.h" |
33 | #include "wx/settings.h" | |
34 | #include "wx/dialog.h" | |
c0badb70 | 35 | #include "wx/timer.h" |
a340b80d VZ |
36 | #endif |
37 | ||
a340b80d | 38 | #include "wx/tooltip.h" |
a340b80d VZ |
39 | |
40 | #include "wx/combo.h" | |
41 | ||
42 | ||
43 | ||
44 | // constants | |
45 | // ---------------------------------------------------------------------------- | |
46 | ||
a340b80d VZ |
47 | #define DEFAULT_DROPBUTTON_WIDTH 19 |
48 | ||
49 | #define BMP_BUTTON_MARGIN 4 | |
50 | ||
7962f85a | 51 | #define DEFAULT_POPUP_HEIGHT 400 |
a340b80d VZ |
52 | |
53 | #define DEFAULT_TEXT_INDENT 3 | |
54 | ||
55 | #define COMBO_MARGIN 2 // spacing right of wxTextCtrl | |
56 | ||
57 | ||
58 | #if defined(__WXMSW__) | |
59 | ||
60 | #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform) | |
06077aaf VZ |
61 | #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common |
62 | // native controls work on it like normal. | |
63 | #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window. | |
7e4545b8 | 64 | #define TEXTCTRL_TEXT_CENTERED 0 // 1 if text in textctrl is vertically centered |
a340b80d VZ |
65 | |
66 | //#undef wxUSE_POPUPWIN | |
67 | //#define wxUSE_POPUPWIN 0 | |
68 | ||
69 | #elif defined(__WXGTK__) | |
70 | ||
06077aaf VZ |
71 | // NB: It is not recommended to use wxDialog as popup on wxGTK, because of |
72 | // this bug: If wxDialog is hidden, its position becomes corrupt | |
73 | // between hide and next show, but without internal coordinates being | |
74 | // reflected (or something like that - atleast commenting out ->Hide() | |
75 | // seemed to eliminate the position change). | |
76 | ||
a340b80d | 77 | #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform) |
06077aaf VZ |
78 | #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common |
79 | // native controls work on it like normal. | |
80 | #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window. | |
7e4545b8 | 81 | #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered |
a340b80d VZ |
82 | |
83 | #elif defined(__WXMAC__) | |
84 | ||
85 | #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform) | |
06077aaf VZ |
86 | #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common |
87 | // native controls work on it like normal. | |
88 | #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window. | |
7e4545b8 | 89 | #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered |
a340b80d VZ |
90 | |
91 | #else | |
92 | ||
93 | #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform) | |
06077aaf VZ |
94 | #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common |
95 | // native controls work on it like normal. | |
96 | #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window. | |
7e4545b8 | 97 | #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered |
a340b80d VZ |
98 | |
99 | #endif | |
100 | ||
101 | ||
102 | // Popupwin is really only supported on wxMSW (not WINCE) and wxGTK, regardless | |
103 | // what the wxUSE_POPUPWIN says. | |
104 | // FIXME: Why isn't wxUSE_POPUPWIN reliable any longer? (it was in wxW2.6.2) | |
105 | #if (!defined(__WXMSW__) && !defined(__WXGTK__)) || defined(__WXWINCE__) | |
106 | #undef wxUSE_POPUPWIN | |
107 | #define wxUSE_POPUPWIN 0 | |
108 | #endif | |
109 | ||
110 | ||
111 | #if wxUSE_POPUPWIN | |
112 | #include "wx/popupwin.h" | |
113 | #else | |
114 | #undef USE_TRANSIENT_POPUP | |
115 | #define USE_TRANSIENT_POPUP 0 | |
116 | #endif | |
117 | ||
118 | ||
06077aaf VZ |
119 | // Define different types of popup windows |
120 | enum | |
121 | { | |
122 | POPUPWIN_NONE = 0, | |
123 | POPUPWIN_WXPOPUPTRANSIENTWINDOW = 1, | |
124 | POPUPWIN_WXPOPUPWINDOW = 2, | |
125 | POPUPWIN_WXDIALOG = 3 | |
126 | }; | |
a340b80d | 127 | |
06077aaf VZ |
128 | |
129 | #if USE_TRANSIENT_POPUP | |
130 | // wxPopupTransientWindow is implemented | |
131 | ||
132 | #define wxComboPopupWindowBase wxPopupTransientWindow | |
133 | #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPTRANSIENTWINDOW | |
134 | #define USES_WXPOPUPTRANSIENTWINDOW 1 | |
135 | ||
136 | #if TRANSIENT_POPUPWIN_IS_PERFECT | |
137 | // | |
138 | #elif POPUPWIN_IS_PERFECT | |
139 | #define wxComboPopupWindowBase2 wxPopupWindow | |
140 | #define SECONDARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW | |
141 | #define USES_WXPOPUPWINDOW 1 | |
142 | #else | |
143 | #define wxComboPopupWindowBase2 wxDialog | |
144 | #define SECONDARY_POPUP_TYPE POPUPWIN_WXDIALOG | |
145 | #define USES_WXDIALOG 1 | |
146 | #endif | |
a340b80d VZ |
147 | |
148 | #elif wxUSE_POPUPWIN | |
06077aaf | 149 | // wxPopupWindow (but not wxPopupTransientWindow) is properly implemented |
a340b80d | 150 | |
06077aaf VZ |
151 | #define wxComboPopupWindowBase wxPopupWindow |
152 | #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW | |
153 | #define USES_WXPOPUPWINDOW 1 | |
154 | ||
155 | #if !POPUPWIN_IS_PERFECT | |
156 | #define wxComboPopupWindowBase2 wxDialog | |
157 | #define SECONDARY_POPUP_TYPE POPUPWIN_WXDIALOG | |
158 | #define USES_WXDIALOG 1 | |
159 | #endif | |
a340b80d VZ |
160 | |
161 | #else | |
06077aaf VZ |
162 | // wxPopupWindow is not implemented |
163 | ||
164 | #define wxComboPopupWindowBase wxDialog | |
165 | #define PRIMARY_POPUP_TYPE POPUPWIN_WXDIALOG | |
166 | #define USES_WXDIALOG 1 | |
167 | ||
168 | #endif | |
169 | ||
170 | ||
171 | #ifndef USES_WXPOPUPTRANSIENTWINDOW | |
172 | #define USES_WXPOPUPTRANSIENTWINDOW 0 | |
173 | #endif | |
a340b80d | 174 | |
06077aaf VZ |
175 | #ifndef USES_WXPOPUPWINDOW |
176 | #define USES_WXPOPUPWINDOW 0 | |
177 | #endif | |
a340b80d | 178 | |
06077aaf VZ |
179 | #ifndef USES_WXDIALOG |
180 | #define USES_WXDIALOG 0 | |
a340b80d VZ |
181 | #endif |
182 | ||
183 | ||
06077aaf VZ |
184 | #if USES_WXPOPUPWINDOW |
185 | #define INSTALL_TOPLEV_HANDLER 1 | |
186 | #else | |
187 | #define INSTALL_TOPLEV_HANDLER 0 | |
188 | #endif | |
189 | ||
a340b80d VZ |
190 | |
191 | // | |
192 | // ** TODO ** | |
193 | // * wxComboPopupWindow for external use (ie. replace old wxUniv wxPopupComboWindow) | |
194 | // | |
195 | ||
196 | ||
197 | // ---------------------------------------------------------------------------- | |
198 | // wxComboFrameEventHandler takes care of hiding the popup when events happen | |
199 | // in its top level parent. | |
200 | // ---------------------------------------------------------------------------- | |
201 | ||
202 | #if INSTALL_TOPLEV_HANDLER | |
203 | ||
204 | // | |
205 | // This will no longer be necessary after wxTransientPopupWindow | |
206 | // works well on all platforms. | |
207 | // | |
208 | ||
209 | class wxComboFrameEventHandler : public wxEvtHandler | |
210 | { | |
211 | public: | |
a57d600f | 212 | wxComboFrameEventHandler( wxComboCtrlBase* pCb ); |
d3c7fc99 | 213 | virtual ~wxComboFrameEventHandler(); |
a340b80d VZ |
214 | |
215 | void OnPopup(); | |
216 | ||
217 | void OnIdle( wxIdleEvent& event ); | |
218 | void OnMouseEvent( wxMouseEvent& event ); | |
219 | void OnActivate( wxActivateEvent& event ); | |
220 | void OnResize( wxSizeEvent& event ); | |
221 | void OnMove( wxMoveEvent& event ); | |
222 | void OnMenuEvent( wxMenuEvent& event ); | |
223 | void OnClose( wxCloseEvent& event ); | |
224 | ||
225 | protected: | |
226 | wxWindow* m_focusStart; | |
a57d600f | 227 | wxComboCtrlBase* m_combo; |
a340b80d VZ |
228 | |
229 | private: | |
230 | DECLARE_EVENT_TABLE() | |
231 | }; | |
232 | ||
233 | BEGIN_EVENT_TABLE(wxComboFrameEventHandler, wxEvtHandler) | |
234 | EVT_IDLE(wxComboFrameEventHandler::OnIdle) | |
235 | EVT_LEFT_DOWN(wxComboFrameEventHandler::OnMouseEvent) | |
236 | EVT_RIGHT_DOWN(wxComboFrameEventHandler::OnMouseEvent) | |
237 | EVT_SIZE(wxComboFrameEventHandler::OnResize) | |
238 | EVT_MOVE(wxComboFrameEventHandler::OnMove) | |
239 | EVT_MENU_HIGHLIGHT(wxID_ANY,wxComboFrameEventHandler::OnMenuEvent) | |
240 | EVT_MENU_OPEN(wxComboFrameEventHandler::OnMenuEvent) | |
241 | EVT_ACTIVATE(wxComboFrameEventHandler::OnActivate) | |
242 | EVT_CLOSE(wxComboFrameEventHandler::OnClose) | |
243 | END_EVENT_TABLE() | |
244 | ||
a57d600f | 245 | wxComboFrameEventHandler::wxComboFrameEventHandler( wxComboCtrlBase* combo ) |
a340b80d VZ |
246 | : wxEvtHandler() |
247 | { | |
248 | m_combo = combo; | |
249 | } | |
250 | ||
251 | wxComboFrameEventHandler::~wxComboFrameEventHandler() | |
252 | { | |
253 | } | |
254 | ||
255 | void wxComboFrameEventHandler::OnPopup() | |
256 | { | |
257 | m_focusStart = ::wxWindow::FindFocus(); | |
258 | } | |
259 | ||
260 | void wxComboFrameEventHandler::OnIdle( wxIdleEvent& event ) | |
261 | { | |
262 | wxWindow* winFocused = ::wxWindow::FindFocus(); | |
263 | ||
c667b518 | 264 | wxWindow* popup = m_combo->GetPopupControl()->GetControl(); |
a340b80d VZ |
265 | wxWindow* winpopup = m_combo->GetPopupWindow(); |
266 | ||
267 | if ( | |
268 | winFocused != m_focusStart && | |
269 | winFocused != popup && | |
270 | winFocused->GetParent() != popup && | |
271 | winFocused != winpopup && | |
272 | winFocused->GetParent() != winpopup && | |
273 | winFocused != m_combo && | |
274 | winFocused != m_combo->GetButton() // GTK (atleast) requires this | |
275 | ) | |
276 | { | |
277 | m_combo->HidePopup(); | |
278 | } | |
279 | ||
280 | event.Skip(); | |
281 | } | |
282 | ||
283 | void wxComboFrameEventHandler::OnMenuEvent( wxMenuEvent& event ) | |
284 | { | |
285 | m_combo->HidePopup(); | |
286 | event.Skip(); | |
287 | } | |
288 | ||
289 | void wxComboFrameEventHandler::OnMouseEvent( wxMouseEvent& event ) | |
290 | { | |
291 | m_combo->HidePopup(); | |
292 | event.Skip(); | |
293 | } | |
294 | ||
295 | void wxComboFrameEventHandler::OnClose( wxCloseEvent& event ) | |
296 | { | |
297 | m_combo->HidePopup(); | |
298 | event.Skip(); | |
299 | } | |
300 | ||
301 | void wxComboFrameEventHandler::OnActivate( wxActivateEvent& event ) | |
302 | { | |
303 | m_combo->HidePopup(); | |
304 | event.Skip(); | |
305 | } | |
306 | ||
307 | void wxComboFrameEventHandler::OnResize( wxSizeEvent& event ) | |
308 | { | |
309 | m_combo->HidePopup(); | |
310 | event.Skip(); | |
311 | } | |
312 | ||
313 | void wxComboFrameEventHandler::OnMove( wxMoveEvent& event ) | |
314 | { | |
315 | m_combo->HidePopup(); | |
316 | event.Skip(); | |
317 | } | |
318 | ||
319 | #endif // INSTALL_TOPLEV_HANDLER | |
320 | ||
321 | // ---------------------------------------------------------------------------- | |
06077aaf | 322 | // wxComboPopupWindow is, in essence, wxPopupWindow customized for |
a57d600f | 323 | // wxComboCtrl. |
a340b80d VZ |
324 | // ---------------------------------------------------------------------------- |
325 | ||
326 | class wxComboPopupWindow : public wxComboPopupWindowBase | |
327 | { | |
328 | public: | |
329 | ||
06077aaf VZ |
330 | wxComboPopupWindow( wxComboCtrlBase *parent, |
331 | int style ) | |
332 | #if USES_WXPOPUPWINDOW || USES_WXPOPUPTRANSIENTWINDOW | |
333 | : wxComboPopupWindowBase(parent,style) | |
334 | #else | |
335 | : wxComboPopupWindowBase(parent, | |
336 | wxID_ANY, | |
337 | wxEmptyString, | |
338 | wxPoint(-21,-21), | |
339 | wxSize(20,20), | |
340 | style) | |
341 | #endif | |
342 | { | |
974a12f8 | 343 | m_inShow = 0; |
06077aaf | 344 | } |
a340b80d | 345 | |
06077aaf | 346 | #if USES_WXPOPUPTRANSIENTWINDOW |
974a12f8 | 347 | virtual bool Show( bool show ); |
a340b80d | 348 | virtual bool ProcessLeftDown(wxMouseEvent& event); |
06077aaf | 349 | virtual void OnDismiss(); |
a340b80d VZ |
350 | #endif |
351 | ||
974a12f8 RR |
352 | private: |
353 | wxByte m_inShow; | |
06077aaf | 354 | }; |
a340b80d | 355 | |
a340b80d | 356 | |
06077aaf | 357 | #if USES_WXPOPUPTRANSIENTWINDOW |
974a12f8 | 358 | bool wxComboPopupWindow::Show( bool show ) |
06077aaf | 359 | { |
974a12f8 RR |
360 | // Guard against recursion |
361 | if ( m_inShow ) | |
362 | return wxComboPopupWindowBase::Show(show); | |
363 | ||
364 | m_inShow++; | |
365 | ||
366 | wxASSERT( IsKindOf(CLASSINFO(wxPopupTransientWindow)) ); | |
367 | ||
368 | wxPopupTransientWindow* ptw = (wxPopupTransientWindow*) this; | |
369 | wxComboCtrlBase* combo = (wxComboCtrlBase*) GetParent(); | |
370 | ||
371 | if ( show != ptw->IsShown() ) | |
372 | { | |
373 | if ( show ) | |
374 | ptw->Popup(combo->GetPopupControl()->GetControl()); | |
375 | else | |
376 | ptw->Dismiss(); | |
377 | } | |
378 | ||
379 | m_inShow--; | |
380 | ||
381 | return true; | |
382 | } | |
383 | ||
384 | bool wxComboPopupWindow::ProcessLeftDown(wxMouseEvent& event) | |
385 | { | |
386 | return wxPopupTransientWindow::ProcessLeftDown(event); | |
06077aaf | 387 | } |
a340b80d | 388 | |
06077aaf VZ |
389 | // First thing that happens when a transient popup closes is that this method gets called. |
390 | void wxComboPopupWindow::OnDismiss() | |
391 | { | |
392 | wxComboCtrlBase* combo = (wxComboCtrlBase*) GetParent(); | |
393 | wxASSERT_MSG( combo->IsKindOf(CLASSINFO(wxComboCtrlBase)), | |
394 | wxT("parent might not be wxComboCtrl, but check IMPLEMENT_DYNAMIC_CLASS(2) macro for correctness") ); | |
395 | ||
396 | combo->OnPopupDismiss(); | |
397 | } | |
398 | #endif // USES_WXPOPUPTRANSIENTWINDOW | |
399 | ||
400 | ||
401 | // ---------------------------------------------------------------------------- | |
402 | // wxComboPopupWindowEvtHandler does bulk of the custom event handling | |
403 | // of a popup window. It is separate so we can have different types | |
404 | // of popup windows. | |
405 | // ---------------------------------------------------------------------------- | |
406 | ||
407 | class wxComboPopupWindowEvtHandler : public wxEvtHandler | |
408 | { | |
409 | public: | |
410 | ||
411 | wxComboPopupWindowEvtHandler( wxComboCtrlBase *parent ) | |
412 | { | |
413 | m_combo = parent; | |
414 | } | |
415 | ||
974a12f8 | 416 | void OnSizeEvent( wxSizeEvent& event ); |
06077aaf VZ |
417 | void OnKeyEvent(wxKeyEvent& event); |
418 | #if USES_WXDIALOG | |
419 | void OnActivate( wxActivateEvent& event ); | |
a340b80d VZ |
420 | #endif |
421 | ||
422 | private: | |
06077aaf VZ |
423 | wxComboCtrlBase* m_combo; |
424 | ||
a340b80d VZ |
425 | DECLARE_EVENT_TABLE() |
426 | }; | |
427 | ||
428 | ||
06077aaf VZ |
429 | BEGIN_EVENT_TABLE(wxComboPopupWindowEvtHandler, wxEvtHandler) |
430 | EVT_KEY_DOWN(wxComboPopupWindowEvtHandler::OnKeyEvent) | |
431 | EVT_KEY_UP(wxComboPopupWindowEvtHandler::OnKeyEvent) | |
432 | #if USES_WXDIALOG | |
433 | EVT_ACTIVATE(wxComboPopupWindowEvtHandler::OnActivate) | |
a340b80d | 434 | #endif |
974a12f8 | 435 | EVT_SIZE(wxComboPopupWindowEvtHandler::OnSizeEvent) |
a340b80d VZ |
436 | END_EVENT_TABLE() |
437 | ||
438 | ||
974a12f8 RR |
439 | void wxComboPopupWindowEvtHandler::OnSizeEvent( wxSizeEvent& WXUNUSED(event) ) |
440 | { | |
441 | // Block the event so that the popup control does not get auto-resized. | |
442 | } | |
443 | ||
06077aaf | 444 | void wxComboPopupWindowEvtHandler::OnKeyEvent( wxKeyEvent& event ) |
a340b80d VZ |
445 | { |
446 | // Relay keyboard event to the main child controls | |
06077aaf | 447 | wxWindowList children = m_combo->GetPopupWindow()->GetChildren(); |
a340b80d VZ |
448 | wxWindowList::iterator node = children.begin(); |
449 | wxWindow* child = (wxWindow*)*node; | |
450 | child->AddPendingEvent(event); | |
451 | } | |
452 | ||
06077aaf VZ |
453 | #if USES_WXDIALOG |
454 | void wxComboPopupWindowEvtHandler::OnActivate( wxActivateEvent& event ) | |
a340b80d VZ |
455 | { |
456 | if ( !event.GetActive() ) | |
457 | { | |
458 | // Tell combo control that we are dismissed. | |
06077aaf | 459 | m_combo->HidePopup(); |
a340b80d VZ |
460 | |
461 | event.Skip(); | |
462 | } | |
463 | } | |
464 | #endif | |
465 | ||
a340b80d VZ |
466 | |
467 | // ---------------------------------------------------------------------------- | |
468 | // wxComboPopup | |
469 | // | |
470 | // ---------------------------------------------------------------------------- | |
471 | ||
472 | wxComboPopup::~wxComboPopup() | |
473 | { | |
474 | } | |
475 | ||
476 | void wxComboPopup::OnPopup() | |
477 | { | |
478 | } | |
479 | ||
480 | void wxComboPopup::OnDismiss() | |
481 | { | |
482 | } | |
483 | ||
484 | wxSize wxComboPopup::GetAdjustedSize( int minWidth, | |
485 | int prefHeight, | |
486 | int WXUNUSED(maxHeight) ) | |
487 | { | |
488 | return wxSize(minWidth,prefHeight); | |
489 | } | |
490 | ||
a57d600f | 491 | void wxComboPopup::DefaultPaintComboControl( wxComboCtrlBase* combo, |
6d0ce565 | 492 | wxDC& dc, const wxRect& rect ) |
a340b80d | 493 | { |
6d0ce565 | 494 | if ( combo->GetWindowStyle() & wxCB_READONLY ) // ie. no textctrl |
a340b80d | 495 | { |
118f5fbd | 496 | combo->PrepareBackground(dc,rect,0); |
a340b80d | 497 | |
6d0ce565 VZ |
498 | dc.DrawText( combo->GetValue(), |
499 | rect.x + combo->GetTextIndent(), | |
500 | (rect.height-dc.GetCharHeight())/2 + rect.y ); | |
a340b80d VZ |
501 | } |
502 | } | |
503 | ||
6d0ce565 VZ |
504 | void wxComboPopup::PaintComboControl( wxDC& dc, const wxRect& rect ) |
505 | { | |
506 | DefaultPaintComboControl(m_combo,dc,rect); | |
507 | } | |
508 | ||
a340b80d VZ |
509 | void wxComboPopup::OnComboKeyEvent( wxKeyEvent& event ) |
510 | { | |
511 | event.Skip(); | |
512 | } | |
513 | ||
514 | void wxComboPopup::OnComboDoubleClick() | |
515 | { | |
516 | } | |
517 | ||
518 | void wxComboPopup::SetStringValue( const wxString& WXUNUSED(value) ) | |
519 | { | |
520 | } | |
521 | ||
522 | bool wxComboPopup::LazyCreate() | |
523 | { | |
524 | return false; | |
525 | } | |
526 | ||
527 | void wxComboPopup::Dismiss() | |
528 | { | |
529 | m_combo->HidePopup(); | |
530 | } | |
531 | ||
532 | // ---------------------------------------------------------------------------- | |
533 | // input handling | |
534 | // ---------------------------------------------------------------------------- | |
535 | ||
536 | // | |
b445b6a7 | 537 | // This is pushed to the event handler queue of the child textctrl. |
a340b80d VZ |
538 | // |
539 | class wxComboBoxExtraInputHandler : public wxEvtHandler | |
540 | { | |
541 | public: | |
542 | ||
a57d600f | 543 | wxComboBoxExtraInputHandler( wxComboCtrlBase* combo ) |
a340b80d VZ |
544 | : wxEvtHandler() |
545 | { | |
546 | m_combo = combo; | |
547 | } | |
d3c7fc99 | 548 | virtual ~wxComboBoxExtraInputHandler() { } |
a340b80d VZ |
549 | void OnKey(wxKeyEvent& event); |
550 | void OnFocus(wxFocusEvent& event); | |
551 | ||
552 | protected: | |
a57d600f | 553 | wxComboCtrlBase* m_combo; |
a340b80d VZ |
554 | |
555 | private: | |
556 | DECLARE_EVENT_TABLE() | |
557 | }; | |
558 | ||
559 | ||
560 | BEGIN_EVENT_TABLE(wxComboBoxExtraInputHandler, wxEvtHandler) | |
561 | EVT_KEY_DOWN(wxComboBoxExtraInputHandler::OnKey) | |
562 | EVT_SET_FOCUS(wxComboBoxExtraInputHandler::OnFocus) | |
563 | END_EVENT_TABLE() | |
564 | ||
565 | ||
566 | void wxComboBoxExtraInputHandler::OnKey(wxKeyEvent& event) | |
567 | { | |
b445b6a7 VZ |
568 | // Let the wxComboCtrl event handler have a go first. |
569 | wxComboCtrlBase* combo = m_combo; | |
570 | wxObject* prevObj = event.GetEventObject(); | |
a340b80d | 571 | |
b445b6a7 VZ |
572 | event.SetId(combo->GetId()); |
573 | event.SetEventObject(combo); | |
574 | combo->GetEventHandler()->ProcessEvent(event); | |
a340b80d | 575 | |
b445b6a7 VZ |
576 | event.SetId(((wxWindow*)prevObj)->GetId()); |
577 | event.SetEventObject(prevObj); | |
a340b80d VZ |
578 | } |
579 | ||
a340b80d VZ |
580 | void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent& event) |
581 | { | |
582 | // FIXME: This code does run when control is clicked, | |
583 | // yet on Windows it doesn't select all the text. | |
584 | if ( !(m_combo->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT) ) | |
585 | { | |
586 | if ( m_combo->GetTextCtrl() ) | |
587 | m_combo->GetTextCtrl()->SelectAll(); | |
588 | else | |
589 | m_combo->SetSelection(-1,-1); | |
590 | } | |
591 | ||
b445b6a7 VZ |
592 | // Send focus indication to parent. |
593 | // NB: This is needed for cases where the textctrl gets focus | |
594 | // instead of its parent. While this may trigger multiple | |
595 | // wxEVT_SET_FOCUSes (since m_text->SetFocus is called | |
596 | // from combo's focus event handler), they should be quite | |
597 | // harmless. | |
598 | wxFocusEvent evt2(wxEVT_SET_FOCUS,m_combo->GetId()); | |
599 | evt2.SetEventObject(m_combo); | |
600 | m_combo->GetEventHandler()->ProcessEvent(evt2); | |
6d0ce565 | 601 | |
a340b80d VZ |
602 | event.Skip(); |
603 | } | |
604 | ||
605 | ||
606 | // | |
607 | // This is pushed to the event handler queue of the control in popup. | |
608 | // | |
609 | ||
610 | class wxComboPopupExtraEventHandler : public wxEvtHandler | |
611 | { | |
612 | public: | |
613 | ||
a57d600f | 614 | wxComboPopupExtraEventHandler( wxComboCtrlBase* combo ) |
a340b80d VZ |
615 | : wxEvtHandler() |
616 | { | |
617 | m_combo = combo; | |
618 | m_beenInside = false; | |
619 | } | |
d3c7fc99 | 620 | virtual ~wxComboPopupExtraEventHandler() { } |
a340b80d VZ |
621 | |
622 | void OnMouseEvent( wxMouseEvent& event ); | |
623 | ||
a57d600f | 624 | // Called from wxComboCtrlBase::OnPopupDismiss |
a340b80d VZ |
625 | void OnPopupDismiss() |
626 | { | |
627 | m_beenInside = false; | |
628 | } | |
629 | ||
630 | protected: | |
a57d600f | 631 | wxComboCtrlBase* m_combo; |
a340b80d | 632 | |
6d0ce565 | 633 | bool m_beenInside; |
a340b80d VZ |
634 | |
635 | private: | |
636 | DECLARE_EVENT_TABLE() | |
637 | }; | |
638 | ||
639 | ||
640 | BEGIN_EVENT_TABLE(wxComboPopupExtraEventHandler, wxEvtHandler) | |
641 | EVT_MOUSE_EVENTS(wxComboPopupExtraEventHandler::OnMouseEvent) | |
642 | END_EVENT_TABLE() | |
643 | ||
644 | ||
645 | void wxComboPopupExtraEventHandler::OnMouseEvent( wxMouseEvent& event ) | |
646 | { | |
647 | wxPoint pt = event.GetPosition(); | |
6d0ce565 | 648 | wxSize sz = m_combo->GetPopupControl()->GetControl()->GetClientSize(); |
a340b80d VZ |
649 | int evtType = event.GetEventType(); |
650 | bool isInside = pt.x >= 0 && pt.y >= 0 && pt.x < sz.x && pt.y < sz.y; | |
651 | ||
652 | if ( evtType == wxEVT_MOTION || | |
653 | evtType == wxEVT_LEFT_DOWN || | |
654 | evtType == wxEVT_RIGHT_DOWN ) | |
655 | { | |
656 | // Block motion and click events outside the popup | |
974a12f8 | 657 | if ( !isInside || !m_combo->IsPopupShown() ) |
a340b80d VZ |
658 | { |
659 | event.Skip(false); | |
660 | return; | |
661 | } | |
662 | } | |
663 | else if ( evtType == wxEVT_LEFT_UP ) | |
664 | { | |
974a12f8 | 665 | if ( !m_combo->IsPopupShown() ) |
a340b80d | 666 | { |
974a12f8 RR |
667 | event.Skip(false); |
668 | return; | |
a340b80d VZ |
669 | } |
670 | ||
671 | if ( !m_beenInside ) | |
672 | { | |
673 | if ( isInside ) | |
674 | { | |
675 | m_beenInside = true; | |
676 | } | |
677 | else | |
678 | { | |
679 | // | |
680 | // Some mouse events to popup that happen outside it, before cursor | |
681 | // has been inside the popu, need to be ignored by it but relayed to | |
682 | // the dropbutton. | |
683 | // | |
684 | wxWindow* btn = m_combo->GetButton(); | |
685 | if ( btn ) | |
686 | btn->GetEventHandler()->AddPendingEvent(event); | |
687 | else | |
688 | m_combo->GetEventHandler()->AddPendingEvent(event); | |
689 | ||
690 | return; | |
691 | } | |
692 | ||
693 | event.Skip(); | |
694 | } | |
695 | } | |
696 | ||
697 | event.Skip(); | |
698 | } | |
699 | ||
700 | // ---------------------------------------------------------------------------- | |
a57d600f | 701 | // wxComboCtrlBase |
a340b80d VZ |
702 | // ---------------------------------------------------------------------------- |
703 | ||
704 | ||
a57d600f VZ |
705 | BEGIN_EVENT_TABLE(wxComboCtrlBase, wxControl) |
706 | EVT_TEXT(wxID_ANY,wxComboCtrlBase::OnTextCtrlEvent) | |
707 | EVT_SIZE(wxComboCtrlBase::OnSizeEvent) | |
708 | EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent) | |
709 | EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent) | |
710 | //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent) | |
b445b6a7 | 711 | EVT_KEY_DOWN(wxComboCtrlBase::OnKeyEvent) |
a57d600f VZ |
712 | EVT_TEXT_ENTER(wxID_ANY,wxComboCtrlBase::OnTextCtrlEvent) |
713 | EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged) | |
a340b80d VZ |
714 | END_EVENT_TABLE() |
715 | ||
716 | ||
a57d600f | 717 | IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase, wxControl) |
a340b80d | 718 | |
a57d600f | 719 | void wxComboCtrlBase::Init() |
a340b80d VZ |
720 | { |
721 | m_winPopup = (wxWindow *)NULL; | |
722 | m_popup = (wxWindow *)NULL; | |
974a12f8 | 723 | m_popupWinState = Hidden; |
a340b80d VZ |
724 | m_btn = (wxWindow*) NULL; |
725 | m_text = (wxTextCtrl*) NULL; | |
726 | m_popupInterface = (wxComboPopup*) NULL; | |
727 | ||
a340b80d VZ |
728 | m_popupExtraHandler = (wxEvtHandler*) NULL; |
729 | m_textEvtHandler = (wxEvtHandler*) NULL; | |
730 | ||
731 | #if INSTALL_TOPLEV_HANDLER | |
732 | m_toplevEvtHandler = (wxEvtHandler*) NULL; | |
733 | #endif | |
734 | ||
4427c0a3 RR |
735 | m_mainCtrlWnd = this; |
736 | ||
a340b80d VZ |
737 | m_heightPopup = -1; |
738 | m_widthMinPopup = -1; | |
739 | m_anchorSide = 0; | |
740 | m_widthCustomPaint = 0; | |
741 | m_widthCustomBorder = 0; | |
742 | ||
743 | m_btnState = 0; | |
744 | m_btnWidDefault = 0; | |
745 | m_blankButtonBg = false; | |
ce968519 | 746 | m_ignoreEvtText = 0; |
06077aaf | 747 | m_popupWinType = POPUPWIN_NONE; |
7dc234d6 | 748 | m_btnWid = m_btnHei = -1; |
a340b80d VZ |
749 | m_btnSide = wxRIGHT; |
750 | m_btnSpacingX = 0; | |
751 | ||
752 | m_extLeft = 0; | |
753 | m_extRight = 0; | |
754 | m_absIndent = -1; | |
755 | m_iFlags = 0; | |
a340b80d VZ |
756 | m_timeCanAcceptClick = 0; |
757 | } | |
758 | ||
a57d600f | 759 | bool wxComboCtrlBase::Create(wxWindow *parent, |
b61f4f77 WS |
760 | wxWindowID id, |
761 | const wxString& value, | |
762 | const wxPoint& pos, | |
763 | const wxSize& size, | |
764 | long style, | |
765 | const wxValidator& validator, | |
766 | const wxString& name) | |
a340b80d VZ |
767 | { |
768 | if ( !wxControl::Create(parent, | |
769 | id, | |
770 | pos, | |
771 | size, | |
772 | style | wxWANTS_CHARS, | |
773 | validator, | |
774 | name) ) | |
775 | return false; | |
776 | ||
777 | m_valueString = value; | |
778 | ||
779 | // Get colours | |
780 | OnThemeChange(); | |
781 | m_absIndent = GetNativeTextIndent(); | |
782 | ||
a9e8bf2d WS |
783 | m_iFlags |= wxCC_IFLAG_CREATED; |
784 | ||
785 | // If x and y indicate valid size, wxSizeEvent won't be | |
786 | // emitted automatically, so we need to add artifical one. | |
787 | if ( size.x > 0 && size.y > 0 ) | |
788 | { | |
789 | wxSizeEvent evt(size,GetId()); | |
790 | GetEventHandler()->AddPendingEvent(evt); | |
791 | } | |
792 | ||
a340b80d VZ |
793 | return true; |
794 | } | |
795 | ||
b445b6a7 | 796 | void wxComboCtrlBase::InstallInputHandlers() |
a340b80d | 797 | { |
b445b6a7 | 798 | if ( m_text ) |
a340b80d VZ |
799 | { |
800 | m_textEvtHandler = new wxComboBoxExtraInputHandler(this); | |
801 | m_text->PushEventHandler(m_textEvtHandler); | |
802 | } | |
a340b80d VZ |
803 | } |
804 | ||
42a3ecf5 VZ |
805 | void |
806 | wxComboCtrlBase::CreateTextCtrl(int style, const wxValidator& validator) | |
a340b80d VZ |
807 | { |
808 | if ( !(m_windowStyle & wxCB_READONLY) ) | |
809 | { | |
8e9ec723 RR |
810 | if ( m_text ) |
811 | m_text->Destroy(); | |
812 | ||
42a3ecf5 VZ |
813 | // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is |
814 | // not used by the wxPropertyGrid and therefore the tab is processed by | |
815 | // looking at ancestors to see if they have wxTAB_TRAVERSAL. The | |
816 | // navigation event is then sent to the wrong window. | |
817 | style |= wxTE_PROCESS_TAB; | |
818 | ||
5d95cab8 | 819 | if ( HasFlag(wxTE_PROCESS_ENTER) ) |
42a3ecf5 VZ |
820 | style |= wxTE_PROCESS_ENTER; |
821 | ||
ce968519 RR |
822 | // Ignore EVT_TEXT generated by the constructor (but only |
823 | // if the event redirector already exists) | |
824 | // NB: This must be " = 1" instead of "++"; | |
825 | if ( m_textEvtHandler ) | |
826 | m_ignoreEvtText = 1; | |
827 | else | |
828 | m_ignoreEvtText = 0; | |
829 | ||
42a3ecf5 VZ |
830 | m_text = new wxTextCtrl(this, wxID_ANY, m_valueString, |
831 | wxDefaultPosition, wxDefaultSize, | |
832 | style, validator); | |
a340b80d VZ |
833 | |
834 | // This is required for some platforms (GTK+ atleast) | |
835 | m_text->SetSizeHints(2,4); | |
836 | } | |
837 | } | |
838 | ||
a57d600f | 839 | void wxComboCtrlBase::OnThemeChange() |
a340b80d | 840 | { |
f3dcd967 | 841 | SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
a340b80d VZ |
842 | } |
843 | ||
a57d600f | 844 | wxComboCtrlBase::~wxComboCtrlBase() |
a340b80d VZ |
845 | { |
846 | if ( HasCapture() ) | |
847 | ReleaseMouse(); | |
848 | ||
a340b80d VZ |
849 | #if INSTALL_TOPLEV_HANDLER |
850 | delete ((wxComboFrameEventHandler*)m_toplevEvtHandler); | |
851 | m_toplevEvtHandler = (wxEvtHandler*) NULL; | |
852 | #endif | |
853 | ||
7ca4ac63 | 854 | DestroyPopup(); |
a340b80d | 855 | |
a340b80d VZ |
856 | if ( m_text ) |
857 | m_text->RemoveEventHandler(m_textEvtHandler); | |
858 | ||
859 | delete m_textEvtHandler; | |
a340b80d VZ |
860 | } |
861 | ||
862 | ||
863 | // ---------------------------------------------------------------------------- | |
864 | // geometry stuff | |
865 | // ---------------------------------------------------------------------------- | |
866 | ||
867 | // Recalculates button and textctrl areas | |
a57d600f | 868 | void wxComboCtrlBase::CalculateAreas( int btnWidth ) |
a340b80d VZ |
869 | { |
870 | wxSize sz = GetClientSize(); | |
871 | int customBorder = m_widthCustomBorder; | |
a340b80d VZ |
872 | int btnBorder; // border for button only |
873 | ||
87419e97 VZ |
874 | // check if button should really be outside the border: we'll do it it if |
875 | // its platform default or bitmap+pushbutton background is used, but not if | |
876 | // there is vertical size adjustment or horizontal spacing. | |
877 | if ( ( (m_iFlags & wxCC_BUTTON_OUTSIDE_BORDER) || | |
878 | (m_bmpNormal.Ok() && m_blankButtonBg) ) && | |
879 | m_btnSpacingX == 0 && | |
7dc234d6 | 880 | m_btnHei <= 0 ) |
a340b80d | 881 | { |
a340b80d VZ |
882 | m_iFlags |= wxCC_IFLAG_BUTTON_OUTSIDE; |
883 | btnBorder = 0; | |
884 | } | |
885 | else | |
886 | { | |
a340b80d VZ |
887 | m_iFlags &= ~(wxCC_IFLAG_BUTTON_OUTSIDE); |
888 | btnBorder = customBorder; | |
889 | } | |
890 | ||
891 | // Defaul indentation | |
892 | if ( m_absIndent < 0 ) | |
893 | m_absIndent = GetNativeTextIndent(); | |
894 | ||
895 | int butWidth = btnWidth; | |
896 | ||
897 | if ( butWidth <= 0 ) | |
898 | butWidth = m_btnWidDefault; | |
899 | else | |
900 | m_btnWidDefault = butWidth; | |
901 | ||
902 | if ( butWidth <= 0 ) | |
903 | return; | |
904 | ||
a9e8bf2d WS |
905 | int butHeight = sz.y - btnBorder*2; |
906 | ||
a340b80d | 907 | // Adjust button width |
7dc234d6 | 908 | if ( m_btnWid > 0 ) |
a340b80d | 909 | butWidth = m_btnWid; |
a9e8bf2d WS |
910 | else |
911 | { | |
912 | // Adjust button width to match aspect ratio | |
913 | // (but only if control is smaller than best size). | |
914 | int bestHeight = GetBestSize().y; | |
915 | int height = GetSize().y; | |
a340b80d | 916 | |
a9e8bf2d WS |
917 | if ( height < bestHeight ) |
918 | { | |
919 | // Make very small buttons square, as it makes | |
920 | // them accommodate arrow image better and still | |
921 | // looks decent. | |
922 | if ( height > 18 ) | |
923 | butWidth = (height*butWidth)/bestHeight; | |
924 | else | |
925 | butWidth = butHeight; | |
926 | } | |
927 | } | |
a340b80d VZ |
928 | |
929 | // Adjust button height | |
7dc234d6 | 930 | if ( m_btnHei > 0 ) |
a340b80d VZ |
931 | butHeight = m_btnHei; |
932 | ||
933 | // Use size of normal bitmap if... | |
934 | // It is larger | |
935 | // OR | |
936 | // button width is set to default and blank button bg is not drawn | |
937 | if ( m_bmpNormal.Ok() ) | |
938 | { | |
939 | int bmpReqWidth = m_bmpNormal.GetWidth(); | |
940 | int bmpReqHeight = m_bmpNormal.GetHeight(); | |
941 | ||
942 | // If drawing blank button background, we need to add some margin. | |
943 | if ( m_blankButtonBg ) | |
944 | { | |
945 | bmpReqWidth += BMP_BUTTON_MARGIN*2; | |
946 | bmpReqHeight += BMP_BUTTON_MARGIN*2; | |
947 | } | |
948 | ||
949 | if ( butWidth < bmpReqWidth || ( m_btnWid == 0 && !m_blankButtonBg ) ) | |
950 | butWidth = bmpReqWidth; | |
951 | if ( butHeight < bmpReqHeight || ( m_btnHei == 0 && !m_blankButtonBg ) ) | |
952 | butHeight = bmpReqHeight; | |
953 | ||
954 | // Need to fix height? | |
955 | if ( (sz.y-(customBorder*2)) < butHeight && btnWidth == 0 ) | |
956 | { | |
957 | int newY = butHeight+(customBorder*2); | |
a5bbd1cc | 958 | SetClientSize(wxDefaultCoord,newY); |
a340b80d VZ |
959 | sz.y = newY; |
960 | } | |
961 | } | |
962 | ||
963 | int butAreaWid = butWidth + (m_btnSpacingX*2); | |
964 | ||
965 | m_btnSize.x = butWidth; | |
966 | m_btnSize.y = butHeight; | |
967 | ||
968 | m_btnArea.x = ( m_btnSide==wxRIGHT ? sz.x - butAreaWid - btnBorder : btnBorder ); | |
969 | m_btnArea.y = btnBorder; | |
970 | m_btnArea.width = butAreaWid; | |
971 | m_btnArea.height = sz.y - (btnBorder*2); | |
972 | ||
973 | m_tcArea.x = ( m_btnSide==wxRIGHT ? 0 : butAreaWid ) + customBorder; | |
974 | m_tcArea.y = customBorder; | |
975 | m_tcArea.width = sz.x - butAreaWid - (customBorder*2); | |
976 | m_tcArea.height = sz.y - (customBorder*2); | |
977 | ||
978 | /* | |
979 | if ( m_text ) | |
980 | { | |
981 | ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) + | |
982 | wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height)); | |
983 | } | |
984 | */ | |
985 | } | |
986 | ||
a57d600f | 987 | void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust, int textCtrlYAdjust ) |
a340b80d VZ |
988 | { |
989 | if ( !m_text ) | |
990 | return; | |
991 | ||
992 | wxSize sz = GetClientSize(); | |
993 | int customBorder = m_widthCustomBorder; | |
994 | ||
7e4545b8 | 995 | #if !TEXTCTRL_TEXT_CENTERED |
a340b80d VZ |
996 | if ( (m_text->GetWindowStyleFlag() & wxBORDER_MASK) == wxNO_BORDER ) |
997 | { | |
998 | // Centre textctrl | |
999 | int tcSizeY = m_text->GetBestSize().y; | |
1000 | int diff = sz.y - tcSizeY; | |
1001 | int y = textCtrlYAdjust + (diff/2); | |
1002 | ||
1003 | if ( y < customBorder ) | |
1004 | y = customBorder; | |
1005 | ||
1006 | m_text->SetSize( m_tcArea.x + m_widthCustomPaint + m_absIndent + textCtrlXAdjust, | |
1007 | y, | |
1008 | m_tcArea.width - COMBO_MARGIN - | |
1009 | (textCtrlXAdjust + m_widthCustomPaint + m_absIndent), | |
1010 | -1 ); | |
1011 | ||
1012 | // Make sure textctrl doesn't exceed the bottom custom border | |
1013 | wxSize tsz = m_text->GetSize(); | |
1014 | diff = (y + tsz.y) - (sz.y - customBorder); | |
1015 | if ( diff >= 0 ) | |
1016 | { | |
1017 | tsz.y = tsz.y - diff - 1; | |
1018 | m_text->SetSize(tsz); | |
1019 | } | |
1020 | } | |
1021 | else | |
25bd0d90 WS |
1022 | #else |
1023 | wxUnusedVar(textCtrlXAdjust); | |
1024 | wxUnusedVar(textCtrlYAdjust); | |
7e4545b8 | 1025 | #endif |
a340b80d | 1026 | { |
8e9ec723 | 1027 | // If it has border, have textctrl will the entire text field. |
7e4545b8 RR |
1028 | m_text->SetSize( m_tcArea.x + m_widthCustomPaint, |
1029 | customBorder, | |
8e9ec723 | 1030 | sz.x - m_btnArea.width - m_widthCustomPaint - customBorder, |
7e4545b8 | 1031 | sz.y-(customBorder*2) ); |
a340b80d VZ |
1032 | } |
1033 | } | |
1034 | ||
a57d600f | 1035 | wxSize wxComboCtrlBase::DoGetBestSize() const |
a340b80d VZ |
1036 | { |
1037 | wxSize sizeText(150,0); | |
1038 | ||
1039 | if ( m_text ) | |
1040 | sizeText = m_text->GetBestSize(); | |
1041 | ||
1042 | // TODO: Better method to calculate close-to-native control height. | |
1043 | ||
1044 | int fhei; | |
1045 | if ( m_font.Ok() ) | |
1046 | fhei = (m_font.GetPointSize()*2) + 5; | |
1047 | else if ( wxNORMAL_FONT->Ok() ) | |
1048 | fhei = (wxNORMAL_FONT->GetPointSize()*2) + 5; | |
1049 | else | |
1050 | fhei = sizeText.y + 4; | |
1051 | ||
1052 | // Need to force height to accomodate bitmap? | |
1053 | int btnSizeY = m_btnSize.y; | |
1054 | if ( m_bmpNormal.Ok() && fhei < btnSizeY ) | |
1055 | fhei = btnSizeY; | |
1056 | ||
1057 | // Control height doesn't depend on border | |
1058 | /* | |
1059 | // Add border | |
1060 | int border = m_windowStyle & wxBORDER_MASK; | |
1061 | if ( border == wxSIMPLE_BORDER ) | |
1062 | fhei += 2; | |
1063 | else if ( border == wxNO_BORDER ) | |
1064 | fhei += (m_widthCustomBorder*2); | |
1065 | else | |
1066 | // Sunken etc. | |
1067 | fhei += 4; | |
1068 | */ | |
1069 | ||
1070 | // Final adjustments | |
1071 | #ifdef __WXGTK__ | |
1072 | fhei += 1; | |
1073 | #endif | |
1074 | ||
1075 | wxSize ret(sizeText.x + COMBO_MARGIN + DEFAULT_DROPBUTTON_WIDTH, | |
1076 | fhei); | |
1077 | ||
1078 | CacheBestSize(ret); | |
1079 | return ret; | |
1080 | } | |
1081 | ||
a57d600f | 1082 | void wxComboCtrlBase::OnSizeEvent( wxSizeEvent& event ) |
a340b80d VZ |
1083 | { |
1084 | if ( !IsCreated() ) | |
1085 | return; | |
1086 | ||
a57d600f | 1087 | // defined by actual wxComboCtrls |
a340b80d VZ |
1088 | OnResize(); |
1089 | ||
1090 | event.Skip(); | |
1091 | } | |
1092 | ||
1093 | // ---------------------------------------------------------------------------- | |
1094 | // standard operations | |
1095 | // ---------------------------------------------------------------------------- | |
1096 | ||
a57d600f | 1097 | bool wxComboCtrlBase::Enable(bool enable) |
a340b80d VZ |
1098 | { |
1099 | if ( !wxControl::Enable(enable) ) | |
1100 | return false; | |
1101 | ||
1102 | if ( m_btn ) | |
1103 | m_btn->Enable(enable); | |
1104 | if ( m_text ) | |
1105 | m_text->Enable(enable); | |
1106 | ||
1107 | return true; | |
1108 | } | |
1109 | ||
a57d600f | 1110 | bool wxComboCtrlBase::Show(bool show) |
a340b80d VZ |
1111 | { |
1112 | if ( !wxControl::Show(show) ) | |
1113 | return false; | |
1114 | ||
1115 | if (m_btn) | |
1116 | m_btn->Show(show); | |
1117 | ||
1118 | if (m_text) | |
1119 | m_text->Show(show); | |
1120 | ||
1121 | return true; | |
1122 | } | |
1123 | ||
a57d600f | 1124 | bool wxComboCtrlBase::SetFont ( const wxFont& font ) |
a340b80d VZ |
1125 | { |
1126 | if ( !wxControl::SetFont(font) ) | |
1127 | return false; | |
1128 | ||
1129 | if (m_text) | |
1130 | m_text->SetFont(font); | |
1131 | ||
1132 | return true; | |
1133 | } | |
1134 | ||
1135 | #if wxUSE_TOOLTIPS | |
a57d600f | 1136 | void wxComboCtrlBase::DoSetToolTip(wxToolTip *tooltip) |
a340b80d VZ |
1137 | { |
1138 | wxControl::DoSetToolTip(tooltip); | |
1139 | ||
1140 | // Set tool tip for button and text box | |
1141 | if ( tooltip ) | |
1142 | { | |
1143 | const wxString &tip = tooltip->GetTip(); | |
1144 | if ( m_text ) m_text->SetToolTip(tip); | |
1145 | if ( m_btn ) m_btn->SetToolTip(tip); | |
1146 | } | |
1147 | else | |
1148 | { | |
1149 | if ( m_text ) m_text->SetToolTip( (wxToolTip*) NULL ); | |
1150 | if ( m_btn ) m_btn->SetToolTip( (wxToolTip*) NULL ); | |
1151 | } | |
1152 | } | |
1153 | #endif // wxUSE_TOOLTIPS | |
1154 | ||
1155 | // ---------------------------------------------------------------------------- | |
1156 | // painting | |
1157 | // ---------------------------------------------------------------------------- | |
1158 | ||
118f5fbd RR |
1159 | #if (!defined(__WXMSW__)) || defined(__WXUNIVERSAL__) |
1160 | // prepare combo box background on area in a way typical on platform | |
1161 | void wxComboCtrlBase::PrepareBackground( wxDC& dc, const wxRect& rect, int flags ) const | |
a340b80d VZ |
1162 | { |
1163 | wxSize sz = GetClientSize(); | |
1164 | bool isEnabled; | |
1165 | bool isFocused; // also selected | |
1166 | ||
1167 | // For smaller size control (and for disabled background) use less spacing | |
1168 | int focusSpacingX; | |
1169 | int focusSpacingY; | |
1170 | ||
1171 | if ( !(flags & wxCONTROL_ISSUBMENU) ) | |
1172 | { | |
1173 | // Drawing control | |
1174 | isEnabled = IsEnabled(); | |
1175 | isFocused = ShouldDrawFocus(); | |
1176 | ||
1177 | // Windows-style: for smaller size control (and for disabled background) use less spacing | |
1178 | focusSpacingX = isEnabled ? 2 : 1; | |
1179 | focusSpacingY = sz.y > (GetCharHeight()+2) && isEnabled ? 2 : 1; | |
1180 | } | |
1181 | else | |
1182 | { | |
1183 | // Drawing a list item | |
1184 | isEnabled = true; // they are never disabled | |
1185 | isFocused = flags & wxCONTROL_SELECTED ? true : false; | |
1186 | ||
1187 | focusSpacingX = 0; | |
1188 | focusSpacingY = 0; | |
1189 | } | |
1190 | ||
1191 | // Set the background sub-rectangle for selection, disabled etc | |
1192 | wxRect selRect(rect); | |
1193 | selRect.y += focusSpacingY; | |
1194 | selRect.height -= (focusSpacingY*2); | |
8e5ec129 WS |
1195 | |
1196 | int wcp = 0; | |
1197 | ||
1198 | if ( !(flags & wxCONTROL_ISSUBMENU) ) | |
1199 | wcp += m_widthCustomPaint; | |
1200 | ||
1201 | selRect.x += wcp + focusSpacingX; | |
1202 | selRect.width -= wcp + (focusSpacingX*2); | |
a340b80d VZ |
1203 | |
1204 | wxColour bgCol; | |
1205 | ||
1206 | if ( isEnabled ) | |
1207 | { | |
1208 | // If popup is hidden and this control is focused, | |
1209 | // then draw the focus-indicator (selbgcolor background etc.). | |
1210 | if ( isFocused ) | |
1211 | { | |
1212 | dc.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT) ); | |
1213 | bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); | |
1214 | } | |
1215 | else | |
1216 | { | |
1217 | dc.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT) ); | |
1218 | bgCol = GetBackgroundColour(); | |
1219 | } | |
1220 | } | |
1221 | else | |
1222 | { | |
1223 | dc.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT) ); | |
1224 | bgCol = GetBackgroundColour(); | |
1225 | } | |
1226 | ||
1227 | dc.SetBrush( bgCol ); | |
1228 | dc.SetPen( bgCol ); | |
1229 | dc.DrawRectangle( selRect ); | |
118f5fbd RR |
1230 | |
1231 | // Don't clip exactly to the selection rectangle so we can draw | |
1232 | // to the non-selected area in front of it. | |
1233 | wxRect clipRect(rect.x,rect.y, | |
1234 | (selRect.x+selRect.width)-rect.x,rect.height); | |
1235 | dc.SetClippingRegion(clipRect); | |
a340b80d | 1236 | } |
118f5fbd RR |
1237 | #else |
1238 | // Save the library size a bit for platforms that re-implement this. | |
1239 | void wxComboCtrlBase::PrepareBackground( wxDC&, const wxRect&, int ) const | |
1240 | { | |
1241 | } | |
1242 | #endif | |
a340b80d | 1243 | |
a57d600f | 1244 | void wxComboCtrlBase::DrawButton( wxDC& dc, const wxRect& rect, bool paintBg ) |
a340b80d VZ |
1245 | { |
1246 | int drawState = m_btnState; | |
1247 | ||
1248 | #ifdef __WXGTK__ | |
974a12f8 | 1249 | if ( GetPopupWindowState() >= Animating ) |
a340b80d VZ |
1250 | drawState |= wxCONTROL_PRESSED; |
1251 | #endif | |
1252 | ||
1253 | wxRect drawRect(rect.x+m_btnSpacingX, | |
1254 | rect.y+((rect.height-m_btnSize.y)/2), | |
1255 | m_btnSize.x, | |
1256 | m_btnSize.y); | |
1257 | ||
1258 | // Make sure area is not larger than the control | |
1259 | if ( drawRect.y < rect.y ) | |
1260 | drawRect.y = rect.y; | |
1261 | if ( drawRect.height > rect.height ) | |
1262 | drawRect.height = rect.height; | |
1263 | ||
1264 | bool enabled = IsEnabled(); | |
1265 | ||
1266 | if ( !enabled ) | |
1267 | drawState |= wxCONTROL_DISABLED; | |
1268 | ||
1269 | if ( !m_bmpNormal.Ok() ) | |
1270 | { | |
1271 | // Need to clear button background even if m_btn is present | |
a340b80d | 1272 | if ( paintBg ) |
b61f4f77 WS |
1273 | { |
1274 | wxColour bgCol; | |
1275 | ||
1276 | if ( m_iFlags & wxCC_IFLAG_BUTTON_OUTSIDE ) | |
1277 | bgCol = GetParent()->GetBackgroundColour(); | |
1278 | else | |
1279 | bgCol = GetBackgroundColour(); | |
1280 | ||
1281 | dc.SetBrush(bgCol); | |
1282 | dc.SetPen(bgCol); | |
a340b80d | 1283 | dc.DrawRectangle(rect); |
b61f4f77 | 1284 | } |
a340b80d VZ |
1285 | |
1286 | // Draw standard button | |
1287 | wxRendererNative::Get().DrawComboBoxDropButton(this, | |
1288 | dc, | |
1289 | drawRect, | |
1290 | drawState); | |
1291 | } | |
1292 | else | |
1293 | { | |
1294 | // Draw bitmap | |
1295 | ||
1296 | wxBitmap* pBmp; | |
1297 | ||
1298 | if ( !enabled ) | |
1299 | pBmp = &m_bmpDisabled; | |
1300 | else if ( m_btnState & wxCONTROL_PRESSED ) | |
1301 | pBmp = &m_bmpPressed; | |
1302 | else if ( m_btnState & wxCONTROL_CURRENT ) | |
1303 | pBmp = &m_bmpHover; | |
1304 | else | |
1305 | pBmp = &m_bmpNormal; | |
1306 | ||
1307 | if ( m_blankButtonBg ) | |
1308 | { | |
1309 | // If using blank button background, we need to clear its background | |
1310 | // with button face colour instead of colour for rest of the control. | |
1311 | if ( paintBg ) | |
1312 | { | |
1313 | wxColour bgCol = GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE); | |
1314 | //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW); | |
1315 | dc.SetPen(bgCol); | |
1316 | dc.SetBrush(bgCol); | |
1317 | dc.DrawRectangle(rect); | |
1318 | } | |
1319 | ||
1320 | wxRendererNative::Get().DrawPushButton(this, | |
1321 | dc, | |
1322 | drawRect, | |
1323 | drawState); | |
1324 | ||
1325 | } | |
1326 | else | |
1327 | ||
1328 | { | |
1329 | // Need to clear button background even if m_btn is present | |
1330 | // (assume non-button background was cleared just before this call so brushes are good) | |
1331 | if ( paintBg ) | |
1332 | dc.DrawRectangle(rect); | |
1333 | } | |
1334 | ||
1335 | // Draw bitmap centered in drawRect | |
1336 | dc.DrawBitmap(*pBmp, | |
1337 | drawRect.x + (drawRect.width-pBmp->GetWidth())/2, | |
1338 | drawRect.y + (drawRect.height-pBmp->GetHeight())/2, | |
1339 | true); | |
1340 | } | |
1341 | } | |
1342 | ||
a57d600f | 1343 | void wxComboCtrlBase::RecalcAndRefresh() |
a340b80d VZ |
1344 | { |
1345 | if ( IsCreated() ) | |
1346 | { | |
1347 | wxSizeEvent evt(GetSize(),GetId()); | |
1348 | GetEventHandler()->ProcessEvent(evt); | |
1349 | Refresh(); | |
1350 | } | |
1351 | } | |
1352 | ||
a340b80d VZ |
1353 | // ---------------------------------------------------------------------------- |
1354 | // miscellaneous event handlers | |
1355 | // ---------------------------------------------------------------------------- | |
1356 | ||
a57d600f | 1357 | void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent& event) |
a340b80d | 1358 | { |
ce968519 RR |
1359 | if ( event.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED ) |
1360 | { | |
1361 | if ( m_ignoreEvtText > 0 ) | |
1362 | { | |
1363 | m_ignoreEvtText--; | |
1364 | return; | |
1365 | } | |
1366 | } | |
1367 | ||
98d0cd96 | 1368 | // Change event id, object and string before relaying it forward |
a340b80d | 1369 | event.SetId(GetId()); |
98d0cd96 WS |
1370 | wxString s = event.GetString(); |
1371 | event.SetEventObject(this); | |
1372 | event.SetString(s); | |
a340b80d VZ |
1373 | event.Skip(); |
1374 | } | |
1375 | ||
1376 | // call if cursor is on button area or mouse is captured for the button | |
a57d600f | 1377 | bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent& event, |
a340b80d VZ |
1378 | int flags ) |
1379 | { | |
1380 | int type = event.GetEventType(); | |
1381 | ||
1382 | if ( type == wxEVT_MOTION ) | |
1383 | { | |
1384 | if ( flags & wxCC_MF_ON_BUTTON ) | |
1385 | { | |
1386 | if ( !(m_btnState & wxCONTROL_CURRENT) ) | |
1387 | { | |
1388 | // Mouse hover begins | |
1389 | m_btnState |= wxCONTROL_CURRENT; | |
1390 | if ( HasCapture() ) // Retain pressed state. | |
1391 | m_btnState |= wxCONTROL_PRESSED; | |
1392 | Refresh(); | |
1393 | } | |
1394 | } | |
1395 | else if ( (m_btnState & wxCONTROL_CURRENT) ) | |
1396 | { | |
1397 | // Mouse hover ends | |
1398 | m_btnState &= ~(wxCONTROL_CURRENT|wxCONTROL_PRESSED); | |
1399 | Refresh(); | |
1400 | } | |
1401 | } | |
974a12f8 | 1402 | else if ( type == wxEVT_LEFT_DOWN || type == wxEVT_LEFT_DCLICK ) |
a340b80d | 1403 | { |
1efad474 | 1404 | if ( flags & (wxCC_MF_ON_CLICK_AREA|wxCC_MF_ON_BUTTON) ) |
a340b80d | 1405 | { |
1efad474 RR |
1406 | m_btnState |= wxCONTROL_PRESSED; |
1407 | Refresh(); | |
a340b80d | 1408 | |
1efad474 RR |
1409 | if ( !(m_iFlags & wxCC_POPUP_ON_MOUSE_UP) ) |
1410 | OnButtonClick(); | |
1411 | else | |
1412 | // If showing popup now, do not capture mouse or there will be interference | |
1413 | CaptureMouse(); | |
a340b80d | 1414 | } |
a340b80d VZ |
1415 | } |
1416 | else if ( type == wxEVT_LEFT_UP ) | |
1417 | { | |
1418 | ||
1419 | // Only accept event if mouse was left-press was previously accepted | |
1420 | if ( HasCapture() ) | |
1421 | ReleaseMouse(); | |
1422 | ||
1423 | if ( m_btnState & wxCONTROL_PRESSED ) | |
1424 | { | |
1425 | // If mouse was inside, fire the click event. | |
1426 | if ( m_iFlags & wxCC_POPUP_ON_MOUSE_UP ) | |
1427 | { | |
1efad474 | 1428 | if ( flags & (wxCC_MF_ON_CLICK_AREA|wxCC_MF_ON_BUTTON) ) |
a340b80d VZ |
1429 | OnButtonClick(); |
1430 | } | |
1431 | ||
1432 | m_btnState &= ~(wxCONTROL_PRESSED); | |
1433 | Refresh(); | |
1434 | } | |
1435 | } | |
1436 | else if ( type == wxEVT_LEAVE_WINDOW ) | |
1437 | { | |
1438 | if ( m_btnState & (wxCONTROL_CURRENT|wxCONTROL_PRESSED) ) | |
1439 | { | |
1440 | m_btnState &= ~(wxCONTROL_CURRENT); | |
1441 | ||
1442 | // Mouse hover ends | |
974a12f8 | 1443 | if ( IsPopupWindowState(Hidden) ) |
a340b80d VZ |
1444 | { |
1445 | m_btnState &= ~(wxCONTROL_PRESSED); | |
1446 | Refresh(); | |
1447 | } | |
1448 | } | |
1449 | } | |
1450 | else | |
1451 | return false; | |
1452 | ||
1453 | return true; | |
1454 | } | |
1455 | ||
a340b80d | 1456 | // returns true if event was consumed or filtered |
a57d600f | 1457 | bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent& event, |
b104d1f0 | 1458 | int WXUNUSED(flags) ) |
a340b80d VZ |
1459 | { |
1460 | wxLongLong t = ::wxGetLocalTimeMillis(); | |
1461 | int evtType = event.GetEventType(); | |
1462 | ||
06077aaf VZ |
1463 | #if USES_WXPOPUPWINDOW || USES_WXDIALOG |
1464 | if ( m_popupWinType != POPUPWIN_WXPOPUPTRANSIENTWINDOW ) | |
c667b518 | 1465 | { |
974a12f8 | 1466 | if ( IsPopupWindowState(Visible) && |
06077aaf VZ |
1467 | ( evtType == wxEVT_LEFT_DOWN || evtType == wxEVT_RIGHT_DOWN ) ) |
1468 | { | |
1469 | HidePopup(); | |
1470 | return true; | |
1471 | } | |
c667b518 VZ |
1472 | } |
1473 | #endif | |
1474 | ||
a340b80d VZ |
1475 | // Filter out clicks on button immediately after popup dismiss (Windows like behaviour) |
1476 | if ( evtType == wxEVT_LEFT_DOWN && t < m_timeCanAcceptClick ) | |
1477 | { | |
1478 | event.SetEventType(0); | |
1479 | return true; | |
1480 | } | |
1481 | ||
1482 | return false; | |
1483 | } | |
1484 | ||
a57d600f | 1485 | void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent& event ) |
a340b80d VZ |
1486 | { |
1487 | int evtType = event.GetEventType(); | |
1488 | ||
1489 | if ( (evtType == wxEVT_LEFT_DOWN || evtType == wxEVT_LEFT_DCLICK) && | |
1490 | (m_windowStyle & wxCB_READONLY) ) | |
1491 | { | |
974a12f8 | 1492 | if ( GetPopupWindowState() >= Animating ) |
a340b80d | 1493 | { |
06077aaf | 1494 | #if USES_WXPOPUPWINDOW |
a340b80d | 1495 | // Click here always hides the popup. |
06077aaf VZ |
1496 | if ( m_popupWinType == POPUPWIN_WXPOPUPWINDOW ) |
1497 | HidePopup(); | |
a340b80d VZ |
1498 | #endif |
1499 | } | |
1500 | else | |
1501 | { | |
1502 | if ( !(m_windowStyle & wxCC_SPECIAL_DCLICK) ) | |
1503 | { | |
1504 | // In read-only mode, clicking the text is the | |
1505 | // same as clicking the button. | |
1506 | OnButtonClick(); | |
1507 | } | |
1508 | else if ( /*evtType == wxEVT_LEFT_UP || */evtType == wxEVT_LEFT_DCLICK ) | |
1509 | { | |
1510 | //if ( m_popupInterface->CycleValue() ) | |
1511 | // Refresh(); | |
1512 | if ( m_popupInterface ) | |
1513 | m_popupInterface->OnComboDoubleClick(); | |
1514 | } | |
1515 | } | |
1516 | } | |
1517 | else | |
974a12f8 | 1518 | if ( IsPopupShown() ) |
a340b80d VZ |
1519 | { |
1520 | // relay (some) mouse events to the popup | |
1521 | if ( evtType == wxEVT_MOUSEWHEEL ) | |
1522 | m_popup->AddPendingEvent(event); | |
1523 | } | |
1524 | else if ( evtType ) | |
1525 | event.Skip(); | |
1526 | } | |
1527 | ||
b445b6a7 | 1528 | void wxComboCtrlBase::OnKeyEvent(wxKeyEvent& event) |
a340b80d | 1529 | { |
b445b6a7 VZ |
1530 | if ( IsPopupShown() ) |
1531 | { | |
1532 | // pass it to the popped up control | |
1533 | GetPopupControl()->GetControl()->AddPendingEvent(event); | |
1534 | } | |
1535 | else // no popup | |
1536 | { | |
1537 | int keycode = event.GetKeyCode(); | |
a340b80d | 1538 | |
b445b6a7 VZ |
1539 | if ( keycode == WXK_TAB ) |
1540 | { | |
1541 | wxNavigationKeyEvent evt; | |
4427c0a3 RR |
1542 | |
1543 | wxWindow* mainCtrl = GetMainWindowOfCompositeControl(); | |
1544 | ||
b445b6a7 VZ |
1545 | evt.SetFlags(wxNavigationKeyEvent::FromTab| |
1546 | (!event.ShiftDown() ? wxNavigationKeyEvent::IsForward | |
1547 | : wxNavigationKeyEvent::IsBackward)); | |
4427c0a3 RR |
1548 | evt.SetEventObject(mainCtrl); |
1549 | evt.SetCurrentFocus(mainCtrl); | |
1550 | mainCtrl->GetParent()->GetEventHandler()->AddPendingEvent(evt); | |
b445b6a7 VZ |
1551 | return; |
1552 | } | |
1553 | ||
1554 | if ( IsKeyPopupToggle(event) ) | |
1555 | { | |
1556 | OnButtonClick(); | |
1557 | return; | |
1558 | } | |
1559 | ||
1560 | int comboStyle = GetWindowStyle(); | |
1561 | wxComboPopup* popupInterface = GetPopupControl(); | |
1562 | ||
1563 | if ( !popupInterface ) | |
1564 | { | |
1565 | event.Skip(); | |
1566 | return; | |
1567 | } | |
1568 | ||
1569 | if ( (comboStyle & wxCB_READONLY) || | |
1570 | (keycode != WXK_RIGHT && keycode != WXK_LEFT) ) | |
1571 | { | |
1572 | popupInterface->OnComboKeyEvent(event); | |
1573 | } | |
1574 | else | |
1575 | event.Skip(); | |
1576 | } | |
1577 | } | |
1578 | ||
1579 | void wxComboCtrlBase::OnFocusEvent( wxFocusEvent& event ) | |
1580 | { | |
1581 | if ( event.GetEventType() == wxEVT_SET_FOCUS ) | |
a340b80d | 1582 | { |
e718be3e | 1583 | #ifndef __WXMAC__ |
b445b6a7 VZ |
1584 | if ( m_text && m_text != ::wxWindow::FindFocus() ) |
1585 | m_text->SetFocus(); | |
e718be3e | 1586 | #endif |
a340b80d | 1587 | } |
b445b6a7 VZ |
1588 | |
1589 | Refresh(); | |
a340b80d VZ |
1590 | } |
1591 | ||
a57d600f | 1592 | void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event)) |
a340b80d VZ |
1593 | { |
1594 | OnThemeChange(); | |
1595 | // indentation may also have changed | |
1596 | if ( !(m_iFlags & wxCC_IFLAG_INDENT_SET) ) | |
1597 | m_absIndent = GetNativeTextIndent(); | |
1598 | RecalcAndRefresh(); | |
1599 | } | |
1600 | ||
1601 | // ---------------------------------------------------------------------------- | |
1602 | // popup handling | |
1603 | // ---------------------------------------------------------------------------- | |
1604 | ||
1605 | // Create popup window and the child control | |
a57d600f | 1606 | void wxComboCtrlBase::CreatePopup() |
a340b80d VZ |
1607 | { |
1608 | wxComboPopup* popupInterface = m_popupInterface; | |
1609 | wxWindow* popup; | |
1610 | ||
1611 | if ( !m_winPopup ) | |
06077aaf VZ |
1612 | { |
1613 | #ifdef wxComboPopupWindowBase2 | |
1614 | if ( m_iFlags & wxCC_IFLAG_USE_ALT_POPUP ) | |
1615 | { | |
1616 | #if !USES_WXDIALOG | |
1617 | m_winPopup = new wxComboPopupWindowBase2( this, wxNO_BORDER ); | |
1618 | #else | |
1619 | m_winPopup = new wxComboPopupWindowBase2( this, wxID_ANY, wxEmptyString, | |
1620 | wxPoint(-21,-21), wxSize(20, 20), | |
1621 | wxNO_BORDER ); | |
1622 | #endif | |
1623 | m_popupWinType = SECONDARY_POPUP_TYPE; | |
1624 | } | |
1625 | else | |
1626 | #endif | |
1627 | { | |
1628 | m_winPopup = new wxComboPopupWindow( this, wxNO_BORDER ); | |
1629 | m_popupWinType = PRIMARY_POPUP_TYPE; | |
1630 | } | |
1631 | m_popupWinEvtHandler = new wxComboPopupWindowEvtHandler(this); | |
1632 | m_winPopup->PushEventHandler(m_popupWinEvtHandler); | |
1633 | } | |
a340b80d VZ |
1634 | |
1635 | popupInterface->Create(m_winPopup); | |
1636 | m_popup = popup = popupInterface->GetControl(); | |
1637 | ||
1638 | m_popupExtraHandler = new wxComboPopupExtraEventHandler(this); | |
1639 | popup->PushEventHandler( m_popupExtraHandler ); | |
1640 | ||
1641 | // This may be helpful on some platforms | |
1642 | // (eg. it bypasses a wxGTK popupwindow bug where | |
1643 | // window is not initially hidden when it should be) | |
1644 | m_winPopup->Hide(); | |
1645 | ||
1646 | popupInterface->m_iFlags |= wxCP_IFLAG_CREATED; | |
1647 | } | |
1648 | ||
7ca4ac63 WS |
1649 | // Destroy popup window and the child control |
1650 | void wxComboCtrlBase::DestroyPopup() | |
1651 | { | |
c667b518 VZ |
1652 | HidePopup(); |
1653 | ||
7ca4ac63 WS |
1654 | if ( m_popup ) |
1655 | m_popup->RemoveEventHandler(m_popupExtraHandler); | |
1656 | ||
1657 | delete m_popupExtraHandler; | |
1658 | ||
7ca4ac63 WS |
1659 | delete m_popupInterface; |
1660 | ||
1661 | if ( m_winPopup ) | |
06077aaf VZ |
1662 | { |
1663 | m_winPopup->RemoveEventHandler(m_popupWinEvtHandler); | |
1664 | delete m_popupWinEvtHandler; | |
1665 | m_popupWinEvtHandler = NULL; | |
7ca4ac63 | 1666 | m_winPopup->Destroy(); |
06077aaf | 1667 | } |
7ca4ac63 | 1668 | |
25ae9fb8 | 1669 | m_popupExtraHandler = (wxEvtHandler*) NULL; |
7ca4ac63 WS |
1670 | m_popupInterface = (wxComboPopup*) NULL; |
1671 | m_winPopup = (wxWindow*) NULL; | |
1672 | m_popup = (wxWindow*) NULL; | |
1673 | } | |
1674 | ||
db53c6ea | 1675 | void wxComboCtrlBase::DoSetPopupControl(wxComboPopup* iface) |
a340b80d | 1676 | { |
a57d600f | 1677 | wxCHECK_RET( iface, wxT("no popup interface set for wxComboCtrl") ); |
6d0ce565 | 1678 | |
7ca4ac63 | 1679 | DestroyPopup(); |
a340b80d | 1680 | |
6d0ce565 VZ |
1681 | iface->InitBase(this); |
1682 | iface->Init(); | |
1683 | ||
a340b80d VZ |
1684 | m_popupInterface = iface; |
1685 | ||
7ca4ac63 | 1686 | if ( !iface->LazyCreate() ) |
a340b80d VZ |
1687 | { |
1688 | CreatePopup(); | |
1689 | } | |
1690 | else | |
1691 | { | |
1692 | m_popup = (wxWindow*) NULL; | |
1693 | } | |
1694 | ||
6d0ce565 VZ |
1695 | // This must be done after creation |
1696 | if ( m_valueString.length() ) | |
1697 | { | |
a340b80d | 1698 | iface->SetStringValue(m_valueString); |
6d0ce565 VZ |
1699 | //Refresh(); |
1700 | } | |
1701 | } | |
a340b80d | 1702 | |
6d0ce565 | 1703 | // Ensures there is atleast the default popup |
a57d600f | 1704 | void wxComboCtrlBase::EnsurePopupControl() |
6d0ce565 VZ |
1705 | { |
1706 | if ( !m_popupInterface ) | |
1707 | SetPopupControl(NULL); | |
a340b80d VZ |
1708 | } |
1709 | ||
a57d600f | 1710 | void wxComboCtrlBase::OnButtonClick() |
a340b80d VZ |
1711 | { |
1712 | // Derived classes can override this method for totally custom | |
1713 | // popup action | |
1714 | ShowPopup(); | |
1715 | } | |
1716 | ||
a57d600f | 1717 | void wxComboCtrlBase::ShowPopup() |
a340b80d | 1718 | { |
6d0ce565 | 1719 | EnsurePopupControl(); |
974a12f8 RR |
1720 | wxCHECK_RET( !IsPopupWindowState(Visible), wxT("popup window already shown") ); |
1721 | ||
1722 | if ( IsPopupWindowState(Animating) ) | |
1723 | return; | |
a340b80d VZ |
1724 | |
1725 | SetFocus(); | |
1726 | ||
1727 | // Space above and below | |
1728 | int screenHeight; | |
1729 | wxPoint scrPos; | |
1730 | int spaceAbove; | |
1731 | int spaceBelow; | |
1732 | int maxHeightPopup; | |
1733 | wxSize ctrlSz = GetSize(); | |
1734 | ||
1735 | screenHeight = wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ); | |
1736 | scrPos = GetParent()->ClientToScreen(GetPosition()); | |
1737 | ||
1738 | spaceAbove = scrPos.y; | |
1739 | spaceBelow = screenHeight - spaceAbove - ctrlSz.y; | |
1740 | ||
1741 | maxHeightPopup = spaceBelow; | |
1742 | if ( spaceAbove > spaceBelow ) | |
1743 | maxHeightPopup = spaceAbove; | |
1744 | ||
1745 | // Width | |
1746 | int widthPopup = ctrlSz.x + m_extLeft + m_extRight; | |
1747 | ||
1748 | if ( widthPopup < m_widthMinPopup ) | |
1749 | widthPopup = m_widthMinPopup; | |
1750 | ||
1751 | wxWindow* winPopup = m_winPopup; | |
1752 | wxWindow* popup; | |
1753 | ||
1754 | // Need to disable tab traversal of parent | |
1755 | // | |
1756 | // NB: This is to fix a bug in wxMSW. In theory it could also be fixed | |
1757 | // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage | |
1758 | // that if transient popup is open, then tab traversal is to be ignored. | |
1759 | // However, I think this code would still be needed for cases where | |
1760 | // transient popup doesn't work yet (wxWinCE?). | |
1761 | wxWindow* parent = GetParent(); | |
1762 | int parentFlags = parent->GetWindowStyle(); | |
1763 | if ( parentFlags & wxTAB_TRAVERSAL ) | |
1764 | { | |
1765 | parent->SetWindowStyle( parentFlags & ~(wxTAB_TRAVERSAL) ); | |
1766 | m_iFlags |= wxCC_IFLAG_PARENT_TAB_TRAVERSAL; | |
1767 | } | |
1768 | ||
1769 | if ( !winPopup ) | |
1770 | { | |
1771 | CreatePopup(); | |
1772 | winPopup = m_winPopup; | |
1773 | popup = m_popup; | |
1774 | } | |
1775 | else | |
1776 | { | |
1777 | popup = m_popup; | |
1778 | } | |
1779 | ||
1780 | wxASSERT( !m_popup || m_popup == popup ); // Consistency check. | |
1781 | ||
1782 | wxSize adjustedSize = m_popupInterface->GetAdjustedSize(widthPopup, | |
1783 | m_heightPopup<=0?DEFAULT_POPUP_HEIGHT:m_heightPopup, | |
1784 | maxHeightPopup); | |
1785 | ||
1786 | popup->SetSize(adjustedSize); | |
1787 | popup->Move(0,0); | |
1788 | m_popupInterface->OnPopup(); | |
1789 | ||
1790 | // | |
1791 | // Reposition and resize popup window | |
1792 | // | |
1793 | ||
1794 | wxSize szp = popup->GetSize(); | |
1795 | ||
1796 | int popupX; | |
1797 | int popupY = scrPos.y + ctrlSz.y; | |
1798 | ||
b7540dc1 | 1799 | // Default anchor is wxLEFT |
a340b80d VZ |
1800 | int anchorSide = m_anchorSide; |
1801 | if ( !anchorSide ) | |
b7540dc1 | 1802 | anchorSide = wxLEFT; |
a340b80d | 1803 | |
b7540dc1 WS |
1804 | int rightX = scrPos.x + ctrlSz.x + m_extRight - szp.x; |
1805 | int leftX = scrPos.x - m_extLeft; | |
1806 | int screenWidth = wxSystemSettings::GetMetric( wxSYS_SCREEN_X ); | |
1807 | ||
1808 | // If there is not enough horizontal space, anchor on the other side. | |
1809 | // If there is no space even then, place the popup at x 0. | |
1810 | if ( anchorSide == wxRIGHT ) | |
1811 | { | |
1812 | if ( rightX < 0 ) | |
1813 | { | |
1814 | if ( (leftX+szp.x) < screenWidth ) | |
1815 | anchorSide = wxLEFT; | |
1816 | else | |
1817 | anchorSide = 0; | |
1818 | } | |
1819 | } | |
1820 | else | |
1821 | { | |
1822 | if ( (leftX+szp.x) >= screenWidth ) | |
1823 | { | |
1824 | if ( rightX >= 0 ) | |
1825 | anchorSide = wxRIGHT; | |
1826 | else | |
1827 | anchorSide = 0; | |
1828 | } | |
1829 | } | |
1830 | ||
1831 | // Select x coordinate according to the anchor side | |
a340b80d | 1832 | if ( anchorSide == wxRIGHT ) |
b7540dc1 WS |
1833 | popupX = rightX; |
1834 | else if ( anchorSide == wxLEFT ) | |
1835 | popupX = leftX; | |
a340b80d | 1836 | else |
b7540dc1 | 1837 | popupX = 0; |
a340b80d | 1838 | |
974a12f8 RR |
1839 | int showFlags = CanDeferShow; |
1840 | ||
a340b80d VZ |
1841 | if ( spaceBelow < szp.y ) |
1842 | { | |
1843 | popupY = scrPos.y - szp.y; | |
974a12f8 | 1844 | showFlags |= ShowAbove; |
a340b80d VZ |
1845 | } |
1846 | ||
974a12f8 RR |
1847 | #if INSTALL_TOPLEV_HANDLER |
1848 | // Put top level window event handler into place | |
1849 | if ( m_popupWinType == POPUPWIN_WXPOPUPWINDOW ) | |
1850 | { | |
1851 | if ( !m_toplevEvtHandler ) | |
1852 | m_toplevEvtHandler = new wxComboFrameEventHandler(this); | |
a340b80d | 1853 | |
974a12f8 RR |
1854 | wxWindow* toplev = ::wxGetTopLevelParent( this ); |
1855 | wxASSERT( toplev ); | |
1856 | ((wxComboFrameEventHandler*)m_toplevEvtHandler)->OnPopup(); | |
1857 | toplev->PushEventHandler( m_toplevEvtHandler ); | |
1858 | } | |
1859 | #endif | |
a340b80d VZ |
1860 | |
1861 | // Set string selection (must be this way instead of SetStringSelection) | |
1862 | if ( m_text ) | |
1863 | { | |
1864 | if ( !(m_iFlags & wxCC_NO_TEXT_AUTO_SELECT) ) | |
1865 | m_text->SelectAll(); | |
1866 | ||
1867 | m_popupInterface->SetStringValue( m_text->GetValue() ); | |
1868 | } | |
1869 | else | |
1870 | { | |
1871 | // This is neede since focus/selection indication may change when popup is shown | |
a340b80d VZ |
1872 | Refresh(); |
1873 | } | |
1874 | ||
1875 | // This must be after SetStringValue | |
974a12f8 | 1876 | m_popupWinState = Animating; |
a340b80d | 1877 | |
974a12f8 | 1878 | wxRect popupWinRect( popupX, popupY, szp.x, szp.y ); |
a340b80d | 1879 | |
974a12f8 | 1880 | m_popup = popup; |
30be036c RR |
1881 | if ( (m_iFlags & wxCC_IFLAG_DISABLE_POPUP_ANIM) || |
1882 | AnimateShow( popupWinRect, showFlags ) ) | |
06077aaf | 1883 | { |
974a12f8 RR |
1884 | DoShowPopup( popupWinRect, showFlags ); |
1885 | } | |
1886 | } | |
a340b80d | 1887 | |
974a12f8 RR |
1888 | bool wxComboCtrlBase::AnimateShow( const wxRect& WXUNUSED(rect), int WXUNUSED(flags) ) |
1889 | { | |
1890 | return true; | |
1891 | } | |
1892 | ||
1893 | void wxComboCtrlBase::DoShowPopup( const wxRect& rect, int WXUNUSED(flags) ) | |
1894 | { | |
1895 | wxWindow* winPopup = m_winPopup; | |
1896 | ||
1897 | if ( IsPopupWindowState(Animating) ) | |
1898 | { | |
1899 | // Make sure the popup window is shown in the right position. | |
1900 | // Should not matter even if animation already did this. | |
1901 | ||
1902 | // Some platforms (GTK) may like SetSize and Move to be separate | |
1903 | // (though the bug was probably fixed). | |
1904 | winPopup->SetSize( rect ); | |
1905 | ||
1906 | winPopup->Show(); | |
1907 | ||
1908 | m_popupWinState = Visible; | |
06077aaf | 1909 | } |
974a12f8 RR |
1910 | else if ( IsPopupWindowState(Hidden) ) |
1911 | { | |
1912 | // Animation was aborted | |
a340b80d | 1913 | |
974a12f8 RR |
1914 | wxASSERT( !winPopup->IsShown() ); |
1915 | ||
1916 | m_popupWinState = Hidden; | |
1917 | } | |
a340b80d VZ |
1918 | } |
1919 | ||
a57d600f | 1920 | void wxComboCtrlBase::OnPopupDismiss() |
974a12f8 | 1921 | { |
a340b80d | 1922 | // Just in case, avoid double dismiss |
974a12f8 | 1923 | if ( IsPopupWindowState(Hidden) ) |
a340b80d VZ |
1924 | return; |
1925 | ||
06077aaf VZ |
1926 | // NB: Focus setting is really funny, atleast on wxMSW. First of all, |
1927 | // we need to have SetFocus at the end. Otherwise wxTextCtrl may | |
1928 | // freeze until focus goes somewhere else. Second, wxTreeCtrl as | |
1929 | // popup, when dismissing, "steals" focus back to itself unless | |
974a12f8 | 1930 | // SetFocus is called also here, exactly before m_popupWinState |
06077aaf VZ |
1931 | // is set to false. Which is truly weird since SetFocus is just |
1932 | // wxWindowMSW method and does not call event handler or anything like | |
974a12f8 | 1933 | // that (ie. does not care about m_popupWinState). |
06077aaf VZ |
1934 | |
1935 | SetFocus(); | |
1936 | ||
1937 | // This should preferably be set before focus. | |
974a12f8 | 1938 | m_popupWinState = Hidden; |
a340b80d VZ |
1939 | |
1940 | // Inform popup control itself | |
1941 | m_popupInterface->OnDismiss(); | |
1942 | ||
1943 | if ( m_popupExtraHandler ) | |
1944 | ((wxComboPopupExtraEventHandler*)m_popupExtraHandler)->OnPopupDismiss(); | |
1945 | ||
1946 | #if INSTALL_TOPLEV_HANDLER | |
1947 | // Remove top level window event handler | |
1948 | if ( m_toplevEvtHandler ) | |
1949 | { | |
1950 | wxWindow* toplev = ::wxGetTopLevelParent( this ); | |
1951 | if ( toplev ) | |
1952 | toplev->RemoveEventHandler( m_toplevEvtHandler ); | |
1953 | } | |
1954 | #endif | |
1955 | ||
974a12f8 RR |
1956 | m_timeCanAcceptClick = ::wxGetLocalTimeMillis(); |
1957 | ||
1958 | if ( m_popupWinType == POPUPWIN_WXPOPUPTRANSIENTWINDOW ) | |
1959 | m_timeCanAcceptClick += 150; | |
a340b80d VZ |
1960 | |
1961 | // If cursor not on dropdown button, then clear its state | |
1962 | // (technically not required by all ports, but do it for all just in case) | |
22a35096 | 1963 | if ( !m_btnArea.Contains(ScreenToClient(::wxGetMousePosition())) ) |
a340b80d VZ |
1964 | m_btnState = 0; |
1965 | ||
1966 | // Return parent's tab traversal flag. | |
1967 | // See ShowPopup for notes. | |
1968 | if ( m_iFlags & wxCC_IFLAG_PARENT_TAB_TRAVERSAL ) | |
1969 | { | |
1970 | wxWindow* parent = GetParent(); | |
1971 | parent->SetWindowStyle( parent->GetWindowStyle() | wxTAB_TRAVERSAL ); | |
1972 | m_iFlags &= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL); | |
1973 | } | |
1974 | ||
1975 | // refresh control (necessary even if m_text) | |
1976 | Refresh(); | |
1977 | ||
a340b80d | 1978 | SetFocus(); |
a340b80d VZ |
1979 | } |
1980 | ||
a57d600f | 1981 | void wxComboCtrlBase::HidePopup() |
a340b80d VZ |
1982 | { |
1983 | // Should be able to call this without popup interface | |
974a12f8 | 1984 | if ( IsPopupWindowState(Hidden) ) |
a340b80d VZ |
1985 | return; |
1986 | ||
1987 | // transfer value and show it in textctrl, if any | |
974a12f8 RR |
1988 | if ( !IsPopupWindowState(Animating) ) |
1989 | SetValue( m_popupInterface->GetStringValue() ); | |
a340b80d | 1990 | |
974a12f8 | 1991 | m_winPopup->Hide(); |
a340b80d VZ |
1992 | |
1993 | OnPopupDismiss(); | |
1994 | } | |
1995 | ||
1996 | // ---------------------------------------------------------------------------- | |
1997 | // customization methods | |
1998 | // ---------------------------------------------------------------------------- | |
1999 | ||
a57d600f | 2000 | void wxComboCtrlBase::SetButtonPosition( int width, int height, |
7dc234d6 | 2001 | int side, int spacingX ) |
a340b80d VZ |
2002 | { |
2003 | m_btnWid = width; | |
2004 | m_btnHei = height; | |
2005 | m_btnSide = side; | |
2006 | m_btnSpacingX = spacingX; | |
2007 | ||
2008 | RecalcAndRefresh(); | |
2009 | } | |
2010 | ||
7dc234d6 WS |
2011 | wxSize wxComboCtrlBase::GetButtonSize() |
2012 | { | |
2013 | if ( m_btnSize.x > 0 ) | |
2014 | return m_btnSize; | |
2015 | ||
2016 | wxSize retSize(m_btnWid,m_btnHei); | |
2017 | ||
2018 | // Need to call CalculateAreas now if button size is | |
2019 | // is not explicitly specified. | |
2020 | if ( retSize.x <= 0 || retSize.y <= 0) | |
2021 | { | |
2022 | OnResize(); | |
2023 | ||
2024 | retSize = m_btnSize; | |
2025 | } | |
2026 | ||
2027 | return retSize; | |
2028 | } | |
2029 | ||
a57d600f | 2030 | void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap& bmpNormal, |
a340b80d VZ |
2031 | bool blankButtonBg, |
2032 | const wxBitmap& bmpPressed, | |
2033 | const wxBitmap& bmpHover, | |
2034 | const wxBitmap& bmpDisabled ) | |
2035 | { | |
2036 | m_bmpNormal = bmpNormal; | |
2037 | m_blankButtonBg = blankButtonBg; | |
2038 | ||
2039 | if ( bmpPressed.Ok() ) | |
2040 | m_bmpPressed = bmpPressed; | |
2041 | else | |
2042 | m_bmpPressed = bmpNormal; | |
2043 | ||
2044 | if ( bmpHover.Ok() ) | |
2045 | m_bmpHover = bmpHover; | |
2046 | else | |
2047 | m_bmpHover = bmpNormal; | |
2048 | ||
2049 | if ( bmpDisabled.Ok() ) | |
2050 | m_bmpDisabled = bmpDisabled; | |
2051 | else | |
2052 | m_bmpDisabled = bmpNormal; | |
2053 | ||
2054 | RecalcAndRefresh(); | |
2055 | } | |
2056 | ||
a57d600f | 2057 | void wxComboCtrlBase::SetCustomPaintWidth( int width ) |
a340b80d VZ |
2058 | { |
2059 | if ( m_text ) | |
2060 | { | |
2061 | // move textctrl accordingly | |
2062 | wxRect r = m_text->GetRect(); | |
2063 | int inc = width - m_widthCustomPaint; | |
2064 | r.x += inc; | |
2065 | r.width -= inc; | |
2066 | m_text->SetSize( r ); | |
2067 | } | |
2068 | ||
2069 | m_widthCustomPaint = width; | |
2070 | ||
2071 | RecalcAndRefresh(); | |
2072 | } | |
2073 | ||
a57d600f | 2074 | void wxComboCtrlBase::SetTextIndent( int indent ) |
a340b80d VZ |
2075 | { |
2076 | if ( indent < 0 ) | |
2077 | { | |
2078 | m_absIndent = GetNativeTextIndent(); | |
2079 | m_iFlags &= ~(wxCC_IFLAG_INDENT_SET); | |
2080 | } | |
2081 | else | |
2082 | { | |
2083 | m_absIndent = indent; | |
2084 | m_iFlags |= wxCC_IFLAG_INDENT_SET; | |
2085 | } | |
2086 | ||
2087 | RecalcAndRefresh(); | |
2088 | } | |
2089 | ||
a57d600f | 2090 | wxCoord wxComboCtrlBase::GetNativeTextIndent() const |
a340b80d VZ |
2091 | { |
2092 | return DEFAULT_TEXT_INDENT; | |
2093 | } | |
2094 | ||
2095 | // ---------------------------------------------------------------------------- | |
2096 | // methods forwarded to wxTextCtrl | |
2097 | // ---------------------------------------------------------------------------- | |
2098 | ||
a57d600f | 2099 | wxString wxComboCtrlBase::GetValue() const |
a340b80d VZ |
2100 | { |
2101 | if ( m_text ) | |
2102 | return m_text->GetValue(); | |
2103 | return m_valueString; | |
2104 | } | |
2105 | ||
ce968519 | 2106 | void wxComboCtrlBase::SetValueWithEvent(const wxString& value, bool withEvent) |
a340b80d VZ |
2107 | { |
2108 | if ( m_text ) | |
2109 | { | |
ce968519 RR |
2110 | if ( !withEvent ) |
2111 | m_ignoreEvtText++; | |
2112 | ||
a340b80d VZ |
2113 | m_text->SetValue(value); |
2114 | if ( !(m_iFlags & wxCC_NO_TEXT_AUTO_SELECT) ) | |
2115 | m_text->SelectAll(); | |
2116 | } | |
2117 | ||
6d0ce565 VZ |
2118 | m_valueString = value; |
2119 | ||
2120 | Refresh(); | |
2121 | ||
a340b80d VZ |
2122 | // Since wxComboPopup may want to paint the combo as well, we need |
2123 | // to set the string value here (as well as sometimes in ShowPopup). | |
2124 | if ( m_valueString != value && m_popupInterface ) | |
2125 | { | |
2126 | m_popupInterface->SetStringValue(value); | |
2127 | } | |
6d0ce565 VZ |
2128 | } |
2129 | ||
ce968519 RR |
2130 | void wxComboCtrlBase::SetValue(const wxString& value) |
2131 | { | |
2132 | SetValueWithEvent(value, false); | |
2133 | } | |
2134 | ||
6d0ce565 | 2135 | // In this SetValue variant wxComboPopup::SetStringValue is not called |
a57d600f | 2136 | void wxComboCtrlBase::SetText(const wxString& value) |
6d0ce565 VZ |
2137 | { |
2138 | // Unlike in SetValue(), this must be called here or | |
2139 | // the behaviour will no be consistent in readonlys. | |
2140 | EnsurePopupControl(); | |
a340b80d VZ |
2141 | |
2142 | m_valueString = value; | |
2143 | ||
ce968519 RR |
2144 | if ( m_text ) |
2145 | { | |
2146 | m_ignoreEvtText++; | |
2147 | m_text->SetValue( value ); | |
2148 | } | |
2149 | ||
a340b80d VZ |
2150 | Refresh(); |
2151 | } | |
2152 | ||
a57d600f | 2153 | void wxComboCtrlBase::Copy() |
a340b80d VZ |
2154 | { |
2155 | if ( m_text ) | |
2156 | m_text->Copy(); | |
2157 | } | |
2158 | ||
a57d600f | 2159 | void wxComboCtrlBase::Cut() |
a340b80d VZ |
2160 | { |
2161 | if ( m_text ) | |
2162 | m_text->Cut(); | |
2163 | } | |
2164 | ||
a57d600f | 2165 | void wxComboCtrlBase::Paste() |
a340b80d VZ |
2166 | { |
2167 | if ( m_text ) | |
2168 | m_text->Paste(); | |
2169 | } | |
2170 | ||
a57d600f | 2171 | void wxComboCtrlBase::SetInsertionPoint(long pos) |
a340b80d VZ |
2172 | { |
2173 | if ( m_text ) | |
2174 | m_text->SetInsertionPoint(pos); | |
2175 | } | |
2176 | ||
a57d600f | 2177 | void wxComboCtrlBase::SetInsertionPointEnd() |
a340b80d VZ |
2178 | { |
2179 | if ( m_text ) | |
2180 | m_text->SetInsertionPointEnd(); | |
2181 | } | |
2182 | ||
a57d600f | 2183 | long wxComboCtrlBase::GetInsertionPoint() const |
a340b80d VZ |
2184 | { |
2185 | if ( m_text ) | |
2186 | return m_text->GetInsertionPoint(); | |
2187 | ||
2188 | return 0; | |
2189 | } | |
2190 | ||
a57d600f | 2191 | long wxComboCtrlBase::GetLastPosition() const |
a340b80d VZ |
2192 | { |
2193 | if ( m_text ) | |
2194 | return m_text->GetLastPosition(); | |
2195 | ||
2196 | return 0; | |
2197 | } | |
2198 | ||
a57d600f | 2199 | void wxComboCtrlBase::Replace(long from, long to, const wxString& value) |
a340b80d VZ |
2200 | { |
2201 | if ( m_text ) | |
2202 | m_text->Replace(from, to, value); | |
2203 | } | |
2204 | ||
a57d600f | 2205 | void wxComboCtrlBase::Remove(long from, long to) |
a340b80d VZ |
2206 | { |
2207 | if ( m_text ) | |
2208 | m_text->Remove(from, to); | |
2209 | } | |
2210 | ||
a57d600f | 2211 | void wxComboCtrlBase::SetSelection(long from, long to) |
a340b80d VZ |
2212 | { |
2213 | if ( m_text ) | |
2214 | m_text->SetSelection(from, to); | |
2215 | } | |
2216 | ||
a57d600f | 2217 | void wxComboCtrlBase::Undo() |
a340b80d VZ |
2218 | { |
2219 | if ( m_text ) | |
2220 | m_text->Undo(); | |
2221 | } | |
2222 | ||
a57d600f | 2223 | #endif // wxUSE_COMBOCTRL |