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
&& !m_combo
->IsPopupShown() )
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 popupInterface
->OnComboKeyEvent(event
);
502 void wxComboBoxExtraInputHandler::OnFocus(wxFocusEvent
& event
)
504 // FIXME: This code does run when control is clicked,
505 // yet on Windows it doesn't select all the text.
506 if ( !(m_combo
->GetInternalFlags() & wxCC_NO_TEXT_AUTO_SELECT
) )
508 if ( m_combo
->GetTextCtrl() )
509 m_combo
->GetTextCtrl()->SelectAll();
511 m_combo
->SetSelection(-1,-1);
514 if ( event
.GetId() != m_combo
->GetId() )
516 // Add textctrl set focus events as combo set focus events
517 // NOTE: Simply changing the event and skipping didn't seem
519 wxFocusEvent
evt2(wxEVT_SET_FOCUS
,m_combo
->GetId());
520 evt2
.SetEventObject(m_combo
);
521 m_combo
->GetEventHandler()->ProcessEvent(evt2
);
531 // This is pushed to the event handler queue of the control in popup.
534 class wxComboPopupExtraEventHandler
: public wxEvtHandler
538 wxComboPopupExtraEventHandler( wxComboCtrlBase
* combo
)
542 m_beenInside
= false;
544 ~wxComboPopupExtraEventHandler() { }
546 void OnMouseEvent( wxMouseEvent
& event
);
548 // Called from wxComboCtrlBase::OnPopupDismiss
549 void OnPopupDismiss()
551 m_beenInside
= false;
555 wxComboCtrlBase
* m_combo
;
560 DECLARE_EVENT_TABLE()
564 BEGIN_EVENT_TABLE(wxComboPopupExtraEventHandler
, wxEvtHandler
)
565 EVT_MOUSE_EVENTS(wxComboPopupExtraEventHandler::OnMouseEvent
)
569 void wxComboPopupExtraEventHandler::OnMouseEvent( wxMouseEvent
& event
)
571 wxPoint pt
= event
.GetPosition();
572 wxSize sz
= m_combo
->GetPopupControl()->GetControl()->GetClientSize();
573 int evtType
= event
.GetEventType();
574 bool isInside
= pt
.x
>= 0 && pt
.y
>= 0 && pt
.x
< sz
.x
&& pt
.y
< sz
.y
;
576 if ( evtType
== wxEVT_MOTION
||
577 evtType
== wxEVT_LEFT_DOWN
||
578 evtType
== wxEVT_RIGHT_DOWN
)
580 // Block motion and click events outside the popup
587 else if ( evtType
== wxEVT_LEFT_UP
)
589 // Don't let left-down events in if outside
590 if ( evtType
== wxEVT_LEFT_DOWN
)
605 // Some mouse events to popup that happen outside it, before cursor
606 // has been inside the popu, need to be ignored by it but relayed to
609 wxWindow
* btn
= m_combo
->GetButton();
611 btn
->GetEventHandler()->AddPendingEvent(event
);
613 m_combo
->GetEventHandler()->AddPendingEvent(event
);
625 // ----------------------------------------------------------------------------
627 // ----------------------------------------------------------------------------
630 BEGIN_EVENT_TABLE(wxComboCtrlBase
, wxControl
)
631 EVT_TEXT(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
632 EVT_SIZE(wxComboCtrlBase::OnSizeEvent
)
633 EVT_SET_FOCUS(wxComboCtrlBase::OnFocusEvent
)
634 EVT_KILL_FOCUS(wxComboCtrlBase::OnFocusEvent
)
635 //EVT_BUTTON(wxID_ANY,wxComboCtrlBase::OnButtonClickEvent)
636 EVT_TEXT_ENTER(wxID_ANY
,wxComboCtrlBase::OnTextCtrlEvent
)
637 EVT_SYS_COLOUR_CHANGED(wxComboCtrlBase::OnSysColourChanged
)
641 IMPLEMENT_ABSTRACT_CLASS(wxComboCtrlBase
, wxControl
)
643 // Have global double buffer - should be enough for multiple combos
644 static wxBitmap
* gs_doubleBuffer
= (wxBitmap
*) NULL
;
646 void wxComboCtrlBase::Init()
648 m_winPopup
= (wxWindow
*)NULL
;
649 m_popup
= (wxWindow
*)NULL
;
650 m_isPopupShown
= false;
651 m_btn
= (wxWindow
*) NULL
;
652 m_text
= (wxTextCtrl
*) NULL
;
653 m_popupInterface
= (wxComboPopup
*) NULL
;
655 m_extraEvtHandler
= (wxEvtHandler
*) NULL
;
656 m_popupExtraHandler
= (wxEvtHandler
*) NULL
;
657 m_textEvtHandler
= (wxEvtHandler
*) NULL
;
659 #if INSTALL_TOPLEV_HANDLER
660 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
664 m_widthMinPopup
= -1;
666 m_widthCustomPaint
= 0;
667 m_widthCustomBorder
= 0;
671 m_blankButtonBg
= false;
672 m_btnWid
= m_btnHei
= -1;
680 m_downReceived
= false;
681 m_timeCanAcceptClick
= 0;
684 bool wxComboCtrlBase::Create(wxWindow
*parent
,
686 const wxString
& value
,
690 const wxValidator
& validator
,
691 const wxString
& name
)
693 if ( !wxControl::Create(parent
,
697 style
| wxWANTS_CHARS
,
702 m_valueString
= value
;
706 m_absIndent
= GetNativeTextIndent();
708 m_iFlags
|= wxCC_IFLAG_CREATED
;
710 // If x and y indicate valid size, wxSizeEvent won't be
711 // emitted automatically, so we need to add artifical one.
712 if ( size
.x
> 0 && size
.y
> 0 )
714 wxSizeEvent
evt(size
,GetId());
715 GetEventHandler()->AddPendingEvent(evt
);
721 void wxComboCtrlBase::InstallInputHandlers( bool alsoTextCtrl
)
723 if ( m_text
&& alsoTextCtrl
)
725 m_textEvtHandler
= new wxComboBoxExtraInputHandler(this);
726 m_text
->PushEventHandler(m_textEvtHandler
);
729 wxComboBoxExtraInputHandler
* inputHandler
= new wxComboBoxExtraInputHandler(this);
730 PushEventHandler(inputHandler
);
731 m_extraEvtHandler
= inputHandler
;
735 wxComboCtrlBase::CreateTextCtrl(int style
, const wxValidator
& validator
)
737 if ( !(m_windowStyle
& wxCB_READONLY
) )
739 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
740 // not used by the wxPropertyGrid and therefore the tab is processed by
741 // looking at ancestors to see if they have wxTAB_TRAVERSAL. The
742 // navigation event is then sent to the wrong window.
743 style
|= wxTE_PROCESS_TAB
;
745 if ( HasFlag(wxTE_PROCESS_ENTER
) )
746 style
|= wxTE_PROCESS_ENTER
;
748 m_text
= new wxTextCtrl(this, wxID_ANY
, m_valueString
,
749 wxDefaultPosition
, wxDefaultSize
,
752 // This is required for some platforms (GTK+ atleast)
753 m_text
->SetSizeHints(2,4);
757 void wxComboCtrlBase::OnThemeChange()
759 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
762 wxComboCtrlBase::~wxComboCtrlBase()
767 delete gs_doubleBuffer
;
768 gs_doubleBuffer
= (wxBitmap
*) NULL
;
770 #if INSTALL_TOPLEV_HANDLER
771 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
772 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
777 RemoveEventHandler(m_extraEvtHandler
);
780 m_text
->RemoveEventHandler(m_textEvtHandler
);
782 delete m_textEvtHandler
;
783 delete m_extraEvtHandler
;
787 // ----------------------------------------------------------------------------
789 // ----------------------------------------------------------------------------
791 // Recalculates button and textctrl areas
792 void wxComboCtrlBase::CalculateAreas( int btnWidth
)
794 wxSize sz
= GetClientSize();
795 int customBorder
= m_widthCustomBorder
;
796 int btnBorder
; // border for button only
798 // check if button should really be outside the border: we'll do it it if
799 // its platform default or bitmap+pushbutton background is used, but not if
800 // there is vertical size adjustment or horizontal spacing.
801 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) ||
802 (m_bmpNormal
.Ok() && m_blankButtonBg
) ) &&
803 m_btnSpacingX
== 0 &&
806 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
811 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
812 btnBorder
= customBorder
;
815 // Defaul indentation
816 if ( m_absIndent
< 0 )
817 m_absIndent
= GetNativeTextIndent();
819 int butWidth
= btnWidth
;
822 butWidth
= m_btnWidDefault
;
824 m_btnWidDefault
= butWidth
;
829 int butHeight
= sz
.y
- btnBorder
*2;
831 // Adjust button width
836 // Adjust button width to match aspect ratio
837 // (but only if control is smaller than best size).
838 int bestHeight
= GetBestSize().y
;
839 int height
= GetSize().y
;
841 if ( height
< bestHeight
)
843 // Make very small buttons square, as it makes
844 // them accommodate arrow image better and still
847 butWidth
= (height
*butWidth
)/bestHeight
;
849 butWidth
= butHeight
;
853 // Adjust button height
855 butHeight
= m_btnHei
;
857 // Use size of normal bitmap if...
860 // button width is set to default and blank button bg is not drawn
861 if ( m_bmpNormal
.Ok() )
863 int bmpReqWidth
= m_bmpNormal
.GetWidth();
864 int bmpReqHeight
= m_bmpNormal
.GetHeight();
866 // If drawing blank button background, we need to add some margin.
867 if ( m_blankButtonBg
)
869 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
870 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
873 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
874 butWidth
= bmpReqWidth
;
875 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
876 butHeight
= bmpReqHeight
;
878 // Need to fix height?
879 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
881 int newY
= butHeight
+(customBorder
*2);
882 SetClientSize(wxDefaultCoord
,newY
);
887 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
889 m_btnSize
.x
= butWidth
;
890 m_btnSize
.y
= butHeight
;
892 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
893 m_btnArea
.y
= btnBorder
;
894 m_btnArea
.width
= butAreaWid
;
895 m_btnArea
.height
= sz
.y
- (btnBorder
*2);
897 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
;
898 m_tcArea
.y
= customBorder
;
899 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2);
900 m_tcArea
.height
= sz
.y
- (customBorder
*2);
905 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
906 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
911 void wxComboCtrlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
916 wxSize sz
= GetClientSize();
917 int customBorder
= m_widthCustomBorder
;
919 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
922 int tcSizeY
= m_text
->GetBestSize().y
;
923 int diff
= sz
.y
- tcSizeY
;
924 int y
= textCtrlYAdjust
+ (diff
/2);
926 if ( y
< customBorder
)
929 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
+ m_absIndent
+ textCtrlXAdjust
,
931 m_tcArea
.width
- COMBO_MARGIN
-
932 (textCtrlXAdjust
+ m_widthCustomPaint
+ m_absIndent
),
935 // Make sure textctrl doesn't exceed the bottom custom border
936 wxSize tsz
= m_text
->GetSize();
937 diff
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
940 tsz
.y
= tsz
.y
- diff
- 1;
941 m_text
->SetSize(tsz
);
946 m_text
->SetSize( m_tcArea
.x
,
948 sz
.x
- m_btnArea
.x
- m_widthCustomPaint
- customBorder
,
953 wxSize
wxComboCtrlBase::DoGetBestSize() const
955 wxSize
sizeText(150,0);
958 sizeText
= m_text
->GetBestSize();
960 // TODO: Better method to calculate close-to-native control height.
964 fhei
= (m_font
.GetPointSize()*2) + 5;
965 else if ( wxNORMAL_FONT
->Ok() )
966 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
968 fhei
= sizeText
.y
+ 4;
970 // Need to force height to accomodate bitmap?
971 int btnSizeY
= m_btnSize
.y
;
972 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
975 // Control height doesn't depend on border
978 int border = m_windowStyle & wxBORDER_MASK;
979 if ( border == wxSIMPLE_BORDER )
981 else if ( border == wxNO_BORDER )
982 fhei += (m_widthCustomBorder*2);
993 wxSize
ret(sizeText
.x
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
,
1000 void wxComboCtrlBase::OnSizeEvent( wxSizeEvent
& event
)
1005 // defined by actual wxComboCtrls
1011 // ----------------------------------------------------------------------------
1012 // standard operations
1013 // ----------------------------------------------------------------------------
1015 bool wxComboCtrlBase::Enable(bool enable
)
1017 if ( !wxControl::Enable(enable
) )
1021 m_btn
->Enable(enable
);
1023 m_text
->Enable(enable
);
1028 bool wxComboCtrlBase::Show(bool show
)
1030 if ( !wxControl::Show(show
) )
1042 bool wxComboCtrlBase::SetFont ( const wxFont
& font
)
1044 if ( !wxControl::SetFont(font
) )
1048 m_text
->SetFont(font
);
1054 void wxComboCtrlBase::DoSetToolTip(wxToolTip
*tooltip
)
1056 wxControl::DoSetToolTip(tooltip
);
1058 // Set tool tip for button and text box
1061 const wxString
&tip
= tooltip
->GetTip();
1062 if ( m_text
) m_text
->SetToolTip(tip
);
1063 if ( m_btn
) m_btn
->SetToolTip(tip
);
1067 if ( m_text
) m_text
->SetToolTip( (wxToolTip
*) NULL
);
1068 if ( m_btn
) m_btn
->SetToolTip( (wxToolTip
*) NULL
);
1071 #endif // wxUSE_TOOLTIPS
1073 // ----------------------------------------------------------------------------
1075 // ----------------------------------------------------------------------------
1077 // draw focus background on area in a way typical on platform
1078 void wxComboCtrlBase::DrawFocusBackground( wxDC
& dc
, const wxRect
& rect
, int flags
) const
1080 wxSize sz
= GetClientSize();
1082 bool isFocused
; // also selected
1084 // For smaller size control (and for disabled background) use less spacing
1088 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1091 isEnabled
= IsEnabled();
1092 isFocused
= ShouldDrawFocus();
1094 // Windows-style: for smaller size control (and for disabled background) use less spacing
1095 focusSpacingX
= isEnabled
? 2 : 1;
1096 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1100 // Drawing a list item
1101 isEnabled
= true; // they are never disabled
1102 isFocused
= flags
& wxCONTROL_SELECTED
? true : false;
1108 // Set the background sub-rectangle for selection, disabled etc
1109 wxRect
selRect(rect
);
1110 selRect
.y
+= focusSpacingY
;
1111 selRect
.height
-= (focusSpacingY
*2);
1115 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1116 wcp
+= m_widthCustomPaint
;
1118 selRect
.x
+= wcp
+ focusSpacingX
;
1119 selRect
.width
-= wcp
+ (focusSpacingX
*2);
1125 // If popup is hidden and this control is focused,
1126 // then draw the focus-indicator (selbgcolor background etc.).
1129 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
) );
1130 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1134 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
1135 bgCol
= GetBackgroundColour();
1140 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
) );
1141 bgCol
= GetBackgroundColour();
1144 dc
.SetBrush( bgCol
);
1146 dc
.DrawRectangle( selRect
);
1149 void wxComboCtrlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, bool paintBg
)
1151 int drawState
= m_btnState
;
1154 if ( m_isPopupShown
)
1155 drawState
|= wxCONTROL_PRESSED
;
1158 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1159 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1163 // Make sure area is not larger than the control
1164 if ( drawRect
.y
< rect
.y
)
1165 drawRect
.y
= rect
.y
;
1166 if ( drawRect
.height
> rect
.height
)
1167 drawRect
.height
= rect
.height
;
1169 bool enabled
= IsEnabled();
1172 drawState
|= wxCONTROL_DISABLED
;
1174 if ( !m_bmpNormal
.Ok() )
1176 // Need to clear button background even if m_btn is present
1181 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
1182 bgCol
= GetParent()->GetBackgroundColour();
1184 bgCol
= GetBackgroundColour();
1188 dc
.DrawRectangle(rect
);
1191 // Draw standard button
1192 wxRendererNative::Get().DrawComboBoxDropButton(this,
1204 pBmp
= &m_bmpDisabled
;
1205 else if ( m_btnState
& wxCONTROL_PRESSED
)
1206 pBmp
= &m_bmpPressed
;
1207 else if ( m_btnState
& wxCONTROL_CURRENT
)
1210 pBmp
= &m_bmpNormal
;
1212 if ( m_blankButtonBg
)
1214 // If using blank button background, we need to clear its background
1215 // with button face colour instead of colour for rest of the control.
1218 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1219 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1222 dc
.DrawRectangle(rect
);
1225 wxRendererNative::Get().DrawPushButton(this,
1234 // Need to clear button background even if m_btn is present
1235 // (assume non-button background was cleared just before this call so brushes are good)
1237 dc
.DrawRectangle(rect
);
1240 // Draw bitmap centered in drawRect
1241 dc
.DrawBitmap(*pBmp
,
1242 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1243 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1248 void wxComboCtrlBase::RecalcAndRefresh()
1252 wxSizeEvent
evt(GetSize(),GetId());
1253 GetEventHandler()->ProcessEvent(evt
);
1258 wxBitmap
& wxComboCtrlBase::GetBufferBitmap( const wxSize
& sz
) const
1260 // If size is larger, recalculate double buffer bitmap
1261 if ( !gs_doubleBuffer
||
1262 sz
.x
> gs_doubleBuffer
->GetWidth() ||
1263 sz
.y
> gs_doubleBuffer
->GetHeight() )
1265 delete gs_doubleBuffer
;
1266 gs_doubleBuffer
= new wxBitmap(sz
.x
+25,sz
.y
);
1268 return *gs_doubleBuffer
;
1271 // ----------------------------------------------------------------------------
1272 // miscellaneous event handlers
1273 // ----------------------------------------------------------------------------
1275 void wxComboCtrlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1277 // Change event id, object and string before relaying it forward
1278 event
.SetId(GetId());
1279 wxString s
= event
.GetString();
1280 event
.SetEventObject(this);
1285 // call if cursor is on button area or mouse is captured for the button
1286 bool wxComboCtrlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1289 int type
= event
.GetEventType();
1291 if ( type
== wxEVT_MOTION
)
1293 if ( flags
& wxCC_MF_ON_BUTTON
)
1295 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1297 // Mouse hover begins
1298 m_btnState
|= wxCONTROL_CURRENT
;
1299 if ( HasCapture() ) // Retain pressed state.
1300 m_btnState
|= wxCONTROL_PRESSED
;
1304 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1307 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1311 else if ( type
== wxEVT_LEFT_DOWN
)
1313 // Only accept event if it wasn't right after popup dismiss
1314 //if ( ::wxGetLocalTimeMillis() > m_timeCanClick )
1316 // Need to test this, because it might be outside.
1317 if ( flags
& wxCC_MF_ON_BUTTON
)
1319 m_btnState
|= wxCONTROL_PRESSED
;
1322 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1325 // If showing popup now, do not capture mouse or there will be interference
1334 else if ( type
== wxEVT_LEFT_UP
)
1337 // Only accept event if mouse was left-press was previously accepted
1341 if ( m_btnState
& wxCONTROL_PRESSED
)
1343 // If mouse was inside, fire the click event.
1344 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1346 if ( flags
& wxCC_MF_ON_BUTTON
)
1350 m_btnState
&= ~(wxCONTROL_PRESSED
);
1354 else if ( type
== wxEVT_LEAVE_WINDOW
)
1356 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1358 m_btnState
&= ~(wxCONTROL_CURRENT
);
1361 if ( !m_isPopupShown
)
1363 m_btnState
&= ~(wxCONTROL_PRESSED
);
1374 // Conversion to double-clicks and some basic filtering
1375 // returns true if event was consumed or filtered
1376 //bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent& event, bool isOnButtonArea )
1377 bool wxComboCtrlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1380 wxLongLong t
= ::wxGetLocalTimeMillis();
1381 int evtType
= event
.GetEventType();
1384 // Generate our own double-clicks
1385 // (to allow on-focus dc-event on double-clicks instead of triple-clicks)
1386 if ( (m_windowStyle
& wxCC_SPECIAL_DCLICK
) &&
1388 //!(handlerFlags & wxCC_MF_ON_BUTTON) )
1389 !(flags
& wxCC_MF_ON_BUTTON
) )
1391 if ( evtType
== wxEVT_LEFT_DOWN
)
1393 // Set value to avoid up-events without corresponding downs
1394 m_downReceived
= true;
1396 else if ( evtType
== wxEVT_LEFT_DCLICK
)
1398 // We'll make our own double-clicks
1400 event
.SetEventType(0);
1403 else if ( evtType
== wxEVT_LEFT_UP
)
1405 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
1407 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
1409 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
1411 //type = wxEVT_LEFT_DCLICK;
1412 event
.SetEventType(wxEVT_LEFT_DCLICK
);
1413 m_timeLastMouseUp
= 1;
1417 m_timeLastMouseUp
= t
;
1420 //m_downReceived = false;
1425 // Filter out clicks on button immediately after popup dismiss (Windows like behaviour)
1426 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1428 event
.SetEventType(0);
1435 void wxComboCtrlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1437 int evtType
= event
.GetEventType();
1439 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1440 (m_windowStyle
& wxCB_READONLY
) )
1442 if ( m_isPopupShown
)
1445 // Normally do nothing - evt handler should close it for us
1446 #elif !USE_TRANSIENT_POPUP
1447 // Click here always hides the popup.
1453 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1455 // In read-only mode, clicking the text is the
1456 // same as clicking the button.
1459 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1461 //if ( m_popupInterface->CycleValue() )
1463 if ( m_popupInterface
)
1464 m_popupInterface
->OnComboDoubleClick();
1469 if ( m_isPopupShown
)
1471 // relay (some) mouse events to the popup
1472 if ( evtType
== wxEVT_MOUSEWHEEL
)
1473 m_popup
->AddPendingEvent(event
);
1479 void wxComboCtrlBase::OnFocusEvent( wxFocusEvent
& )
1481 // First click is the first part of double-click
1482 // Some platforms don't generate down-less mouse up-event
1483 // (Windows does, GTK+2 doesn't), so that's why we have
1485 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
1492 // no need to check for m_widthCustomPaint - that
1493 // area never gets special handling when selected
1494 // (in writable mode, that is)
1498 void wxComboCtrlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1501 // indentation may also have changed
1502 if ( !(m_iFlags
& wxCC_IFLAG_INDENT_SET
) )
1503 m_absIndent
= GetNativeTextIndent();
1507 // ----------------------------------------------------------------------------
1509 // ----------------------------------------------------------------------------
1511 // Create popup window and the child control
1512 void wxComboCtrlBase::CreatePopup()
1514 wxComboPopup
* popupInterface
= m_popupInterface
;
1518 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1520 popupInterface
->Create(m_winPopup
);
1521 m_popup
= popup
= popupInterface
->GetControl();
1523 m_popupExtraHandler
= new wxComboPopupExtraEventHandler(this);
1524 popup
->PushEventHandler( m_popupExtraHandler
);
1526 // This may be helpful on some platforms
1527 // (eg. it bypasses a wxGTK popupwindow bug where
1528 // window is not initially hidden when it should be)
1531 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
1534 // Destroy popup window and the child control
1535 void wxComboCtrlBase::DestroyPopup()
1538 m_popup
->RemoveEventHandler(m_popupExtraHandler
);
1540 delete m_popupExtraHandler
;
1544 delete m_popupInterface
;
1547 m_winPopup
->Destroy();
1549 m_popupExtraHandler
= (wxEvtHandler
*) NULL
;
1550 m_popupInterface
= (wxComboPopup
*) NULL
;
1551 m_winPopup
= (wxWindow
*) NULL
;
1552 m_popup
= (wxWindow
*) NULL
;
1555 void wxComboCtrlBase::DoSetPopupControl(wxComboPopup
* iface
)
1557 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboCtrl") );
1561 iface
->InitBase(this);
1564 m_popupInterface
= iface
;
1566 if ( !iface
->LazyCreate() )
1572 m_popup
= (wxWindow
*) NULL
;
1575 // This must be done after creation
1576 if ( m_valueString
.length() )
1578 iface
->SetStringValue(m_valueString
);
1583 // Ensures there is atleast the default popup
1584 void wxComboCtrlBase::EnsurePopupControl()
1586 if ( !m_popupInterface
)
1587 SetPopupControl(NULL
);
1590 void wxComboCtrlBase::OnButtonClick()
1592 // Derived classes can override this method for totally custom
1597 void wxComboCtrlBase::ShowPopup()
1599 EnsurePopupControl();
1600 wxCHECK_RET( !IsPopupShown(), wxT("popup window already shown") );
1604 // Space above and below
1610 wxSize ctrlSz
= GetSize();
1612 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
1613 scrPos
= GetParent()->ClientToScreen(GetPosition());
1615 spaceAbove
= scrPos
.y
;
1616 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
1618 maxHeightPopup
= spaceBelow
;
1619 if ( spaceAbove
> spaceBelow
)
1620 maxHeightPopup
= spaceAbove
;
1623 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
1625 if ( widthPopup
< m_widthMinPopup
)
1626 widthPopup
= m_widthMinPopup
;
1628 wxWindow
* winPopup
= m_winPopup
;
1631 // Need to disable tab traversal of parent
1633 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
1634 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
1635 // that if transient popup is open, then tab traversal is to be ignored.
1636 // However, I think this code would still be needed for cases where
1637 // transient popup doesn't work yet (wxWinCE?).
1638 wxWindow
* parent
= GetParent();
1639 int parentFlags
= parent
->GetWindowStyle();
1640 if ( parentFlags
& wxTAB_TRAVERSAL
)
1642 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
1643 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
1649 winPopup
= m_winPopup
;
1657 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
1659 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
1660 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
1663 popup
->SetSize(adjustedSize
);
1665 m_popupInterface
->OnPopup();
1668 // Reposition and resize popup window
1671 wxSize szp
= popup
->GetSize();
1674 int popupY
= scrPos
.y
+ ctrlSz
.y
;
1676 // Default anchor is wxLEFT
1677 int anchorSide
= m_anchorSide
;
1679 anchorSide
= wxLEFT
;
1681 int rightX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
1682 int leftX
= scrPos
.x
- m_extLeft
;
1683 int screenWidth
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
);
1685 // If there is not enough horizontal space, anchor on the other side.
1686 // If there is no space even then, place the popup at x 0.
1687 if ( anchorSide
== wxRIGHT
)
1691 if ( (leftX
+szp
.x
) < screenWidth
)
1692 anchorSide
= wxLEFT
;
1699 if ( (leftX
+szp
.x
) >= screenWidth
)
1702 anchorSide
= wxRIGHT
;
1708 // Select x coordinate according to the anchor side
1709 if ( anchorSide
== wxRIGHT
)
1711 else if ( anchorSide
== wxLEFT
)
1716 if ( spaceBelow
< szp
.y
)
1718 popupY
= scrPos
.y
- szp
.y
;
1722 //wxLogDebug(wxT("popup scheduled position1: %i,%i"),ptp.x,ptp.y);
1723 //wxLogDebug(wxT("popup position1: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1725 // Some platforms (GTK) may need these two to be separate
1726 winPopup
->SetSize( szp
.x
, szp
.y
);
1727 winPopup
->Move( popupX
, popupY
);
1729 //wxLogDebug(wxT("popup position2: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1733 // Set string selection (must be this way instead of SetStringSelection)
1736 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1737 m_text
->SelectAll();
1739 m_popupInterface
->SetStringValue( m_text
->GetValue() );
1743 // This is neede since focus/selection indication may change when popup is shown
1747 // This must be after SetStringValue
1748 m_isPopupShown
= true;
1751 #if USE_TRANSIENT_POPUP
1752 ((wxPopupTransientWindow
*)winPopup
)->Popup(popup
);
1757 #if INSTALL_TOPLEV_HANDLER
1758 // Put top level window event handler into place
1759 if ( !m_toplevEvtHandler
)
1760 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
1762 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1764 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
1765 toplev
->PushEventHandler( m_toplevEvtHandler
);
1770 void wxComboCtrlBase::OnPopupDismiss()
1772 // Just in case, avoid double dismiss
1773 if ( !m_isPopupShown
)
1776 // *Must* set this before focus etc.
1777 m_isPopupShown
= false;
1779 // Inform popup control itself
1780 m_popupInterface
->OnDismiss();
1782 if ( m_popupExtraHandler
)
1783 ((wxComboPopupExtraEventHandler
*)m_popupExtraHandler
)->OnPopupDismiss();
1785 #if INSTALL_TOPLEV_HANDLER
1786 // Remove top level window event handler
1787 if ( m_toplevEvtHandler
)
1789 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1791 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
1795 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis() + 150;
1797 // If cursor not on dropdown button, then clear its state
1798 // (technically not required by all ports, but do it for all just in case)
1799 if ( !m_btnArea
.Inside(ScreenToClient(::wxGetMousePosition())) )
1802 // Return parent's tab traversal flag.
1803 // See ShowPopup for notes.
1804 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
1806 wxWindow
* parent
= GetParent();
1807 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
1808 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
1811 // refresh control (necessary even if m_text)
1820 void wxComboCtrlBase::HidePopup()
1822 // Should be able to call this without popup interface
1823 //wxCHECK_RET( m_popupInterface, _T("no popup interface") );
1824 if ( !m_isPopupShown
)
1827 // transfer value and show it in textctrl, if any
1828 SetValue( m_popupInterface
->GetStringValue() );
1830 #if USE_TRANSIENT_POPUP
1831 ((wxPopupTransientWindow
*)m_winPopup
)->Dismiss();
1839 // ----------------------------------------------------------------------------
1840 // customization methods
1841 // ----------------------------------------------------------------------------
1843 void wxComboCtrlBase::SetButtonPosition( int width
, int height
,
1844 int side
, int spacingX
)
1849 m_btnSpacingX
= spacingX
;
1854 wxSize
wxComboCtrlBase::GetButtonSize()
1856 if ( m_btnSize
.x
> 0 )
1859 wxSize
retSize(m_btnWid
,m_btnHei
);
1861 // Need to call CalculateAreas now if button size is
1862 // is not explicitly specified.
1863 if ( retSize
.x
<= 0 || retSize
.y
<= 0)
1867 retSize
= m_btnSize
;
1873 void wxComboCtrlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
1875 const wxBitmap
& bmpPressed
,
1876 const wxBitmap
& bmpHover
,
1877 const wxBitmap
& bmpDisabled
)
1879 m_bmpNormal
= bmpNormal
;
1880 m_blankButtonBg
= blankButtonBg
;
1882 if ( bmpPressed
.Ok() )
1883 m_bmpPressed
= bmpPressed
;
1885 m_bmpPressed
= bmpNormal
;
1887 if ( bmpHover
.Ok() )
1888 m_bmpHover
= bmpHover
;
1890 m_bmpHover
= bmpNormal
;
1892 if ( bmpDisabled
.Ok() )
1893 m_bmpDisabled
= bmpDisabled
;
1895 m_bmpDisabled
= bmpNormal
;
1900 void wxComboCtrlBase::SetCustomPaintWidth( int width
)
1904 // move textctrl accordingly
1905 wxRect r
= m_text
->GetRect();
1906 int inc
= width
- m_widthCustomPaint
;
1909 m_text
->SetSize( r
);
1912 m_widthCustomPaint
= width
;
1917 void wxComboCtrlBase::SetTextIndent( int indent
)
1921 m_absIndent
= GetNativeTextIndent();
1922 m_iFlags
&= ~(wxCC_IFLAG_INDENT_SET
);
1926 m_absIndent
= indent
;
1927 m_iFlags
|= wxCC_IFLAG_INDENT_SET
;
1933 wxCoord
wxComboCtrlBase::GetNativeTextIndent() const
1935 return DEFAULT_TEXT_INDENT
;
1938 // ----------------------------------------------------------------------------
1939 // methods forwarded to wxTextCtrl
1940 // ----------------------------------------------------------------------------
1942 wxString
wxComboCtrlBase::GetValue() const
1945 return m_text
->GetValue();
1946 return m_valueString
;
1949 void wxComboCtrlBase::SetValue(const wxString
& value
)
1953 m_text
->SetValue(value
);
1954 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1955 m_text
->SelectAll();
1958 m_valueString
= value
;
1962 // Since wxComboPopup may want to paint the combo as well, we need
1963 // to set the string value here (as well as sometimes in ShowPopup).
1964 if ( m_valueString
!= value
&& m_popupInterface
)
1966 m_popupInterface
->SetStringValue(value
);
1970 // In this SetValue variant wxComboPopup::SetStringValue is not called
1971 void wxComboCtrlBase::SetText(const wxString
& value
)
1973 // Unlike in SetValue(), this must be called here or
1974 // the behaviour will no be consistent in readonlys.
1975 EnsurePopupControl();
1977 m_valueString
= value
;
1982 void wxComboCtrlBase::Copy()
1988 void wxComboCtrlBase::Cut()
1994 void wxComboCtrlBase::Paste()
2000 void wxComboCtrlBase::SetInsertionPoint(long pos
)
2003 m_text
->SetInsertionPoint(pos
);
2006 void wxComboCtrlBase::SetInsertionPointEnd()
2009 m_text
->SetInsertionPointEnd();
2012 long wxComboCtrlBase::GetInsertionPoint() const
2015 return m_text
->GetInsertionPoint();
2020 long wxComboCtrlBase::GetLastPosition() const
2023 return m_text
->GetLastPosition();
2028 void wxComboCtrlBase::Replace(long from
, long to
, const wxString
& value
)
2031 m_text
->Replace(from
, to
, value
);
2034 void wxComboCtrlBase::Remove(long from
, long to
)
2037 m_text
->Remove(from
, to
);
2040 void wxComboCtrlBase::SetSelection(long from
, long to
)
2043 m_text
->SetSelection(from
, to
);
2046 void wxComboCtrlBase::Undo()
2052 #endif // wxUSE_COMBOCTRL