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"
35 #include "wx/dialog.h"
37 #include "wx/textctrl.h"
40 #include "wx/tooltip.h"
47 // ----------------------------------------------------------------------------
49 #define DEFAULT_DROPBUTTON_WIDTH 19
51 #define BMP_BUTTON_MARGIN 4
53 #define DEFAULT_POPUP_HEIGHT 400
55 #define DEFAULT_TEXT_INDENT 3
57 #define COMBO_MARGIN 2 // spacing right of wxTextCtrl
60 #if defined(__WXMSW__)
62 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
63 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
64 // native controls work on it like normal.
65 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
66 #define TEXTCTRL_TEXT_CENTERED 0 // 1 if text in textctrl is vertically centered
67 #define FOCUS_RING 0 // No focus ring on wxMSW
69 //#undef wxUSE_POPUPWIN
70 //#define wxUSE_POPUPWIN 0
72 #elif defined(__WXGTK__)
74 // NB: It is not recommended to use wxDialog as popup on wxGTK, because of
75 // this bug: If wxDialog is hidden, its position becomes corrupt
76 // between hide and next show, but without internal coordinates being
77 // reflected (or something like that - atleast commenting out ->Hide()
78 // seemed to eliminate the position change).
80 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
81 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
82 // native controls work on it like normal.
83 #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window.
84 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
85 #define FOCUS_RING 0 // No focus ring on wxGTK
87 #elif defined(__WXMAC__)
89 #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
90 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
91 // native controls work on it like normal.
92 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
93 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
94 #define FOCUS_RING 3 // Reserve room for the textctrl's focus ring to display
96 #undef DEFAULT_DROPBUTTON_WIDTH
97 #define DEFAULT_DROPBUTTON_WIDTH 22
99 #define COMBO_MARGIN FOCUS_RING
103 #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
104 #define TRANSIENT_POPUPWIN_IS_PERFECT 0 // wxPopupTransientWindow works, its child can have focus, and common
105 // native controls work on it like normal.
106 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
107 #define TEXTCTRL_TEXT_CENTERED 1 // 1 if text in textctrl is vertically centered
113 // Popupwin is really only supported on wxMSW (not WINCE) and wxGTK, regardless
114 // what the wxUSE_POPUPWIN says.
115 // FIXME: Why isn't wxUSE_POPUPWIN reliable any longer? (it was in wxW2.6.2)
116 #if (!defined(__WXMSW__) && !defined(__WXGTK__)) || defined(__WXWINCE__)
117 #undef wxUSE_POPUPWIN
118 #define wxUSE_POPUPWIN 0
123 #include "wx/popupwin.h"
125 #undef USE_TRANSIENT_POPUP
126 #define USE_TRANSIENT_POPUP 0
130 // Define different types of popup windows
134 POPUPWIN_WXPOPUPTRANSIENTWINDOW
= 1,
135 POPUPWIN_WXPOPUPWINDOW
= 2,
136 POPUPWIN_WXDIALOG
= 3
140 #if USE_TRANSIENT_POPUP
141 // wxPopupTransientWindow is implemented
143 #define wxComboPopupWindowBase wxPopupTransientWindow
144 #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPTRANSIENTWINDOW
145 #define USES_WXPOPUPTRANSIENTWINDOW 1
147 #if TRANSIENT_POPUPWIN_IS_PERFECT
149 #elif POPUPWIN_IS_PERFECT
150 #define wxComboPopupWindowBase2 wxPopupWindow
151 #define SECONDARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW
152 #define USES_WXPOPUPWINDOW 1
154 #define wxComboPopupWindowBase2 wxDialog
155 #define SECONDARY_POPUP_TYPE POPUPWIN_WXDIALOG
156 #define USES_WXDIALOG 1
160 // wxPopupWindow (but not wxPopupTransientWindow) is properly implemented
162 #define wxComboPopupWindowBase wxPopupWindow
163 #define PRIMARY_POPUP_TYPE POPUPWIN_WXPOPUPWINDOW
164 #define USES_WXPOPUPWINDOW 1
166 #if !POPUPWIN_IS_PERFECT
167 #define wxComboPopupWindowBase2 wxDialog
168 #define SECONDARY_POPUP_TYPE POPUPWIN_WXDIALOG
169 #define USES_WXDIALOG 1
173 // wxPopupWindow is not implemented
175 #define wxComboPopupWindowBase wxDialog
176 #define PRIMARY_POPUP_TYPE POPUPWIN_WXDIALOG
177 #define USES_WXDIALOG 1
182 #ifndef USES_WXPOPUPTRANSIENTWINDOW
183 #define USES_WXPOPUPTRANSIENTWINDOW 0
186 #ifndef USES_WXPOPUPWINDOW
187 #define USES_WXPOPUPWINDOW 0
190 #ifndef USES_WXDIALOG
191 #define USES_WXDIALOG 0
195 #if USES_WXPOPUPWINDOW
196 #define INSTALL_TOPLEV_HANDLER 1
198 #define INSTALL_TOPLEV_HANDLER 0
204 // * wxComboPopupWindow for external use (ie. replace old wxUniv wxPopupComboWindow)
208 // ----------------------------------------------------------------------------
209 // wxComboFrameEventHandler takes care of hiding the popup when events happen
210 // in its top level parent.
211 // ----------------------------------------------------------------------------
213 #if INSTALL_TOPLEV_HANDLER
216 // This will no longer be necessary after wxTransientPopupWindow
217 // works well on all platforms.
220 class wxComboFrameEventHandler
: public wxEvtHandler
223 wxComboFrameEventHandler( wxComboCtrlBase
* pCb
);
224 virtual ~wxComboFrameEventHandler();
228 void OnIdle( wxIdleEvent
& event
);
229 void OnMouseEvent( wxMouseEvent
& event
);
230 void OnActivate( wxActivateEvent
& event
);
231 void OnResize( wxSizeEvent
& event
);
232 void OnMove( wxMoveEvent
& event
);
233 void OnMenuEvent( wxMenuEvent
& event
);
234 void OnClose( wxCloseEvent
& event
);
237 wxWindow
* m_focusStart
;
238 wxComboCtrlBase
* m_combo
;
241 DECLARE_EVENT_TABLE()
244 BEGIN_EVENT_TABLE(wxComboFrameEventHandler
, wxEvtHandler
)
245 EVT_IDLE(wxComboFrameEventHandler::OnIdle
)
246 EVT_LEFT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
247 EVT_RIGHT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
248 EVT_SIZE(wxComboFrameEventHandler::OnResize
)
249 EVT_MOVE(wxComboFrameEventHandler::OnMove
)
250 EVT_MENU_HIGHLIGHT(wxID_ANY
,wxComboFrameEventHandler::OnMenuEvent
)
251 EVT_MENU_OPEN(wxComboFrameEventHandler::OnMenuEvent
)
252 EVT_ACTIVATE(wxComboFrameEventHandler::OnActivate
)
253 EVT_CLOSE(wxComboFrameEventHandler::OnClose
)
256 wxComboFrameEventHandler::wxComboFrameEventHandler( wxComboCtrlBase
* combo
)
262 wxComboFrameEventHandler::~wxComboFrameEventHandler()
266 void wxComboFrameEventHandler::OnPopup()
268 m_focusStart
= ::wxWindow::FindFocus();
271 void wxComboFrameEventHandler::OnIdle( wxIdleEvent
& event
)
273 wxWindow
* winFocused
= ::wxWindow::FindFocus();
275 wxWindow
* popup
= m_combo
->GetPopupControl()->GetControl();
276 wxWindow
* winpopup
= m_combo
->GetPopupWindow();
279 winFocused
!= m_focusStart
&&
280 winFocused
!= popup
&&
281 winFocused
->GetParent() != popup
&&
282 winFocused
!= winpopup
&&
283 winFocused
->GetParent() != winpopup
&&
284 winFocused
!= m_combo
&&
285 winFocused
!= m_combo
->GetButton() // GTK (atleast) requires this
288 m_combo
->HidePopup();
294 void wxComboFrameEventHandler::OnMenuEvent( wxMenuEvent
& event
)
296 m_combo
->HidePopup();
300 void wxComboFrameEventHandler::OnMouseEvent( wxMouseEvent
& event
)
302 m_combo
->HidePopup();
306 void wxComboFrameEventHandler::OnClose( wxCloseEvent
& event
)
308 m_combo
->HidePopup();
312 void wxComboFrameEventHandler::OnActivate( wxActivateEvent
& event
)
314 m_combo
->HidePopup();
318 void wxComboFrameEventHandler::OnResize( wxSizeEvent
& event
)
320 m_combo
->HidePopup();
324 void wxComboFrameEventHandler::OnMove( wxMoveEvent
& event
)
326 m_combo
->HidePopup();
330 #endif // INSTALL_TOPLEV_HANDLER
332 // ----------------------------------------------------------------------------
333 // wxComboPopupWindow is, in essence, wxPopupWindow customized for
335 // ----------------------------------------------------------------------------
337 class wxComboPopupWindow
: public wxComboPopupWindowBase
341 wxComboPopupWindow( wxComboCtrlBase
*parent
,
343 #if USES_WXPOPUPWINDOW || USES_WXPOPUPTRANSIENTWINDOW
344 : wxComboPopupWindowBase(parent
,style
)
346 : wxComboPopupWindowBase(parent
,
357 #if USES_WXPOPUPTRANSIENTWINDOW
358 virtual bool Show( bool show
);
359 virtual bool ProcessLeftDown(wxMouseEvent
& event
);
361 virtual void OnDismiss();
369 #if USES_WXPOPUPTRANSIENTWINDOW
370 bool wxComboPopupWindow::Show( bool show
)
372 // Guard against recursion
374 return wxComboPopupWindowBase::Show(show
);
378 wxASSERT( IsKindOf(CLASSINFO(wxPopupTransientWindow
)) );
380 wxPopupTransientWindow
* ptw
= (wxPopupTransientWindow
*) this;
382 if ( show
!= ptw
->IsShown() )
385 // We used to do wxPopupTransientWindow::Popup here,
386 // but this would hide normal Show, which we are
387 // also going to need.
398 bool wxComboPopupWindow::ProcessLeftDown(wxMouseEvent
& event
)
400 return wxPopupTransientWindow::ProcessLeftDown(event
);
403 // First thing that happens when a transient popup closes is that this method gets called.
404 void wxComboPopupWindow::OnDismiss()
406 wxComboCtrlBase
* combo
= (wxComboCtrlBase
*) GetParent();
407 wxASSERT_MSG( combo
->IsKindOf(CLASSINFO(wxComboCtrlBase
)),
408 wxT("parent might not be wxComboCtrl, but check IMPLEMENT_DYNAMIC_CLASS(2) macro for correctness") );
410 combo
->OnPopupDismiss();
412 #endif // USES_WXPOPUPTRANSIENTWINDOW
415 // ----------------------------------------------------------------------------
416 // wxComboPopupWindowEvtHandler does bulk of the custom event handling
417 // of a popup window. It is separate so we can have different types
419 // ----------------------------------------------------------------------------
421 class wxComboPopupWindowEvtHandler
: public wxEvtHandler
425 wxComboPopupWindowEvtHandler( wxComboCtrlBase
*parent
)
430 void OnSizeEvent( wxSizeEvent
& event
);
431 void OnKeyEvent(wxKeyEvent
& event
);
433 void OnActivate( wxActivateEvent
& event
);
437 wxComboCtrlBase
* m_combo
;
439 DECLARE_EVENT_TABLE()
443 BEGIN_EVENT_TABLE(wxComboPopupWindowEvtHandler
, wxEvtHandler
)
444 EVT_KEY_DOWN(wxComboPopupWindowEvtHandler::OnKeyEvent
)
445 EVT_KEY_UP(wxComboPopupWindowEvtHandler::OnKeyEvent
)
447 EVT_ACTIVATE(wxComboPopupWindowEvtHandler::OnActivate
)
449 EVT_SIZE(wxComboPopupWindowEvtHandler::OnSizeEvent
)
453 void wxComboPopupWindowEvtHandler::OnSizeEvent( wxSizeEvent
& WXUNUSED(event
) )
455 // Block the event so that the popup control does not get auto-resized.
458 void wxComboPopupWindowEvtHandler::OnKeyEvent( wxKeyEvent
& event
)
460 // Relay keyboard event to the main child controls
461 wxWindowList children
= m_combo
->GetPopupWindow()->GetChildren();
462 wxWindowList::iterator node
= children
.begin();
463 wxWindow
* child
= (wxWindow
*)*node
;
464 child
->AddPendingEvent(event
);
468 void wxComboPopupWindowEvtHandler::OnActivate( wxActivateEvent
& event
)
470 if ( !event
.GetActive() )
472 // Tell combo control that we are dismissed.
473 m_combo
->HidePopup();
481 // ----------------------------------------------------------------------------
484 // ----------------------------------------------------------------------------
486 wxComboPopup::~wxComboPopup()
490 void wxComboPopup::OnPopup()
494 void wxComboPopup::OnDismiss()
498 wxSize
wxComboPopup::GetAdjustedSize( int minWidth
,
500 int WXUNUSED(maxHeight
) )
502 return wxSize(minWidth
,prefHeight
);
505 void wxComboPopup::DefaultPaintComboControl( wxComboCtrlBase
* combo
,
506 wxDC
& dc
, const wxRect
& rect
)
508 if ( combo
->GetWindowStyle() & wxCB_READONLY
) // ie. no textctrl
510 combo
->PrepareBackground(dc
,rect
,0);
512 dc
.DrawText( combo
->GetValue(),
513 rect
.x
+ combo
->GetTextIndent(),
514 (rect
.height
-dc
.GetCharHeight())/2 + rect
.y
);
518 void wxComboPopup::PaintComboControl( wxDC
& dc
, const wxRect
& rect
)
520 DefaultPaintComboControl(m_combo
,dc
,rect
);
523 void wxComboPopup::OnComboKeyEvent( wxKeyEvent
& event
)
528 void wxComboPopup::OnComboDoubleClick()
532 void wxComboPopup::SetStringValue( const wxString
& WXUNUSED(value
) )
536 bool wxComboPopup::LazyCreate()
541 void wxComboPopup::Dismiss()
543 m_combo
->HidePopup();
546 // ----------------------------------------------------------------------------
548 // ----------------------------------------------------------------------------
551 // This is pushed to the event handler queue of the child textctrl.
553 class wxComboBoxExtraInputHandler
: public wxEvtHandler
557 wxComboBoxExtraInputHandler( wxComboCtrlBase
* combo
)
562 virtual ~wxComboBoxExtraInputHandler() { }
563 void OnKey(wxKeyEvent
& event
);
564 void OnFocus(wxFocusEvent
& event
);
567 wxComboCtrlBase
* m_combo
;
570 DECLARE_EVENT_TABLE()
574 BEGIN_EVENT_TABLE(wxComboBoxExtraInputHandler
, wxEvtHandler
)
575 EVT_KEY_DOWN(wxComboBoxExtraInputHandler::OnKey
)
576 EVT_SET_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
577 EVT_KILL_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
581 void wxComboBoxExtraInputHandler::OnKey(wxKeyEvent
& event
)
583 // Let the wxComboCtrl event handler have a go first.
584 wxComboCtrlBase
* combo
= m_combo
;
585 wxObject
* prevObj
= event
.GetEventObject();
587 event
.SetId(combo
->GetId());
588 event
.SetEventObject(combo
);
589 combo
->GetEventHandler()->ProcessEvent(event
);
591 event
.SetId(((wxWindow
*)prevObj
)->GetId());
592 event
.SetEventObject(prevObj
);
595 void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent
& event
)
597 // FIXME: This code does run when control is clicked,
598 // yet on Windows it doesn't select all the text.
599 if ( event
.GetEventType() == wxEVT_SET_FOCUS
&&
600 !(m_combo
->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT
) )
602 if ( m_combo
->GetTextCtrl() )
603 m_combo
->GetTextCtrl()->SelectAll();
605 m_combo
->SetSelection(-1,-1);
608 // Send focus indication to parent.
609 // NB: This is needed for cases where the textctrl gets focus
610 // instead of its parent. While this may trigger multiple
611 // wxEVT_SET_FOCUSes (since m_text->SetFocus is called
612 // from combo's focus event handler), they should be quite
614 wxFocusEvent
evt2(event
.GetEventType(),m_combo
->GetId());
615 evt2
.SetEventObject(m_combo
);
616 m_combo
->GetEventHandler()->ProcessEvent(evt2
);
623 // This is pushed to the event handler queue of the control in popup.
626 class wxComboPopupExtraEventHandler
: public wxEvtHandler
630 wxComboPopupExtraEventHandler( wxComboCtrlBase
* combo
)
634 m_beenInside
= false;
636 virtual ~wxComboPopupExtraEventHandler() { }
638 void OnMouseEvent( wxMouseEvent
& event
);
640 // Called from wxComboCtrlBase::OnPopupDismiss
641 void OnPopupDismiss()
643 m_beenInside
= false;
647 wxComboCtrlBase
* m_combo
;
652 DECLARE_EVENT_TABLE()
656 BEGIN_EVENT_TABLE(wxComboPopupExtraEventHandler
, wxEvtHandler
)
657 EVT_MOUSE_EVENTS(wxComboPopupExtraEventHandler::OnMouseEvent
)
661 void wxComboPopupExtraEventHandler::OnMouseEvent( wxMouseEvent
& event
)
663 wxPoint pt
= event
.GetPosition();
664 wxSize sz
= m_combo
->GetPopupControl()->GetControl()->GetClientSize();
665 int evtType
= event
.GetEventType();
666 bool isInside
= pt
.x
>= 0 && pt
.y
>= 0 && pt
.x
< sz
.x
&& pt
.y
< sz
.y
;
667 bool relayToButton
= false;
671 if ( evtType
== wxEVT_MOTION
||
672 evtType
== wxEVT_LEFT_DOWN
||
673 evtType
== wxEVT_RIGHT_DOWN
)
675 // Block motion and click events outside the popup
676 if ( !isInside
|| !m_combo
->IsPopupShown() )
681 else if ( evtType
== wxEVT_LEFT_UP
)
683 if ( !m_combo
->IsPopupShown() )
686 relayToButton
= true;
688 else if ( !m_beenInside
)
696 relayToButton
= true;
704 // Some mouse events to popup that happen outside it, before cursor
705 // has been inside the popup, need to be ignored by it but relayed to
708 wxWindow
* eventSink
= m_combo
;
709 wxWindow
* btn
= m_combo
->GetButton();
713 eventSink
->GetEventHandler()->ProcessEvent(event
);
717 // ----------------------------------------------------------------------------
718 // wxComboCtrlTextCtrl
719 // ----------------------------------------------------------------------------
721 class wxComboCtrlTextCtrl
: public wxTextCtrl
724 wxComboCtrlTextCtrl() : wxTextCtrl() { }
725 virtual ~wxComboCtrlTextCtrl() { }
727 virtual wxWindow
*GetMainWindowOfCompositeControl()
729 wxComboCtrl
* combo
= (wxComboCtrl
*) GetParent();
731 // Returning this instead of just 'parent' lets FindFocus work
732 // correctly even when parent control is a child of a composite
733 // generic control (as is case with wxGenericDatePickerCtrl).
734 return combo
->GetMainWindowOfCompositeControl();
738 // ----------------------------------------------------------------------------
740 // ----------------------------------------------------------------------------
743 BEGIN_EVENT_TABLE(wxComboCtrlBase
, wxControl
)
744 EVT_TEXT(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
745 EVT_SIZE(wxComboCtrlBase::OnSizeEvent
)
746 EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent
)
747 EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent
)
748 EVT_IDLE(wxComboCtrlBase::OnIdleEvent
)
749 //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent)
750 EVT_KEY_DOWN(wxComboCtrlBase::OnKeyEvent
)
751 EVT_TEXT_ENTER(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
752 EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged
)
756 IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase
, wxControl
)
758 void wxComboCtrlBase::Init()
760 m_winPopup
= (wxWindow
*)NULL
;
761 m_popup
= (wxWindow
*)NULL
;
762 m_popupWinState
= Hidden
;
763 m_btn
= (wxWindow
*) NULL
;
764 m_text
= (wxTextCtrl
*) NULL
;
765 m_popupInterface
= (wxComboPopup
*) NULL
;
767 m_popupExtraHandler
= (wxEvtHandler
*) NULL
;
768 m_textEvtHandler
= (wxEvtHandler
*) NULL
;
770 #if INSTALL_TOPLEV_HANDLER
771 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
774 m_mainCtrlWnd
= this;
777 m_widthMinPopup
= -1;
779 m_widthCustomPaint
= 0;
780 m_widthCustomBorder
= 0;
784 m_blankButtonBg
= false;
786 m_popupWinType
= POPUPWIN_NONE
;
787 m_btnWid
= m_btnHei
= -1;
795 m_timeCanAcceptClick
= 0;
797 m_resetFocus
= false;
800 bool wxComboCtrlBase::Create(wxWindow
*parent
,
802 const wxString
& value
,
806 const wxValidator
& validator
,
807 const wxString
& name
)
809 if ( !wxControl::Create(parent
,
813 style
| wxWANTS_CHARS
,
818 m_valueString
= value
;
822 m_absIndent
= GetNativeTextIndent();
824 m_iFlags
|= wxCC_IFLAG_CREATED
;
826 // If x and y indicate valid size, wxSizeEvent won't be
827 // emitted automatically, so we need to add artifical one.
828 if ( size
.x
> 0 && size
.y
> 0 )
830 wxSizeEvent
evt(size
,GetId());
831 GetEventHandler()->AddPendingEvent(evt
);
837 void wxComboCtrlBase::InstallInputHandlers()
841 m_textEvtHandler
= new wxComboBoxExtraInputHandler(this);
842 m_text
->PushEventHandler(m_textEvtHandler
);
847 wxComboCtrlBase::CreateTextCtrl(int style
, const wxValidator
& validator
)
849 if ( !(m_windowStyle
& wxCB_READONLY
) )
854 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
855 // not used by the wxPropertyGrid and therefore the tab is processed by
856 // looking at ancestors to see if they have wxTAB_TRAVERSAL. The
857 // navigation event is then sent to the wrong window.
858 style
|= wxTE_PROCESS_TAB
;
860 if ( HasFlag(wxTE_PROCESS_ENTER
) )
861 style
|= wxTE_PROCESS_ENTER
;
863 // Ignore EVT_TEXT generated by the constructor (but only
864 // if the event redirector already exists)
865 // NB: This must be " = 1" instead of "++";
866 if ( m_textEvtHandler
)
871 m_text
= new wxComboCtrlTextCtrl();
872 m_text
->Create(this, wxID_ANY
, m_valueString
,
873 wxDefaultPosition
, wxSize(10,-1),
878 void wxComboCtrlBase::OnThemeChange()
880 // Leave the default bg on the Mac so the area used by the focus ring will
881 // be the correct colour and themed brush. Instead we'll use
882 // wxSYS_COLOUR_WINDOW in the EVT_PAINT handler as needed.
884 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
888 wxComboCtrlBase::~wxComboCtrlBase()
893 #if INSTALL_TOPLEV_HANDLER
894 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
895 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
901 m_text
->RemoveEventHandler(m_textEvtHandler
);
903 delete m_textEvtHandler
;
907 // ----------------------------------------------------------------------------
909 // ----------------------------------------------------------------------------
911 // Recalculates button and textctrl areas
912 void wxComboCtrlBase::CalculateAreas( int btnWidth
)
914 wxSize sz
= GetClientSize();
915 int customBorder
= m_widthCustomBorder
;
916 int btnBorder
; // border for button only
918 // check if button should really be outside the border: we'll do it it if
919 // its platform default or bitmap+pushbutton background is used, but not if
920 // there is vertical size adjustment or horizontal spacing.
921 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) ||
922 (m_bmpNormal
.Ok() && m_blankButtonBg
) ) &&
923 m_btnSpacingX
== 0 &&
926 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
929 else if ( (m_iFlags
& wxCC_BUTTON_COVERS_BORDER
) &&
930 m_btnSpacingX
== 0 && !m_bmpNormal
.Ok() )
932 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
937 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
938 btnBorder
= customBorder
;
941 // Defaul indentation
942 if ( m_absIndent
< 0 )
943 m_absIndent
= GetNativeTextIndent();
945 int butWidth
= btnWidth
;
948 butWidth
= m_btnWidDefault
;
950 m_btnWidDefault
= butWidth
;
955 int butHeight
= sz
.y
- btnBorder
*2;
957 // Adjust button width
962 // Adjust button width to match aspect ratio
963 // (but only if control is smaller than best size).
964 int bestHeight
= GetBestSize().y
;
965 int height
= GetSize().y
;
967 if ( height
< bestHeight
)
969 // Make very small buttons square, as it makes
970 // them accommodate arrow image better and still
973 butWidth
= (height
*butWidth
)/bestHeight
;
975 butWidth
= butHeight
;
979 // Adjust button height
981 butHeight
= m_btnHei
;
983 // Use size of normal bitmap if...
986 // button width is set to default and blank button bg is not drawn
987 if ( m_bmpNormal
.Ok() )
989 int bmpReqWidth
= m_bmpNormal
.GetWidth();
990 int bmpReqHeight
= m_bmpNormal
.GetHeight();
992 // If drawing blank button background, we need to add some margin.
993 if ( m_blankButtonBg
)
995 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
996 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
999 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
1000 butWidth
= bmpReqWidth
;
1001 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
1002 butHeight
= bmpReqHeight
;
1004 // Need to fix height?
1005 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
1007 int newY
= butHeight
+(customBorder
*2);
1008 SetClientSize(wxDefaultCoord
,newY
);
1009 if ( m_bmpNormal
.Ok() || m_btnArea
.width
!= butWidth
|| m_btnArea
.height
!= butHeight
)
1010 m_iFlags
|= wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
1012 m_iFlags
&= ~wxCC_IFLAG_HAS_NONSTANDARD_BUTTON
;
1018 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
1020 m_btnSize
.x
= butWidth
;
1021 m_btnSize
.y
= butHeight
;
1023 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
1024 m_btnArea
.y
= btnBorder
+ FOCUS_RING
;
1025 m_btnArea
.width
= butAreaWid
;
1026 m_btnArea
.height
= sz
.y
- ((btnBorder
+FOCUS_RING
)*2);
1028 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
+ FOCUS_RING
;
1029 m_tcArea
.y
= customBorder
+ FOCUS_RING
;
1030 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2) - (FOCUS_RING
*2);
1031 m_tcArea
.height
= sz
.y
- ((customBorder
+FOCUS_RING
)*2);
1036 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
1037 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
1042 void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
1047 #if !TEXTCTRL_TEXT_CENTERED
1049 wxSize sz
= GetClientSize();
1051 int customBorder
= m_widthCustomBorder
;
1052 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
1055 int tcSizeY
= m_text
->GetBestSize().y
;
1056 int diff
= sz
.y
- tcSizeY
;
1057 int y
= textCtrlYAdjust
+ (diff
/2);
1059 if ( y
< customBorder
)
1062 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
+ m_absIndent
+ textCtrlXAdjust
,
1064 m_tcArea
.width
- COMBO_MARGIN
-
1065 (textCtrlXAdjust
+ m_widthCustomPaint
+ m_absIndent
),
1068 // Make sure textctrl doesn't exceed the bottom custom border
1069 wxSize tsz
= m_text
->GetSize();
1070 diff
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
1073 tsz
.y
= tsz
.y
- diff
- 1;
1074 m_text
->SetSize(tsz
);
1078 #else // TEXTCTRL_TEXT_CENTERED
1079 wxUnusedVar(textCtrlXAdjust
);
1080 wxUnusedVar(textCtrlYAdjust
);
1081 #endif // !TEXTCTRL_TEXT_CENTERED/TEXTCTRL_TEXT_CENTERED
1083 // If it has border, have textctrl will the entire text field.
1084 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
,
1086 m_tcArea
.width
- m_widthCustomPaint
,
1091 wxSize
wxComboCtrlBase::DoGetBestSize() const
1093 wxSize
sizeText(150,0);
1096 sizeText
= m_text
->GetBestSize();
1098 // TODO: Better method to calculate close-to-native control height.
1102 fhei
= (m_font
.GetPointSize()*2) + 5;
1103 else if ( wxNORMAL_FONT
->Ok() )
1104 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
1106 fhei
= sizeText
.y
+ 4;
1108 // Need to force height to accomodate bitmap?
1109 int btnSizeY
= m_btnSize
.y
;
1110 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
1113 // Control height doesn't depend on border
1116 int border = m_windowStyle & wxBORDER_MASK;
1117 if ( border == wxSIMPLE_BORDER )
1119 else if ( border == wxNO_BORDER )
1120 fhei += (m_widthCustomBorder*2);
1126 // Final adjustments
1132 // these are the numbers from the HIG:
1133 switch ( m_windowVariant
)
1135 case wxWINDOW_VARIANT_NORMAL
:
1139 case wxWINDOW_VARIANT_SMALL
:
1142 case wxWINDOW_VARIANT_MINI
:
1148 fhei
+= 2 * FOCUS_RING
;
1149 int width
= sizeText
.x
+ FOCUS_RING
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
;
1151 wxSize
ret(width
, fhei
);
1156 void wxComboCtrlBase::OnSizeEvent( wxSizeEvent
& event
)
1161 // defined by actual wxComboCtrls
1167 // ----------------------------------------------------------------------------
1168 // standard operations
1169 // ----------------------------------------------------------------------------
1171 bool wxComboCtrlBase::Enable(bool enable
)
1173 if ( !wxControl::Enable(enable
) )
1177 m_btn
->Enable(enable
);
1179 m_text
->Enable(enable
);
1184 bool wxComboCtrlBase::Show(bool show
)
1186 if ( !wxControl::Show(show
) )
1198 bool wxComboCtrlBase::SetFont ( const wxFont
& font
)
1200 if ( !wxControl::SetFont(font
) )
1204 m_text
->SetFont(font
);
1210 void wxComboCtrlBase::DoSetToolTip(wxToolTip
*tooltip
)
1212 wxControl::DoSetToolTip(tooltip
);
1214 // Set tool tip for button and text box
1217 const wxString
&tip
= tooltip
->GetTip();
1218 if ( m_text
) m_text
->SetToolTip(tip
);
1219 if ( m_btn
) m_btn
->SetToolTip(tip
);
1223 if ( m_text
) m_text
->SetToolTip( (wxToolTip
*) NULL
);
1224 if ( m_btn
) m_btn
->SetToolTip( (wxToolTip
*) NULL
);
1227 #endif // wxUSE_TOOLTIPS
1229 #if wxUSE_VALIDATORS
1230 void wxComboCtrlBase::SetValidator(const wxValidator
& validator
)
1232 wxTextCtrl
* textCtrl
= GetTextCtrl();
1235 textCtrl
->SetValidator( validator
);
1238 wxValidator
* wxComboCtrlBase::GetValidator()
1240 wxTextCtrl
* textCtrl
= GetTextCtrl();
1243 return textCtrl
->GetValidator();
1245 return wxControl::GetValidator();
1247 #endif // wxUSE_VALIDATORS
1249 // ----------------------------------------------------------------------------
1251 // ----------------------------------------------------------------------------
1253 #if (!defined(__WXMSW__)) || defined(__WXUNIVERSAL__)
1254 // prepare combo box background on area in a way typical on platform
1255 void wxComboCtrlBase::PrepareBackground( wxDC
& dc
, const wxRect
& rect
, int flags
) const
1257 wxSize sz
= GetClientSize();
1259 bool doDrawFocusRect
; // also selected
1261 // For smaller size control (and for disabled background) use less spacing
1265 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1268 isEnabled
= IsEnabled();
1269 doDrawFocusRect
= ShouldDrawFocus() && !(m_iFlags
& wxCC_FULL_BUTTON
);
1271 // Windows-style: for smaller size control (and for disabled background) use less spacing
1272 focusSpacingX
= isEnabled
? 2 : 1;
1273 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1277 // Drawing a list item
1278 isEnabled
= true; // they are never disabled
1279 doDrawFocusRect
= (flags
& wxCONTROL_SELECTED
) != 0;
1285 // Set the background sub-rectangle for selection, disabled etc
1286 wxRect
selRect(rect
);
1287 selRect
.y
+= focusSpacingY
;
1288 selRect
.height
-= (focusSpacingY
*2);
1292 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1293 wcp
+= m_widthCustomPaint
;
1295 selRect
.x
+= wcp
+ focusSpacingX
;
1296 selRect
.width
-= wcp
+ (focusSpacingX
*2);
1299 bool doDrawSelRect
= true;
1303 // If popup is hidden and this control is focused,
1304 // then draw the focus-indicator (selbgcolor background etc.).
1305 if ( doDrawFocusRect
)
1307 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
) );
1308 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1312 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
1313 #ifndef __WXMAC__ // see note in OnThemeChange
1314 doDrawSelRect
= false;
1315 bgCol
= GetBackgroundColour();
1317 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1323 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
) );
1324 #ifndef __WXMAC__ // see note in OnThemeChange
1325 bgCol
= GetBackgroundColour();
1327 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1331 dc
.SetBrush( bgCol
);
1332 if ( doDrawSelRect
)
1335 dc
.DrawRectangle( selRect
);
1338 // Don't clip exactly to the selection rectangle so we can draw
1339 // to the non-selected area in front of it.
1340 wxRect
clipRect(rect
.x
,rect
.y
,
1341 (selRect
.x
+selRect
.width
)-rect
.x
,rect
.height
);
1342 dc
.SetClippingRegion(clipRect
);
1345 // Save the library size a bit for platforms that re-implement this.
1346 void wxComboCtrlBase::PrepareBackground( wxDC
&, const wxRect
&, int ) const
1351 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, int flags
)
1353 int drawState
= m_btnState
;
1355 if ( (m_iFlags
& wxCC_BUTTON_STAYS_DOWN
) &&
1356 GetPopupWindowState() >= Animating
)
1357 drawState
|= wxCONTROL_PRESSED
;
1359 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1360 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1364 // Make sure area is not larger than the control
1365 if ( drawRect
.y
< rect
.y
)
1366 drawRect
.y
= rect
.y
;
1367 if ( drawRect
.height
> rect
.height
)
1368 drawRect
.height
= rect
.height
;
1370 bool enabled
= IsEnabled();
1373 drawState
|= wxCONTROL_DISABLED
;
1375 if ( !m_bmpNormal
.Ok() )
1377 if ( flags
& Button_BitmapOnly
)
1380 // Need to clear button background even if m_btn is present
1381 if ( flags
& Button_PaintBackground
)
1385 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1386 bgCol
= GetParent()->GetBackgroundColour();
1388 bgCol
= GetBackgroundColour();
1392 dc
.DrawRectangle(rect
);
1395 // Draw standard button
1396 wxRendererNative::Get().DrawComboBoxDropButton(this,
1408 pBmp
= &m_bmpDisabled
;
1409 else if ( m_btnState
& wxCONTROL_PRESSED
)
1410 pBmp
= &m_bmpPressed
;
1411 else if ( m_btnState
& wxCONTROL_CURRENT
)
1414 pBmp
= &m_bmpNormal
;
1416 if ( m_blankButtonBg
)
1418 // If using blank button background, we need to clear its background
1419 // with button face colour instead of colour for rest of the control.
1420 if ( flags
& Button_PaintBackground
)
1422 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1423 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1426 dc
.DrawRectangle(rect
);
1429 if ( !(flags
& Button_BitmapOnly
) )
1431 wxRendererNative::Get().DrawPushButton(this,
1440 // Need to clear button background even if m_btn is present
1441 // (assume non-button background was cleared just before this call so brushes are good)
1442 if ( flags
& Button_PaintBackground
)
1443 dc
.DrawRectangle(rect
);
1446 // Draw bitmap centered in drawRect
1447 dc
.DrawBitmap(*pBmp
,
1448 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1449 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1454 void wxComboCtrlBase::RecalcAndRefresh()
1458 wxSizeEvent
evt(GetSize(),GetId());
1459 GetEventHandler()->ProcessEvent(evt
);
1464 // ----------------------------------------------------------------------------
1465 // miscellaneous event handlers
1466 // ----------------------------------------------------------------------------
1468 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1470 if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
)
1472 if ( m_ignoreEvtText
> 0 )
1479 // Change event id, object and string before relaying it forward
1480 event
.SetId(GetId());
1481 wxString s
= event
.GetString();
1482 event
.SetEventObject(this);
1487 // call if cursor is on button area or mouse is captured for the button
1488 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1491 int type
= event
.GetEventType();
1493 if ( type
== wxEVT_MOTION
)
1495 if ( (flags
& wxCC_MF_ON_BUTTON
) &&
1496 IsPopupWindowState(Hidden
) )
1498 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1500 // Mouse hover begins
1501 m_btnState
|= wxCONTROL_CURRENT
;
1502 if ( HasCapture() ) // Retain pressed state.
1503 m_btnState
|= wxCONTROL_PRESSED
;
1507 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1510 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1514 else if ( type
== wxEVT_LEFT_DOWN
|| type
== wxEVT_LEFT_DCLICK
)
1516 if ( flags
& (wxCC_MF_ON_CLICK_AREA
|wxCC_MF_ON_BUTTON
) )
1518 m_btnState
|= wxCONTROL_PRESSED
;
1521 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1524 // If showing popup now, do not capture mouse or there will be interference
1528 else if ( type
== wxEVT_LEFT_UP
)
1531 // Only accept event if mouse was left-press was previously accepted
1535 if ( m_btnState
& wxCONTROL_PRESSED
)
1537 // If mouse was inside, fire the click event.
1538 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1540 if ( flags
& (wxCC_MF_ON_CLICK_AREA
|wxCC_MF_ON_BUTTON
) )
1544 m_btnState
&= ~(wxCONTROL_PRESSED
);
1548 else if ( type
== wxEVT_LEAVE_WINDOW
)
1550 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1552 m_btnState
&= ~(wxCONTROL_CURRENT
);
1555 if ( IsPopupWindowState(Hidden
) )
1557 m_btnState
&= ~(wxCONTROL_PRESSED
);
1565 // Never have 'hot' state when popup is being shown
1566 // (this is mostly needed because of the animation).
1567 if ( !IsPopupWindowState(Hidden
) )
1568 m_btnState
&= ~wxCONTROL_CURRENT
;
1573 // returns true if event was consumed or filtered
1574 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1575 int WXUNUSED(flags
) )
1577 wxLongLong t
= ::wxGetLocalTimeMillis();
1578 int evtType
= event
.GetEventType();
1580 #if USES_WXPOPUPWINDOW || USES_WXDIALOG
1581 if ( m_popupWinType
!= POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
1583 if ( IsPopupWindowState(Visible
) &&
1584 ( evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_RIGHT_DOWN
) )
1592 // Filter out clicks on button immediately after popup dismiss
1593 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1595 event
.SetEventType(0);
1602 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1604 int evtType
= event
.GetEventType();
1606 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1607 (m_windowStyle
& wxCB_READONLY
) )
1609 if ( GetPopupWindowState() >= Animating
)
1611 #if USES_WXPOPUPWINDOW
1612 // Click here always hides the popup.
1613 if ( m_popupWinType
== POPUPWIN_WXPOPUPWINDOW
)
1619 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1621 // In read-only mode, clicking the text is the
1622 // same as clicking the button.
1625 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1627 //if ( m_popupInterface->CycleValue() )
1629 if ( m_popupInterface
)
1630 m_popupInterface
->OnComboDoubleClick();
1635 if ( IsPopupShown() )
1637 // relay (some) mouse events to the popup
1638 if ( evtType
== wxEVT_MOUSEWHEEL
)
1639 m_popup
->AddPendingEvent(event
);
1645 void wxComboCtrlBase::OnKeyEvent(wxKeyEvent
& event
)
1647 if ( IsPopupShown() )
1649 // pass it to the popped up control
1650 GetPopupControl()->GetControl()->AddPendingEvent(event
);
1654 int keycode
= event
.GetKeyCode();
1656 if ( keycode
== WXK_TAB
)
1658 wxNavigationKeyEvent evt
;
1660 wxWindow
* mainCtrl
= GetMainWindowOfCompositeControl();
1662 evt
.SetFlags(wxNavigationKeyEvent::FromTab
|
1663 (!event
.ShiftDown() ? wxNavigationKeyEvent::IsForward
1664 : wxNavigationKeyEvent::IsBackward
));
1665 evt
.SetEventObject(mainCtrl
);
1666 evt
.SetCurrentFocus(mainCtrl
);
1667 mainCtrl
->GetParent()->GetEventHandler()->AddPendingEvent(evt
);
1671 if ( IsKeyPopupToggle(event
) )
1677 int comboStyle
= GetWindowStyle();
1678 wxComboPopup
* popupInterface
= GetPopupControl();
1680 if ( !popupInterface
)
1686 if ( (comboStyle
& wxCB_READONLY
) ||
1687 (keycode
!= WXK_RIGHT
&& keycode
!= WXK_LEFT
) )
1689 popupInterface
->OnComboKeyEvent(event
);
1696 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& event
)
1698 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
1700 wxWindow
* tc
= GetTextCtrl();
1701 if ( tc
&& tc
!= DoFindFocus() )
1703 m_resetFocus
= true;
1714 void wxComboCtrlBase::OnIdleEvent( wxIdleEvent
& WXUNUSED(event
) )
1718 m_resetFocus
= false;
1719 wxWindow
* tc
= GetTextCtrl();
1725 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1728 // indentation may also have changed
1729 if ( !(m_iFlags
& wxCC_IFLAG_INDENT_SET
) )
1730 m_absIndent
= GetNativeTextIndent();
1734 // ----------------------------------------------------------------------------
1736 // ----------------------------------------------------------------------------
1738 // Create popup window and the child control
1739 void wxComboCtrlBase::CreatePopup()
1741 wxComboPopup
* popupInterface
= m_popupInterface
;
1746 #ifdef wxComboPopupWindowBase2
1747 if ( m_iFlags
& wxCC_IFLAG_USE_ALT_POPUP
)
1750 m_winPopup
= new wxComboPopupWindowBase2( this, wxNO_BORDER
);
1752 m_winPopup
= new wxComboPopupWindowBase2( this, wxID_ANY
, wxEmptyString
,
1753 wxPoint(-21,-21), wxSize(20, 20),
1756 m_popupWinType
= SECONDARY_POPUP_TYPE
;
1759 #endif // wxComboPopupWindowBase2
1761 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1762 m_popupWinType
= PRIMARY_POPUP_TYPE
;
1764 m_popupWinEvtHandler
= new wxComboPopupWindowEvtHandler(this);
1765 m_winPopup
->PushEventHandler(m_popupWinEvtHandler
);
1768 popupInterface
->Create(m_winPopup
);
1769 m_popup
= popup
= popupInterface
->GetControl();
1771 m_popupExtraHandler
= new wxComboPopupExtraEventHandler(this);
1772 popup
->PushEventHandler( m_popupExtraHandler
);
1774 // This may be helpful on some platforms
1775 // (eg. it bypasses a wxGTK popupwindow bug where
1776 // window is not initially hidden when it should be)
1779 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
1782 // Destroy popup window and the child control
1783 void wxComboCtrlBase::DestroyPopup()
1788 m_popup
->RemoveEventHandler(m_popupExtraHandler
);
1790 delete m_popupExtraHandler
;
1792 delete m_popupInterface
;
1796 m_winPopup
->RemoveEventHandler(m_popupWinEvtHandler
);
1797 delete m_popupWinEvtHandler
;
1798 m_popupWinEvtHandler
= NULL
;
1799 m_winPopup
->Destroy();
1802 m_popupExtraHandler
= (wxEvtHandler
*) NULL
;
1803 m_popupInterface
= (wxComboPopup
*) NULL
;
1804 m_winPopup
= (wxWindow
*) NULL
;
1805 m_popup
= (wxWindow
*) NULL
;
1808 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
1810 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
1814 iface
->InitBase(this);
1817 m_popupInterface
= iface
;
1819 if ( !iface
->LazyCreate() )
1825 m_popup
= (wxWindow
*) NULL
;
1828 // This must be done after creation
1829 if ( m_valueString
.length() )
1831 iface
->SetStringValue(m_valueString
);
1836 // Ensures there is atleast the default popup
1837 void wxComboCtrlBase::EnsurePopupControl()
1839 if ( !m_popupInterface
)
1840 SetPopupControl(NULL
);
1843 void wxComboCtrlBase::OnButtonClick()
1845 // Derived classes can override this method for totally custom
1850 void wxComboCtrlBase::ShowPopup()
1852 EnsurePopupControl();
1853 wxCHECK_RET( !IsPopupWindowState(Visible
), wxT("popup window already shown") );
1855 if ( IsPopupWindowState(Animating
) )
1860 // Space above and below
1866 wxSize ctrlSz
= GetSize();
1868 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
1869 scrPos
= GetParent()->ClientToScreen(GetPosition());
1871 spaceAbove
= scrPos
.y
;
1872 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
1874 maxHeightPopup
= spaceBelow
;
1875 if ( spaceAbove
> spaceBelow
)
1876 maxHeightPopup
= spaceAbove
;
1879 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
1881 if ( widthPopup
< m_widthMinPopup
)
1882 widthPopup
= m_widthMinPopup
;
1884 wxWindow
* winPopup
= m_winPopup
;
1887 // Need to disable tab traversal of parent
1889 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
1890 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
1891 // that if transient popup is open, then tab traversal is to be ignored.
1892 // However, I think this code would still be needed for cases where
1893 // transient popup doesn't work yet (wxWinCE?).
1894 wxWindow
* parent
= GetParent();
1895 int parentFlags
= parent
->GetWindowStyle();
1896 if ( parentFlags
& wxTAB_TRAVERSAL
)
1898 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
1899 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
1905 winPopup
= m_winPopup
;
1915 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
1917 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
1918 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
1921 popup
->SetSize(adjustedSize
);
1923 m_popupInterface
->OnPopup();
1926 // Reposition and resize popup window
1929 wxSize szp
= popup
->GetSize();
1932 int popupY
= scrPos
.y
+ ctrlSz
.y
;
1934 // Default anchor is wxLEFT
1935 int anchorSide
= m_anchorSide
;
1937 anchorSide
= wxLEFT
;
1939 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
1940 int leftX
= scrPos
.x
- m_extLeft
;
1942 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
1945 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
1947 // If there is not enough horizontal space, anchor on the other side.
1948 // If there is no space even then, place the popup at x 0.
1949 if ( anchorSide
== wxRIGHT
)
1953 if ( (leftX
+szp
.x
) < screenWidth
)
1954 anchorSide
= wxLEFT
;
1961 if ( (leftX
+szp
.x
) >= screenWidth
)
1964 anchorSide
= wxRIGHT
;
1970 // Select x coordinate according to the anchor side
1971 if ( anchorSide
== wxRIGHT
)
1973 else if ( anchorSide
== wxLEFT
)
1978 int showFlags
= CanDeferShow
;
1980 if ( spaceBelow
< szp
.y
)
1982 popupY
= scrPos
.y
- szp
.y
;
1983 showFlags
|= ShowAbove
;
1986 #if INSTALL_TOPLEV_HANDLER
1987 // Put top level window event handler into place
1988 if ( m_popupWinType
== POPUPWIN_WXPOPUPWINDOW
)
1990 if ( !m_toplevEvtHandler
)
1991 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
1993 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1995 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
1996 toplev
->PushEventHandler( m_toplevEvtHandler
);
2000 // Set string selection (must be this way instead of SetStringSelection)
2003 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
2004 m_text
->SelectAll();
2006 m_popupInterface
->SetStringValue( m_text
->GetValue() );
2010 // This is neede since focus/selection indication may change when popup is shown
2014 // This must be after SetStringValue
2015 m_popupWinState
= Animating
;
2017 wxRect
popupWinRect( popupX
, popupY
, szp
.x
, szp
.y
);
2020 if ( (m_iFlags
& wxCC_IFLAG_DISABLE_POPUP_ANIM
) ||
2021 AnimateShow( popupWinRect
, showFlags
) )
2023 DoShowPopup( popupWinRect
, showFlags
);
2027 bool wxComboCtrlBase::AnimateShow( const wxRect
& WXUNUSED(rect
), int WXUNUSED(flags
) )
2032 void wxComboCtrlBase::DoShowPopup( const wxRect
& rect
, int WXUNUSED(flags
) )
2034 wxWindow
* winPopup
= m_winPopup
;
2036 if ( IsPopupWindowState(Animating
) )
2038 // Make sure the popup window is shown in the right position.
2039 // Should not matter even if animation already did this.
2041 // Some platforms (GTK) may like SetSize and Move to be separate
2042 // (though the bug was probably fixed).
2043 winPopup
->SetSize( rect
);
2045 #if USES_WXPOPUPTRANSIENTWINDOW
2046 if ( m_popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
2047 ((wxPopupTransientWindow
*)winPopup
)->Popup(m_popup
);
2052 m_popupWinState
= Visible
;
2054 else if ( IsPopupWindowState(Hidden
) )
2056 // Animation was aborted
2058 wxASSERT( !winPopup
->IsShown() );
2060 m_popupWinState
= Hidden
;
2066 void wxComboCtrlBase::OnPopupDismiss()
2068 // Just in case, avoid double dismiss
2069 if ( IsPopupWindowState(Hidden
) )
2072 // This must be set before focus - otherwise there will be recursive
2073 // OnPopupDismisses.
2074 m_popupWinState
= Hidden
;
2077 m_winPopup
->Disable();
2079 // Inform popup control itself
2080 m_popupInterface
->OnDismiss();
2082 if ( m_popupExtraHandler
)
2083 ((wxComboPopupExtraEventHandler
*)m_popupExtraHandler
)->OnPopupDismiss();
2085 #if INSTALL_TOPLEV_HANDLER
2086 // Remove top level window event handler
2087 if ( m_toplevEvtHandler
)
2089 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
2091 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
2095 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis();
2097 if ( m_popupWinType
== POPUPWIN_WXPOPUPTRANSIENTWINDOW
)
2098 m_timeCanAcceptClick
+= 150;
2100 // If cursor not on dropdown button, then clear its state
2101 // (technically not required by all ports, but do it for all just in case)
2102 if ( !m_btnArea
.Contains(ScreenToClient(::wxGetMousePosition())) )
2105 // Return parent's tab traversal flag.
2106 // See ShowPopup for notes.
2107 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
2109 wxWindow
* parent
= GetParent();
2110 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
2111 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
2114 // refresh control (necessary even if m_text)
2120 void wxComboCtrlBase::HidePopup()
2122 // Should be able to call this without popup interface
2123 if ( IsPopupWindowState(Hidden
) )
2126 // transfer value and show it in textctrl, if any
2127 if ( !IsPopupWindowState(Animating
) )
2128 SetValue( m_popupInterface
->GetStringValue() );
2135 // ----------------------------------------------------------------------------
2136 // customization methods
2137 // ----------------------------------------------------------------------------
2139 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
2140 int side
, int spacingX
)
2145 m_btnSpacingX
= spacingX
;
2150 wxSize
wxComboCtrlBase::GetButtonSize()
2152 if ( m_btnSize
.x
> 0 )
2155 wxSize
retSize(m_btnWid
,m_btnHei
);
2157 // Need to call CalculateAreas now if button size is
2158 // is not explicitly specified.
2159 if ( retSize
.x
<= 0 || retSize
.y
<= 0)
2163 retSize
= m_btnSize
;
2169 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
2171 const wxBitmap
& bmpPressed
,
2172 const wxBitmap
& bmpHover
,
2173 const wxBitmap
& bmpDisabled
)
2175 m_bmpNormal
= bmpNormal
;
2176 m_blankButtonBg
= blankButtonBg
;
2178 if ( bmpPressed
.Ok() )
2179 m_bmpPressed
= bmpPressed
;
2181 m_bmpPressed
= bmpNormal
;
2183 if ( bmpHover
.Ok() )
2184 m_bmpHover
= bmpHover
;
2186 m_bmpHover
= bmpNormal
;
2188 if ( bmpDisabled
.Ok() )
2189 m_bmpDisabled
= bmpDisabled
;
2191 m_bmpDisabled
= bmpNormal
;
2196 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
2200 // move textctrl accordingly
2201 wxRect r
= m_text
->GetRect();
2202 int inc
= width
- m_widthCustomPaint
;
2205 m_text
->SetSize( r
);
2208 m_widthCustomPaint
= width
;
2213 void wxComboCtrlBase::SetTextIndent( int indent
)
2217 m_absIndent
= GetNativeTextIndent();
2218 m_iFlags
&= ~(wxCC_IFLAG_INDENT_SET
);
2222 m_absIndent
= indent
;
2223 m_iFlags
|= wxCC_IFLAG_INDENT_SET
;
2229 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
2231 return DEFAULT_TEXT_INDENT
;
2234 // ----------------------------------------------------------------------------
2235 // methods forwarded to wxTextCtrl
2236 // ----------------------------------------------------------------------------
2238 wxString
wxComboCtrlBase::GetValue() const
2241 return m_text
->GetValue();
2242 return m_valueString
;
2245 void wxComboCtrlBase::SetValueWithEvent(const wxString
& value
, bool withEvent
)
2252 m_text
->SetValue(value
);
2254 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
2255 m_text
->SelectAll();
2258 // Since wxComboPopup may want to paint the combo as well, we need
2259 // to set the string value here (as well as sometimes in ShowPopup).
2260 if ( m_valueString
!= value
)
2262 m_valueString
= value
;
2264 EnsurePopupControl();
2266 if (m_popupInterface
)
2267 m_popupInterface
->SetStringValue(value
);
2273 void wxComboCtrlBase::SetValue(const wxString
& value
)
2275 SetValueWithEvent(value
, false);
2278 // In this SetValue variant wxComboPopup::SetStringValue is not called
2279 void wxComboCtrlBase::SetText(const wxString
& value
)
2281 // Unlike in SetValue(), this must be called here or
2282 // the behaviour will no be consistent in readonlys.
2283 EnsurePopupControl();
2285 m_valueString
= value
;
2290 m_text
->SetValue( value
);
2296 void wxComboCtrlBase::Copy()
2302 void wxComboCtrlBase::Cut()
2308 void wxComboCtrlBase::Paste()
2314 void wxComboCtrlBase::SetInsertionPoint(long pos
)
2317 m_text
->SetInsertionPoint(pos
);
2320 void wxComboCtrlBase::SetInsertionPointEnd()
2323 m_text
->SetInsertionPointEnd();
2326 long wxComboCtrlBase::GetInsertionPoint() const
2329 return m_text
->GetInsertionPoint();
2334 long wxComboCtrlBase::GetLastPosition() const
2337 return m_text
->GetLastPosition();
2342 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2345 m_text
->Replace(from
, to
, value
);
2348 void wxComboCtrlBase::Remove(long from
, long to
)
2351 m_text
->Remove(from
, to
);
2354 void wxComboCtrlBase::SetSelection(long from
, long to
)
2357 m_text
->SetSelection(from
, to
);
2360 void wxComboCtrlBase::Undo()
2366 #endif // wxUSE_COMBOCTRL