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
;
746 void wxComboCtrlBase::CreateTextCtrl( int extraStyle
, const wxValidator
& validator
)
748 if ( !(m_windowStyle
& wxCB_READONLY
) )
750 m_text
= new wxTextCtrl(this,
755 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
756 // not used by the wxPropertyGrid and therefore the tab is
757 // processed by looking at ancestors to see if they have
758 // wxTAB_TRAVERSAL. The navigation event is then sent to
765 // This is required for some platforms (GTK+ atleast)
766 m_text
->SetSizeHints(2,4);
770 void wxComboCtrlBase::OnThemeChange()
772 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
775 wxComboCtrlBase::~wxComboCtrlBase()
780 delete gs_doubleBuffer
;
781 gs_doubleBuffer
= (wxBitmap
*) NULL
;
783 #if INSTALL_TOPLEV_HANDLER
784 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
785 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
790 RemoveEventHandler(m_extraEvtHandler
);
793 m_text
->RemoveEventHandler(m_textEvtHandler
);
795 delete m_textEvtHandler
;
796 delete m_extraEvtHandler
;
800 // ----------------------------------------------------------------------------
802 // ----------------------------------------------------------------------------
804 // Recalculates button and textctrl areas
805 void wxComboCtrlBase::CalculateAreas( int btnWidth
)
807 wxSize sz
= GetClientSize();
808 int customBorder
= m_widthCustomBorder
;
809 int btnBorder
; // border for button only
811 // check if button should really be outside the border: we'll do it it if
812 // its platform default or bitmap+pushbutton background is used, but not if
813 // there is vertical size adjustment or horizontal spacing.
814 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) ||
815 (m_bmpNormal
.Ok() && m_blankButtonBg
) ) &&
816 m_btnSpacingX
== 0 &&
819 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
824 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
825 btnBorder
= customBorder
;
828 // Defaul indentation
829 if ( m_absIndent
< 0 )
830 m_absIndent
= GetNativeTextIndent();
832 int butWidth
= btnWidth
;
835 butWidth
= m_btnWidDefault
;
837 m_btnWidDefault
= butWidth
;
842 int butHeight
= sz
.y
- btnBorder
*2;
844 // Adjust button width
846 butWidth
+= m_btnWid
;
847 else if ( m_btnWid
> 0 )
851 // Adjust button width to match aspect ratio
852 // (but only if control is smaller than best size).
853 int bestHeight
= GetBestSize().y
;
854 int height
= GetSize().y
;
856 if ( height
< bestHeight
)
858 // Make very small buttons square, as it makes
859 // them accommodate arrow image better and still
862 butWidth
= (height
*butWidth
)/bestHeight
;
864 butWidth
= butHeight
;
868 // Adjust button height
870 butHeight
+= m_btnHei
;
871 else if ( m_btnHei
> 0 )
872 butHeight
= m_btnHei
;
874 // Use size of normal bitmap if...
877 // button width is set to default and blank button bg is not drawn
878 if ( m_bmpNormal
.Ok() )
880 int bmpReqWidth
= m_bmpNormal
.GetWidth();
881 int bmpReqHeight
= m_bmpNormal
.GetHeight();
883 // If drawing blank button background, we need to add some margin.
884 if ( m_blankButtonBg
)
886 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
887 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
890 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
891 butWidth
= bmpReqWidth
;
892 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
893 butHeight
= bmpReqHeight
;
895 // Need to fix height?
896 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
898 int newY
= butHeight
+(customBorder
*2);
899 SetClientSize(wxDefaultCoord
,newY
);
904 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
906 m_btnSize
.x
= butWidth
;
907 m_btnSize
.y
= butHeight
;
909 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
910 m_btnArea
.y
= btnBorder
;
911 m_btnArea
.width
= butAreaWid
;
912 m_btnArea
.height
= sz
.y
- (btnBorder
*2);
914 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
;
915 m_tcArea
.y
= customBorder
;
916 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2);
917 m_tcArea
.height
= sz
.y
- (customBorder
*2);
922 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
923 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
928 void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
933 wxSize sz
= GetClientSize();
934 int customBorder
= m_widthCustomBorder
;
936 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
939 int tcSizeY
= m_text
->GetBestSize().y
;
940 int diff
= sz
.y
- tcSizeY
;
941 int y
= textCtrlYAdjust
+ (diff
/2);
943 if ( y
< customBorder
)
946 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
+ m_absIndent
+ textCtrlXAdjust
,
948 m_tcArea
.width
- COMBO_MARGIN
-
949 (textCtrlXAdjust
+ m_widthCustomPaint
+ m_absIndent
),
952 // Make sure textctrl doesn't exceed the bottom custom border
953 wxSize tsz
= m_text
->GetSize();
954 diff
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
957 tsz
.y
= tsz
.y
- diff
- 1;
958 m_text
->SetSize(tsz
);
963 m_text
->SetSize( m_tcArea
.x
,
965 sz
.x
- m_btnArea
.x
- m_widthCustomPaint
- customBorder
,
970 wxSize
wxComboCtrlBase::DoGetBestSize() const
972 wxSize
sizeText(150,0);
975 sizeText
= m_text
->GetBestSize();
977 // TODO: Better method to calculate close-to-native control height.
981 fhei
= (m_font
.GetPointSize()*2) + 5;
982 else if ( wxNORMAL_FONT
->Ok() )
983 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
985 fhei
= sizeText
.y
+ 4;
987 // Need to force height to accomodate bitmap?
988 int btnSizeY
= m_btnSize
.y
;
989 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
992 // Control height doesn't depend on border
995 int border = m_windowStyle & wxBORDER_MASK;
996 if ( border == wxSIMPLE_BORDER )
998 else if ( border == wxNO_BORDER )
999 fhei += (m_widthCustomBorder*2);
1005 // Final adjustments
1010 wxSize
ret(sizeText
.x
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
,
1017 void wxComboCtrlBase::OnSizeEvent( wxSizeEvent
& event
)
1022 // defined by actual wxComboCtrls
1028 // ----------------------------------------------------------------------------
1029 // standard operations
1030 // ----------------------------------------------------------------------------
1032 bool wxComboCtrlBase::Enable(bool enable
)
1034 if ( !wxControl::Enable(enable
) )
1038 m_btn
->Enable(enable
);
1040 m_text
->Enable(enable
);
1045 bool wxComboCtrlBase::Show(bool show
)
1047 if ( !wxControl::Show(show
) )
1059 bool wxComboCtrlBase::SetFont ( const wxFont
& font
)
1061 if ( !wxControl::SetFont(font
) )
1065 m_text
->SetFont(font
);
1071 void wxComboCtrlBase::DoSetToolTip(wxToolTip
*tooltip
)
1073 wxControl::DoSetToolTip(tooltip
);
1075 // Set tool tip for button and text box
1078 const wxString
&tip
= tooltip
->GetTip();
1079 if ( m_text
) m_text
->SetToolTip(tip
);
1080 if ( m_btn
) m_btn
->SetToolTip(tip
);
1084 if ( m_text
) m_text
->SetToolTip( (wxToolTip
*) NULL
);
1085 if ( m_btn
) m_btn
->SetToolTip( (wxToolTip
*) NULL
);
1088 #endif // wxUSE_TOOLTIPS
1090 // ----------------------------------------------------------------------------
1092 // ----------------------------------------------------------------------------
1094 // draw focus background on area in a way typical on platform
1095 void wxComboCtrlBase::DrawFocusBackground( wxDC
& dc
, const wxRect
& rect
, int flags
) const
1097 wxSize sz
= GetClientSize();
1099 bool isFocused
; // also selected
1101 // For smaller size control (and for disabled background) use less spacing
1105 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1108 isEnabled
= IsEnabled();
1109 isFocused
= ShouldDrawFocus();
1111 // Windows-style: for smaller size control (and for disabled background) use less spacing
1112 focusSpacingX
= isEnabled
? 2 : 1;
1113 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1117 // Drawing a list item
1118 isEnabled
= true; // they are never disabled
1119 isFocused
= flags
& wxCONTROL_SELECTED
? true : false;
1125 // Set the background sub-rectangle for selection, disabled etc
1126 wxRect
selRect(rect
);
1127 selRect
.y
+= focusSpacingY
;
1128 selRect
.height
-= (focusSpacingY
*2);
1129 selRect
.x
+= m_widthCustomPaint
+ focusSpacingX
;
1130 selRect
.width
-= m_widthCustomPaint
+ (focusSpacingX
*2);
1136 // If popup is hidden and this control is focused,
1137 // then draw the focus-indicator (selbgcolor background etc.).
1140 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
) );
1141 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1145 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
1146 bgCol
= GetBackgroundColour();
1151 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
) );
1152 bgCol
= GetBackgroundColour();
1155 dc
.SetBrush( bgCol
);
1157 dc
.DrawRectangle( selRect
);
1160 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, bool paintBg
)
1162 int drawState
= m_btnState
;
1165 if ( m_isPopupShown
)
1166 drawState
|= wxCONTROL_PRESSED
;
1169 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1170 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1174 // Make sure area is not larger than the control
1175 if ( drawRect
.y
< rect
.y
)
1176 drawRect
.y
= rect
.y
;
1177 if ( drawRect
.height
> rect
.height
)
1178 drawRect
.height
= rect
.height
;
1180 bool enabled
= IsEnabled();
1183 drawState
|= wxCONTROL_DISABLED
;
1185 if ( !m_bmpNormal
.Ok() )
1187 // Need to clear button background even if m_btn is present
1192 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1193 bgCol
= GetParent()->GetBackgroundColour();
1195 bgCol
= GetBackgroundColour();
1199 dc
.DrawRectangle(rect
);
1202 // Draw standard button
1203 wxRendererNative::Get().DrawComboBoxDropButton(this,
1215 pBmp
= &m_bmpDisabled
;
1216 else if ( m_btnState
& wxCONTROL_PRESSED
)
1217 pBmp
= &m_bmpPressed
;
1218 else if ( m_btnState
& wxCONTROL_CURRENT
)
1221 pBmp
= &m_bmpNormal
;
1223 if ( m_blankButtonBg
)
1225 // If using blank button background, we need to clear its background
1226 // with button face colour instead of colour for rest of the control.
1229 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1230 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1233 dc
.DrawRectangle(rect
);
1236 wxRendererNative::Get().DrawPushButton(this,
1245 // Need to clear button background even if m_btn is present
1246 // (assume non-button background was cleared just before this call so brushes are good)
1248 dc
.DrawRectangle(rect
);
1251 // Draw bitmap centered in drawRect
1252 dc
.DrawBitmap(*pBmp
,
1253 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1254 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1259 void wxComboCtrlBase::RecalcAndRefresh()
1263 wxSizeEvent
evt(GetSize(),GetId());
1264 GetEventHandler()->ProcessEvent(evt
);
1269 wxBitmap
& wxComboCtrlBase::GetBufferBitmap( const wxSize
& sz
) const
1271 // If size is larger, recalculate double buffer bitmap
1272 if ( !gs_doubleBuffer
||
1273 sz
.x
> gs_doubleBuffer
->GetWidth() ||
1274 sz
.y
> gs_doubleBuffer
->GetHeight() )
1276 delete gs_doubleBuffer
;
1277 gs_doubleBuffer
= new wxBitmap(sz
.x
+25,sz
.y
);
1279 return *gs_doubleBuffer
;
1282 // ----------------------------------------------------------------------------
1283 // miscellaneous event handlers
1284 // ----------------------------------------------------------------------------
1286 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1288 // Change event id and relay it forward
1289 event
.SetId(GetId());
1293 // call if cursor is on button area or mouse is captured for the button
1294 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1297 int type
= event
.GetEventType();
1299 if ( type
== wxEVT_MOTION
)
1301 if ( flags
& wxCC_MF_ON_BUTTON
)
1303 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1305 // Mouse hover begins
1306 m_btnState
|= wxCONTROL_CURRENT
;
1307 if ( HasCapture() ) // Retain pressed state.
1308 m_btnState
|= wxCONTROL_PRESSED
;
1312 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1315 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1319 else if ( type
== wxEVT_LEFT_DOWN
)
1321 // Only accept event if it wasn't right after popup dismiss
1322 //if ( ::wxGetLocalTimeMillis() > m_timeCanClick )
1324 // Need to test this, because it might be outside.
1325 if ( flags
& wxCC_MF_ON_BUTTON
)
1327 m_btnState
|= wxCONTROL_PRESSED
;
1330 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1333 // If showing popup now, do not capture mouse or there will be interference
1342 else if ( type
== wxEVT_LEFT_UP
)
1345 // Only accept event if mouse was left-press was previously accepted
1349 if ( m_btnState
& wxCONTROL_PRESSED
)
1351 // If mouse was inside, fire the click event.
1352 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1354 if ( flags
& wxCC_MF_ON_BUTTON
)
1358 m_btnState
&= ~(wxCONTROL_PRESSED
);
1362 else if ( type
== wxEVT_LEAVE_WINDOW
)
1364 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1366 m_btnState
&= ~(wxCONTROL_CURRENT
);
1369 if ( !m_isPopupShown
)
1371 m_btnState
&= ~(wxCONTROL_PRESSED
);
1382 // Conversion to double-clicks and some basic filtering
1383 // returns true if event was consumed or filtered
1384 //bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent& event, bool isOnButtonArea )
1385 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1388 wxLongLong t
= ::wxGetLocalTimeMillis();
1389 int evtType
= event
.GetEventType();
1392 // Generate our own double-clicks
1393 // (to allow on-focus dc-event on double-clicks instead of triple-clicks)
1394 if ( (m_windowStyle
& wxCC_SPECIAL_DCLICK
) &&
1396 //!(handlerFlags & wxCC_MF_ON_BUTTON) )
1397 !(flags
& wxCC_MF_ON_BUTTON
) )
1399 if ( evtType
== wxEVT_LEFT_DOWN
)
1401 // Set value to avoid up-events without corresponding downs
1402 m_downReceived
= true;
1404 else if ( evtType
== wxEVT_LEFT_DCLICK
)
1406 // We'll make our own double-clicks
1408 event
.SetEventType(0);
1411 else if ( evtType
== wxEVT_LEFT_UP
)
1413 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
1415 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
1417 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
1419 //type = wxEVT_LEFT_DCLICK;
1420 event
.SetEventType(wxEVT_LEFT_DCLICK
);
1421 m_timeLastMouseUp
= 1;
1425 m_timeLastMouseUp
= t
;
1428 //m_downReceived = false;
1433 // Filter out clicks on button immediately after popup dismiss (Windows like behaviour)
1434 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1436 event
.SetEventType(0);
1443 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1445 int evtType
= event
.GetEventType();
1447 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1448 (m_windowStyle
& wxCB_READONLY
) )
1450 if ( m_isPopupShown
)
1453 // Normally do nothing - evt handler should close it for us
1454 #elif !USE_TRANSIENT_POPUP
1455 // Click here always hides the popup.
1461 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1463 // In read-only mode, clicking the text is the
1464 // same as clicking the button.
1467 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1469 //if ( m_popupInterface->CycleValue() )
1471 if ( m_popupInterface
)
1472 m_popupInterface
->OnComboDoubleClick();
1477 if ( m_isPopupShown
)
1479 // relay (some) mouse events to the popup
1480 if ( evtType
== wxEVT_MOUSEWHEEL
)
1481 m_popup
->AddPendingEvent(event
);
1487 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& )
1489 // First click is the first part of double-click
1490 // Some platforms don't generate down-less mouse up-event
1491 // (Windows does, GTK+2 doesn't), so that's why we have
1493 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
1500 // no need to check for m_widthCustomPaint - that
1501 // area never gets special handling when selected
1502 // (in writable mode, that is)
1506 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1509 // indentation may also have changed
1510 if ( !(m_iFlags
& wxCC_IFLAG_INDENT_SET
) )
1511 m_absIndent
= GetNativeTextIndent();
1515 // ----------------------------------------------------------------------------
1517 // ----------------------------------------------------------------------------
1519 // Create popup window and the child control
1520 void wxComboCtrlBase::CreatePopup()
1522 wxComboPopup
* popupInterface
= m_popupInterface
;
1526 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1528 popupInterface
->Create(m_winPopup
);
1529 m_popup
= popup
= popupInterface
->GetControl();
1531 m_popupExtraHandler
= new wxComboPopupExtraEventHandler(this);
1532 popup
->PushEventHandler( m_popupExtraHandler
);
1534 // This may be helpful on some platforms
1535 // (eg. it bypasses a wxGTK popupwindow bug where
1536 // window is not initially hidden when it should be)
1539 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
1542 // Destroy popup window and the child control
1543 void wxComboCtrlBase::DestroyPopup()
1546 m_popup
->RemoveEventHandler(m_popupExtraHandler
);
1548 delete m_popupExtraHandler
;
1552 delete m_popupInterface
;
1555 m_winPopup
->Destroy();
1557 m_popupInterface
= (wxComboPopup
*) NULL
;
1558 m_winPopup
= (wxWindow
*) NULL
;
1559 m_popup
= (wxWindow
*) NULL
;
1562 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
1564 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
1568 iface
->InitBase(this);
1571 m_popupInterface
= iface
;
1573 if ( !iface
->LazyCreate() )
1579 m_popup
= (wxWindow
*) NULL
;
1582 // This must be done after creation
1583 if ( m_valueString
.length() )
1585 iface
->SetStringValue(m_valueString
);
1590 // Ensures there is atleast the default popup
1591 void wxComboCtrlBase::EnsurePopupControl()
1593 if ( !m_popupInterface
)
1594 SetPopupControl(NULL
);
1597 void wxComboCtrlBase::OnButtonClick()
1599 // Derived classes can override this method for totally custom
1604 void wxComboCtrlBase::ShowPopup()
1606 EnsurePopupControl();
1607 wxCHECK_RET( !IsPopupShown(), wxT("popup window already shown") );
1611 // Space above and below
1617 wxSize ctrlSz
= GetSize();
1619 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
1620 scrPos
= GetParent()->ClientToScreen(GetPosition());
1622 spaceAbove
= scrPos
.y
;
1623 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
1625 maxHeightPopup
= spaceBelow
;
1626 if ( spaceAbove
> spaceBelow
)
1627 maxHeightPopup
= spaceAbove
;
1630 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
1632 if ( widthPopup
< m_widthMinPopup
)
1633 widthPopup
= m_widthMinPopup
;
1635 wxWindow
* winPopup
= m_winPopup
;
1638 // Need to disable tab traversal of parent
1640 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
1641 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
1642 // that if transient popup is open, then tab traversal is to be ignored.
1643 // However, I think this code would still be needed for cases where
1644 // transient popup doesn't work yet (wxWinCE?).
1645 wxWindow
* parent
= GetParent();
1646 int parentFlags
= parent
->GetWindowStyle();
1647 if ( parentFlags
& wxTAB_TRAVERSAL
)
1649 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
1650 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
1656 winPopup
= m_winPopup
;
1664 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
1666 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
1667 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
1670 popup
->SetSize(adjustedSize
);
1672 m_popupInterface
->OnPopup();
1675 // Reposition and resize popup window
1678 wxSize szp
= popup
->GetSize();
1681 int popupY
= scrPos
.y
+ ctrlSz
.y
;
1683 // Default anchor is wxLEFT
1684 int anchorSide
= m_anchorSide
;
1686 anchorSide
= wxLEFT
;
1688 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
1689 int leftX
= scrPos
.x
- m_extLeft
;
1690 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
1692 // If there is not enough horizontal space, anchor on the other side.
1693 // If there is no space even then, place the popup at x 0.
1694 if ( anchorSide
== wxRIGHT
)
1698 if ( (leftX
+szp
.x
) < screenWidth
)
1699 anchorSide
= wxLEFT
;
1706 if ( (leftX
+szp
.x
) >= screenWidth
)
1709 anchorSide
= wxRIGHT
;
1715 // Select x coordinate according to the anchor side
1716 if ( anchorSide
== wxRIGHT
)
1718 else if ( anchorSide
== wxLEFT
)
1723 if ( spaceBelow
< szp
.y
)
1725 popupY
= scrPos
.y
- szp
.y
;
1729 //wxLogDebug(wxT("popup scheduled position1: %i,%i"),ptp.x,ptp.y);
1730 //wxLogDebug(wxT("popup position1: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1732 // Some platforms (GTK) may need these two to be separate
1733 winPopup
->SetSize( szp
.x
, szp
.y
);
1734 winPopup
->Move( popupX
, popupY
);
1736 //wxLogDebug(wxT("popup position2: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1740 // Set string selection (must be this way instead of SetStringSelection)
1743 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1744 m_text
->SelectAll();
1746 m_popupInterface
->SetStringValue( m_text
->GetValue() );
1750 // This is neede since focus/selection indication may change when popup is shown
1754 // This must be after SetStringValue
1755 m_isPopupShown
= true;
1758 #if USE_TRANSIENT_POPUP
1759 ((wxPopupTransientWindow
*)winPopup
)->Popup(popup
);
1764 #if INSTALL_TOPLEV_HANDLER
1765 // Put top level window event handler into place
1766 if ( !m_toplevEvtHandler
)
1767 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
1769 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1771 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
1772 toplev
->PushEventHandler( m_toplevEvtHandler
);
1777 void wxComboCtrlBase::OnPopupDismiss()
1779 // Just in case, avoid double dismiss
1780 if ( !m_isPopupShown
)
1783 // *Must* set this before focus etc.
1784 m_isPopupShown
= false;
1786 // Inform popup control itself
1787 m_popupInterface
->OnDismiss();
1789 if ( m_popupExtraHandler
)
1790 ((wxComboPopupExtraEventHandler
*)m_popupExtraHandler
)->OnPopupDismiss();
1792 #if INSTALL_TOPLEV_HANDLER
1793 // Remove top level window event handler
1794 if ( m_toplevEvtHandler
)
1796 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1798 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
1802 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis() + 150;
1804 // If cursor not on dropdown button, then clear its state
1805 // (technically not required by all ports, but do it for all just in case)
1806 if ( !m_btnArea
.Inside(ScreenToClient(::wxGetMousePosition())) )
1809 // Return parent's tab traversal flag.
1810 // See ShowPopup for notes.
1811 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
1813 wxWindow
* parent
= GetParent();
1814 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
1815 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
1818 // refresh control (necessary even if m_text)
1827 void wxComboCtrlBase::HidePopup()
1829 // Should be able to call this without popup interface
1830 //wxCHECK_RET( m_popupInterface, _T("no popup interface") );
1831 if ( !m_isPopupShown
)
1834 // transfer value and show it in textctrl, if any
1835 SetValue( m_popupInterface
->GetStringValue() );
1837 #if USE_TRANSIENT_POPUP
1838 ((wxPopupTransientWindow
*)m_winPopup
)->Dismiss();
1846 // ----------------------------------------------------------------------------
1847 // customization methods
1848 // ----------------------------------------------------------------------------
1850 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
1851 int side
, int spacingX
)
1856 m_btnSpacingX
= spacingX
;
1861 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
1863 const wxBitmap
& bmpPressed
,
1864 const wxBitmap
& bmpHover
,
1865 const wxBitmap
& bmpDisabled
)
1867 m_bmpNormal
= bmpNormal
;
1868 m_blankButtonBg
= blankButtonBg
;
1870 if ( bmpPressed
.Ok() )
1871 m_bmpPressed
= bmpPressed
;
1873 m_bmpPressed
= bmpNormal
;
1875 if ( bmpHover
.Ok() )
1876 m_bmpHover
= bmpHover
;
1878 m_bmpHover
= bmpNormal
;
1880 if ( bmpDisabled
.Ok() )
1881 m_bmpDisabled
= bmpDisabled
;
1883 m_bmpDisabled
= bmpNormal
;
1888 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
1892 // move textctrl accordingly
1893 wxRect r
= m_text
->GetRect();
1894 int inc
= width
- m_widthCustomPaint
;
1897 m_text
->SetSize( r
);
1900 m_widthCustomPaint
= width
;
1905 void wxComboCtrlBase::SetTextIndent( int indent
)
1909 m_absIndent
= GetNativeTextIndent();
1910 m_iFlags
&= ~(wxCC_IFLAG_INDENT_SET
);
1914 m_absIndent
= indent
;
1915 m_iFlags
|= wxCC_IFLAG_INDENT_SET
;
1921 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
1923 return DEFAULT_TEXT_INDENT
;
1926 // ----------------------------------------------------------------------------
1927 // methods forwarded to wxTextCtrl
1928 // ----------------------------------------------------------------------------
1930 wxString
wxComboCtrlBase::GetValue() const
1933 return m_text
->GetValue();
1934 return m_valueString
;
1937 void wxComboCtrlBase::SetValue(const wxString
& value
)
1941 m_text
->SetValue(value
);
1942 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1943 m_text
->SelectAll();
1946 m_valueString
= value
;
1950 // Since wxComboPopup may want to paint the combo as well, we need
1951 // to set the string value here (as well as sometimes in ShowPopup).
1952 if ( m_valueString
!= value
&& m_popupInterface
)
1954 m_popupInterface
->SetStringValue(value
);
1958 // In this SetValue variant wxComboPopup::SetStringValue is not called
1959 void wxComboCtrlBase::SetText(const wxString
& value
)
1961 // Unlike in SetValue(), this must be called here or
1962 // the behaviour will no be consistent in readonlys.
1963 EnsurePopupControl();
1965 m_valueString
= value
;
1970 void wxComboCtrlBase::Copy()
1976 void wxComboCtrlBase::Cut()
1982 void wxComboCtrlBase::Paste()
1988 void wxComboCtrlBase::SetInsertionPoint(long pos
)
1991 m_text
->SetInsertionPoint(pos
);
1994 void wxComboCtrlBase::SetInsertionPointEnd()
1997 m_text
->SetInsertionPointEnd();
2000 long wxComboCtrlBase::GetInsertionPoint() const
2003 return m_text
->GetInsertionPoint();
2008 long wxComboCtrlBase::GetLastPosition() const
2011 return m_text
->GetLastPosition();
2016 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2019 m_text
->Replace(from
, to
, value
);
2022 void wxComboCtrlBase::Remove(long from
, long to
)
2025 m_text
->Remove(from
, to
);
2028 void wxComboCtrlBase::SetSelection(long from
, long to
)
2031 m_text
->SetSelection(from
, to
);
2034 void wxComboCtrlBase::Undo()
2040 #endif // wxUSE_COMBOCTRL