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