1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin to derive from wxChoiceBase
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "choice.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/choice.h"
38 #include "wx/settings.h"
41 #include "wx/msw/private.h"
43 IMPLEMENT_DYNAMIC_CLASS(wxChoice
, wxControl
)
45 // ============================================================================
47 // ============================================================================
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 bool wxChoice::Create(wxWindow
*parent
,
57 int n
, const wxString choices
[],
59 const wxValidator
& validator
,
62 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
65 long msStyle
= WS_CHILD
| CBS_DROPDOWNLIST
| WS_TABSTOP
| WS_VISIBLE
| WS_HSCROLL
| WS_VSCROLL
/* | WS_CLIPSIBLINGS */;
66 if ( style
& wxCB_SORT
)
69 if ( style
& wxCLIP_SIBLINGS
)
70 msStyle
|= WS_CLIPSIBLINGS
;
73 // Experience shows that wxChoice vs. wxComboBox distinction confuses
74 // quite a few people - try to help them
75 wxASSERT_MSG( !(style
& wxCB_DROPDOWN
) &&
76 !(style
& wxCB_READONLY
) &&
77 !(style
& wxCB_SIMPLE
),
78 _T("this style flag is ignored by wxChoice, you ")
79 _T("probably want to use a wxComboBox") );
81 if ( !MSWCreateControl(wxT("COMBOBOX"), msStyle
) )
84 // A choice/combobox normally has a white background (or other, depending
85 // on global settings) rather than inheriting the parent's background colour.
86 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
88 for ( int i
= 0; i
< n
; i
++ )
93 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
103 // ----------------------------------------------------------------------------
104 // adding/deleting items to/from the list
105 // ----------------------------------------------------------------------------
107 int wxChoice::DoAppend(const wxString
& item
)
109 int n
= (int)SendMessage(GetHwnd(), CB_ADDSTRING
, 0, (LONG
)item
.c_str());
112 wxLogLastError(wxT("SendMessage(CB_ADDSTRING)"));
118 int wxChoice::DoInsert(const wxString
& item
, int pos
)
120 wxCHECK_MSG(!(GetWindowStyle() & wxCB_SORT
), -1, wxT("can't insert into sorted list"));
121 wxCHECK_MSG((pos
>=0) && (pos
<=GetCount()), -1, wxT("invalid index"));
123 int n
= (int)SendMessage(GetHwnd(), CB_INSERTSTRING
, pos
, (LONG
)item
.c_str());
126 wxLogLastError(wxT("SendMessage(CB_INSERTSTRING)"));
132 void wxChoice::Delete(int n
)
134 wxCHECK_RET( n
< GetCount(), wxT("invalid item index in wxChoice::Delete") );
136 if ( HasClientObjectData() )
138 delete GetClientObject(n
);
141 SendMessage(GetHwnd(), CB_DELETESTRING
, n
, 0);
144 void wxChoice::Clear()
148 SendMessage(GetHwnd(), CB_RESETCONTENT
, 0, 0);
151 void wxChoice::Free()
153 if ( HasClientObjectData() )
155 size_t count
= GetCount();
156 for ( size_t n
= 0; n
< count
; n
++ )
158 delete GetClientObject(n
);
163 // ----------------------------------------------------------------------------
165 // ----------------------------------------------------------------------------
167 int wxChoice::GetSelection() const
169 return (int)SendMessage(GetHwnd(), CB_GETCURSEL
, 0, 0);
172 void wxChoice::SetSelection(int n
)
174 SendMessage(GetHwnd(), CB_SETCURSEL
, n
, 0);
177 // ----------------------------------------------------------------------------
178 // string list functions
179 // ----------------------------------------------------------------------------
181 int wxChoice::GetCount() const
183 return (int)SendMessage(GetHwnd(), CB_GETCOUNT
, 0, 0);
186 int wxChoice::FindString(const wxString
& s
) const
188 #if defined(__WATCOMC__) && defined(__WIN386__)
189 // For some reason, Watcom in WIN386 mode crashes in the CB_FINDSTRINGEXACT message.
190 // wxChoice::Do it the long way instead.
191 int count
= GetCount();
192 for ( int i
= 0; i
< count
; i
++ )
194 // as CB_FINDSTRINGEXACT is case insensitive, be case insensitive too
195 if ( GetString(i
).IsSameAs(s
, FALSE
) )
201 int pos
= (int)SendMessage(GetHwnd(), CB_FINDSTRINGEXACT
,
202 (WPARAM
)-1, (LPARAM
)s
.c_str());
204 return pos
== LB_ERR
? wxNOT_FOUND
: pos
;
205 #endif // Watcom/!Watcom
208 void wxChoice::SetString(int n
, const wxString
& s
)
210 wxCHECK_RET( n
>= 0 && n
< GetCount(),
211 wxT("invalid item index in wxChoice::SetString") );
213 // we have to delete and add back the string as there is no way to change a
216 // we need to preserve the client data
218 if ( m_clientDataItemsType
!= wxClientData_None
)
220 data
= DoGetItemClientData(n
);
222 else // no client data
227 ::SendMessage(GetHwnd(), CB_DELETESTRING
, n
, 0);
228 ::SendMessage(GetHwnd(), CB_INSERTSTRING
, n
, (LPARAM
)s
.c_str() );
232 DoSetItemClientData(n
, data
);
234 //else: it's already NULL by default
237 wxString
wxChoice::GetString(int n
) const
239 int len
= (int)::SendMessage(GetHwnd(), CB_GETLBTEXTLEN
, n
, 0);
242 if ( len
!= CB_ERR
&& len
> 0 )
249 (LPARAM
)(wxChar
*)wxStringBuffer(str
, len
)
252 wxLogLastError(wxT("SendMessage(CB_GETLBTEXT)"));
259 // ----------------------------------------------------------------------------
261 // ----------------------------------------------------------------------------
263 void wxChoice::DoSetItemClientData( int n
, void* clientData
)
265 if ( ::SendMessage(GetHwnd(), CB_SETITEMDATA
,
266 n
, (LPARAM
)clientData
) == CB_ERR
)
268 wxLogLastError(wxT("CB_SETITEMDATA"));
272 void* wxChoice::DoGetItemClientData( int n
) const
274 LPARAM rc
= SendMessage(GetHwnd(), CB_GETITEMDATA
, n
, 0);
277 wxLogLastError(wxT("CB_GETITEMDATA"));
279 // unfortunately, there is no way to return an error code to the user
286 void wxChoice::DoSetItemClientObject( int n
, wxClientData
* clientData
)
288 DoSetItemClientData(n
, clientData
);
291 wxClientData
* wxChoice::DoGetItemClientObject( int n
) const
293 return (wxClientData
*)DoGetItemClientData(n
);
296 // ----------------------------------------------------------------------------
297 // wxMSW specific helpers
298 // ----------------------------------------------------------------------------
300 void wxChoice::DoMoveWindow(int x
, int y
, int width
, int height
)
302 // here is why this is necessary: if the width is negative, the combobox
303 // window proc makes the window of the size width*height instead of
304 // interpreting height in the usual manner (meaning the height of the drop
305 // down list - usually the height specified in the call to MoveWindow()
306 // will not change the height of combo box per se)
308 // this behaviour is not documented anywhere, but this is just how it is
309 // here (NT 4.4) and, anyhow, the check shouldn't hurt - however without
310 // the check, constraints/sizers using combos may break the height
311 // constraint will have not at all the same value as expected
315 wxControl::DoMoveWindow(x
, y
, width
, height
);
318 void wxChoice::DoSetSize(int x
, int y
,
319 int width
, int WXUNUSED(height
),
322 // Ignore height parameter because height doesn't mean 'initially
323 // displayed' height, it refers to the drop-down menu as well. The
324 // wxWindows interpretation is different; also, getting the size returns
325 // the _displayed_ size (NOT the drop down menu size) so
326 // setting-getting-setting size would not work.
328 wxControl::DoSetSize(x
, y
, width
, -1, sizeFlags
);
331 wxSize
wxChoice::DoGetBestSize() const
333 // find the widest string
336 int nItems
= GetCount();
337 for ( int i
= 0; i
< nItems
; i
++ )
339 wxString
str(GetString(i
));
340 GetTextExtent(str
, &wLine
, NULL
);
341 if ( wLine
> wChoice
)
345 // give it some reasonable default value if there are no strings in the
350 // the combobox should be larger than the widest string
352 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
356 // Choice drop-down list depends on number of items (limited to 10)
357 size_t nStrings
= nItems
== 0 ? 10 : wxMin(10, nItems
) + 1;
358 int hChoice
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
)*nStrings
;
360 return wxSize(wChoice
, hChoice
);
363 long wxChoice::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
365 if ( nMsg
== WM_LBUTTONUP
)
367 int x
= (int)LOWORD(lParam
);
368 int y
= (int)HIWORD(lParam
);
370 // Ok, this is truly weird, but if a panel with a wxChoice loses the
371 // focus, then you get a *fake* WM_LBUTTONUP message with x = 65535 and
372 // y = 65535. Filter out this nonsense.
374 // VZ: I'd like to know how to reproduce this please...
375 if ( x
== 65535 && y
== 65535 )
379 return wxWindow::MSWWindowProc(nMsg
, wParam
, lParam
);
382 bool wxChoice::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
384 if ( param
!= CBN_SELCHANGE
)
386 // "selection changed" is the only event we're after
390 int n
= GetSelection();
393 wxCommandEvent
event(wxEVT_COMMAND_CHOICE_SELECTED
, m_windowId
);
395 event
.SetEventObject(this);
396 event
.SetString(GetStringSelection());
397 if ( HasClientObjectData() )
398 event
.SetClientObject( GetClientObject(n
) );
399 else if ( HasClientUntypedData() )
400 event
.SetClientData( GetClientData(n
) );
401 ProcessCommand(event
);
407 WXHBRUSH
wxChoice::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
408 WXUINT
WXUNUSED(message
),
409 WXWPARAM
WXUNUSED(wParam
),
410 WXLPARAM
WXUNUSED(lParam
)
414 wxColour colBack
= GetBackgroundColour();
417 colBack
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
419 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
420 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
422 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
424 return (WXHBRUSH
)brush
->GetResourceHandle();
427 #endif // wxUSE_CHOICE