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 ~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();
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
->DrawFocusBackground(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 either combo box
431 // or its textctrl (latter if not readonly combo).
433 class wxComboBoxExtraInputHandler
: public wxEvtHandler
437 wxComboBoxExtraInputHandler( wxComboCtrlBase
* combo
)
442 ~wxComboBoxExtraInputHandler() { }
443 void OnKey(wxKeyEvent
& event
);
444 void OnFocus(wxFocusEvent
& event
);
447 wxComboCtrlBase
* m_combo
;
450 DECLARE_EVENT_TABLE()
454 BEGIN_EVENT_TABLE(wxComboBoxExtraInputHandler
, wxEvtHandler
)
455 EVT_KEY_DOWN(wxComboBoxExtraInputHandler::OnKey
)
456 EVT_SET_FOCUS(wxComboBoxExtraInputHandler::OnFocus
)
460 void wxComboBoxExtraInputHandler::OnKey(wxKeyEvent
& event
)
462 int keycode
= event
.GetKeyCode();
464 if ( keycode
== WXK_TAB
)
466 wxNavigationKeyEvent evt
;
467 evt
.SetFlags(wxNavigationKeyEvent::FromTab
|
468 (!event
.ShiftDown()?wxNavigationKeyEvent::IsForward
:
469 wxNavigationKeyEvent::IsBackward
));
470 evt
.SetEventObject(m_combo
);
471 m_combo
->GetParent()->GetEventHandler()->AddPendingEvent(evt
);
475 if ( m_combo
->IsPopupShown() )
477 // pass it to the popped up control
478 m_combo
->GetPopupControl()->GetControl()->AddPendingEvent(event
);
482 int comboStyle
= m_combo
->GetWindowStyle();
483 wxComboPopup
* popupInterface
= m_combo
->GetPopupControl();
485 if ( !popupInterface
)
491 if ( (comboStyle
& wxCB_READONLY
) ||
492 ( keycode
!= WXK_RIGHT
&& keycode
!= WXK_LEFT
)
495 // Alternate keys: UP and DOWN show the popup instead of cycling
496 if ( (comboStyle
& wxCC_ALT_KEYS
) )
498 if ( keycode
== WXK_UP
|| keycode
== WXK_DOWN
)
500 m_combo
->OnButtonClick();
507 popupInterface
->OnComboKeyEvent(event
);
514 void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent
& event
)
516 // FIXME: This code does run when control is clicked,
517 // yet on Windows it doesn't select all the text.
518 if ( !(m_combo
->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT
) )
520 if ( m_combo
->GetTextCtrl() )
521 m_combo
->GetTextCtrl()->SelectAll();
523 m_combo
->SetSelection(-1,-1);
526 if ( event
.GetId() != m_combo
->GetId() )
528 // Add textctrl set focus events as combo set focus events
529 // NOTE: Simply changing the event and skipping didn't seem
531 wxFocusEvent
evt2(wxEVT_SET_FOCUS
,m_combo
->GetId());
532 evt2
.SetEventObject(m_combo
);
533 m_combo
->GetEventHandler()->ProcessEvent(evt2
);
543 // This is pushed to the event handler queue of the control in popup.
546 class wxComboPopupExtraEventHandler
: public wxEvtHandler
550 wxComboPopupExtraEventHandler( wxComboCtrlBase
* combo
)
554 m_beenInside
= false;
556 ~wxComboPopupExtraEventHandler() { }
558 void OnMouseEvent( wxMouseEvent
& event
);
560 // Called from wxComboCtrlBase::OnPopupDismiss
561 void OnPopupDismiss()
563 m_beenInside
= false;
567 wxComboCtrlBase
* m_combo
;
572 DECLARE_EVENT_TABLE()
576 BEGIN_EVENT_TABLE(wxComboPopupExtraEventHandler
, wxEvtHandler
)
577 EVT_MOUSE_EVENTS(wxComboPopupExtraEventHandler::OnMouseEvent
)
581 void wxComboPopupExtraEventHandler::OnMouseEvent( wxMouseEvent
& event
)
583 wxPoint pt
= event
.GetPosition();
584 wxSize sz
= m_combo
->GetPopupControl()->GetControl()->GetClientSize();
585 int evtType
= event
.GetEventType();
586 bool isInside
= pt
.x
>= 0 && pt
.y
>= 0 && pt
.x
< sz
.x
&& pt
.y
< sz
.y
;
588 if ( evtType
== wxEVT_MOTION
||
589 evtType
== wxEVT_LEFT_DOWN
||
590 evtType
== wxEVT_RIGHT_DOWN
)
592 // Block motion and click events outside the popup
599 else if ( evtType
== wxEVT_LEFT_UP
)
601 // Don't let left-down events in if outside
602 if ( evtType
== wxEVT_LEFT_DOWN
)
617 // Some mouse events to popup that happen outside it, before cursor
618 // has been inside the popu, need to be ignored by it but relayed to
621 wxWindow
* btn
= m_combo
->GetButton();
623 btn
->GetEventHandler()->AddPendingEvent(event
);
625 m_combo
->GetEventHandler()->AddPendingEvent(event
);
637 // ----------------------------------------------------------------------------
639 // ----------------------------------------------------------------------------
642 BEGIN_EVENT_TABLE(wxComboCtrlBase
, wxControl
)
643 EVT_TEXT(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
644 EVT_SIZE(wxComboCtrlBase::OnSizeEvent
)
645 EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent
)
646 EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent
)
647 //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent)
648 EVT_TEXT_ENTER(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
649 EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged
)
653 IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase
, wxControl
)
655 // Have global double buffer - should be enough for multiple combos
656 static wxBitmap
* gs_doubleBuffer
= (wxBitmap
*) NULL
;
658 void wxComboCtrlBase::Init()
660 m_winPopup
= (wxWindow
*)NULL
;
661 m_popup
= (wxWindow
*)NULL
;
662 m_isPopupShown
= false;
663 m_btn
= (wxWindow
*) NULL
;
664 m_text
= (wxTextCtrl
*) NULL
;
665 m_popupInterface
= (wxComboPopup
*) NULL
;
667 m_extraEvtHandler
= (wxEvtHandler
*) NULL
;
668 m_popupExtraHandler
= (wxEvtHandler
*) NULL
;
669 m_textEvtHandler
= (wxEvtHandler
*) NULL
;
671 #if INSTALL_TOPLEV_HANDLER
672 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
676 m_widthMinPopup
= -1;
678 m_widthCustomPaint
= 0;
679 m_widthCustomBorder
= 0;
683 m_blankButtonBg
= false;
684 m_btnWid
= m_btnHei
= 0;
692 m_downReceived
= false;
693 m_timeCanAcceptClick
= 0;
696 bool wxComboCtrlBase::Create(wxWindow
*parent
,
698 const wxString
& value
,
702 const wxValidator
& validator
,
703 const wxString
& name
)
705 if ( !wxControl::Create(parent
,
709 style
| wxWANTS_CHARS
,
714 m_valueString
= value
;
718 m_absIndent
= GetNativeTextIndent();
720 m_iFlags
|= wxCC_IFLAG_CREATED
;
722 // If x and y indicate valid size, wxSizeEvent won't be
723 // emitted automatically, so we need to add artifical one.
724 if ( size
.x
> 0 && size
.y
> 0 )
726 wxSizeEvent
evt(size
,GetId());
727 GetEventHandler()->AddPendingEvent(evt
);
733 void wxComboCtrlBase::InstallInputHandlers( bool alsoTextCtrl
)
735 if ( m_text
&& alsoTextCtrl
)
737 m_textEvtHandler
= new wxComboBoxExtraInputHandler(this);
738 m_text
->PushEventHandler(m_textEvtHandler
);
741 wxComboBoxExtraInputHandler
* inputHandler
= new wxComboBoxExtraInputHandler(this);
742 PushEventHandler(inputHandler
);
743 m_extraEvtHandler
= inputHandler
;
747 wxComboCtrlBase::CreateTextCtrl(int style
, const wxValidator
& validator
)
749 if ( !(m_windowStyle
& wxCB_READONLY
) )
751 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
752 // not used by the wxPropertyGrid and therefore the tab is processed by
753 // looking at ancestors to see if they have wxTAB_TRAVERSAL. The
754 // navigation event is then sent to the wrong window.
755 style
|= wxTE_PROCESS_TAB
;
757 if ( HasFlag(wxTE_PROCESS_ENTER
) )
758 style
|= wxTE_PROCESS_ENTER
;
760 m_text
= new wxTextCtrl(this, wxID_ANY
, m_valueString
,
761 wxDefaultPosition
, wxDefaultSize
,
764 // This is required for some platforms (GTK+ atleast)
765 m_text
->SetSizeHints(2,4);
769 void wxComboCtrlBase::OnThemeChange()
771 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
774 wxComboCtrlBase::~wxComboCtrlBase()
779 delete gs_doubleBuffer
;
780 gs_doubleBuffer
= (wxBitmap
*) NULL
;
782 #if INSTALL_TOPLEV_HANDLER
783 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
784 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
789 RemoveEventHandler(m_extraEvtHandler
);
792 m_text
->RemoveEventHandler(m_textEvtHandler
);
794 delete m_textEvtHandler
;
795 delete m_extraEvtHandler
;
799 // ----------------------------------------------------------------------------
801 // ----------------------------------------------------------------------------
803 // Recalculates button and textctrl areas
804 void wxComboCtrlBase::CalculateAreas( int btnWidth
)
806 wxSize sz
= GetClientSize();
807 int customBorder
= m_widthCustomBorder
;
808 int btnBorder
; // border for button only
810 // check if button should really be outside the border: we'll do it it if
811 // its platform default or bitmap+pushbutton background is used, but not if
812 // there is vertical size adjustment or horizontal spacing.
813 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) ||
814 (m_bmpNormal
.Ok() && m_blankButtonBg
) ) &&
815 m_btnSpacingX
== 0 &&
818 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
823 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
824 btnBorder
= customBorder
;
827 // Defaul indentation
828 if ( m_absIndent
< 0 )
829 m_absIndent
= GetNativeTextIndent();
831 int butWidth
= btnWidth
;
834 butWidth
= m_btnWidDefault
;
836 m_btnWidDefault
= butWidth
;
841 int butHeight
= sz
.y
- btnBorder
*2;
843 // Adjust button width
845 butWidth
+= m_btnWid
;
846 else if ( m_btnWid
> 0 )
850 // Adjust button width to match aspect ratio
851 // (but only if control is smaller than best size).
852 int bestHeight
= GetBestSize().y
;
853 int height
= GetSize().y
;
855 if ( height
< bestHeight
)
857 // Make very small buttons square, as it makes
858 // them accommodate arrow image better and still
861 butWidth
= (height
*butWidth
)/bestHeight
;
863 butWidth
= butHeight
;
867 // Adjust button height
869 butHeight
+= m_btnHei
;
870 else if ( m_btnHei
> 0 )
871 butHeight
= m_btnHei
;
873 // Use size of normal bitmap if...
876 // button width is set to default and blank button bg is not drawn
877 if ( m_bmpNormal
.Ok() )
879 int bmpReqWidth
= m_bmpNormal
.GetWidth();
880 int bmpReqHeight
= m_bmpNormal
.GetHeight();
882 // If drawing blank button background, we need to add some margin.
883 if ( m_blankButtonBg
)
885 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
886 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
889 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
890 butWidth
= bmpReqWidth
;
891 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
892 butHeight
= bmpReqHeight
;
894 // Need to fix height?
895 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
897 int newY
= butHeight
+(customBorder
*2);
898 SetClientSize(wxDefaultCoord
,newY
);
903 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
905 m_btnSize
.x
= butWidth
;
906 m_btnSize
.y
= butHeight
;
908 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
909 m_btnArea
.y
= btnBorder
;
910 m_btnArea
.width
= butAreaWid
;
911 m_btnArea
.height
= sz
.y
- (btnBorder
*2);
913 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
;
914 m_tcArea
.y
= customBorder
;
915 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2);
916 m_tcArea
.height
= sz
.y
- (customBorder
*2);
921 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
922 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
927 void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
932 wxSize sz
= GetClientSize();
933 int customBorder
= m_widthCustomBorder
;
935 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
938 int tcSizeY
= m_text
->GetBestSize().y
;
939 int diff
= sz
.y
- tcSizeY
;
940 int y
= textCtrlYAdjust
+ (diff
/2);
942 if ( y
< customBorder
)
945 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
+ m_absIndent
+ textCtrlXAdjust
,
947 m_tcArea
.width
- COMBO_MARGIN
-
948 (textCtrlXAdjust
+ m_widthCustomPaint
+ m_absIndent
),
951 // Make sure textctrl doesn't exceed the bottom custom border
952 wxSize tsz
= m_text
->GetSize();
953 diff
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
956 tsz
.y
= tsz
.y
- diff
- 1;
957 m_text
->SetSize(tsz
);
962 m_text
->SetSize( m_tcArea
.x
,
964 sz
.x
- m_btnArea
.x
- m_widthCustomPaint
- customBorder
,
969 wxSize
wxComboCtrlBase::DoGetBestSize() const
971 wxSize
sizeText(150,0);
974 sizeText
= m_text
->GetBestSize();
976 // TODO: Better method to calculate close-to-native control height.
980 fhei
= (m_font
.GetPointSize()*2) + 5;
981 else if ( wxNORMAL_FONT
->Ok() )
982 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
984 fhei
= sizeText
.y
+ 4;
986 // Need to force height to accomodate bitmap?
987 int btnSizeY
= m_btnSize
.y
;
988 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
991 // Control height doesn't depend on border
994 int border = m_windowStyle & wxBORDER_MASK;
995 if ( border == wxSIMPLE_BORDER )
997 else if ( border == wxNO_BORDER )
998 fhei += (m_widthCustomBorder*2);
1004 // Final adjustments
1009 wxSize
ret(sizeText
.x
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
,
1016 void wxComboCtrlBase::OnSizeEvent( wxSizeEvent
& event
)
1021 // defined by actual wxComboCtrls
1027 // ----------------------------------------------------------------------------
1028 // standard operations
1029 // ----------------------------------------------------------------------------
1031 bool wxComboCtrlBase::Enable(bool enable
)
1033 if ( !wxControl::Enable(enable
) )
1037 m_btn
->Enable(enable
);
1039 m_text
->Enable(enable
);
1044 bool wxComboCtrlBase::Show(bool show
)
1046 if ( !wxControl::Show(show
) )
1058 bool wxComboCtrlBase::SetFont ( const wxFont
& font
)
1060 if ( !wxControl::SetFont(font
) )
1064 m_text
->SetFont(font
);
1070 void wxComboCtrlBase::DoSetToolTip(wxToolTip
*tooltip
)
1072 wxControl::DoSetToolTip(tooltip
);
1074 // Set tool tip for button and text box
1077 const wxString
&tip
= tooltip
->GetTip();
1078 if ( m_text
) m_text
->SetToolTip(tip
);
1079 if ( m_btn
) m_btn
->SetToolTip(tip
);
1083 if ( m_text
) m_text
->SetToolTip( (wxToolTip
*) NULL
);
1084 if ( m_btn
) m_btn
->SetToolTip( (wxToolTip
*) NULL
);
1087 #endif // wxUSE_TOOLTIPS
1089 // ----------------------------------------------------------------------------
1091 // ----------------------------------------------------------------------------
1093 // draw focus background on area in a way typical on platform
1094 void wxComboCtrlBase::DrawFocusBackground( wxDC
& dc
, const wxRect
& rect
, int flags
) const
1096 wxSize sz
= GetClientSize();
1098 bool isFocused
; // also selected
1100 // For smaller size control (and for disabled background) use less spacing
1104 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1107 isEnabled
= IsEnabled();
1108 isFocused
= ShouldDrawFocus();
1110 // Windows-style: for smaller size control (and for disabled background) use less spacing
1111 focusSpacingX
= isEnabled
? 2 : 1;
1112 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1116 // Drawing a list item
1117 isEnabled
= true; // they are never disabled
1118 isFocused
= flags
& wxCONTROL_SELECTED
? true : false;
1124 // Set the background sub-rectangle for selection, disabled etc
1125 wxRect
selRect(rect
);
1126 selRect
.y
+= focusSpacingY
;
1127 selRect
.height
-= (focusSpacingY
*2);
1131 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1132 wcp
+= m_widthCustomPaint
;
1134 selRect
.x
+= wcp
+ focusSpacingX
;
1135 selRect
.width
-= wcp
+ (focusSpacingX
*2);
1141 // If popup is hidden and this control is focused,
1142 // then draw the focus-indicator (selbgcolor background etc.).
1145 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
) );
1146 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1150 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
1151 bgCol
= GetBackgroundColour();
1156 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
) );
1157 bgCol
= GetBackgroundColour();
1160 dc
.SetBrush( bgCol
);
1162 dc
.DrawRectangle( selRect
);
1165 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, bool paintBg
)
1167 int drawState
= m_btnState
;
1170 if ( m_isPopupShown
)
1171 drawState
|= wxCONTROL_PRESSED
;
1174 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1175 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1179 // Make sure area is not larger than the control
1180 if ( drawRect
.y
< rect
.y
)
1181 drawRect
.y
= rect
.y
;
1182 if ( drawRect
.height
> rect
.height
)
1183 drawRect
.height
= rect
.height
;
1185 bool enabled
= IsEnabled();
1188 drawState
|= wxCONTROL_DISABLED
;
1190 if ( !m_bmpNormal
.Ok() )
1192 // Need to clear button background even if m_btn is present
1197 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1198 bgCol
= GetParent()->GetBackgroundColour();
1200 bgCol
= GetBackgroundColour();
1204 dc
.DrawRectangle(rect
);
1207 // Draw standard button
1208 wxRendererNative::Get().DrawComboBoxDropButton(this,
1220 pBmp
= &m_bmpDisabled
;
1221 else if ( m_btnState
& wxCONTROL_PRESSED
)
1222 pBmp
= &m_bmpPressed
;
1223 else if ( m_btnState
& wxCONTROL_CURRENT
)
1226 pBmp
= &m_bmpNormal
;
1228 if ( m_blankButtonBg
)
1230 // If using blank button background, we need to clear its background
1231 // with button face colour instead of colour for rest of the control.
1234 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1235 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1238 dc
.DrawRectangle(rect
);
1241 wxRendererNative::Get().DrawPushButton(this,
1250 // Need to clear button background even if m_btn is present
1251 // (assume non-button background was cleared just before this call so brushes are good)
1253 dc
.DrawRectangle(rect
);
1256 // Draw bitmap centered in drawRect
1257 dc
.DrawBitmap(*pBmp
,
1258 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1259 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1264 void wxComboCtrlBase::RecalcAndRefresh()
1268 wxSizeEvent
evt(GetSize(),GetId());
1269 GetEventHandler()->ProcessEvent(evt
);
1274 wxBitmap
& wxComboCtrlBase::GetBufferBitmap( const wxSize
& sz
) const
1276 // If size is larger, recalculate double buffer bitmap
1277 if ( !gs_doubleBuffer
||
1278 sz
.x
> gs_doubleBuffer
->GetWidth() ||
1279 sz
.y
> gs_doubleBuffer
->GetHeight() )
1281 delete gs_doubleBuffer
;
1282 gs_doubleBuffer
= new wxBitmap(sz
.x
+25,sz
.y
);
1284 return *gs_doubleBuffer
;
1287 // ----------------------------------------------------------------------------
1288 // miscellaneous event handlers
1289 // ----------------------------------------------------------------------------
1291 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1293 // Change event id and relay it forward
1294 event
.SetId(GetId());
1298 // call if cursor is on button area or mouse is captured for the button
1299 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1302 int type
= event
.GetEventType();
1304 if ( type
== wxEVT_MOTION
)
1306 if ( flags
& wxCC_MF_ON_BUTTON
)
1308 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1310 // Mouse hover begins
1311 m_btnState
|= wxCONTROL_CURRENT
;
1312 if ( HasCapture() ) // Retain pressed state.
1313 m_btnState
|= wxCONTROL_PRESSED
;
1317 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1320 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1324 else if ( type
== wxEVT_LEFT_DOWN
)
1326 // Only accept event if it wasn't right after popup dismiss
1327 //if ( ::wxGetLocalTimeMillis() > m_timeCanClick )
1329 // Need to test this, because it might be outside.
1330 if ( flags
& wxCC_MF_ON_BUTTON
)
1332 m_btnState
|= wxCONTROL_PRESSED
;
1335 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1338 // If showing popup now, do not capture mouse or there will be interference
1347 else if ( type
== wxEVT_LEFT_UP
)
1350 // Only accept event if mouse was left-press was previously accepted
1354 if ( m_btnState
& wxCONTROL_PRESSED
)
1356 // If mouse was inside, fire the click event.
1357 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1359 if ( flags
& wxCC_MF_ON_BUTTON
)
1363 m_btnState
&= ~(wxCONTROL_PRESSED
);
1367 else if ( type
== wxEVT_LEAVE_WINDOW
)
1369 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1371 m_btnState
&= ~(wxCONTROL_CURRENT
);
1374 if ( !m_isPopupShown
)
1376 m_btnState
&= ~(wxCONTROL_PRESSED
);
1387 // Conversion to double-clicks and some basic filtering
1388 // returns true if event was consumed or filtered
1389 //bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent& event, bool isOnButtonArea )
1390 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1393 wxLongLong t
= ::wxGetLocalTimeMillis();
1394 int evtType
= event
.GetEventType();
1397 // Generate our own double-clicks
1398 // (to allow on-focus dc-event on double-clicks instead of triple-clicks)
1399 if ( (m_windowStyle
& wxCC_SPECIAL_DCLICK
) &&
1401 //!(handlerFlags & wxCC_MF_ON_BUTTON) )
1402 !(flags
& wxCC_MF_ON_BUTTON
) )
1404 if ( evtType
== wxEVT_LEFT_DOWN
)
1406 // Set value to avoid up-events without corresponding downs
1407 m_downReceived
= true;
1409 else if ( evtType
== wxEVT_LEFT_DCLICK
)
1411 // We'll make our own double-clicks
1413 event
.SetEventType(0);
1416 else if ( evtType
== wxEVT_LEFT_UP
)
1418 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
1420 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
1422 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
1424 //type = wxEVT_LEFT_DCLICK;
1425 event
.SetEventType(wxEVT_LEFT_DCLICK
);
1426 m_timeLastMouseUp
= 1;
1430 m_timeLastMouseUp
= t
;
1433 //m_downReceived = false;
1438 // Filter out clicks on button immediately after popup dismiss (Windows like behaviour)
1439 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1441 event
.SetEventType(0);
1448 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1450 int evtType
= event
.GetEventType();
1452 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1453 (m_windowStyle
& wxCB_READONLY
) )
1455 if ( m_isPopupShown
)
1458 // Normally do nothing - evt handler should close it for us
1459 #elif !USE_TRANSIENT_POPUP
1460 // Click here always hides the popup.
1466 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1468 // In read-only mode, clicking the text is the
1469 // same as clicking the button.
1472 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1474 //if ( m_popupInterface->CycleValue() )
1476 if ( m_popupInterface
)
1477 m_popupInterface
->OnComboDoubleClick();
1482 if ( m_isPopupShown
)
1484 // relay (some) mouse events to the popup
1485 if ( evtType
== wxEVT_MOUSEWHEEL
)
1486 m_popup
->AddPendingEvent(event
);
1492 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& )
1494 // First click is the first part of double-click
1495 // Some platforms don't generate down-less mouse up-event
1496 // (Windows does, GTK+2 doesn't), so that's why we have
1498 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
1505 // no need to check for m_widthCustomPaint - that
1506 // area never gets special handling when selected
1507 // (in writable mode, that is)
1511 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1514 // indentation may also have changed
1515 if ( !(m_iFlags
& wxCC_IFLAG_INDENT_SET
) )
1516 m_absIndent
= GetNativeTextIndent();
1520 // ----------------------------------------------------------------------------
1522 // ----------------------------------------------------------------------------
1524 // Create popup window and the child control
1525 void wxComboCtrlBase::CreatePopup()
1527 wxComboPopup
* popupInterface
= m_popupInterface
;
1531 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1533 popupInterface
->Create(m_winPopup
);
1534 m_popup
= popup
= popupInterface
->GetControl();
1536 m_popupExtraHandler
= new wxComboPopupExtraEventHandler(this);
1537 popup
->PushEventHandler( m_popupExtraHandler
);
1539 // This may be helpful on some platforms
1540 // (eg. it bypasses a wxGTK popupwindow bug where
1541 // window is not initially hidden when it should be)
1544 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
1547 // Destroy popup window and the child control
1548 void wxComboCtrlBase::DestroyPopup()
1551 m_popup
->RemoveEventHandler(m_popupExtraHandler
);
1553 delete m_popupExtraHandler
;
1557 delete m_popupInterface
;
1560 m_winPopup
->Destroy();
1562 m_popupInterface
= (wxComboPopup
*) NULL
;
1563 m_winPopup
= (wxWindow
*) NULL
;
1564 m_popup
= (wxWindow
*) NULL
;
1567 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
1569 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
1573 iface
->InitBase(this);
1576 m_popupInterface
= iface
;
1578 if ( !iface
->LazyCreate() )
1584 m_popup
= (wxWindow
*) NULL
;
1587 // This must be done after creation
1588 if ( m_valueString
.length() )
1590 iface
->SetStringValue(m_valueString
);
1595 // Ensures there is atleast the default popup
1596 void wxComboCtrlBase::EnsurePopupControl()
1598 if ( !m_popupInterface
)
1599 SetPopupControl(NULL
);
1602 void wxComboCtrlBase::OnButtonClick()
1604 // Derived classes can override this method for totally custom
1609 void wxComboCtrlBase::ShowPopup()
1611 EnsurePopupControl();
1612 wxCHECK_RET( !IsPopupShown(), wxT("popup window already shown") );
1616 // Space above and below
1622 wxSize ctrlSz
= GetSize();
1624 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
1625 scrPos
= GetParent()->ClientToScreen(GetPosition());
1627 spaceAbove
= scrPos
.y
;
1628 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
1630 maxHeightPopup
= spaceBelow
;
1631 if ( spaceAbove
> spaceBelow
)
1632 maxHeightPopup
= spaceAbove
;
1635 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
1637 if ( widthPopup
< m_widthMinPopup
)
1638 widthPopup
= m_widthMinPopup
;
1640 wxWindow
* winPopup
= m_winPopup
;
1643 // Need to disable tab traversal of parent
1645 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
1646 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
1647 // that if transient popup is open, then tab traversal is to be ignored.
1648 // However, I think this code would still be needed for cases where
1649 // transient popup doesn't work yet (wxWinCE?).
1650 wxWindow
* parent
= GetParent();
1651 int parentFlags
= parent
->GetWindowStyle();
1652 if ( parentFlags
& wxTAB_TRAVERSAL
)
1654 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
1655 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
1661 winPopup
= m_winPopup
;
1669 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
1671 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
1672 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
1675 popup
->SetSize(adjustedSize
);
1677 m_popupInterface
->OnPopup();
1680 // Reposition and resize popup window
1683 wxSize szp
= popup
->GetSize();
1686 int popupY
= scrPos
.y
+ ctrlSz
.y
;
1688 // Default anchor is wxLEFT
1689 int anchorSide
= m_anchorSide
;
1691 anchorSide
= wxLEFT
;
1693 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
1694 int leftX
= scrPos
.x
- m_extLeft
;
1695 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
1697 // If there is not enough horizontal space, anchor on the other side.
1698 // If there is no space even then, place the popup at x 0.
1699 if ( anchorSide
== wxRIGHT
)
1703 if ( (leftX
+szp
.x
) < screenWidth
)
1704 anchorSide
= wxLEFT
;
1711 if ( (leftX
+szp
.x
) >= screenWidth
)
1714 anchorSide
= wxRIGHT
;
1720 // Select x coordinate according to the anchor side
1721 if ( anchorSide
== wxRIGHT
)
1723 else if ( anchorSide
== wxLEFT
)
1728 if ( spaceBelow
< szp
.y
)
1730 popupY
= scrPos
.y
- szp
.y
;
1734 //wxLogDebug(wxT("popup scheduled position1: %i,%i"),ptp.x,ptp.y);
1735 //wxLogDebug(wxT("popup position1: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1737 // Some platforms (GTK) may need these two to be separate
1738 winPopup
->SetSize( szp
.x
, szp
.y
);
1739 winPopup
->Move( popupX
, popupY
);
1741 //wxLogDebug(wxT("popup position2: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1745 // Set string selection (must be this way instead of SetStringSelection)
1748 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1749 m_text
->SelectAll();
1751 m_popupInterface
->SetStringValue( m_text
->GetValue() );
1755 // This is neede since focus/selection indication may change when popup is shown
1759 // This must be after SetStringValue
1760 m_isPopupShown
= true;
1763 #if USE_TRANSIENT_POPUP
1764 ((wxPopupTransientWindow
*)winPopup
)->Popup(popup
);
1769 #if INSTALL_TOPLEV_HANDLER
1770 // Put top level window event handler into place
1771 if ( !m_toplevEvtHandler
)
1772 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
1774 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1776 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
1777 toplev
->PushEventHandler( m_toplevEvtHandler
);
1782 void wxComboCtrlBase::OnPopupDismiss()
1784 // Just in case, avoid double dismiss
1785 if ( !m_isPopupShown
)
1788 // *Must* set this before focus etc.
1789 m_isPopupShown
= false;
1791 // Inform popup control itself
1792 m_popupInterface
->OnDismiss();
1794 if ( m_popupExtraHandler
)
1795 ((wxComboPopupExtraEventHandler
*)m_popupExtraHandler
)->OnPopupDismiss();
1797 #if INSTALL_TOPLEV_HANDLER
1798 // Remove top level window event handler
1799 if ( m_toplevEvtHandler
)
1801 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1803 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
1807 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis() + 150;
1809 // If cursor not on dropdown button, then clear its state
1810 // (technically not required by all ports, but do it for all just in case)
1811 if ( !m_btnArea
.Inside(ScreenToClient(::wxGetMousePosition())) )
1814 // Return parent's tab traversal flag.
1815 // See ShowPopup for notes.
1816 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
1818 wxWindow
* parent
= GetParent();
1819 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
1820 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
1823 // refresh control (necessary even if m_text)
1832 void wxComboCtrlBase::HidePopup()
1834 // Should be able to call this without popup interface
1835 //wxCHECK_RET( m_popupInterface, _T("no popup interface") );
1836 if ( !m_isPopupShown
)
1839 // transfer value and show it in textctrl, if any
1840 SetValue( m_popupInterface
->GetStringValue() );
1842 #if USE_TRANSIENT_POPUP
1843 ((wxPopupTransientWindow
*)m_winPopup
)->Dismiss();
1851 // ----------------------------------------------------------------------------
1852 // customization methods
1853 // ----------------------------------------------------------------------------
1855 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
1856 int side
, int spacingX
)
1861 m_btnSpacingX
= spacingX
;
1866 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
1868 const wxBitmap
& bmpPressed
,
1869 const wxBitmap
& bmpHover
,
1870 const wxBitmap
& bmpDisabled
)
1872 m_bmpNormal
= bmpNormal
;
1873 m_blankButtonBg
= blankButtonBg
;
1875 if ( bmpPressed
.Ok() )
1876 m_bmpPressed
= bmpPressed
;
1878 m_bmpPressed
= bmpNormal
;
1880 if ( bmpHover
.Ok() )
1881 m_bmpHover
= bmpHover
;
1883 m_bmpHover
= bmpNormal
;
1885 if ( bmpDisabled
.Ok() )
1886 m_bmpDisabled
= bmpDisabled
;
1888 m_bmpDisabled
= bmpNormal
;
1893 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
1897 // move textctrl accordingly
1898 wxRect r
= m_text
->GetRect();
1899 int inc
= width
- m_widthCustomPaint
;
1902 m_text
->SetSize( r
);
1905 m_widthCustomPaint
= width
;
1910 void wxComboCtrlBase::SetTextIndent( int indent
)
1914 m_absIndent
= GetNativeTextIndent();
1915 m_iFlags
&= ~(wxCC_IFLAG_INDENT_SET
);
1919 m_absIndent
= indent
;
1920 m_iFlags
|= wxCC_IFLAG_INDENT_SET
;
1926 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
1928 return DEFAULT_TEXT_INDENT
;
1931 // ----------------------------------------------------------------------------
1932 // methods forwarded to wxTextCtrl
1933 // ----------------------------------------------------------------------------
1935 wxString
wxComboCtrlBase::GetValue() const
1938 return m_text
->GetValue();
1939 return m_valueString
;
1942 void wxComboCtrlBase::SetValue(const wxString
& value
)
1946 m_text
->SetValue(value
);
1947 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1948 m_text
->SelectAll();
1951 m_valueString
= value
;
1955 // Since wxComboPopup may want to paint the combo as well, we need
1956 // to set the string value here (as well as sometimes in ShowPopup).
1957 if ( m_valueString
!= value
&& m_popupInterface
)
1959 m_popupInterface
->SetStringValue(value
);
1963 // In this SetValue variant wxComboPopup::SetStringValue is not called
1964 void wxComboCtrlBase::SetText(const wxString
& value
)
1966 // Unlike in SetValue(), this must be called here or
1967 // the behaviour will no be consistent in readonlys.
1968 EnsurePopupControl();
1970 m_valueString
= value
;
1975 void wxComboCtrlBase::Copy()
1981 void wxComboCtrlBase::Cut()
1987 void wxComboCtrlBase::Paste()
1993 void wxComboCtrlBase::SetInsertionPoint(long pos
)
1996 m_text
->SetInsertionPoint(pos
);
1999 void wxComboCtrlBase::SetInsertionPointEnd()
2002 m_text
->SetInsertionPointEnd();
2005 long wxComboCtrlBase::GetInsertionPoint() const
2008 return m_text
->GetInsertionPoint();
2013 long wxComboCtrlBase::GetLastPosition() const
2016 return m_text
->GetLastPosition();
2021 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2024 m_text
->Replace(from
, to
, value
);
2027 void wxComboCtrlBase::Remove(long from
, long to
)
2030 m_text
->Remove(from
, to
);
2033 void wxComboCtrlBase::SetSelection(long from
, long to
)
2036 m_text
->SetSelection(from
, to
);
2039 void wxComboCtrlBase::Undo()
2045 #endif // wxUSE_COMBOCTRL