]>
Commit | Line | Data |
---|---|---|
a340b80d | 1 | ///////////////////////////////////////////////////////////////////////////// |
85fed18c | 2 | // Name: src/generic/combog.cpp |
a57d600f | 3 | // Purpose: Generic wxComboCtrl |
a340b80d VZ |
4 | // Author: Jaakko Salli |
5 | // Modified by: | |
6 | // Created: Apr-30-2006 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2005 Jaakko Salli | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
a57d600f | 26 | #if wxUSE_COMBOCTRL |
a340b80d | 27 | |
85fed18c WS |
28 | #include "wx/combo.h" |
29 | ||
a340b80d VZ |
30 | #ifndef WX_PRECOMP |
31 | #include "wx/log.h" | |
32 | #include "wx/combobox.h" | |
33 | #include "wx/dcclient.h" | |
34 | #include "wx/settings.h" | |
35 | #endif | |
36 | ||
37 | #include "wx/dcbuffer.h" | |
38 | ||
a340b80d VZ |
39 | // ---------------------------------------------------------------------------- |
40 | // Some constant adjustments to make the generic more bearable | |
41 | ||
42 | #if defined(__WXUNIVERSAL__) | |
43 | ||
44 | #define TEXTCTRLXADJUST 0 // position adjustment for wxTextCtrl, with zero indent | |
45 | #define TEXTCTRLYADJUST 0 | |
46 | #define TEXTXADJUST 0 // how much is read-only text's x adjusted | |
47 | #define DEFAULT_DROPBUTTON_WIDTH 19 | |
48 | ||
49 | #elif defined(__WXMSW__) | |
50 | ||
51 | #define TEXTCTRLXADJUST 2 // position adjustment for wxTextCtrl, with zero indent | |
52 | #define TEXTCTRLYADJUST 3 | |
53 | #define TEXTXADJUST 0 // how much is read-only text's x adjusted | |
54 | #define DEFAULT_DROPBUTTON_WIDTH 17 | |
55 | ||
56 | #elif defined(__WXGTK__) | |
57 | ||
58 | #define TEXTCTRLXADJUST -1 // position adjustment for wxTextCtrl, with zero indent | |
59 | #define TEXTCTRLYADJUST 0 | |
60 | #define TEXTXADJUST 1 // how much is read-only text's x adjusted | |
61 | #define DEFAULT_DROPBUTTON_WIDTH 23 | |
62 | ||
63 | #elif defined(__WXMAC__) | |
64 | ||
65 | #define TEXTCTRLXADJUST 0 // position adjustment for wxTextCtrl, with zero indent | |
66 | #define TEXTCTRLYADJUST 0 | |
67 | #define TEXTXADJUST 0 // how much is read-only text's x adjusted | |
68 | #define DEFAULT_DROPBUTTON_WIDTH 19 | |
69 | ||
70 | #else | |
71 | ||
72 | #define TEXTCTRLXADJUST 0 // position adjustment for wxTextCtrl, with zero indent | |
73 | #define TEXTCTRLYADJUST 0 | |
74 | #define TEXTXADJUST 0 // how much is read-only text's x adjusted | |
75 | #define DEFAULT_DROPBUTTON_WIDTH 19 | |
76 | ||
77 | #endif | |
78 | ||
79 | ||
80 | // ============================================================================ | |
81 | // implementation | |
82 | // ============================================================================ | |
83 | ||
84 | // Only implement if no native or it wasn't fully featured | |
85 | #ifndef wxCOMBOCONTROL_FULLY_FEATURED | |
86 | ||
87 | ||
88 | // ---------------------------------------------------------------------------- | |
129c8cf3 | 89 | // wxGenericComboCtrl |
a340b80d VZ |
90 | // ---------------------------------------------------------------------------- |
91 | ||
129c8cf3 RR |
92 | BEGIN_EVENT_TABLE(wxGenericComboCtrl, wxComboCtrlBase) |
93 | EVT_PAINT(wxGenericComboCtrl::OnPaintEvent) | |
94 | EVT_MOUSE_EVENTS(wxGenericComboCtrl::OnMouseEvent) | |
a340b80d VZ |
95 | END_EVENT_TABLE() |
96 | ||
97 | ||
129c8cf3 | 98 | IMPLEMENT_DYNAMIC_CLASS(wxGenericComboCtrl, wxComboCtrlBase) |
a340b80d | 99 | |
129c8cf3 | 100 | void wxGenericComboCtrl::Init() |
a340b80d VZ |
101 | { |
102 | } | |
103 | ||
129c8cf3 RR |
104 | bool wxGenericComboCtrl::Create(wxWindow *parent, |
105 | wxWindowID id, | |
106 | const wxString& value, | |
107 | const wxPoint& pos, | |
108 | const wxSize& size, | |
109 | long style, | |
110 | const wxValidator& validator, | |
111 | const wxString& name) | |
a340b80d | 112 | { |
8e9ec723 RR |
113 | // |
114 | // Note that technically we only support 'default' border and wxNO_BORDER. | |
a340b80d | 115 | long border = style & wxBORDER_MASK; |
8e9ec723 | 116 | int tcBorder = wxNO_BORDER; |
a340b80d | 117 | |
a340b80d | 118 | #if defined(__WXUNIVERSAL__) |
8e9ec723 | 119 | if ( !border ) |
a340b80d VZ |
120 | border = wxBORDER_SIMPLE; |
121 | #elif defined(__WXMSW__) | |
8e9ec723 | 122 | if ( !border ) |
a340b80d | 123 | // For XP, have 1-width custom border, for older version use sunken |
129c8cf3 | 124 | /*if ( wxUxThemeEngine::GetIfActive() ) |
a340b80d VZ |
125 | { |
126 | border = wxBORDER_NONE; | |
127 | m_widthCustomBorder = 1; | |
128 | } | |
129c8cf3 | 129 | else*/ |
a340b80d | 130 | border = wxBORDER_SUNKEN; |
a340b80d | 131 | #else |
a340b80d | 132 | |
8e9ec723 RR |
133 | // |
134 | // Generic version is optimized for wxGTK | |
135 | // | |
136 | ||
137 | #define UNRELIABLE_TEXTCTRL_BORDER | |
138 | ||
139 | if ( !border ) | |
140 | { | |
141 | if ( style & wxCB_READONLY ) | |
142 | { | |
143 | m_widthCustomBorder = 1; | |
144 | } | |
145 | else | |
146 | { | |
147 | m_widthCustomBorder = 0; | |
148 | tcBorder = 0; | |
149 | } | |
150 | } | |
151 | else | |
152 | { | |
153 | // Have textctrl instead use the border given. | |
154 | tcBorder = border; | |
a340b80d VZ |
155 | } |
156 | ||
8e9ec723 RR |
157 | // Because we are going to have button outside the border, |
158 | // let's use wxBORDER_NONE for the whole control. | |
159 | border = wxBORDER_NONE; | |
160 | ||
a340b80d VZ |
161 | Customize( wxCC_BUTTON_OUTSIDE_BORDER | |
162 | wxCC_NO_TEXT_AUTO_SELECT ); | |
8e9ec723 | 163 | |
a340b80d VZ |
164 | #endif |
165 | ||
8e9ec723 | 166 | style = (style & ~(wxBORDER_MASK)) | border; |
a340b80d VZ |
167 | if ( style & wxCC_STD_BUTTON ) |
168 | m_iFlags |= wxCC_POPUP_ON_MOUSE_UP; | |
169 | ||
170 | // create main window | |
a57d600f | 171 | if ( !wxComboCtrlBase::Create(parent, |
93f7f8be WS |
172 | id, |
173 | value, | |
174 | pos, | |
175 | size, | |
176 | style | wxFULL_REPAINT_ON_RESIZE, | |
177 | wxDefaultValidator, | |
178 | name) ) | |
a340b80d VZ |
179 | return false; |
180 | ||
181 | // Create textctrl, if necessary | |
8e9ec723 | 182 | CreateTextCtrl( tcBorder, validator ); |
a340b80d VZ |
183 | |
184 | // Add keyboard input handlers for main control and textctrl | |
b445b6a7 | 185 | InstallInputHandlers(); |
a340b80d VZ |
186 | |
187 | // Set background | |
188 | SetBackgroundStyle( wxBG_STYLE_CUSTOM ); // for double-buffering | |
189 | ||
170acdc9 RD |
190 | // SetInitialSize should be called last |
191 | SetInitialSize(size); | |
a340b80d VZ |
192 | |
193 | return true; | |
194 | } | |
195 | ||
129c8cf3 | 196 | wxGenericComboCtrl::~wxGenericComboCtrl() |
a340b80d VZ |
197 | { |
198 | } | |
199 | ||
129c8cf3 | 200 | void wxGenericComboCtrl::OnResize() |
a340b80d VZ |
201 | { |
202 | ||
203 | // Recalculates button and textctrl areas | |
204 | CalculateAreas(DEFAULT_DROPBUTTON_WIDTH); | |
205 | ||
206 | #if 0 | |
207 | // Move separate button control, if any, to correct position | |
208 | if ( m_btn ) | |
209 | { | |
210 | wxSize sz = GetClientSize(); | |
211 | m_btn->SetSize( m_btnArea.x + m_btnSpacingX, | |
212 | (sz.y-m_btnSize.y)/2, | |
213 | m_btnSize.x, | |
214 | m_btnSize.y ); | |
215 | } | |
216 | #endif | |
217 | ||
218 | // Move textctrl, if any, accordingly | |
219 | PositionTextCtrl( TEXTCTRLXADJUST, TEXTCTRLYADJUST ); | |
220 | } | |
221 | ||
129c8cf3 | 222 | void wxGenericComboCtrl::OnPaintEvent( wxPaintEvent& WXUNUSED(event) ) |
a340b80d VZ |
223 | { |
224 | wxSize sz = GetClientSize(); | |
2e992e06 | 225 | wxAutoBufferedPaintDC dc(this); |
a340b80d VZ |
226 | |
227 | const wxRect& rectb = m_btnArea; | |
228 | wxRect rect = m_tcArea; | |
229 | ||
230 | // artificial simple border | |
231 | if ( m_widthCustomBorder ) | |
232 | { | |
233 | int customBorder = m_widthCustomBorder; | |
234 | ||
235 | // Set border colour | |
236 | wxPen pen1( wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT), | |
237 | customBorder, | |
238 | wxSOLID ); | |
239 | dc.SetPen( pen1 ); | |
240 | ||
241 | // area around both controls | |
242 | wxRect rect2(0,0,sz.x,sz.y); | |
243 | if ( m_iFlags & wxCC_IFLAG_BUTTON_OUTSIDE ) | |
244 | { | |
245 | rect2 = m_tcArea; | |
246 | if ( customBorder == 1 ) | |
247 | { | |
248 | rect2.Inflate(1); | |
249 | } | |
250 | else | |
251 | { | |
252 | #ifdef __WXGTK__ | |
253 | rect2.x -= 1; | |
254 | rect2.y -= 1; | |
255 | #else | |
256 | rect2.x -= customBorder; | |
257 | rect2.y -= customBorder; | |
258 | #endif | |
259 | rect2.width += 1 + customBorder; | |
260 | rect2.height += 1 + customBorder; | |
261 | } | |
262 | } | |
263 | ||
264 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
265 | dc.DrawRectangle(rect2); | |
266 | } | |
267 | ||
268 | wxColour winCol = GetBackgroundColour(); | |
269 | dc.SetBrush(winCol); | |
270 | dc.SetPen(winCol); | |
271 | ||
272 | //wxLogDebug(wxT("hei: %i tcy: %i tchei: %i"),GetClientSize().y,m_tcArea.y,m_tcArea.height); | |
273 | //wxLogDebug(wxT("btnx: %i tcx: %i tcwid: %i"),m_btnArea.x,m_tcArea.x,m_tcArea.width); | |
274 | ||
275 | // clear main background | |
276 | dc.DrawRectangle(rect); | |
277 | ||
278 | if ( !m_btn ) | |
279 | // Standard button rendering | |
280 | DrawButton(dc,rectb,true); | |
281 | ||
282 | // paint required portion on the control | |
6d0ce565 | 283 | if ( (!m_text || m_widthCustomPaint) ) |
a340b80d VZ |
284 | { |
285 | wxASSERT( m_widthCustomPaint >= 0 ); | |
286 | ||
287 | // this is intentionally here to allow drawed rectangle's | |
288 | // right edge to be hidden | |
289 | if ( m_text ) | |
290 | rect.width = m_widthCustomPaint; | |
291 | ||
292 | dc.SetFont( GetFont() ); | |
293 | ||
294 | dc.SetClippingRegion(rect); | |
6d0ce565 VZ |
295 | if ( m_popupInterface ) |
296 | m_popupInterface->PaintComboControl(dc,rect); | |
297 | else | |
298 | wxComboPopup::DefaultPaintComboControl(this,dc,rect); | |
a340b80d VZ |
299 | } |
300 | } | |
301 | ||
129c8cf3 | 302 | void wxGenericComboCtrl::OnMouseEvent( wxMouseEvent& event ) |
a340b80d | 303 | { |
1efad474 RR |
304 | int mx = event.m_x; |
305 | bool isOnButtonArea = m_btnArea.Contains(mx,event.m_y); | |
a340b80d VZ |
306 | int handlerFlags = isOnButtonArea ? wxCC_MF_ON_BUTTON : 0; |
307 | ||
a340b80d VZ |
308 | if ( PreprocessMouseEvent(event,handlerFlags) ) |
309 | return; | |
310 | ||
406d283a | 311 | const bool ctrlIsButton = wxPlatformIs(wxOS_WINDOWS); |
6d0ce565 VZ |
312 | |
313 | if ( ctrlIsButton && | |
314 | (m_windowStyle & (wxCC_SPECIAL_DCLICK|wxCB_READONLY)) == wxCB_READONLY ) | |
a340b80d VZ |
315 | { |
316 | // if no textctrl and no special double-click, then the entire control acts | |
317 | // as a button | |
318 | handlerFlags |= wxCC_MF_ON_BUTTON; | |
319 | if ( HandleButtonMouseEvent(event,handlerFlags) ) | |
320 | return; | |
321 | } | |
322 | else | |
323 | { | |
1efad474 RR |
324 | if ( isOnButtonArea || HasCapture() || |
325 | (m_widthCustomPaint && mx < (m_tcArea.x+m_widthCustomPaint)) ) | |
a340b80d | 326 | { |
1efad474 RR |
327 | handlerFlags |= wxCC_MF_ON_CLICK_AREA; |
328 | ||
a340b80d VZ |
329 | if ( HandleButtonMouseEvent(event,handlerFlags) ) |
330 | return; | |
331 | } | |
332 | else if ( m_btnState ) | |
333 | { | |
334 | // otherwise need to clear the hover status | |
335 | m_btnState = 0; | |
336 | RefreshRect(m_btnArea); | |
337 | } | |
338 | } | |
339 | ||
340 | // | |
341 | // This will handle left_down and left_dclick events outside button in a Windows/GTK-like manner. | |
342 | // See header file for further information on this method. | |
343 | HandleNormalMouseEvent(event); | |
344 | ||
345 | } | |
346 | ||
8e9ec723 RR |
347 | void wxGenericComboCtrl::SetCustomPaintWidth( int width ) |
348 | { | |
349 | #ifdef UNRELIABLE_TEXTCTRL_BORDER | |
350 | // | |
351 | // If starting/stopping to show an image in front | |
352 | // of a writable text-field, then re-create textctrl | |
353 | // with different kind of border (because we can't | |
354 | // assume that textctrl fully supports wxNO_BORDER). | |
355 | // | |
356 | wxTextCtrl* tc = GetTextCtrl(); | |
357 | ||
358 | if ( tc && (m_iFlags & wxCC_BUTTON_OUTSIDE_BORDER) ) | |
359 | { | |
360 | int borderType = tc->GetWindowStyle() & wxBORDER_MASK; | |
361 | int tcCreateStyle = -1; | |
362 | ||
363 | if ( width > 0 ) | |
364 | { | |
365 | // Re-create textctrl with no border | |
366 | if ( borderType != wxNO_BORDER ) | |
367 | { | |
368 | m_widthCustomBorder = 1; | |
369 | tcCreateStyle = wxNO_BORDER; | |
370 | } | |
371 | } | |
372 | else if ( width == 0 ) | |
373 | { | |
374 | // Re-create textctrl with normal border | |
375 | if ( borderType == wxNO_BORDER ) | |
376 | { | |
377 | m_widthCustomBorder = 0; | |
378 | tcCreateStyle = 0; | |
379 | } | |
380 | } | |
381 | ||
382 | // Common textctrl re-creation code | |
383 | if ( tcCreateStyle != -1 ) | |
384 | { | |
385 | tc->RemoveEventHandler(m_textEvtHandler); | |
386 | delete m_textEvtHandler; | |
387 | ||
388 | wxValidator* pValidator = tc->GetValidator(); | |
389 | if ( pValidator ) | |
390 | { | |
391 | pValidator = (wxValidator*) pValidator->Clone(); | |
392 | CreateTextCtrl( tcCreateStyle, *pValidator ); | |
393 | delete pValidator; | |
394 | } | |
395 | else | |
396 | { | |
397 | CreateTextCtrl( tcCreateStyle, wxDefaultValidator ); | |
398 | } | |
399 | ||
400 | InstallInputHandlers(); | |
401 | } | |
402 | } | |
403 | #endif // UNRELIABLE_TEXTCTRL_BORDER | |
404 | ||
405 | wxComboCtrlBase::SetCustomPaintWidth( width ); | |
406 | } | |
407 | ||
129c8cf3 | 408 | bool wxGenericComboCtrl::IsKeyPopupToggle(const wxKeyEvent& event) const |
b445b6a7 VZ |
409 | { |
410 | int keycode = event.GetKeyCode(); | |
411 | bool isPopupShown = IsPopupShown(); | |
412 | ||
413 | // This code is AFAIK appropriate for wxGTK. | |
414 | ||
415 | if ( isPopupShown ) | |
416 | { | |
417 | if ( keycode == WXK_ESCAPE || | |
418 | ( keycode == WXK_UP && event.AltDown() ) ) | |
419 | return true; | |
420 | } | |
421 | else | |
422 | { | |
423 | if ( keycode == WXK_DOWN && event.AltDown() ) | |
424 | return true; | |
425 | } | |
426 | ||
427 | return false; | |
428 | } | |
429 | ||
a340b80d VZ |
430 | #ifdef __WXUNIVERSAL__ |
431 | ||
129c8cf3 RR |
432 | bool wxGenericComboCtrl::PerformAction(const wxControlAction& action, |
433 | long numArg, | |
434 | const wxString& strArg) | |
a340b80d VZ |
435 | { |
436 | bool processed = false; | |
437 | if ( action == wxACTION_COMBOBOX_POPUP ) | |
438 | { | |
a305d600 | 439 | if ( !IsPopupShown() ) |
a340b80d VZ |
440 | { |
441 | ShowPopup(); | |
442 | ||
443 | processed = true; | |
444 | } | |
445 | } | |
446 | else if ( action == wxACTION_COMBOBOX_DISMISS ) | |
447 | { | |
a305d600 | 448 | if ( IsPopupShown() ) |
a340b80d VZ |
449 | { |
450 | HidePopup(); | |
451 | ||
452 | processed = true; | |
453 | } | |
454 | } | |
455 | ||
456 | if ( !processed ) | |
457 | { | |
458 | // pass along | |
459 | return wxControl::PerformAction(action, numArg, strArg); | |
460 | } | |
461 | ||
462 | return true; | |
463 | } | |
464 | ||
465 | #endif // __WXUNIVERSAL__ | |
466 | ||
a57d600f | 467 | // If native wxComboCtrl was not defined, then prepare a simple |
a340b80d VZ |
468 | // front-end so that wxRTTI works as expected. |
469 | #ifndef _WX_COMBOCONTROL_H_ | |
129c8cf3 | 470 | IMPLEMENT_DYNAMIC_CLASS(wxComboCtrl, wxGenericComboCtrl) |
a340b80d VZ |
471 | #endif |
472 | ||
473 | #endif // !wxCOMBOCONTROL_FULLY_FEATURED | |
474 | ||
a57d600f | 475 | #endif // wxUSE_COMBOCTRL |