1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/os2/choice.cpp
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
18 #include "wx/choice.h"
21 #include "wx/settings.h"
24 #include "wx/os2/private.h"
26 IMPLEMENT_DYNAMIC_CLASS(wxChoice
, wxControl
)
28 bool wxChoice::Create(
33 , const wxArrayString
& asChoices
35 , const wxValidator
& rValidator
36 , const wxString
& rsName
39 wxCArrayString
chs(asChoices
);
41 return Create(pParent
, vId
, rPos
, rSize
, chs
.GetCount(), chs
.GetStrings(),
42 lStyle
, rValidator
, rsName
);
45 bool wxChoice::Create(
51 , const wxString asChoices
[]
53 , const wxValidator
& rValidator
54 , const wxString
& rsName
59 if (!CreateControl( pParent
68 lSstyle
= CBS_DROPDOWNLIST
|
72 if (lStyle
& wxCLIP_SIBLINGS
)
73 lSstyle
|= WS_CLIPSIBLINGS
;
75 wxASSERT_MSG( !(lStyle
& wxCB_DROPDOWN
) &&
76 !(lStyle
& wxCB_READONLY
) &&
77 !(lStyle
& wxCB_SIMPLE
),
78 wxT("this style flag is ignored by wxChoice, you "
79 "probably want to use a wxComboBox") );
81 if (!OS2CreateControl( wxT("COMBOBOX")
87 // A choice/combobox normally has a white background (or other, depending
88 // on global settings) rather than inheriting the parent's background colour.
90 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
91 for (int i
= 0; i
< n
; i
++)
101 } // end of wxChoice::Create
103 // ----------------------------------------------------------------------------
104 // adding/deleting items to/from the list
105 // ----------------------------------------------------------------------------
107 int wxChoice::DoAppend(
108 const wxString
& rsItem
114 if (m_windowStyle
& wxLB_SORT
)
115 nIndexType
= LIT_SORTASCENDING
;
117 nIndexType
= LIT_END
;
118 nIndex
= (int)::WinSendMsg( GetHwnd()
121 ,(MPARAM
)rsItem
.c_str()
124 } // end of wxChoice::DoAppend
126 int wxChoice::DoInsert( const wxString
& rsItem
, unsigned int pos
)
128 wxCHECK_MSG(!(GetWindowStyle() & wxCB_SORT
), -1, wxT("can't insert into sorted list"));
129 wxCHECK_MSG(IsValidInsert(pos
), -1, wxT("invalid index"));
131 if (pos
== GetCount())
132 return DoAppend(rsItem
);
137 if (m_windowStyle
& wxLB_SORT
)
138 nIndexType
= LIT_SORTASCENDING
;
141 nIndex
= (int)::WinSendMsg( GetHwnd()
144 ,(MPARAM
)rsItem
.c_str()
147 } // end of wxChoice::DoInsert
149 void wxChoice::Delete(unsigned int n
)
151 wxCHECK_RET( IsValid(n
), wxT("invalid item index in wxChoice::Delete") );
152 ::WinSendMsg(GetHwnd(), LM_DELETEITEM
, (MPARAM
)n
, (MPARAM
)0);
153 } // end of wxChoice::Delete
155 void wxChoice::Clear()
158 ::WinSendMsg(GetHwnd(), LM_DELETEALL
, (MPARAM
)0, (MPARAM
)0);
159 } // end of wxChoice::Clear
161 // ----------------------------------------------------------------------------
163 // ----------------------------------------------------------------------------
165 int wxChoice::GetSelection() const
167 return((int)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYSELECTION
, (MPARAM
)LIT_FIRST
, (MPARAM
)0)));
168 } // end of wxChoice::GetSelection
170 void wxChoice::SetSelection(
174 ::WinSendMsg( GetHwnd()
179 } // end of wxChoice::SetSelection
181 // ----------------------------------------------------------------------------
182 // string list functions
183 // ----------------------------------------------------------------------------
185 unsigned int wxChoice::GetCount() const
187 return((unsigned int)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMCOUNT
, (MPARAM
)0, (MPARAM
)0)));
188 } // end of wxChoice::GetCount
190 void wxChoice::SetString(unsigned int n
, const wxString
& rsStr
)
195 if ( m_clientDataItemsType
!= wxClientData_None
)
197 pData
= DoGetItemClientData(n
);
199 else // no client data
204 ::WinSendMsg(GetHwnd(), LM_DELETEITEM
, (MPARAM
)n
, 0);
206 if (m_windowStyle
& wxLB_SORT
)
207 nIndexType
= LIT_SORTASCENDING
;
209 nIndexType
= LIT_END
;
210 ::WinSendMsg( GetHwnd()
213 ,(MPARAM
)rsStr
.c_str()
218 DoSetItemClientData(n
, pData
);
220 } // end of wxChoice::SetString
222 wxString
wxChoice::GetString(unsigned int n
) const
225 wxString sStr
= wxEmptyString
;
228 nLen
= (size_t)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH
, (MPARAM
)n
, (MPARAM
)0));
229 if (nLen
!= LIT_ERROR
&& nLen
> 0)
231 zBuf
= new wxChar
[nLen
+ 1];
232 ::WinSendMsg( GetHwnd()
234 ,MPFROM2SHORT((SHORT
)n
, (SHORT
)nLen
)
241 } // end of wxChoice::GetString
243 // ----------------------------------------------------------------------------
245 // ----------------------------------------------------------------------------
247 void wxChoice::DoSetItemClientData(unsigned int n
, void* pClientData
)
249 ::WinSendMsg(GetHwnd(), LM_SETITEMHANDLE
, (MPARAM
)n
, MPFROMP(pClientData
));
250 } // end of wxChoice::DoSetItemClientData
252 void* wxChoice::DoGetItemClientData(unsigned int n
) const
254 MRESULT rc
= ::WinSendMsg(GetHwnd(), LM_QUERYITEMHANDLE
, (MPARAM
)n
, (MPARAM
)0);
256 } // end of wxChoice::DoGetItemClientData
258 void wxChoice::DoSetItemClientObject(unsigned int n
, wxClientData
* pClientData
)
260 DoSetItemClientData(n
, pClientData
);
261 } // end of wxChoice::DoSetItemClientObject
263 wxClientData
* wxChoice::DoGetItemClientObject(unsigned int n
) const
265 return (wxClientData
*)DoGetItemClientData(n
);
266 } // end of wxChoice::DoGetItemClientObject
268 // ----------------------------------------------------------------------------
269 // wxOS2 specific helpers
270 // ----------------------------------------------------------------------------
272 void wxChoice::DoSetSize(int nX
,
275 int WXUNUSED(nHeight
),
279 // Ignore height parameter because height doesn't mean 'initially
280 // displayed' height, it refers to the drop-down menu as well. The
281 // wxWidgets interpretation is different; also, getting the size returns
282 // the _displayed_ size (NOT the drop down menu size) so
283 // setting-getting-setting size would not work.
285 wxControl::DoSetSize( nX
291 } // end of wxChoice::DoSetSize
293 wxSize
wxChoice::DoGetBestSize() const
296 // Find the widest string
299 int nChoiceWidth
= 0;
302 wxFont vFont
= (wxFont
)GetFont();
304 const unsigned int nItems
= GetCount();
306 for (unsigned int i
= 0; i
< nItems
; i
++)
308 wxString
sStr(GetString(i
));
309 GetTextExtent( sStr
, &nLineWidth
, NULL
);
310 if (nLineWidth
> nChoiceWidth
)
311 nChoiceWidth
= nLineWidth
;
315 // Give it some reasonable default value if there are no strings in the
318 if (nChoiceWidth
== 0L)
322 // The combobox should be larger than the widest string
324 wxGetCharSize( GetHWND(), &nCx
, &nCy
, &vFont
);
325 nChoiceWidth
+= 5 * nCx
;
328 // Choice drop-down list depends on number of items (limited to 10)
330 size_t nStrings
= nItems
== 0 ? 10 : wxMin(10, nItems
) + 1;
331 int nChoiceHeight
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(nCy
) * nStrings
;
333 return wxSize(nChoiceWidth
, nChoiceHeight
);
334 } // end of wxChoice::DoGetBestSize
336 MRESULT
wxChoice::OS2WindowProc(
342 return wxWindow::OS2WindowProc( uMsg
346 } // end of wxChoice::OS2WindowProc
348 bool wxChoice::OS2Command(
350 , WXWORD
WXUNUSED(wId
)
353 if (uParam
!= LN_SELECT
)
356 // "selection changed" is the only event we're after
360 int n
= GetSelection();
364 wxCommandEvent
vEvent( wxEVT_COMMAND_CHOICE_SELECTED
369 vEvent
.SetEventObject(this);
370 vEvent
.SetString(GetStringSelection());
371 if (HasClientObjectData())
372 vEvent
.SetClientObject(GetClientObject(n
));
373 else if (HasClientUntypedData())
374 vEvent
.SetClientData(GetClientData(n
));
375 ProcessCommand(vEvent
);
378 } // end of wxChoice::OS2Command
380 void wxChoice::Free()
382 if (HasClientObjectData())
384 const unsigned int nCount
= GetCount();
386 for (unsigned int n
= 0; n
< nCount
; n
++)
388 delete GetClientObject(n
);
391 } // end of wxChoice::Free
393 #endif // wxUSE_CHOICE