1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxComboControlBase
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"
26 #if wxUSE_COMBOCONTROL
31 #include "wx/combobox.h"
32 #include "wx/dcclient.h"
33 #include "wx/settings.h"
34 #include "wx/dialog.h"
37 #include "wx/dcbuffer.h"
38 #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( wxComboControlBase
* 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 wxComboControlBase
* 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( wxComboControlBase
* 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( wxComboControlBase
*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( wxComboControlBase
*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 wxComboControl
* combo
= (wxComboControl
*) GetParent();
332 wxASSERT( combo
->IsKindOf(CLASSINFO(wxComboControl
)) );
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 wxComboControlBase
* combo
= (wxComboControlBase
*) GetParent();
353 wxASSERT_MSG( combo
->IsKindOf(CLASSINFO(wxComboControlBase
)),
354 wxT("parent might not be wxComboControl, 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( wxComboControlBase
* 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( wxComboControlBase
* combo
)
442 ~wxComboBoxExtraInputHandler() { }
443 void OnKey(wxKeyEvent
& event
);
444 void OnFocus(wxFocusEvent
& event
);
447 wxComboControlBase
* 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( wxComboControlBase
* combo
)
554 m_beenInside
= false;
556 ~wxComboPopupExtraEventHandler() { }
558 void OnMouseEvent( wxMouseEvent
& event
);
560 // Called from wxComboControlBase::OnPopupDismiss
561 void OnPopupDismiss()
563 m_beenInside
= false;
567 wxComboControlBase
* 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 // ----------------------------------------------------------------------------
638 // wxComboControlBase
639 // ----------------------------------------------------------------------------
642 BEGIN_EVENT_TABLE(wxComboControlBase
, wxControl
)
643 EVT_TEXT(wxID_ANY
,wxComboControlBase::OnTextCtrlEvent
)
644 EVT_SIZE(wxComboControlBase::OnSizeEvent
)
645 EVT_SET_FOCUS(wxComboControlBase::OnFocusEvent
)
646 EVT_KILL_FOCUS(wxComboControlBase::OnFocusEvent
)
647 //EVT_BUTTON(wxID_ANY,wxComboControlBase::OnButtonClickEvent)
648 EVT_TEXT_ENTER(wxID_ANY
,wxComboControlBase::OnTextCtrlEvent
)
649 EVT_SYS_COLOUR_CHANGED(wxComboControlBase::OnSysColourChanged
)
653 IMPLEMENT_ABSTRACT_CLASS(wxComboControlBase
, wxControl
)
655 // Have global double buffer - should be enough for multiple combos
656 static wxBitmap
* gs_doubleBuffer
= (wxBitmap
*) NULL
;
658 void wxComboControlBase::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 wxComboControlBase::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();
723 void wxComboControlBase::InstallInputHandlers( bool alsoTextCtrl
)
725 if ( m_text
&& alsoTextCtrl
)
727 m_textEvtHandler
= new wxComboBoxExtraInputHandler(this);
728 m_text
->PushEventHandler(m_textEvtHandler
);
731 wxComboBoxExtraInputHandler
* inputHandler
= new wxComboBoxExtraInputHandler(this);
732 PushEventHandler(inputHandler
);
733 m_extraEvtHandler
= inputHandler
;
736 void wxComboControlBase::CreateTextCtrl( int extraStyle
, const wxValidator
& validator
)
738 if ( !(m_windowStyle
& wxCB_READONLY
) )
740 m_text
= new wxTextCtrl(this,
745 // wxTE_PROCESS_TAB is needed because on Windows, wxTAB_TRAVERSAL is
746 // not used by the wxPropertyGrid and therefore the tab is
747 // processed by looking at ancestors to see if they have
748 // wxTAB_TRAVERSAL. The navigation event is then sent to
754 // This is required for some platforms (GTK+ atleast)
755 m_text
->SetSizeHints(2,4);
759 void wxComboControlBase::OnThemeChange()
761 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
764 wxComboControlBase::~wxComboControlBase()
769 delete gs_doubleBuffer
;
770 gs_doubleBuffer
= (wxBitmap
*) NULL
;
772 #if INSTALL_TOPLEV_HANDLER
773 delete ((wxComboFrameEventHandler
*)m_toplevEvtHandler
);
774 m_toplevEvtHandler
= (wxEvtHandler
*) NULL
;
778 m_popup
->RemoveEventHandler(m_popupExtraHandler
);
780 delete m_popupExtraHandler
;
784 delete m_popupInterface
;
787 RemoveEventHandler(m_extraEvtHandler
);
790 m_text
->RemoveEventHandler(m_textEvtHandler
);
792 delete m_textEvtHandler
;
793 delete m_extraEvtHandler
;
797 // ----------------------------------------------------------------------------
799 // ----------------------------------------------------------------------------
801 // Recalculates button and textctrl areas
802 void wxComboControlBase::CalculateAreas( int btnWidth
)
804 wxSize sz
= GetClientSize();
805 int customBorder
= m_widthCustomBorder
;
807 int btnBorder
; // border for button only
809 if ( ( (m_iFlags
& wxCC_BUTTON_OUTSIDE_BORDER
) || m_blankButtonBg
) &&
810 m_btnSpacingX
== 0 && m_btnWid
== 0 && m_btnHei
== 0 &&
811 (!m_bmpNormal
.Ok() || m_blankButtonBg
) )
813 buttonOutside
= true;
814 m_iFlags
|= wxCC_IFLAG_BUTTON_OUTSIDE
;
819 buttonOutside
= false;
820 m_iFlags
&= ~(wxCC_IFLAG_BUTTON_OUTSIDE
);
821 btnBorder
= customBorder
;
824 // Defaul indentation
825 if ( m_absIndent
< 0 )
826 m_absIndent
= GetNativeTextIndent();
828 int butWidth
= btnWidth
;
831 butWidth
= m_btnWidDefault
;
833 m_btnWidDefault
= butWidth
;
838 // Adjust button width
840 butWidth
+= m_btnWid
;
841 else if ( m_btnWid
> 0 )
844 int butHeight
= sz
.y
;
846 butHeight
-= btnBorder
*2;
848 // Adjust button height
850 butHeight
+= m_btnHei
;
851 else if ( m_btnHei
> 0 )
852 butHeight
= m_btnHei
;
854 // Use size of normal bitmap if...
857 // button width is set to default and blank button bg is not drawn
858 if ( m_bmpNormal
.Ok() )
860 int bmpReqWidth
= m_bmpNormal
.GetWidth();
861 int bmpReqHeight
= m_bmpNormal
.GetHeight();
863 // If drawing blank button background, we need to add some margin.
864 if ( m_blankButtonBg
)
866 bmpReqWidth
+= BMP_BUTTON_MARGIN
*2;
867 bmpReqHeight
+= BMP_BUTTON_MARGIN
*2;
870 if ( butWidth
< bmpReqWidth
|| ( m_btnWid
== 0 && !m_blankButtonBg
) )
871 butWidth
= bmpReqWidth
;
872 if ( butHeight
< bmpReqHeight
|| ( m_btnHei
== 0 && !m_blankButtonBg
) )
873 butHeight
= bmpReqHeight
;
875 // Need to fix height?
876 if ( (sz
.y
-(customBorder
*2)) < butHeight
&& btnWidth
== 0 )
878 int newY
= butHeight
+(customBorder
*2);
879 SetClientSize(-1,newY
);
884 int butAreaWid
= butWidth
+ (m_btnSpacingX
*2);
886 m_btnSize
.x
= butWidth
;
887 m_btnSize
.y
= butHeight
;
889 m_btnArea
.x
= ( m_btnSide
==wxRIGHT
? sz
.x
- butAreaWid
- btnBorder
: btnBorder
);
890 m_btnArea
.y
= btnBorder
;
891 m_btnArea
.width
= butAreaWid
;
892 m_btnArea
.height
= sz
.y
- (btnBorder
*2);
894 m_tcArea
.x
= ( m_btnSide
==wxRIGHT
? 0 : butAreaWid
) + customBorder
;
895 m_tcArea
.y
= customBorder
;
896 m_tcArea
.width
= sz
.x
- butAreaWid
- (customBorder
*2);
897 m_tcArea
.height
= sz
.y
- (customBorder
*2);
902 ::wxMessageBox(wxString::Format(wxT("ButtonArea (%i,%i,%i,%i)\n"),m_btnArea.x,m_btnArea.y,m_btnArea.width,m_btnArea.height) +
903 wxString::Format(wxT("TextCtrlArea (%i,%i,%i,%i)"),m_tcArea.x,m_tcArea.y,m_tcArea.width,m_tcArea.height));
908 void wxComboControlBase::PositionTextCtrl( int textCtrlXAdjust
, int textCtrlYAdjust
)
913 wxSize sz
= GetClientSize();
914 int customBorder
= m_widthCustomBorder
;
916 if ( (m_text
->GetWindowStyleFlag() & wxBORDER_MASK
) == wxNO_BORDER
)
919 int tcSizeY
= m_text
->GetBestSize().y
;
920 int diff
= sz
.y
- tcSizeY
;
921 int y
= textCtrlYAdjust
+ (diff
/2);
923 if ( y
< customBorder
)
926 m_text
->SetSize( m_tcArea
.x
+ m_widthCustomPaint
+ m_absIndent
+ textCtrlXAdjust
,
928 m_tcArea
.width
- COMBO_MARGIN
-
929 (textCtrlXAdjust
+ m_widthCustomPaint
+ m_absIndent
),
932 // Make sure textctrl doesn't exceed the bottom custom border
933 wxSize tsz
= m_text
->GetSize();
934 diff
= (y
+ tsz
.y
) - (sz
.y
- customBorder
);
937 tsz
.y
= tsz
.y
- diff
- 1;
938 m_text
->SetSize(tsz
);
943 m_text
->SetSize( m_tcArea
.x
,
945 sz
.x
- m_btnArea
.x
- m_widthCustomPaint
- customBorder
,
950 wxSize
wxComboControlBase::DoGetBestSize() const
952 wxSize
sizeText(150,0);
955 sizeText
= m_text
->GetBestSize();
957 // TODO: Better method to calculate close-to-native control height.
961 fhei
= (m_font
.GetPointSize()*2) + 5;
962 else if ( wxNORMAL_FONT
->Ok() )
963 fhei
= (wxNORMAL_FONT
->GetPointSize()*2) + 5;
965 fhei
= sizeText
.y
+ 4;
967 // Need to force height to accomodate bitmap?
968 int btnSizeY
= m_btnSize
.y
;
969 if ( m_bmpNormal
.Ok() && fhei
< btnSizeY
)
972 // Control height doesn't depend on border
975 int border = m_windowStyle & wxBORDER_MASK;
976 if ( border == wxSIMPLE_BORDER )
978 else if ( border == wxNO_BORDER )
979 fhei += (m_widthCustomBorder*2);
990 wxSize
ret(sizeText
.x
+ COMBO_MARGIN
+ DEFAULT_DROPBUTTON_WIDTH
,
997 void wxComboControlBase::DoMoveWindow(int x
, int y
, int width
, int height
)
999 // SetSize is called last in create, so it marks the end of creation
1000 m_iFlags
|= wxCC_IFLAG_CREATED
;
1002 wxControl::DoMoveWindow(x
, y
, width
, height
);
1005 void wxComboControlBase::OnSizeEvent( wxSizeEvent
& event
)
1010 // defined by actual wxComboControls
1016 // ----------------------------------------------------------------------------
1017 // standard operations
1018 // ----------------------------------------------------------------------------
1020 bool wxComboControlBase::Enable(bool enable
)
1022 if ( !wxControl::Enable(enable
) )
1026 m_btn
->Enable(enable
);
1028 m_text
->Enable(enable
);
1033 bool wxComboControlBase::Show(bool show
)
1035 if ( !wxControl::Show(show
) )
1047 bool wxComboControlBase::SetFont ( const wxFont
& font
)
1049 if ( !wxControl::SetFont(font
) )
1053 m_text
->SetFont(font
);
1059 void wxComboControlBase::DoSetToolTip(wxToolTip
*tooltip
)
1061 wxControl::DoSetToolTip(tooltip
);
1063 // Set tool tip for button and text box
1066 const wxString
&tip
= tooltip
->GetTip();
1067 if ( m_text
) m_text
->SetToolTip(tip
);
1068 if ( m_btn
) m_btn
->SetToolTip(tip
);
1072 if ( m_text
) m_text
->SetToolTip( (wxToolTip
*) NULL
);
1073 if ( m_btn
) m_btn
->SetToolTip( (wxToolTip
*) NULL
);
1076 #endif // wxUSE_TOOLTIPS
1078 // ----------------------------------------------------------------------------
1080 // ----------------------------------------------------------------------------
1082 // draw focus background on area in a way typical on platform
1083 void wxComboControlBase::DrawFocusBackground( wxDC
& dc
, const wxRect
& rect
, int flags
)
1085 wxSize sz
= GetClientSize();
1087 bool isFocused
; // also selected
1089 // For smaller size control (and for disabled background) use less spacing
1093 if ( !(flags
& wxCONTROL_ISSUBMENU
) )
1096 isEnabled
= IsEnabled();
1097 isFocused
= ShouldDrawFocus();
1099 // Windows-style: for smaller size control (and for disabled background) use less spacing
1100 focusSpacingX
= isEnabled
? 2 : 1;
1101 focusSpacingY
= sz
.y
> (GetCharHeight()+2) && isEnabled
? 2 : 1;
1105 // Drawing a list item
1106 isEnabled
= true; // they are never disabled
1107 isFocused
= flags
& wxCONTROL_SELECTED
? true : false;
1113 // Set the background sub-rectangle for selection, disabled etc
1114 wxRect
selRect(rect
);
1115 selRect
.y
+= focusSpacingY
;
1116 selRect
.height
-= (focusSpacingY
*2);
1117 selRect
.x
+= m_widthCustomPaint
+ focusSpacingX
;
1118 selRect
.width
-= m_widthCustomPaint
+ (focusSpacingX
*2);
1124 // If popup is hidden and this control is focused,
1125 // then draw the focus-indicator (selbgcolor background etc.).
1128 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
) );
1129 bgCol
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1133 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
1134 bgCol
= GetBackgroundColour();
1139 dc
.SetTextForeground( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
) );
1140 bgCol
= GetBackgroundColour();
1143 dc
.SetBrush( bgCol
);
1145 dc
.DrawRectangle( selRect
);
1148 void wxComboControlBase::DrawButton( wxDC
& dc
, const wxRect
& rect
, bool paintBg
)
1150 int drawState
= m_btnState
;
1153 if ( m_isPopupShown
)
1154 drawState
|= wxCONTROL_PRESSED
;
1157 wxRect
drawRect(rect
.x
+m_btnSpacingX
,
1158 rect
.y
+((rect
.height
-m_btnSize
.y
)/2),
1162 // Make sure area is not larger than the control
1163 if ( drawRect
.y
< rect
.y
)
1164 drawRect
.y
= rect
.y
;
1165 if ( drawRect
.height
> rect
.height
)
1166 drawRect
.height
= rect
.height
;
1168 bool enabled
= IsEnabled();
1171 drawState
|= wxCONTROL_DISABLED
;
1173 if ( !m_bmpNormal
.Ok() )
1175 // Need to clear button background even if m_btn is present
1176 // (assume non-button background was cleared just before this call so brushes are good)
1178 dc
.DrawRectangle(rect
);
1180 // Draw standard button
1181 wxRendererNative::Get().DrawComboBoxDropButton(this,
1193 pBmp
= &m_bmpDisabled
;
1194 else if ( m_btnState
& wxCONTROL_PRESSED
)
1195 pBmp
= &m_bmpPressed
;
1196 else if ( m_btnState
& wxCONTROL_CURRENT
)
1199 pBmp
= &m_bmpNormal
;
1201 if ( m_blankButtonBg
)
1203 // If using blank button background, we need to clear its background
1204 // with button face colour instead of colour for rest of the control.
1207 wxColour bgCol
= GetParent()->GetBackgroundColour(); //wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
1208 //wxColour bgCol = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
1211 dc
.DrawRectangle(rect
);
1214 wxRendererNative::Get().DrawPushButton(this,
1223 // Need to clear button background even if m_btn is present
1224 // (assume non-button background was cleared just before this call so brushes are good)
1226 dc
.DrawRectangle(rect
);
1229 // Draw bitmap centered in drawRect
1230 dc
.DrawBitmap(*pBmp
,
1231 drawRect
.x
+ (drawRect
.width
-pBmp
->GetWidth())/2,
1232 drawRect
.y
+ (drawRect
.height
-pBmp
->GetHeight())/2,
1237 void wxComboControlBase::RecalcAndRefresh()
1241 wxSizeEvent
evt(GetSize(),GetId());
1242 GetEventHandler()->ProcessEvent(evt
);
1247 wxBitmap
& wxComboControlBase::GetBufferBitmap( const wxSize
& sz
) const
1249 // If size is larger, recalculate double buffer bitmap
1250 if ( !gs_doubleBuffer
||
1251 sz
.x
> gs_doubleBuffer
->GetWidth() ||
1252 sz
.y
> gs_doubleBuffer
->GetHeight() )
1254 delete gs_doubleBuffer
;
1255 gs_doubleBuffer
= new wxBitmap(sz
.x
+25,sz
.y
);
1257 return *gs_doubleBuffer
;
1260 // ----------------------------------------------------------------------------
1261 // miscellaneous event handlers
1262 // ----------------------------------------------------------------------------
1264 void wxComboControlBase::OnTextCtrlEvent(wxCommandEvent
& event
)
1266 // Change event id and relay it forward
1267 event
.SetId(GetId());
1271 // call if cursor is on button area or mouse is captured for the button
1272 bool wxComboControlBase::HandleButtonMouseEvent( wxMouseEvent
& event
,
1275 int type
= event
.GetEventType();
1277 if ( type
== wxEVT_MOTION
)
1279 if ( flags
& wxCC_MF_ON_BUTTON
)
1281 if ( !(m_btnState
& wxCONTROL_CURRENT
) )
1283 // Mouse hover begins
1284 m_btnState
|= wxCONTROL_CURRENT
;
1285 if ( HasCapture() ) // Retain pressed state.
1286 m_btnState
|= wxCONTROL_PRESSED
;
1290 else if ( (m_btnState
& wxCONTROL_CURRENT
) )
1293 m_btnState
&= ~(wxCONTROL_CURRENT
|wxCONTROL_PRESSED
);
1297 else if ( type
== wxEVT_LEFT_DOWN
)
1299 // Only accept event if it wasn't right after popup dismiss
1300 //if ( ::wxGetLocalTimeMillis() > m_timeCanClick )
1302 // Need to test this, because it might be outside.
1303 if ( flags
& wxCC_MF_ON_BUTTON
)
1305 m_btnState
|= wxCONTROL_PRESSED
;
1308 if ( !(m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
) )
1311 // If showing popup now, do not capture mouse or there will be interference
1320 else if ( type
== wxEVT_LEFT_UP
)
1323 // Only accept event if mouse was left-press was previously accepted
1327 if ( m_btnState
& wxCONTROL_PRESSED
)
1329 // If mouse was inside, fire the click event.
1330 if ( m_iFlags
& wxCC_POPUP_ON_MOUSE_UP
)
1332 if ( flags
& wxCC_MF_ON_BUTTON
)
1336 m_btnState
&= ~(wxCONTROL_PRESSED
);
1340 else if ( type
== wxEVT_LEAVE_WINDOW
)
1342 if ( m_btnState
& (wxCONTROL_CURRENT
|wxCONTROL_PRESSED
) )
1344 m_btnState
&= ~(wxCONTROL_CURRENT
);
1347 if ( !m_isPopupShown
)
1349 m_btnState
&= ~(wxCONTROL_PRESSED
);
1360 // Conversion to double-clicks and some basic filtering
1361 // returns true if event was consumed or filtered
1362 //bool wxComboControlBase::PreprocessMouseEvent( wxMouseEvent& event, bool isOnButtonArea )
1363 bool wxComboControlBase::PreprocessMouseEvent( wxMouseEvent
& event
,
1366 wxLongLong t
= ::wxGetLocalTimeMillis();
1367 int evtType
= event
.GetEventType();
1370 // Generate our own double-clicks
1371 // (to allow on-focus dc-event on double-clicks instead of triple-clicks)
1372 if ( (m_windowStyle
& wxCC_SPECIAL_DCLICK
) &&
1374 //!(handlerFlags & wxCC_MF_ON_BUTTON) )
1375 !(flags
& wxCC_MF_ON_BUTTON
) )
1377 if ( evtType
== wxEVT_LEFT_DOWN
)
1379 // Set value to avoid up-events without corresponding downs
1380 m_downReceived
= true;
1382 else if ( evtType
== wxEVT_LEFT_DCLICK
)
1384 // We'll make our own double-clicks
1386 event
.SetEventType(0);
1389 else if ( evtType
== wxEVT_LEFT_UP
)
1391 if ( m_downReceived
|| m_timeLastMouseUp
== 1 )
1393 wxLongLong timeFromLastUp
= (t
-m_timeLastMouseUp
);
1395 if ( timeFromLastUp
< DOUBLE_CLICK_CONVERSION_TRESHOLD
)
1397 //type = wxEVT_LEFT_DCLICK;
1398 event
.SetEventType(wxEVT_LEFT_DCLICK
);
1399 m_timeLastMouseUp
= 1;
1403 m_timeLastMouseUp
= t
;
1406 //m_downReceived = false;
1411 // Filter out clicks on button immediately after popup dismiss (Windows like behaviour)
1412 if ( evtType
== wxEVT_LEFT_DOWN
&& t
< m_timeCanAcceptClick
)
1414 event
.SetEventType(0);
1421 void wxComboControlBase::HandleNormalMouseEvent( wxMouseEvent
& event
)
1423 int evtType
= event
.GetEventType();
1425 if ( (evtType
== wxEVT_LEFT_DOWN
|| evtType
== wxEVT_LEFT_DCLICK
) &&
1426 (m_windowStyle
& wxCB_READONLY
) )
1428 if ( m_isPopupShown
)
1431 // Normally do nothing - evt handler should close it for us
1432 #elif !USE_TRANSIENT_POPUP
1433 // Click here always hides the popup.
1439 if ( !(m_windowStyle
& wxCC_SPECIAL_DCLICK
) )
1441 // In read-only mode, clicking the text is the
1442 // same as clicking the button.
1445 else if ( /*evtType == wxEVT_LEFT_UP || */evtType
== wxEVT_LEFT_DCLICK
)
1447 //if ( m_popupInterface->CycleValue() )
1449 if ( m_popupInterface
)
1450 m_popupInterface
->OnComboDoubleClick();
1455 if ( m_isPopupShown
)
1457 // relay (some) mouse events to the popup
1458 if ( evtType
== wxEVT_MOUSEWHEEL
)
1459 m_popup
->AddPendingEvent(event
);
1465 void wxComboControlBase::OnFocusEvent( wxFocusEvent
& )
1467 // First click is the first part of double-click
1468 // Some platforms don't generate down-less mouse up-event
1469 // (Windows does, GTK+2 doesn't), so that's why we have
1471 m_timeLastMouseUp
= ::wxGetLocalTimeMillis();
1478 // no need to check for m_widthCustomPaint - that
1479 // area never gets special handling when selected
1480 // (in writable mode, that is)
1484 void wxComboControlBase::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
1487 // indentation may also have changed
1488 if ( !(m_iFlags
& wxCC_IFLAG_INDENT_SET
) )
1489 m_absIndent
= GetNativeTextIndent();
1493 // ----------------------------------------------------------------------------
1495 // ----------------------------------------------------------------------------
1497 // Create popup window and the child control
1498 void wxComboControlBase::CreatePopup()
1500 wxComboPopup
* popupInterface
= m_popupInterface
;
1504 m_winPopup
= new wxComboPopupWindow( this, wxNO_BORDER
);
1506 popupInterface
->Create(m_winPopup
);
1507 m_popup
= popup
= popupInterface
->GetControl();
1509 m_popupExtraHandler
= new wxComboPopupExtraEventHandler(this);
1510 popup
->PushEventHandler( m_popupExtraHandler
);
1512 // This may be helpful on some platforms
1513 // (eg. it bypasses a wxGTK popupwindow bug where
1514 // window is not initially hidden when it should be)
1517 popupInterface
->m_iFlags
|= wxCP_IFLAG_CREATED
;
1520 void wxComboControlBase::SetPopupControl( wxComboPopup
* iface
)
1522 wxCHECK_RET( iface
, wxT("no popup interface set for wxComboControl") );
1524 delete m_popupInterface
;
1527 iface
->InitBase(this);
1530 m_popupInterface
= iface
;
1532 if ( !iface
->LazyCreate() || m_winPopup
)
1538 m_popup
= (wxWindow
*) NULL
;
1541 // This must be done after creation
1542 if ( m_valueString
.length() )
1544 iface
->SetStringValue(m_valueString
);
1549 // Ensures there is atleast the default popup
1550 void wxComboControlBase::EnsurePopupControl()
1552 if ( !m_popupInterface
)
1553 SetPopupControl(NULL
);
1556 void wxComboControlBase::OnButtonClick()
1558 // Derived classes can override this method for totally custom
1563 void wxComboControlBase::ShowPopup()
1565 EnsurePopupControl();
1566 wxCHECK_RET( !IsPopupShown(), wxT("popup window already shown") );
1570 // Space above and below
1576 wxSize ctrlSz
= GetSize();
1578 screenHeight
= wxSystemSettings::GetMetric( wxSYS_SCREEN_Y
);
1579 scrPos
= GetParent()->ClientToScreen(GetPosition());
1581 spaceAbove
= scrPos
.y
;
1582 spaceBelow
= screenHeight
- spaceAbove
- ctrlSz
.y
;
1584 maxHeightPopup
= spaceBelow
;
1585 if ( spaceAbove
> spaceBelow
)
1586 maxHeightPopup
= spaceAbove
;
1589 int widthPopup
= ctrlSz
.x
+ m_extLeft
+ m_extRight
;
1591 if ( widthPopup
< m_widthMinPopup
)
1592 widthPopup
= m_widthMinPopup
;
1594 wxWindow
* winPopup
= m_winPopup
;
1597 // Need to disable tab traversal of parent
1599 // NB: This is to fix a bug in wxMSW. In theory it could also be fixed
1600 // by, for instance, adding check to window.cpp:wxWindowMSW::MSWProcessMessage
1601 // that if transient popup is open, then tab traversal is to be ignored.
1602 // However, I think this code would still be needed for cases where
1603 // transient popup doesn't work yet (wxWinCE?).
1604 wxWindow
* parent
= GetParent();
1605 int parentFlags
= parent
->GetWindowStyle();
1606 if ( parentFlags
& wxTAB_TRAVERSAL
)
1608 parent
->SetWindowStyle( parentFlags
& ~(wxTAB_TRAVERSAL
) );
1609 m_iFlags
|= wxCC_IFLAG_PARENT_TAB_TRAVERSAL
;
1615 winPopup
= m_winPopup
;
1623 wxASSERT( !m_popup
|| m_popup
== popup
); // Consistency check.
1625 wxSize adjustedSize
= m_popupInterface
->GetAdjustedSize(widthPopup
,
1626 m_heightPopup
<=0?DEFAULT_POPUP_HEIGHT
:m_heightPopup
,
1629 popup
->SetSize(adjustedSize
);
1631 m_popupInterface
->OnPopup();
1634 // Reposition and resize popup window
1637 wxSize szp
= popup
->GetSize();
1640 int popupY
= scrPos
.y
+ ctrlSz
.y
;
1642 int anchorSide
= m_anchorSide
;
1644 anchorSide
= m_btnSide
;
1646 // Anchor popup to the side the dropbutton is on
1647 if ( anchorSide
== wxRIGHT
)
1648 popupX
= scrPos
.x
+ ctrlSz
.x
+ m_extRight
- szp
.x
;
1650 popupX
= scrPos
.x
- m_extLeft
;
1652 if ( spaceBelow
< szp
.y
)
1654 popupY
= scrPos
.y
- szp
.y
;
1658 //wxLogDebug(wxT("popup scheduled position1: %i,%i"),ptp.x,ptp.y);
1659 //wxLogDebug(wxT("popup position1: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1661 // Some platforms (GTK) may need these two to be separate
1662 winPopup
->SetSize( szp
.x
, szp
.y
);
1663 winPopup
->Move( popupX
, popupY
);
1665 //wxLogDebug(wxT("popup position2: %i,%i"),winPopup->GetPosition().x,winPopup->GetPosition().y);
1669 // Set string selection (must be this way instead of SetStringSelection)
1672 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1673 m_text
->SelectAll();
1675 m_popupInterface
->SetStringValue( m_text
->GetValue() );
1679 // This is neede since focus/selection indication may change when popup is shown
1683 // This must be after SetStringValue
1684 m_isPopupShown
= true;
1687 #if USE_TRANSIENT_POPUP
1688 ((wxPopupTransientWindow
*)winPopup
)->Popup(popup
);
1693 #if INSTALL_TOPLEV_HANDLER
1694 // Put top level window event handler into place
1695 if ( !m_toplevEvtHandler
)
1696 m_toplevEvtHandler
= new wxComboFrameEventHandler(this);
1698 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1700 ((wxComboFrameEventHandler
*)m_toplevEvtHandler
)->OnPopup();
1701 toplev
->PushEventHandler( m_toplevEvtHandler
);
1706 void wxComboControlBase::OnPopupDismiss()
1708 // Just in case, avoid double dismiss
1709 if ( !m_isPopupShown
)
1712 // *Must* set this before focus etc.
1713 m_isPopupShown
= false;
1715 // Inform popup control itself
1716 m_popupInterface
->OnDismiss();
1718 if ( m_popupExtraHandler
)
1719 ((wxComboPopupExtraEventHandler
*)m_popupExtraHandler
)->OnPopupDismiss();
1721 #if INSTALL_TOPLEV_HANDLER
1722 // Remove top level window event handler
1723 if ( m_toplevEvtHandler
)
1725 wxWindow
* toplev
= ::wxGetTopLevelParent( this );
1727 toplev
->RemoveEventHandler( m_toplevEvtHandler
);
1731 m_timeCanAcceptClick
= ::wxGetLocalTimeMillis() + 150;
1733 // If cursor not on dropdown button, then clear its state
1734 // (technically not required by all ports, but do it for all just in case)
1735 if ( !m_btnArea
.Inside(ScreenToClient(::wxGetMousePosition())) )
1738 // Return parent's tab traversal flag.
1739 // See ShowPopup for notes.
1740 if ( m_iFlags
& wxCC_IFLAG_PARENT_TAB_TRAVERSAL
)
1742 wxWindow
* parent
= GetParent();
1743 parent
->SetWindowStyle( parent
->GetWindowStyle() | wxTAB_TRAVERSAL
);
1744 m_iFlags
&= ~(wxCC_IFLAG_PARENT_TAB_TRAVERSAL
);
1747 // refresh control (necessary even if m_text)
1756 void wxComboControlBase::HidePopup()
1758 // Should be able to call this without popup interface
1759 //wxCHECK_RET( m_popupInterface, _T("no popup interface") );
1760 if ( !m_isPopupShown
)
1763 // transfer value and show it in textctrl, if any
1764 SetValue( m_popupInterface
->GetStringValue() );
1766 #if USE_TRANSIENT_POPUP
1767 ((wxPopupTransientWindow
*)m_winPopup
)->Dismiss();
1775 // ----------------------------------------------------------------------------
1776 // customization methods
1777 // ----------------------------------------------------------------------------
1779 void wxComboControlBase::SetButtonPosition( int width
, int height
,
1780 int side
, int spacingX
)
1785 m_btnSpacingX
= spacingX
;
1790 void wxComboControlBase::SetButtonBitmaps( const wxBitmap
& bmpNormal
,
1792 const wxBitmap
& bmpPressed
,
1793 const wxBitmap
& bmpHover
,
1794 const wxBitmap
& bmpDisabled
)
1796 m_bmpNormal
= bmpNormal
;
1797 m_blankButtonBg
= blankButtonBg
;
1799 if ( bmpPressed
.Ok() )
1800 m_bmpPressed
= bmpPressed
;
1802 m_bmpPressed
= bmpNormal
;
1804 if ( bmpHover
.Ok() )
1805 m_bmpHover
= bmpHover
;
1807 m_bmpHover
= bmpNormal
;
1809 if ( bmpDisabled
.Ok() )
1810 m_bmpDisabled
= bmpDisabled
;
1812 m_bmpDisabled
= bmpNormal
;
1817 void wxComboControlBase::SetCustomPaintWidth( int width
)
1821 // move textctrl accordingly
1822 wxRect r
= m_text
->GetRect();
1823 int inc
= width
- m_widthCustomPaint
;
1826 m_text
->SetSize( r
);
1829 m_widthCustomPaint
= width
;
1834 void wxComboControlBase::SetTextIndent( int indent
)
1838 m_absIndent
= GetNativeTextIndent();
1839 m_iFlags
&= ~(wxCC_IFLAG_INDENT_SET
);
1843 m_absIndent
= indent
;
1844 m_iFlags
|= wxCC_IFLAG_INDENT_SET
;
1850 wxCoord
wxComboControlBase::GetNativeTextIndent() const
1852 return DEFAULT_TEXT_INDENT
;
1855 // ----------------------------------------------------------------------------
1856 // methods forwarded to wxTextCtrl
1857 // ----------------------------------------------------------------------------
1859 wxString
wxComboControlBase::GetValue() const
1862 return m_text
->GetValue();
1863 return m_valueString
;
1866 void wxComboControlBase::SetValue(const wxString
& value
)
1870 m_text
->SetValue(value
);
1871 if ( !(m_iFlags
& wxCC_NO_TEXT_AUTO_SELECT
) )
1872 m_text
->SelectAll();
1875 m_valueString
= value
;
1879 // Since wxComboPopup may want to paint the combo as well, we need
1880 // to set the string value here (as well as sometimes in ShowPopup).
1881 if ( m_valueString
!= value
&& m_popupInterface
)
1883 m_popupInterface
->SetStringValue(value
);
1887 // In this SetValue variant wxComboPopup::SetStringValue is not called
1888 void wxComboControlBase::SetText(const wxString
& value
)
1890 // Unlike in SetValue(), this must be called here or
1891 // the behaviour will no be consistent in readonlys.
1892 EnsurePopupControl();
1894 m_valueString
= value
;
1899 void wxComboControlBase::Copy()
1905 void wxComboControlBase::Cut()
1911 void wxComboControlBase::Paste()
1917 void wxComboControlBase::SetInsertionPoint(long pos
)
1920 m_text
->SetInsertionPoint(pos
);
1923 void wxComboControlBase::SetInsertionPointEnd()
1926 m_text
->SetInsertionPointEnd();
1929 long wxComboControlBase::GetInsertionPoint() const
1932 return m_text
->GetInsertionPoint();
1937 long wxComboControlBase::GetLastPosition() const
1940 return m_text
->GetLastPosition();
1945 void wxComboControlBase::Replace(long from
, long to
, const wxString
& value
)
1948 m_text
->Replace(from
, to
, value
);
1951 void wxComboControlBase::Remove(long from
, long to
)
1954 m_text
->Remove(from
, to
);
1957 void wxComboControlBase::SetSelection(long from
, long to
)
1960 m_text
->SetSelection(from
, to
);
1963 void wxComboControlBase::Undo()
1969 #endif // wxUSE_COMBOCONTROL