]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: listctrl.cpp | |
3 | // Purpose: wxListCtrl | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
acb62b84 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
edccf428 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
0b5efdc7 | 21 | #pragma implementation "listctrl.h" |
3c1a88d8 | 22 | #pragma implementation "listctrlbase.h" |
2bda0e17 KB |
23 | #endif |
24 | ||
25 | // For compilers that support precompilation, includes "wx.h". | |
26 | #include "wx/wxprec.h" | |
27 | ||
28 | #ifdef __BORLANDC__ | |
0b5efdc7 | 29 | #pragma hdrstop |
2bda0e17 KB |
30 | #endif |
31 | ||
32 | #ifndef WX_PRECOMP | |
0b5efdc7 | 33 | #include "wx/wx.h" |
2bda0e17 KB |
34 | #endif |
35 | ||
edccf428 | 36 | #ifdef __WIN95__ |
2bda0e17 KB |
37 | |
38 | #include "wx/listctrl.h" | |
f8352807 | 39 | #include "wx/log.h" |
2bda0e17 KB |
40 | |
41 | #include "wx/msw/private.h" | |
42 | ||
65fd5cb0 | 43 | #if defined(__GNUWIN32__) && !defined(wxUSE_NORLANDER_HEADERS) |
edccf428 VZ |
44 | #include "wx/msw/gnuwin32/extra.h" |
45 | #else | |
0b5efdc7 | 46 | #include <commctrl.h> |
2bda0e17 KB |
47 | #endif |
48 | ||
bdc72a22 VZ |
49 | #ifndef LVHT_ONITEM |
50 | #define LVHT_ONITEM \ | |
51 | (LVHT_ONITEMICON | LVHT_ONITEMLABEL | LVHT_ONITEMSTATEICON) | |
52 | #endif | |
53 | ||
edccf428 VZ |
54 | // ---------------------------------------------------------------------------- |
55 | // private functions | |
56 | // ---------------------------------------------------------------------------- | |
2bda0e17 KB |
57 | |
58 | static void wxConvertToMSWListItem(const wxListCtrl *ctrl, wxListItem& info, LV_ITEM& tvItem); | |
59 | static void wxConvertFromMSWListItem(const wxListCtrl *ctrl, wxListItem& info, LV_ITEM& tvItem, HWND getFullInfo = 0); | |
60 | ||
edccf428 VZ |
61 | // ---------------------------------------------------------------------------- |
62 | // macros | |
63 | // ---------------------------------------------------------------------------- | |
64 | ||
8f177c8e VZ |
65 | IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl) |
66 | IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject) | |
2bda0e17 | 67 | |
edccf428 VZ |
68 | // ============================================================================ |
69 | // implementation | |
70 | // ============================================================================ | |
71 | ||
8f177c8e VZ |
72 | // ---------------------------------------------------------------------------- |
73 | // wxListEvent | |
74 | // ---------------------------------------------------------------------------- | |
75 | ||
76 | void wxListEvent::CopyObject(wxObject& object_dest) const | |
77 | { | |
78 | wxListEvent *obj = (wxListEvent *)&object_dest; | |
79 | ||
80 | wxNotifyEvent::CopyObject(object_dest); | |
81 | ||
82 | obj->m_code = m_code; | |
83 | obj->m_itemIndex = m_itemIndex; | |
84 | obj->m_oldItemIndex = m_oldItemIndex; | |
85 | obj->m_col = m_col; | |
86 | obj->m_cancelled = m_cancelled; | |
87 | obj->m_pointDrag = m_pointDrag; | |
88 | obj->m_item.m_mask = m_item.m_mask; | |
89 | obj->m_item.m_itemId = m_item.m_itemId; | |
90 | obj->m_item.m_col = m_item.m_col; | |
91 | obj->m_item.m_state = m_item.m_state; | |
92 | obj->m_item.m_stateMask = m_item.m_stateMask; | |
93 | obj->m_item.m_text = m_item.m_text; | |
94 | obj->m_item.m_image = m_item.m_image; | |
95 | obj->m_item.m_data = m_item.m_data; | |
96 | obj->m_item.m_format = m_item.m_format; | |
97 | obj->m_item.m_width = m_item.m_width; | |
98 | ||
99 | if ( m_item.HasAttributes() ) | |
100 | { | |
101 | obj->m_item.SetTextColour(m_item.GetTextColour()); | |
102 | obj->m_item.SetBackgroundColour(m_item.GetBackgroundColour()); | |
103 | obj->m_item.SetFont(m_item.GetFont()); | |
104 | } | |
105 | } | |
106 | ||
edccf428 VZ |
107 | // ---------------------------------------------------------------------------- |
108 | // wxListCtrl construction | |
109 | // ---------------------------------------------------------------------------- | |
110 | ||
bdc72a22 | 111 | void wxListCtrl::Init() |
2bda0e17 | 112 | { |
0b5efdc7 VZ |
113 | m_imageListNormal = NULL; |
114 | m_imageListSmall = NULL; | |
115 | m_imageListState = NULL; | |
116 | m_baseStyle = 0; | |
2bda0e17 | 117 | m_colCount = 0; |
bbcdf8bc | 118 | m_textCtrl = NULL; |
bdc72a22 | 119 | m_hasAnyAttr = FALSE; |
2bda0e17 KB |
120 | } |
121 | ||
0b5efdc7 VZ |
122 | bool wxListCtrl::Create(wxWindow *parent, |
123 | wxWindowID id, | |
124 | const wxPoint& pos, | |
125 | const wxSize& size, | |
126 | long style, | |
127 | const wxValidator& validator, | |
128 | const wxString& name) | |
2bda0e17 | 129 | { |
11b6a93b | 130 | #if wxUSE_VALIDATORS |
0b5efdc7 | 131 | SetValidator(validator); |
11b6a93b VZ |
132 | #endif // wxUSE_VALIDATORS |
133 | ||
0b5efdc7 | 134 | SetName(name); |
2bda0e17 | 135 | |
0b5efdc7 VZ |
136 | int x = pos.x; |
137 | int y = pos.y; | |
138 | int width = size.x; | |
139 | int height = size.y; | |
2bda0e17 | 140 | |
0b5efdc7 | 141 | m_windowStyle = style; |
2bda0e17 | 142 | |
0b5efdc7 | 143 | SetParent(parent); |
2bda0e17 | 144 | |
0b5efdc7 VZ |
145 | if (width <= 0) |
146 | width = 100; | |
147 | if (height <= 0) | |
148 | height = 30; | |
149 | if (x < 0) | |
150 | x = 0; | |
151 | if (y < 0) | |
152 | y = 0; | |
2bda0e17 | 153 | |
0b5efdc7 | 154 | m_windowId = (id == -1) ? NewControlId() : id; |
2bda0e17 | 155 | |
edccf428 VZ |
156 | DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP | |
157 | LVS_SHAREIMAGELISTS | LVS_SHOWSELALWAYS; | |
158 | if ( wxStyleHasBorder(m_windowStyle) ) | |
159 | wstyle |= WS_BORDER; | |
160 | m_baseStyle = wstyle; | |
161 | ||
162 | if ( !DoCreateControl(x, y, width, height) ) | |
163 | return FALSE; | |
164 | ||
165 | if (parent) | |
166 | parent->AddChild(this); | |
167 | ||
168 | return TRUE; | |
169 | } | |
170 | ||
171 | bool wxListCtrl::DoCreateControl(int x, int y, int w, int h) | |
172 | { | |
173 | DWORD wstyle = m_baseStyle; | |
2bda0e17 | 174 | |
0b5efdc7 | 175 | bool want3D; |
edccf428 | 176 | WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D); |
2bda0e17 | 177 | |
0b5efdc7 VZ |
178 | // Even with extended styles, need to combine with WS_BORDER |
179 | // for them to look right. | |
edccf428 | 180 | if ( want3D ) |
0b5efdc7 | 181 | wstyle |= WS_BORDER; |
2bda0e17 | 182 | |
0b5efdc7 VZ |
183 | long oldStyle = 0; // Dummy |
184 | wstyle |= ConvertToMSWStyle(oldStyle, m_windowStyle); | |
2bda0e17 | 185 | |
0b5efdc7 VZ |
186 | // Create the ListView control. |
187 | m_hWnd = (WXHWND)CreateWindowEx(exStyle, | |
188 | WC_LISTVIEW, | |
223d09f6 | 189 | wxT(""), |
0b5efdc7 | 190 | wstyle, |
edccf428 VZ |
191 | x, y, w, h, |
192 | GetWinHwnd(GetParent()), | |
0b5efdc7 VZ |
193 | (HMENU)m_windowId, |
194 | wxGetInstance(), | |
195 | NULL); | |
f8352807 | 196 | |
edccf428 VZ |
197 | if ( !m_hWnd ) |
198 | { | |
223d09f6 | 199 | wxLogError(wxT("Can't create list control window.")); |
0b5efdc7 VZ |
200 | |
201 | return FALSE; | |
202 | } | |
203 | ||
204 | // for comctl32.dll v 4.70+ we want to have this attribute because it's | |
205 | // prettier (and also because wxGTK does it like this) | |
206 | #ifdef ListView_SetExtendedListViewStyle | |
207 | if ( wstyle & LVS_REPORT ) | |
208 | { | |
edccf428 VZ |
209 | ListView_SetExtendedListViewStyle(GetHwnd(), |
210 | LVS_EX_FULLROWSELECT); | |
0b5efdc7 VZ |
211 | } |
212 | #endif // ListView_SetExtendedListViewStyle | |
f8352807 | 213 | |
5aeeab14 | 214 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW)); |
edccf428 | 215 | SetForegroundColour(GetParent()->GetForegroundColour()); |
2bda0e17 | 216 | |
edccf428 | 217 | SubclassWin(m_hWnd); |
2bda0e17 | 218 | |
0b5efdc7 | 219 | return TRUE; |
2bda0e17 KB |
220 | } |
221 | ||
edccf428 VZ |
222 | void wxListCtrl::UpdateStyle() |
223 | { | |
224 | if ( GetHWND() ) | |
225 | { | |
226 | // The new window view style | |
227 | long dummy; | |
228 | DWORD dwStyleNew = ConvertToMSWStyle(dummy, m_windowStyle); | |
229 | dwStyleNew |= m_baseStyle; | |
230 | ||
910484a6 | 231 | // Get the current window style. |
edccf428 VZ |
232 | DWORD dwStyleOld = ::GetWindowLong(GetHwnd(), GWL_STYLE); |
233 | ||
910484a6 | 234 | // Only set the window style if the view bits have changed. |
edccf428 VZ |
235 | if ( dwStyleOld != dwStyleNew ) |
236 | { | |
237 | ::SetWindowLong(GetHwnd(), GWL_STYLE, dwStyleNew); | |
238 | } | |
239 | } | |
240 | } | |
241 | ||
0b5efdc7 | 242 | wxListCtrl::~wxListCtrl() |
2bda0e17 | 243 | { |
d62228a6 VZ |
244 | if ( m_hasAnyAttr ) |
245 | { | |
246 | for ( wxNode *node = m_attrs.Next(); node; node = m_attrs.Next() ) | |
247 | { | |
248 | delete (wxListItemAttr *)node->Data(); | |
249 | } | |
250 | } | |
251 | ||
252 | if ( m_textCtrl ) | |
bbcdf8bc | 253 | { |
0b5efdc7 VZ |
254 | m_textCtrl->UnsubclassWin(); |
255 | m_textCtrl->SetHWND(0); | |
256 | delete m_textCtrl; | |
257 | m_textCtrl = NULL; | |
bbcdf8bc | 258 | } |
2bda0e17 KB |
259 | } |
260 | ||
edccf428 VZ |
261 | // ---------------------------------------------------------------------------- |
262 | // set/get/change style | |
263 | // ---------------------------------------------------------------------------- | |
264 | ||
2bda0e17 | 265 | // Add or remove a single window style |
debe6624 | 266 | void wxListCtrl::SetSingleStyle(long style, bool add) |
2bda0e17 | 267 | { |
0b5efdc7 | 268 | long flag = GetWindowStyleFlag(); |
2bda0e17 | 269 | |
0b5efdc7 | 270 | // Get rid of conflicting styles |
acb62b84 VZ |
271 | if ( add ) |
272 | { | |
0b5efdc7 | 273 | if ( style & wxLC_MASK_TYPE) |
edccf428 | 274 | flag = flag & ~wxLC_MASK_TYPE; |
0b5efdc7 | 275 | if ( style & wxLC_MASK_ALIGN ) |
edccf428 | 276 | flag = flag & ~wxLC_MASK_ALIGN; |
0b5efdc7 | 277 | if ( style & wxLC_MASK_SORT ) |
edccf428 | 278 | flag = flag & ~wxLC_MASK_SORT; |
acb62b84 | 279 | } |
2bda0e17 | 280 | |
0b5efdc7 VZ |
281 | if ( flag & style ) |
282 | { | |
283 | if ( !add ) | |
284 | flag -= style; | |
285 | } | |
286 | else | |
287 | { | |
288 | if ( add ) | |
289 | { | |
290 | flag |= style; | |
291 | } | |
292 | } | |
293 | ||
294 | m_windowStyle = flag; | |
2bda0e17 | 295 | |
edccf428 | 296 | UpdateStyle(); |
2bda0e17 KB |
297 | } |
298 | ||
299 | // Set the whole window style | |
debe6624 | 300 | void wxListCtrl::SetWindowStyleFlag(long flag) |
2bda0e17 | 301 | { |
0b5efdc7 | 302 | m_windowStyle = flag; |
2bda0e17 | 303 | |
edccf428 | 304 | UpdateStyle(); |
2bda0e17 KB |
305 | } |
306 | ||
0b5efdc7 VZ |
307 | // Can be just a single style, or a bitlist |
308 | long wxListCtrl::ConvertToMSWStyle(long& oldStyle, long style) const | |
2bda0e17 | 309 | { |
0b5efdc7 VZ |
310 | long wstyle = 0; |
311 | if ( style & wxLC_ICON ) | |
312 | { | |
313 | if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON ) | |
314 | oldStyle -= LVS_SMALLICON; | |
315 | if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT ) | |
316 | oldStyle -= LVS_REPORT; | |
317 | if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST ) | |
318 | oldStyle -= LVS_LIST; | |
319 | wstyle |= LVS_ICON; | |
320 | } | |
321 | ||
322 | if ( style & wxLC_SMALL_ICON ) | |
323 | { | |
324 | if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON ) | |
325 | oldStyle -= LVS_ICON; | |
326 | if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT ) | |
327 | oldStyle -= LVS_REPORT; | |
328 | if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST ) | |
329 | oldStyle -= LVS_LIST; | |
330 | wstyle |= LVS_SMALLICON; | |
331 | } | |
332 | ||
333 | if ( style & wxLC_LIST ) | |
334 | { | |
335 | if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON ) | |
336 | oldStyle -= LVS_ICON; | |
337 | if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT ) | |
338 | oldStyle -= LVS_REPORT; | |
339 | if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON ) | |
340 | oldStyle -= LVS_SMALLICON; | |
341 | wstyle |= LVS_LIST; | |
342 | } | |
2bda0e17 | 343 | |
0b5efdc7 VZ |
344 | if ( style & wxLC_REPORT ) |
345 | { | |
346 | if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON ) | |
347 | oldStyle -= LVS_ICON; | |
348 | if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST ) | |
349 | oldStyle -= LVS_LIST; | |
350 | if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON ) | |
351 | oldStyle -= LVS_SMALLICON; | |
352 | ||
353 | wstyle |= LVS_REPORT; | |
354 | } | |
2bda0e17 | 355 | |
0b5efdc7 VZ |
356 | if ( style & wxLC_ALIGN_LEFT ) |
357 | { | |
358 | if ( oldStyle & LVS_ALIGNTOP ) | |
359 | oldStyle -= LVS_ALIGNTOP; | |
360 | wstyle |= LVS_ALIGNLEFT; | |
361 | } | |
2bda0e17 | 362 | |
0b5efdc7 VZ |
363 | if ( style & wxLC_ALIGN_TOP ) |
364 | { | |
365 | if ( oldStyle & LVS_ALIGNLEFT ) | |
366 | oldStyle -= LVS_ALIGNLEFT; | |
367 | wstyle |= LVS_ALIGNTOP; | |
368 | } | |
2bda0e17 | 369 | |
0b5efdc7 VZ |
370 | if ( style & wxLC_AUTOARRANGE ) |
371 | wstyle |= LVS_AUTOARRANGE; | |
2bda0e17 | 372 | |
0b5efdc7 VZ |
373 | // Apparently, no such style (documentation wrong?) |
374 | /* | |
375 | if ( style & wxLC_BUTTON ) | |
376 | wstyle |= LVS_BUTTON; | |
377 | */ | |
2bda0e17 | 378 | |
0b5efdc7 VZ |
379 | if ( style & wxLC_NO_SORT_HEADER ) |
380 | wstyle |= LVS_NOSORTHEADER; | |
2bda0e17 | 381 | |
0b5efdc7 VZ |
382 | if ( style & wxLC_NO_HEADER ) |
383 | wstyle |= LVS_NOCOLUMNHEADER; | |
384 | ||
385 | if ( style & wxLC_EDIT_LABELS ) | |
386 | wstyle |= LVS_EDITLABELS; | |
387 | ||
388 | if ( style & wxLC_SINGLE_SEL ) | |
389 | wstyle |= LVS_SINGLESEL; | |
390 | ||
391 | if ( style & wxLC_SORT_ASCENDING ) | |
392 | { | |
393 | if ( oldStyle & LVS_SORTDESCENDING ) | |
394 | oldStyle -= LVS_SORTDESCENDING; | |
395 | wstyle |= LVS_SORTASCENDING; | |
396 | } | |
397 | ||
398 | if ( style & wxLC_SORT_DESCENDING ) | |
399 | { | |
400 | if ( oldStyle & LVS_SORTASCENDING ) | |
401 | oldStyle -= LVS_SORTASCENDING; | |
402 | wstyle |= LVS_SORTDESCENDING; | |
403 | } | |
404 | ||
405 | return wstyle; | |
2bda0e17 KB |
406 | } |
407 | ||
edccf428 VZ |
408 | // ---------------------------------------------------------------------------- |
409 | // accessors | |
410 | // ---------------------------------------------------------------------------- | |
411 | ||
2bda0e17 KB |
412 | // Sets the background colour (GetBackgroundColour already implicit in |
413 | // wxWindow class) | |
cc2b7472 | 414 | bool wxListCtrl::SetBackgroundColour(const wxColour& col) |
2bda0e17 | 415 | { |
cc2b7472 VZ |
416 | if ( !wxWindow::SetBackgroundColour(col) ) |
417 | return FALSE; | |
2bda0e17 | 418 | |
edccf428 | 419 | ListView_SetBkColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue())); |
cc2b7472 VZ |
420 | |
421 | return TRUE; | |
2bda0e17 KB |
422 | } |
423 | ||
424 | // Gets information about this column | |
debe6624 | 425 | bool wxListCtrl::GetColumn(int col, wxListItem& item) const |
2bda0e17 | 426 | { |
0b5efdc7 VZ |
427 | LV_COLUMN lvCol; |
428 | lvCol.mask = 0; | |
429 | lvCol.fmt = 0; | |
430 | lvCol.pszText = NULL; | |
431 | ||
432 | if ( item.m_mask & wxLIST_MASK_TEXT ) | |
433 | { | |
434 | lvCol.mask |= LVCF_TEXT; | |
837e5743 | 435 | lvCol.pszText = new wxChar[513]; |
0b5efdc7 VZ |
436 | lvCol.cchTextMax = 512; |
437 | } | |
438 | ||
edccf428 | 439 | bool success = (ListView_GetColumn(GetHwnd(), col, & lvCol) != 0); |
0b5efdc7 VZ |
440 | |
441 | // item.m_subItem = lvCol.iSubItem; | |
442 | item.m_width = lvCol.cx; | |
443 | ||
444 | if ( (item.m_mask & wxLIST_MASK_TEXT) && lvCol.pszText ) | |
445 | { | |
446 | item.m_text = lvCol.pszText; | |
447 | delete[] lvCol.pszText; | |
448 | } | |
449 | ||
450 | if ( item.m_mask & wxLIST_MASK_FORMAT ) | |
451 | { | |
452 | if (lvCol.fmt == LVCFMT_LEFT) | |
453 | item.m_format = wxLIST_FORMAT_LEFT; | |
454 | else if (lvCol.fmt == LVCFMT_RIGHT) | |
455 | item.m_format = wxLIST_FORMAT_RIGHT; | |
456 | else if (lvCol.fmt == LVCFMT_CENTER) | |
457 | item.m_format = wxLIST_FORMAT_CENTRE; | |
2bda0e17 KB |
458 | } |
459 | ||
0b5efdc7 | 460 | return success; |
2bda0e17 KB |
461 | } |
462 | ||
463 | // Sets information about this column | |
debe6624 | 464 | bool wxListCtrl::SetColumn(int col, wxListItem& item) |
2bda0e17 | 465 | { |
0b5efdc7 VZ |
466 | LV_COLUMN lvCol; |
467 | lvCol.mask = 0; | |
468 | lvCol.fmt = 0; | |
469 | lvCol.pszText = NULL; | |
470 | ||
471 | if ( item.m_mask & wxLIST_MASK_TEXT ) | |
472 | { | |
473 | lvCol.mask |= LVCF_TEXT; | |
474 | lvCol.pszText = WXSTRINGCAST item.m_text; | |
475 | lvCol.cchTextMax = 0; // Ignored | |
476 | } | |
477 | if ( item.m_mask & wxLIST_MASK_FORMAT ) | |
478 | { | |
479 | lvCol.mask |= LVCF_FMT; | |
480 | ||
481 | if ( item.m_format == wxLIST_FORMAT_LEFT ) | |
482 | lvCol.fmt = LVCFMT_LEFT; | |
483 | if ( item.m_format == wxLIST_FORMAT_RIGHT ) | |
484 | lvCol.fmt = LVCFMT_RIGHT; | |
485 | if ( item.m_format == wxLIST_FORMAT_CENTRE ) | |
486 | lvCol.fmt = LVCFMT_CENTER; | |
2bda0e17 KB |
487 | } |
488 | ||
0b5efdc7 VZ |
489 | if ( item.m_mask & wxLIST_MASK_WIDTH ) |
490 | { | |
491 | lvCol.mask |= LVCF_WIDTH; | |
492 | lvCol.cx = item.m_width; | |
2bda0e17 | 493 | |
0b5efdc7 VZ |
494 | if ( lvCol.cx == wxLIST_AUTOSIZE) |
495 | lvCol.cx = LVSCW_AUTOSIZE; | |
496 | else if ( lvCol.cx == wxLIST_AUTOSIZE_USEHEADER) | |
497 | lvCol.cx = LVSCW_AUTOSIZE_USEHEADER; | |
498 | } | |
499 | lvCol.mask |= LVCF_SUBITEM; | |
500 | lvCol.iSubItem = col; | |
edccf428 | 501 | return (ListView_SetColumn(GetHwnd(), col, & lvCol) != 0); |
2bda0e17 KB |
502 | } |
503 | ||
504 | // Gets the column width | |
debe6624 | 505 | int wxListCtrl::GetColumnWidth(int col) const |
2bda0e17 | 506 | { |
edccf428 | 507 | return ListView_GetColumnWidth(GetHwnd(), col); |
2bda0e17 KB |
508 | } |
509 | ||
510 | // Sets the column width | |
debe6624 | 511 | bool wxListCtrl::SetColumnWidth(int col, int width) |
2bda0e17 | 512 | { |
0b5efdc7 VZ |
513 | int col2 = col; |
514 | if ( m_windowStyle & wxLC_LIST ) | |
515 | col2 = -1; | |
2bda0e17 | 516 | |
0b5efdc7 VZ |
517 | int width2 = width; |
518 | if ( width2 == wxLIST_AUTOSIZE) | |
519 | width2 = LVSCW_AUTOSIZE; | |
520 | else if ( width2 == wxLIST_AUTOSIZE_USEHEADER) | |
521 | width2 = LVSCW_AUTOSIZE_USEHEADER; | |
2bda0e17 | 522 | |
edccf428 | 523 | return (ListView_SetColumnWidth(GetHwnd(), col2, width2) != 0); |
2bda0e17 KB |
524 | } |
525 | ||
526 | // Gets the number of items that can fit vertically in the | |
527 | // visible area of the list control (list or report view) | |
528 | // or the total number of items in the list control (icon | |
529 | // or small icon view) | |
530 | int wxListCtrl::GetCountPerPage(void) const | |
531 | { | |
edccf428 | 532 | return ListView_GetCountPerPage(GetHwnd()); |
2bda0e17 KB |
533 | } |
534 | ||
535 | // Gets the edit control for editing labels. | |
bbcdf8bc | 536 | wxTextCtrl* wxListCtrl::GetEditControl(void) const |
2bda0e17 | 537 | { |
bbcdf8bc | 538 | return m_textCtrl; |
2bda0e17 KB |
539 | } |
540 | ||
541 | // Gets information about the item | |
542 | bool wxListCtrl::GetItem(wxListItem& info) const | |
543 | { | |
0b5efdc7 | 544 | LV_ITEM lvItem; |
11c7d5b6 | 545 | wxZeroMemory(lvItem); |
2bda0e17 | 546 | |
0b5efdc7 | 547 | lvItem.iItem = info.m_itemId; |
fc5a93cd | 548 | lvItem.iSubItem = info.m_col; |
0b5efdc7 VZ |
549 | |
550 | if ( info.m_mask & wxLIST_MASK_TEXT ) | |
551 | { | |
552 | lvItem.mask |= LVIF_TEXT; | |
837e5743 | 553 | lvItem.pszText = new wxChar[513]; |
0b5efdc7 VZ |
554 | lvItem.cchTextMax = 512; |
555 | } | |
556 | else | |
557 | { | |
558 | lvItem.pszText = NULL; | |
559 | } | |
560 | ||
561 | if (info.m_mask & wxLIST_MASK_DATA) | |
edccf428 | 562 | lvItem.mask |= LVIF_PARAM; |
0b5efdc7 VZ |
563 | |
564 | if ( info.m_mask & wxLIST_MASK_STATE ) | |
565 | { | |
566 | lvItem.mask |= LVIF_STATE; | |
567 | // the other bits are hardly interesting anyhow | |
568 | lvItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED; | |
569 | } | |
570 | ||
571 | bool success = ListView_GetItem((HWND)GetHWND(), &lvItem) != 0; | |
572 | if ( !success ) | |
573 | { | |
574 | wxLogError(_("Couldn't retrieve information about list control item %d."), | |
575 | lvItem.iItem); | |
576 | } | |
577 | else | |
578 | { | |
579 | wxConvertFromMSWListItem(this, info, lvItem); | |
580 | } | |
581 | ||
582 | if (lvItem.pszText) | |
583 | delete[] lvItem.pszText; | |
584 | ||
585 | return success; | |
2bda0e17 KB |
586 | } |
587 | ||
588 | // Sets information about the item | |
589 | bool wxListCtrl::SetItem(wxListItem& info) | |
590 | { | |
0b5efdc7 | 591 | LV_ITEM item; |
2bda0e17 | 592 | wxConvertToMSWListItem(this, info, item); |
bdc72a22 VZ |
593 | |
594 | // check whether it has any custom attributes | |
595 | if ( info.HasAttributes() ) | |
596 | { | |
d62228a6 | 597 | m_attrs.Put(item.iItem, (wxObject *)new wxListItemAttr(*info.GetAttributes())); |
bdc72a22 VZ |
598 | |
599 | m_hasAnyAttr = TRUE; | |
600 | } | |
bdc72a22 | 601 | |
0b5efdc7 | 602 | item.cchTextMax = 0; |
7cc98b3e VZ |
603 | bool ok = ListView_SetItem(GetHwnd(), &item) != 0; |
604 | if ( ok && (info.m_mask & wxLIST_MASK_IMAGE) ) | |
605 | { | |
606 | // make the change visible | |
607 | ListView_Update(GetHwnd(), item.iItem); | |
608 | } | |
609 | ||
610 | return ok; | |
2bda0e17 KB |
611 | } |
612 | ||
debe6624 | 613 | long wxListCtrl::SetItem(long index, int col, const wxString& label, int imageId) |
2bda0e17 | 614 | { |
0b5efdc7 VZ |
615 | wxListItem info; |
616 | info.m_text = label; | |
617 | info.m_mask = wxLIST_MASK_TEXT; | |
618 | info.m_itemId = index; | |
619 | info.m_col = col; | |
620 | if ( imageId > -1 ) | |
621 | { | |
622 | info.m_image = imageId; | |
623 | info.m_mask |= wxLIST_MASK_IMAGE; | |
624 | } | |
625 | return SetItem(info); | |
2bda0e17 KB |
626 | } |
627 | ||
628 | ||
629 | // Gets the item state | |
debe6624 | 630 | int wxListCtrl::GetItemState(long item, long stateMask) const |
2bda0e17 | 631 | { |
0b5efdc7 | 632 | wxListItem info; |
2bda0e17 | 633 | |
edccf428 | 634 | info.m_mask = wxLIST_MASK_STATE; |
0b5efdc7 VZ |
635 | info.m_stateMask = stateMask; |
636 | info.m_itemId = item; | |
2bda0e17 | 637 | |
0b5efdc7 VZ |
638 | if (!GetItem(info)) |
639 | return 0; | |
2bda0e17 | 640 | |
0b5efdc7 | 641 | return info.m_state; |
2bda0e17 KB |
642 | } |
643 | ||
644 | // Sets the item state | |
debe6624 | 645 | bool wxListCtrl::SetItemState(long item, long state, long stateMask) |
2bda0e17 | 646 | { |
0b5efdc7 | 647 | wxListItem info; |
2bda0e17 | 648 | |
edccf428 | 649 | info.m_mask = wxLIST_MASK_STATE; |
0b5efdc7 VZ |
650 | info.m_state = state; |
651 | info.m_stateMask = stateMask; | |
652 | info.m_itemId = item; | |
2bda0e17 | 653 | |
0b5efdc7 | 654 | return SetItem(info); |
2bda0e17 KB |
655 | } |
656 | ||
657 | // Sets the item image | |
debe6624 | 658 | bool wxListCtrl::SetItemImage(long item, int image, int selImage) |
2bda0e17 | 659 | { |
0b5efdc7 | 660 | wxListItem info; |
2bda0e17 | 661 | |
edccf428 | 662 | info.m_mask = wxLIST_MASK_IMAGE; |
0b5efdc7 VZ |
663 | info.m_image = image; |
664 | info.m_itemId = item; | |
2bda0e17 | 665 | |
0b5efdc7 | 666 | return SetItem(info); |
2bda0e17 KB |
667 | } |
668 | ||
669 | // Gets the item text | |
debe6624 | 670 | wxString wxListCtrl::GetItemText(long item) const |
2bda0e17 | 671 | { |
0b5efdc7 | 672 | wxListItem info; |
2bda0e17 | 673 | |
edccf428 | 674 | info.m_mask = wxLIST_MASK_TEXT; |
0b5efdc7 | 675 | info.m_itemId = item; |
2bda0e17 | 676 | |
0b5efdc7 VZ |
677 | if (!GetItem(info)) |
678 | return wxString(""); | |
679 | return info.m_text; | |
2bda0e17 KB |
680 | } |
681 | ||
682 | // Sets the item text | |
debe6624 | 683 | void wxListCtrl::SetItemText(long item, const wxString& str) |
2bda0e17 | 684 | { |
0b5efdc7 | 685 | wxListItem info; |
2bda0e17 | 686 | |
edccf428 | 687 | info.m_mask = wxLIST_MASK_TEXT; |
0b5efdc7 VZ |
688 | info.m_itemId = item; |
689 | info.m_text = str; | |
2bda0e17 | 690 | |
0b5efdc7 | 691 | SetItem(info); |
2bda0e17 KB |
692 | } |
693 | ||
694 | // Gets the item data | |
debe6624 | 695 | long wxListCtrl::GetItemData(long item) const |
2bda0e17 | 696 | { |
0b5efdc7 | 697 | wxListItem info; |
2bda0e17 | 698 | |
edccf428 | 699 | info.m_mask = wxLIST_MASK_DATA; |
0b5efdc7 | 700 | info.m_itemId = item; |
2bda0e17 | 701 | |
0b5efdc7 VZ |
702 | if (!GetItem(info)) |
703 | return 0; | |
704 | return info.m_data; | |
2bda0e17 KB |
705 | } |
706 | ||
707 | // Sets the item data | |
debe6624 | 708 | bool wxListCtrl::SetItemData(long item, long data) |
2bda0e17 | 709 | { |
0b5efdc7 | 710 | wxListItem info; |
2bda0e17 | 711 | |
edccf428 | 712 | info.m_mask = wxLIST_MASK_DATA; |
0b5efdc7 VZ |
713 | info.m_itemId = item; |
714 | info.m_data = data; | |
2bda0e17 | 715 | |
0b5efdc7 | 716 | return SetItem(info); |
2bda0e17 KB |
717 | } |
718 | ||
719 | // Gets the item rectangle | |
16e93305 | 720 | bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const |
2bda0e17 | 721 | { |
0b5efdc7 | 722 | RECT rect2; |
2bda0e17 | 723 | |
0b5efdc7 VZ |
724 | int code2 = LVIR_BOUNDS; |
725 | if ( code == wxLIST_RECT_BOUNDS ) | |
726 | code2 = LVIR_BOUNDS; | |
727 | else if ( code == wxLIST_RECT_ICON ) | |
728 | code2 = LVIR_ICON; | |
729 | else if ( code == wxLIST_RECT_LABEL ) | |
730 | code2 = LVIR_LABEL; | |
2bda0e17 | 731 | |
5ea105e0 | 732 | #ifdef __WXWINE__ |
edccf428 | 733 | bool success = (ListView_GetItemRect(GetHwnd(), (int) item, &rect2 ) != 0); |
5ea105e0 | 734 | #else |
edccf428 | 735 | bool success = (ListView_GetItemRect(GetHwnd(), (int) item, &rect2, code2) != 0); |
5ea105e0 | 736 | #endif |
2bda0e17 | 737 | |
0b5efdc7 VZ |
738 | rect.x = rect2.left; |
739 | rect.y = rect2.top; | |
740 | rect.width = rect2.right - rect2.left; | |
741 | rect.height = rect2.bottom - rect2.left; | |
742 | return success; | |
2bda0e17 KB |
743 | } |
744 | ||
745 | // Gets the item position | |
debe6624 | 746 | bool wxListCtrl::GetItemPosition(long item, wxPoint& pos) const |
2bda0e17 | 747 | { |
0b5efdc7 | 748 | POINT pt; |
2bda0e17 | 749 | |
edccf428 | 750 | bool success = (ListView_GetItemPosition(GetHwnd(), (int) item, &pt) != 0); |
2bda0e17 | 751 | |
0b5efdc7 VZ |
752 | pos.x = pt.x; pos.y = pt.y; |
753 | return success; | |
2bda0e17 KB |
754 | } |
755 | ||
756 | // Sets the item position. | |
debe6624 | 757 | bool wxListCtrl::SetItemPosition(long item, const wxPoint& pos) |
2bda0e17 | 758 | { |
edccf428 | 759 | return (ListView_SetItemPosition(GetHwnd(), (int) item, pos.x, pos.y) != 0); |
2bda0e17 KB |
760 | } |
761 | ||
762 | // Gets the number of items in the list control | |
763 | int wxListCtrl::GetItemCount(void) const | |
764 | { | |
edccf428 | 765 | return ListView_GetItemCount(GetHwnd()); |
2bda0e17 KB |
766 | } |
767 | ||
768 | // Retrieves the spacing between icons in pixels. | |
769 | // If small is TRUE, gets the spacing for the small icon | |
770 | // view, otherwise the large icon view. | |
771 | int wxListCtrl::GetItemSpacing(bool isSmall) const | |
772 | { | |
edccf428 | 773 | return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall); |
2bda0e17 KB |
774 | } |
775 | ||
776 | // Gets the number of selected items in the list control | |
777 | int wxListCtrl::GetSelectedItemCount(void) const | |
778 | { | |
edccf428 | 779 | return ListView_GetSelectedCount(GetHwnd()); |
2bda0e17 KB |
780 | } |
781 | ||
782 | // Gets the text colour of the listview | |
783 | wxColour wxListCtrl::GetTextColour(void) const | |
784 | { | |
edccf428 | 785 | COLORREF ref = ListView_GetTextColor(GetHwnd()); |
0b5efdc7 VZ |
786 | wxColour col(GetRValue(ref), GetGValue(ref), GetBValue(ref)); |
787 | return col; | |
2bda0e17 KB |
788 | } |
789 | ||
790 | // Sets the text colour of the listview | |
791 | void wxListCtrl::SetTextColour(const wxColour& col) | |
792 | { | |
910484a6 | 793 | ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue())); |
2bda0e17 KB |
794 | } |
795 | ||
796 | // Gets the index of the topmost visible item when in | |
797 | // list or report view | |
798 | long wxListCtrl::GetTopItem(void) const | |
799 | { | |
edccf428 | 800 | return (long) ListView_GetTopIndex(GetHwnd()); |
2bda0e17 KB |
801 | } |
802 | ||
803 | // Searches for an item, starting from 'item'. | |
804 | // 'geometry' is one of | |
805 | // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT. | |
806 | // 'state' is a state bit flag, one or more of | |
807 | // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT. | |
808 | // item can be -1 to find the first item that matches the | |
809 | // specified flags. | |
810 | // Returns the item or -1 if unsuccessful. | |
debe6624 | 811 | long wxListCtrl::GetNextItem(long item, int geom, int state) const |
2bda0e17 | 812 | { |
0b5efdc7 | 813 | long flags = 0; |
2bda0e17 | 814 | |
0b5efdc7 VZ |
815 | if ( geom == wxLIST_NEXT_ABOVE ) |
816 | flags |= LVNI_ABOVE; | |
817 | if ( geom == wxLIST_NEXT_ALL ) | |
818 | flags |= LVNI_ALL; | |
819 | if ( geom == wxLIST_NEXT_BELOW ) | |
820 | flags |= LVNI_BELOW; | |
821 | if ( geom == wxLIST_NEXT_LEFT ) | |
822 | flags |= LVNI_TOLEFT; | |
823 | if ( geom == wxLIST_NEXT_RIGHT ) | |
824 | flags |= LVNI_TORIGHT; | |
2bda0e17 | 825 | |
0b5efdc7 VZ |
826 | if ( state & wxLIST_STATE_CUT ) |
827 | flags |= LVNI_CUT; | |
828 | if ( state & wxLIST_STATE_DROPHILITED ) | |
829 | flags |= LVNI_DROPHILITED; | |
830 | if ( state & wxLIST_STATE_FOCUSED ) | |
831 | flags |= LVNI_FOCUSED; | |
832 | if ( state & wxLIST_STATE_SELECTED ) | |
833 | flags |= LVNI_SELECTED; | |
2bda0e17 | 834 | |
edccf428 | 835 | return (long) ListView_GetNextItem(GetHwnd(), item, flags); |
2bda0e17 KB |
836 | } |
837 | ||
838 | ||
debe6624 | 839 | wxImageList *wxListCtrl::GetImageList(int which) const |
2bda0e17 | 840 | { |
0b5efdc7 | 841 | if ( which == wxIMAGE_LIST_NORMAL ) |
2bda0e17 | 842 | { |
0b5efdc7 VZ |
843 | return m_imageListNormal; |
844 | } | |
845 | else if ( which == wxIMAGE_LIST_SMALL ) | |
2bda0e17 | 846 | { |
0b5efdc7 VZ |
847 | return m_imageListSmall; |
848 | } | |
849 | else if ( which == wxIMAGE_LIST_STATE ) | |
2bda0e17 | 850 | { |
0b5efdc7 VZ |
851 | return m_imageListState; |
852 | } | |
853 | return NULL; | |
2bda0e17 KB |
854 | } |
855 | ||
debe6624 | 856 | void wxListCtrl::SetImageList(wxImageList *imageList, int which) |
2bda0e17 | 857 | { |
0b5efdc7 VZ |
858 | int flags = 0; |
859 | if ( which == wxIMAGE_LIST_NORMAL ) | |
2bda0e17 | 860 | { |
0b5efdc7 VZ |
861 | flags = LVSIL_NORMAL; |
862 | m_imageListNormal = imageList; | |
863 | } | |
864 | else if ( which == wxIMAGE_LIST_SMALL ) | |
2bda0e17 | 865 | { |
0b5efdc7 VZ |
866 | flags = LVSIL_SMALL; |
867 | m_imageListSmall = imageList; | |
868 | } | |
869 | else if ( which == wxIMAGE_LIST_STATE ) | |
2bda0e17 | 870 | { |
0b5efdc7 VZ |
871 | flags = LVSIL_STATE; |
872 | m_imageListState = imageList; | |
873 | } | |
edccf428 | 874 | ListView_SetImageList(GetHwnd(), (HIMAGELIST) imageList ? imageList->GetHIMAGELIST() : 0, flags); |
2bda0e17 KB |
875 | } |
876 | ||
edccf428 | 877 | // ---------------------------------------------------------------------------- |
2bda0e17 | 878 | // Operations |
edccf428 | 879 | // ---------------------------------------------------------------------------- |
2bda0e17 KB |
880 | |
881 | // Arranges the items | |
debe6624 | 882 | bool wxListCtrl::Arrange(int flag) |
2bda0e17 | 883 | { |
0b5efdc7 VZ |
884 | UINT code = 0; |
885 | if ( flag == wxLIST_ALIGN_LEFT ) | |
886 | code = LVA_ALIGNLEFT; | |
887 | else if ( flag == wxLIST_ALIGN_TOP ) | |
888 | code = LVA_ALIGNTOP; | |
889 | else if ( flag == wxLIST_ALIGN_DEFAULT ) | |
890 | code = LVA_DEFAULT; | |
891 | else if ( flag == wxLIST_ALIGN_SNAP_TO_GRID ) | |
892 | code = LVA_SNAPTOGRID; | |
2bda0e17 | 893 | |
edccf428 | 894 | return (ListView_Arrange(GetHwnd(), code) != 0); |
2bda0e17 KB |
895 | } |
896 | ||
897 | // Deletes an item | |
debe6624 | 898 | bool wxListCtrl::DeleteItem(long item) |
2bda0e17 | 899 | { |
edccf428 | 900 | return (ListView_DeleteItem(GetHwnd(), (int) item) != 0); |
2bda0e17 KB |
901 | } |
902 | ||
903 | // Deletes all items | |
0b5efdc7 | 904 | bool wxListCtrl::DeleteAllItems() |
2bda0e17 | 905 | { |
edccf428 | 906 | return (ListView_DeleteAllItems(GetHwnd()) != 0); |
2bda0e17 KB |
907 | } |
908 | ||
909 | // Deletes all items | |
0b5efdc7 | 910 | bool wxListCtrl::DeleteAllColumns() |
2bda0e17 | 911 | { |
edccf428 | 912 | while ( m_colCount > 0 ) |
2bda0e17 | 913 | { |
edccf428 VZ |
914 | if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 ) |
915 | { | |
916 | wxLogLastError("ListView_DeleteColumn"); | |
917 | ||
918 | return FALSE; | |
919 | } | |
920 | ||
921 | m_colCount--; | |
2bda0e17 | 922 | } |
edccf428 | 923 | |
223d09f6 | 924 | wxASSERT_MSG( m_colCount == 0, wxT("no columns should be left") ); |
edccf428 VZ |
925 | |
926 | return TRUE; | |
2bda0e17 KB |
927 | } |
928 | ||
929 | // Deletes a column | |
debe6624 | 930 | bool wxListCtrl::DeleteColumn(int col) |
2bda0e17 | 931 | { |
edccf428 | 932 | bool success = (ListView_DeleteColumn(GetHwnd(), col) != 0); |
2bda0e17 KB |
933 | |
934 | if ( success && (m_colCount > 0) ) | |
935 | m_colCount --; | |
936 | return success; | |
937 | } | |
938 | ||
939 | // Clears items, and columns if there are any. | |
0b5efdc7 | 940 | void wxListCtrl::ClearAll() |
2bda0e17 KB |
941 | { |
942 | DeleteAllItems(); | |
943 | if ( m_colCount > 0 ) | |
944 | DeleteAllColumns(); | |
945 | } | |
946 | ||
bbcdf8bc JS |
947 | wxTextCtrl* wxListCtrl::EditLabel(long item, wxClassInfo* textControlClass) |
948 | { | |
949 | wxASSERT( (textControlClass->IsKindOf(CLASSINFO(wxTextCtrl))) ); | |
950 | ||
edccf428 | 951 | HWND hWnd = (HWND) ListView_EditLabel(GetHwnd(), item); |
bbcdf8bc JS |
952 | |
953 | if (m_textCtrl) | |
954 | { | |
0b5efdc7 VZ |
955 | m_textCtrl->UnsubclassWin(); |
956 | m_textCtrl->SetHWND(0); | |
957 | delete m_textCtrl; | |
958 | m_textCtrl = NULL; | |
bbcdf8bc JS |
959 | } |
960 | ||
961 | m_textCtrl = (wxTextCtrl*) textControlClass->CreateObject(); | |
962 | m_textCtrl->SetHWND((WXHWND) hWnd); | |
963 | m_textCtrl->SubclassWin((WXHWND) hWnd); | |
964 | ||
965 | return m_textCtrl; | |
966 | } | |
967 | ||
968 | // End label editing, optionally cancelling the edit | |
969 | bool wxListCtrl::EndEditLabel(bool cancel) | |
2bda0e17 | 970 | { |
341287bf | 971 | wxFAIL; |
bbcdf8bc | 972 | |
0b5efdc7 VZ |
973 | /* I don't know how to implement this: there's no such macro as ListView_EndEditLabelNow. |
974 | * ??? | |
edccf428 | 975 | bool success = (ListView_EndEditLabelNow(GetHwnd(), cancel) != 0); |
0b5efdc7 VZ |
976 | |
977 | if (m_textCtrl) | |
978 | { | |
979 | m_textCtrl->UnsubclassWin(); | |
980 | m_textCtrl->SetHWND(0); | |
981 | delete m_textCtrl; | |
982 | m_textCtrl = NULL; | |
983 | } | |
984 | return success; | |
985 | */ | |
986 | return FALSE; | |
2bda0e17 KB |
987 | } |
988 | ||
bbcdf8bc | 989 | |
2bda0e17 | 990 | // Ensures this item is visible |
debe6624 | 991 | bool wxListCtrl::EnsureVisible(long item) |
2bda0e17 | 992 | { |
edccf428 | 993 | return (ListView_EnsureVisible(GetHwnd(), (int) item, FALSE) != 0); |
2bda0e17 KB |
994 | } |
995 | ||
996 | // Find an item whose label matches this string, starting from the item after 'start' | |
997 | // or the beginning if 'start' is -1. | |
debe6624 | 998 | long wxListCtrl::FindItem(long start, const wxString& str, bool partial) |
2bda0e17 | 999 | { |
0b5efdc7 | 1000 | LV_FINDINFO findInfo; |
2bda0e17 | 1001 | |
0b5efdc7 VZ |
1002 | findInfo.flags = LVFI_STRING; |
1003 | if ( partial ) | |
1004 | findInfo.flags |= LVFI_STRING; | |
1005 | findInfo.psz = WXSTRINGCAST str; | |
2bda0e17 | 1006 | |
edccf428 | 1007 | return ListView_FindItem(GetHwnd(), (int) start, & findInfo); |
2bda0e17 KB |
1008 | } |
1009 | ||
1010 | // Find an item whose data matches this data, starting from the item after 'start' | |
1011 | // or the beginning if 'start' is -1. | |
debe6624 | 1012 | long wxListCtrl::FindItem(long start, long data) |
2bda0e17 | 1013 | { |
0b5efdc7 | 1014 | LV_FINDINFO findInfo; |
2bda0e17 | 1015 | |
0b5efdc7 VZ |
1016 | findInfo.flags = LVFI_PARAM; |
1017 | findInfo.lParam = data; | |
2bda0e17 | 1018 | |
edccf428 | 1019 | return ListView_FindItem(GetHwnd(), (int) start, & findInfo); |
2bda0e17 KB |
1020 | } |
1021 | ||
1022 | // Find an item nearest this position in the specified direction, starting from | |
1023 | // the item after 'start' or the beginning if 'start' is -1. | |
debe6624 | 1024 | long wxListCtrl::FindItem(long start, const wxPoint& pt, int direction) |
2bda0e17 | 1025 | { |
0b5efdc7 | 1026 | LV_FINDINFO findInfo; |
2bda0e17 | 1027 | |
0b5efdc7 VZ |
1028 | findInfo.flags = LVFI_NEARESTXY; |
1029 | findInfo.pt.x = pt.x; | |
1030 | findInfo.pt.y = pt.y; | |
acb62b84 | 1031 | findInfo.vkDirection = VK_RIGHT; |
2bda0e17 | 1032 | |
0b5efdc7 VZ |
1033 | if ( direction == wxLIST_FIND_UP ) |
1034 | findInfo.vkDirection = VK_UP; | |
1035 | else if ( direction == wxLIST_FIND_DOWN ) | |
1036 | findInfo.vkDirection = VK_DOWN; | |
1037 | else if ( direction == wxLIST_FIND_LEFT ) | |
1038 | findInfo.vkDirection = VK_LEFT; | |
1039 | else if ( direction == wxLIST_FIND_RIGHT ) | |
1040 | findInfo.vkDirection = VK_RIGHT; | |
1041 | ||
edccf428 | 1042 | return ListView_FindItem(GetHwnd(), (int) start, & findInfo); |
2bda0e17 KB |
1043 | } |
1044 | ||
1045 | // Determines which item (if any) is at the specified point, | |
1046 | // giving details in 'flags' (see wxLIST_HITTEST_... flags above) | |
1047 | long wxListCtrl::HitTest(const wxPoint& point, int& flags) | |
1048 | { | |
1049 | LV_HITTESTINFO hitTestInfo; | |
0b5efdc7 VZ |
1050 | hitTestInfo.pt.x = (int) point.x; |
1051 | hitTestInfo.pt.y = (int) point.y; | |
2bda0e17 | 1052 | |
edccf428 | 1053 | ListView_HitTest(GetHwnd(), & hitTestInfo); |
2bda0e17 | 1054 | |
0b5efdc7 VZ |
1055 | flags = 0; |
1056 | if ( hitTestInfo.flags & LVHT_ABOVE ) | |
1057 | flags |= wxLIST_HITTEST_ABOVE; | |
1058 | if ( hitTestInfo.flags & LVHT_BELOW ) | |
1059 | flags |= wxLIST_HITTEST_BELOW; | |
1060 | if ( hitTestInfo.flags & LVHT_NOWHERE ) | |
1061 | flags |= wxLIST_HITTEST_NOWHERE; | |
1062 | if ( hitTestInfo.flags & LVHT_ONITEMICON ) | |
1063 | flags |= wxLIST_HITTEST_ONITEMICON; | |
1064 | if ( hitTestInfo.flags & LVHT_ONITEMLABEL ) | |
1065 | flags |= wxLIST_HITTEST_ONITEMLABEL; | |
1066 | if ( hitTestInfo.flags & LVHT_ONITEMSTATEICON ) | |
1067 | flags |= wxLIST_HITTEST_ONITEMSTATEICON; | |
1068 | if ( hitTestInfo.flags & LVHT_TOLEFT ) | |
1069 | flags |= wxLIST_HITTEST_TOLEFT; | |
1070 | if ( hitTestInfo.flags & LVHT_TORIGHT ) | |
1071 | flags |= wxLIST_HITTEST_TORIGHT; | |
1072 | ||
edccf428 | 1073 | return (long) hitTestInfo.iItem; |
2bda0e17 KB |
1074 | } |
1075 | ||
1076 | // Inserts an item, returning the index of the new item if successful, | |
1077 | // -1 otherwise. | |
2bda0e17 KB |
1078 | long wxListCtrl::InsertItem(wxListItem& info) |
1079 | { | |
0b5efdc7 VZ |
1080 | LV_ITEM item; |
1081 | wxConvertToMSWListItem(this, info, item); | |
2bda0e17 | 1082 | |
bdc72a22 VZ |
1083 | // check whether it has any custom attributes |
1084 | if ( info.HasAttributes() ) | |
1085 | { | |
d62228a6 | 1086 | m_attrs.Put(item.iItem, (wxObject *)new wxListItemAttr(*info.GetAttributes())); |
bdc72a22 VZ |
1087 | |
1088 | m_hasAnyAttr = TRUE; | |
1089 | } | |
bdc72a22 | 1090 | |
edccf428 | 1091 | return (long) ListView_InsertItem(GetHwnd(), & item); |
2bda0e17 KB |
1092 | } |
1093 | ||
debe6624 | 1094 | long wxListCtrl::InsertItem(long index, const wxString& label) |
2bda0e17 | 1095 | { |
0b5efdc7 VZ |
1096 | wxListItem info; |
1097 | info.m_text = label; | |
1098 | info.m_mask = wxLIST_MASK_TEXT; | |
1099 | info.m_itemId = index; | |
1100 | return InsertItem(info); | |
2bda0e17 KB |
1101 | } |
1102 | ||
1103 | // Inserts an image item | |
debe6624 | 1104 | long wxListCtrl::InsertItem(long index, int imageIndex) |
2bda0e17 | 1105 | { |
0b5efdc7 VZ |
1106 | wxListItem info; |
1107 | info.m_image = imageIndex; | |
1108 | info.m_mask = wxLIST_MASK_IMAGE; | |
1109 | info.m_itemId = index; | |
1110 | return InsertItem(info); | |
2bda0e17 KB |
1111 | } |
1112 | ||
1113 | // Inserts an image/string item | |
debe6624 | 1114 | long wxListCtrl::InsertItem(long index, const wxString& label, int imageIndex) |
2bda0e17 | 1115 | { |
0b5efdc7 VZ |
1116 | wxListItem info; |
1117 | info.m_image = imageIndex; | |
1118 | info.m_text = label; | |
1119 | info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT; | |
1120 | info.m_itemId = index; | |
1121 | return InsertItem(info); | |
2bda0e17 KB |
1122 | } |
1123 | ||
1124 | // For list view mode (only), inserts a column. | |
debe6624 | 1125 | long wxListCtrl::InsertColumn(long col, wxListItem& item) |
2bda0e17 | 1126 | { |
0b5efdc7 VZ |
1127 | LV_COLUMN lvCol; |
1128 | lvCol.mask = 0; | |
1129 | lvCol.fmt = 0; | |
1130 | lvCol.pszText = NULL; | |
1131 | ||
1132 | if ( item.m_mask & wxLIST_MASK_TEXT ) | |
1133 | { | |
1134 | lvCol.mask |= LVCF_TEXT; | |
1135 | lvCol.pszText = WXSTRINGCAST item.m_text; | |
1136 | lvCol.cchTextMax = 0; // Ignored | |
1137 | } | |
1138 | if ( item.m_mask & wxLIST_MASK_FORMAT ) | |
1139 | { | |
1140 | lvCol.mask |= LVCF_FMT; | |
1141 | ||
1142 | if ( item.m_format == wxLIST_FORMAT_LEFT ) | |
1143 | lvCol.fmt = LVCFMT_LEFT; | |
1144 | if ( item.m_format == wxLIST_FORMAT_RIGHT ) | |
1145 | lvCol.fmt = LVCFMT_RIGHT; | |
1146 | if ( item.m_format == wxLIST_FORMAT_CENTRE ) | |
1147 | lvCol.fmt = LVCFMT_CENTER; | |
2bda0e17 KB |
1148 | } |
1149 | ||
e373f51b | 1150 | lvCol.mask |= LVCF_WIDTH; |
0b5efdc7 VZ |
1151 | if ( item.m_mask & wxLIST_MASK_WIDTH ) |
1152 | { | |
e373f51b | 1153 | if ( item.m_width == wxLIST_AUTOSIZE) |
0b5efdc7 | 1154 | lvCol.cx = LVSCW_AUTOSIZE; |
e373f51b | 1155 | else if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER) |
0b5efdc7 | 1156 | lvCol.cx = LVSCW_AUTOSIZE_USEHEADER; |
e373f51b VZ |
1157 | else |
1158 | lvCol.cx = item.m_width; | |
1159 | } | |
1160 | else | |
1161 | { | |
1162 | // always give some width to the new column: this one is compatible | |
1163 | // with wxGTK | |
1164 | lvCol.cx = 80; | |
0b5efdc7 | 1165 | } |
e373f51b | 1166 | |
0b5efdc7 VZ |
1167 | lvCol.mask |= LVCF_SUBITEM; |
1168 | lvCol.iSubItem = col; | |
2bda0e17 | 1169 | |
edccf428 | 1170 | bool success = ListView_InsertColumn(GetHwnd(), col, & lvCol) != -1; |
2bda0e17 | 1171 | if ( success ) |
e373f51b VZ |
1172 | { |
1173 | m_colCount++; | |
1174 | } | |
1175 | else | |
1176 | { | |
223d09f6 | 1177 | wxLogDebug(wxT("Failed to insert the column '%s' into listview!"), |
e373f51b VZ |
1178 | lvCol.pszText); |
1179 | } | |
1180 | ||
2bda0e17 KB |
1181 | return success; |
1182 | } | |
1183 | ||
bdc72a22 VZ |
1184 | long wxListCtrl::InsertColumn(long col, |
1185 | const wxString& heading, | |
1186 | int format, | |
1187 | int width) | |
2bda0e17 | 1188 | { |
0b5efdc7 VZ |
1189 | wxListItem item; |
1190 | item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT; | |
1191 | item.m_text = heading; | |
1192 | if ( width > -1 ) | |
1193 | { | |
1194 | item.m_mask |= wxLIST_MASK_WIDTH; | |
1195 | item.m_width = width; | |
1196 | } | |
1197 | item.m_format = format; | |
2bda0e17 | 1198 | |
0b5efdc7 | 1199 | return InsertColumn(col, item); |
2bda0e17 KB |
1200 | } |
1201 | ||
1202 | // Scrolls the list control. If in icon, small icon or report view mode, | |
1203 | // x specifies the number of pixels to scroll. If in list view mode, x | |
1204 | // specifies the number of columns to scroll. | |
1205 | // If in icon, small icon or list view mode, y specifies the number of pixels | |
1206 | // to scroll. If in report view mode, y specifies the number of lines to scroll. | |
debe6624 | 1207 | bool wxListCtrl::ScrollList(int dx, int dy) |
2bda0e17 | 1208 | { |
edccf428 | 1209 | return (ListView_Scroll(GetHwnd(), dx, dy) != 0); |
2bda0e17 KB |
1210 | } |
1211 | ||
1212 | // Sort items. | |
1213 | ||
1214 | // fn is a function which takes 3 long arguments: item1, item2, data. | |
1215 | // item1 is the long data associated with a first item (NOT the index). | |
1216 | // item2 is the long data associated with a second item (NOT the index). | |
1217 | // data is the same value as passed to SortItems. | |
1218 | // The return value is a negative number if the first item should precede the second | |
1219 | // item, a positive number of the second item should precede the first, | |
1220 | // or zero if the two items are equivalent. | |
1221 | ||
1222 | // data is arbitrary data to be passed to the sort function. | |
1223 | bool wxListCtrl::SortItems(wxListCtrlCompare fn, long data) | |
1224 | { | |
edccf428 | 1225 | return (ListView_SortItems(GetHwnd(), (PFNLVCOMPARE) fn, data) != 0); |
2bda0e17 KB |
1226 | } |
1227 | ||
edccf428 VZ |
1228 | // ---------------------------------------------------------------------------- |
1229 | // message processing | |
1230 | // ---------------------------------------------------------------------------- | |
1231 | ||
debe6624 | 1232 | bool wxListCtrl::MSWCommand(WXUINT cmd, WXWORD id) |
2bda0e17 | 1233 | { |
0b5efdc7 | 1234 | if (cmd == EN_UPDATE) |
acb62b84 | 1235 | { |
0b5efdc7 VZ |
1236 | wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id); |
1237 | event.SetEventObject( this ); | |
1238 | ProcessCommand(event); | |
1239 | return TRUE; | |
acb62b84 | 1240 | } |
0b5efdc7 | 1241 | else if (cmd == EN_KILLFOCUS) |
acb62b84 | 1242 | { |
0b5efdc7 VZ |
1243 | wxCommandEvent event(wxEVT_KILL_FOCUS, id); |
1244 | event.SetEventObject( this ); | |
1245 | ProcessCommand(event); | |
1246 | return TRUE; | |
acb62b84 | 1247 | } |
edccf428 VZ |
1248 | else |
1249 | return FALSE; | |
0b5efdc7 VZ |
1250 | } |
1251 | ||
a23fd0e1 | 1252 | bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) |
0b5efdc7 | 1253 | { |
bdc72a22 VZ |
1254 | // prepare the event |
1255 | // ----------------- | |
1256 | ||
0b5efdc7 VZ |
1257 | wxListEvent event(wxEVT_NULL, m_windowId); |
1258 | wxEventType eventType = wxEVT_NULL; | |
bdc72a22 VZ |
1259 | NMHDR *nmhdr = (NMHDR *)lParam; |
1260 | switch ( nmhdr->code ) | |
acb62b84 | 1261 | { |
0b5efdc7 | 1262 | case LVN_BEGINRDRAG: |
bdc72a22 | 1263 | eventType = wxEVT_COMMAND_LIST_BEGIN_RDRAG; |
0b5efdc7 | 1264 | // fall through |
cb0f56f9 | 1265 | |
0b5efdc7 VZ |
1266 | case LVN_BEGINDRAG: |
1267 | if ( eventType == wxEVT_NULL ) | |
1268 | { | |
1269 | eventType = wxEVT_COMMAND_LIST_BEGIN_DRAG; | |
1270 | } | |
1271 | ||
1272 | { | |
1273 | NM_LISTVIEW *hdr = (NM_LISTVIEW *)lParam; | |
1274 | event.m_itemIndex = hdr->iItem; | |
1275 | event.m_pointDrag.x = hdr->ptAction.x; | |
1276 | event.m_pointDrag.y = hdr->ptAction.y; | |
1277 | } | |
1278 | break; | |
1279 | ||
1280 | case LVN_BEGINLABELEDIT: | |
1281 | { | |
1282 | eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT; | |
1283 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
edccf428 | 1284 | wxConvertFromMSWListItem(this, event.m_item, info->item, GetHwnd()); |
0b5efdc7 VZ |
1285 | break; |
1286 | } | |
1287 | ||
1288 | case LVN_COLUMNCLICK: | |
1289 | { | |
1290 | eventType = wxEVT_COMMAND_LIST_COL_CLICK; | |
1291 | NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam; | |
1292 | event.m_itemIndex = -1; | |
1293 | event.m_col = hdr->iSubItem; | |
1294 | break; | |
1295 | } | |
5ea47806 | 1296 | |
0b5efdc7 | 1297 | case LVN_DELETEALLITEMS: |
5ea47806 VZ |
1298 | // what's the sense of generating a wxWin event for this when |
1299 | // it's absolutely not portable? | |
1300 | #if 0 | |
1301 | eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS; | |
1302 | event.m_itemIndex = -1; | |
1303 | #endif // 0 | |
1304 | ||
1305 | // return TRUE to suppress all additional LVN_DELETEITEM | |
1306 | // notifications - this makes deleting all items from a list ctrl | |
d62228a6 VZ |
1307 | // much faster |
1308 | *result = TRUE; | |
bdc72a22 | 1309 | |
d62228a6 | 1310 | return TRUE; |
5ea47806 | 1311 | |
0b5efdc7 VZ |
1312 | case LVN_DELETEITEM: |
1313 | { | |
1314 | eventType = wxEVT_COMMAND_LIST_DELETE_ITEM; | |
1315 | NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam; | |
1316 | event.m_itemIndex = hdr->iItem; | |
bdc72a22 VZ |
1317 | |
1318 | if ( m_hasAnyAttr ) | |
1319 | { | |
696e1ea0 | 1320 | delete (wxListItemAttr *)m_attrs.Delete(hdr->iItem); |
bdc72a22 | 1321 | } |
0b5efdc7 | 1322 | } |
bdc72a22 VZ |
1323 | break; |
1324 | ||
0b5efdc7 VZ |
1325 | case LVN_ENDLABELEDIT: |
1326 | { | |
1327 | eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT; | |
1328 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
1ee4ead5 | 1329 | wxConvertFromMSWListItem(this, event.m_item, info->item); |
0b5efdc7 | 1330 | if ( info->item.pszText == NULL || info->item.iItem == -1 ) |
1ee4ead5 | 1331 | return FALSE; |
0b5efdc7 | 1332 | } |
bdc72a22 VZ |
1333 | break; |
1334 | ||
1335 | case LVN_SETDISPINFO: | |
1336 | { | |
1337 | eventType = wxEVT_COMMAND_LIST_SET_INFO; | |
1338 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
1339 | wxConvertFromMSWListItem(this, event.m_item, info->item, GetHwnd()); | |
1340 | } | |
1341 | break; | |
edccf428 | 1342 | |
bdc72a22 | 1343 | case LVN_GETDISPINFO: |
edccf428 VZ |
1344 | // this provokes stack overflow: indeed, wxConvertFromMSWListItem() |
1345 | // sends us WM_NOTIFY! As it doesn't do anything for now, just leave | |
1346 | // it out. | |
1347 | #if 0 | |
0b5efdc7 | 1348 | { |
0b5efdc7 VZ |
1349 | // TODO: some text buffering here, I think |
1350 | // TODO: API for getting Windows to retrieve values | |
1351 | // on demand. | |
1352 | eventType = wxEVT_COMMAND_LIST_GET_INFO; | |
1353 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
edccf428 | 1354 | wxConvertFromMSWListItem(this, event.m_item, info->item, GetHwnd()); |
0b5efdc7 VZ |
1355 | break; |
1356 | } | |
edccf428 | 1357 | #endif // 0 |
bdc72a22 VZ |
1358 | return FALSE; |
1359 | ||
edccf428 | 1360 | |
0b5efdc7 VZ |
1361 | case LVN_INSERTITEM: |
1362 | { | |
1363 | eventType = wxEVT_COMMAND_LIST_INSERT_ITEM; | |
1364 | NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam; | |
1365 | event.m_itemIndex = hdr->iItem; | |
1366 | break; | |
1367 | } | |
bdc72a22 | 1368 | |
0b5efdc7 VZ |
1369 | case LVN_ITEMCHANGED: |
1370 | { | |
1371 | // This needs to be sent to wxListCtrl as a rather more | |
1372 | // concrete event. For now, just detect a selection | |
1373 | // or deselection. | |
1374 | NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam; | |
1375 | if ( (hdr->uNewState & LVIS_SELECTED) && !(hdr->uOldState & LVIS_SELECTED) ) | |
1376 | { | |
1377 | eventType = wxEVT_COMMAND_LIST_ITEM_SELECTED; | |
1378 | event.m_itemIndex = hdr->iItem; | |
1379 | } | |
1380 | else if ( !(hdr->uNewState & LVIS_SELECTED) && (hdr->uOldState & LVIS_SELECTED) ) | |
1381 | { | |
1382 | eventType = wxEVT_COMMAND_LIST_ITEM_DESELECTED; | |
1383 | event.m_itemIndex = hdr->iItem; | |
1384 | } | |
1385 | else | |
1386 | return FALSE; | |
1387 | break; | |
1388 | } | |
edccf428 | 1389 | |
0b5efdc7 VZ |
1390 | case LVN_KEYDOWN: |
1391 | { | |
0b5efdc7 | 1392 | LV_KEYDOWN *info = (LV_KEYDOWN *)lParam; |
edccf428 VZ |
1393 | WORD wVKey = info->wVKey; |
1394 | ||
1395 | // get the current selection | |
1396 | long lItem = GetNextItem(-1, | |
1397 | wxLIST_NEXT_ALL, | |
1398 | wxLIST_STATE_SELECTED); | |
1399 | ||
1400 | // <Enter> or <Space> activate the selected item if any | |
1401 | if ( lItem != -1 && (wVKey == VK_RETURN || wVKey == VK_SPACE) ) | |
1402 | { | |
1403 | // TODO this behaviour probably should be optional | |
1404 | eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED; | |
1405 | event.m_itemIndex = lItem; | |
1406 | } | |
1407 | else | |
1408 | { | |
1409 | eventType = wxEVT_COMMAND_LIST_KEY_DOWN; | |
1410 | event.m_code = wxCharCodeMSWToWX(wVKey); | |
1411 | } | |
0b5efdc7 VZ |
1412 | break; |
1413 | } | |
edccf428 VZ |
1414 | |
1415 | case NM_DBLCLK: | |
1416 | // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do | |
1417 | // anything else | |
1418 | if ( wxControl::MSWOnNotify(idCtrl, lParam, result) ) | |
1419 | { | |
1420 | return TRUE; | |
1421 | } | |
1422 | ||
1423 | // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event | |
5bd3a2da | 1424 | // if it happened on an item (and not on empty place) |
1ee4ead5 | 1425 | { |
1ee4ead5 | 1426 | NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam; |
5bd3a2da VZ |
1427 | if ( hdr->iItem == -1 ) |
1428 | { | |
1429 | // not on item | |
1430 | return FALSE; | |
1431 | } | |
1432 | ||
1433 | eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED; | |
1ee4ead5 VZ |
1434 | event.m_itemIndex = hdr->iItem; |
1435 | } | |
edccf428 | 1436 | break; |
cb0f56f9 VZ |
1437 | |
1438 | case NM_RCLICK: | |
1439 | /* TECH NOTE: NM_RCLICK isn't really good enough here. We want to | |
1440 | subclass and check for the actual WM_RBUTTONDOWN message, because | |
1441 | NM_RCLICK waits for the WM_RBUTTONUP message as well before firing off. | |
1442 | We want to have notify events for both down -and- up. */ | |
1443 | { | |
1444 | // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(), don't do | |
1445 | // anything else | |
1446 | if ( wxControl::MSWOnNotify(idCtrl, lParam, result) ) { | |
1447 | return TRUE; | |
1448 | } | |
1449 | ||
1450 | // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event | |
1451 | LV_HITTESTINFO lvhti; | |
11c7d5b6 VZ |
1452 | wxZeroMemory(lvhti); |
1453 | ||
cb0f56f9 VZ |
1454 | ::GetCursorPos(&(lvhti.pt)); |
1455 | ::ScreenToClient(GetHwnd(),&(lvhti.pt)); | |
1456 | if ( ListView_HitTest(GetHwnd(),&lvhti) != -1 ) | |
1457 | { | |
cb0f56f9 VZ |
1458 | if ( lvhti.flags & LVHT_ONITEM ) |
1459 | { | |
1460 | eventType = wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK; | |
1461 | event.m_itemIndex = lvhti.iItem; | |
1462 | } | |
9bfa7bfc | 1463 | } |
cb0f56f9 VZ |
1464 | } |
1465 | break; | |
1466 | ||
bdc72a22 VZ |
1467 | #if 0 |
1468 | case NM_MCLICK: // ***** THERE IS NO NM_MCLICK. Subclass anyone? ****** | |
1469 | { | |
1470 | // if the user processes it in wxEVT_COMMAND_MIDDLE_CLICK(), don't do | |
1471 | // anything else | |
1472 | if ( wxControl::MSWOnNotify(idCtrl, lParam, result) ) | |
1473 | { | |
1474 | return TRUE; | |
1475 | } | |
cb0f56f9 | 1476 | |
bdc72a22 VZ |
1477 | // else translate it into wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK event |
1478 | eventType = wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK; | |
1479 | NMITEMACTIVATE* hdr = (NMITEMACTIVATE*)lParam; | |
1480 | event.m_itemIndex = hdr->iItem; | |
1481 | } | |
1482 | break; | |
1483 | #endif // 0 | |
1484 | ||
6ecfe2ac | 1485 | #if defined(_WIN32_IE) && _WIN32_IE >= 0x300 |
bdc72a22 | 1486 | case NM_CUSTOMDRAW: |
0b5efdc7 | 1487 | { |
bdc72a22 VZ |
1488 | LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam; |
1489 | NMCUSTOMDRAW& nmcd = lplvcd->nmcd; | |
1490 | switch( nmcd.dwDrawStage ) | |
1491 | { | |
d62228a6 | 1492 | case CDDS_PREPAINT: |
bdc72a22 VZ |
1493 | // if we've got any items with non standard attributes, |
1494 | // notify us before painting each item | |
1495 | *result = m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW | |
1496 | : CDRF_DODEFAULT; | |
1497 | return TRUE; | |
1498 | ||
1499 | case CDDS_ITEMPREPAINT: | |
1500 | { | |
d62228a6 VZ |
1501 | wxListItemAttr *attr = |
1502 | (wxListItemAttr *)m_attrs.Get(nmcd.dwItemSpec); | |
1503 | ||
1504 | if ( !attr ) | |
bdc72a22 VZ |
1505 | { |
1506 | // nothing to do for this item | |
1507 | return CDRF_DODEFAULT; | |
1508 | } | |
1509 | ||
d62228a6 VZ |
1510 | HFONT hFont; |
1511 | wxColour colText, colBack; | |
1512 | if ( attr->HasFont() ) | |
1513 | { | |
1514 | wxFont font = attr->GetFont(); | |
1515 | hFont = (HFONT)font.GetResourceHandle(); | |
1516 | } | |
1517 | else | |
1518 | { | |
1519 | hFont = 0; | |
1520 | } | |
1521 | ||
1522 | if ( attr->HasTextColour() ) | |
1523 | { | |
1524 | colText = attr->GetTextColour(); | |
1525 | } | |
1526 | else | |
1527 | { | |
1528 | colText = GetTextColour(); | |
1529 | } | |
1530 | ||
1531 | if ( attr->HasBackgroundColour() ) | |
1532 | { | |
1533 | colBack = attr->GetBackgroundColour(); | |
1534 | } | |
1535 | else | |
1536 | { | |
1537 | colBack = GetBackgroundColour(); | |
1538 | } | |
1539 | ||
1540 | // note that if we wanted to set colours for | |
1541 | // individual columns (subitems), we would have | |
1542 | // returned CDRF_NOTIFYSUBITEMREDRAW from here | |
1543 | if ( hFont ) | |
1544 | { | |
1545 | ::SelectObject(nmcd.hdc, hFont); | |
bdc72a22 | 1546 | |
d62228a6 VZ |
1547 | *result = CDRF_NEWFONT; |
1548 | } | |
1549 | else | |
1550 | { | |
1551 | *result = CDRF_DODEFAULT; | |
1552 | } | |
bdc72a22 | 1553 | |
d62228a6 VZ |
1554 | lplvcd->clrText = wxColourToRGB(colText); |
1555 | lplvcd->clrTextBk = wxColourToRGB(colBack); | |
bdc72a22 VZ |
1556 | |
1557 | return TRUE; | |
1558 | } | |
d62228a6 VZ |
1559 | |
1560 | default: | |
1561 | *result = CDRF_DODEFAULT; | |
1562 | return TRUE; | |
bdc72a22 | 1563 | } |
0b5efdc7 | 1564 | } |
bdc72a22 | 1565 | break; |
6ecfe2ac | 1566 | #endif // _WIN32_IE >= 0x300 |
0b5efdc7 | 1567 | |
edccf428 | 1568 | default: |
a23fd0e1 | 1569 | return wxControl::MSWOnNotify(idCtrl, lParam, result); |
acb62b84 VZ |
1570 | } |
1571 | ||
bdc72a22 VZ |
1572 | // process the event |
1573 | // ----------------- | |
1574 | ||
0b5efdc7 VZ |
1575 | event.SetEventObject( this ); |
1576 | event.SetEventType(eventType); | |
acb62b84 | 1577 | |
0b5efdc7 VZ |
1578 | if ( !GetEventHandler()->ProcessEvent(event) ) |
1579 | return FALSE; | |
acb62b84 | 1580 | |
bdc72a22 VZ |
1581 | // post processing |
1582 | // --------------- | |
1583 | ||
1584 | switch ( (int)nmhdr->code ) | |
acb62b84 | 1585 | { |
1ee4ead5 | 1586 | case LVN_GETDISPINFO: |
0b5efdc7 | 1587 | { |
1ee4ead5 VZ |
1588 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; |
1589 | if ( info->item.mask & LVIF_TEXT ) | |
1590 | { | |
1591 | if ( !event.m_item.m_text.IsNull() ) | |
1592 | { | |
1593 | info->item.pszText = AddPool(event.m_item.m_text); | |
1594 | info->item.cchTextMax = wxStrlen(info->item.pszText) + 1; | |
1595 | } | |
1596 | } | |
1597 | // wxConvertToMSWListItem(this, event.m_item, info->item); | |
1598 | break; | |
0b5efdc7 | 1599 | } |
1ee4ead5 VZ |
1600 | case LVN_ENDLABELEDIT: |
1601 | { | |
1602 | *result = event.IsAllowed(); | |
1603 | return TRUE; | |
1604 | } | |
1605 | default: | |
1606 | break; | |
acb62b84 | 1607 | } |
acb62b84 | 1608 | |
0b5efdc7 | 1609 | *result = !event.IsAllowed(); |
fd3f686c | 1610 | |
0b5efdc7 | 1611 | return TRUE; |
2bda0e17 KB |
1612 | } |
1613 | ||
837e5743 | 1614 | wxChar *wxListCtrl::AddPool(const wxString& str) |
2bda0e17 | 1615 | { |
0b5efdc7 VZ |
1616 | // Remove the first element if 3 strings exist |
1617 | if ( m_stringPool.Number() == 3 ) | |
1618 | { | |
1619 | wxNode *node = m_stringPool.First(); | |
1620 | delete[] (char *)node->Data(); | |
1621 | delete node; | |
1622 | } | |
837e5743 OK |
1623 | wxNode *node = m_stringPool.Add(WXSTRINGCAST str); |
1624 | return (wxChar *)node->Data(); | |
2bda0e17 KB |
1625 | } |
1626 | ||
edccf428 VZ |
1627 | // ---------------------------------------------------------------------------- |
1628 | // wxListItem | |
1629 | // ---------------------------------------------------------------------------- | |
1630 | ||
2bda0e17 | 1631 | // List item structure |
0b5efdc7 | 1632 | wxListItem::wxListItem() |
2bda0e17 KB |
1633 | { |
1634 | m_mask = 0; | |
1635 | m_itemId = 0; | |
1636 | m_col = 0; | |
1637 | m_state = 0; | |
1638 | m_stateMask = 0; | |
1639 | m_image = 0; | |
0b5efdc7 | 1640 | m_data = 0; |
2bda0e17 | 1641 | |
0b5efdc7 VZ |
1642 | m_format = wxLIST_FORMAT_CENTRE; |
1643 | m_width = 0; | |
bdc72a22 VZ |
1644 | |
1645 | m_attr = NULL; | |
2bda0e17 KB |
1646 | } |
1647 | ||
9b00bb16 RR |
1648 | void wxListItem::Clear() |
1649 | { | |
1650 | m_mask = 0; | |
1651 | m_itemId = 0; | |
1652 | m_col = 0; | |
1653 | m_state = 0; | |
1654 | m_stateMask = 0; | |
1655 | m_image = 0; | |
1656 | m_data = 0; | |
1657 | m_format = wxLIST_FORMAT_CENTRE; | |
1658 | m_width = 0; | |
1659 | m_text = wxEmptyString; | |
1660 | ||
1661 | if (m_attr) delete m_attr; | |
1662 | m_attr = NULL; | |
1663 | } | |
1664 | ||
1665 | void wxListItem::ClearAttributes() | |
1666 | { | |
1667 | if (m_attr) delete m_attr; | |
1668 | m_attr = NULL; | |
1669 | } | |
1670 | ||
2bda0e17 KB |
1671 | static void wxConvertFromMSWListItem(const wxListCtrl *ctrl, wxListItem& info, LV_ITEM& lvItem, HWND getFullInfo) |
1672 | { | |
0b5efdc7 VZ |
1673 | info.m_data = lvItem.lParam; |
1674 | info.m_mask = 0; | |
1675 | info.m_state = 0; | |
1676 | info.m_stateMask = 0; | |
1677 | info.m_itemId = lvItem.iItem; | |
acb62b84 | 1678 | |
0b5efdc7 | 1679 | long oldMask = lvItem.mask; |
acb62b84 | 1680 | |
0b5efdc7 VZ |
1681 | bool needText = FALSE; |
1682 | if (getFullInfo != 0) | |
acb62b84 | 1683 | { |
0b5efdc7 VZ |
1684 | if ( lvItem.mask & LVIF_TEXT ) |
1685 | needText = FALSE; | |
1686 | else | |
1687 | needText = TRUE; | |
acb62b84 | 1688 | |
0b5efdc7 VZ |
1689 | if ( needText ) |
1690 | { | |
837e5743 | 1691 | lvItem.pszText = new wxChar[513]; |
0b5efdc7 VZ |
1692 | lvItem.cchTextMax = 512; |
1693 | } | |
edccf428 VZ |
1694 | // lvItem.mask |= TVIF_HANDLE | TVIF_STATE | TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_CHILDREN | TVIF_PARAM; |
1695 | lvItem.mask |= LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM; | |
1696 | ::SendMessage(getFullInfo, LVM_GETITEM, 0, (LPARAM)& lvItem); | |
0b5efdc7 | 1697 | } |
acb62b84 | 1698 | |
0b5efdc7 | 1699 | if ( lvItem.mask & LVIF_STATE ) |
acb62b84 | 1700 | { |
0b5efdc7 VZ |
1701 | info.m_mask |= wxLIST_MASK_STATE; |
1702 | ||
1703 | if ( lvItem.stateMask & LVIS_CUT) | |
1704 | { | |
edccf428 | 1705 | info.m_stateMask |= wxLIST_STATE_CUT; |
0b5efdc7 | 1706 | if ( lvItem.state & LVIS_CUT ) |
edccf428 | 1707 | info.m_state |= wxLIST_STATE_CUT; |
0b5efdc7 VZ |
1708 | } |
1709 | if ( lvItem.stateMask & LVIS_DROPHILITED) | |
1710 | { | |
edccf428 | 1711 | info.m_stateMask |= wxLIST_STATE_DROPHILITED; |
0b5efdc7 | 1712 | if ( lvItem.state & LVIS_DROPHILITED ) |
edccf428 | 1713 | info.m_state |= wxLIST_STATE_DROPHILITED; |
0b5efdc7 VZ |
1714 | } |
1715 | if ( lvItem.stateMask & LVIS_FOCUSED) | |
1716 | { | |
edccf428 | 1717 | info.m_stateMask |= wxLIST_STATE_FOCUSED; |
0b5efdc7 | 1718 | if ( lvItem.state & LVIS_FOCUSED ) |
edccf428 | 1719 | info.m_state |= wxLIST_STATE_FOCUSED; |
0b5efdc7 VZ |
1720 | } |
1721 | if ( lvItem.stateMask & LVIS_SELECTED) | |
1722 | { | |
edccf428 | 1723 | info.m_stateMask |= wxLIST_STATE_SELECTED; |
0b5efdc7 | 1724 | if ( lvItem.state & LVIS_SELECTED ) |
edccf428 | 1725 | info.m_state |= wxLIST_STATE_SELECTED; |
0b5efdc7 | 1726 | } |
acb62b84 | 1727 | } |
0b5efdc7 VZ |
1728 | |
1729 | if ( lvItem.mask & LVIF_TEXT ) | |
acb62b84 | 1730 | { |
0b5efdc7 VZ |
1731 | info.m_mask |= wxLIST_MASK_TEXT; |
1732 | info.m_text = lvItem.pszText; | |
acb62b84 | 1733 | } |
0b5efdc7 | 1734 | if ( lvItem.mask & LVIF_IMAGE ) |
acb62b84 | 1735 | { |
0b5efdc7 VZ |
1736 | info.m_mask |= wxLIST_MASK_IMAGE; |
1737 | info.m_image = lvItem.iImage; | |
acb62b84 | 1738 | } |
0b5efdc7 VZ |
1739 | if ( lvItem.mask & LVIF_PARAM ) |
1740 | info.m_mask |= wxLIST_MASK_DATA; | |
1741 | if ( lvItem.mask & LVIF_DI_SETITEM ) | |
1742 | info.m_mask |= wxLIST_SET_ITEM; | |
1743 | info.m_col = lvItem.iSubItem; | |
1744 | ||
1745 | if (needText) | |
acb62b84 | 1746 | { |
0b5efdc7 VZ |
1747 | if (lvItem.pszText) |
1748 | delete[] lvItem.pszText; | |
acb62b84 | 1749 | } |
edccf428 | 1750 | lvItem.mask = oldMask; |
2bda0e17 KB |
1751 | } |
1752 | ||
1753 | static void wxConvertToMSWListItem(const wxListCtrl *ctrl, wxListItem& info, LV_ITEM& lvItem) | |
1754 | { | |
edccf428 | 1755 | lvItem.iItem = (int) info.m_itemId; |
acb62b84 | 1756 | |
edccf428 | 1757 | lvItem.iImage = info.m_image; |
0b5efdc7 VZ |
1758 | lvItem.lParam = info.m_data; |
1759 | lvItem.stateMask = 0; | |
1760 | lvItem.state = 0; | |
1761 | lvItem.mask = 0; | |
1762 | lvItem.iSubItem = info.m_col; | |
acb62b84 | 1763 | |
0b5efdc7 | 1764 | if (info.m_mask & wxLIST_MASK_STATE) |
acb62b84 | 1765 | { |
edccf428 | 1766 | lvItem.mask |= LVIF_STATE; |
0b5efdc7 VZ |
1767 | if (info.m_stateMask & wxLIST_STATE_CUT) |
1768 | { | |
edccf428 | 1769 | lvItem.stateMask |= LVIS_CUT; |
0b5efdc7 VZ |
1770 | if (info.m_state & wxLIST_STATE_CUT) |
1771 | lvItem.state |= LVIS_CUT; | |
1772 | } | |
1773 | if (info.m_stateMask & wxLIST_STATE_DROPHILITED) | |
1774 | { | |
1775 | lvItem.stateMask |= LVIS_DROPHILITED; | |
1776 | if (info.m_state & wxLIST_STATE_DROPHILITED) | |
1777 | lvItem.state |= LVIS_DROPHILITED; | |
1778 | } | |
1779 | if (info.m_stateMask & wxLIST_STATE_FOCUSED) | |
1780 | { | |
1781 | lvItem.stateMask |= LVIS_FOCUSED; | |
1782 | if (info.m_state & wxLIST_STATE_FOCUSED) | |
1783 | lvItem.state |= LVIS_FOCUSED; | |
1784 | } | |
1785 | if (info.m_stateMask & wxLIST_STATE_SELECTED) | |
1786 | { | |
1787 | lvItem.stateMask |= LVIS_SELECTED; | |
1788 | if (info.m_state & wxLIST_STATE_SELECTED) | |
1789 | lvItem.state |= LVIS_SELECTED; | |
1790 | } | |
acb62b84 | 1791 | } |
acb62b84 | 1792 | |
0b5efdc7 | 1793 | if (info.m_mask & wxLIST_MASK_TEXT) |
acb62b84 | 1794 | { |
edccf428 | 1795 | lvItem.mask |= LVIF_TEXT; |
0b5efdc7 VZ |
1796 | if ( ctrl->GetWindowStyleFlag() & wxLC_USER_TEXT ) |
1797 | { | |
1798 | lvItem.pszText = LPSTR_TEXTCALLBACK; | |
1799 | } | |
1800 | else | |
1801 | { | |
edccf428 | 1802 | lvItem.pszText = WXSTRINGCAST info.m_text; |
0b5efdc7 VZ |
1803 | if ( lvItem.pszText ) |
1804 | lvItem.cchTextMax = info.m_text.Length(); | |
1805 | else | |
1806 | lvItem.cchTextMax = 0; | |
1807 | } | |
acb62b84 | 1808 | } |
0b5efdc7 | 1809 | if (info.m_mask & wxLIST_MASK_IMAGE) |
edccf428 | 1810 | lvItem.mask |= LVIF_IMAGE; |
0b5efdc7 | 1811 | if (info.m_mask & wxLIST_MASK_DATA) |
edccf428 | 1812 | lvItem.mask |= LVIF_PARAM; |
2bda0e17 KB |
1813 | } |
1814 | ||
edccf428 | 1815 | // ---------------------------------------------------------------------------- |
2bda0e17 | 1816 | // List event |
edccf428 VZ |
1817 | // ---------------------------------------------------------------------------- |
1818 | ||
92976ab6 | 1819 | IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent) |
2bda0e17 | 1820 | |
fd3f686c | 1821 | wxListEvent::wxListEvent(wxEventType commandType, int id) |
edccf428 | 1822 | : wxNotifyEvent(commandType, id) |
2bda0e17 | 1823 | { |
0b5efdc7 VZ |
1824 | m_code = 0; |
1825 | m_itemIndex = 0; | |
5d47c8a0 | 1826 | m_oldItemIndex = 0; |
0b5efdc7 VZ |
1827 | m_col = 0; |
1828 | m_cancelled = FALSE; | |
2bda0e17 KB |
1829 | } |
1830 | ||
edccf428 | 1831 | #endif // __WIN95__ |
2bda0e17 | 1832 |