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"
28 #include "wx/combobox.h"
33 #include "wx/dcclient.h"
34 #include "wx/settings.h"
36 #include "wx/textctrl.h"
39 #include "wx/tooltip.h"
46 // ----------------------------------------------------------------------------
48 #define DEFAULT_DROPBUTTON_WIDTH 19
50 #define BMP_BUTTON_MARGIN 4
52 #define DEFAULT_POPUP_HEIGHT 400
54 #define DEFAULT_TEXT_INDENT 3
56 #define COMBO_MARGIN 2 // spacing right of wxTextCtrl
59 #if defined(__WXMSW__)
61 // Let's use wxFrame as a fall-back solution until wxMSW gets wxNonOwnedWindow
63 #define wxCC_GENERIC_TLW_IS_FRAME
64 #define wxComboCtrlGenericTLW wxFrame
66 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
67 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
68 // native controls work on it like normal.
69 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
70 #define TEXTCTRL_TEXT_CENTERED 0 // 1 if text in textctrl is vertically centered
71 #define FOCUS_RING 0 // No focus ring on wxMSW
73 //#undef wxUSE_POPUPWIN
74 //#define wxUSE_POPUPWIN 0
76 #elif defined(__WXGTK__)
78 // NB: It is not recommended to use wxDialog as popup on wxGTK, because of
79 // this bug: If wxDialog is hidden, its position becomes corrupt
80 // between hide and next show, but without internal coordinates being
81 // reflected (or something like that - atleast commenting out ->Hide()
82 // seemed to eliminate the position change).
84 #include "wx/dialog.h"
85 #define wxCC_GENERIC_TLW_IS_DIALOG
86 #define wxComboCtrlGenericTLW wxDialog
88 #if defined(__WXGTK20__)
89 # include "wx/gtk/private.h"
91 # include "wx/gtk1/private.h"
94 // NB: Let's not be afraid to use wxGTK's wxPopupTransientWindow as a
95 // 'perfect' popup, as it can succesfully host child controls even in
96 // popups that are shown in modal dialogs.
98 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
99 #define TRANSIENT_POPUPWIN_IS_PERFECT 1 // wxPopupTransientWindow works, its child can have focus, and common
100 // native controls work on it like normal.
101 #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window.
102 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
103 #define FOCUS_RING 0 // No focus ring on wxGTK
105 #elif defined(__WXMAC__)
107 #include "wx/nonownedwnd.h"
108 #define wxCC_GENERIC_TLW_IS_NONOWNEDWINDOW
109 #define wxComboCtrlGenericTLW wxNonOwnedWindow
111 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
112 #define TRANSIENT_POPUPWIN_IS_PERFECT 1 // wxPopupTransientWindow works, its child can have focus, and common
113 // native controls work on it like normal.
114 #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window.
115 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
116 #define FOCUS_RING 3 // Reserve room for the textctrl's focus ring to display
118 #undef DEFAULT_DROPBUTTON_WIDTH
119 #define DEFAULT_DROPBUTTON_WIDTH 22
121 #define COMBO_MARGIN FOCUS_RING
125 #include "wx/dialog.h"
126 #define wxCC_GENERIC_TLW_IS_DIALOG
127 #define wxComboCtrlGenericTLW wxDialog
129 #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
130 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
131 // native controls work on it like normal.
132 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
133 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
139 // Popupwin is really only supported on wxMSW (not WINCE) and wxGTK, regardless
140 // what the wxUSE_POPUPWIN says.
141 // FIXME: Why isn't wxUSE_POPUPWIN reliable any longer? (it was in wxW2.6.2)
142 #if (!defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMAC__)) || defined(__WXWINCE__)
143 #undef wxUSE_POPUPWIN
144 #define wxUSE_POPUPWIN 0
149 #include "wx/popupwin.h"
151 #undef USE_TRANSIENT_POPUP
152 #define USE_TRANSIENT_POPUP 0
156 // Define different types of popup windows
160 POPUPWIN_WXPOPUPTRANSIENTWINDOW
= 1,
161 POPUPWIN_WXPOPUPWINDOW
= 2,
162 POPUPWIN_GENERICTLW
= 3
166 #if USE_TRANSIENT_POPUP
167 // wxPopupTransientWindow is implemented
169 #define wxComboPopupWindowBase wxPopupTransientWindow
170 #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPTRANSIENTWINDOW
171 #define USES_WXPOPUPTRANSIENTWINDOW 1
173 #if TRANSIENT_POPUPWIN_IS_PERFECT
175 #elif POPUPWIN_IS_PERFECT
176 #define wxComboPopupWindowBase2 wxPopupWindow
177 #define SECONDARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW
178 #define USES_WXPOPUPWINDOW 1
180 #define wxComboPopupWindowBase2 wxComboCtrlGenericTLW
181 #define SECONDARY_POPUP_TYPE POPUPWIN_GENERICTLW
182 #define USES_GENERICTLW 1
186 // wxPopupWindow (but not wxPopupTransientWindow) is properly implemented
188 #define wxComboPopupWindowBase wxPopupWindow
189 #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW
190 #define USES_WXPOPUPWINDOW 1
192 #if !POPUPWIN_IS_PERFECT
193 #define wxComboPopupWindowBase2 wxComboCtrlGenericTLW
194 #define SECONDARY_POPUP_TYPE POPUPWIN_GENERICTLW
195 #define USES_GENERICTLW 1
199 // wxPopupWindow is not implemented
201 #define wxComboPopupWindowBase wxComboCtrlGenericTLW
202 #define PRIMARY_POPUP_TYPE POPUPWIN_GENERICTLW
203 #define USES_GENERICTLW 1
208 #ifndef USES_WXPOPUPTRANSIENTWINDOW
209 #define USES_WXPOPUPTRANSIENTWINDOW 0
212 #ifndef USES_WXPOPUPWINDOW
213 #define USES_WXPOPUPWINDOW 0
216 #ifndef USES_GENERICTLW
217 #define USES_GENERICTLW 0
221 #if USES_WXPOPUPWINDOW
222 #define INSTALL_TOPLEV_HANDLER 1
224 #define INSTALL_TOPLEV_HANDLER 0
228 // Returns true if given popup window type can be classified as perfect
230 static inline bool IsPopupWinTypePerfect( wxByte popupWinType
)
232 #if POPUPWIN_IS_PERFECT && TRANSIENT_POPUPWIN_IS_PERFECT
233 wxUnusedVar(popupWinType
);
236 return ( popupWinType
== POPUPWIN_GENERICTLW
237 #if POPUPWIN_IS_PERFECT
238 || popupWinType
== POPUPWIN_WXPOPUPWINDOW
240 #if TRANSIENT_POPUPWIN_IS_PERFECT
241 || popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
250 // * wxComboPopupWindow for external use (ie. replace old wxUniv wxPopupComboWindow)
254 // ----------------------------------------------------------------------------
255 // wxComboFrameEventHandler takes care of hiding the popup when events happen
256 // in its top level parent.
257 // ----------------------------------------------------------------------------
259 #if INSTALL_TOPLEV_HANDLER
262 // This will no longer be necessary after wxTransientPopupWindow
263 // works well on all platforms.
266 class wxComboFrameEventHandler
: public wxEvtHandler
269 wxComboFrameEventHandler( wxComboCtrlBase
* pCb
);
270 virtual ~wxComboFrameEventHandler();
274 void OnIdle( wxIdleEvent
& event
);
275 void OnMouseEvent( wxMouseEvent
& event
);
276 void OnActivate( wxActivateEvent
& event
);
277 void OnResize( wxSizeEvent
& event
);
278 void OnMove( wxMoveEvent
& event
);
279 void OnMenuEvent( wxMenuEvent
& event
);
280 void OnClose( wxCloseEvent
& event
);
283 wxWindow
* m_focusStart
;
284 wxComboCtrlBase
* m_combo
;
287 DECLARE_EVENT_TABLE()
290 BEGIN_EVENT_TABLE(wxComboFrameEventHandler
, wxEvtHandler
)
291 EVT_IDLE(wxComboFrameEventHandler::OnIdle
)
292 EVT_LEFT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
293 EVT_RIGHT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
294 EVT_SIZE(wxComboFrameEventHandler::OnResize
)
295 EVT_MOVE(wxComboFrameEventHandler::OnMove
)
296 EVT_MENU_HIGHLIGHT(wxID_ANY
,wxComboFrameEventHandler::OnMenuEvent
)
297 EVT_MENU_OPEN(wxComboFrameEventHandler::OnMenuEvent
)
298 EVT_ACTIVATE(wxComboFrameEventHandler::OnActivate
)
299 EVT_CLOSE(wxComboFrameEventHandler::OnClose
)
302 wxComboFrameEventHandler::wxComboFrameEventHandler( wxComboCtrlBase
* combo
)
308 wxComboFrameEventHandler::~wxComboFrameEventHandler()
312 void wxComboFrameEventHandler::OnPopup()
314 m_focusStart
= ::wxWindow::FindFocus();
317 void wxComboFrameEventHandler::OnIdle( wxIdleEvent
& event
)
319 wxWindow
* winFocused
= ::wxWindow::FindFocus();
321 wxWindow
* popup
= m_combo
->GetPopupControl()->GetControl();
322 wxWindow
* winpopup
= m_combo
->GetPopupWindow();
325 winFocused
!= m_focusStart
&&
326 winFocused
!= popup
&&
327 winFocused
->GetParent() != popup
&&
328 winFocused
!= winpopup
&&
329 winFocused
->GetParent() != winpopup
&&
330 winFocused
!= m_combo
&&
331 winFocused
!= m_combo
->GetButton() // GTK (atleast) requires this
334 m_combo
->HidePopup(true);
340 void wxComboFrameEventHandler::OnMenuEvent( wxMenuEvent
& event
)
342 m_combo
->HidePopup(true);
346 void wxComboFrameEventHandler::OnMouseEvent( wxMouseEvent
& event
)
348 m_combo
->HidePopup(true);
352 void wxComboFrameEventHandler::OnClose( wxCloseEvent
& event
)
354 m_combo
->HidePopup(true);
358 void wxComboFrameEventHandler::OnActivate( wxActivateEvent
& event
)
360 m_combo
->HidePopup(true);
364 void wxComboFrameEventHandler::OnResize( wxSizeEvent
& event
)
366 m_combo
->HidePopup(true);
370 void wxComboFrameEventHandler::OnMove( wxMoveEvent
& event
)
372 m_combo
->HidePopup(true);
376 #endif // INSTALL_TOPLEV_HANDLER
378 // ----------------------------------------------------------------------------
379 // wxComboPopupWindow is, in essence, wxPopupWindow customized for
381 // ----------------------------------------------------------------------------
383 class wxComboPopupWindow
: public wxComboPopupWindowBase
387 wxComboPopupWindow( wxComboCtrlBase
*parent
,
389 #if USES_WXPOPUPWINDOW || USES_WXPOPUPTRANSIENTWINDOW
390 : wxComboPopupWindowBase(parent
,style
)
392 : wxComboPopupWindowBase(parent
,
403 #if USES_WXPOPUPTRANSIENTWINDOW
404 virtual bool Show( bool show
);
405 virtual bool ProcessLeftDown(wxMouseEvent
& event
);
407 virtual void OnDismiss();
415 #if USES_WXPOPUPTRANSIENTWINDOW
416 bool wxComboPopupWindow::Show( bool show
)
418 // Guard against recursion
420 return wxComboPopupWindowBase::Show(show
);
424 wxASSERT( IsKindOf(CLASSINFO(wxPopupTransientWindow
)) );
426 wxPopupTransientWindow
* ptw
= (wxPopupTransientWindow
*) this;
428 if ( show
!= ptw
->IsShown() )
431 // We used to do wxPopupTransientWindow::Popup here,
432 // but this would hide normal Show, which we are
433 // also going to need.
444 bool wxComboPopupWindow::ProcessLeftDown(wxMouseEvent
& event
)
446 return wxPopupTransientWindow::ProcessLeftDown(event
);
449 // First thing that happens when a transient popup closes is that this method gets called.
450 void wxComboPopupWindow::OnDismiss()
452 wxComboCtrlBase
* combo
= (wxComboCtrlBase
*) GetParent();
453 wxASSERT_MSG( combo
->IsKindOf(CLASSINFO(wxComboCtrlBase
)),
454 wxT("parent might not be wxComboCtrl, but check IMPLEMENT_DYNAMIC_CLASS(2) macro for correctness") );
456 combo
->OnPopupDismiss(true);
458 #endif // USES_WXPOPUPTRANSIENTWINDOW
461 // ----------------------------------------------------------------------------
462 // wxComboPopupWindowEvtHandler does bulk of the custom event handling
463 // of a popup window. It is separate so we can have different types
465 // ----------------------------------------------------------------------------
467 class wxComboPopupWindowEvtHandler
: public wxEvtHandler
471 wxComboPopupWindowEvtHandler( wxComboCtrlBase
*parent
)
476 void OnSizeEvent( wxSizeEvent
& event
);
477 void OnKeyEvent(wxKeyEvent
& event
);
479 void OnActivate( wxActivateEvent
& event
);
483 wxComboCtrlBase
* m_combo
;
485 DECLARE_EVENT_TABLE()
489 BEGIN_EVENT_TABLE(wxComboPopupWindowEvtHandler
, wxEvtHandler
)
490 EVT_KEY_DOWN(wxComboPopupWindowEvtHandler::OnKeyEvent
)
491 EVT_KEY_UP(wxComboPopupWindowEvtHandler::OnKeyEvent
)
492 EVT_CHAR(wxComboPopupWindowEvtHandler::OnKeyEvent
)
494 EVT_ACTIVATE(wxComboPopupWindowEvtHandler::OnActivate
)
496 EVT_SIZE(wxComboPopupWindowEvtHandler::OnSizeEvent
)
500 void wxComboPopupWindowEvtHandler::OnSizeEvent( wxSizeEvent
& WXUNUSED(event
) )
502 // Block the event so that the popup control does not get auto-resized.
505 void wxComboPopupWindowEvtHandler::OnKeyEvent( wxKeyEvent
& event
)
507 // Relay keyboard event to the main child controls
508 wxWindowList children
= m_combo
->GetPopupWindow()->GetChildren();
509 wxWindowList::iterator node
= children
.begin();
510 wxWindow
* child
= (wxWindow
*)*node
;
511 child
->GetEventHandler()->ProcessEvent(event
);
515 void wxComboPopupWindowEvtHandler::OnActivate( wxActivateEvent
& event
)
517 if ( !event
.GetActive() )
519 // Tell combo control that we are dismissed.
520 m_combo
->HidePopup(true);
528 // ----------------------------------------------------------------------------
531 // ----------------------------------------------------------------------------
533 wxComboPopup::~wxComboPopup()
537 void wxComboPopup::OnPopup()
541 void wxComboPopup::OnDismiss()
545 wxComboCtrl
* wxComboPopup::GetComboCtrl() const
547 return wxStaticCast(m_combo
, wxComboCtrl
);
550 wxSize
wxComboPopup::GetAdjustedSize( int minWidth
,
552 int WXUNUSED(maxHeight
) )
554 return wxSize(minWidth
,prefHeight
);
557 void wxComboPopup::DefaultPaintComboControl( wxComboCtrlBase
* combo
,
558 wxDC
& dc
, const wxRect
& rect
)
560 if ( combo
->GetWindowStyle() & wxCB_READONLY
) // ie. no textctrl
562 combo
->PrepareBackground(dc
,rect
,0);
564 dc
.DrawText( combo
->GetValue(),
565 rect
.x
+ combo
->m_marginLeft
,
566 (rect
.height
-dc
.GetCharHeight())/2 + rect
.y
);
570 void wxComboPopup::PaintComboControl( wxDC
& dc
, const wxRect
& rect
)
572 DefaultPaintComboControl(m_combo
,dc
,rect
);
575 void wxComboPopup::OnComboKeyEvent( wxKeyEvent
& event
)
580 void wxComboPopup::OnComboCharEvent( wxKeyEvent
& event
)
585 void wxComboPopup::OnComboDoubleClick()
589 void wxComboPopup::SetStringValue( const wxString
& WXUNUSED(value
) )
593 bool wxComboPopup::LazyCreate()
598 void wxComboPopup::Dismiss()
600 m_combo
->HidePopup(true);
603 // ----------------------------------------------------------------------------
605 // ----------------------------------------------------------------------------
608 // This is pushed to the event handler queue of the child textctrl.
610 class wxComboBoxExtraInputHandler
: public wxEvtHandler
614 wxComboBoxExtraInputHandler( wxComboCtrlBase
* combo
)
619 virtual ~wxComboBoxExtraInputHandler() { }
620 void OnKey(wxKeyEvent
& event
);
621 void OnFocus(wxFocusEvent
& event
);
624 wxComboCtrlBase
* m_combo
;
627 DECLARE_EVENT_TABLE()
631 BEGIN_EVENT_TABLE(wxComboBoxExtraInputHandler
, wxEvtHandler
)
632 EVT_KEY_DOWN(wxComboBoxExtraInputHandler::OnKey
)
633 EVT_KEY_UP(wxComboBoxExtraInputHandler::OnKey
)
634 EVT_CHAR(wxComboBoxExtraInputHandler::OnKey
)
635 EVT_SET_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
636 EVT_KILL_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
640 void wxComboBoxExtraInputHandler::OnKey(wxKeyEvent
& event
)
642 // Let the wxComboCtrl event handler have a go first.
643 wxComboCtrlBase
* combo
= m_combo
;
645 wxKeyEvent
redirectedEvent(event
);
646 redirectedEvent
.SetId(combo
->GetId());
647 redirectedEvent
.SetEventObject(combo
);
649 if ( !combo
->GetEventHandler()->ProcessEvent(redirectedEvent
) )
651 // Don't let TAB through to the text ctrl - looks ugly
652 if ( event
.GetKeyCode() != WXK_TAB
)
657 void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent
& event
)
659 // FIXME: This code does run when control is clicked,
660 // yet on Windows it doesn't select all the text.
661 if ( event
.GetEventType() == wxEVT_SET_FOCUS
&&
662 !(m_combo
->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT
) )
664 if ( m_combo
->GetTextCtrl() )
665 m_combo
->GetTextCtrl()->SelectAll();
667 m_combo
->SetSelection(-1,-1);
670 // Send focus indication to parent.
671 // NB: This is needed for cases where the textctrl gets focus
672 // instead of its parent. While this may trigger multiple
673 // wxEVT_SET_FOCUSes (since m_text->SetFocus is called
674 // from combo's focus event handler), they should be quite
676 wxFocusEvent
evt2(event
);
677 evt2
.SetId(m_combo
->GetId());
678 evt2
.SetEventObject(m_combo
);
679 m_combo
->GetEventHandler()->ProcessEvent(evt2
);
686 // This is pushed to the event handler queue of the control in popup.
689 class wxComboPopupEvtHandler
: public wxEvtHandler
693 wxComboPopupEvtHandler( wxComboCtrlBase
* combo
)
697 m_beenInside
= false;
699 // Let's make it so that the popup control will not receive mouse
700 // events until mouse left button has been up.
701 m_blockEventsToPopup
= true;
703 virtual ~wxComboPopupEvtHandler() { }
705 void OnMouseEvent( wxMouseEvent
& event
);
707 // Called from wxComboCtrlBase::OnPopupDismiss
708 void OnPopupDismiss()
710 m_beenInside
= false;
711 m_blockEventsToPopup
= true;
715 wxComboCtrlBase
* m_combo
;
718 bool m_blockEventsToPopup
;
721 DECLARE_EVENT_TABLE()
725 BEGIN_EVENT_TABLE(wxComboPopupEvtHandler
, wxEvtHandler
)
726 EVT_MOUSE_EVENTS(wxComboPopupEvtHandler::OnMouseEvent
)
730 void wxComboPopupEvtHandler::OnMouseEvent( wxMouseEvent
& event
)
732 wxPoint pt
= event
.GetPosition();
733 wxSize sz
= m_combo
->GetPopupControl()->GetControl()->GetClientSize();
734 int evtType
= event
.GetEventType();
735 bool isInside
= pt
.x
>= 0 && pt
.y
>= 0 && pt
.x
< sz
.x
&& pt
.y
< sz
.y
;
736 bool relayToButton
= false;
740 if ( !isInside
|| !m_combo
->IsPopupShown() )
742 // Mouse is outside the popup or popup is not actually shown (yet)
744 if ( evtType
== wxEVT_MOTION
||
745 evtType
== wxEVT_LEFT_DOWN
||
746 evtType
== wxEVT_LEFT_UP
||
747 evtType
== wxEVT_RIGHT_DOWN
)
749 // Block motion and click events outside the popup
755 // Mouse is inside the popup, which is fully shown
759 // Do not let the popup control respond to mouse events until
760 // mouse press used to display the popup has been lifted. This
761 // is important for users with slower mouse fingers or mouse
762 // drivers. Note that we have some redundancy here, just in
763 // case the popup is some native control that does not emit all
764 // mouse event types.
765 if ( evtType
== wxEVT_MOTION
)
767 if ( m_blockEventsToPopup
)
769 if ( event
.LeftIsDown() )
772 m_blockEventsToPopup
= false;
775 else if ( evtType
== wxEVT_LEFT_DOWN
)
777 if ( m_blockEventsToPopup
)
778 m_blockEventsToPopup
= false;
780 else if ( evtType
== wxEVT_LEFT_UP
)
782 if ( m_blockEventsToPopup
)
784 // On first left up, stop blocking mouse events (but still
786 m_blockEventsToPopup
= false;
789 // Also, this button press was (probably) used to display
790 // the popup, so relay it back to the drop-down button
791 // (which supposedly originated it). This is necessary to
792 // refresh it properly.
793 relayToButton
= true;
796 else if ( m_blockEventsToPopup
)
803 // Some mouse events to popup that happen outside it, before cursor
804 // has been inside the popup, need to be ignored by it but relayed to
807 if ( evtType
== wxEVT_LEFT_UP
)
809 if ( !m_combo
->IsPopupShown() )
812 relayToButton
= true;
814 else if ( !isInside
&& !m_beenInside
)
816 // Popup is shown but the cursor is not inside, nor it has been
817 relayToButton
= true;
823 wxWindow
* btn
= m_combo
->GetButton();
825 btn
->GetEventHandler()->ProcessEvent(event
);
827 // Bypass the event handling mechanism. Using it would be
828 // confusing for the platform-specific wxComboCtrl
830 m_combo
->HandleButtonMouseEvent(event
, 0);
834 // ----------------------------------------------------------------------------
835 // wxComboCtrlTextCtrl
836 // ----------------------------------------------------------------------------
838 class wxComboCtrlTextCtrl
: public wxTextCtrl
841 wxComboCtrlTextCtrl() : wxTextCtrl() { }
842 virtual ~wxComboCtrlTextCtrl() { }
844 virtual wxWindow
*GetMainWindowOfCompositeControl()
846 wxComboCtrl
* combo
= (wxComboCtrl
*) GetParent();
848 // Returning this instead of just 'parent' lets FindFocus work
849 // correctly even when parent control is a child of a composite
850 // generic control (as is case with wxGenericDatePickerCtrl).
851 return combo
->GetMainWindowOfCompositeControl();
855 // ----------------------------------------------------------------------------
857 // ----------------------------------------------------------------------------
860 BEGIN_EVENT_TABLE(wxComboCtrlBase
, wxControl
)
861 EVT_TEXT(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
862 EVT_SIZE(wxComboCtrlBase::OnSizeEvent
)
863 EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent
)
864 EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent
)
865 EVT_IDLE(wxComboCtrlBase::OnIdleEvent
)
866 //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent)
867 EVT_KEY_DOWN(wxComboCtrlBase::OnKeyEvent
)
868 EVT_CHAR(wxComboCtrlBase::OnCharEvent
)
869 EVT_TEXT_ENTER(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
870 EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged
)
874 IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase
, wxControl
)
876 void wxComboCtrlBase::Init()
880 m_popupWinState
= Hidden
;
883 m_popupInterface
= NULL
;
885 m_popupEvtHandler
= NULL
;
886 m_textEvtHandler
= NULL
;
888 #if INSTALL_TOPLEV_HANDLER
889 m_toplevEvtHandler
= NULL
;
892 m_mainCtrlWnd
= this;
895 m_widthMinPopup
= -1;
897 m_widthCustomPaint
= 0;
898 m_widthCustomBorder
= 0;
902 m_blankButtonBg
= false;
904 m_popupWinType
= POPUPWIN_NONE
;
905 m_btnWid
= m_btnHei
= -1;
914 m_timeCanAcceptClick
= 0;
916 m_resetFocus
= false;
919 bool wxComboCtrlBase::Create(wxWindow
*parent
,
921 const wxString
& value
,
925 const wxValidator
& validator
,
926 const wxString
& name
)
928 if ( !wxControl::Create(parent
,
932 style
| wxWANTS_CHARS
,
937 m_valueString
= value
;
941 m_marginLeft
= GetNativeTextIndent();
943 m_iFlags
|= wxCC_IFLAG_CREATED
;
945 // If x and y indicate valid size, wxSizeEvent won't be
946 // emitted automatically, so we need to add artifical one.
947 if ( size
.x
> 0 && size
.y
> 0 )
949 wxSizeEvent
evt(size
,GetId());
950 GetEventHandler()->AddPendingEvent(evt
);
956 void wxComboCtrlBase::InstallInputHandlers()
960 m_textEvtHandler
= new wxComboBoxExtraInputHandler(this);
961 m_text
->PushEventHandler(m_textEvtHandler
);
966 wxComboCtrlBase::CreateTextCtrl(int style
)
968 if ( !(m_windowStyle
& wxCB_READONLY
) )
973 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
974 // not used by the wxPropertyGrid and therefore the tab is processed by
975 // looking at ancestors to see if they have wxTAB_TRAVERSAL. The
976 // navigation event is then sent to the wrong window.
977 style
|= wxTE_PROCESS_TAB
| m_textCtrlStyle
;
979 if ( HasFlag(wxTE_PROCESS_ENTER
) )
980 style
|= wxTE_PROCESS_ENTER
;
982 // Ignore EVT_TEXT generated by the constructor (but only
983 // if the event redirector already exists)
984 // NB: This must be " = 1" instead of "++";
985 if ( m_textEvtHandler
)
990 m_text
= new wxComboCtrlTextCtrl();
991 m_text
->Create(this, wxID_ANY
, m_valueString
,
992 wxDefaultPosition
, wxSize(10,-1),
994 m_text
->SetHint(m_hintText
);
998 void wxComboCtrlBase::OnThemeChange()
1000 // Leave the default bg on the Mac so the area used by the focus ring will
1001 // be the correct colour and themed brush. Instead we'll use
1002 // wxSYS_COLOUR_WINDOW in the EVT_PAINT handler as needed.
1004 #if defined(__WXMSW__) || defined(__WXGTK__)
1005 wxVisualAttributes vattrs
= wxComboBox::GetClassDefaultAttributes();
1007 wxVisualAttributes vattrs
;
1008 vattrs
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
1009 vattrs
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1012 // Only change the colours if application has not specified
1016 SetOwnForegroundColour(vattrs
.colFg
);
1021 SetOwnBackgroundColour(vattrs
.colBg
);
1024 #endif // !__WXMAC__
1027 wxComboCtrlBase::~wxComboCtrlBase()
1032 #if INSTALL_TOPLEV_HANDLER
1033 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
1034 m_toplevEvtHandler
= NULL
;
1040 m_text
->RemoveEventHandler(m_textEvtHandler
);
1042 delete m_textEvtHandler
;
1046 // ----------------------------------------------------------------------------
1048 // ----------------------------------------------------------------------------
1050 // Recalculates button and textctrl areas
1051 void wxComboCtrlBase::CalculateAreas( int btnWidth
)
1053 wxSize sz
= GetClientSize();
1054 int customBorder
= m_widthCustomBorder
;
1055 int btnBorder
; // border for button only
1057 // check if button should really be outside the border: we'll do it it if
1058 // its platform default or bitmap+pushbutton background is used, but not if
1059 // there is vertical size adjustment or horizontal spacing.
1060 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) ||
1061 (m_bmpNormal
.Ok() && m_blankButtonBg
) ) &&
1062 m_btnSpacingX
== 0 &&
1065 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
1068 else if ( (m_iFlags
& wxCC_BUTTON_COVERS_BORDER
) &&
1069 m_btnSpacingX
== 0 && !m_bmpNormal
.Ok() )
1071 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
1076 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
1077 btnBorder
= customBorder
;
1080 // Defaul indentation
1081 if ( m_marginLeft
< 0 )
1082 m_marginLeft
= GetNativeTextIndent();
1084 int butWidth
= btnWidth
;
1086 if ( butWidth
<= 0 )
1087 butWidth
= m_btnWidDefault
;
1089 m_btnWidDefault
= butWidth
;
1091 if ( butWidth
<= 0 )
1094 int butHeight
= sz
.y
- btnBorder
*2;
1096 // Adjust button width
1098 butWidth
= m_btnWid
;
1101 // Adjust button width to match aspect ratio
1102 // (but only if control is smaller than best size).
1103 int bestHeight
= GetBestSize().y
;
1104 int height
= GetSize().y
;
1106 if ( height
< bestHeight
)
1108 // Make very small buttons square, as it makes
1109 // them accommodate arrow image better and still
1112 butWidth
= (height
*butWidth
)/bestHeight
;
1114 butWidth
= butHeight
;
1118 // Adjust button height
1120 butHeight
= m_btnHei
;
1122 // Use size of normal bitmap if...
1125 // button width is set to default and blank button bg is not drawn
1126 if ( m_bmpNormal
.Ok() )
1128 int bmpReqWidth
= m_bmpNormal
.GetWidth();
1129 int bmpReqHeight
= m_bmpNormal
.GetHeight();
1131 // If drawing blank button background, we need to add some margin.
1132 if ( m_blankButtonBg
)
1134 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
1135 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
1138 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
1139 butWidth
= bmpReqWidth
;
1140 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
1141 butHeight
= bmpReqHeight
;
1143 // Need to fix height?
1144 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
1146 int newY
= butHeight
+(customBorder
*2);
1147 SetClientSize(wxDefaultCoord
,newY
);
1148 if ( m_bmpNormal
.Ok() || m_btnArea
.width
!= butWidth
|| m_btnArea
.height
!= butHeight
)
1149 m_iFlags
|= wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
1151 m_iFlags
&= ~wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
1157 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
1159 m_btnSize
.x
= butWidth
;
1160 m_btnSize
.y
= butHeight
;
1162 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
1163 m_btnArea
.y
= btnBorder
+ FOCUS_RING
;
1164 m_btnArea
.width
= butAreaWid
;
1165 m_btnArea
.height
= sz
.y
- ((btnBorder
+FOCUS_RING
)*2);
1167 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
+ FOCUS_RING
;
1168 m_tcArea
.y
= customBorder
+ FOCUS_RING
;
1169 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2) - (FOCUS_RING
*2);
1170 m_tcArea
.height
= sz
.y
- ((customBorder
+FOCUS_RING
)*2);
1175 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
1176 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
1181 void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
1186 wxSize sz
= GetClientSize();
1188 int customBorder
= m_widthCustomBorder
;
1189 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
1193 if ( !m_widthCustomPaint
)
1195 // No special custom paint area - we can use 0 left margin
1197 if ( m_text
->SetMargins(0) )
1198 textCtrlXAdjust
= 0;
1199 x
= m_tcArea
.x
+ m_marginLeft
+ textCtrlXAdjust
;
1203 // There is special custom paint area - it is better to
1204 // use some margin with the wxTextCtrl.
1205 m_text
->SetMargins(m_marginLeft
);
1206 x
= m_tcArea
.x
+ m_widthCustomPaint
+
1207 m_marginLeft
+ textCtrlXAdjust
;
1210 // Centre textctrl vertically, if needed
1211 #if !TEXTCTRL_TEXT_CENTERED
1212 int tcSizeY
= m_text
->GetBestSize().y
;
1213 int diff0
= sz
.y
- tcSizeY
;
1214 int y
= textCtrlYAdjust
+ (diff0
/2);
1216 wxUnusedVar(textCtrlYAdjust
);
1220 if ( y
< customBorder
)
1225 m_tcArea
.width
- m_tcArea
.x
- x
,
1228 // Make sure textctrl doesn't exceed the bottom custom border
1229 wxSize tsz
= m_text
->GetSize();
1230 int diff1
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
1233 tsz
.y
= tsz
.y
- diff1
- 1;
1234 m_text
->SetSize(tsz
);
1239 // If it has border, have textctrl fill the entire text field.
1240 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
,
1242 m_tcArea
.width
- m_widthCustomPaint
,
1247 wxSize
wxComboCtrlBase::DoGetBestSize() const
1249 wxSize
sizeText(150,0);
1252 sizeText
= m_text
->GetBestSize();
1254 // TODO: Better method to calculate close-to-native control height.
1258 fhei
= (m_font
.GetPointSize()*2) + 5;
1259 else if ( wxNORMAL_FONT
->Ok() )
1260 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
1262 fhei
= sizeText
.y
+ 4;
1264 // Need to force height to accomodate bitmap?
1265 int btnSizeY
= m_btnSize
.y
;
1266 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
1269 // Control height doesn't depend on border
1272 int border = m_windowStyle & wxBORDER_MASK;
1273 if ( border == wxSIMPLE_BORDER )
1275 else if ( border == wxNO_BORDER )
1276 fhei += (m_widthCustomBorder*2);
1282 // Final adjustments
1288 // these are the numbers from the HIG:
1289 switch ( m_windowVariant
)
1291 case wxWINDOW_VARIANT_NORMAL
:
1295 case wxWINDOW_VARIANT_SMALL
:
1298 case wxWINDOW_VARIANT_MINI
:
1304 fhei
+= 2 * FOCUS_RING
;
1305 int width
= sizeText
.x
+ FOCUS_RING
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
;
1307 wxSize
ret(width
, fhei
);
1312 void wxComboCtrlBase::OnSizeEvent( wxSizeEvent
& event
)
1317 // defined by actual wxComboCtrls
1323 // ----------------------------------------------------------------------------
1324 // standard operations
1325 // ----------------------------------------------------------------------------
1327 bool wxComboCtrlBase::Enable(bool enable
)
1329 if ( !wxControl::Enable(enable
) )
1333 m_btn
->Enable(enable
);
1335 m_text
->Enable(enable
);
1342 bool wxComboCtrlBase::Show(bool show
)
1344 if ( !wxControl::Show(show
) )
1356 bool wxComboCtrlBase::SetFont ( const wxFont
& font
)
1358 if ( !wxControl::SetFont(font
) )
1363 // Without hiding the wxTextCtrl there would be some
1364 // visible 'flicker' (at least on Windows XP).
1366 m_text
->SetFont(font
);
1375 void wxComboCtrlBase::DoSetToolTip(wxToolTip
*tooltip
)
1377 wxControl::DoSetToolTip(tooltip
);
1379 // Set tool tip for button and text box
1382 const wxString
&tip
= tooltip
->GetTip();
1383 if ( m_text
) m_text
->SetToolTip(tip
);
1384 if ( m_btn
) m_btn
->SetToolTip(tip
);
1388 if ( m_text
) m_text
->SetToolTip( NULL
);
1389 if ( m_btn
) m_btn
->SetToolTip( NULL
);
1392 #endif // wxUSE_TOOLTIPS
1394 bool wxComboCtrlBase::SetForegroundColour(const wxColour
& colour
)
1396 if ( wxControl::SetForegroundColour(colour
) )
1399 m_text
->SetForegroundColour(colour
);
1405 bool wxComboCtrlBase::SetBackgroundColour(const wxColour
& colour
)
1407 if ( wxControl::SetBackgroundColour(colour
) )
1410 m_text
->SetBackgroundColour(colour
);
1415 // ----------------------------------------------------------------------------
1417 // ----------------------------------------------------------------------------
1419 #if (!defined(__WXMSW__)) || defined(__WXUNIVERSAL__)
1420 // prepare combo box background on area in a way typical on platform
1421 void wxComboCtrlBase::PrepareBackground( wxDC
& dc
, const wxRect
& rect
, int flags
) const
1423 wxSize sz
= GetClientSize();
1425 bool doDrawFocusRect
; // also selected
1427 // For smaller size control (and for disabled background) use less spacing
1431 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1434 isEnabled
= IsEnabled();
1435 doDrawFocusRect
= ShouldDrawFocus() && !(m_iFlags
& wxCC_FULL_BUTTON
);
1437 // Windows-style: for smaller size control (and for disabled background) use less spacing
1438 focusSpacingX
= isEnabled
? 2 : 1;
1439 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1443 // Drawing a list item
1444 isEnabled
= true; // they are never disabled
1445 doDrawFocusRect
= (flags
& wxCONTROL_SELECTED
) != 0;
1451 // Set the background sub-rectangle for selection, disabled etc
1452 wxRect
selRect(rect
);
1453 selRect
.y
+= focusSpacingY
;
1454 selRect
.height
-= (focusSpacingY
*2);
1458 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1459 wcp
+= m_widthCustomPaint
;
1461 selRect
.x
+= wcp
+ focusSpacingX
;
1462 selRect
.width
-= wcp
+ (focusSpacingX
*2);
1467 bool doDrawSelRect
= true;
1469 // Determine foreground colour
1472 if ( doDrawFocusRect
)
1474 fgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1476 else if ( m_hasFgCol
)
1478 // Honour the custom foreground colour
1479 fgCol
= GetForegroundColour();
1483 fgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
1488 fgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
);
1491 // Determine background colour
1494 if ( doDrawFocusRect
)
1496 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1498 else if ( m_hasBgCol
)
1500 // Honour the custom background colour
1501 bgCol
= GetBackgroundColour();
1505 #ifndef __WXMAC__ // see note in OnThemeChange
1506 doDrawSelRect
= false;
1507 bgCol
= GetBackgroundColour();
1509 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1515 #ifndef __WXMAC__ // see note in OnThemeChange
1516 bgCol
= GetBackgroundColour();
1518 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1522 dc
.SetTextForeground( fgCol
);
1523 dc
.SetBrush( bgCol
);
1524 if ( doDrawSelRect
)
1527 dc
.DrawRectangle( selRect
);
1530 // Don't clip exactly to the selection rectangle so we can draw
1531 // to the non-selected area in front of it.
1532 wxRect
clipRect(rect
.x
,rect
.y
,
1533 (selRect
.x
+selRect
.width
)-rect
.x
,rect
.height
);
1534 dc
.SetClippingRegion(clipRect
);
1537 // Save the library size a bit for platforms that re-implement this.
1538 void wxComboCtrlBase::PrepareBackground( wxDC
&, const wxRect
&, int ) const
1543 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, int flags
)
1545 int drawState
= m_btnState
;
1547 if ( (m_iFlags
& wxCC_BUTTON_STAYS_DOWN
) &&
1548 GetPopupWindowState() >= Animating
)
1549 drawState
|= wxCONTROL_PRESSED
;
1551 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1552 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1556 // Make sure area is not larger than the control
1557 if ( drawRect
.y
< rect
.y
)
1558 drawRect
.y
= rect
.y
;
1559 if ( drawRect
.height
> rect
.height
)
1560 drawRect
.height
= rect
.height
;
1562 bool enabled
= IsEnabled();
1565 drawState
|= wxCONTROL_DISABLED
;
1567 if ( !m_bmpNormal
.Ok() )
1569 if ( flags
& Button_BitmapOnly
)
1572 // Need to clear button background even if m_btn is present
1573 if ( flags
& Button_PaintBackground
)
1577 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1578 bgCol
= GetParent()->GetBackgroundColour();
1580 bgCol
= GetBackgroundColour();
1584 dc
.DrawRectangle(rect
);
1587 // Draw standard button
1588 wxRendererNative::Get().DrawComboBoxDropButton(this,
1600 pBmp
= &m_bmpDisabled
;
1601 else if ( m_btnState
& wxCONTROL_PRESSED
)
1602 pBmp
= &m_bmpPressed
;
1603 else if ( m_btnState
& wxCONTROL_CURRENT
)
1606 pBmp
= &m_bmpNormal
;
1608 if ( m_blankButtonBg
)
1610 // If using blank button background, we need to clear its background
1611 // with button face colour instead of colour for rest of the control.
1612 if ( flags
& Button_PaintBackground
)
1614 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1615 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1618 dc
.DrawRectangle(rect
);
1621 if ( !(flags
& Button_BitmapOnly
) )
1623 wxRendererNative::Get().DrawPushButton(this,
1632 // Need to clear button background even if m_btn is present
1633 // (assume non-button background was cleared just before this call so brushes are good)
1634 if ( flags
& Button_PaintBackground
)
1635 dc
.DrawRectangle(rect
);
1638 // Draw bitmap centered in drawRect
1639 dc
.DrawBitmap(*pBmp
,
1640 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1641 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1646 void wxComboCtrlBase::RecalcAndRefresh()
1650 wxSizeEvent
evt(GetSize(),GetId());
1651 GetEventHandler()->ProcessEvent(evt
);
1656 // ----------------------------------------------------------------------------
1657 // miscellaneous event handlers
1658 // ----------------------------------------------------------------------------
1660 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1662 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
)
1664 if ( m_ignoreEvtText
> 0 )
1671 // Change event id, object and string before relaying it forward
1672 event
.SetId(GetId());
1673 wxString s
= event
.GetString();
1674 event
.SetEventObject(this);
1679 // call if cursor is on button area or mouse is captured for the button
1680 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1683 int type
= event
.GetEventType();
1685 if ( type
== wxEVT_MOTION
)
1687 if ( (flags
& wxCC_MF_ON_BUTTON
) &&
1688 IsPopupWindowState(Hidden
) )
1690 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1692 // Mouse hover begins
1693 m_btnState
|= wxCONTROL_CURRENT
;
1694 if ( HasCapture() ) // Retain pressed state.
1695 m_btnState
|= wxCONTROL_PRESSED
;
1699 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1702 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1706 else if ( type
== wxEVT_LEFT_DOWN
|| type
== wxEVT_LEFT_DCLICK
)
1708 if ( flags
& (wxCC_MF_ON_CLICK_AREA
|wxCC_MF_ON_BUTTON
) )
1710 m_btnState
|= wxCONTROL_PRESSED
;
1713 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1716 // If showing popup now, do not capture mouse or there will be interference
1720 else if ( type
== wxEVT_LEFT_UP
)
1723 // Only accept event if mouse was left-press was previously accepted
1727 if ( m_btnState
& wxCONTROL_PRESSED
)
1729 // If mouse was inside, fire the click event.
1730 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1732 if ( flags
& (wxCC_MF_ON_CLICK_AREA
|wxCC_MF_ON_BUTTON
) )
1736 m_btnState
&= ~(wxCONTROL_PRESSED
);
1740 else if ( type
== wxEVT_LEAVE_WINDOW
)
1742 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1744 m_btnState
&= ~(wxCONTROL_CURRENT
);
1747 if ( IsPopupWindowState(Hidden
) )
1749 m_btnState
&= ~(wxCONTROL_PRESSED
);
1757 // Never have 'hot' state when popup is being shown
1758 // (this is mostly needed because of the animation).
1759 if ( !IsPopupWindowState(Hidden
) )
1760 m_btnState
&= ~wxCONTROL_CURRENT
;
1765 // returns true if event was consumed or filtered
1766 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1767 int WXUNUSED(flags
) )
1769 wxLongLong t
= ::wxGetLocalTimeMillis();
1770 int evtType
= event
.GetEventType();
1772 #if USES_WXPOPUPWINDOW || USES_GENERICTLW
1773 if ( m_popupWinType
!= POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
1775 if ( IsPopupWindowState(Visible
) &&
1776 ( evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_RIGHT_DOWN
) )
1784 // Filter out clicks on button immediately after popup dismiss
1785 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1787 event
.SetEventType(0);
1794 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1796 int evtType
= event
.GetEventType();
1798 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1799 (m_windowStyle
& wxCB_READONLY
) )
1801 if ( GetPopupWindowState() >= Animating
)
1803 #if USES_WXPOPUPWINDOW
1804 // Click here always hides the popup.
1805 if ( m_popupWinType
== POPUPWIN_WXPOPUPWINDOW
)
1811 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1813 // In read-only mode, clicking the text is the
1814 // same as clicking the button.
1817 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1819 //if ( m_popupInterface->CycleValue() )
1821 if ( m_popupInterface
)
1822 m_popupInterface
->OnComboDoubleClick();
1826 else if ( evtType
== wxEVT_MOUSEWHEEL
)
1828 if ( IsPopupShown() )
1830 // relay (some) mouse events to the popup
1831 m_popup
->GetEventHandler()->ProcessEvent(event
);
1833 else if ( event
.GetWheelAxis() == 0 &&
1834 event
.GetWheelRotation() != 0 &&
1835 event
.GetModifiers() == 0 )
1837 // Translate mousewheel actions into key up/down. This is
1838 // the simplest way of getting native behaviour: scrolling the
1839 // wheel moves selection up/down by one item.
1840 wxKeyEvent
kevent(wxEVT_KEY_DOWN
);
1841 kevent
.m_keyCode
= event
.GetWheelRotation() > 0
1844 GetEventHandler()->ProcessEvent(kevent
);
1857 void wxComboCtrlBase::OnKeyEvent(wxKeyEvent
& event
)
1859 if ( IsPopupShown() )
1861 // pass it to the popped up control
1862 GetPopupControl()->GetControl()->GetEventHandler()->ProcessEvent(event
);
1866 wxWindow
* mainCtrl
= GetMainWindowOfCompositeControl();
1868 if ( mainCtrl
->GetParent()->HasFlag(wxTAB_TRAVERSAL
) )
1870 if ( mainCtrl
->HandleAsNavigationKey(event
) )
1874 if ( IsKeyPopupToggle(event
) )
1880 int comboStyle
= GetWindowStyle();
1881 wxComboPopup
* popupInterface
= GetPopupControl();
1883 if ( !popupInterface
)
1889 int keycode
= event
.GetKeyCode();
1891 if ( (comboStyle
& wxCB_READONLY
) ||
1892 (keycode
!= WXK_RIGHT
&& keycode
!= WXK_LEFT
) )
1894 popupInterface
->OnComboKeyEvent(event
);
1901 void wxComboCtrlBase::OnCharEvent(wxKeyEvent
& event
)
1903 if ( IsPopupShown() )
1905 // pass it to the popped up control
1906 GetPopupControl()->GetControl()->GetEventHandler()->ProcessEvent(event
);
1910 wxComboPopup
* popupInterface
= GetPopupControl();
1911 if ( popupInterface
)
1913 popupInterface
->OnComboCharEvent(event
);
1922 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& event
)
1924 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
1926 wxWindow
* tc
= GetTextCtrl();
1927 if ( tc
&& tc
!= DoFindFocus() )
1936 void wxComboCtrlBase::OnIdleEvent( wxIdleEvent
& WXUNUSED(event
) )
1940 m_resetFocus
= false;
1941 wxWindow
* tc
= GetTextCtrl();
1947 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1950 // left margin may also have changed
1951 if ( !(m_iFlags
& wxCC_IFLAG_LEFT_MARGIN_SET
) )
1952 m_marginLeft
= GetNativeTextIndent();
1956 // ----------------------------------------------------------------------------
1958 // ----------------------------------------------------------------------------
1960 // Create popup window and the child control
1961 void wxComboCtrlBase::CreatePopup()
1963 wxComboPopup
* popupInterface
= m_popupInterface
;
1968 #ifdef wxComboPopupWindowBase2
1969 if ( m_iFlags
& wxCC_IFLAG_USE_ALT_POPUP
)
1971 #if !USES_GENERICTLW
1972 m_winPopup
= new wxComboPopupWindowBase2( this, wxNO_BORDER
);
1974 int tlwFlags
= wxNO_BORDER
;
1975 #ifdef wxCC_GENERIC_TLW_IS_FRAME
1976 tlwFlags
|= wxFRAME_NO_TASKBAR
;
1979 #ifdef wxCC_GENERIC_TLW_IS_NONOWNEDWINDOW
1980 m_winPopup
= new wxComboPopupWindowBase2( this, wxID_ANY
,
1981 wxPoint(-21,-21), wxSize(20, 20),
1984 m_winPopup
= new wxComboPopupWindowBase2( this, wxID_ANY
, wxEmptyString
,
1985 wxPoint(-21,-21), wxSize(20, 20),
1989 m_popupWinType
= SECONDARY_POPUP_TYPE
;
1992 #endif // wxComboPopupWindowBase2
1994 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1995 m_popupWinType
= PRIMARY_POPUP_TYPE
;
1997 m_popupWinEvtHandler
= new wxComboPopupWindowEvtHandler(this);
1998 m_winPopup
->PushEventHandler(m_popupWinEvtHandler
);
2001 popupInterface
->Create(m_winPopup
);
2002 m_popup
= popup
= popupInterface
->GetControl();
2004 m_popupEvtHandler
= new wxComboPopupEvtHandler(this);
2005 popup
->PushEventHandler( m_popupEvtHandler
);
2007 // This may be helpful on some platforms
2008 // (eg. it bypasses a wxGTK popupwindow bug where
2009 // window is not initially hidden when it should be)
2012 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
2015 // Destroy popup window and the child control
2016 void wxComboCtrlBase::DestroyPopup()
2021 m_popup
->RemoveEventHandler(m_popupEvtHandler
);
2023 wxDELETE(m_popupEvtHandler
);
2025 wxDELETE(m_popupInterface
);
2029 m_winPopup
->RemoveEventHandler(m_popupWinEvtHandler
);
2030 wxDELETE(m_popupWinEvtHandler
);
2031 m_winPopup
->Destroy();
2038 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
2040 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
2044 iface
->InitBase(this);
2047 m_popupInterface
= iface
;
2049 if ( !iface
->LazyCreate() )
2058 // This must be done after creation
2059 if ( m_valueString
.length() )
2061 iface
->SetStringValue(m_valueString
);
2066 // Ensures there is atleast the default popup
2067 void wxComboCtrlBase::EnsurePopupControl()
2069 if ( !m_popupInterface
)
2070 SetPopupControl(NULL
);
2073 void wxComboCtrlBase::OnButtonClick()
2075 // Derived classes can override this method for totally custom
2077 switch ( GetPopupWindowState() )
2094 void wxComboCtrlBase::Popup()
2096 wxCommandEvent
event(wxEVT_COMMAND_COMBOBOX_DROPDOWN
, GetId());
2097 event
.SetEventObject(this);
2098 HandleWindowEvent(event
);
2103 void wxComboCtrlBase::ShowPopup()
2105 EnsurePopupControl();
2106 wxCHECK_RET( !IsPopupWindowState(Visible
), wxT("popup window already shown") );
2108 if ( IsPopupWindowState(Animating
) )
2113 // Space above and below
2119 wxSize ctrlSz
= GetSize();
2121 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
2122 scrPos
= GetParent()->ClientToScreen(GetPosition());
2124 spaceAbove
= scrPos
.y
;
2125 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
2127 maxHeightPopup
= spaceBelow
;
2128 if ( spaceAbove
> spaceBelow
)
2129 maxHeightPopup
= spaceAbove
;
2132 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
2134 if ( widthPopup
< m_widthMinPopup
)
2135 widthPopup
= m_widthMinPopup
;
2137 wxWindow
* winPopup
= m_winPopup
;
2140 // Need to disable tab traversal of parent
2142 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
2143 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
2144 // that if transient popup is open, then tab traversal is to be ignored.
2145 // However, I think this code would still be needed for cases where
2146 // transient popup doesn't work yet (wxWinCE?).
2147 wxWindow
* mainCtrl
= GetMainWindowOfCompositeControl();
2148 wxWindow
* parent
= mainCtrl
->GetParent();
2149 int parentFlags
= parent
->GetWindowStyle();
2150 if ( parentFlags
& wxTAB_TRAVERSAL
)
2152 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
2153 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
2159 winPopup
= m_winPopup
;
2169 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
2171 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
2172 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
2175 popup
->SetSize(adjustedSize
);
2177 m_popupInterface
->OnPopup();
2180 // Reposition and resize popup window
2183 wxSize szp
= popup
->GetSize();
2186 int popupY
= scrPos
.y
+ ctrlSz
.y
;
2188 // Default anchor is wxLEFT
2189 int anchorSide
= m_anchorSide
;
2191 anchorSide
= wxLEFT
;
2193 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
2194 int leftX
= scrPos
.x
- m_extLeft
;
2196 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
2199 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
2201 // If there is not enough horizontal space, anchor on the other side.
2202 // If there is no space even then, place the popup at x 0.
2203 if ( anchorSide
== wxRIGHT
)
2207 if ( (leftX
+szp
.x
) < screenWidth
)
2208 anchorSide
= wxLEFT
;
2215 if ( (leftX
+szp
.x
) >= screenWidth
)
2218 anchorSide
= wxRIGHT
;
2224 // Select x coordinate according to the anchor side
2225 if ( anchorSide
== wxRIGHT
)
2227 else if ( anchorSide
== wxLEFT
)
2232 int showFlags
= CanDeferShow
;
2234 if ( spaceBelow
< szp
.y
)
2236 popupY
= scrPos
.y
- szp
.y
;
2237 showFlags
|= ShowAbove
;
2240 #if INSTALL_TOPLEV_HANDLER
2241 // Put top level window event handler into place
2242 if ( m_popupWinType
== POPUPWIN_WXPOPUPWINDOW
)
2244 if ( !m_toplevEvtHandler
)
2245 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
2247 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
2249 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
2250 toplev
->PushEventHandler( m_toplevEvtHandler
);
2254 // Set string selection (must be this way instead of SetStringSelection)
2257 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
2258 m_text
->SelectAll();
2260 m_popupInterface
->SetStringValue( m_text
->GetValue() );
2264 // This is neede since focus/selection indication may change when popup is shown
2268 // This must be after SetStringValue
2269 m_popupWinState
= Animating
;
2271 wxRect
popupWinRect( popupX
, popupY
, szp
.x
, szp
.y
);
2274 if ( (m_iFlags
& wxCC_IFLAG_DISABLE_POPUP_ANIM
) ||
2275 AnimateShow( popupWinRect
, showFlags
) )
2277 DoShowPopup( popupWinRect
, showFlags
);
2281 bool wxComboCtrlBase::AnimateShow( const wxRect
& WXUNUSED(rect
), int WXUNUSED(flags
) )
2286 void wxComboCtrlBase::DoShowPopup( const wxRect
& rect
, int WXUNUSED(flags
) )
2288 wxWindow
* winPopup
= m_winPopup
;
2290 if ( IsPopupWindowState(Animating
) )
2292 // Make sure the popup window is shown in the right position.
2293 // Should not matter even if animation already did this.
2295 // Some platforms (GTK) may like SetSize and Move to be separate
2296 // (though the bug was probably fixed).
2297 winPopup
->SetSize( rect
);
2299 #if USES_WXPOPUPTRANSIENTWINDOW
2300 if ( m_popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
2301 ((wxPopupTransientWindow
*)winPopup
)->Popup(m_popup
);
2306 m_popupWinState
= Visible
;
2308 // If popup window was a generic top-level window, or the
2309 // wxPopupWindow implemenation on this platform is classified as
2310 // perfect, then we should be able to safely set focus to the popup
2312 if ( IsPopupWinTypePerfect(m_popupWinType
) )
2313 m_popup
->SetFocus();
2315 else if ( IsPopupWindowState(Hidden
) )
2317 // Animation was aborted
2319 wxASSERT( !winPopup
->IsShown() );
2321 m_popupWinState
= Hidden
;
2327 void wxComboCtrlBase::OnPopupDismiss(bool generateEvent
)
2329 // Just in case, avoid double dismiss
2330 if ( IsPopupWindowState(Hidden
) )
2333 // This must be set before focus - otherwise there will be recursive
2334 // OnPopupDismisses.
2335 m_popupWinState
= Hidden
;
2338 m_winPopup
->Disable();
2340 // Inform popup control itself
2341 m_popupInterface
->OnDismiss();
2343 if ( m_popupEvtHandler
)
2344 ((wxComboPopupEvtHandler
*)m_popupEvtHandler
)->OnPopupDismiss();
2346 #if INSTALL_TOPLEV_HANDLER
2347 // Remove top level window event handler
2348 if ( m_toplevEvtHandler
)
2350 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
2352 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
2356 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis();
2358 if ( m_popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
2359 m_timeCanAcceptClick
+= 150;
2361 // If cursor not on dropdown button, then clear its state
2362 // (technically not required by all ports, but do it for all just in case)
2363 if ( !m_btnArea
.Contains(ScreenToClient(::wxGetMousePosition())) )
2366 // Return parent's tab traversal flag.
2367 // See ShowPopup for notes.
2368 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
2370 wxWindow
* parent
= GetParent();
2371 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
2372 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
2375 // refresh control (necessary even if m_text)
2380 if ( generateEvent
)
2382 wxCommandEvent
event(wxEVT_COMMAND_COMBOBOX_CLOSEUP
, GetId());
2383 event
.SetEventObject(this);
2384 HandleWindowEvent(event
);
2388 void wxComboCtrlBase::HidePopup(bool generateEvent
)
2390 // Should be able to call this without popup interface
2391 if ( IsPopupWindowState(Hidden
) )
2394 // transfer value and show it in textctrl, if any
2395 if ( !IsPopupWindowState(Animating
) )
2396 SetValueByUser( m_popupInterface
->GetStringValue() );
2400 OnPopupDismiss(generateEvent
);
2403 // ----------------------------------------------------------------------------
2404 // customization methods
2405 // ----------------------------------------------------------------------------
2407 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
2408 int side
, int spacingX
)
2413 m_btnSpacingX
= spacingX
;
2415 if ( width
> 0 || height
> 0 || spacingX
)
2416 m_iFlags
|= wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
2421 wxSize
wxComboCtrlBase::GetButtonSize()
2423 if ( m_btnSize
.x
> 0 )
2426 wxSize
retSize(m_btnWid
,m_btnHei
);
2428 // Need to call CalculateAreas now if button size is
2429 // is not explicitly specified.
2430 if ( retSize
.x
<= 0 || retSize
.y
<= 0)
2434 retSize
= m_btnSize
;
2440 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
2442 const wxBitmap
& bmpPressed
,
2443 const wxBitmap
& bmpHover
,
2444 const wxBitmap
& bmpDisabled
)
2446 m_bmpNormal
= bmpNormal
;
2447 m_blankButtonBg
= blankButtonBg
;
2449 if ( bmpPressed
.Ok() )
2450 m_bmpPressed
= bmpPressed
;
2452 m_bmpPressed
= bmpNormal
;
2454 if ( bmpHover
.Ok() )
2455 m_bmpHover
= bmpHover
;
2457 m_bmpHover
= bmpNormal
;
2459 if ( bmpDisabled
.Ok() )
2460 m_bmpDisabled
= bmpDisabled
;
2462 m_bmpDisabled
= bmpNormal
;
2467 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
2471 // move textctrl accordingly
2472 wxRect r
= m_text
->GetRect();
2473 int inc
= width
- m_widthCustomPaint
;
2476 m_text
->SetSize( r
);
2479 m_widthCustomPaint
= width
;
2484 bool wxComboCtrlBase::DoSetMargins(const wxPoint
& margins
)
2486 // For general sanity's sake, we ignore top margin. Instead
2487 // we will always try to center the text vertically.
2490 if ( margins
.x
!= -1 )
2492 m_marginLeft
= margins
.x
;
2493 m_iFlags
|= wxCC_IFLAG_LEFT_MARGIN_SET
;
2497 m_marginLeft
= GetNativeTextIndent();
2498 m_iFlags
&= ~(wxCC_IFLAG_LEFT_MARGIN_SET
);
2501 if ( margins
.y
!= -1 )
2511 wxPoint
wxComboCtrlBase::DoGetMargins() const
2513 return wxPoint(m_marginLeft
, -1);
2516 #if WXWIN_COMPATIBILITY_2_8
2517 void wxComboCtrlBase::SetTextIndent( int indent
)
2521 m_marginLeft
= GetNativeTextIndent();
2522 m_iFlags
&= ~(wxCC_IFLAG_LEFT_MARGIN_SET
);
2526 m_marginLeft
= indent
;
2527 m_iFlags
|= wxCC_IFLAG_LEFT_MARGIN_SET
;
2533 wxCoord
wxComboCtrlBase::GetTextIndent() const
2535 return m_marginLeft
;
2539 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
2541 return DEFAULT_TEXT_INDENT
;
2544 void wxComboCtrlBase::SetTextCtrlStyle( int style
)
2546 m_textCtrlStyle
= style
;
2549 m_text
->SetWindowStyle(style
);
2552 // ----------------------------------------------------------------------------
2553 // wxTextEntry interface
2554 // ----------------------------------------------------------------------------
2556 wxString
wxComboCtrlBase::DoGetValue() const
2559 return m_text
->GetValue();
2560 return m_valueString
;
2563 void wxComboCtrlBase::SetValueWithEvent(const wxString
& value
,
2566 DoSetValue(value
, withEvent
? SetValue_SendEvent
: 0);
2569 void wxComboCtrlBase::OnSetValue(const wxString
& value
)
2571 // Note: before wxComboCtrl inherited from wxTextEntry,
2572 // this code used to be in SetValueWithEvent().
2574 // Since wxComboPopup may want to paint the combo as well, we need
2575 // to set the string value here (as well as sometimes in ShowPopup).
2576 if ( m_valueString
!= value
)
2578 m_valueString
= value
;
2580 EnsurePopupControl();
2582 if (m_popupInterface
)
2583 m_popupInterface
->SetStringValue(value
);
2589 void wxComboCtrlBase::SetValueByUser(const wxString
& value
)
2591 // NB: Order of function calls is important here. Otherwise
2592 // the SelectAll() may not work.
2596 m_text
->SetValue(value
);
2598 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
2599 m_text
->SelectAll();
2605 // In this SetValue variant wxComboPopup::SetStringValue is not called
2606 void wxComboCtrlBase::SetText(const wxString
& value
)
2608 // Unlike in SetValue(), this must be called here or
2609 // the behaviour will no be consistent in readonlys.
2610 EnsurePopupControl();
2612 m_valueString
= value
;
2617 m_text
->SetValue( value
);
2623 void wxComboCtrlBase::Copy()
2629 void wxComboCtrlBase::Cut()
2635 void wxComboCtrlBase::Paste()
2641 void wxComboCtrlBase::SetInsertionPoint(long pos
)
2644 m_text
->SetInsertionPoint(pos
);
2647 long wxComboCtrlBase::GetInsertionPoint() const
2650 return m_text
->GetInsertionPoint();
2655 long wxComboCtrlBase::GetLastPosition() const
2658 return m_text
->GetLastPosition();
2663 void wxComboCtrlBase::WriteText(const wxString
& text
)
2667 m_text
->WriteText(text
);
2668 OnSetValue(m_text
->GetValue());
2676 void wxComboCtrlBase::DoSetValue(const wxString
& value
, int flags
)
2680 if ( flags
& SetValue_SendEvent
)
2681 m_text
->SetValue(value
);
2683 m_text
->ChangeValue(value
);
2689 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2693 m_text
->Replace(from
, to
, value
);
2694 OnSetValue(m_text
->GetValue());
2698 void wxComboCtrlBase::Remove(long from
, long to
)
2702 m_text
->Remove(from
, to
);
2703 OnSetValue(m_text
->GetValue());
2707 void wxComboCtrlBase::SetSelection(long from
, long to
)
2710 m_text
->SetSelection(from
, to
);
2713 void wxComboCtrlBase::GetSelection(long *from
, long *to
) const
2717 m_text
->GetSelection(from
, to
);
2726 bool wxComboCtrlBase::IsEditable() const
2729 return m_text
->IsEditable();
2733 void wxComboCtrlBase::SetEditable(bool editable
)
2736 m_text
->SetEditable(editable
);
2739 void wxComboCtrlBase::Undo()
2745 void wxComboCtrlBase::Redo()
2751 bool wxComboCtrlBase::CanUndo() const
2754 return m_text
->CanUndo();
2759 bool wxComboCtrlBase::CanRedo() const
2762 return m_text
->CanRedo();
2767 bool wxComboCtrlBase::SetHint(const wxString
& hint
)
2772 res
= m_text
->SetHint(hint
);
2777 wxString
wxComboCtrlBase::GetHint() const
2782 #endif // wxUSE_COMBOCTRL