1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/combobox.cpp
3 // Purpose: wxComboBox class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "combobox.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/settings.h"
38 #include "wx/combobox.h"
40 #include "wx/clipbrd.h"
41 #include "wx/msw/private.h"
44 #if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)
47 #include "wx/tooltip.h"
48 #endif // wxUSE_TOOLTIPS
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 IMPLEMENT_DYNAMIC_CLASS(wxComboBox
, wxControl
)
56 // ----------------------------------------------------------------------------
57 // function prototypes
58 // ----------------------------------------------------------------------------
60 LRESULT APIENTRY _EXPORT
wxComboEditWndProc(HWND hWnd
,
65 // ---------------------------------------------------------------------------
67 // ---------------------------------------------------------------------------
69 // the pointer to standard radio button wnd proc
70 static WXFARPROC gs_wndprocEdit
= (WXFARPROC
)NULL
;
72 // ============================================================================
74 // ============================================================================
76 // ----------------------------------------------------------------------------
77 // wnd proc for subclassed edit control
78 // ----------------------------------------------------------------------------
80 LRESULT APIENTRY _EXPORT
wxComboEditWndProc(HWND hWnd
,
85 HWND hwndCombo
= ::GetParent(hWnd
);
86 wxWindow
*win
= wxFindWinFromHandle((WXHWND
)hwndCombo
);
90 // forward some messages to the combobox
95 wxComboBox
*combo
= wxDynamicCast(win
, wxComboBox
);
96 wxCHECK_MSG( combo
, 0, _T("should have combo as parent") );
98 if ( combo
->MSWProcessEditMsg(message
, wParam
, lParam
) )
106 wxCHECK_MSG( win
, 0, _T("should have a parent") );
108 if ( win
->GetWindowStyle() & wxPROCESS_ENTER
)
110 // need to return a custom dlg code or we'll never get it
111 return DLGC_WANTMESSAGE
;
117 // deal with tooltips here
118 #if wxUSE_TOOLTIPS && defined(TTN_NEEDTEXT)
121 wxCHECK_MSG( win
, 0, _T("should have a parent") );
123 NMHDR
* hdr
= (NMHDR
*)lParam
;
124 if ( (int)hdr
->code
== TTN_NEEDTEXT
)
126 wxToolTip
*tooltip
= win
->GetToolTip();
129 TOOLTIPTEXT
*ttt
= (TOOLTIPTEXT
*)lParam
;
130 ttt
->lpszText
= (wxChar
*)tooltip
->GetTip().c_str();
138 #endif // wxUSE_TOOLTIPS
141 return ::CallWindowProc(CASTWNDPROC gs_wndprocEdit
, hWnd
, message
, wParam
, lParam
);
144 WXHBRUSH
wxComboBox::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
150 WXUINT
WXUNUSED(message
),
151 WXWPARAM
WXUNUSED(wParam
),
152 WXLPARAM
WXUNUSED(lParam
)
159 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
160 return (WXHBRUSH
) hbrush
;
162 #endif // wxUSE_CTL3D
165 if (GetParent()->GetTransparentBackground())
166 SetBkMode(hdc
, TRANSPARENT
);
168 SetBkMode(hdc
, OPAQUE
);
170 wxColour colBack
= GetBackgroundColour();
173 colBack
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
175 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
176 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
178 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
180 return (WXHBRUSH
)brush
->GetResourceHandle();
183 // ----------------------------------------------------------------------------
185 // ----------------------------------------------------------------------------
187 bool wxComboBox::MSWProcessEditMsg(WXUINT msg
, WXWPARAM wParam
, WXLPARAM lParam
)
192 return HandleChar(wParam
, lParam
, TRUE
/* isASCII */);
195 return HandleKeyDown(wParam
, lParam
);
198 return HandleKeyUp(wParam
, lParam
);
204 bool wxComboBox::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
211 sel
= GetSelection();
214 value
= GetString(sel
);
216 wxCommandEvent
event(wxEVT_COMMAND_COMBOBOX_SELECTED
, GetId());
218 event
.SetEventObject(this);
219 event
.SetString(value
);
220 ProcessCommand(event
);
227 // fall through: for compability with wxGTK, also send the text
228 // update event when the selection changes (this also seems more
229 // logical as the text does change)
233 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
235 // if sel != -1, value was initialized above (and we can't use
236 // GetValue() here as it would return the old selection and we
242 else // we're synthesizing text updated event from sel change
244 // we need to do this because the user code expects
245 // wxComboBox::GetValue() to return the new value from
246 // "text updated" handler but it hadn't been updated yet
250 event
.SetString(value
);
251 event
.SetEventObject(this);
252 ProcessCommand(event
);
257 // there is no return value for the CBN_ notifications, so always return
258 // FALSE from here to pass the message to DefWindowProc()
262 WXHWND
wxComboBox::GetEditHWND() const
264 // this function should not be called for wxCB_READONLY controls, it is
265 // the callers responsability to check this
266 wxASSERT_MSG( !(GetWindowStyle() & wxCB_READONLY
),
267 _T("read-only combobox doesn't have any edit control") );
271 HWND hwndEdit
= ::ChildWindowFromPoint(GetHwnd(), pt
);
272 if ( !hwndEdit
|| hwndEdit
== GetHwnd() )
274 wxFAIL_MSG(_T("not read only combobox without edit control?"));
277 return (WXHWND
)hwndEdit
;
280 bool wxComboBox::Create(wxWindow
*parent
, wxWindowID id
,
281 const wxString
& value
,
284 int n
, const wxString choices
[],
286 const wxValidator
& validator
,
287 const wxString
& name
)
289 // first create wxWin object
290 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
293 // get the right style
294 long msStyle
= WS_TABSTOP
| WS_VSCROLL
| WS_HSCROLL
|
295 CBS_AUTOHSCROLL
| CBS_NOINTEGRALHEIGHT
/* | WS_CLIPSIBLINGS */;
296 if ( style
& wxCB_READONLY
)
297 msStyle
|= CBS_DROPDOWNLIST
;
298 else if ( style
& wxCB_SIMPLE
)
299 msStyle
|= CBS_SIMPLE
; // A list (shown always) and edit control
301 msStyle
|= CBS_DROPDOWN
;
303 if ( style
& wxCB_SORT
)
306 if ( style
& wxCLIP_SIBLINGS
)
307 msStyle
|= WS_CLIPSIBLINGS
;
310 // and now create the MSW control
311 if ( !MSWCreateControl(_T("COMBOBOX"), msStyle
) )
314 // A choice/combobox normally has a white background (or other, depending
315 // on global settings) rather than inheriting the parent's background colour.
316 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
318 for ( int i
= 0; i
< n
; i
++ )
323 if ( !value
.IsEmpty() )
328 // do this after appending the values to the combobox so that autosizing
330 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
332 // a (not read only) combobox is, in fact, 2 controls: the combobox itself
333 // and an edit control inside it and if we want to catch events from this
334 // edit control, we must subclass it as well
335 if ( !(style
& wxCB_READONLY
) )
337 gs_wndprocEdit
= (WXFARPROC
)::SetWindowLong
341 (LPARAM
)wxComboEditWndProc
348 // TODO: update and clear all this horrible mess (VZ)
350 void wxComboBox::SetValue(const wxString
& value
)
352 // If newlines are denoted by just 10, must stick 13 in front.
354 int len
= value
.Length();
356 for (i
= 0; i
< len
; i
++)
358 if ((i
> 0) && (value
[i
] == 10) && (value
[i
-1] != 13))
363 wxChar
*tmp
= new wxChar
[len
+ singletons
+ 1];
365 for (i
= 0; i
< len
; i
++)
367 if ((i
> 0) && (value
[i
] == 10) && (value
[i
-1] != 13))
376 SetWindowText(GetHwnd(), tmp
);
380 SetWindowText(GetHwnd(), value
);
383 // Clipboard operations
384 void wxComboBox::Copy()
386 HWND hWnd
= GetHwnd();
387 SendMessage(hWnd
, WM_COPY
, 0, 0L);
390 void wxComboBox::Cut()
392 HWND hWnd
= GetHwnd();
393 SendMessage(hWnd
, WM_CUT
, 0, 0L);
396 void wxComboBox::Paste()
398 HWND hWnd
= GetHwnd();
399 SendMessage(hWnd
, WM_PASTE
, 0, 0L);
402 void wxComboBox::SetEditable(bool WXUNUSED(editable
))
404 // Can't implement in MSW?
405 // HWND hWnd = GetHwnd();
406 // SendMessage(hWnd, EM_SETREADONLY, (WPARAM)!editable, (LPARAM)0L);
409 void wxComboBox::SetInsertionPoint(long pos
)
411 if ( GetWindowStyle() & wxCB_READONLY
)
415 HWND hWnd
= GetHwnd();
416 ::SendMessage(hWnd
, CB_SETEDITSEL
, 0, MAKELPARAM(pos
, pos
));
417 HWND hEditWnd
= (HWND
) GetEditHWND() ;
420 // Scroll insertion point into view
421 SendMessage(hEditWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
422 // Why is this necessary? (Copied from wxTextCtrl::SetInsertionPoint)
423 SendMessage(hEditWnd
, EM_REPLACESEL
, 0, (LPARAM
)_T(""));
428 void wxComboBox::SetInsertionPointEnd()
430 // setting insertion point doesn't make sense for read only comboboxes
431 if ( !(GetWindowStyle() & wxCB_READONLY
) )
433 long pos
= GetLastPosition();
434 SetInsertionPoint(pos
);
438 long wxComboBox::GetInsertionPoint() const
441 DWORD Pos
=(DWORD
)SendMessage(GetHwnd(), CB_GETEDITSEL
, 0, 0L);
448 long wxComboBox::GetLastPosition() const
450 HWND hEditWnd
= (HWND
) GetEditHWND();
452 // Get number of characters in the last (only) line. We'll add this to the character
453 // index for the last line, 1st position.
454 int lineLength
= (int)SendMessage(hEditWnd
, EM_LINELENGTH
, (WPARAM
) 0, (LPARAM
)0L);
456 return (long)(lineLength
);
459 void wxComboBox::Replace(long from
, long to
, const wxString
& value
)
464 // Now replace with 'value', by pasting.
465 wxSetClipboardData(wxDF_TEXT
, (wxObject
*)(const wxChar
*)value
, 0, 0);
467 // Paste into edit control
468 SendMessage(GetHwnd(), WM_PASTE
, (WPARAM
)0, (LPARAM
)0L);
472 void wxComboBox::Remove(long from
, long to
)
474 // Set selection and remove it
475 SetSelection(from
, to
);
476 SendMessage(GetHwnd(), WM_CUT
, (WPARAM
)0, (LPARAM
)0);
479 void wxComboBox::SetSelection(long from
, long to
)
481 HWND hWnd
= GetHwnd();
482 long fromChar
= from
;
484 // if from and to are both -1, it means
485 // (in wxWindows) that all text should be selected.
486 // This translates into Windows convention
487 if ((from
== -1) && (to
== -1))
495 SendMessage(hWnd
, CB_SETEDITSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(fromChar
, toChar
))
497 SendMessage(hWnd
, CB_SETEDITSEL
, (WPARAM
)fromChar
, (LPARAM
)toChar
)
501 wxLogDebug(_T("CB_SETEDITSEL failed"));