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