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);
1132 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1133 wcp
+= m_widthCustomPaint
;
1135 selRect
.x
+= wcp
+ focusSpacingX
;
1136 selRect
.width
-= wcp
+ (focusSpacingX
*2);
1142 // If popup is hidden and this control is focused,
1143 // then draw the focus-indicator (selbgcolor background etc.).
1146 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
) );
1147 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1151 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
1152 bgCol
= GetBackgroundColour();
1157 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
) );
1158 bgCol
= GetBackgroundColour();
1161 dc
.SetBrush( bgCol
);
1163 dc
.DrawRectangle( selRect
);
1166 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, bool paintBg
)
1168 int drawState
= m_btnState
;
1171 if ( m_isPopupShown
)
1172 drawState
|= wxCONTROL_PRESSED
;
1175 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1176 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1180 // Make sure area is not larger than the control
1181 if ( drawRect
.y
< rect
.y
)
1182 drawRect
.y
= rect
.y
;
1183 if ( drawRect
.height
> rect
.height
)
1184 drawRect
.height
= rect
.height
;
1186 bool enabled
= IsEnabled();
1189 drawState
|= wxCONTROL_DISABLED
;
1191 if ( !m_bmpNormal
.Ok() )
1193 // Need to clear button background even if m_btn is present
1198 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1199 bgCol
= GetParent()->GetBackgroundColour();
1201 bgCol
= GetBackgroundColour();
1205 dc
.DrawRectangle(rect
);
1208 // Draw standard button
1209 wxRendererNative::Get().DrawComboBoxDropButton(this,
1221 pBmp
= &m_bmpDisabled
;
1222 else if ( m_btnState
& wxCONTROL_PRESSED
)
1223 pBmp
= &m_bmpPressed
;
1224 else if ( m_btnState
& wxCONTROL_CURRENT
)
1227 pBmp
= &m_bmpNormal
;
1229 if ( m_blankButtonBg
)
1231 // If using blank button background, we need to clear its background
1232 // with button face colour instead of colour for rest of the control.
1235 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1236 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1239 dc
.DrawRectangle(rect
);
1242 wxRendererNative::Get().DrawPushButton(this,
1251 // Need to clear button background even if m_btn is present
1252 // (assume non-button background was cleared just before this call so brushes are good)
1254 dc
.DrawRectangle(rect
);
1257 // Draw bitmap centered in drawRect
1258 dc
.DrawBitmap(*pBmp
,
1259 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1260 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1265 void wxComboCtrlBase::RecalcAndRefresh()
1269 wxSizeEvent
evt(GetSize(),GetId());
1270 GetEventHandler()->ProcessEvent(evt
);
1275 wxBitmap
& wxComboCtrlBase::GetBufferBitmap( const wxSize
& sz
) const
1277 // If size is larger, recalculate double buffer bitmap
1278 if ( !gs_doubleBuffer
||
1279 sz
.x
> gs_doubleBuffer
->GetWidth() ||
1280 sz
.y
> gs_doubleBuffer
->GetHeight() )
1282 delete gs_doubleBuffer
;
1283 gs_doubleBuffer
= new wxBitmap(sz
.x
+25,sz
.y
);
1285 return *gs_doubleBuffer
;
1288 // ----------------------------------------------------------------------------
1289 // miscellaneous event handlers
1290 // ----------------------------------------------------------------------------
1292 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1294 // Change event id and relay it forward
1295 event
.SetId(GetId());
1299 // call if cursor is on button area or mouse is captured for the button
1300 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1303 int type
= event
.GetEventType();
1305 if ( type
== wxEVT_MOTION
)
1307 if ( flags
& wxCC_MF_ON_BUTTON
)
1309 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1311 // Mouse hover begins
1312 m_btnState
|= wxCONTROL_CURRENT
;
1313 if ( HasCapture() ) // Retain pressed state.
1314 m_btnState
|= wxCONTROL_PRESSED
;
1318 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1321 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1325 else if ( type
== wxEVT_LEFT_DOWN
)
1327 // Only accept event if it wasn't right after popup dismiss
1328 //if ( ::wxGetLocalTimeMillis() > m_timeCanClick )
1330 // Need to test this, because it might be outside.
1331 if ( flags
& wxCC_MF_ON_BUTTON
)
1333 m_btnState
|= wxCONTROL_PRESSED
;
1336 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1339 // If showing popup now, do not capture mouse or there will be interference
1348 else if ( type
== wxEVT_LEFT_UP
)
1351 // Only accept event if mouse was left-press was previously accepted
1355 if ( m_btnState
& wxCONTROL_PRESSED
)
1357 // If mouse was inside, fire the click event.
1358 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1360 if ( flags
& wxCC_MF_ON_BUTTON
)
1364 m_btnState
&= ~(wxCONTROL_PRESSED
);
1368 else if ( type
== wxEVT_LEAVE_WINDOW
)
1370 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1372 m_btnState
&= ~(wxCONTROL_CURRENT
);
1375 if ( !m_isPopupShown
)
1377 m_btnState
&= ~(wxCONTROL_PRESSED
);
1388 // Conversion to double-clicks and some basic filtering
1389 // returns true if event was consumed or filtered
1390 //bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent& event, bool isOnButtonArea )
1391 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1394 wxLongLong t
= ::wxGetLocalTimeMillis();
1395 int evtType
= event
.GetEventType();
1398 // Generate our own double-clicks
1399 // (to allow on-focus dc-event on double-clicks instead of triple-clicks)
1400 if ( (m_windowStyle
& wxCC_SPECIAL_DCLICK
) &&
1402 //!(handlerFlags & wxCC_MF_ON_BUTTON) )
1403 !(flags
& wxCC_MF_ON_BUTTON
) )
1405 if ( evtType
== wxEVT_LEFT_DOWN
)
1407 // Set value to avoid up-events without corresponding downs
1408 m_downReceived
= true;
1410 else if ( evtType
== wxEVT_LEFT_DCLICK
)
1412 // We'll make our own double-clicks
1414 event
.SetEventType(0);
1417 else if ( evtType
== wxEVT_LEFT_UP
)
1419 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
1421 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
1423 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
1425 //type = wxEVT_LEFT_DCLICK;
1426 event
.SetEventType(wxEVT_LEFT_DCLICK
);
1427 m_timeLastMouseUp
= 1;
1431 m_timeLastMouseUp
= t
;
1434 //m_downReceived = false;
1439 // Filter out clicks on button immediately after popup dismiss (Windows like behaviour)
1440 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1442 event
.SetEventType(0);
1449 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1451 int evtType
= event
.GetEventType();
1453 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1454 (m_windowStyle
& wxCB_READONLY
) )
1456 if ( m_isPopupShown
)
1459 // Normally do nothing - evt handler should close it for us
1460 #elif !USE_TRANSIENT_POPUP
1461 // Click here always hides the popup.
1467 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1469 // In read-only mode, clicking the text is the
1470 // same as clicking the button.
1473 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1475 //if ( m_popupInterface->CycleValue() )
1477 if ( m_popupInterface
)
1478 m_popupInterface
->OnComboDoubleClick();
1483 if ( m_isPopupShown
)
1485 // relay (some) mouse events to the popup
1486 if ( evtType
== wxEVT_MOUSEWHEEL
)
1487 m_popup
->AddPendingEvent(event
);
1493 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& )
1495 // First click is the first part of double-click
1496 // Some platforms don't generate down-less mouse up-event
1497 // (Windows does, GTK+2 doesn't), so that's why we have
1499 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
1506 // no need to check for m_widthCustomPaint - that
1507 // area never gets special handling when selected
1508 // (in writable mode, that is)
1512 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1515 // indentation may also have changed
1516 if ( !(m_iFlags
& wxCC_IFLAG_INDENT_SET
) )
1517 m_absIndent
= GetNativeTextIndent();
1521 // ----------------------------------------------------------------------------
1523 // ----------------------------------------------------------------------------
1525 // Create popup window and the child control
1526 void wxComboCtrlBase::CreatePopup()
1528 wxComboPopup
* popupInterface
= m_popupInterface
;
1532 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1534 popupInterface
->Create(m_winPopup
);
1535 m_popup
= popup
= popupInterface
->GetControl();
1537 m_popupExtraHandler
= new wxComboPopupExtraEventHandler(this);
1538 popup
->PushEventHandler( m_popupExtraHandler
);
1540 // This may be helpful on some platforms
1541 // (eg. it bypasses a wxGTK popupwindow bug where
1542 // window is not initially hidden when it should be)
1545 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
1548 // Destroy popup window and the child control
1549 void wxComboCtrlBase::DestroyPopup()
1552 m_popup
->RemoveEventHandler(m_popupExtraHandler
);
1554 delete m_popupExtraHandler
;
1558 delete m_popupInterface
;
1561 m_winPopup
->Destroy();
1563 m_popupInterface
= (wxComboPopup
*) NULL
;
1564 m_winPopup
= (wxWindow
*) NULL
;
1565 m_popup
= (wxWindow
*) NULL
;
1568 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
1570 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
1574 iface
->InitBase(this);
1577 m_popupInterface
= iface
;
1579 if ( !iface
->LazyCreate() )
1585 m_popup
= (wxWindow
*) NULL
;
1588 // This must be done after creation
1589 if ( m_valueString
.length() )
1591 iface
->SetStringValue(m_valueString
);
1596 // Ensures there is atleast the default popup
1597 void wxComboCtrlBase::EnsurePopupControl()
1599 if ( !m_popupInterface
)
1600 SetPopupControl(NULL
);
1603 void wxComboCtrlBase::OnButtonClick()
1605 // Derived classes can override this method for totally custom
1610 void wxComboCtrlBase::ShowPopup()
1612 EnsurePopupControl();
1613 wxCHECK_RET( !IsPopupShown(), wxT("popup window already shown") );
1617 // Space above and below
1623 wxSize ctrlSz
= GetSize();
1625 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
1626 scrPos
= GetParent()->ClientToScreen(GetPosition());
1628 spaceAbove
= scrPos
.y
;
1629 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
1631 maxHeightPopup
= spaceBelow
;
1632 if ( spaceAbove
> spaceBelow
)
1633 maxHeightPopup
= spaceAbove
;
1636 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
1638 if ( widthPopup
< m_widthMinPopup
)
1639 widthPopup
= m_widthMinPopup
;
1641 wxWindow
* winPopup
= m_winPopup
;
1644 // Need to disable tab traversal of parent
1646 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
1647 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
1648 // that if transient popup is open, then tab traversal is to be ignored.
1649 // However, I think this code would still be needed for cases where
1650 // transient popup doesn't work yet (wxWinCE?).
1651 wxWindow
* parent
= GetParent();
1652 int parentFlags
= parent
->GetWindowStyle();
1653 if ( parentFlags
& wxTAB_TRAVERSAL
)
1655 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
1656 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
1662 winPopup
= m_winPopup
;
1670 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
1672 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
1673 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
1676 popup
->SetSize(adjustedSize
);
1678 m_popupInterface
->OnPopup();
1681 // Reposition and resize popup window
1684 wxSize szp
= popup
->GetSize();
1687 int popupY
= scrPos
.y
+ ctrlSz
.y
;
1689 // Default anchor is wxLEFT
1690 int anchorSide
= m_anchorSide
;
1692 anchorSide
= wxLEFT
;
1694 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
1695 int leftX
= scrPos
.x
- m_extLeft
;
1696 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
1698 // If there is not enough horizontal space, anchor on the other side.
1699 // If there is no space even then, place the popup at x 0.
1700 if ( anchorSide
== wxRIGHT
)
1704 if ( (leftX
+szp
.x
) < screenWidth
)
1705 anchorSide
= wxLEFT
;
1712 if ( (leftX
+szp
.x
) >= screenWidth
)
1715 anchorSide
= wxRIGHT
;
1721 // Select x coordinate according to the anchor side
1722 if ( anchorSide
== wxRIGHT
)
1724 else if ( anchorSide
== wxLEFT
)
1729 if ( spaceBelow
< szp
.y
)
1731 popupY
= scrPos
.y
- szp
.y
;
1735 //wxLogDebug(wxT("popup scheduled position1: %i,%i"),ptp.x,ptp.y);
1736 //wxLogDebug(wxT("popup position1: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1738 // Some platforms (GTK) may need these two to be separate
1739 winPopup
->SetSize( szp
.x
, szp
.y
);
1740 winPopup
->Move( popupX
, popupY
);
1742 //wxLogDebug(wxT("popup position2: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1746 // Set string selection (must be this way instead of SetStringSelection)
1749 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1750 m_text
->SelectAll();
1752 m_popupInterface
->SetStringValue( m_text
->GetValue() );
1756 // This is neede since focus/selection indication may change when popup is shown
1760 // This must be after SetStringValue
1761 m_isPopupShown
= true;
1764 #if USE_TRANSIENT_POPUP
1765 ((wxPopupTransientWindow
*)winPopup
)->Popup(popup
);
1770 #if INSTALL_TOPLEV_HANDLER
1771 // Put top level window event handler into place
1772 if ( !m_toplevEvtHandler
)
1773 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
1775 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1777 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
1778 toplev
->PushEventHandler( m_toplevEvtHandler
);
1783 void wxComboCtrlBase::OnPopupDismiss()
1785 // Just in case, avoid double dismiss
1786 if ( !m_isPopupShown
)
1789 // *Must* set this before focus etc.
1790 m_isPopupShown
= false;
1792 // Inform popup control itself
1793 m_popupInterface
->OnDismiss();
1795 if ( m_popupExtraHandler
)
1796 ((wxComboPopupExtraEventHandler
*)m_popupExtraHandler
)->OnPopupDismiss();
1798 #if INSTALL_TOPLEV_HANDLER
1799 // Remove top level window event handler
1800 if ( m_toplevEvtHandler
)
1802 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1804 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
1808 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis() + 150;
1810 // If cursor not on dropdown button, then clear its state
1811 // (technically not required by all ports, but do it for all just in case)
1812 if ( !m_btnArea
.Inside(ScreenToClient(::wxGetMousePosition())) )
1815 // Return parent's tab traversal flag.
1816 // See ShowPopup for notes.
1817 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
1819 wxWindow
* parent
= GetParent();
1820 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
1821 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
1824 // refresh control (necessary even if m_text)
1833 void wxComboCtrlBase::HidePopup()
1835 // Should be able to call this without popup interface
1836 //wxCHECK_RET( m_popupInterface, _T("no popup interface") );
1837 if ( !m_isPopupShown
)
1840 // transfer value and show it in textctrl, if any
1841 SetValue( m_popupInterface
->GetStringValue() );
1843 #if USE_TRANSIENT_POPUP
1844 ((wxPopupTransientWindow
*)m_winPopup
)->Dismiss();
1852 // ----------------------------------------------------------------------------
1853 // customization methods
1854 // ----------------------------------------------------------------------------
1856 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
1857 int side
, int spacingX
)
1862 m_btnSpacingX
= spacingX
;
1867 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
1869 const wxBitmap
& bmpPressed
,
1870 const wxBitmap
& bmpHover
,
1871 const wxBitmap
& bmpDisabled
)
1873 m_bmpNormal
= bmpNormal
;
1874 m_blankButtonBg
= blankButtonBg
;
1876 if ( bmpPressed
.Ok() )
1877 m_bmpPressed
= bmpPressed
;
1879 m_bmpPressed
= bmpNormal
;
1881 if ( bmpHover
.Ok() )
1882 m_bmpHover
= bmpHover
;
1884 m_bmpHover
= bmpNormal
;
1886 if ( bmpDisabled
.Ok() )
1887 m_bmpDisabled
= bmpDisabled
;
1889 m_bmpDisabled
= bmpNormal
;
1894 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
1898 // move textctrl accordingly
1899 wxRect r
= m_text
->GetRect();
1900 int inc
= width
- m_widthCustomPaint
;
1903 m_text
->SetSize( r
);
1906 m_widthCustomPaint
= width
;
1911 void wxComboCtrlBase::SetTextIndent( int indent
)
1915 m_absIndent
= GetNativeTextIndent();
1916 m_iFlags
&= ~(wxCC_IFLAG_INDENT_SET
);
1920 m_absIndent
= indent
;
1921 m_iFlags
|= wxCC_IFLAG_INDENT_SET
;
1927 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
1929 return DEFAULT_TEXT_INDENT
;
1932 // ----------------------------------------------------------------------------
1933 // methods forwarded to wxTextCtrl
1934 // ----------------------------------------------------------------------------
1936 wxString
wxComboCtrlBase::GetValue() const
1939 return m_text
->GetValue();
1940 return m_valueString
;
1943 void wxComboCtrlBase::SetValue(const wxString
& value
)
1947 m_text
->SetValue(value
);
1948 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1949 m_text
->SelectAll();
1952 m_valueString
= value
;
1956 // Since wxComboPopup may want to paint the combo as well, we need
1957 // to set the string value here (as well as sometimes in ShowPopup).
1958 if ( m_valueString
!= value
&& m_popupInterface
)
1960 m_popupInterface
->SetStringValue(value
);
1964 // In this SetValue variant wxComboPopup::SetStringValue is not called
1965 void wxComboCtrlBase::SetText(const wxString
& value
)
1967 // Unlike in SetValue(), this must be called here or
1968 // the behaviour will no be consistent in readonlys.
1969 EnsurePopupControl();
1971 m_valueString
= value
;
1976 void wxComboCtrlBase::Copy()
1982 void wxComboCtrlBase::Cut()
1988 void wxComboCtrlBase::Paste()
1994 void wxComboCtrlBase::SetInsertionPoint(long pos
)
1997 m_text
->SetInsertionPoint(pos
);
2000 void wxComboCtrlBase::SetInsertionPointEnd()
2003 m_text
->SetInsertionPointEnd();
2006 long wxComboCtrlBase::GetInsertionPoint() const
2009 return m_text
->GetInsertionPoint();
2014 long wxComboCtrlBase::GetLastPosition() const
2017 return m_text
->GetLastPosition();
2022 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2025 m_text
->Replace(from
, to
, value
);
2028 void wxComboCtrlBase::Remove(long from
, long to
)
2031 m_text
->Remove(from
, to
);
2034 void wxComboCtrlBase::SetSelection(long from
, long to
)
2037 m_text
->SetSelection(from
, to
);
2040 void wxComboCtrlBase::Undo()
2046 #endif // wxUSE_COMBOCTRL