many wxItemContainer-related changes:
[wxWidgets.git] / src / msw / wince / checklst.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/wince/checklst.cpp
3 // Purpose: implementation of wxCheckListBox class
4 // Author: Wlodzimierz ABX Skiba
5 // Modified by:
6 // Created: 30.10.2005
7 // RCS-ID: $Id$
8 // Copyright: (c) Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #if wxUSE_CHECKLISTBOX
28
29 #include "wx/checklst.h"
30
31 #ifndef WX_PRECOMP
32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
33 #endif
34
35 // ============================================================================
36 // implementation
37 // ============================================================================
38
39 IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxControl)
40
41 // ----------------------------------------------------------------------------
42 // implementation of wxCheckListBox class
43 // ----------------------------------------------------------------------------
44
45 // define event table
46 // ------------------
47 BEGIN_EVENT_TABLE(wxCheckListBox, wxControl)
48 EVT_SIZE(wxCheckListBox::OnSize)
49 END_EVENT_TABLE()
50
51 // control creation
52 // ----------------
53
54 // def ctor: use Create() to really create the control
55 wxCheckListBox::wxCheckListBox()
56 {
57 }
58
59 // ctor which creates the associated control
60 wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
61 const wxPoint& pos, const wxSize& size,
62 int nStrings, const wxString choices[],
63 long style, const wxValidator& val,
64 const wxString& name)
65 {
66 Create(parent, id, pos, size, nStrings, choices, style, val, name);
67 }
68
69 wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
70 const wxPoint& pos, const wxSize& size,
71 const wxArrayString& choices,
72 long style, const wxValidator& val,
73 const wxString& name)
74 {
75 Create(parent, id, pos, size, choices, style, val, name);
76 }
77
78 wxCheckListBox::~wxCheckListBox()
79 {
80 m_itemsClientData.Clear();
81 }
82
83 bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
84 const wxPoint& pos, const wxSize& size,
85 int n, const wxString choices[],
86 long style,
87 const wxValidator& validator, const wxString& name)
88 {
89 // initialize base class fields
90 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
91 return false;
92
93 // create the native control
94 if ( !MSWCreateControl(WC_LISTVIEW, wxEmptyString, pos, size) )
95 {
96 // control creation failed
97 return false;
98 }
99
100 ::SendMessage(GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE, 0,
101 LVS_EX_CHECKBOXES | LVS_EX_FULLROWSELECT );
102
103 // insert single column with checkboxes and labels
104 LV_COLUMN col;
105 wxZeroMemory(col);
106 ListView_InsertColumn(GetHwnd(), 0, &col );
107
108 ListView_SetItemCount( GetHwnd(), n );
109
110 // initialize the contents
111 for ( int i = 0; i < n; i++ )
112 {
113 Append(choices[i]);
114 }
115
116 m_itemsClientData.SetCount(n);
117
118 // now we can compute our best size correctly, so do it if necessary
119 SetInitialSize(size);
120
121 return true;
122 }
123
124 bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
125 const wxPoint& pos, const wxSize& size,
126 const wxArrayString& choices,
127 long style,
128 const wxValidator& validator, const wxString& name)
129 {
130 wxCArrayString chs(choices);
131 return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
132 style, validator, name);
133 }
134
135 WXDWORD wxCheckListBox::MSWGetStyle(long style, WXDWORD *exstyle) const
136 {
137 WXDWORD wstyle = wxControl::MSWGetStyle(style, exstyle);
138
139 wstyle |= LVS_REPORT | LVS_NOCOLUMNHEADER | LVS_NOSORTHEADER;
140
141 return wstyle;
142 }
143
144 void wxCheckListBox::OnSize(wxSizeEvent& event)
145 {
146 // set width of the column we use to the width of list client area
147 event.Skip();
148 int w = GetClientSize().x;
149 ListView_SetColumnWidth( GetHwnd(), 0, w );
150 }
151
152 // misc overloaded methods
153 // -----------------------
154
155 void wxCheckListBox::DoDeleteOneItem(unsigned int n)
156 {
157 wxCHECK_RET( IsValid( n ), _T("invalid index in wxCheckListBox::Delete") );
158
159 if ( !ListView_DeleteItem(GetHwnd(), n) )
160 {
161 wxLogLastError(_T("ListView_DeleteItem"));
162 }
163 m_itemsClientData.RemoveAt(n);
164 }
165
166 // check items
167 // -----------
168
169 bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
170 {
171 wxCHECK_MSG( IsValid( uiIndex ), false,
172 _T("invalid index in wxCheckListBox::IsChecked") );
173
174 return (ListView_GetCheckState(((HWND)GetHWND()), uiIndex) != 0);
175 }
176
177 void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck)
178 {
179 wxCHECK_RET( IsValid( uiIndex ),
180 _T("invalid index in wxCheckListBox::Check") );
181
182 ListView_SetCheckState(((HWND)GetHWND()), uiIndex, bCheck)
183 }
184
185 // interface derived from wxListBox and lower classes
186 // --------------------------------------------------
187
188 void wxCheckListBox::Clear()
189 {
190 unsigned int n = GetCount();
191
192 while ( n > 0 )
193 {
194 n--;
195 Delete(n);
196 }
197
198 m_itemsClientData.Clear();
199
200 wxCHECK_RET( n == GetCount(),
201 _T("broken wxCheckListBox::Clear()") );
202 }
203
204 unsigned int wxCheckListBox::GetCount() const
205 {
206 return (unsigned int)ListView_GetItemCount( (HWND)GetHWND() );
207 }
208
209 int wxCheckListBox::GetSelection() const
210 {
211 int i;
212 for (i = 0; (unsigned int)i < GetCount(); i++)
213 {
214 int selState = ListView_GetItemState(GetHwnd(), i, LVIS_SELECTED);
215 if (selState == LVIS_SELECTED)
216 return i;
217 }
218
219 return wxNOT_FOUND;
220 }
221
222 int wxCheckListBox::GetSelections(wxArrayInt& aSelections) const
223 {
224 int i;
225 for (i = 0; (unsigned int)i < GetCount(); i++)
226 {
227 int selState = ListView_GetItemState(GetHwnd(), i, LVIS_SELECTED);
228 if (selState == LVIS_SELECTED)
229 aSelections.Add(i);
230 }
231
232 return aSelections.GetCount();
233 }
234
235 wxString wxCheckListBox::GetString(unsigned int n) const
236 {
237 const int bufSize = 513;
238 wxChar buf[bufSize];
239 ListView_GetItemText( (HWND)GetHWND(), n, 0, buf, bufSize - 1 );
240 buf[bufSize-1] = _T('\0');
241 wxString str(buf);
242 return str;
243 }
244
245 bool wxCheckListBox::IsSelected(int n) const
246 {
247 int selState = ListView_GetItemState(GetHwnd(), n, LVIS_SELECTED);
248 return (selState == LVIS_SELECTED);
249 }
250
251 void wxCheckListBox::SetString(unsigned int n, const wxString& s)
252 {
253 wxCHECK_RET( IsValid( n ),
254 _T("invalid index in wxCheckListBox::SetString") );
255 wxChar *buf = new wxChar[s.length()+1];
256 wxStrcpy(buf, s.c_str());
257 ListView_SetItemText( (HWND)GetHWND(), n, 0, buf );
258 delete [] buf;
259 }
260
261 void* wxCheckListBox::DoGetItemClientData(unsigned int n) const
262 {
263 return m_itemsClientData.Item(n);
264 }
265
266 int wxCheckListBox::DoInsertItems(const wxArrayStringsAdapter & items,
267 unsigned int pos,
268 void **clientData, wxClientDataType type)
269 {
270 ListView_SetItemCount( GetHwnd(), GetCount() + count );
271
272 const unsigned int count = items.GetCount();
273
274 int n = wxNOT_FOUND;
275
276 for( unsigned int i = 0; i < count; i++ )
277 {
278 LVITEM newItem;
279 wxZeroMemory(newItem);
280 newItem.iItem = pos + i;
281 n = ListView_InsertItem( (HWND)GetHWND(), & newItem );
282 wxCHECK_MSG( n != -1, -1, _T("Item not added") );
283 SetString( n, items[i] );
284 m_itemsClientData.Insert(NULL, n);
285
286 AssignNewItemClientData(n, clientData, i, type);
287 }
288
289 return n;
290 }
291
292 void wxCheckListBox::DoSetFirstItem(int n)
293 {
294 int pos = ListView_GetTopIndex( (HWND)GetHWND() );
295 if(pos == n) return;
296 POINT ppt;
297 BOOL ret = ListView_GetItemPosition( (HWND)GetHWND(), n, &ppt );
298 wxCHECK_RET( ret == TRUE, _T("Broken DoSetFirstItem") );
299 ListView_Scroll( (HWND)GetHWND(), 0, 0 );
300 ListView_Scroll( (HWND)GetHWND(), 0, ppt.y );
301 }
302
303 void wxCheckListBox::DoSetItemClientData(unsigned int n, void* clientData)
304 {
305 m_itemsClientData.Item(n) = clientData;
306 }
307
308 void wxCheckListBox::DoSetSelection(int n, bool select)
309 {
310 ListView_SetItemState(GetHwnd(), n, select ? LVIS_SELECTED : 0, LVIS_SELECTED);
311 }
312
313 bool wxCheckListBox::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
314 {
315 // prepare the event
316 // -----------------
317
318 wxCommandEvent event(wxEVT_NULL, m_windowId);
319 event.SetEventObject(this);
320
321 wxEventType eventType = wxEVT_NULL;
322
323 NMHDR *nmhdr = (NMHDR *)lParam;
324
325 if ( nmhdr->hwndFrom == GetHwnd() )
326 {
327 // almost all messages use NM_LISTVIEW
328 NM_LISTVIEW *nmLV = (NM_LISTVIEW *)nmhdr;
329
330 const int iItem = nmLV->iItem;
331
332 bool processed = true;
333 switch ( nmhdr->code )
334 {
335 case LVN_ITEMCHANGED:
336 // we translate this catch all message into more interesting
337 // (and more easy to process) wxWidgets events
338
339 // first of all, we deal with the state change events only and
340 // only for valid items (item == -1 for the virtual list
341 // control)
342 if ( nmLV->uChanged & LVIF_STATE && iItem != -1 )
343 {
344 // temp vars for readability
345 const UINT stOld = nmLV->uOldState;
346 const UINT stNew = nmLV->uNewState;
347
348 // Check image changed
349 if ((stOld & LVIS_STATEIMAGEMASK) != (stNew & LVIS_STATEIMAGEMASK))
350 {
351 event.SetEventType(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED);
352 event.SetInt(IsChecked(iItem));
353 (void) GetEventHandler()->ProcessEvent(event);
354 }
355
356 if ( (stNew & LVIS_SELECTED) != (stOld & LVIS_SELECTED) )
357 {
358 eventType = wxEVT_COMMAND_LISTBOX_SELECTED;
359
360 event.SetExtraLong( (stNew & LVIS_SELECTED) != 0 ); // is a selection
361 event.SetInt(iItem);
362 }
363 }
364
365 if ( eventType == wxEVT_NULL )
366 {
367 // not an interesting event for us
368 return false;
369 }
370
371 break;
372
373 default:
374 processed = false;
375 }
376
377 if ( !processed )
378 return wxControl::MSWOnNotify(idCtrl, lParam, result);
379 }
380 else
381 {
382 // where did this one come from?
383 return false;
384 }
385
386 // process the event
387 // -----------------
388
389 event.SetEventType(eventType);
390
391 bool processed = GetEventHandler()->ProcessEvent(event);
392 if ( processed )
393 *result = 0;
394
395 return processed;
396 }
397
398
399 #endif