1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Generic wxComboControl
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
30 #include "wx/combobox.h"
31 #include "wx/dcclient.h"
32 #include "wx/settings.h"
35 #include "wx/dcbuffer.h"
40 // ----------------------------------------------------------------------------
41 // Some constant adjustments to make the generic more bearable
43 #if defined(__WXUNIVERSAL__)
45 #define TEXTCTRLXADJUST 0 // position adjustment for wxTextCtrl, with zero indent
46 #define TEXTCTRLYADJUST 0
47 #define TEXTXADJUST 0 // how much is read-only text's x adjusted
48 #define DEFAULT_DROPBUTTON_WIDTH 19
50 #elif defined(__WXMSW__)
52 #define TEXTCTRLXADJUST 2 // position adjustment for wxTextCtrl, with zero indent
53 #define TEXTCTRLYADJUST 3
54 #define TEXTXADJUST 0 // how much is read-only text's x adjusted
55 #define DEFAULT_DROPBUTTON_WIDTH 17
57 #elif defined(__WXGTK__)
59 #define TEXTCTRLXADJUST -1 // position adjustment for wxTextCtrl, with zero indent
60 #define TEXTCTRLYADJUST 0
61 #define TEXTXADJUST 1 // how much is read-only text's x adjusted
62 #define DEFAULT_DROPBUTTON_WIDTH 23
64 #elif defined(__WXMAC__)
66 #define TEXTCTRLXADJUST 0 // position adjustment for wxTextCtrl, with zero indent
67 #define TEXTCTRLYADJUST 0
68 #define TEXTXADJUST 0 // how much is read-only text's x adjusted
69 #define DEFAULT_DROPBUTTON_WIDTH 19
73 #define TEXTCTRLXADJUST 0 // position adjustment for wxTextCtrl, with zero indent
74 #define TEXTCTRLYADJUST 0
75 #define TEXTXADJUST 0 // how much is read-only text's x adjusted
76 #define DEFAULT_DROPBUTTON_WIDTH 19
81 // ============================================================================
83 // ============================================================================
85 // Only implement if no native or it wasn't fully featured
86 #ifndef wxCOMBOCONTROL_FULLY_FEATURED
89 // ----------------------------------------------------------------------------
90 // wxGenericComboControl
91 // ----------------------------------------------------------------------------
93 BEGIN_EVENT_TABLE(wxGenericComboControl
, wxComboControlBase
)
94 EVT_PAINT(wxGenericComboControl::OnPaintEvent
)
95 EVT_MOUSE_EVENTS(wxGenericComboControl::OnMouseEvent
)
99 IMPLEMENT_DYNAMIC_CLASS(wxGenericComboControl
, wxComboControlBase
)
101 void wxGenericComboControl::Init()
105 bool wxGenericComboControl::Create(wxWindow
*parent
,
107 const wxString
& value
,
111 const wxValidator
& validator
,
112 const wxString
& name
)
116 long border
= style
& wxBORDER_MASK
;
120 #if defined(__WXUNIVERSAL__)
121 border
= wxBORDER_SIMPLE
;
122 #elif defined(__WXMSW__)
123 // For XP, have 1-width custom border, for older version use sunken
124 if ( wxUxThemeEngine::GetIfActive() )
126 border
= wxBORDER_NONE
;
127 m_widthCustomBorder
= 1;
130 border
= wxBORDER_SUNKEN
;
131 #elif defined(__WXGTK__)
132 border
= wxBORDER_NONE
;
133 //m_widthCustomBorder = 2;
134 m_widthCustomBorder
= 1;
136 border
= wxBORDER_SIMPLE
;
139 style
= (style
& ~(wxBORDER_MASK
)) | border
;
142 #if defined(__WXGTK__)
143 Customize( wxCC_BUTTON_OUTSIDE_BORDER
|
144 wxCC_NO_TEXT_AUTO_SELECT
);
147 if ( style
& wxCC_STD_BUTTON
)
148 m_iFlags
|= wxCC_POPUP_ON_MOUSE_UP
;
150 // create main window
151 if ( !wxComboControlBase::Create(parent
,
156 style
| wxFULL_REPAINT_ON_RESIZE
,
161 // Create textctrl, if necessary
162 CreateTextCtrl( wxNO_BORDER
, validator
);
164 // Add keyboard input handlers for main control and textctrl
165 InstallInputHandlers( true );
168 SetBackgroundStyle( wxBG_STYLE_CUSTOM
); // for double-buffering
170 // SetSize should be called last
171 SetSize(pos
.x
,pos
.y
,size
.x
,size
.y
);
176 wxGenericComboControl::~wxGenericComboControl()
180 void wxGenericComboControl::OnResize()
183 // Recalculates button and textctrl areas
184 CalculateAreas(DEFAULT_DROPBUTTON_WIDTH
);
187 // Move separate button control, if any, to correct position
190 wxSize sz
= GetClientSize();
191 m_btn
->SetSize( m_btnArea
.x
+ m_btnSpacingX
,
192 (sz
.y
-m_btnSize
.y
)/2,
198 // Move textctrl, if any, accordingly
199 PositionTextCtrl( TEXTCTRLXADJUST
, TEXTCTRLYADJUST
);
202 void wxGenericComboControl::OnPaintEvent( wxPaintEvent
& WXUNUSED(event
) )
204 wxSize sz
= GetClientSize();
205 wxBufferedPaintDC
dc(this,GetBufferBitmap(sz
));
207 const wxRect
& rectb
= m_btnArea
;
208 wxRect rect
= m_tcArea
;
210 // artificial simple border
211 if ( m_widthCustomBorder
)
213 int customBorder
= m_widthCustomBorder
;
216 wxPen
pen1( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
),
221 // area around both controls
222 wxRect
rect2(0,0,sz
.x
,sz
.y
);
223 if ( m_iFlags
& wxCC_IFLAG_BUTTON_OUTSIDE
)
226 if ( customBorder
== 1 )
236 rect2
.x
-= customBorder
;
237 rect2
.y
-= customBorder
;
239 rect2
.width
+= 1 + customBorder
;
240 rect2
.height
+= 1 + customBorder
;
244 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
245 dc
.DrawRectangle(rect2
);
248 wxColour winCol
= GetBackgroundColour();
252 //wxLogDebug(wxT("hei: %i tcy: %i tchei: %i"),GetClientSize().y,m_tcArea.y,m_tcArea.height);
253 //wxLogDebug(wxT("btnx: %i tcx: %i tcwid: %i"),m_btnArea.x,m_tcArea.x,m_tcArea.width);
255 // clear main background
256 dc
.DrawRectangle(rect
);
259 // Standard button rendering
260 DrawButton(dc
,rectb
,true);
262 // paint required portion on the control
263 if ( (!m_text
|| m_widthCustomPaint
) )
265 wxASSERT( m_widthCustomPaint
>= 0 );
267 // this is intentionally here to allow drawed rectangle's
268 // right edge to be hidden
270 rect
.width
= m_widthCustomPaint
;
272 dc
.SetFont( GetFont() );
274 dc
.SetClippingRegion(rect
);
275 if ( m_popupInterface
)
276 m_popupInterface
->PaintComboControl(dc
,rect
);
278 wxComboPopup::DefaultPaintComboControl(this,dc
,rect
);
282 void wxGenericComboControl::OnMouseEvent( wxMouseEvent
& event
)
284 bool isOnButtonArea
= m_btnArea
.Inside(event
.m_x
,event
.m_y
);
285 int handlerFlags
= isOnButtonArea
? wxCC_MF_ON_BUTTON
: 0;
287 // Preprocessing fabricates double-clicks and prevents
288 // (it may also do other common things in future)
289 if ( PreprocessMouseEvent(event
,handlerFlags
) )
293 const bool ctrlIsButton
= true;
295 const bool ctrlIsButton
= false;
299 (m_windowStyle
& (wxCC_SPECIAL_DCLICK
|wxCB_READONLY
)) == wxCB_READONLY
)
301 // if no textctrl and no special double-click, then the entire control acts
303 handlerFlags
|= wxCC_MF_ON_BUTTON
;
304 if ( HandleButtonMouseEvent(event
,handlerFlags
) )
309 if ( isOnButtonArea
|| HasCapture() )
311 if ( HandleButtonMouseEvent(event
,handlerFlags
) )
314 else if ( m_btnState
)
316 // otherwise need to clear the hover status
318 RefreshRect(m_btnArea
);
323 // This will handle left_down and left_dclick events outside button in a Windows/GTK-like manner.
324 // See header file for further information on this method.
325 HandleNormalMouseEvent(event
);
329 #ifdef __WXUNIVERSAL__
331 bool wxGenericComboControl::PerformAction(const wxControlAction
& action
,
333 const wxString
& strArg
)
335 bool processed
= false;
336 if ( action
== wxACTION_COMBOBOX_POPUP
)
338 if ( !m_isPopupShown
)
345 else if ( action
== wxACTION_COMBOBOX_DISMISS
)
347 if ( m_isPopupShown
)
358 return wxControl::PerformAction(action
, numArg
, strArg
);
364 #endif // __WXUNIVERSAL__
366 // If native wxComboControl was not defined, then prepare a simple
367 // front-end so that wxRTTI works as expected.
368 #ifndef _WX_COMBOCONTROL_H_
369 IMPLEMENT_DYNAMIC_CLASS(wxComboControl
, wxGenericComboControl
)
372 #endif // !wxCOMBOCONTROL_FULLY_FEATURED
374 #endif // wxUSE_COMBOCONTROL