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"
32 #include "wx/dcclient.h"
33 #include "wx/settings.h"
34 #include "wx/dialog.h"
38 #include "wx/dcbuffer.h"
39 #include "wx/tooltip.h"
46 // ----------------------------------------------------------------------------
48 // Milliseconds to wait for two mouse-ups after focus inorder
49 // to trigger a double-click.
50 #define DOUBLE_CLICK_CONVERSION_TRESHOLD 500
52 #define DEFAULT_DROPBUTTON_WIDTH 19
54 #define BMP_BUTTON_MARGIN 4
56 #define DEFAULT_POPUP_HEIGHT 200
58 #define DEFAULT_TEXT_INDENT 3
60 #define COMBO_MARGIN 2 // spacing right of wxTextCtrl
63 #if defined(__WXMSW__)
65 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
67 //#undef wxUSE_POPUPWIN
68 //#define wxUSE_POPUPWIN 0
70 #elif defined(__WXGTK__)
72 #define USE_TRANSIENT_POPUP 1 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
74 #elif defined(__WXMAC__)
76 #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
80 #define USE_TRANSIENT_POPUP 0 // Use wxPopupWindowTransient (preferred, if it works properly on platform)
85 // Popupwin is really only supported on wxMSW (not WINCE) and wxGTK, regardless
86 // what the wxUSE_POPUPWIN says.
87 // FIXME: Why isn't wxUSE_POPUPWIN reliable any longer? (it was in wxW2.6.2)
88 #if (!defined(__WXMSW__) && !defined(__WXGTK__)) || defined(__WXWINCE__)
90 #define wxUSE_POPUPWIN 0
95 #include "wx/popupwin.h"
97 #undef USE_TRANSIENT_POPUP
98 #define USE_TRANSIENT_POPUP 0
102 #if USE_TRANSIENT_POPUP
104 #define wxComboPopupWindowBase wxPopupTransientWindow
105 #define INSTALL_TOPLEV_HANDLER 0
109 #define wxComboPopupWindowBase wxPopupWindow
110 #define INSTALL_TOPLEV_HANDLER 1
114 #define wxComboPopupWindowBase wxDialog
115 #define INSTALL_TOPLEV_HANDLER 0 // Doesn't need since can monitor active event
123 // * wxComboPopupWindow for external use (ie. replace old wxUniv wxPopupComboWindow)
127 // ----------------------------------------------------------------------------
128 // wxComboFrameEventHandler takes care of hiding the popup when events happen
129 // in its top level parent.
130 // ----------------------------------------------------------------------------
132 #if INSTALL_TOPLEV_HANDLER
135 // This will no longer be necessary after wxTransientPopupWindow
136 // works well on all platforms.
139 class wxComboFrameEventHandler
: public wxEvtHandler
142 wxComboFrameEventHandler( wxComboCtrlBase
* pCb
);
143 virtual ~wxComboFrameEventHandler();
147 void OnIdle( wxIdleEvent
& event
);
148 void OnMouseEvent( wxMouseEvent
& event
);
149 void OnActivate( wxActivateEvent
& event
);
150 void OnResize( wxSizeEvent
& event
);
151 void OnMove( wxMoveEvent
& event
);
152 void OnMenuEvent( wxMenuEvent
& event
);
153 void OnClose( wxCloseEvent
& event
);
156 wxWindow
* m_focusStart
;
157 wxComboCtrlBase
* m_combo
;
160 DECLARE_EVENT_TABLE()
163 BEGIN_EVENT_TABLE(wxComboFrameEventHandler
, wxEvtHandler
)
164 EVT_IDLE(wxComboFrameEventHandler::OnIdle
)
165 EVT_LEFT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
166 EVT_RIGHT_DOWN(wxComboFrameEventHandler::OnMouseEvent
)
167 EVT_SIZE(wxComboFrameEventHandler::OnResize
)
168 EVT_MOVE(wxComboFrameEventHandler::OnMove
)
169 EVT_MENU_HIGHLIGHT(wxID_ANY
,wxComboFrameEventHandler::OnMenuEvent
)
170 EVT_MENU_OPEN(wxComboFrameEventHandler::OnMenuEvent
)
171 EVT_ACTIVATE(wxComboFrameEventHandler::OnActivate
)
172 EVT_CLOSE(wxComboFrameEventHandler::OnClose
)
175 wxComboFrameEventHandler::wxComboFrameEventHandler( wxComboCtrlBase
* combo
)
181 wxComboFrameEventHandler::~wxComboFrameEventHandler()
185 void wxComboFrameEventHandler::OnPopup()
187 m_focusStart
= ::wxWindow::FindFocus();
190 void wxComboFrameEventHandler::OnIdle( wxIdleEvent
& event
)
192 wxWindow
* winFocused
= ::wxWindow::FindFocus();
194 wxWindow
* popup
= m_combo
->GetPopupControl()->GetControl();
195 wxWindow
* winpopup
= m_combo
->GetPopupWindow();
198 winFocused
!= m_focusStart
&&
199 winFocused
!= popup
&&
200 winFocused
->GetParent() != popup
&&
201 winFocused
!= winpopup
&&
202 winFocused
->GetParent() != winpopup
&&
203 winFocused
!= m_combo
&&
204 winFocused
!= m_combo
->GetButton() // GTK (atleast) requires this
207 m_combo
->HidePopup();
213 void wxComboFrameEventHandler::OnMenuEvent( wxMenuEvent
& event
)
215 m_combo
->HidePopup();
219 void wxComboFrameEventHandler::OnMouseEvent( wxMouseEvent
& event
)
221 m_combo
->HidePopup();
225 void wxComboFrameEventHandler::OnClose( wxCloseEvent
& event
)
227 m_combo
->HidePopup();
231 void wxComboFrameEventHandler::OnActivate( wxActivateEvent
& event
)
233 m_combo
->HidePopup();
237 void wxComboFrameEventHandler::OnResize( wxSizeEvent
& event
)
239 m_combo
->HidePopup();
243 void wxComboFrameEventHandler::OnMove( wxMoveEvent
& event
)
245 m_combo
->HidePopup();
249 #endif // INSTALL_TOPLEV_HANDLER
251 // ----------------------------------------------------------------------------
252 // wxComboPopupWindow is wxPopupWindow customized for
254 // ----------------------------------------------------------------------------
256 class wxComboPopupWindow
: public wxComboPopupWindowBase
260 wxComboPopupWindow( wxComboCtrlBase
*parent
, int style
= wxBORDER_NONE
);
262 #if USE_TRANSIENT_POPUP
263 virtual bool ProcessLeftDown(wxMouseEvent
& event
);
266 void OnKeyEvent(wxKeyEvent
& event
);
268 void OnMouseEvent( wxMouseEvent
& event
);
270 void OnActivate( wxActivateEvent
& event
);
275 #if USE_TRANSIENT_POPUP
276 virtual void OnDismiss();
280 DECLARE_EVENT_TABLE()
284 BEGIN_EVENT_TABLE(wxComboPopupWindow
, wxComboPopupWindowBase
)
285 EVT_MOUSE_EVENTS(wxComboPopupWindow::OnMouseEvent
)
287 EVT_ACTIVATE(wxComboPopupWindow::OnActivate
)
289 EVT_KEY_DOWN(wxComboPopupWindow::OnKeyEvent
)
290 EVT_KEY_UP(wxComboPopupWindow::OnKeyEvent
)
294 wxComboPopupWindow::wxComboPopupWindow( wxComboCtrlBase
*parent
,
297 : wxComboPopupWindowBase(parent
,style
)
299 : wxComboPopupWindowBase(parent
,
309 void wxComboPopupWindow::OnKeyEvent( wxKeyEvent
& event
)
311 // Relay keyboard event to the main child controls
312 // (just skipping may just cause the popup to close)
313 wxWindowList children
= GetChildren();
314 wxWindowList::iterator node
= children
.begin();
315 wxWindow
* child
= (wxWindow
*)*node
;
316 child
->AddPendingEvent(event
);
319 void wxComboPopupWindow::OnMouseEvent( wxMouseEvent
& event
)
325 void wxComboPopupWindow::OnActivate( wxActivateEvent
& event
)
327 if ( !event
.GetActive() )
329 // Tell combo control that we are dismissed.
330 wxComboCtrl
* combo
= (wxComboCtrl
*) GetParent();
332 wxASSERT( combo
->IsKindOf(CLASSINFO(wxComboCtrl
)) );
341 #if USE_TRANSIENT_POPUP
342 bool wxComboPopupWindow::ProcessLeftDown(wxMouseEvent
& event
)
344 return wxComboPopupWindowBase::ProcessLeftDown(event
);
348 #if USE_TRANSIENT_POPUP
349 // First thing that happens when a transient popup closes is that this method gets called.
350 void wxComboPopupWindow::OnDismiss()
352 wxComboCtrlBase
* combo
= (wxComboCtrlBase
*) GetParent();
353 wxASSERT_MSG( combo
->IsKindOf(CLASSINFO(wxComboCtrlBase
)),
354 wxT("parent might not be wxComboCtrl, but check IMPLEMENT_DYNAMIC_CLASS(2) macro for correctness") );
356 combo
->OnPopupDismiss();
360 // ----------------------------------------------------------------------------
363 // ----------------------------------------------------------------------------
365 wxComboPopup::~wxComboPopup()
369 void wxComboPopup::OnPopup()
373 void wxComboPopup::OnDismiss()
377 wxSize
wxComboPopup::GetAdjustedSize( int minWidth
,
379 int WXUNUSED(maxHeight
) )
381 return wxSize(minWidth
,prefHeight
);
384 void wxComboPopup::DefaultPaintComboControl( wxComboCtrlBase
* combo
,
385 wxDC
& dc
, const wxRect
& rect
)
387 if ( combo
->GetWindowStyle() & wxCB_READONLY
) // ie. no textctrl
389 combo
->PrepareBackground(dc
,rect
,0);
391 dc
.DrawText( combo
->GetValue(),
392 rect
.x
+ combo
->GetTextIndent(),
393 (rect
.height
-dc
.GetCharHeight())/2 + rect
.y
);
397 void wxComboPopup::PaintComboControl( wxDC
& dc
, const wxRect
& rect
)
399 DefaultPaintComboControl(m_combo
,dc
,rect
);
402 void wxComboPopup::OnComboKeyEvent( wxKeyEvent
& event
)
407 void wxComboPopup::OnComboDoubleClick()
411 void wxComboPopup::SetStringValue( const wxString
& WXUNUSED(value
) )
415 bool wxComboPopup::LazyCreate()
420 void wxComboPopup::Dismiss()
422 m_combo
->HidePopup();
425 // ----------------------------------------------------------------------------
427 // ----------------------------------------------------------------------------
430 // This is pushed to the event handler queue of the child textctrl.
432 class wxComboBoxExtraInputHandler
: public wxEvtHandler
436 wxComboBoxExtraInputHandler( wxComboCtrlBase
* combo
)
441 virtual ~wxComboBoxExtraInputHandler() { }
442 void OnKey(wxKeyEvent
& event
);
443 void OnFocus(wxFocusEvent
& event
);
446 wxComboCtrlBase
* m_combo
;
449 DECLARE_EVENT_TABLE()
453 BEGIN_EVENT_TABLE(wxComboBoxExtraInputHandler
, wxEvtHandler
)
454 EVT_KEY_DOWN(wxComboBoxExtraInputHandler::OnKey
)
455 EVT_SET_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
459 void wxComboBoxExtraInputHandler::OnKey(wxKeyEvent
& event
)
461 // Let the wxComboCtrl event handler have a go first.
462 wxComboCtrlBase
* combo
= m_combo
;
463 wxObject
* prevObj
= event
.GetEventObject();
465 event
.SetId(combo
->GetId());
466 event
.SetEventObject(combo
);
467 combo
->GetEventHandler()->ProcessEvent(event
);
469 event
.SetId(((wxWindow
*)prevObj
)->GetId());
470 event
.SetEventObject(prevObj
);
473 void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent
& event
)
475 // FIXME: This code does run when control is clicked,
476 // yet on Windows it doesn't select all the text.
477 if ( !(m_combo
->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT
) )
479 if ( m_combo
->GetTextCtrl() )
480 m_combo
->GetTextCtrl()->SelectAll();
482 m_combo
->SetSelection(-1,-1);
485 // Send focus indication to parent.
486 // NB: This is needed for cases where the textctrl gets focus
487 // instead of its parent. While this may trigger multiple
488 // wxEVT_SET_FOCUSes (since m_text->SetFocus is called
489 // from combo's focus event handler), they should be quite
491 wxFocusEvent
evt2(wxEVT_SET_FOCUS
,m_combo
->GetId());
492 evt2
.SetEventObject(m_combo
);
493 m_combo
->GetEventHandler()->ProcessEvent(evt2
);
500 // This is pushed to the event handler queue of the control in popup.
503 class wxComboPopupExtraEventHandler
: public wxEvtHandler
507 wxComboPopupExtraEventHandler( wxComboCtrlBase
* combo
)
511 m_beenInside
= false;
513 virtual ~wxComboPopupExtraEventHandler() { }
515 void OnMouseEvent( wxMouseEvent
& event
);
517 // Called from wxComboCtrlBase::OnPopupDismiss
518 void OnPopupDismiss()
520 m_beenInside
= false;
524 wxComboCtrlBase
* m_combo
;
529 DECLARE_EVENT_TABLE()
533 BEGIN_EVENT_TABLE(wxComboPopupExtraEventHandler
, wxEvtHandler
)
534 EVT_MOUSE_EVENTS(wxComboPopupExtraEventHandler::OnMouseEvent
)
538 void wxComboPopupExtraEventHandler::OnMouseEvent( wxMouseEvent
& event
)
540 wxPoint pt
= event
.GetPosition();
541 wxSize sz
= m_combo
->GetPopupControl()->GetControl()->GetClientSize();
542 int evtType
= event
.GetEventType();
543 bool isInside
= pt
.x
>= 0 && pt
.y
>= 0 && pt
.x
< sz
.x
&& pt
.y
< sz
.y
;
545 if ( evtType
== wxEVT_MOTION
||
546 evtType
== wxEVT_LEFT_DOWN
||
547 evtType
== wxEVT_RIGHT_DOWN
)
549 // Block motion and click events outside the popup
556 else if ( evtType
== wxEVT_LEFT_UP
)
558 // Don't let left-down events in if outside
559 if ( evtType
== wxEVT_LEFT_DOWN
)
574 // Some mouse events to popup that happen outside it, before cursor
575 // has been inside the popu, need to be ignored by it but relayed to
578 wxWindow
* btn
= m_combo
->GetButton();
580 btn
->GetEventHandler()->AddPendingEvent(event
);
582 m_combo
->GetEventHandler()->AddPendingEvent(event
);
594 // ----------------------------------------------------------------------------
596 // ----------------------------------------------------------------------------
599 BEGIN_EVENT_TABLE(wxComboCtrlBase
, wxControl
)
600 EVT_TEXT(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
601 EVT_SIZE(wxComboCtrlBase::OnSizeEvent
)
602 EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent
)
603 EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent
)
604 //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent)
605 EVT_KEY_DOWN(wxComboCtrlBase::OnKeyEvent
)
606 EVT_TEXT_ENTER(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
607 EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged
)
611 IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase
, wxControl
)
613 // Have global double buffer - should be enough for multiple combos
614 static wxBitmap
* gs_doubleBuffer
= (wxBitmap
*) NULL
;
616 void wxComboCtrlBase::Init()
618 m_winPopup
= (wxWindow
*)NULL
;
619 m_popup
= (wxWindow
*)NULL
;
620 m_isPopupShown
= false;
621 m_btn
= (wxWindow
*) NULL
;
622 m_text
= (wxTextCtrl
*) NULL
;
623 m_popupInterface
= (wxComboPopup
*) NULL
;
625 m_popupExtraHandler
= (wxEvtHandler
*) NULL
;
626 m_textEvtHandler
= (wxEvtHandler
*) NULL
;
628 #if INSTALL_TOPLEV_HANDLER
629 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
633 m_widthMinPopup
= -1;
635 m_widthCustomPaint
= 0;
636 m_widthCustomBorder
= 0;
640 m_blankButtonBg
= false;
641 m_btnWid
= m_btnHei
= -1;
649 m_downReceived
= false;
650 m_timeCanAcceptClick
= 0;
653 bool wxComboCtrlBase::Create(wxWindow
*parent
,
655 const wxString
& value
,
659 const wxValidator
& validator
,
660 const wxString
& name
)
662 if ( !wxControl::Create(parent
,
666 style
| wxWANTS_CHARS
,
671 m_valueString
= value
;
675 m_absIndent
= GetNativeTextIndent();
677 m_iFlags
|= wxCC_IFLAG_CREATED
;
679 // If x and y indicate valid size, wxSizeEvent won't be
680 // emitted automatically, so we need to add artifical one.
681 if ( size
.x
> 0 && size
.y
> 0 )
683 wxSizeEvent
evt(size
,GetId());
684 GetEventHandler()->AddPendingEvent(evt
);
690 void wxComboCtrlBase::InstallInputHandlers()
694 m_textEvtHandler
= new wxComboBoxExtraInputHandler(this);
695 m_text
->PushEventHandler(m_textEvtHandler
);
700 wxComboCtrlBase::CreateTextCtrl(int style
, const wxValidator
& validator
)
702 if ( !(m_windowStyle
& wxCB_READONLY
) )
704 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
705 // not used by the wxPropertyGrid and therefore the tab is processed by
706 // looking at ancestors to see if they have wxTAB_TRAVERSAL. The
707 // navigation event is then sent to the wrong window.
708 style
|= wxTE_PROCESS_TAB
;
710 if ( HasFlag(wxTE_PROCESS_ENTER
) )
711 style
|= wxTE_PROCESS_ENTER
;
713 m_text
= new wxTextCtrl(this, wxID_ANY
, m_valueString
,
714 wxDefaultPosition
, wxDefaultSize
,
717 // This is required for some platforms (GTK+ atleast)
718 m_text
->SetSizeHints(2,4);
722 void wxComboCtrlBase::OnThemeChange()
724 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
727 wxComboCtrlBase::~wxComboCtrlBase()
732 delete gs_doubleBuffer
;
733 gs_doubleBuffer
= (wxBitmap
*) NULL
;
735 #if INSTALL_TOPLEV_HANDLER
736 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
737 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
743 m_text
->RemoveEventHandler(m_textEvtHandler
);
745 delete m_textEvtHandler
;
749 // ----------------------------------------------------------------------------
751 // ----------------------------------------------------------------------------
753 // Recalculates button and textctrl areas
754 void wxComboCtrlBase::CalculateAreas( int btnWidth
)
756 wxSize sz
= GetClientSize();
757 int customBorder
= m_widthCustomBorder
;
758 int btnBorder
; // border for button only
760 // check if button should really be outside the border: we'll do it it if
761 // its platform default or bitmap+pushbutton background is used, but not if
762 // there is vertical size adjustment or horizontal spacing.
763 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) ||
764 (m_bmpNormal
.Ok() && m_blankButtonBg
) ) &&
765 m_btnSpacingX
== 0 &&
768 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
773 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
774 btnBorder
= customBorder
;
777 // Defaul indentation
778 if ( m_absIndent
< 0 )
779 m_absIndent
= GetNativeTextIndent();
781 int butWidth
= btnWidth
;
784 butWidth
= m_btnWidDefault
;
786 m_btnWidDefault
= butWidth
;
791 int butHeight
= sz
.y
- btnBorder
*2;
793 // Adjust button width
798 // Adjust button width to match aspect ratio
799 // (but only if control is smaller than best size).
800 int bestHeight
= GetBestSize().y
;
801 int height
= GetSize().y
;
803 if ( height
< bestHeight
)
805 // Make very small buttons square, as it makes
806 // them accommodate arrow image better and still
809 butWidth
= (height
*butWidth
)/bestHeight
;
811 butWidth
= butHeight
;
815 // Adjust button height
817 butHeight
= m_btnHei
;
819 // Use size of normal bitmap if...
822 // button width is set to default and blank button bg is not drawn
823 if ( m_bmpNormal
.Ok() )
825 int bmpReqWidth
= m_bmpNormal
.GetWidth();
826 int bmpReqHeight
= m_bmpNormal
.GetHeight();
828 // If drawing blank button background, we need to add some margin.
829 if ( m_blankButtonBg
)
831 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
832 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
835 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
836 butWidth
= bmpReqWidth
;
837 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
838 butHeight
= bmpReqHeight
;
840 // Need to fix height?
841 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
843 int newY
= butHeight
+(customBorder
*2);
844 SetClientSize(wxDefaultCoord
,newY
);
849 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
851 m_btnSize
.x
= butWidth
;
852 m_btnSize
.y
= butHeight
;
854 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
855 m_btnArea
.y
= btnBorder
;
856 m_btnArea
.width
= butAreaWid
;
857 m_btnArea
.height
= sz
.y
- (btnBorder
*2);
859 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
;
860 m_tcArea
.y
= customBorder
;
861 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2);
862 m_tcArea
.height
= sz
.y
- (customBorder
*2);
867 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
868 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
873 void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
878 wxSize sz
= GetClientSize();
879 int customBorder
= m_widthCustomBorder
;
881 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
884 int tcSizeY
= m_text
->GetBestSize().y
;
885 int diff
= sz
.y
- tcSizeY
;
886 int y
= textCtrlYAdjust
+ (diff
/2);
888 if ( y
< customBorder
)
891 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
+ m_absIndent
+ textCtrlXAdjust
,
893 m_tcArea
.width
- COMBO_MARGIN
-
894 (textCtrlXAdjust
+ m_widthCustomPaint
+ m_absIndent
),
897 // Make sure textctrl doesn't exceed the bottom custom border
898 wxSize tsz
= m_text
->GetSize();
899 diff
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
902 tsz
.y
= tsz
.y
- diff
- 1;
903 m_text
->SetSize(tsz
);
908 m_text
->SetSize( m_tcArea
.x
,
910 sz
.x
- m_btnArea
.x
- m_widthCustomPaint
- customBorder
,
915 wxSize
wxComboCtrlBase::DoGetBestSize() const
917 wxSize
sizeText(150,0);
920 sizeText
= m_text
->GetBestSize();
922 // TODO: Better method to calculate close-to-native control height.
926 fhei
= (m_font
.GetPointSize()*2) + 5;
927 else if ( wxNORMAL_FONT
->Ok() )
928 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
930 fhei
= sizeText
.y
+ 4;
932 // Need to force height to accomodate bitmap?
933 int btnSizeY
= m_btnSize
.y
;
934 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
937 // Control height doesn't depend on border
940 int border = m_windowStyle & wxBORDER_MASK;
941 if ( border == wxSIMPLE_BORDER )
943 else if ( border == wxNO_BORDER )
944 fhei += (m_widthCustomBorder*2);
955 wxSize
ret(sizeText
.x
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
,
962 void wxComboCtrlBase::OnSizeEvent( wxSizeEvent
& event
)
967 // defined by actual wxComboCtrls
973 // ----------------------------------------------------------------------------
974 // standard operations
975 // ----------------------------------------------------------------------------
977 bool wxComboCtrlBase::Enable(bool enable
)
979 if ( !wxControl::Enable(enable
) )
983 m_btn
->Enable(enable
);
985 m_text
->Enable(enable
);
990 bool wxComboCtrlBase::Show(bool show
)
992 if ( !wxControl::Show(show
) )
1004 bool wxComboCtrlBase::SetFont ( const wxFont
& font
)
1006 if ( !wxControl::SetFont(font
) )
1010 m_text
->SetFont(font
);
1016 void wxComboCtrlBase::DoSetToolTip(wxToolTip
*tooltip
)
1018 wxControl::DoSetToolTip(tooltip
);
1020 // Set tool tip for button and text box
1023 const wxString
&tip
= tooltip
->GetTip();
1024 if ( m_text
) m_text
->SetToolTip(tip
);
1025 if ( m_btn
) m_btn
->SetToolTip(tip
);
1029 if ( m_text
) m_text
->SetToolTip( (wxToolTip
*) NULL
);
1030 if ( m_btn
) m_btn
->SetToolTip( (wxToolTip
*) NULL
);
1033 #endif // wxUSE_TOOLTIPS
1035 // ----------------------------------------------------------------------------
1037 // ----------------------------------------------------------------------------
1039 #if (!defined(__WXMSW__)) || defined(__WXUNIVERSAL__)
1040 // prepare combo box background on area in a way typical on platform
1041 void wxComboCtrlBase::PrepareBackground( wxDC
& dc
, const wxRect
& rect
, int flags
) const
1043 wxSize sz
= GetClientSize();
1045 bool isFocused
; // also selected
1047 // For smaller size control (and for disabled background) use less spacing
1051 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1054 isEnabled
= IsEnabled();
1055 isFocused
= ShouldDrawFocus();
1057 // Windows-style: for smaller size control (and for disabled background) use less spacing
1058 focusSpacingX
= isEnabled
? 2 : 1;
1059 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1063 // Drawing a list item
1064 isEnabled
= true; // they are never disabled
1065 isFocused
= flags
& wxCONTROL_SELECTED
? true : false;
1071 // Set the background sub-rectangle for selection, disabled etc
1072 wxRect
selRect(rect
);
1073 selRect
.y
+= focusSpacingY
;
1074 selRect
.height
-= (focusSpacingY
*2);
1078 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1079 wcp
+= m_widthCustomPaint
;
1081 selRect
.x
+= wcp
+ focusSpacingX
;
1082 selRect
.width
-= wcp
+ (focusSpacingX
*2);
1088 // If popup is hidden and this control is focused,
1089 // then draw the focus-indicator (selbgcolor background etc.).
1092 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
) );
1093 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1097 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
1098 bgCol
= GetBackgroundColour();
1103 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
) );
1104 bgCol
= GetBackgroundColour();
1107 dc
.SetBrush( bgCol
);
1109 dc
.DrawRectangle( selRect
);
1111 // Don't clip exactly to the selection rectangle so we can draw
1112 // to the non-selected area in front of it.
1113 wxRect
clipRect(rect
.x
,rect
.y
,
1114 (selRect
.x
+selRect
.width
)-rect
.x
,rect
.height
);
1115 dc
.SetClippingRegion(clipRect
);
1118 // Save the library size a bit for platforms that re-implement this.
1119 void wxComboCtrlBase::PrepareBackground( wxDC
&, const wxRect
&, int ) const
1124 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, bool paintBg
)
1126 int drawState
= m_btnState
;
1129 if ( m_isPopupShown
)
1130 drawState
|= wxCONTROL_PRESSED
;
1133 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1134 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1138 // Make sure area is not larger than the control
1139 if ( drawRect
.y
< rect
.y
)
1140 drawRect
.y
= rect
.y
;
1141 if ( drawRect
.height
> rect
.height
)
1142 drawRect
.height
= rect
.height
;
1144 bool enabled
= IsEnabled();
1147 drawState
|= wxCONTROL_DISABLED
;
1149 if ( !m_bmpNormal
.Ok() )
1151 // Need to clear button background even if m_btn is present
1156 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1157 bgCol
= GetParent()->GetBackgroundColour();
1159 bgCol
= GetBackgroundColour();
1163 dc
.DrawRectangle(rect
);
1166 // Draw standard button
1167 wxRendererNative::Get().DrawComboBoxDropButton(this,
1179 pBmp
= &m_bmpDisabled
;
1180 else if ( m_btnState
& wxCONTROL_PRESSED
)
1181 pBmp
= &m_bmpPressed
;
1182 else if ( m_btnState
& wxCONTROL_CURRENT
)
1185 pBmp
= &m_bmpNormal
;
1187 if ( m_blankButtonBg
)
1189 // If using blank button background, we need to clear its background
1190 // with button face colour instead of colour for rest of the control.
1193 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1194 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1197 dc
.DrawRectangle(rect
);
1200 wxRendererNative::Get().DrawPushButton(this,
1209 // Need to clear button background even if m_btn is present
1210 // (assume non-button background was cleared just before this call so brushes are good)
1212 dc
.DrawRectangle(rect
);
1215 // Draw bitmap centered in drawRect
1216 dc
.DrawBitmap(*pBmp
,
1217 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1218 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1223 void wxComboCtrlBase::RecalcAndRefresh()
1227 wxSizeEvent
evt(GetSize(),GetId());
1228 GetEventHandler()->ProcessEvent(evt
);
1233 wxBitmap
& wxComboCtrlBase::GetBufferBitmap( const wxSize
& sz
) const
1235 // If size is larger, recalculate double buffer bitmap
1236 if ( !gs_doubleBuffer
||
1237 sz
.x
> gs_doubleBuffer
->GetWidth() ||
1238 sz
.y
> gs_doubleBuffer
->GetHeight() )
1240 delete gs_doubleBuffer
;
1241 gs_doubleBuffer
= new wxBitmap(sz
.x
+25,sz
.y
);
1243 return *gs_doubleBuffer
;
1246 // ----------------------------------------------------------------------------
1247 // miscellaneous event handlers
1248 // ----------------------------------------------------------------------------
1250 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1252 // Change event id, object and string before relaying it forward
1253 event
.SetId(GetId());
1254 wxString s
= event
.GetString();
1255 event
.SetEventObject(this);
1260 // call if cursor is on button area or mouse is captured for the button
1261 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1264 int type
= event
.GetEventType();
1266 if ( type
== wxEVT_MOTION
)
1268 if ( flags
& wxCC_MF_ON_BUTTON
)
1270 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1272 // Mouse hover begins
1273 m_btnState
|= wxCONTROL_CURRENT
;
1274 if ( HasCapture() ) // Retain pressed state.
1275 m_btnState
|= wxCONTROL_PRESSED
;
1279 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1282 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1286 else if ( type
== wxEVT_LEFT_DOWN
)
1288 // Only accept event if it wasn't right after popup dismiss
1289 //if ( ::wxGetLocalTimeMillis() > m_timeCanClick )
1291 // Need to test this, because it might be outside.
1292 if ( flags
& wxCC_MF_ON_BUTTON
)
1294 m_btnState
|= wxCONTROL_PRESSED
;
1297 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1300 // If showing popup now, do not capture mouse or there will be interference
1309 else if ( type
== wxEVT_LEFT_UP
)
1312 // Only accept event if mouse was left-press was previously accepted
1316 if ( m_btnState
& wxCONTROL_PRESSED
)
1318 // If mouse was inside, fire the click event.
1319 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1321 if ( flags
& wxCC_MF_ON_BUTTON
)
1325 m_btnState
&= ~(wxCONTROL_PRESSED
);
1329 else if ( type
== wxEVT_LEAVE_WINDOW
)
1331 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1333 m_btnState
&= ~(wxCONTROL_CURRENT
);
1336 if ( !m_isPopupShown
)
1338 m_btnState
&= ~(wxCONTROL_PRESSED
);
1349 // Conversion to double-clicks and some basic filtering
1350 // returns true if event was consumed or filtered
1351 //bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent& event, bool isOnButtonArea )
1352 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1355 wxLongLong t
= ::wxGetLocalTimeMillis();
1356 int evtType
= event
.GetEventType();
1358 #if !USE_TRANSIENT_POPUP
1359 if ( m_isPopupShown
&&
1360 ( evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_RIGHT_DOWN
) )
1368 // Generate our own double-clicks
1369 // (to allow on-focus dc-event on double-clicks instead of triple-clicks)
1370 if ( (m_windowStyle
& wxCC_SPECIAL_DCLICK
) &&
1372 //!(handlerFlags & wxCC_MF_ON_BUTTON) )
1373 !(flags
& wxCC_MF_ON_BUTTON
) )
1375 if ( evtType
== wxEVT_LEFT_DOWN
)
1377 // Set value to avoid up-events without corresponding downs
1378 m_downReceived
= true;
1380 else if ( evtType
== wxEVT_LEFT_DCLICK
)
1382 // We'll make our own double-clicks
1384 event
.SetEventType(0);
1387 else if ( evtType
== wxEVT_LEFT_UP
)
1389 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
1391 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
1393 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
1395 //type = wxEVT_LEFT_DCLICK;
1396 event
.SetEventType(wxEVT_LEFT_DCLICK
);
1397 m_timeLastMouseUp
= 1;
1401 m_timeLastMouseUp
= t
;
1404 //m_downReceived = false;
1409 // Filter out clicks on button immediately after popup dismiss (Windows like behaviour)
1410 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1412 event
.SetEventType(0);
1419 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1421 int evtType
= event
.GetEventType();
1423 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1424 (m_windowStyle
& wxCB_READONLY
) )
1426 if ( m_isPopupShown
)
1429 // Normally do nothing - evt handler should close it for us
1430 #elif !USE_TRANSIENT_POPUP
1431 // Click here always hides the popup.
1437 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1439 // In read-only mode, clicking the text is the
1440 // same as clicking the button.
1443 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1445 //if ( m_popupInterface->CycleValue() )
1447 if ( m_popupInterface
)
1448 m_popupInterface
->OnComboDoubleClick();
1453 if ( m_isPopupShown
)
1455 // relay (some) mouse events to the popup
1456 if ( evtType
== wxEVT_MOUSEWHEEL
)
1457 m_popup
->AddPendingEvent(event
);
1463 void wxComboCtrlBase::OnKeyEvent(wxKeyEvent
& event
)
1465 if ( IsPopupShown() )
1467 // pass it to the popped up control
1468 GetPopupControl()->GetControl()->AddPendingEvent(event
);
1472 int keycode
= event
.GetKeyCode();
1474 if ( keycode
== WXK_TAB
)
1476 wxNavigationKeyEvent evt
;
1477 evt
.SetFlags(wxNavigationKeyEvent::FromTab
|
1478 (!event
.ShiftDown() ? wxNavigationKeyEvent::IsForward
1479 : wxNavigationKeyEvent::IsBackward
));
1480 evt
.SetEventObject(this);
1481 GetParent()->GetEventHandler()->AddPendingEvent(evt
);
1485 if ( IsKeyPopupToggle(event
) )
1491 int comboStyle
= GetWindowStyle();
1492 wxComboPopup
* popupInterface
= GetPopupControl();
1494 if ( !popupInterface
)
1500 if ( (comboStyle
& wxCB_READONLY
) ||
1501 (keycode
!= WXK_RIGHT
&& keycode
!= WXK_LEFT
) )
1503 popupInterface
->OnComboKeyEvent(event
);
1510 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& event
)
1512 if ( event
.GetEventType() == wxEVT_SET_FOCUS
)
1514 // First click is the first part of double-click
1515 // Some platforms don't generate down-less mouse up-event
1516 // (Windows does, GTK+2 doesn't), so that's why we have
1518 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
1520 if ( m_text
&& m_text
!= ::wxWindow::FindFocus() )
1527 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1530 // indentation may also have changed
1531 if ( !(m_iFlags
& wxCC_IFLAG_INDENT_SET
) )
1532 m_absIndent
= GetNativeTextIndent();
1536 // ----------------------------------------------------------------------------
1538 // ----------------------------------------------------------------------------
1540 // Create popup window and the child control
1541 void wxComboCtrlBase::CreatePopup()
1543 wxComboPopup
* popupInterface
= m_popupInterface
;
1547 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1549 popupInterface
->Create(m_winPopup
);
1550 m_popup
= popup
= popupInterface
->GetControl();
1552 m_popupExtraHandler
= new wxComboPopupExtraEventHandler(this);
1553 popup
->PushEventHandler( m_popupExtraHandler
);
1555 // This may be helpful on some platforms
1556 // (eg. it bypasses a wxGTK popupwindow bug where
1557 // window is not initially hidden when it should be)
1560 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
1563 // Destroy popup window and the child control
1564 void wxComboCtrlBase::DestroyPopup()
1569 m_popup
->RemoveEventHandler(m_popupExtraHandler
);
1571 delete m_popupExtraHandler
;
1573 delete m_popupInterface
;
1576 m_winPopup
->Destroy();
1578 m_popupExtraHandler
= (wxEvtHandler
*) NULL
;
1579 m_popupInterface
= (wxComboPopup
*) NULL
;
1580 m_winPopup
= (wxWindow
*) NULL
;
1581 m_popup
= (wxWindow
*) NULL
;
1584 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
1586 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
1590 iface
->InitBase(this);
1593 m_popupInterface
= iface
;
1595 if ( !iface
->LazyCreate() )
1601 m_popup
= (wxWindow
*) NULL
;
1604 // This must be done after creation
1605 if ( m_valueString
.length() )
1607 iface
->SetStringValue(m_valueString
);
1612 // Ensures there is atleast the default popup
1613 void wxComboCtrlBase::EnsurePopupControl()
1615 if ( !m_popupInterface
)
1616 SetPopupControl(NULL
);
1619 void wxComboCtrlBase::OnButtonClick()
1621 // Derived classes can override this method for totally custom
1626 void wxComboCtrlBase::ShowPopup()
1628 EnsurePopupControl();
1629 wxCHECK_RET( !IsPopupShown(), wxT("popup window already shown") );
1633 // Space above and below
1639 wxSize ctrlSz
= GetSize();
1641 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
1642 scrPos
= GetParent()->ClientToScreen(GetPosition());
1644 spaceAbove
= scrPos
.y
;
1645 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
1647 maxHeightPopup
= spaceBelow
;
1648 if ( spaceAbove
> spaceBelow
)
1649 maxHeightPopup
= spaceAbove
;
1652 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
1654 if ( widthPopup
< m_widthMinPopup
)
1655 widthPopup
= m_widthMinPopup
;
1657 wxWindow
* winPopup
= m_winPopup
;
1660 // Need to disable tab traversal of parent
1662 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
1663 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
1664 // that if transient popup is open, then tab traversal is to be ignored.
1665 // However, I think this code would still be needed for cases where
1666 // transient popup doesn't work yet (wxWinCE?).
1667 wxWindow
* parent
= GetParent();
1668 int parentFlags
= parent
->GetWindowStyle();
1669 if ( parentFlags
& wxTAB_TRAVERSAL
)
1671 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
1672 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
1678 winPopup
= m_winPopup
;
1686 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
1688 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
1689 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
1692 popup
->SetSize(adjustedSize
);
1694 m_popupInterface
->OnPopup();
1697 // Reposition and resize popup window
1700 wxSize szp
= popup
->GetSize();
1703 int popupY
= scrPos
.y
+ ctrlSz
.y
;
1705 // Default anchor is wxLEFT
1706 int anchorSide
= m_anchorSide
;
1708 anchorSide
= wxLEFT
;
1710 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
1711 int leftX
= scrPos
.x
- m_extLeft
;
1712 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
1714 // If there is not enough horizontal space, anchor on the other side.
1715 // If there is no space even then, place the popup at x 0.
1716 if ( anchorSide
== wxRIGHT
)
1720 if ( (leftX
+szp
.x
) < screenWidth
)
1721 anchorSide
= wxLEFT
;
1728 if ( (leftX
+szp
.x
) >= screenWidth
)
1731 anchorSide
= wxRIGHT
;
1737 // Select x coordinate according to the anchor side
1738 if ( anchorSide
== wxRIGHT
)
1740 else if ( anchorSide
== wxLEFT
)
1745 if ( spaceBelow
< szp
.y
)
1747 popupY
= scrPos
.y
- szp
.y
;
1751 //wxLogDebug(wxT("popup scheduled position1: %i,%i"),ptp.x,ptp.y);
1752 //wxLogDebug(wxT("popup position1: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1754 // Some platforms (GTK) may need these two to be separate
1755 winPopup
->SetSize( szp
.x
, szp
.y
);
1756 winPopup
->Move( popupX
, popupY
);
1758 //wxLogDebug(wxT("popup position2: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1762 // Set string selection (must be this way instead of SetStringSelection)
1765 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1766 m_text
->SelectAll();
1768 m_popupInterface
->SetStringValue( m_text
->GetValue() );
1772 // This is neede since focus/selection indication may change when popup is shown
1776 // This must be after SetStringValue
1777 m_isPopupShown
= true;
1780 #if USE_TRANSIENT_POPUP
1781 ((wxPopupTransientWindow
*)winPopup
)->Popup(popup
);
1786 #if INSTALL_TOPLEV_HANDLER
1787 // Put top level window event handler into place
1788 if ( !m_toplevEvtHandler
)
1789 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
1791 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1793 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
1794 toplev
->PushEventHandler( m_toplevEvtHandler
);
1799 void wxComboCtrlBase::OnPopupDismiss()
1801 // Just in case, avoid double dismiss
1802 if ( !m_isPopupShown
)
1805 // *Must* set this before focus etc.
1806 m_isPopupShown
= false;
1808 // Inform popup control itself
1809 m_popupInterface
->OnDismiss();
1811 if ( m_popupExtraHandler
)
1812 ((wxComboPopupExtraEventHandler
*)m_popupExtraHandler
)->OnPopupDismiss();
1814 #if INSTALL_TOPLEV_HANDLER
1815 // Remove top level window event handler
1816 if ( m_toplevEvtHandler
)
1818 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1820 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
1824 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis() + 150;
1826 // If cursor not on dropdown button, then clear its state
1827 // (technically not required by all ports, but do it for all just in case)
1828 if ( !m_btnArea
.Inside(ScreenToClient(::wxGetMousePosition())) )
1831 // Return parent's tab traversal flag.
1832 // See ShowPopup for notes.
1833 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
1835 wxWindow
* parent
= GetParent();
1836 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
1837 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
1840 // refresh control (necessary even if m_text)
1849 void wxComboCtrlBase::HidePopup()
1851 // Should be able to call this without popup interface
1852 //wxCHECK_RET( m_popupInterface, _T("no popup interface") );
1853 if ( !m_isPopupShown
)
1856 // transfer value and show it in textctrl, if any
1857 SetValue( m_popupInterface
->GetStringValue() );
1859 #if USE_TRANSIENT_POPUP
1860 ((wxPopupTransientWindow
*)m_winPopup
)->Dismiss();
1868 // ----------------------------------------------------------------------------
1869 // customization methods
1870 // ----------------------------------------------------------------------------
1872 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
1873 int side
, int spacingX
)
1878 m_btnSpacingX
= spacingX
;
1883 wxSize
wxComboCtrlBase::GetButtonSize()
1885 if ( m_btnSize
.x
> 0 )
1888 wxSize
retSize(m_btnWid
,m_btnHei
);
1890 // Need to call CalculateAreas now if button size is
1891 // is not explicitly specified.
1892 if ( retSize
.x
<= 0 || retSize
.y
<= 0)
1896 retSize
= m_btnSize
;
1902 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
1904 const wxBitmap
& bmpPressed
,
1905 const wxBitmap
& bmpHover
,
1906 const wxBitmap
& bmpDisabled
)
1908 m_bmpNormal
= bmpNormal
;
1909 m_blankButtonBg
= blankButtonBg
;
1911 if ( bmpPressed
.Ok() )
1912 m_bmpPressed
= bmpPressed
;
1914 m_bmpPressed
= bmpNormal
;
1916 if ( bmpHover
.Ok() )
1917 m_bmpHover
= bmpHover
;
1919 m_bmpHover
= bmpNormal
;
1921 if ( bmpDisabled
.Ok() )
1922 m_bmpDisabled
= bmpDisabled
;
1924 m_bmpDisabled
= bmpNormal
;
1929 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
1933 // move textctrl accordingly
1934 wxRect r
= m_text
->GetRect();
1935 int inc
= width
- m_widthCustomPaint
;
1938 m_text
->SetSize( r
);
1941 m_widthCustomPaint
= width
;
1946 void wxComboCtrlBase::SetTextIndent( int indent
)
1950 m_absIndent
= GetNativeTextIndent();
1951 m_iFlags
&= ~(wxCC_IFLAG_INDENT_SET
);
1955 m_absIndent
= indent
;
1956 m_iFlags
|= wxCC_IFLAG_INDENT_SET
;
1962 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
1964 return DEFAULT_TEXT_INDENT
;
1967 // ----------------------------------------------------------------------------
1968 // methods forwarded to wxTextCtrl
1969 // ----------------------------------------------------------------------------
1971 wxString
wxComboCtrlBase::GetValue() const
1974 return m_text
->GetValue();
1975 return m_valueString
;
1978 void wxComboCtrlBase::SetValue(const wxString
& value
)
1982 m_text
->SetValue(value
);
1983 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1984 m_text
->SelectAll();
1987 m_valueString
= value
;
1991 // Since wxComboPopup may want to paint the combo as well, we need
1992 // to set the string value here (as well as sometimes in ShowPopup).
1993 if ( m_valueString
!= value
&& m_popupInterface
)
1995 m_popupInterface
->SetStringValue(value
);
1999 // In this SetValue variant wxComboPopup::SetStringValue is not called
2000 void wxComboCtrlBase::SetText(const wxString
& value
)
2002 // Unlike in SetValue(), this must be called here or
2003 // the behaviour will no be consistent in readonlys.
2004 EnsurePopupControl();
2006 m_valueString
= value
;
2011 void wxComboCtrlBase::Copy()
2017 void wxComboCtrlBase::Cut()
2023 void wxComboCtrlBase::Paste()
2029 void wxComboCtrlBase::SetInsertionPoint(long pos
)
2032 m_text
->SetInsertionPoint(pos
);
2035 void wxComboCtrlBase::SetInsertionPointEnd()
2038 m_text
->SetInsertionPointEnd();
2041 long wxComboCtrlBase::GetInsertionPoint() const
2044 return m_text
->GetInsertionPoint();
2049 long wxComboCtrlBase::GetLastPosition() const
2052 return m_text
->GetLastPosition();
2057 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2060 m_text
->Replace(from
, to
, value
);
2063 void wxComboCtrlBase::Remove(long from
, long to
)
2066 m_text
->Remove(from
, to
);
2069 void wxComboCtrlBase::SetSelection(long from
, long to
)
2072 m_text
->SetSelection(from
, to
);
2075 void wxComboCtrlBase::Undo()
2081 #endif // wxUSE_COMBOCTRL