1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/combocmn.cpp
3 // Purpose: wxComboCtrlBase
4 // Author: Jaakko Salli
6 // Created: Apr-30-2006
8 // Copyright: (c) 2005 Jaakko Salli
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
27 #include "wx/combobox.h"
28 extern WXDLLEXPORT_DATA(const char) wxComboBoxNameStr
[] = "comboBox";
36 #include "wx/dcclient.h"
37 #include "wx/settings.h"
39 #include "wx/textctrl.h"
42 #include "wx/tooltip.h"
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 wxDEFINE_FLAGS( wxComboBoxStyle
)
52 wxBEGIN_FLAGS( wxComboBoxStyle
)
53 // new style border flags, we put them first to
54 // use them for streaming out
55 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
56 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
57 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
58 wxFLAGS_MEMBER(wxBORDER_RAISED
)
59 wxFLAGS_MEMBER(wxBORDER_STATIC
)
60 wxFLAGS_MEMBER(wxBORDER_NONE
)
62 // old style border flags
63 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
64 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
65 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
66 wxFLAGS_MEMBER(wxRAISED_BORDER
)
67 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
68 wxFLAGS_MEMBER(wxBORDER
)
70 // standard window styles
71 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
72 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
73 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
74 wxFLAGS_MEMBER(wxWANTS_CHARS
)
75 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
76 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
77 wxFLAGS_MEMBER(wxVSCROLL
)
78 wxFLAGS_MEMBER(wxHSCROLL
)
80 wxFLAGS_MEMBER(wxCB_SIMPLE
)
81 wxFLAGS_MEMBER(wxCB_SORT
)
82 wxFLAGS_MEMBER(wxCB_READONLY
)
83 wxFLAGS_MEMBER(wxCB_DROPDOWN
)
85 wxEND_FLAGS( wxComboBoxStyle
)
87 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxComboBox
, wxControl
, "wx/combobox.h")
89 wxBEGIN_PROPERTIES_TABLE(wxComboBox
)
90 wxEVENT_PROPERTY( Select
, wxEVT_COMMAND_COMBOBOX_SELECTED
, wxCommandEvent
)
91 wxEVENT_PROPERTY( TextEnter
, wxEVT_COMMAND_TEXT_ENTER
, wxCommandEvent
)
94 wxPROPERTY( Font
, wxFont
, SetFont
, GetFont
, wxEMPTY_PARAMETER_VALUE
, \
95 0 /*flags*/, wxT("Helpstring"), wxT("group"))
96 wxPROPERTY_COLLECTION( Choices
, wxArrayString
, wxString
, AppendString
, \
97 GetStrings
, 0 /*flags*/, wxT("Helpstring"), wxT("group"))
98 wxPROPERTY( Value
,wxString
, SetValue
, GetValue
, wxEMPTY_PARAMETER_VALUE
, \
99 0 /*flags*/, wxT("Helpstring"), wxT("group"))
100 wxPROPERTY( Selection
,int, SetSelection
, GetSelection
, wxEMPTY_PARAMETER_VALUE
, \
101 0 /*flags*/, wxT("Helpstring"), wxT("group"))
103 wxPROPERTY_FLAGS( WindowStyle
, wxComboBoxStyle
, long, SetWindowStyleFlag
, \
104 GetWindowStyleFlag
, wxEMPTY_PARAMETER_VALUE
, 0 /*flags*/, \
105 wxT("Helpstring"), wxT("group")) // style
106 wxEND_PROPERTIES_TABLE()
108 wxEMPTY_HANDLERS_TABLE(wxComboBox
)
110 wxCONSTRUCTOR_5( wxComboBox
, wxWindow
*, Parent
, wxWindowID
, Id
, \
111 wxString
, Value
, wxPoint
, Position
, wxSize
, Size
)
114 // ----------------------------------------------------------------------------
116 #define DEFAULT_DROPBUTTON_WIDTH 19
118 #define BMP_BUTTON_MARGIN 4
120 #define DEFAULT_POPUP_HEIGHT 400
122 #define DEFAULT_TEXT_INDENT 3
124 #define COMBO_MARGIN 2 // spacing right of wxTextCtrl
127 #if defined(__WXMSW__)
129 // Let's use wxFrame as a fall-back solution until wxMSW gets wxNonOwnedWindow
130 #include "wx/frame.h"
131 #define wxCC_GENERIC_TLW_IS_FRAME
132 #define wxComboCtrlGenericTLW wxFrame
134 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
135 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
136 // native controls work on it like normal.
137 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
138 #define TEXTCTRL_TEXT_CENTERED 0 // 1 if text in textctrl is vertically centered
139 #define FOCUS_RING 0 // No focus ring on wxMSW
141 //#undef wxUSE_POPUPWIN
142 //#define wxUSE_POPUPWIN 0
144 #elif defined(__WXGTK__)
146 // NB: It is not recommended to use wxDialog as popup on wxGTK, because of
147 // this bug: If wxDialog is hidden, its position becomes corrupt
148 // between hide and next show, but without internal coordinates being
149 // reflected (or something like that - atleast commenting out ->Hide()
150 // seemed to eliminate the position change).
152 #include "wx/dialog.h"
153 #define wxCC_GENERIC_TLW_IS_DIALOG
154 #define wxComboCtrlGenericTLW wxDialog
156 #if defined(__WXGTK20__)
157 # include "wx/gtk/private.h"
159 # include "wx/gtk1/private.h"
162 // NB: Let's not be afraid to use wxGTK's wxPopupTransientWindow as a
163 // 'perfect' popup, as it can succesfully host child controls even in
164 // popups that are shown in modal dialogs.
166 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
167 #define TRANSIENT_POPUPWIN_IS_PERFECT 1 // wxPopupTransientWindow works, its child can have focus, and common
168 // native controls work on it like normal.
169 #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window.
170 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
171 #define FOCUS_RING 0 // No focus ring on wxGTK
173 #elif defined(__WXMAC__)
175 #include "wx/nonownedwnd.h"
176 #define wxCC_GENERIC_TLW_IS_NONOWNEDWINDOW
177 #define wxComboCtrlGenericTLW wxNonOwnedWindow
179 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
180 #define TRANSIENT_POPUPWIN_IS_PERFECT 1 // wxPopupTransientWindow works, its child can have focus, and common
181 // native controls work on it like normal.
182 #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window.
183 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
184 #define FOCUS_RING 3 // Reserve room for the textctrl's focus ring to display
186 #undef DEFAULT_DROPBUTTON_WIDTH
187 #define DEFAULT_DROPBUTTON_WIDTH 22
189 #define COMBO_MARGIN FOCUS_RING
193 #include "wx/dialog.h"
194 #define wxCC_GENERIC_TLW_IS_DIALOG
195 #define wxComboCtrlGenericTLW wxDialog
197 #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
198 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
199 // native controls work on it like normal.
200 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
201 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
207 // Popupwin is really only supported on wxMSW (not WINCE) and wxGTK, regardless
208 // what the wxUSE_POPUPWIN says.
209 // FIXME: Why isn't wxUSE_POPUPWIN reliable any longer? (it was in wxW2.6.2)
210 #if (!defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMAC__)) || defined(__WXWINCE__)
211 #undef wxUSE_POPUPWIN
212 #define wxUSE_POPUPWIN 0
217 #include "wx/popupwin.h"
219 #undef USE_TRANSIENT_POPUP
220 #define USE_TRANSIENT_POPUP 0
224 // Define different types of popup windows
228 POPUPWIN_WXPOPUPTRANSIENTWINDOW
= 1,
229 POPUPWIN_WXPOPUPWINDOW
= 2,
230 POPUPWIN_GENERICTLW
= 3
234 #if USE_TRANSIENT_POPUP
235 // wxPopupTransientWindow is implemented
237 #define wxComboPopupWindowBase wxPopupTransientWindow
238 #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPTRANSIENTWINDOW
239 #define USES_WXPOPUPTRANSIENTWINDOW 1
241 #if TRANSIENT_POPUPWIN_IS_PERFECT
243 #elif POPUPWIN_IS_PERFECT
244 #define wxComboPopupWindowBase2 wxPopupWindow
245 #define SECONDARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW
246 #define USES_WXPOPUPWINDOW 1
248 #define wxComboPopupWindowBase2 wxComboCtrlGenericTLW
249 #define SECONDARY_POPUP_TYPE POPUPWIN_GENERICTLW
250 #define USES_GENERICTLW 1
254 // wxPopupWindow (but not wxPopupTransientWindow) is properly implemented
256 #define wxComboPopupWindowBase wxPopupWindow
257 #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW
258 #define USES_WXPOPUPWINDOW 1
260 #if !POPUPWIN_IS_PERFECT
261 #define wxComboPopupWindowBase2 wxComboCtrlGenericTLW
262 #define SECONDARY_POPUP_TYPE POPUPWIN_GENERICTLW
263 #define USES_GENERICTLW 1
267 // wxPopupWindow is not implemented
269 #define wxComboPopupWindowBase wxComboCtrlGenericTLW
270 #define PRIMARY_POPUP_TYPE POPUPWIN_GENERICTLW
271 #define USES_GENERICTLW 1
276 #ifndef USES_WXPOPUPTRANSIENTWINDOW
277 #define USES_WXPOPUPTRANSIENTWINDOW 0
280 #ifndef USES_WXPOPUPWINDOW
281 #define USES_WXPOPUPWINDOW 0
284 #ifndef USES_GENERICTLW
285 #define USES_GENERICTLW 0
289 #if USES_WXPOPUPWINDOW
290 #define INSTALL_TOPLEV_HANDLER 1
292 #define INSTALL_TOPLEV_HANDLER 0
296 // Returns true if given popup window type can be classified as perfect
298 static inline bool IsPopupWinTypePerfect( wxByte popupWinType
)
300 #if POPUPWIN_IS_PERFECT && TRANSIENT_POPUPWIN_IS_PERFECT
301 wxUnusedVar(popupWinType
);
304 return ( popupWinType
== POPUPWIN_GENERICTLW
305 #if POPUPWIN_IS_PERFECT
306 || popupWinType
== POPUPWIN_WXPOPUPWINDOW
308 #if TRANSIENT_POPUPWIN_IS_PERFECT
309 || popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
318 // * wxComboPopupWindow for external use (ie. replace old wxUniv wxPopupComboWindow)
322 // ----------------------------------------------------------------------------
323 // wxComboFrameEventHandler takes care of hiding the popup when events happen
324 // in its top level parent.
325 // ----------------------------------------------------------------------------
327 #if INSTALL_TOPLEV_HANDLER
330 // This will no longer be necessary after wxTransientPopupWindow
331 // works well on all platforms.
334 class wxComboFrameEventHandler
: public wxEvtHandler
337 wxComboFrameEventHandler( wxComboCtrlBase
* pCb
);
338 virtual ~wxComboFrameEventHandler();
342 void OnIdle( wxIdleEvent
& event
);
343 void OnMouseEvent( wxMouseEvent
& event
);
344 void OnActivate( wxActivateEvent
& event
);
345 void OnResize( wxSizeEvent
& event
);
346 void OnMove( wxMoveEvent
& event
);
347 void OnMenuEvent( wxMenuEvent
& event
);
348 void OnClose( wxCloseEvent
& event
);
351 wxWindow
* m_focusStart
;
352 wxComboCtrlBase
* m_combo
;
355 DECLARE_EVENT_TABLE()
358 BEGIN_EVENT_TABLE(wxComboFrameEventHandler
, wxEvtHandler
)
359 EVT_IDLE(wxComboFrameEventHandler::OnIdle
)
360 EVT_LEFT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
361 EVT_RIGHT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
362 EVT_SIZE(wxComboFrameEventHandler::OnResize
)
363 EVT_MOVE(wxComboFrameEventHandler::OnMove
)
364 EVT_MENU_HIGHLIGHT(wxID_ANY
,wxComboFrameEventHandler::OnMenuEvent
)
365 EVT_MENU_OPEN(wxComboFrameEventHandler::OnMenuEvent
)
366 EVT_ACTIVATE(wxComboFrameEventHandler::OnActivate
)
367 EVT_CLOSE(wxComboFrameEventHandler::OnClose
)
370 wxComboFrameEventHandler::wxComboFrameEventHandler( wxComboCtrlBase
* combo
)
376 wxComboFrameEventHandler::~wxComboFrameEventHandler()
380 void wxComboFrameEventHandler::OnPopup()
382 m_focusStart
= ::wxWindow::FindFocus();
385 void wxComboFrameEventHandler::OnIdle( wxIdleEvent
& event
)
387 wxWindow
* winFocused
= ::wxWindow::FindFocus();
389 wxWindow
* popup
= m_combo
->GetPopupControl()->GetControl();
390 wxWindow
* winpopup
= m_combo
->GetPopupWindow();
393 winFocused
!= m_focusStart
&&
394 winFocused
!= popup
&&
395 winFocused
->GetParent() != popup
&&
396 winFocused
!= winpopup
&&
397 winFocused
->GetParent() != winpopup
&&
398 winFocused
!= m_combo
&&
399 winFocused
!= m_combo
->GetButton() // GTK (atleast) requires this
402 m_combo
->HidePopup(true);
408 void wxComboFrameEventHandler::OnMenuEvent( wxMenuEvent
& event
)
410 m_combo
->HidePopup(true);
414 void wxComboFrameEventHandler::OnMouseEvent( wxMouseEvent
& event
)
416 m_combo
->HidePopup(true);
420 void wxComboFrameEventHandler::OnClose( wxCloseEvent
& event
)
422 m_combo
->HidePopup(true);
426 void wxComboFrameEventHandler::OnActivate( wxActivateEvent
& event
)
428 m_combo
->HidePopup(true);
432 void wxComboFrameEventHandler::OnResize( wxSizeEvent
& event
)
434 m_combo
->HidePopup(true);
438 void wxComboFrameEventHandler::OnMove( wxMoveEvent
& event
)
440 m_combo
->HidePopup(true);
444 #endif // INSTALL_TOPLEV_HANDLER
446 // ----------------------------------------------------------------------------
447 // wxComboPopupWindow is, in essence, wxPopupWindow customized for
449 // ----------------------------------------------------------------------------
451 class wxComboPopupWindow
: public wxComboPopupWindowBase
455 wxComboPopupWindow( wxComboCtrlBase
*parent
,
457 #if USES_WXPOPUPWINDOW || USES_WXPOPUPTRANSIENTWINDOW
458 : wxComboPopupWindowBase(parent
,style
)
460 : wxComboPopupWindowBase(parent
,
471 #if USES_WXPOPUPTRANSIENTWINDOW
472 virtual bool Show( bool show
);
473 virtual bool ProcessLeftDown(wxMouseEvent
& event
);
475 virtual void OnDismiss();
483 #if USES_WXPOPUPTRANSIENTWINDOW
484 bool wxComboPopupWindow::Show( bool show
)
486 // Guard against recursion
488 return wxComboPopupWindowBase::Show(show
);
492 wxASSERT( IsKindOf(CLASSINFO(wxPopupTransientWindow
)) );
494 wxPopupTransientWindow
* ptw
= (wxPopupTransientWindow
*) this;
496 if ( show
!= ptw
->IsShown() )
499 // We used to do wxPopupTransientWindow::Popup here,
500 // but this would hide normal Show, which we are
501 // also going to need.
512 bool wxComboPopupWindow::ProcessLeftDown(wxMouseEvent
& event
)
514 return wxPopupTransientWindow::ProcessLeftDown(event
);
517 // First thing that happens when a transient popup closes is that this method gets called.
518 void wxComboPopupWindow::OnDismiss()
520 wxComboCtrlBase
* combo
= (wxComboCtrlBase
*) GetParent();
521 wxASSERT_MSG( combo
->IsKindOf(CLASSINFO(wxComboCtrlBase
)),
522 wxT("parent might not be wxComboCtrl, but check IMPLEMENT_DYNAMIC_CLASS(2) macro for correctness") );
524 combo
->OnPopupDismiss(true);
526 #endif // USES_WXPOPUPTRANSIENTWINDOW
529 // ----------------------------------------------------------------------------
530 // wxComboPopupWindowEvtHandler does bulk of the custom event handling
531 // of a popup window. It is separate so we can have different types
533 // ----------------------------------------------------------------------------
535 class wxComboPopupWindowEvtHandler
: public wxEvtHandler
539 wxComboPopupWindowEvtHandler( wxComboCtrlBase
*parent
)
544 void OnSizeEvent( wxSizeEvent
& event
);
545 void OnKeyEvent(wxKeyEvent
& event
);
547 void OnActivate( wxActivateEvent
& event
);
551 wxComboCtrlBase
* m_combo
;
553 DECLARE_EVENT_TABLE()
557 BEGIN_EVENT_TABLE(wxComboPopupWindowEvtHandler
, wxEvtHandler
)
558 EVT_KEY_DOWN(wxComboPopupWindowEvtHandler::OnKeyEvent
)
559 EVT_KEY_UP(wxComboPopupWindowEvtHandler::OnKeyEvent
)
560 EVT_CHAR(wxComboPopupWindowEvtHandler::OnKeyEvent
)
562 EVT_ACTIVATE(wxComboPopupWindowEvtHandler::OnActivate
)
564 EVT_SIZE(wxComboPopupWindowEvtHandler::OnSizeEvent
)
568 void wxComboPopupWindowEvtHandler::OnSizeEvent( wxSizeEvent
& WXUNUSED(event
) )
570 // Block the event so that the popup control does not get auto-resized.
573 void wxComboPopupWindowEvtHandler::OnKeyEvent( wxKeyEvent
& event
)
575 // Relay keyboard event to the main child controls
576 wxWindowList children
= m_combo
->GetPopupWindow()->GetChildren();
577 wxWindowList::iterator node
= children
.begin();
578 wxWindow
* child
= (wxWindow
*)*node
;
579 child
->GetEventHandler()->ProcessEvent(event
);
583 void wxComboPopupWindowEvtHandler::OnActivate( wxActivateEvent
& event
)
585 if ( !event
.GetActive() )
587 // Tell combo control that we are dismissed.
588 m_combo
->HidePopup(true);
596 // ----------------------------------------------------------------------------
599 // ----------------------------------------------------------------------------
601 wxComboPopup::~wxComboPopup()
605 void wxComboPopup::OnPopup()
609 void wxComboPopup::OnDismiss()
613 wxComboCtrl
* wxComboPopup::GetComboCtrl() const
615 return wxStaticCast(m_combo
, wxComboCtrl
);
618 wxSize
wxComboPopup::GetAdjustedSize( int minWidth
,
620 int WXUNUSED(maxHeight
) )
622 return wxSize(minWidth
,prefHeight
);
625 void wxComboPopup::DefaultPaintComboControl( wxComboCtrlBase
* combo
,
626 wxDC
& dc
, const wxRect
& rect
)
628 if ( combo
->GetWindowStyle() & wxCB_READONLY
) // ie. no textctrl
630 combo
->PrepareBackground(dc
,rect
,0);
632 dc
.DrawText( combo
->GetValue(),
633 rect
.x
+ combo
->m_marginLeft
,
634 (rect
.height
-dc
.GetCharHeight())/2 + rect
.y
);
638 void wxComboPopup::PaintComboControl( wxDC
& dc
, const wxRect
& rect
)
640 DefaultPaintComboControl(m_combo
,dc
,rect
);
643 void wxComboPopup::OnComboKeyEvent( wxKeyEvent
& event
)
648 void wxComboPopup::OnComboCharEvent( wxKeyEvent
& event
)
653 void wxComboPopup::OnComboDoubleClick()
657 void wxComboPopup::SetStringValue( const wxString
& WXUNUSED(value
) )
661 bool wxComboPopup::FindItem(const wxString
& WXUNUSED(item
),
662 wxString
* WXUNUSED(trueItem
))
667 bool wxComboPopup::LazyCreate()
672 void wxComboPopup::Dismiss()
674 m_combo
->HidePopup(true);
677 // ----------------------------------------------------------------------------
679 // ----------------------------------------------------------------------------
682 // This is pushed to the event handler queue of the child textctrl.
684 class wxComboBoxExtraInputHandler
: public wxEvtHandler
688 wxComboBoxExtraInputHandler( wxComboCtrlBase
* combo
)
693 virtual ~wxComboBoxExtraInputHandler() { }
694 void OnKey(wxKeyEvent
& event
);
695 void OnFocus(wxFocusEvent
& event
);
698 wxComboCtrlBase
* m_combo
;
701 DECLARE_EVENT_TABLE()
705 BEGIN_EVENT_TABLE(wxComboBoxExtraInputHandler
, wxEvtHandler
)
706 EVT_KEY_DOWN(wxComboBoxExtraInputHandler::OnKey
)
707 EVT_KEY_UP(wxComboBoxExtraInputHandler::OnKey
)
708 EVT_CHAR(wxComboBoxExtraInputHandler::OnKey
)
709 EVT_SET_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
710 EVT_KILL_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
714 void wxComboBoxExtraInputHandler::OnKey(wxKeyEvent
& event
)
716 // Let the wxComboCtrl event handler have a go first.
717 wxComboCtrlBase
* combo
= m_combo
;
719 wxKeyEvent
redirectedEvent(event
);
720 redirectedEvent
.SetId(combo
->GetId());
721 redirectedEvent
.SetEventObject(combo
);
723 if ( !combo
->GetEventHandler()->ProcessEvent(redirectedEvent
) )
725 // Don't let TAB through to the text ctrl - looks ugly
726 if ( event
.GetKeyCode() != WXK_TAB
)
731 void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent
& event
)
733 // FIXME: This code does run when control is clicked,
734 // yet on Windows it doesn't select all the text.
735 if ( event
.GetEventType() == wxEVT_SET_FOCUS
&&
736 !(m_combo
->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT
) )
738 if ( m_combo
->GetTextCtrl() )
739 m_combo
->GetTextCtrl()->SelectAll();
741 m_combo
->SetSelection(-1,-1);
744 // Send focus indication to parent.
745 // NB: This is needed for cases where the textctrl gets focus
746 // instead of its parent. While this may trigger multiple
747 // wxEVT_SET_FOCUSes (since m_text->SetFocus is called
748 // from combo's focus event handler), they should be quite
750 wxFocusEvent
evt2(event
);
751 evt2
.SetId(m_combo
->GetId());
752 evt2
.SetEventObject(m_combo
);
753 m_combo
->GetEventHandler()->ProcessEvent(evt2
);
760 // This is pushed to the event handler queue of the control in popup.
763 class wxComboPopupEvtHandler
: public wxEvtHandler
767 wxComboPopupEvtHandler( wxComboCtrlBase
* combo
)
771 m_beenInside
= false;
773 // Let's make it so that the popup control will not receive mouse
774 // events until mouse left button has been up.
775 m_blockEventsToPopup
= true;
777 virtual ~wxComboPopupEvtHandler() { }
779 void OnMouseEvent( wxMouseEvent
& event
);
781 // Called from wxComboCtrlBase::OnPopupDismiss
782 void OnPopupDismiss()
784 m_beenInside
= false;
785 m_blockEventsToPopup
= true;
789 wxComboCtrlBase
* m_combo
;
792 bool m_blockEventsToPopup
;
795 DECLARE_EVENT_TABLE()
799 BEGIN_EVENT_TABLE(wxComboPopupEvtHandler
, wxEvtHandler
)
800 EVT_MOUSE_EVENTS(wxComboPopupEvtHandler::OnMouseEvent
)
804 void wxComboPopupEvtHandler::OnMouseEvent( wxMouseEvent
& event
)
806 wxPoint pt
= event
.GetPosition();
807 wxSize sz
= m_combo
->GetPopupControl()->GetControl()->GetClientSize();
808 int evtType
= event
.GetEventType();
809 bool isInside
= pt
.x
>= 0 && pt
.y
>= 0 && pt
.x
< sz
.x
&& pt
.y
< sz
.y
;
810 bool relayToButton
= false;
814 if ( !isInside
|| !m_combo
->IsPopupShown() )
816 // Mouse is outside the popup or popup is not actually shown (yet)
818 if ( evtType
== wxEVT_MOTION
||
819 evtType
== wxEVT_LEFT_DOWN
||
820 evtType
== wxEVT_LEFT_UP
||
821 evtType
== wxEVT_RIGHT_DOWN
)
823 // Block motion and click events outside the popup
829 // Mouse is inside the popup, which is fully shown
833 // Do not let the popup control respond to mouse events until
834 // mouse press used to display the popup has been lifted. This
835 // is important for users with slower mouse fingers or mouse
836 // drivers. Note that we have some redundancy here, just in
837 // case the popup is some native control that does not emit all
838 // mouse event types.
839 if ( evtType
== wxEVT_MOTION
)
841 if ( m_blockEventsToPopup
)
843 if ( event
.LeftIsDown() )
846 m_blockEventsToPopup
= false;
849 else if ( evtType
== wxEVT_LEFT_DOWN
)
851 if ( m_blockEventsToPopup
)
852 m_blockEventsToPopup
= false;
854 else if ( evtType
== wxEVT_LEFT_UP
)
856 if ( m_blockEventsToPopup
)
858 // On first left up, stop blocking mouse events (but still
860 m_blockEventsToPopup
= false;
863 // Also, this button press was (probably) used to display
864 // the popup, so relay it back to the drop-down button
865 // (which supposedly originated it). This is necessary to
866 // refresh it properly.
867 relayToButton
= true;
870 else if ( m_blockEventsToPopup
)
877 // Some mouse events to popup that happen outside it, before cursor
878 // has been inside the popup, need to be ignored by it but relayed to
881 if ( evtType
== wxEVT_LEFT_UP
)
883 if ( !m_combo
->IsPopupShown() )
886 relayToButton
= true;
888 else if ( !isInside
&& !m_beenInside
)
890 // Popup is shown but the cursor is not inside, nor it has been
891 relayToButton
= true;
897 wxWindow
* btn
= m_combo
->GetButton();
899 btn
->GetEventHandler()->ProcessEvent(event
);
901 // Bypass the event handling mechanism. Using it would be
902 // confusing for the platform-specific wxComboCtrl
904 m_combo
->HandleButtonMouseEvent(event
, 0);
908 // ----------------------------------------------------------------------------
909 // wxComboCtrlTextCtrl
910 // ----------------------------------------------------------------------------
912 class wxComboCtrlTextCtrl
: public wxTextCtrl
915 wxComboCtrlTextCtrl() : wxTextCtrl() { }
916 virtual ~wxComboCtrlTextCtrl() { }
918 virtual wxWindow
*GetMainWindowOfCompositeControl()
920 wxComboCtrl
* combo
= (wxComboCtrl
*) GetParent();
922 // Returning this instead of just 'parent' lets FindFocus work
923 // correctly even when parent control is a child of a composite
924 // generic control (as is case with wxGenericDatePickerCtrl).
925 return combo
->GetMainWindowOfCompositeControl();
929 // ----------------------------------------------------------------------------
931 // ----------------------------------------------------------------------------
934 BEGIN_EVENT_TABLE(wxComboCtrlBase
, wxControl
)
935 EVT_TEXT(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
936 EVT_SIZE(wxComboCtrlBase::OnSizeEvent
)
937 EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent
)
938 EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent
)
939 EVT_IDLE(wxComboCtrlBase::OnIdleEvent
)
940 //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent)
941 EVT_KEY_DOWN(wxComboCtrlBase::OnKeyEvent
)
942 EVT_CHAR(wxComboCtrlBase::OnCharEvent
)
943 EVT_TEXT_ENTER(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
944 EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged
)
948 IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase
, wxControl
)
950 void wxComboCtrlBase::Init()
954 m_popupWinState
= Hidden
;
957 m_popupInterface
= NULL
;
959 m_popupEvtHandler
= NULL
;
960 m_textEvtHandler
= NULL
;
962 #if INSTALL_TOPLEV_HANDLER
963 m_toplevEvtHandler
= NULL
;
966 m_mainCtrlWnd
= this;
969 m_widthMinPopup
= -1;
971 m_widthCustomPaint
= 0;
972 m_widthCustomBorder
= 0;
976 m_blankButtonBg
= false;
978 m_popupWinType
= POPUPWIN_NONE
;
979 m_btnWid
= m_btnHei
= -1;
988 m_timeCanAcceptClick
= 0;
990 m_resetFocus
= false;
993 bool wxComboCtrlBase::Create(wxWindow
*parent
,
995 const wxString
& value
,
999 const wxValidator
& validator
,
1000 const wxString
& name
)
1002 if ( !wxControl::Create(parent
,
1006 style
| wxWANTS_CHARS
,
1011 m_valueString
= value
;
1015 m_marginLeft
= GetNativeTextIndent();
1017 m_iFlags
|= wxCC_IFLAG_CREATED
;
1019 // If x and y indicate valid size, wxSizeEvent won't be
1020 // emitted automatically, so we need to add artifical one.
1021 if ( size
.x
> 0 && size
.y
> 0 )
1023 wxSizeEvent
evt(size
,GetId());
1024 GetEventHandler()->AddPendingEvent(evt
);
1030 void wxComboCtrlBase::InstallInputHandlers()
1034 m_textEvtHandler
= new wxComboBoxExtraInputHandler(this);
1035 m_text
->PushEventHandler(m_textEvtHandler
);
1040 wxComboCtrlBase::CreateTextCtrl(int style
)
1042 if ( !(m_windowStyle
& wxCB_READONLY
) )
1047 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
1048 // not used by the wxPropertyGrid and therefore the tab is processed by
1049 // looking at ancestors to see if they have wxTAB_TRAVERSAL. The
1050 // navigation event is then sent to the wrong window.
1051 style
|= wxTE_PROCESS_TAB
| m_textCtrlStyle
;
1053 if ( HasFlag(wxTE_PROCESS_ENTER
) )
1054 style
|= wxTE_PROCESS_ENTER
;
1056 // Ignore EVT_TEXT generated by the constructor (but only
1057 // if the event redirector already exists)
1058 // NB: This must be " = 1" instead of "++";
1059 if ( m_textEvtHandler
)
1060 m_ignoreEvtText
= 1;
1062 m_ignoreEvtText
= 0;
1064 m_text
= new wxComboCtrlTextCtrl();
1065 m_text
->Create(this, wxID_ANY
, m_valueString
,
1066 wxDefaultPosition
, wxSize(10,-1),
1068 m_text
->SetHint(m_hintText
);
1072 void wxComboCtrlBase::OnThemeChange()
1074 // Leave the default bg on the Mac so the area used by the focus ring will
1075 // be the correct colour and themed brush. Instead we'll use
1076 // wxSYS_COLOUR_WINDOW in the EVT_PAINT handler as needed.
1078 #if defined(__WXMSW__) || defined(__WXGTK__)
1079 wxVisualAttributes vattrs
= wxComboBox::GetClassDefaultAttributes();
1081 wxVisualAttributes vattrs
;
1082 vattrs
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
1083 vattrs
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1086 // Only change the colours if application has not specified
1090 SetOwnForegroundColour(vattrs
.colFg
);
1095 SetOwnBackgroundColour(vattrs
.colBg
);
1098 #endif // !__WXMAC__
1101 wxComboCtrlBase::~wxComboCtrlBase()
1106 #if INSTALL_TOPLEV_HANDLER
1107 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
1108 m_toplevEvtHandler
= NULL
;
1114 m_text
->RemoveEventHandler(m_textEvtHandler
);
1116 delete m_textEvtHandler
;
1120 // ----------------------------------------------------------------------------
1122 // ----------------------------------------------------------------------------
1124 // Recalculates button and textctrl areas
1125 void wxComboCtrlBase::CalculateAreas( int btnWidth
)
1127 wxSize sz
= GetClientSize();
1128 int customBorder
= m_widthCustomBorder
;
1129 int btnBorder
; // border for button only
1131 // check if button should really be outside the border: we'll do it it if
1132 // its platform default or bitmap+pushbutton background is used, but not if
1133 // there is vertical size adjustment or horizontal spacing.
1134 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) ||
1135 (m_bmpNormal
.Ok() && m_blankButtonBg
) ) &&
1136 m_btnSpacingX
== 0 &&
1139 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
1142 else if ( (m_iFlags
& wxCC_BUTTON_COVERS_BORDER
) &&
1143 m_btnSpacingX
== 0 && !m_bmpNormal
.Ok() )
1145 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
1150 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
1151 btnBorder
= customBorder
;
1154 // Defaul indentation
1155 if ( m_marginLeft
< 0 )
1156 m_marginLeft
= GetNativeTextIndent();
1158 int butWidth
= btnWidth
;
1160 if ( butWidth
<= 0 )
1161 butWidth
= m_btnWidDefault
;
1163 m_btnWidDefault
= butWidth
;
1165 if ( butWidth
<= 0 )
1168 int butHeight
= sz
.y
- btnBorder
*2;
1170 // Adjust button width
1172 butWidth
= m_btnWid
;
1175 // Adjust button width to match aspect ratio
1176 // (but only if control is smaller than best size).
1177 int bestHeight
= GetBestSize().y
;
1178 int height
= GetSize().y
;
1180 if ( height
< bestHeight
)
1182 // Make very small buttons square, as it makes
1183 // them accommodate arrow image better and still
1186 butWidth
= (height
*butWidth
)/bestHeight
;
1188 butWidth
= butHeight
;
1192 // Adjust button height
1194 butHeight
= m_btnHei
;
1196 // Use size of normal bitmap if...
1199 // button width is set to default and blank button bg is not drawn
1200 if ( m_bmpNormal
.Ok() )
1202 int bmpReqWidth
= m_bmpNormal
.GetWidth();
1203 int bmpReqHeight
= m_bmpNormal
.GetHeight();
1205 // If drawing blank button background, we need to add some margin.
1206 if ( m_blankButtonBg
)
1208 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
1209 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
1212 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
1213 butWidth
= bmpReqWidth
;
1214 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
1215 butHeight
= bmpReqHeight
;
1217 // Need to fix height?
1218 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
1220 int newY
= butHeight
+(customBorder
*2);
1221 SetClientSize(wxDefaultCoord
,newY
);
1222 if ( m_bmpNormal
.Ok() || m_btnArea
.width
!= butWidth
|| m_btnArea
.height
!= butHeight
)
1223 m_iFlags
|= wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
1225 m_iFlags
&= ~wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
1231 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
1233 m_btnSize
.x
= butWidth
;
1234 m_btnSize
.y
= butHeight
;
1236 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
1237 m_btnArea
.y
= btnBorder
+ FOCUS_RING
;
1238 m_btnArea
.width
= butAreaWid
;
1239 m_btnArea
.height
= sz
.y
- ((btnBorder
+FOCUS_RING
)*2);
1241 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
+ FOCUS_RING
;
1242 m_tcArea
.y
= customBorder
+ FOCUS_RING
;
1243 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2) - (FOCUS_RING
*2);
1244 m_tcArea
.height
= sz
.y
- ((customBorder
+FOCUS_RING
)*2);
1249 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
1250 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
1255 void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
1260 wxSize sz
= GetClientSize();
1262 int customBorder
= m_widthCustomBorder
;
1263 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
1267 if ( !m_widthCustomPaint
)
1269 // No special custom paint area - we can use 0 left margin
1271 if ( m_text
->SetMargins(0) )
1272 textCtrlXAdjust
= 0;
1273 x
= m_tcArea
.x
+ m_marginLeft
+ textCtrlXAdjust
;
1277 // There is special custom paint area - it is better to
1278 // use some margin with the wxTextCtrl.
1279 m_text
->SetMargins(m_marginLeft
);
1280 x
= m_tcArea
.x
+ m_widthCustomPaint
+
1281 m_marginLeft
+ textCtrlXAdjust
;
1284 // Centre textctrl vertically, if needed
1285 #if !TEXTCTRL_TEXT_CENTERED
1286 int tcSizeY
= m_text
->GetBestSize().y
;
1287 int diff0
= sz
.y
- tcSizeY
;
1288 int y
= textCtrlYAdjust
+ (diff0
/2);
1290 wxUnusedVar(textCtrlYAdjust
);
1294 if ( y
< customBorder
)
1299 m_tcArea
.width
- m_tcArea
.x
- x
,
1302 // Make sure textctrl doesn't exceed the bottom custom border
1303 wxSize tsz
= m_text
->GetSize();
1304 int diff1
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
1307 tsz
.y
= tsz
.y
- diff1
- 1;
1308 m_text
->SetSize(tsz
);
1313 // If it has border, have textctrl fill the entire text field.
1314 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
,
1316 m_tcArea
.width
- m_widthCustomPaint
,
1321 wxSize
wxComboCtrlBase::DoGetBestSize() const
1323 wxSize
sizeText(150,0);
1326 sizeText
= m_text
->GetBestSize();
1328 // TODO: Better method to calculate close-to-native control height.
1332 fhei
= (m_font
.GetPointSize()*2) + 5;
1333 else if ( wxNORMAL_FONT
->Ok() )
1334 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
1336 fhei
= sizeText
.y
+ 4;
1338 // Need to force height to accomodate bitmap?
1339 int btnSizeY
= m_btnSize
.y
;
1340 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
1343 // Control height doesn't depend on border
1346 int border = m_windowStyle & wxBORDER_MASK;
1347 if ( border == wxSIMPLE_BORDER )
1349 else if ( border == wxNO_BORDER )
1350 fhei += (m_widthCustomBorder*2);
1356 // Final adjustments
1362 // these are the numbers from the HIG:
1363 switch ( m_windowVariant
)
1365 case wxWINDOW_VARIANT_NORMAL
:
1369 case wxWINDOW_VARIANT_SMALL
:
1372 case wxWINDOW_VARIANT_MINI
:
1378 fhei
+= 2 * FOCUS_RING
;
1379 int width
= sizeText
.x
+ FOCUS_RING
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
;
1381 wxSize
ret(width
, fhei
);
1386 void wxComboCtrlBase::OnSizeEvent( wxSizeEvent
& event
)
1391 // defined by actual wxComboCtrls
1397 // ----------------------------------------------------------------------------
1398 // standard operations
1399 // ----------------------------------------------------------------------------
1401 bool wxComboCtrlBase::Enable(bool enable
)
1403 if ( !wxControl::Enable(enable
) )
1407 m_btn
->Enable(enable
);
1409 m_text
->Enable(enable
);
1416 bool wxComboCtrlBase::Show(bool show
)
1418 if ( !wxControl::Show(show
) )
1430 bool wxComboCtrlBase::SetFont ( const wxFont
& font
)
1432 if ( !wxControl::SetFont(font
) )
1437 // Without hiding the wxTextCtrl there would be some
1438 // visible 'flicker' (at least on Windows XP).
1440 m_text
->SetFont(font
);
1449 void wxComboCtrlBase::DoSetToolTip(wxToolTip
*tooltip
)
1451 wxControl::DoSetToolTip(tooltip
);
1453 // Set tool tip for button and text box
1456 const wxString
&tip
= tooltip
->GetTip();
1457 if ( m_text
) m_text
->SetToolTip(tip
);
1458 if ( m_btn
) m_btn
->SetToolTip(tip
);
1462 if ( m_text
) m_text
->SetToolTip( NULL
);
1463 if ( m_btn
) m_btn
->SetToolTip( NULL
);
1466 #endif // wxUSE_TOOLTIPS
1468 bool wxComboCtrlBase::SetForegroundColour(const wxColour
& colour
)
1470 if ( wxControl::SetForegroundColour(colour
) )
1473 m_text
->SetForegroundColour(colour
);
1479 bool wxComboCtrlBase::SetBackgroundColour(const wxColour
& colour
)
1481 if ( wxControl::SetBackgroundColour(colour
) )
1484 m_text
->SetBackgroundColour(colour
);
1489 // ----------------------------------------------------------------------------
1491 // ----------------------------------------------------------------------------
1493 #if (!defined(__WXMSW__)) || defined(__WXUNIVERSAL__)
1494 // prepare combo box background on area in a way typical on platform
1495 void wxComboCtrlBase::PrepareBackground( wxDC
& dc
, const wxRect
& rect
, int flags
) const
1497 wxSize sz
= GetClientSize();
1499 bool doDrawFocusRect
; // also selected
1501 // For smaller size control (and for disabled background) use less spacing
1505 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1508 isEnabled
= IsEnabled();
1509 doDrawFocusRect
= ShouldDrawFocus() && !(m_iFlags
& wxCC_FULL_BUTTON
);
1511 // Windows-style: for smaller size control (and for disabled background) use less spacing
1512 focusSpacingX
= isEnabled
? 2 : 1;
1513 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1517 // Drawing a list item
1518 isEnabled
= true; // they are never disabled
1519 doDrawFocusRect
= (flags
& wxCONTROL_SELECTED
) != 0;
1525 // Set the background sub-rectangle for selection, disabled etc
1526 wxRect
selRect(rect
);
1527 selRect
.y
+= focusSpacingY
;
1528 selRect
.height
-= (focusSpacingY
*2);
1532 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1533 wcp
+= m_widthCustomPaint
;
1535 selRect
.x
+= wcp
+ focusSpacingX
;
1536 selRect
.width
-= wcp
+ (focusSpacingX
*2);
1541 bool doDrawSelRect
= true;
1543 // Determine foreground colour
1546 if ( doDrawFocusRect
)
1548 fgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1550 else if ( m_hasFgCol
)
1552 // Honour the custom foreground colour
1553 fgCol
= GetForegroundColour();
1557 fgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
1562 fgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
);
1565 // Determine background colour
1568 if ( doDrawFocusRect
)
1570 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1572 else if ( m_hasBgCol
)
1574 // Honour the custom background colour
1575 bgCol
= GetBackgroundColour();
1579 #ifndef __WXMAC__ // see note in OnThemeChange
1580 doDrawSelRect
= false;
1581 bgCol
= GetBackgroundColour();
1583 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1589 #ifndef __WXMAC__ // see note in OnThemeChange
1590 bgCol
= GetBackgroundColour();
1592 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1596 dc
.SetTextForeground( fgCol
);
1597 dc
.SetBrush( bgCol
);
1598 if ( doDrawSelRect
)
1601 dc
.DrawRectangle( selRect
);
1604 // Don't clip exactly to the selection rectangle so we can draw
1605 // to the non-selected area in front of it.
1606 wxRect
clipRect(rect
.x
,rect
.y
,
1607 (selRect
.x
+selRect
.width
)-rect
.x
,rect
.height
);
1608 dc
.SetClippingRegion(clipRect
);
1611 // Save the library size a bit for platforms that re-implement this.
1612 void wxComboCtrlBase::PrepareBackground( wxDC
&, const wxRect
&, int ) const
1617 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, int flags
)
1619 int drawState
= m_btnState
;
1621 if ( (m_iFlags
& wxCC_BUTTON_STAYS_DOWN
) &&
1622 GetPopupWindowState() >= Animating
)
1623 drawState
|= wxCONTROL_PRESSED
;
1625 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1626 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1630 // Make sure area is not larger than the control
1631 if ( drawRect
.y
< rect
.y
)
1632 drawRect
.y
= rect
.y
;
1633 if ( drawRect
.height
> rect
.height
)
1634 drawRect
.height
= rect
.height
;
1636 bool enabled
= IsEnabled();
1639 drawState
|= wxCONTROL_DISABLED
;
1641 if ( !m_bmpNormal
.Ok() )
1643 if ( flags
& Button_BitmapOnly
)
1646 // Need to clear button background even if m_btn is present
1647 if ( flags
& Button_PaintBackground
)
1651 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1652 bgCol
= GetParent()->GetBackgroundColour();
1654 bgCol
= GetBackgroundColour();
1658 dc
.DrawRectangle(rect
);
1661 // Draw standard button
1662 wxRendererNative::Get().DrawComboBoxDropButton(this,
1674 pBmp
= &m_bmpDisabled
;
1675 else if ( m_btnState
& wxCONTROL_PRESSED
)
1676 pBmp
= &m_bmpPressed
;
1677 else if ( m_btnState
& wxCONTROL_CURRENT
)
1680 pBmp
= &m_bmpNormal
;
1682 if ( m_blankButtonBg
)
1684 // If using blank button background, we need to clear its background
1685 // with button face colour instead of colour for rest of the control.
1686 if ( flags
& Button_PaintBackground
)
1688 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1689 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1692 dc
.DrawRectangle(rect
);
1695 if ( !(flags
& Button_BitmapOnly
) )
1697 wxRendererNative::Get().DrawPushButton(this,
1706 // Need to clear button background even if m_btn is present
1707 // (assume non-button background was cleared just before this call so brushes are good)
1708 if ( flags
& Button_PaintBackground
)
1709 dc
.DrawRectangle(rect
);
1712 // Draw bitmap centered in drawRect
1713 dc
.DrawBitmap(*pBmp
,
1714 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1715 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1720 void wxComboCtrlBase::RecalcAndRefresh()
1724 wxSizeEvent
evt(GetSize(),GetId());
1725 GetEventHandler()->ProcessEvent(evt
);
1730 // ----------------------------------------------------------------------------
1731 // miscellaneous event handlers
1732 // ----------------------------------------------------------------------------
1734 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1736 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
)
1738 if ( m_ignoreEvtText
> 0 )
1745 // Change event id, object and string before relaying it forward
1746 event
.SetId(GetId());
1747 wxString s
= event
.GetString();
1748 event
.SetEventObject(this);
1753 // call if cursor is on button area or mouse is captured for the button
1754 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1757 int type
= event
.GetEventType();
1759 if ( type
== wxEVT_MOTION
)
1761 if ( (flags
& wxCC_MF_ON_BUTTON
) &&
1762 IsPopupWindowState(Hidden
) )
1764 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1766 // Mouse hover begins
1767 m_btnState
|= wxCONTROL_CURRENT
;
1768 if ( HasCapture() ) // Retain pressed state.
1769 m_btnState
|= wxCONTROL_PRESSED
;
1773 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1776 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1780 else if ( type
== wxEVT_LEFT_DOWN
|| type
== wxEVT_LEFT_DCLICK
)
1782 if ( flags
& (wxCC_MF_ON_CLICK_AREA
|wxCC_MF_ON_BUTTON
) )
1784 m_btnState
|= wxCONTROL_PRESSED
;
1787 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1790 // If showing popup now, do not capture mouse or there will be interference
1794 else if ( type
== wxEVT_LEFT_UP
)
1797 // Only accept event if mouse was left-press was previously accepted
1801 if ( m_btnState
& wxCONTROL_PRESSED
)
1803 // If mouse was inside, fire the click event.
1804 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1806 if ( flags
& (wxCC_MF_ON_CLICK_AREA
|wxCC_MF_ON_BUTTON
) )
1810 m_btnState
&= ~(wxCONTROL_PRESSED
);
1814 else if ( type
== wxEVT_LEAVE_WINDOW
)
1816 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1818 m_btnState
&= ~(wxCONTROL_CURRENT
);
1821 if ( IsPopupWindowState(Hidden
) )
1823 m_btnState
&= ~(wxCONTROL_PRESSED
);
1831 // Never have 'hot' state when popup is being shown
1832 // (this is mostly needed because of the animation).
1833 if ( !IsPopupWindowState(Hidden
) )
1834 m_btnState
&= ~wxCONTROL_CURRENT
;
1839 // returns true if event was consumed or filtered
1840 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1841 int WXUNUSED(flags
) )
1843 wxLongLong t
= ::wxGetLocalTimeMillis();
1844 int evtType
= event
.GetEventType();
1846 #if USES_WXPOPUPWINDOW || USES_GENERICTLW
1847 if ( m_popupWinType
!= POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
1849 if ( IsPopupWindowState(Visible
) &&
1850 ( evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_RIGHT_DOWN
) )
1858 // Filter out clicks on button immediately after popup dismiss
1859 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1861 event
.SetEventType(0);
1868 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1870 int evtType
= event
.GetEventType();
1872 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1873 (m_windowStyle
& wxCB_READONLY
) )
1875 if ( GetPopupWindowState() >= Animating
)
1877 #if USES_WXPOPUPWINDOW
1878 // Click here always hides the popup.
1879 if ( m_popupWinType
== POPUPWIN_WXPOPUPWINDOW
)
1885 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1887 // In read-only mode, clicking the text is the
1888 // same as clicking the button.
1891 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1893 //if ( m_popupInterface->CycleValue() )
1895 if ( m_popupInterface
)
1896 m_popupInterface
->OnComboDoubleClick();
1900 else if ( evtType
== wxEVT_MOUSEWHEEL
)
1902 if ( IsPopupShown() )
1904 // relay (some) mouse events to the popup
1905 m_popup
->GetEventHandler()->ProcessEvent(event
);
1907 else if ( event
.GetWheelAxis() == 0 &&
1908 event
.GetWheelRotation() != 0 &&
1909 event
.GetModifiers() == 0 )
1911 // Translate mousewheel actions into key up/down. This is
1912 // the simplest way of getting native behaviour: scrolling the
1913 // wheel moves selection up/down by one item.
1914 wxKeyEvent
kevent(wxEVT_KEY_DOWN
);
1915 kevent
.m_keyCode
= event
.GetWheelRotation() > 0
1918 GetEventHandler()->ProcessEvent(kevent
);
1931 void wxComboCtrlBase::OnKeyEvent(wxKeyEvent
& event
)
1933 if ( IsPopupShown() )
1935 // pass it to the popped up control
1936 GetPopupControl()->GetControl()->GetEventHandler()->ProcessEvent(event
);
1940 wxWindow
* mainCtrl
= GetMainWindowOfCompositeControl();
1942 if ( mainCtrl
->GetParent()->HasFlag(wxTAB_TRAVERSAL
) )
1944 if ( mainCtrl
->HandleAsNavigationKey(event
) )
1948 if ( IsKeyPopupToggle(event
) )
1954 int comboStyle
= GetWindowStyle();
1955 wxComboPopup
* popupInterface
= GetPopupControl();
1957 if ( !popupInterface
)
1963 int keycode
= event
.GetKeyCode();
1965 if ( (comboStyle
& wxCB_READONLY
) ||
1966 (keycode
!= WXK_RIGHT
&& keycode
!= WXK_LEFT
) )
1968 popupInterface
->OnComboKeyEvent(event
);
1975 void wxComboCtrlBase::OnCharEvent(wxKeyEvent
& event
)
1977 if ( IsPopupShown() )
1979 // pass it to the popped up control
1980 GetPopupControl()->GetControl()->GetEventHandler()->ProcessEvent(event
);
1984 wxComboPopup
* popupInterface
= GetPopupControl();
1985 if ( popupInterface
)
1987 popupInterface
->OnComboCharEvent(event
);
1996 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& event
)
1998 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
2000 wxWindow
* tc
= GetTextCtrl();
2001 if ( tc
&& tc
!= DoFindFocus() )
2010 void wxComboCtrlBase::OnIdleEvent( wxIdleEvent
& WXUNUSED(event
) )
2014 m_resetFocus
= false;
2015 wxWindow
* tc
= GetTextCtrl();
2021 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
2024 // left margin may also have changed
2025 if ( !(m_iFlags
& wxCC_IFLAG_LEFT_MARGIN_SET
) )
2026 m_marginLeft
= GetNativeTextIndent();
2030 // ----------------------------------------------------------------------------
2032 // ----------------------------------------------------------------------------
2034 // Create popup window and the child control
2035 void wxComboCtrlBase::CreatePopup()
2037 wxComboPopup
* popupInterface
= m_popupInterface
;
2042 #ifdef wxComboPopupWindowBase2
2043 if ( m_iFlags
& wxCC_IFLAG_USE_ALT_POPUP
)
2045 #if !USES_GENERICTLW
2046 m_winPopup
= new wxComboPopupWindowBase2( this, wxNO_BORDER
);
2048 int tlwFlags
= wxNO_BORDER
;
2049 #ifdef wxCC_GENERIC_TLW_IS_FRAME
2050 tlwFlags
|= wxFRAME_NO_TASKBAR
;
2053 #ifdef wxCC_GENERIC_TLW_IS_NONOWNEDWINDOW
2054 m_winPopup
= new wxComboPopupWindowBase2( this, wxID_ANY
,
2055 wxPoint(-21,-21), wxSize(20, 20),
2058 m_winPopup
= new wxComboPopupWindowBase2( this, wxID_ANY
, wxEmptyString
,
2059 wxPoint(-21,-21), wxSize(20, 20),
2063 m_popupWinType
= SECONDARY_POPUP_TYPE
;
2066 #endif // wxComboPopupWindowBase2
2068 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
2069 m_popupWinType
= PRIMARY_POPUP_TYPE
;
2071 m_popupWinEvtHandler
= new wxComboPopupWindowEvtHandler(this);
2072 m_winPopup
->PushEventHandler(m_popupWinEvtHandler
);
2075 popupInterface
->Create(m_winPopup
);
2076 m_popup
= popup
= popupInterface
->GetControl();
2078 m_popupEvtHandler
= new wxComboPopupEvtHandler(this);
2079 popup
->PushEventHandler( m_popupEvtHandler
);
2081 // This may be helpful on some platforms
2082 // (eg. it bypasses a wxGTK popupwindow bug where
2083 // window is not initially hidden when it should be)
2086 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
2089 // Destroy popup window and the child control
2090 void wxComboCtrlBase::DestroyPopup()
2095 m_popup
->RemoveEventHandler(m_popupEvtHandler
);
2097 wxDELETE(m_popupEvtHandler
);
2099 wxDELETE(m_popupInterface
);
2103 m_winPopup
->RemoveEventHandler(m_popupWinEvtHandler
);
2104 wxDELETE(m_popupWinEvtHandler
);
2105 m_winPopup
->Destroy();
2112 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
2114 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
2118 iface
->InitBase(this);
2121 m_popupInterface
= iface
;
2123 if ( !iface
->LazyCreate() )
2132 // This must be done after creation
2133 if ( !m_valueString
.empty() )
2135 iface
->SetStringValue(m_valueString
);
2140 // Ensures there is atleast the default popup
2141 void wxComboCtrlBase::EnsurePopupControl()
2143 if ( !m_popupInterface
)
2144 SetPopupControl(NULL
);
2147 void wxComboCtrlBase::OnButtonClick()
2149 // Derived classes can override this method for totally custom
2151 switch ( GetPopupWindowState() )
2168 void wxComboCtrlBase::Popup()
2170 wxCommandEvent
event(wxEVT_COMMAND_COMBOBOX_DROPDOWN
, GetId());
2171 event
.SetEventObject(this);
2172 HandleWindowEvent(event
);
2177 void wxComboCtrlBase::ShowPopup()
2179 EnsurePopupControl();
2180 wxCHECK_RET( !IsPopupWindowState(Visible
), wxT("popup window already shown") );
2182 if ( IsPopupWindowState(Animating
) )
2187 // Space above and below
2193 wxSize ctrlSz
= GetSize();
2195 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
2196 scrPos
= GetParent()->ClientToScreen(GetPosition());
2198 spaceAbove
= scrPos
.y
;
2199 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
2201 maxHeightPopup
= spaceBelow
;
2202 if ( spaceAbove
> spaceBelow
)
2203 maxHeightPopup
= spaceAbove
;
2206 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
2208 if ( widthPopup
< m_widthMinPopup
)
2209 widthPopup
= m_widthMinPopup
;
2211 wxWindow
* winPopup
= m_winPopup
;
2214 // Need to disable tab traversal of parent
2216 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
2217 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
2218 // that if transient popup is open, then tab traversal is to be ignored.
2219 // However, I think this code would still be needed for cases where
2220 // transient popup doesn't work yet (wxWinCE?).
2221 wxWindow
* mainCtrl
= GetMainWindowOfCompositeControl();
2222 wxWindow
* parent
= mainCtrl
->GetParent();
2223 int parentFlags
= parent
->GetWindowStyle();
2224 if ( parentFlags
& wxTAB_TRAVERSAL
)
2226 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
2227 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
2233 winPopup
= m_winPopup
;
2243 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
2245 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
2246 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
2249 popup
->SetSize(adjustedSize
);
2251 m_popupInterface
->OnPopup();
2254 // Reposition and resize popup window
2257 wxSize szp
= popup
->GetSize();
2260 int popupY
= scrPos
.y
+ ctrlSz
.y
;
2262 // Default anchor is wxLEFT
2263 int anchorSide
= m_anchorSide
;
2265 anchorSide
= wxLEFT
;
2267 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
2268 int leftX
= scrPos
.x
- m_extLeft
;
2270 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
2273 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
2275 // If there is not enough horizontal space, anchor on the other side.
2276 // If there is no space even then, place the popup at x 0.
2277 if ( anchorSide
== wxRIGHT
)
2281 if ( (leftX
+szp
.x
) < screenWidth
)
2282 anchorSide
= wxLEFT
;
2289 if ( (leftX
+szp
.x
) >= screenWidth
)
2292 anchorSide
= wxRIGHT
;
2298 // Select x coordinate according to the anchor side
2299 if ( anchorSide
== wxRIGHT
)
2301 else if ( anchorSide
== wxLEFT
)
2306 int showFlags
= CanDeferShow
;
2308 if ( spaceBelow
< szp
.y
)
2310 popupY
= scrPos
.y
- szp
.y
;
2311 showFlags
|= ShowAbove
;
2314 #if INSTALL_TOPLEV_HANDLER
2315 // Put top level window event handler into place
2316 if ( m_popupWinType
== POPUPWIN_WXPOPUPWINDOW
)
2318 if ( !m_toplevEvtHandler
)
2319 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
2321 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
2323 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
2324 toplev
->PushEventHandler( m_toplevEvtHandler
);
2328 // Set string selection (must be this way instead of SetStringSelection)
2331 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
2332 m_text
->SelectAll();
2334 m_popupInterface
->SetStringValue( m_text
->GetValue() );
2338 // This is neede since focus/selection indication may change when popup is shown
2342 // This must be after SetStringValue
2343 m_popupWinState
= Animating
;
2345 wxRect
popupWinRect( popupX
, popupY
, szp
.x
, szp
.y
);
2348 if ( (m_iFlags
& wxCC_IFLAG_DISABLE_POPUP_ANIM
) ||
2349 AnimateShow( popupWinRect
, showFlags
) )
2351 DoShowPopup( popupWinRect
, showFlags
);
2355 bool wxComboCtrlBase::AnimateShow( const wxRect
& WXUNUSED(rect
), int WXUNUSED(flags
) )
2360 void wxComboCtrlBase::DoShowPopup( const wxRect
& rect
, int WXUNUSED(flags
) )
2362 wxWindow
* winPopup
= m_winPopup
;
2364 if ( IsPopupWindowState(Animating
) )
2366 // Make sure the popup window is shown in the right position.
2367 // Should not matter even if animation already did this.
2369 // Some platforms (GTK) may like SetSize and Move to be separate
2370 // (though the bug was probably fixed).
2371 winPopup
->SetSize( rect
);
2373 #if USES_WXPOPUPTRANSIENTWINDOW
2374 if ( m_popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
2375 ((wxPopupTransientWindow
*)winPopup
)->Popup(m_popup
);
2380 m_popupWinState
= Visible
;
2382 // If popup window was a generic top-level window, or the
2383 // wxPopupWindow implemenation on this platform is classified as
2384 // perfect, then we should be able to safely set focus to the popup
2386 if ( IsPopupWinTypePerfect(m_popupWinType
) )
2387 m_popup
->SetFocus();
2389 else if ( IsPopupWindowState(Hidden
) )
2391 // Animation was aborted
2393 wxASSERT( !winPopup
->IsShown() );
2395 m_popupWinState
= Hidden
;
2401 void wxComboCtrlBase::OnPopupDismiss(bool generateEvent
)
2403 // Just in case, avoid double dismiss
2404 if ( IsPopupWindowState(Hidden
) )
2407 // This must be set before focus - otherwise there will be recursive
2408 // OnPopupDismisses.
2409 m_popupWinState
= Hidden
;
2412 m_winPopup
->Disable();
2414 // Inform popup control itself
2415 m_popupInterface
->OnDismiss();
2417 if ( m_popupEvtHandler
)
2418 ((wxComboPopupEvtHandler
*)m_popupEvtHandler
)->OnPopupDismiss();
2420 #if INSTALL_TOPLEV_HANDLER
2421 // Remove top level window event handler
2422 if ( m_toplevEvtHandler
)
2424 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
2426 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
2430 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis();
2432 if ( m_popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
2433 m_timeCanAcceptClick
+= 150;
2435 // If cursor not on dropdown button, then clear its state
2436 // (technically not required by all ports, but do it for all just in case)
2437 if ( !m_btnArea
.Contains(ScreenToClient(::wxGetMousePosition())) )
2440 // Return parent's tab traversal flag.
2441 // See ShowPopup for notes.
2442 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
2444 wxWindow
* parent
= GetParent();
2445 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
2446 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
2449 // refresh control (necessary even if m_text)
2454 if ( generateEvent
)
2456 wxCommandEvent
event(wxEVT_COMMAND_COMBOBOX_CLOSEUP
, GetId());
2457 event
.SetEventObject(this);
2458 HandleWindowEvent(event
);
2462 void wxComboCtrlBase::HidePopup(bool generateEvent
)
2464 // Should be able to call this without popup interface
2465 if ( IsPopupWindowState(Hidden
) )
2468 // transfer value and show it in textctrl, if any
2469 if ( !IsPopupWindowState(Animating
) )
2470 SetValueByUser( m_popupInterface
->GetStringValue() );
2474 OnPopupDismiss(generateEvent
);
2477 // ----------------------------------------------------------------------------
2478 // customization methods
2479 // ----------------------------------------------------------------------------
2481 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
2482 int side
, int spacingX
)
2487 m_btnSpacingX
= spacingX
;
2489 if ( width
> 0 || height
> 0 || spacingX
)
2490 m_iFlags
|= wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
2495 wxSize
wxComboCtrlBase::GetButtonSize()
2497 if ( m_btnSize
.x
> 0 )
2500 wxSize
retSize(m_btnWid
,m_btnHei
);
2502 // Need to call CalculateAreas now if button size is
2503 // is not explicitly specified.
2504 if ( retSize
.x
<= 0 || retSize
.y
<= 0)
2508 retSize
= m_btnSize
;
2514 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
2516 const wxBitmap
& bmpPressed
,
2517 const wxBitmap
& bmpHover
,
2518 const wxBitmap
& bmpDisabled
)
2520 m_bmpNormal
= bmpNormal
;
2521 m_blankButtonBg
= blankButtonBg
;
2523 if ( bmpPressed
.Ok() )
2524 m_bmpPressed
= bmpPressed
;
2526 m_bmpPressed
= bmpNormal
;
2528 if ( bmpHover
.Ok() )
2529 m_bmpHover
= bmpHover
;
2531 m_bmpHover
= bmpNormal
;
2533 if ( bmpDisabled
.Ok() )
2534 m_bmpDisabled
= bmpDisabled
;
2536 m_bmpDisabled
= bmpNormal
;
2541 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
2545 // move textctrl accordingly
2546 wxRect r
= m_text
->GetRect();
2547 int inc
= width
- m_widthCustomPaint
;
2550 m_text
->SetSize( r
);
2553 m_widthCustomPaint
= width
;
2558 bool wxComboCtrlBase::DoSetMargins(const wxPoint
& margins
)
2560 // For general sanity's sake, we ignore top margin. Instead
2561 // we will always try to center the text vertically.
2564 if ( margins
.x
!= -1 )
2566 m_marginLeft
= margins
.x
;
2567 m_iFlags
|= wxCC_IFLAG_LEFT_MARGIN_SET
;
2571 m_marginLeft
= GetNativeTextIndent();
2572 m_iFlags
&= ~(wxCC_IFLAG_LEFT_MARGIN_SET
);
2575 if ( margins
.y
!= -1 )
2585 wxPoint
wxComboCtrlBase::DoGetMargins() const
2587 return wxPoint(m_marginLeft
, -1);
2590 #if WXWIN_COMPATIBILITY_2_8
2591 void wxComboCtrlBase::SetTextIndent( int indent
)
2595 m_marginLeft
= GetNativeTextIndent();
2596 m_iFlags
&= ~(wxCC_IFLAG_LEFT_MARGIN_SET
);
2600 m_marginLeft
= indent
;
2601 m_iFlags
|= wxCC_IFLAG_LEFT_MARGIN_SET
;
2607 wxCoord
wxComboCtrlBase::GetTextIndent() const
2609 return m_marginLeft
;
2613 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
2615 return DEFAULT_TEXT_INDENT
;
2618 void wxComboCtrlBase::SetTextCtrlStyle( int style
)
2620 m_textCtrlStyle
= style
;
2623 m_text
->SetWindowStyle(style
);
2626 // ----------------------------------------------------------------------------
2627 // wxTextEntry interface
2628 // ----------------------------------------------------------------------------
2630 wxString
wxComboCtrlBase::DoGetValue() const
2633 return m_text
->GetValue();
2634 return m_valueString
;
2637 void wxComboCtrlBase::SetValueWithEvent(const wxString
& value
,
2640 DoSetValue(value
, withEvent
? SetValue_SendEvent
: 0);
2643 void wxComboCtrlBase::OnSetValue(const wxString
& value
)
2645 // Note: before wxComboCtrl inherited from wxTextEntry,
2646 // this code used to be in SetValueWithEvent().
2648 // Since wxComboPopup may want to paint the combo as well, we need
2649 // to set the string value here (as well as sometimes in ShowPopup).
2650 if ( m_valueString
!= value
)
2653 wxString trueValue
= value
;
2655 // Conform to wxComboBox behavior: read-only control can only accept
2656 // valid list items and empty string
2657 if ( m_popupInterface
&& HasFlag(wxCB_READONLY
) && value
.length() )
2659 found
= m_popupInterface
->FindItem(value
,
2665 m_valueString
= trueValue
;
2667 EnsurePopupControl();
2669 if ( m_popupInterface
)
2670 m_popupInterface
->SetStringValue(trueValue
);
2677 void wxComboCtrlBase::SetValueByUser(const wxString
& value
)
2679 // NB: Order of function calls is important here. Otherwise
2680 // the SelectAll() may not work.
2684 m_text
->SetValue(value
);
2686 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
2687 m_text
->SelectAll();
2693 // In this SetValue variant wxComboPopup::SetStringValue is not called
2694 void wxComboCtrlBase::SetText(const wxString
& value
)
2696 // Unlike in SetValue(), this must be called here or
2697 // the behaviour will no be consistent in readonlys.
2698 EnsurePopupControl();
2700 m_valueString
= value
;
2705 m_text
->SetValue( value
);
2711 void wxComboCtrlBase::Copy()
2717 void wxComboCtrlBase::Cut()
2723 void wxComboCtrlBase::Paste()
2729 void wxComboCtrlBase::SetInsertionPoint(long pos
)
2732 m_text
->SetInsertionPoint(pos
);
2735 long wxComboCtrlBase::GetInsertionPoint() const
2738 return m_text
->GetInsertionPoint();
2743 long wxComboCtrlBase::GetLastPosition() const
2746 return m_text
->GetLastPosition();
2751 void wxComboCtrlBase::WriteText(const wxString
& text
)
2755 m_text
->WriteText(text
);
2756 OnSetValue(m_text
->GetValue());
2764 void wxComboCtrlBase::DoSetValue(const wxString
& value
, int flags
)
2768 if ( flags
& SetValue_SendEvent
)
2769 m_text
->SetValue(value
);
2771 m_text
->ChangeValue(value
);
2777 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2781 m_text
->Replace(from
, to
, value
);
2782 OnSetValue(m_text
->GetValue());
2786 void wxComboCtrlBase::Remove(long from
, long to
)
2790 m_text
->Remove(from
, to
);
2791 OnSetValue(m_text
->GetValue());
2795 void wxComboCtrlBase::SetSelection(long from
, long to
)
2798 m_text
->SetSelection(from
, to
);
2801 void wxComboCtrlBase::GetSelection(long *from
, long *to
) const
2805 m_text
->GetSelection(from
, to
);
2814 bool wxComboCtrlBase::IsEditable() const
2817 return m_text
->IsEditable();
2821 void wxComboCtrlBase::SetEditable(bool editable
)
2824 m_text
->SetEditable(editable
);
2827 void wxComboCtrlBase::Undo()
2833 void wxComboCtrlBase::Redo()
2839 bool wxComboCtrlBase::CanUndo() const
2842 return m_text
->CanUndo();
2847 bool wxComboCtrlBase::CanRedo() const
2850 return m_text
->CanRedo();
2855 bool wxComboCtrlBase::SetHint(const wxString
& hint
)
2860 res
= m_text
->SetHint(hint
);
2865 wxString
wxComboCtrlBase::GetHint() const
2870 #endif // wxUSE_COMBOCTRL