]> git.saurik.com Git - wxWidgets.git/blame - src/msw/listctrl.cpp
Updates for Y positioning
[wxWidgets.git] / src / msw / listctrl.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
648bec3e 2// Name: src/msw/listctrl.cpp
2bda0e17
KB
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
98ec9dbe 32#if wxUSE_LISTCTRL && defined(__WIN95__)
9f303149 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"
2bda0e17 43#include "wx/listctrl.h"
68fdcf29 44#include "wx/dcclient.h"
2bda0e17
KB
45
46#include "wx/msw/private.h"
47
ae090fdb 48#if ((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
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
30a72e62
VZ
67#ifndef LVS_OWNERDATA
68 #define LVS_OWNERDATA 0x1000
69#endif
70
82dfea77
VZ
71// mingw32/cygwin don't have declarations for comctl32.dll 4.70+ stuff
72#ifndef NM_CACHEHINT
73 typedef struct tagNMLVCACHEHINT
74 {
75 NMHDR hdr;
76 int iFrom;
77 int iTo;
78 } NMLVCACHEHINT;
79
80 #define NM_CACHEHINT NMLVCACHEHINT
81#endif
82
83#ifndef LVN_ODCACHEHINT
84 #define LVN_ODCACHEHINT (-113)
85#endif
86
0b52d3cf
VS
87#ifndef ListView_GetHeader
88 #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0)
89#endif
90
91#ifndef LVM_GETHEADER
92 #define LVM_GETHEADER (LVM_FIRST+31)
93#endif
94
95#ifndef Header_GetItemRect
96 #define Header_GetItemRect(w,i,r) \
97 (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r))
98#endif
99
100#ifndef HDM_GETITEMRECT
101 #define HDM_GETITEMRECT (HDM_FIRST+7)
102#endif
103
244531bc
VS
104#ifndef LVCF_IMAGE
105 #define LVCF_IMAGE 0x0010
106#endif
107
108#ifndef LVCFMT_BITMAP_ON_RIGHT
109 #define LVCFMT_BITMAP_ON_RIGHT 0x1000
110#endif
111
edccf428
VZ
112// ----------------------------------------------------------------------------
113// private functions
114// ----------------------------------------------------------------------------
2bda0e17 115
8dff2b5c
VZ
116// convert our state and mask flags to LV_ITEM constants
117static void wxConvertToMSWFlags(long state, long mask, LV_ITEM& lvItem);
118
119// convert wxListItem to LV_ITEM
120static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
121 const wxListItem& info, LV_ITEM& lvItem);
122
123// convert LV_ITEM to wxListItem
124static void wxConvertFromMSWListItem(HWND hwndListCtrl,
125 wxListItem& info,
126 /* const */ LV_ITEM& lvItem);
2bda0e17 127
6f806543
VZ
128// convert our wxListItem to LV_COLUMN
129static void wxConvertToMSWListCol(int col, const wxListItem& item,
130 LV_COLUMN& lvCol);
131
edccf428 132// ----------------------------------------------------------------------------
2e4df4bf 133// events
edccf428
VZ
134// ----------------------------------------------------------------------------
135
2e4df4bf
VZ
136DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG)
137DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG)
138DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT)
139DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT)
140DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM)
141DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS)
142DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO)
143DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO)
144DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED)
145DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED)
146DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN)
147DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM)
148DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK)
11358d39
VZ
149DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK)
150DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG)
151DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING)
152DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG)
2e4df4bf
VZ
153DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK)
154DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK)
155DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED)
0ddefeb0 156DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED)
614391dc 157DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT)
2e4df4bf 158
8f177c8e 159IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl)
bf9b6266 160IMPLEMENT_DYNAMIC_CLASS(wxListView, wxListCtrl)
8f177c8e 161IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject)
2bda0e17 162
2d33aec9
VZ
163IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent)
164
2702ed5a
JS
165BEGIN_EVENT_TABLE(wxListCtrl, wxControl)
166 EVT_PAINT(wxListCtrl::OnPaint)
167END_EVENT_TABLE()
168
edccf428
VZ
169// ============================================================================
170// implementation
171// ============================================================================
172
173// ----------------------------------------------------------------------------
174// wxListCtrl construction
175// ----------------------------------------------------------------------------
176
bdc72a22 177void wxListCtrl::Init()
2bda0e17 178{
0b5efdc7
VZ
179 m_imageListNormal = NULL;
180 m_imageListSmall = NULL;
181 m_imageListState = NULL;
2e12c11a 182 m_ownsImageListNormal = m_ownsImageListSmall = m_ownsImageListState = FALSE;
0b5efdc7 183 m_baseStyle = 0;
2bda0e17 184 m_colCount = 0;
bbcdf8bc 185 m_textCtrl = NULL;
bdc72a22 186 m_hasAnyAttr = FALSE;
2bda0e17
KB
187}
188
0b5efdc7
VZ
189bool wxListCtrl::Create(wxWindow *parent,
190 wxWindowID id,
191 const wxPoint& pos,
192 const wxSize& size,
193 long style,
194 const wxValidator& validator,
195 const wxString& name)
2bda0e17 196{
11b6a93b 197#if wxUSE_VALIDATORS
0b5efdc7 198 SetValidator(validator);
11b6a93b
VZ
199#endif // wxUSE_VALIDATORS
200
0b5efdc7 201 SetName(name);
2bda0e17 202
0b5efdc7
VZ
203 int x = pos.x;
204 int y = pos.y;
205 int width = size.x;
206 int height = size.y;
2bda0e17 207
0b5efdc7 208 m_windowStyle = style;
2bda0e17 209
0b5efdc7 210 SetParent(parent);
2bda0e17 211
0b5efdc7
VZ
212 if (width <= 0)
213 width = 100;
214 if (height <= 0)
215 height = 30;
216 if (x < 0)
217 x = 0;
218 if (y < 0)
219 y = 0;
2bda0e17 220
0b5efdc7 221 m_windowId = (id == -1) ? NewControlId() : id;
2bda0e17 222
edccf428
VZ
223 DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP |
224 LVS_SHAREIMAGELISTS | LVS_SHOWSELALWAYS;
b0766406
JS
225
226 if ( m_windowStyle & wxCLIP_SIBLINGS )
227 wstyle |= WS_CLIPSIBLINGS;
228
edccf428
VZ
229 if ( wxStyleHasBorder(m_windowStyle) )
230 wstyle |= WS_BORDER;
231 m_baseStyle = wstyle;
232
233 if ( !DoCreateControl(x, y, width, height) )
234 return FALSE;
235
236 if (parent)
237 parent->AddChild(this);
238
239 return TRUE;
240}
241
242bool wxListCtrl::DoCreateControl(int x, int y, int w, int h)
243{
244 DWORD wstyle = m_baseStyle;
2bda0e17 245
0b5efdc7 246 bool want3D;
edccf428 247 WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D);
2bda0e17 248
0b5efdc7
VZ
249 // Even with extended styles, need to combine with WS_BORDER
250 // for them to look right.
edccf428 251 if ( want3D )
0b5efdc7 252 wstyle |= WS_BORDER;
2bda0e17 253
0b5efdc7
VZ
254 long oldStyle = 0; // Dummy
255 wstyle |= ConvertToMSWStyle(oldStyle, m_windowStyle);
2bda0e17 256
0b5efdc7
VZ
257 // Create the ListView control.
258 m_hWnd = (WXHWND)CreateWindowEx(exStyle,
259 WC_LISTVIEW,
223d09f6 260 wxT(""),
0b5efdc7 261 wstyle,
edccf428
VZ
262 x, y, w, h,
263 GetWinHwnd(GetParent()),
0b5efdc7
VZ
264 (HMENU)m_windowId,
265 wxGetInstance(),
266 NULL);
f8352807 267
edccf428
VZ
268 if ( !m_hWnd )
269 {
f6bcfd97 270 wxLogError(_("Can't create list control window, check that comctl32.dll is installed."));
0b5efdc7
VZ
271
272 return FALSE;
273 }
274
275 // for comctl32.dll v 4.70+ we want to have this attribute because it's
276 // prettier (and also because wxGTK does it like this)
225fe9d6 277 if ( (wstyle & LVS_REPORT) && wxTheApp->GetComCtl32Version() >= 470 )
0b5efdc7 278 {
225fe9d6
VZ
279 ::SendMessage(GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE,
280 0, LVS_EX_FULLROWSELECT);
0b5efdc7 281 }
f8352807 282
a756f210 283 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
edccf428 284 SetForegroundColour(GetParent()->GetForegroundColour());
2bda0e17 285
edccf428 286 SubclassWin(m_hWnd);
2bda0e17 287
0b5efdc7 288 return TRUE;
2bda0e17
KB
289}
290
edccf428
VZ
291void wxListCtrl::UpdateStyle()
292{
293 if ( GetHWND() )
294 {
295 // The new window view style
296 long dummy;
297 DWORD dwStyleNew = ConvertToMSWStyle(dummy, m_windowStyle);
298 dwStyleNew |= m_baseStyle;
299
910484a6 300 // Get the current window style.
edccf428
VZ
301 DWORD dwStyleOld = ::GetWindowLong(GetHwnd(), GWL_STYLE);
302
910484a6 303 // Only set the window style if the view bits have changed.
edccf428
VZ
304 if ( dwStyleOld != dwStyleNew )
305 {
306 ::SetWindowLong(GetHwnd(), GWL_STYLE, dwStyleNew);
307 }
308 }
309}
310
91b4c08d 311void wxListCtrl::FreeAllAttrs(bool dontRecreate)
2bda0e17 312{
d62228a6
VZ
313 if ( m_hasAnyAttr )
314 {
315 for ( wxNode *node = m_attrs.Next(); node; node = m_attrs.Next() )
316 {
317 delete (wxListItemAttr *)node->Data();
318 }
6932a32c
VZ
319
320 m_attrs.Destroy();
91b4c08d
VZ
321 if ( !dontRecreate )
322 {
323 m_attrs.Create(wxKEY_INTEGER, 1000); // just as def ctor
324 }
6932a32c
VZ
325
326 m_hasAnyAttr = FALSE;
d62228a6 327 }
6932a32c 328}
d62228a6 329
6932a32c
VZ
330wxListCtrl::~wxListCtrl()
331{
91b4c08d
VZ
332 FreeAllAttrs(TRUE /* no need to recreate hash any more */);
333
d62228a6 334 if ( m_textCtrl )
bbcdf8bc 335 {
0b5efdc7 336 m_textCtrl->SetHWND(0);
7bf1474a 337 m_textCtrl->UnsubclassWin();
0b5efdc7
VZ
338 delete m_textCtrl;
339 m_textCtrl = NULL;
bbcdf8bc 340 }
33ac7e6f 341
2e12c11a
VS
342 if (m_ownsImageListNormal) delete m_imageListNormal;
343 if (m_ownsImageListSmall) delete m_imageListSmall;
344 if (m_ownsImageListState) delete m_imageListState;
2bda0e17
KB
345}
346
edccf428
VZ
347// ----------------------------------------------------------------------------
348// set/get/change style
349// ----------------------------------------------------------------------------
350
2bda0e17 351// Add or remove a single window style
debe6624 352void wxListCtrl::SetSingleStyle(long style, bool add)
2bda0e17 353{
0b5efdc7 354 long flag = GetWindowStyleFlag();
2bda0e17 355
0b5efdc7 356 // Get rid of conflicting styles
acb62b84
VZ
357 if ( add )
358 {
0b5efdc7 359 if ( style & wxLC_MASK_TYPE)
edccf428 360 flag = flag & ~wxLC_MASK_TYPE;
0b5efdc7 361 if ( style & wxLC_MASK_ALIGN )
edccf428 362 flag = flag & ~wxLC_MASK_ALIGN;
0b5efdc7 363 if ( style & wxLC_MASK_SORT )
edccf428 364 flag = flag & ~wxLC_MASK_SORT;
acb62b84 365 }
2bda0e17 366
0b5efdc7
VZ
367 if ( flag & style )
368 {
369 if ( !add )
370 flag -= style;
371 }
372 else
373 {
374 if ( add )
375 {
376 flag |= style;
377 }
378 }
379
380 m_windowStyle = flag;
2bda0e17 381
edccf428 382 UpdateStyle();
2bda0e17
KB
383}
384
385// Set the whole window style
debe6624 386void wxListCtrl::SetWindowStyleFlag(long flag)
2bda0e17 387{
0b5efdc7 388 m_windowStyle = flag;
2bda0e17 389
edccf428 390 UpdateStyle();
2bda0e17
KB
391}
392
0b5efdc7
VZ
393// Can be just a single style, or a bitlist
394long wxListCtrl::ConvertToMSWStyle(long& oldStyle, long style) const
2bda0e17 395{
0b5efdc7
VZ
396 long wstyle = 0;
397 if ( style & wxLC_ICON )
398 {
399 if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON )
400 oldStyle -= LVS_SMALLICON;
401 if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT )
402 oldStyle -= LVS_REPORT;
403 if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST )
404 oldStyle -= LVS_LIST;
405 wstyle |= LVS_ICON;
406 }
407
408 if ( style & wxLC_SMALL_ICON )
409 {
410 if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON )
411 oldStyle -= LVS_ICON;
412 if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT )
413 oldStyle -= LVS_REPORT;
414 if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST )
415 oldStyle -= LVS_LIST;
416 wstyle |= LVS_SMALLICON;
417 }
418
419 if ( style & wxLC_LIST )
420 {
421 if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON )
422 oldStyle -= LVS_ICON;
423 if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT )
424 oldStyle -= LVS_REPORT;
425 if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON )
426 oldStyle -= LVS_SMALLICON;
427 wstyle |= LVS_LIST;
428 }
2bda0e17 429
0b5efdc7
VZ
430 if ( style & wxLC_REPORT )
431 {
432 if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON )
433 oldStyle -= LVS_ICON;
434 if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST )
435 oldStyle -= LVS_LIST;
436 if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON )
437 oldStyle -= LVS_SMALLICON;
438
439 wstyle |= LVS_REPORT;
440 }
2bda0e17 441
0b5efdc7
VZ
442 if ( style & wxLC_ALIGN_LEFT )
443 {
444 if ( oldStyle & LVS_ALIGNTOP )
445 oldStyle -= LVS_ALIGNTOP;
446 wstyle |= LVS_ALIGNLEFT;
447 }
2bda0e17 448
0b5efdc7
VZ
449 if ( style & wxLC_ALIGN_TOP )
450 {
451 if ( oldStyle & LVS_ALIGNLEFT )
452 oldStyle -= LVS_ALIGNLEFT;
453 wstyle |= LVS_ALIGNTOP;
454 }
2bda0e17 455
0b5efdc7
VZ
456 if ( style & wxLC_AUTOARRANGE )
457 wstyle |= LVS_AUTOARRANGE;
2bda0e17 458
0b5efdc7
VZ
459 if ( style & wxLC_NO_SORT_HEADER )
460 wstyle |= LVS_NOSORTHEADER;
2bda0e17 461
0b5efdc7
VZ
462 if ( style & wxLC_NO_HEADER )
463 wstyle |= LVS_NOCOLUMNHEADER;
464
465 if ( style & wxLC_EDIT_LABELS )
466 wstyle |= LVS_EDITLABELS;
467
468 if ( style & wxLC_SINGLE_SEL )
469 wstyle |= LVS_SINGLESEL;
470
471 if ( style & wxLC_SORT_ASCENDING )
472 {
473 if ( oldStyle & LVS_SORTDESCENDING )
474 oldStyle -= LVS_SORTDESCENDING;
475 wstyle |= LVS_SORTASCENDING;
476 }
477
478 if ( style & wxLC_SORT_DESCENDING )
479 {
480 if ( oldStyle & LVS_SORTASCENDING )
481 oldStyle -= LVS_SORTASCENDING;
482 wstyle |= LVS_SORTDESCENDING;
483 }
484
bf9b6266 485#if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
98ec9dbe
VZ
486 if ( style & wxLC_VIRTUAL )
487 {
30a72e62
VZ
488 int ver = wxTheApp->GetComCtl32Version();
489 if ( ver < 470 )
490 {
bf9b6266 491 wxLogWarning(_("Please install a newer version of comctl32.dll\n(at least version 4.70 is required but you have %d.%02d)\nor this program won't operate correctly."),
30a72e62
VZ
492 ver / 100, ver % 100);
493 }
494
98ec9dbe
VZ
495 wstyle |= LVS_OWNERDATA;
496 }
bf9b6266 497#endif
98ec9dbe 498
0b5efdc7 499 return wstyle;
2bda0e17
KB
500}
501
edccf428
VZ
502// ----------------------------------------------------------------------------
503// accessors
504// ----------------------------------------------------------------------------
505
91b4c08d
VZ
506// Sets the foreground, i.e. text, colour
507bool wxListCtrl::SetForegroundColour(const wxColour& col)
508{
509 if ( !wxWindow::SetForegroundColour(col) )
510 return FALSE;
511
512 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col));
513
514 return TRUE;
515}
516
517// Sets the background colour
cc2b7472 518bool wxListCtrl::SetBackgroundColour(const wxColour& col)
2bda0e17 519{
cc2b7472
VZ
520 if ( !wxWindow::SetBackgroundColour(col) )
521 return FALSE;
2bda0e17 522
91b4c08d
VZ
523 // we set the same colour for both the "empty" background and the items
524 // background
525 COLORREF color = wxColourToRGB(col);
526 ListView_SetBkColor(GetHwnd(), color);
527 ListView_SetTextBkColor(GetHwnd(), color);
cc2b7472
VZ
528
529 return TRUE;
2bda0e17
KB
530}
531
532// Gets information about this column
debe6624 533bool wxListCtrl::GetColumn(int col, wxListItem& item) const
2bda0e17 534{
0b5efdc7 535 LV_COLUMN lvCol;
6f806543 536 wxZeroMemory(lvCol);
0b5efdc7
VZ
537
538 if ( item.m_mask & wxLIST_MASK_TEXT )
539 {
540 lvCol.mask |= LVCF_TEXT;
837e5743 541 lvCol.pszText = new wxChar[513];
0b5efdc7
VZ
542 lvCol.cchTextMax = 512;
543 }
544
6f806543 545 bool success = ListView_GetColumn(GetHwnd(), col, & lvCol) != 0;
0b5efdc7
VZ
546
547 // item.m_subItem = lvCol.iSubItem;
548 item.m_width = lvCol.cx;
549
550 if ( (item.m_mask & wxLIST_MASK_TEXT) && lvCol.pszText )
551 {
552 item.m_text = lvCol.pszText;
553 delete[] lvCol.pszText;
554 }
555
556 if ( item.m_mask & wxLIST_MASK_FORMAT )
557 {
558 if (lvCol.fmt == LVCFMT_LEFT)
559 item.m_format = wxLIST_FORMAT_LEFT;
560 else if (lvCol.fmt == LVCFMT_RIGHT)
561 item.m_format = wxLIST_FORMAT_RIGHT;
562 else if (lvCol.fmt == LVCFMT_CENTER)
563 item.m_format = wxLIST_FORMAT_CENTRE;
2bda0e17
KB
564 }
565
0b5efdc7 566 return success;
2bda0e17
KB
567}
568
569// Sets information about this column
debe6624 570bool wxListCtrl::SetColumn(int col, wxListItem& item)
2bda0e17 571{
0b5efdc7 572 LV_COLUMN lvCol;
6f806543 573 wxConvertToMSWListCol(col, item, lvCol);
0b5efdc7 574
6f806543 575 return ListView_SetColumn(GetHwnd(), col, &lvCol) != 0;
2bda0e17
KB
576}
577
578// Gets the column width
debe6624 579int wxListCtrl::GetColumnWidth(int col) const
2bda0e17 580{
edccf428 581 return ListView_GetColumnWidth(GetHwnd(), col);
2bda0e17
KB
582}
583
584// Sets the column width
debe6624 585bool wxListCtrl::SetColumnWidth(int col, int width)
2bda0e17 586{
0b5efdc7
VZ
587 int col2 = col;
588 if ( m_windowStyle & wxLC_LIST )
589 col2 = -1;
2bda0e17 590
0b5efdc7
VZ
591 int width2 = width;
592 if ( width2 == wxLIST_AUTOSIZE)
593 width2 = LVSCW_AUTOSIZE;
594 else if ( width2 == wxLIST_AUTOSIZE_USEHEADER)
595 width2 = LVSCW_AUTOSIZE_USEHEADER;
2bda0e17 596
6f806543 597 return ListView_SetColumnWidth(GetHwnd(), col2, width2) != 0;
2bda0e17
KB
598}
599
600// Gets the number of items that can fit vertically in the
601// visible area of the list control (list or report view)
602// or the total number of items in the list control (icon
603// or small icon view)
c42404a5 604int wxListCtrl::GetCountPerPage() const
2bda0e17 605{
edccf428 606 return ListView_GetCountPerPage(GetHwnd());
2bda0e17
KB
607}
608
609// Gets the edit control for editing labels.
c42404a5 610wxTextCtrl* wxListCtrl::GetEditControl() const
2bda0e17 611{
bbcdf8bc 612 return m_textCtrl;
2bda0e17
KB
613}
614
615// Gets information about the item
616bool wxListCtrl::GetItem(wxListItem& info) const
617{
0b5efdc7 618 LV_ITEM lvItem;
11c7d5b6 619 wxZeroMemory(lvItem);
2bda0e17 620
0b5efdc7 621 lvItem.iItem = info.m_itemId;
fc5a93cd 622 lvItem.iSubItem = info.m_col;
0b5efdc7
VZ
623
624 if ( info.m_mask & wxLIST_MASK_TEXT )
625 {
626 lvItem.mask |= LVIF_TEXT;
837e5743 627 lvItem.pszText = new wxChar[513];
0b5efdc7
VZ
628 lvItem.cchTextMax = 512;
629 }
630 else
631 {
632 lvItem.pszText = NULL;
633 }
634
635 if (info.m_mask & wxLIST_MASK_DATA)
edccf428 636 lvItem.mask |= LVIF_PARAM;
0b5efdc7 637
2189c644
JS
638 if (info.m_mask & wxLIST_MASK_IMAGE)
639 lvItem.mask |= LVIF_IMAGE;
640
0b5efdc7
VZ
641 if ( info.m_mask & wxLIST_MASK_STATE )
642 {
643 lvItem.mask |= LVIF_STATE;
644 // the other bits are hardly interesting anyhow
645 lvItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
646 }
647
648 bool success = ListView_GetItem((HWND)GetHWND(), &lvItem) != 0;
649 if ( !success )
650 {
651 wxLogError(_("Couldn't retrieve information about list control item %d."),
652 lvItem.iItem);
653 }
654 else
655 {
dccde0c0
VZ
656 // give NULL as hwnd as we already have everything we need
657 wxConvertFromMSWListItem(NULL, info, lvItem);
0b5efdc7
VZ
658 }
659
660 if (lvItem.pszText)
661 delete[] lvItem.pszText;
662
663 return success;
2bda0e17
KB
664}
665
666// Sets information about the item
667bool wxListCtrl::SetItem(wxListItem& info)
668{
0b5efdc7 669 LV_ITEM item;
2bda0e17 670 wxConvertToMSWListItem(this, info, item);
bdc72a22 671
2d33aec9
VZ
672 // we could be changing only the attribute in which case we don't need to
673 // call ListView_SetItem() at all
674 if ( item.mask )
bdc72a22 675 {
2d33aec9
VZ
676 item.cchTextMax = 0;
677 if ( !ListView_SetItem(GetHwnd(), &item) )
678 {
679 wxLogDebug(_T("ListView_SetItem() failed"));
2702ed5a 680
2d33aec9
VZ
681 return FALSE;
682 }
233d0295 683 }
2702ed5a 684
233d0295
VZ
685 // we need to update the item immediately to show the new image
686 bool updateNow = (info.m_mask & wxLIST_MASK_IMAGE) != 0;
2702ed5a 687
233d0295
VZ
688 // check whether it has any custom attributes
689 if ( info.HasAttributes() )
690 {
691 wxListItemAttr *attr = (wxListItemAttr *)m_attrs.Get(item.iItem);
2702ed5a 692
233d0295
VZ
693 if ( attr == NULL )
694 m_attrs.Put(item.iItem, (wxObject *)new wxListItemAttr(*info.GetAttributes()));
695 else
696 *attr = *info.GetAttributes();
bdc72a22
VZ
697
698 m_hasAnyAttr = TRUE;
233d0295
VZ
699
700 // if the colour has changed, we must redraw the item
701 updateNow = TRUE;
bdc72a22 702 }
bdc72a22 703
233d0295 704 if ( updateNow )
7cc98b3e 705 {
233d0295 706 // we need this to make the change visible right now
2d33aec9 707 RefreshItem(item.iItem);
7cc98b3e
VZ
708 }
709
233d0295 710 return TRUE;
2bda0e17
KB
711}
712
debe6624 713long wxListCtrl::SetItem(long index, int col, const wxString& label, int imageId)
2bda0e17 714{
0b5efdc7
VZ
715 wxListItem info;
716 info.m_text = label;
717 info.m_mask = wxLIST_MASK_TEXT;
718 info.m_itemId = index;
719 info.m_col = col;
720 if ( imageId > -1 )
721 {
722 info.m_image = imageId;
723 info.m_mask |= wxLIST_MASK_IMAGE;
724 }
725 return SetItem(info);
2bda0e17
KB
726}
727
728
729// Gets the item state
debe6624 730int wxListCtrl::GetItemState(long item, long stateMask) const
2bda0e17 731{
0b5efdc7 732 wxListItem info;
2bda0e17 733
edccf428 734 info.m_mask = wxLIST_MASK_STATE;
0b5efdc7
VZ
735 info.m_stateMask = stateMask;
736 info.m_itemId = item;
2bda0e17 737
0b5efdc7
VZ
738 if (!GetItem(info))
739 return 0;
2bda0e17 740
0b5efdc7 741 return info.m_state;
2bda0e17
KB
742}
743
744// Sets the item state
debe6624 745bool wxListCtrl::SetItemState(long item, long state, long stateMask)
2bda0e17 746{
8dff2b5c
VZ
747 // NB: don't use SetItem() here as it doesn't work with the virtual list
748 // controls
749 LV_ITEM lvItem;
750 wxZeroMemory(lvItem);
2bda0e17 751
8dff2b5c 752 wxConvertToMSWFlags(state, stateMask, lvItem);
2bda0e17 753
2d33aec9 754 // for the virtual list controls we need to refresh the previously focused
ad9f477d
VZ
755 // item manually when changing focus without changing selection
756 // programmatically because otherwise it keeps its focus rectangle until
757 // next repaint (yet another comctl32 bug)
2d33aec9
VZ
758 long focusOld;
759 if ( IsVirtual() &&
760 (stateMask & wxLIST_STATE_FOCUSED) &&
761 (state & wxLIST_STATE_FOCUSED) )
762 {
763 focusOld = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED);
764 }
765 else
766 {
767 focusOld = -1;
768 }
769
8dff2b5c
VZ
770 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE,
771 (WPARAM)item, (LPARAM)&lvItem) )
772 {
773 wxLogLastError(_T("ListView_SetItemState"));
774
775 return FALSE;
776 }
777
2d33aec9
VZ
778 if ( focusOld != -1 )
779 {
ad9f477d
VZ
780 // no need to refresh the item if it was previously selected, it would
781 // only result in annoying flicker
782 if ( !(GetItemState(focusOld,
783 wxLIST_STATE_SELECTED) & wxLIST_STATE_SELECTED) )
784 {
785 RefreshItem(focusOld);
786 }
2d33aec9
VZ
787 }
788
8dff2b5c 789 return TRUE;
2bda0e17
KB
790}
791
792// Sets the item image
33ac7e6f 793bool wxListCtrl::SetItemImage(long item, int image, int WXUNUSED(selImage))
2bda0e17 794{
0b5efdc7 795 wxListItem info;
2bda0e17 796
edccf428 797 info.m_mask = wxLIST_MASK_IMAGE;
0b5efdc7
VZ
798 info.m_image = image;
799 info.m_itemId = item;
2bda0e17 800
0b5efdc7 801 return SetItem(info);
2bda0e17
KB
802}
803
804// Gets the item text
debe6624 805wxString wxListCtrl::GetItemText(long item) const
2bda0e17 806{
0b5efdc7 807 wxListItem info;
2bda0e17 808
edccf428 809 info.m_mask = wxLIST_MASK_TEXT;
0b5efdc7 810 info.m_itemId = item;
2bda0e17 811
0b5efdc7
VZ
812 if (!GetItem(info))
813 return wxString("");
814 return info.m_text;
2bda0e17
KB
815}
816
817// Sets the item text
debe6624 818void wxListCtrl::SetItemText(long item, const wxString& str)
2bda0e17 819{
0b5efdc7 820 wxListItem info;
2bda0e17 821
edccf428 822 info.m_mask = wxLIST_MASK_TEXT;
0b5efdc7
VZ
823 info.m_itemId = item;
824 info.m_text = str;
2bda0e17 825
0b5efdc7 826 SetItem(info);
2bda0e17
KB
827}
828
829// Gets the item data
debe6624 830long wxListCtrl::GetItemData(long item) const
2bda0e17 831{
0b5efdc7 832 wxListItem info;
2bda0e17 833
edccf428 834 info.m_mask = wxLIST_MASK_DATA;
0b5efdc7 835 info.m_itemId = item;
2bda0e17 836
0b5efdc7
VZ
837 if (!GetItem(info))
838 return 0;
839 return info.m_data;
2bda0e17
KB
840}
841
842// Sets the item data
debe6624 843bool wxListCtrl::SetItemData(long item, long data)
2bda0e17 844{
0b5efdc7 845 wxListItem info;
2bda0e17 846
edccf428 847 info.m_mask = wxLIST_MASK_DATA;
0b5efdc7
VZ
848 info.m_itemId = item;
849 info.m_data = data;
2bda0e17 850
0b5efdc7 851 return SetItem(info);
2bda0e17
KB
852}
853
854// Gets the item rectangle
16e93305 855bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const
2bda0e17 856{
2d33aec9 857 RECT rectWin;
2bda0e17 858
2d33aec9 859 int codeWin;
0b5efdc7 860 if ( code == wxLIST_RECT_BOUNDS )
2d33aec9 861 codeWin = LVIR_BOUNDS;
0b5efdc7 862 else if ( code == wxLIST_RECT_ICON )
2d33aec9 863 codeWin = LVIR_ICON;
0b5efdc7 864 else if ( code == wxLIST_RECT_LABEL )
2d33aec9
VZ
865 codeWin = LVIR_LABEL;
866 else
867 {
868 wxFAIL_MSG( _T("incorrect code in GetItemRect()") );
869
870 codeWin = LVIR_BOUNDS;
871 }
2bda0e17 872
5ea105e0 873#ifdef __WXWINE__
2d33aec9 874 bool success = ListView_GetItemRect(GetHwnd(), (int) item, &rectWin ) != 0;
5ea105e0 875#else
2d33aec9 876 bool success = ListView_GetItemRect(GetHwnd(), (int) item, &rectWin, codeWin) != 0;
5ea105e0 877#endif
2bda0e17 878
2d33aec9
VZ
879 rect.x = rectWin.left;
880 rect.y = rectWin.top;
881 rect.width = rectWin.right - rectWin.left;
882 rect.height = rectWin.bottom - rectWin.top;
883
0b5efdc7 884 return success;
2bda0e17
KB
885}
886
887// Gets the item position
debe6624 888bool wxListCtrl::GetItemPosition(long item, wxPoint& pos) const
2bda0e17 889{
0b5efdc7 890 POINT pt;
2bda0e17 891
edccf428 892 bool success = (ListView_GetItemPosition(GetHwnd(), (int) item, &pt) != 0);
2bda0e17 893
0b5efdc7
VZ
894 pos.x = pt.x; pos.y = pt.y;
895 return success;
2bda0e17
KB
896}
897
898// Sets the item position.
debe6624 899bool wxListCtrl::SetItemPosition(long item, const wxPoint& pos)
2bda0e17 900{
edccf428 901 return (ListView_SetItemPosition(GetHwnd(), (int) item, pos.x, pos.y) != 0);
2bda0e17
KB
902}
903
904// Gets the number of items in the list control
c42404a5 905int wxListCtrl::GetItemCount() const
2bda0e17 906{
edccf428 907 return ListView_GetItemCount(GetHwnd());
2bda0e17
KB
908}
909
910// Retrieves the spacing between icons in pixels.
911// If small is TRUE, gets the spacing for the small icon
912// view, otherwise the large icon view.
913int wxListCtrl::GetItemSpacing(bool isSmall) const
914{
edccf428 915 return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall);
2bda0e17
KB
916}
917
918// Gets the number of selected items in the list control
c42404a5 919int wxListCtrl::GetSelectedItemCount() const
2bda0e17 920{
edccf428 921 return ListView_GetSelectedCount(GetHwnd());
2bda0e17
KB
922}
923
924// Gets the text colour of the listview
c42404a5 925wxColour wxListCtrl::GetTextColour() const
2bda0e17 926{
edccf428 927 COLORREF ref = ListView_GetTextColor(GetHwnd());
0b5efdc7
VZ
928 wxColour col(GetRValue(ref), GetGValue(ref), GetBValue(ref));
929 return col;
2bda0e17
KB
930}
931
932// Sets the text colour of the listview
933void wxListCtrl::SetTextColour(const wxColour& col)
934{
910484a6 935 ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue()));
2bda0e17
KB
936}
937
938// Gets the index of the topmost visible item when in
939// list or report view
c42404a5 940long wxListCtrl::GetTopItem() const
2bda0e17 941{
edccf428 942 return (long) ListView_GetTopIndex(GetHwnd());
2bda0e17
KB
943}
944
945// Searches for an item, starting from 'item'.
946// 'geometry' is one of
947// wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
948// 'state' is a state bit flag, one or more of
949// wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
950// item can be -1 to find the first item that matches the
951// specified flags.
952// Returns the item or -1 if unsuccessful.
debe6624 953long wxListCtrl::GetNextItem(long item, int geom, int state) const
2bda0e17 954{
0b5efdc7 955 long flags = 0;
2bda0e17 956
0b5efdc7
VZ
957 if ( geom == wxLIST_NEXT_ABOVE )
958 flags |= LVNI_ABOVE;
959 if ( geom == wxLIST_NEXT_ALL )
960 flags |= LVNI_ALL;
961 if ( geom == wxLIST_NEXT_BELOW )
962 flags |= LVNI_BELOW;
963 if ( geom == wxLIST_NEXT_LEFT )
964 flags |= LVNI_TOLEFT;
965 if ( geom == wxLIST_NEXT_RIGHT )
966 flags |= LVNI_TORIGHT;
2bda0e17 967
0b5efdc7
VZ
968 if ( state & wxLIST_STATE_CUT )
969 flags |= LVNI_CUT;
970 if ( state & wxLIST_STATE_DROPHILITED )
971 flags |= LVNI_DROPHILITED;
972 if ( state & wxLIST_STATE_FOCUSED )
973 flags |= LVNI_FOCUSED;
974 if ( state & wxLIST_STATE_SELECTED )
975 flags |= LVNI_SELECTED;
2bda0e17 976
edccf428 977 return (long) ListView_GetNextItem(GetHwnd(), item, flags);
2bda0e17
KB
978}
979
980
debe6624 981wxImageList *wxListCtrl::GetImageList(int which) const
2bda0e17 982{
0b5efdc7 983 if ( which == wxIMAGE_LIST_NORMAL )
2bda0e17 984 {
0b5efdc7
VZ
985 return m_imageListNormal;
986 }
987 else if ( which == wxIMAGE_LIST_SMALL )
2bda0e17 988 {
0b5efdc7
VZ
989 return m_imageListSmall;
990 }
991 else if ( which == wxIMAGE_LIST_STATE )
2bda0e17 992 {
0b5efdc7
VZ
993 return m_imageListState;
994 }
995 return NULL;
2bda0e17
KB
996}
997
debe6624 998void wxListCtrl::SetImageList(wxImageList *imageList, int which)
2bda0e17 999{
0b5efdc7
VZ
1000 int flags = 0;
1001 if ( which == wxIMAGE_LIST_NORMAL )
2bda0e17 1002 {
0b5efdc7 1003 flags = LVSIL_NORMAL;
2e12c11a 1004 if (m_ownsImageListNormal) delete m_imageListNormal;
0b5efdc7 1005 m_imageListNormal = imageList;
2e12c11a 1006 m_ownsImageListNormal = FALSE;
0b5efdc7
VZ
1007 }
1008 else if ( which == wxIMAGE_LIST_SMALL )
2bda0e17 1009 {
0b5efdc7 1010 flags = LVSIL_SMALL;
2e12c11a 1011 if (m_ownsImageListSmall) delete m_imageListSmall;
0b5efdc7 1012 m_imageListSmall = imageList;
2e12c11a 1013 m_ownsImageListSmall = FALSE;
0b5efdc7
VZ
1014 }
1015 else if ( which == wxIMAGE_LIST_STATE )
2bda0e17 1016 {
0b5efdc7 1017 flags = LVSIL_STATE;
2e12c11a 1018 if (m_ownsImageListState) delete m_imageListState;
0b5efdc7 1019 m_imageListState = imageList;
2e12c11a 1020 m_ownsImageListState = FALSE;
0b5efdc7 1021 }
edccf428 1022 ListView_SetImageList(GetHwnd(), (HIMAGELIST) imageList ? imageList->GetHIMAGELIST() : 0, flags);
2bda0e17
KB
1023}
1024
2e12c11a
VS
1025void wxListCtrl::AssignImageList(wxImageList *imageList, int which)
1026{
1027 SetImageList(imageList, which);
1028 if ( which == wxIMAGE_LIST_NORMAL )
1029 m_ownsImageListNormal = TRUE;
1030 else if ( which == wxIMAGE_LIST_SMALL )
1031 m_ownsImageListSmall = TRUE;
1032 else if ( which == wxIMAGE_LIST_STATE )
1033 m_ownsImageListState = TRUE;
1034}
1035
edccf428 1036// ----------------------------------------------------------------------------
2bda0e17 1037// Operations
edccf428 1038// ----------------------------------------------------------------------------
2bda0e17
KB
1039
1040// Arranges the items
debe6624 1041bool wxListCtrl::Arrange(int flag)
2bda0e17 1042{
0b5efdc7
VZ
1043 UINT code = 0;
1044 if ( flag == wxLIST_ALIGN_LEFT )
1045 code = LVA_ALIGNLEFT;
1046 else if ( flag == wxLIST_ALIGN_TOP )
1047 code = LVA_ALIGNTOP;
1048 else if ( flag == wxLIST_ALIGN_DEFAULT )
1049 code = LVA_DEFAULT;
1050 else if ( flag == wxLIST_ALIGN_SNAP_TO_GRID )
1051 code = LVA_SNAPTOGRID;
2bda0e17 1052
edccf428 1053 return (ListView_Arrange(GetHwnd(), code) != 0);
2bda0e17
KB
1054}
1055
1056// Deletes an item
debe6624 1057bool wxListCtrl::DeleteItem(long item)
2bda0e17 1058{
2e9f62da
VZ
1059 if ( !ListView_DeleteItem(GetHwnd(), (int) item) )
1060 {
1061 wxLogLastError(_T("ListView_DeleteItem"));
1062 return FALSE;
1063 }
1064
1065 // the virtual list control doesn't refresh itself correctly, help it
1066 if ( IsVirtual() )
1067 {
1068 // we need to refresh all the lines below the one which was deleted
1069 wxRect rectItem;
1070 if ( item > 0 && GetItemCount() )
1071 {
1072 GetItemRect(item - 1, rectItem);
1073 }
1074 else
1075 {
1076 rectItem.y =
1077 rectItem.height = 0;
1078 }
1079
1080 wxRect rectWin = GetRect();
1081 rectWin.height = rectWin.GetBottom() - rectItem.GetBottom();
1082 rectWin.y = rectItem.GetBottom();
1083
1084 RefreshRect(rectWin);
1085 }
1086
1087 return TRUE;
2bda0e17
KB
1088}
1089
1090// Deletes all items
0b5efdc7 1091bool wxListCtrl::DeleteAllItems()
2bda0e17 1092{
2e9f62da 1093 return ListView_DeleteAllItems(GetHwnd()) != 0;
2bda0e17
KB
1094}
1095
1096// Deletes all items
0b5efdc7 1097bool wxListCtrl::DeleteAllColumns()
2bda0e17 1098{
edccf428 1099 while ( m_colCount > 0 )
2bda0e17 1100 {
edccf428
VZ
1101 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1102 {
f6bcfd97 1103 wxLogLastError(wxT("ListView_DeleteColumn"));
edccf428
VZ
1104
1105 return FALSE;
1106 }
1107
1108 m_colCount--;
2bda0e17 1109 }
edccf428 1110
223d09f6 1111 wxASSERT_MSG( m_colCount == 0, wxT("no columns should be left") );
edccf428
VZ
1112
1113 return TRUE;
2bda0e17
KB
1114}
1115
1116// Deletes a column
debe6624 1117bool wxListCtrl::DeleteColumn(int col)
2bda0e17 1118{
edccf428 1119 bool success = (ListView_DeleteColumn(GetHwnd(), col) != 0);
2bda0e17
KB
1120
1121 if ( success && (m_colCount > 0) )
1122 m_colCount --;
1123 return success;
1124}
1125
1126// Clears items, and columns if there are any.
0b5efdc7 1127void wxListCtrl::ClearAll()
2bda0e17
KB
1128{
1129 DeleteAllItems();
1130 if ( m_colCount > 0 )
1131 DeleteAllColumns();
1132}
1133
bbcdf8bc
JS
1134wxTextCtrl* wxListCtrl::EditLabel(long item, wxClassInfo* textControlClass)
1135{
1136 wxASSERT( (textControlClass->IsKindOf(CLASSINFO(wxTextCtrl))) );
1137
d699f48b 1138 // VS: ListView_EditLabel requires that the list has focus.
aa50e893 1139 SetFocus();
edccf428 1140 HWND hWnd = (HWND) ListView_EditLabel(GetHwnd(), item);
bbcdf8bc
JS
1141
1142 if (m_textCtrl)
1143 {
0b5efdc7 1144 m_textCtrl->SetHWND(0);
7bf1474a 1145 m_textCtrl->UnsubclassWin();
0b5efdc7
VZ
1146 delete m_textCtrl;
1147 m_textCtrl = NULL;
bbcdf8bc
JS
1148 }
1149
1150 m_textCtrl = (wxTextCtrl*) textControlClass->CreateObject();
1151 m_textCtrl->SetHWND((WXHWND) hWnd);
1152 m_textCtrl->SubclassWin((WXHWND) hWnd);
1153
1154 return m_textCtrl;
1155}
1156
1157// End label editing, optionally cancelling the edit
33ac7e6f 1158bool wxListCtrl::EndEditLabel(bool WXUNUSED(cancel))
2bda0e17 1159{
7bf1474a
VZ
1160 wxFAIL_MSG( _T("not implemented") );
1161
0b5efdc7 1162 return FALSE;
2bda0e17
KB
1163}
1164
1165// Ensures this item is visible
debe6624 1166bool wxListCtrl::EnsureVisible(long item)
2bda0e17 1167{
7bf1474a 1168 return ListView_EnsureVisible(GetHwnd(), (int) item, FALSE) != 0;
2bda0e17
KB
1169}
1170
1171// Find an item whose label matches this string, starting from the item after 'start'
1172// or the beginning if 'start' is -1.
debe6624 1173long wxListCtrl::FindItem(long start, const wxString& str, bool partial)
2bda0e17 1174{
0b5efdc7 1175 LV_FINDINFO findInfo;
2bda0e17 1176
0b5efdc7
VZ
1177 findInfo.flags = LVFI_STRING;
1178 if ( partial )
7edc258e 1179 findInfo.flags |= LVFI_PARTIAL;
3ca6a5f0 1180 findInfo.psz = str;
2bda0e17 1181
3ca6a5f0
BP
1182 // ListView_FindItem() excludes the first item from search and to look
1183 // through all the items you need to start from -1 which is unnatural and
8036af01
JS
1184 // inconsistent with the generic version - so we adjust the index
1185 if (start != -1)
1186 start --;
1187 return ListView_FindItem(GetHwnd(), (int) start, &findInfo);
2bda0e17
KB
1188}
1189
1190// Find an item whose data matches this data, starting from the item after 'start'
1191// or the beginning if 'start' is -1.
debe6624 1192long wxListCtrl::FindItem(long start, long data)
2bda0e17 1193{
0b5efdc7 1194 LV_FINDINFO findInfo;
2bda0e17 1195
0b5efdc7
VZ
1196 findInfo.flags = LVFI_PARAM;
1197 findInfo.lParam = data;
2bda0e17 1198
edccf428 1199 return ListView_FindItem(GetHwnd(), (int) start, & findInfo);
2bda0e17
KB
1200}
1201
1202// Find an item nearest this position in the specified direction, starting from
1203// the item after 'start' or the beginning if 'start' is -1.
debe6624 1204long wxListCtrl::FindItem(long start, const wxPoint& pt, int direction)
2bda0e17 1205{
0b5efdc7 1206 LV_FINDINFO findInfo;
2bda0e17 1207
0b5efdc7
VZ
1208 findInfo.flags = LVFI_NEARESTXY;
1209 findInfo.pt.x = pt.x;
1210 findInfo.pt.y = pt.y;
acb62b84 1211 findInfo.vkDirection = VK_RIGHT;
2bda0e17 1212
0b5efdc7
VZ
1213 if ( direction == wxLIST_FIND_UP )
1214 findInfo.vkDirection = VK_UP;
1215 else if ( direction == wxLIST_FIND_DOWN )
1216 findInfo.vkDirection = VK_DOWN;
1217 else if ( direction == wxLIST_FIND_LEFT )
1218 findInfo.vkDirection = VK_LEFT;
1219 else if ( direction == wxLIST_FIND_RIGHT )
1220 findInfo.vkDirection = VK_RIGHT;
1221
edccf428 1222 return ListView_FindItem(GetHwnd(), (int) start, & findInfo);
2bda0e17
KB
1223}
1224
1225// Determines which item (if any) is at the specified point,
1226// giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1227long wxListCtrl::HitTest(const wxPoint& point, int& flags)
1228{
1229 LV_HITTESTINFO hitTestInfo;
0b5efdc7
VZ
1230 hitTestInfo.pt.x = (int) point.x;
1231 hitTestInfo.pt.y = (int) point.y;
2bda0e17 1232
edccf428 1233 ListView_HitTest(GetHwnd(), & hitTestInfo);
2bda0e17 1234
0b5efdc7
VZ
1235 flags = 0;
1236 if ( hitTestInfo.flags & LVHT_ABOVE )
1237 flags |= wxLIST_HITTEST_ABOVE;
1238 if ( hitTestInfo.flags & LVHT_BELOW )
1239 flags |= wxLIST_HITTEST_BELOW;
1240 if ( hitTestInfo.flags & LVHT_NOWHERE )
1241 flags |= wxLIST_HITTEST_NOWHERE;
1242 if ( hitTestInfo.flags & LVHT_ONITEMICON )
1243 flags |= wxLIST_HITTEST_ONITEMICON;
1244 if ( hitTestInfo.flags & LVHT_ONITEMLABEL )
1245 flags |= wxLIST_HITTEST_ONITEMLABEL;
1246 if ( hitTestInfo.flags & LVHT_ONITEMSTATEICON )
1247 flags |= wxLIST_HITTEST_ONITEMSTATEICON;
1248 if ( hitTestInfo.flags & LVHT_TOLEFT )
1249 flags |= wxLIST_HITTEST_TOLEFT;
1250 if ( hitTestInfo.flags & LVHT_TORIGHT )
1251 flags |= wxLIST_HITTEST_TORIGHT;
1252
edccf428 1253 return (long) hitTestInfo.iItem;
2bda0e17
KB
1254}
1255
1256// Inserts an item, returning the index of the new item if successful,
1257// -1 otherwise.
2bda0e17
KB
1258long wxListCtrl::InsertItem(wxListItem& info)
1259{
98ec9dbe
VZ
1260 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1261
0b5efdc7
VZ
1262 LV_ITEM item;
1263 wxConvertToMSWListItem(this, info, item);
2bda0e17 1264
bdc72a22
VZ
1265 // check whether it has any custom attributes
1266 if ( info.HasAttributes() )
1267 {
2702ed5a 1268
35ec54d3
VS
1269 wxListItemAttr *attr;
1270 attr = (wxListItemAttr*) m_attrs.Get(item.iItem);
2702ed5a 1271
35ec54d3 1272 if (attr == NULL)
2702ed5a 1273
35ec54d3 1274 m_attrs.Put(item.iItem, (wxObject *)new wxListItemAttr(*info.GetAttributes()));
2702ed5a 1275
35ec54d3 1276 else *attr = *info.GetAttributes();
bdc72a22
VZ
1277
1278 m_hasAnyAttr = TRUE;
1279 }
bdc72a22 1280
edccf428 1281 return (long) ListView_InsertItem(GetHwnd(), & item);
2bda0e17
KB
1282}
1283
debe6624 1284long wxListCtrl::InsertItem(long index, const wxString& label)
2bda0e17 1285{
0b5efdc7
VZ
1286 wxListItem info;
1287 info.m_text = label;
1288 info.m_mask = wxLIST_MASK_TEXT;
1289 info.m_itemId = index;
1290 return InsertItem(info);
2bda0e17
KB
1291}
1292
1293// Inserts an image item
debe6624 1294long wxListCtrl::InsertItem(long index, int imageIndex)
2bda0e17 1295{
0b5efdc7
VZ
1296 wxListItem info;
1297 info.m_image = imageIndex;
1298 info.m_mask = wxLIST_MASK_IMAGE;
1299 info.m_itemId = index;
1300 return InsertItem(info);
2bda0e17
KB
1301}
1302
1303// Inserts an image/string item
debe6624 1304long wxListCtrl::InsertItem(long index, const wxString& label, int imageIndex)
2bda0e17 1305{
0b5efdc7
VZ
1306 wxListItem info;
1307 info.m_image = imageIndex;
1308 info.m_text = label;
1309 info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT;
1310 info.m_itemId = index;
1311 return InsertItem(info);
2bda0e17
KB
1312}
1313
1314// For list view mode (only), inserts a column.
debe6624 1315long wxListCtrl::InsertColumn(long col, wxListItem& item)
2bda0e17 1316{
0b5efdc7 1317 LV_COLUMN lvCol;
6f806543 1318 wxConvertToMSWListCol(col, item, lvCol);
0b5efdc7 1319
6f806543 1320 if ( !(lvCol.mask & LVCF_WIDTH) )
e373f51b
VZ
1321 {
1322 // always give some width to the new column: this one is compatible
6f806543
VZ
1323 // with the generic version
1324 lvCol.mask |= LVCF_WIDTH;
e373f51b 1325 lvCol.cx = 80;
0b5efdc7 1326 }
e373f51b 1327
6f806543
VZ
1328 // when we insert a column which can contain an image, we must specify this
1329 // flag right now as doing it later in SetColumn() has no effect
1330 //
1331 // we use LVCFMT_BITMAP_ON_RIGHT by default because without it there is no
1332 // way to dynamically set/clear the bitmap as the column without a bitmap
1333 // on the left looks ugly (there is a hole)
1334 //
1335 // unfortunately with my version of comctl32.dll (5.80), the left column
1336 // image is always on the left and it seems that it's a "feature" - I
1337 // didn't find any way to work around it in any case
1338 if ( lvCol.mask & LVCF_IMAGE )
1339 {
1340 lvCol.mask |= LVCF_FMT;
1341 lvCol.fmt |= LVCFMT_BITMAP_ON_RIGHT;
1342 }
2bda0e17 1343
6f806543 1344 bool success = ListView_InsertColumn(GetHwnd(), col, &lvCol) != -1;
2bda0e17 1345 if ( success )
e373f51b
VZ
1346 {
1347 m_colCount++;
1348 }
1349 else
1350 {
223d09f6 1351 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
e373f51b
VZ
1352 lvCol.pszText);
1353 }
1354
2bda0e17
KB
1355 return success;
1356}
1357
bdc72a22
VZ
1358long wxListCtrl::InsertColumn(long col,
1359 const wxString& heading,
1360 int format,
1361 int width)
2bda0e17 1362{
0b5efdc7
VZ
1363 wxListItem item;
1364 item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT;
1365 item.m_text = heading;
1366 if ( width > -1 )
1367 {
1368 item.m_mask |= wxLIST_MASK_WIDTH;
1369 item.m_width = width;
1370 }
1371 item.m_format = format;
2bda0e17 1372
0b5efdc7 1373 return InsertColumn(col, item);
2bda0e17
KB
1374}
1375
1376// Scrolls the list control. If in icon, small icon or report view mode,
1377// x specifies the number of pixels to scroll. If in list view mode, x
1378// specifies the number of columns to scroll.
1379// If in icon, small icon or list view mode, y specifies the number of pixels
1380// to scroll. If in report view mode, y specifies the number of lines to scroll.
debe6624 1381bool wxListCtrl::ScrollList(int dx, int dy)
2bda0e17 1382{
edccf428 1383 return (ListView_Scroll(GetHwnd(), dx, dy) != 0);
2bda0e17
KB
1384}
1385
1386// Sort items.
1387
1388// fn is a function which takes 3 long arguments: item1, item2, data.
1389// item1 is the long data associated with a first item (NOT the index).
1390// item2 is the long data associated with a second item (NOT the index).
1391// data is the same value as passed to SortItems.
1392// The return value is a negative number if the first item should precede the second
1393// item, a positive number of the second item should precede the first,
1394// or zero if the two items are equivalent.
1395
1396// data is arbitrary data to be passed to the sort function.
19230604
RD
1397
1398// FIXME: this is horrible and MT-unsafe and everything else but I don't have
1399// time for anything better right now (VZ)
1400static long gs_sortData = 0;
1401static wxListCtrl *gs_sortCtrl = NULL;
1402static wxListCtrlCompare gs_sortFunction = NULL;
1403
1404int wxCMPFUNC_CONV wxListCtrlCompareFn(const void *arg1, const void *arg2)
1405{
1406 int n1 = *(const int *)arg1,
1407 n2 = *(const int *)arg2;
1408
1409 return gs_sortFunction(gs_sortCtrl->GetItemData(n1),
1410 gs_sortCtrl->GetItemData(n2),
1411 gs_sortData);
1412}
1413
2bda0e17
KB
1414bool wxListCtrl::SortItems(wxListCtrlCompare fn, long data)
1415{
19230604
RD
1416 // sort the attributes too
1417 if ( m_hasAnyAttr )
1418 {
1419 int n,
1420 count = GetItemCount();
1421 int *aItems = new int[count];
1422 for ( n = 0; n < count; n++ )
1423 {
1424 aItems[n] = n;
1425 }
1426
1427 gs_sortData = data;
1428 gs_sortCtrl = this;
1429 gs_sortFunction = fn;
1430
1431 qsort(aItems, count, sizeof(int), wxListCtrlCompareFn);
1432
1433 gs_sortData = 0;
1434 gs_sortCtrl = NULL;
1435 gs_sortFunction = NULL;
1436
1437 wxHashTable attrsNew(wxKEY_INTEGER, 1000);
1438 for ( n = 0; n < count; n++ )
1439 {
7946d7de 1440 wxObject *attr = m_attrs.Delete(aItems[n]);
19230604
RD
1441 if ( attr )
1442 {
7946d7de 1443 attrsNew.Put(n, attr);
19230604
RD
1444 }
1445 }
1446
1447 m_attrs.Destroy();
1448 m_attrs = attrsNew;
1449
1450 delete [] aItems;
1451 }
1452
1453 if ( !ListView_SortItems(GetHwnd(), (PFNLVCOMPARE)fn, data) )
1454 {
1455 wxLogDebug(_T("ListView_SortItems() failed"));
1456
1457 return FALSE;
1458 }
1459
1460 return TRUE;
2bda0e17
KB
1461}
1462
19230604
RD
1463
1464
edccf428
VZ
1465// ----------------------------------------------------------------------------
1466// message processing
1467// ----------------------------------------------------------------------------
1468
debe6624 1469bool wxListCtrl::MSWCommand(WXUINT cmd, WXWORD id)
2bda0e17 1470{
0b5efdc7 1471 if (cmd == EN_UPDATE)
acb62b84 1472 {
0b5efdc7
VZ
1473 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
1474 event.SetEventObject( this );
1475 ProcessCommand(event);
1476 return TRUE;
acb62b84 1477 }
0b5efdc7 1478 else if (cmd == EN_KILLFOCUS)
acb62b84 1479 {
0b5efdc7
VZ
1480 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
1481 event.SetEventObject( this );
1482 ProcessCommand(event);
1483 return TRUE;
acb62b84 1484 }
edccf428
VZ
1485 else
1486 return FALSE;
0b5efdc7
VZ
1487}
1488
a23fd0e1 1489bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
0b5efdc7 1490{
bdc72a22
VZ
1491 // prepare the event
1492 // -----------------
1493
0b5efdc7 1494 wxListEvent event(wxEVT_NULL, m_windowId);
648bec3e
VZ
1495 event.SetEventObject(this);
1496
0b5efdc7 1497 wxEventType eventType = wxEVT_NULL;
225fe9d6 1498
bdc72a22 1499 NMHDR *nmhdr = (NMHDR *)lParam;
225fe9d6 1500
d1f2eb1d
VZ
1501 // if your compiler is as broken as this, you should really change it: this
1502 // code is needed for normal operation! #ifdef below is only useful for
1503 // automatic rebuilds which are done with a very old compiler version
0cf5b099 1504#ifdef HDN_BEGINTRACKA
d1f2eb1d 1505
11358d39
VZ
1506 // check for messages from the header (in report view)
1507 HWND hwndHdr = ListView_GetHeader(GetHwnd());
225fe9d6 1508
11358d39
VZ
1509 // is it a message from the header?
1510 if ( nmhdr->hwndFrom == hwndHdr )
acb62b84 1511 {
00811ff9 1512 HD_NOTIFY *nmHDR = (HD_NOTIFY *)nmhdr;
0cf5b099 1513
11358d39 1514 event.m_itemIndex = -1;
cb0f56f9 1515
11358d39
VZ
1516 switch ( nmhdr->code )
1517 {
1518 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1519 // TRACK messages even to ANSI programs: on my system I get
1520 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
1521 //
1522 // work around is to simply catch both versions and hope that it
1523 // works (why should this message exist in ANSI and Unicode is
1524 // beyond me as it doesn't deal with strings at all...)
1525 case HDN_BEGINTRACKA:
1526 case HDN_BEGINTRACKW:
1527 eventType = wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
1528 // fall through
1529
1530 case HDN_TRACKA:
1531 case HDN_TRACKW:
1532 if ( eventType == wxEVT_NULL )
1533 eventType = wxEVT_COMMAND_LIST_COL_DRAGGING;
1534 // fall through
1535
1536 case HDN_ENDTRACKA:
1537 case HDN_ENDTRACKW:
1538 if ( eventType == wxEVT_NULL )
1539 eventType = wxEVT_COMMAND_LIST_COL_END_DRAG;
1540 event.m_col = nmHDR->iItem;
1541 break;
1542
1543 case NM_RCLICK:
1544 {
1545 eventType = wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
1546 event.m_col = -1;
0b5efdc7 1547
11358d39
VZ
1548 // find the column clicked: we have to search for it
1549 // ourselves as the notification message doesn't provide
1550 // this info
0b5efdc7 1551
11358d39
VZ
1552 // where did the click occur?
1553 POINT ptClick;
1554 if ( !::GetCursorPos(&ptClick) )
1555 {
1556 wxLogLastError(_T("GetCursorPos"));
1557 }
0b5efdc7 1558
11358d39
VZ
1559 if ( !::ScreenToClient(hwndHdr, &ptClick) )
1560 {
1561 wxLogLastError(_T("ScreenToClient(listctrl header)"));
1562 }
5ea47806 1563
11358d39
VZ
1564 event.m_pointDrag.x = ptClick.x;
1565 event.m_pointDrag.y = ptClick.y;
5ea47806 1566
11358d39 1567 int colCount = Header_GetItemCount(hwndHdr);
bdc72a22 1568
11358d39
VZ
1569 RECT rect;
1570 for ( int col = 0; col < colCount; col++ )
1571 {
1572 if ( Header_GetItemRect(hwndHdr, col, &rect) )
1573 {
1574 if ( ::PtInRect(&rect, ptClick) )
1575 {
1576 event.m_col = col;
1577 break;
1578 }
1579 }
1580 }
1581 }
1582 break;
5ea47806 1583
11358d39
VZ
1584 default:
1585 return wxControl::MSWOnNotify(idCtrl, lParam, result);
1586 }
1587 }
d1f2eb1d 1588 else
0cf5b099 1589#endif // defined(HDN_BEGINTRACKA)
d1f2eb1d 1590 if ( nmhdr->hwndFrom == GetHwnd() )
11358d39
VZ
1591 {
1592 // almost all messages use NM_LISTVIEW
1593 NM_LISTVIEW *nmLV = (NM_LISTVIEW *)nmhdr;
bdc72a22 1594
11358d39
VZ
1595 // this is true for almost all events
1596 event.m_item.m_data = nmLV->lParam;
bdc72a22 1597
11358d39
VZ
1598 switch ( nmhdr->code )
1599 {
1600 case LVN_BEGINRDRAG:
1601 eventType = wxEVT_COMMAND_LIST_BEGIN_RDRAG;
1602 // fall through
7bf1474a 1603
11358d39
VZ
1604 case LVN_BEGINDRAG:
1605 if ( eventType == wxEVT_NULL )
1606 {
1607 eventType = wxEVT_COMMAND_LIST_BEGIN_DRAG;
1608 }
bdc72a22 1609
11358d39
VZ
1610 event.m_itemIndex = nmLV->iItem;
1611 event.m_pointDrag.x = nmLV->ptAction.x;
1612 event.m_pointDrag.y = nmLV->ptAction.y;
1613 break;
1614
1615 case LVN_BEGINLABELEDIT:
1616 {
1617 eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
1618 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
1619 wxConvertFromMSWListItem(GetHwnd(), event.m_item, info->item);
1620 event.m_itemIndex = event.m_item.m_itemId;
1621 }
1622 break;
edccf428 1623
11358d39
VZ
1624 case LVN_COLUMNCLICK:
1625 eventType = wxEVT_COMMAND_LIST_COL_CLICK;
1626 event.m_itemIndex = -1;
1627 event.m_col = nmLV->iSubItem;
1628 break;
bdc72a22 1629
11358d39
VZ
1630 case LVN_DELETEALLITEMS:
1631 eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
1632 event.m_itemIndex = -1;
1633
1634 FreeAllAttrs();
1635
1636 break;
1637
1638 case LVN_DELETEITEM:
1639 eventType = wxEVT_COMMAND_LIST_DELETE_ITEM;
225fe9d6 1640 event.m_itemIndex = nmLV->iItem;
11358d39
VZ
1641
1642 if ( m_hasAnyAttr )
1643 {
1644 delete (wxListItemAttr *)m_attrs.Delete(nmLV->iItem);
1645 }
1646 break;
1647
1648 case LVN_ENDLABELEDIT:
1649 {
1650 eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT;
1651 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
8ecd8ade 1652 wxConvertFromMSWListItem(NULL, event.m_item, info->item);
11358d39
VZ
1653 if ( info->item.pszText == NULL || info->item.iItem == -1 )
1654 return FALSE;
1655
1656 event.m_itemIndex = event.m_item.m_itemId;
1657 }
1658 break;
1659
1660 case LVN_SETDISPINFO:
1661 {
1662 eventType = wxEVT_COMMAND_LIST_SET_INFO;
1663 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
1664 wxConvertFromMSWListItem(GetHwnd(), event.m_item, info->item);
1665 }
1666 break;
1667
1668 case LVN_INSERTITEM:
1669 eventType = wxEVT_COMMAND_LIST_INSERT_ITEM;
225fe9d6 1670 event.m_itemIndex = nmLV->iItem;
11358d39 1671 break;
edccf428 1672
11358d39 1673 case LVN_ITEMCHANGED:
648bec3e
VZ
1674 // we translate this catch all message into more interesting
1675 // (and more easy to process) wxWindows events
1676
1677 // first of all, we deal with the state change events only
1678 if ( nmLV->uChanged & LVIF_STATE )
11358d39 1679 {
648bec3e
VZ
1680 // temp vars for readability
1681 const UINT stOld = nmLV->uOldState;
1682 const UINT stNew = nmLV->uNewState;
1683
1684 // has the focus changed?
1685 if ( !(stOld & LVIS_FOCUSED) && (stNew & LVIS_FOCUSED) )
1686 {
1687 eventType = wxEVT_COMMAND_LIST_ITEM_FOCUSED;
1688 event.m_itemIndex = nmLV->iItem;
1689 }
1690
1691 if ( (stNew & LVIS_SELECTED) != (stOld & LVIS_SELECTED) )
1692 {
1693 if ( eventType != wxEVT_NULL )
1694 {
1695 // focus and selection have both changed: send the
1696 // focus event from here and the selection one
1697 // below
1698 event.SetEventType(eventType);
1699 (void)GetEventHandler()->ProcessEvent(event);
1700 }
1701 else // no focus event to send
1702 {
1703 // then need to set m_itemIndex as it wasn't done
1704 // above
1705 event.m_itemIndex = nmLV->iItem;
1706 }
1707
1708 eventType = stNew & LVIS_SELECTED
1709 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
1710 : wxEVT_COMMAND_LIST_ITEM_DESELECTED;
1711 }
edccf428 1712 }
648bec3e
VZ
1713
1714 if ( eventType == wxEVT_NULL )
edccf428 1715 {
648bec3e 1716 // not an interesting event for us
11358d39 1717 return FALSE;
edccf428 1718 }
648bec3e 1719
11358d39 1720 break;
225fe9d6 1721
11358d39
VZ
1722 case LVN_KEYDOWN:
1723 {
1724 LV_KEYDOWN *info = (LV_KEYDOWN *)lParam;
1725 WORD wVKey = info->wVKey;
1726
1727 // get the current selection
1728 long lItem = GetNextItem(-1,
1729 wxLIST_NEXT_ALL,
1730 wxLIST_STATE_SELECTED);
1731
1732 // <Enter> or <Space> activate the selected item if any (but
1733 // not with Shift and/or Ctrl as then they have a predefined
1734 // meaning for the list view)
1735 if ( lItem != -1 &&
1736 (wVKey == VK_RETURN || wVKey == VK_SPACE) &&
1737 !(wxIsShiftDown() || wxIsCtrlDown()) )
1738 {
1739 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
1740 }
1741 else
1742 {
1743 eventType = wxEVT_COMMAND_LIST_KEY_DOWN;
185d0094
VZ
1744
1745 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
1746 // value which should be used as is
1747 int code = wxCharCodeMSWToWX(wVKey);
1748 event.m_code = code ? code : wVKey;
11358d39 1749 }
7db91489 1750
11358d39
VZ
1751 event.m_itemIndex =
1752 event.m_item.m_itemId = lItem;
1753
1754 if ( lItem != -1 )
1755 {
1756 // fill the other fields too
1757 event.m_item.m_text = GetItemText(lItem);
1758 event.m_item.m_data = GetItemData(lItem);
1759 }
1760 }
1761 break;
1762
1763 case NM_DBLCLK:
1764 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
1765 // anything else
1766 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
f6bcfd97 1767 {
11358d39 1768 return TRUE;
f6bcfd97 1769 }
edccf428 1770
11358d39
VZ
1771 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
1772 // if it happened on an item (and not on empty place)
1773 if ( nmLV->iItem == -1 )
1774 {
1775 // not on item
1776 return FALSE;
1777 }
edccf428 1778
11358d39
VZ
1779 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
1780 event.m_itemIndex = nmLV->iItem;
1781 event.m_item.m_text = GetItemText(nmLV->iItem);
1782 event.m_item.m_data = GetItemData(nmLV->iItem);
1783 break;
225fe9d6 1784
11358d39 1785 case NM_RCLICK:
225fe9d6
VZ
1786 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
1787 // don't do anything else
1788 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
1789 {
1790 return TRUE;
1791 }
cb0f56f9 1792
225fe9d6
VZ
1793 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
1794 LV_HITTESTINFO lvhti;
1795 wxZeroMemory(lvhti);
11c7d5b6 1796
225fe9d6
VZ
1797 ::GetCursorPos(&(lvhti.pt));
1798 ::ScreenToClient(GetHwnd(),&(lvhti.pt));
1799 if ( ListView_HitTest(GetHwnd(),&lvhti) != -1 )
cb0f56f9 1800 {
225fe9d6
VZ
1801 if ( lvhti.flags & LVHT_ONITEM )
1802 {
1803 eventType = wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
1804 event.m_itemIndex = lvhti.iItem;
a1f79c1e
VZ
1805 event.m_pointDrag.x = lvhti.pt.x;
1806 event.m_pointDrag.y = lvhti.pt.y;
225fe9d6 1807 }
cb0f56f9 1808 }
11358d39 1809 break;
bdc72a22 1810
bf9b6266 1811#if defined(_WIN32_IE) && _WIN32_IE >= 0x300 \
11358d39
VZ
1812 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
1813 case NM_CUSTOMDRAW:
1814 *result = OnCustomDraw(lParam);
63166611 1815
11358d39 1816 return TRUE;
6ecfe2ac 1817#endif // _WIN32_IE >= 0x300
0b5efdc7 1818
11358d39
VZ
1819 case LVN_ODCACHEHINT:
1820 {
1821 const NM_CACHEHINT *cacheHint = (NM_CACHEHINT *)lParam;
614391dc 1822
11358d39 1823 eventType = wxEVT_COMMAND_LIST_CACHE_HINT;
e623926d 1824
11358d39
VZ
1825 // we get some really stupid cache hints like ones for items in
1826 // range 0..0 for an empty control or, after deleting an item,
1827 // for items in invalid range - filter this garbage out
1828 if ( cacheHint->iFrom < cacheHint->iTo )
1829 {
1830 event.m_oldItemIndex = cacheHint->iFrom;
e623926d 1831
11358d39
VZ
1832 long iMax = GetItemCount();
1833 event.m_itemIndex = cacheHint->iTo < iMax ? cacheHint->iTo
1834 : iMax - 1;
1835 }
1836 else
1837 {
1838 return FALSE;
1839 }
e623926d 1840 }
11358d39 1841 break;
614391dc 1842
11358d39
VZ
1843 case LVN_GETDISPINFO:
1844 if ( IsVirtual() )
1845 {
1846 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
98ec9dbe 1847
11358d39
VZ
1848 LV_ITEM& lvi = info->item;
1849 long item = lvi.iItem;
98ec9dbe 1850
11358d39
VZ
1851 if ( lvi.mask & LVIF_TEXT )
1852 {
1853 wxString text = OnGetItemText(item, lvi.iSubItem);
1854 wxStrncpy(lvi.pszText, text, lvi.cchTextMax);
1855 }
98ec9dbe 1856
244531bc 1857#if defined(_WIN32_IE) && _WIN32_IE >= 0x300 \
5145e34f 1858 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 1 ) )
11358d39
VZ
1859 if ( lvi.mask & LVIF_IMAGE )
1860 {
1861 lvi.iImage = OnGetItemImage(item);
1862 }
244531bc 1863#endif
98ec9dbe 1864
11358d39
VZ
1865 // a little dose of healthy paranoia: as we never use
1866 // LVM_SETCALLBACKMASK we're not supposed to get these ones
1867 wxASSERT_MSG( !(lvi.mask & LVIF_STATE),
1868 _T("we don't support state callbacks yet!") );
98ec9dbe 1869
11358d39
VZ
1870 return TRUE;
1871 }
1872 // fall through
98ec9dbe 1873
11358d39
VZ
1874 default:
1875 return wxControl::MSWOnNotify(idCtrl, lParam, result);
1876 }
1877 }
1878 else
1879 {
1880 // where did this one come from?
1881 return FALSE;
acb62b84
VZ
1882 }
1883
bdc72a22
VZ
1884 // process the event
1885 // -----------------
1886
0b5efdc7 1887 event.SetEventType(eventType);
acb62b84 1888
0b5efdc7
VZ
1889 if ( !GetEventHandler()->ProcessEvent(event) )
1890 return FALSE;
acb62b84 1891
bdc72a22
VZ
1892 // post processing
1893 // ---------------
1894
225fe9d6 1895 switch ( nmhdr->code )
acb62b84 1896 {
6932a32c
VZ
1897 case LVN_DELETEALLITEMS:
1898 // always return TRUE to suppress all additional LVN_DELETEITEM
1899 // notifications - this makes deleting all items from a list ctrl
1900 // much faster
1901 *result = TRUE;
1902
1903 return TRUE;
1904
1ee4ead5 1905 case LVN_ENDLABELEDIT:
614391dc
VZ
1906 // logic here is inversed compared to all the other messages
1907 *result = event.IsAllowed();
1908
1909 return TRUE;
acb62b84 1910 }
acb62b84 1911
0b5efdc7 1912 *result = !event.IsAllowed();
fd3f686c 1913
0b5efdc7 1914 return TRUE;
2bda0e17
KB
1915}
1916
63166611
VZ
1917#if defined(_WIN32_IE) && _WIN32_IE >= 0x300
1918
1919WXLPARAM wxListCtrl::OnCustomDraw(WXLPARAM lParam)
1920{
1921 LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam;
1922 NMCUSTOMDRAW& nmcd = lplvcd->nmcd;
1923 switch ( nmcd.dwDrawStage )
1924 {
1925 case CDDS_PREPAINT:
1926 // if we've got any items with non standard attributes,
1927 // notify us before painting each item
1928 //
1929 // for virtual controls, always suppose that we have attributes as
1930 // there is no way to check for this
1931 return IsVirtual() || m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW
1932 : CDRF_DODEFAULT;
1933
1934 case CDDS_ITEMPREPAINT:
1935 {
1936 size_t item = (size_t)nmcd.dwItemSpec;
a7f560a2
VZ
1937 if ( item >= (size_t)GetItemCount() )
1938 {
1939 // we get this message with item == 0 for an empty control,
1940 // we must ignore it as calling OnGetItemAttr() would be
1941 // wrong
1942 return CDRF_DODEFAULT;
1943 }
1944
63166611
VZ
1945 wxListItemAttr *attr =
1946 IsVirtual() ? OnGetItemAttr(item)
1947 : (wxListItemAttr *)m_attrs.Get(item);
1948
1949 if ( !attr )
1950 {
1951 // nothing to do for this item
1952 return CDRF_DODEFAULT;
1953 }
1954
1955 HFONT hFont;
1956 wxColour colText, colBack;
1957 if ( attr->HasFont() )
1958 {
1959 wxFont font = attr->GetFont();
1960 hFont = (HFONT)font.GetResourceHandle();
1961 }
1962 else
1963 {
1964 hFont = 0;
1965 }
1966
1967 if ( attr->HasTextColour() )
1968 {
1969 colText = attr->GetTextColour();
1970 }
1971 else
1972 {
1973 colText = GetTextColour();
1974 }
1975
1976 if ( attr->HasBackgroundColour() )
1977 {
1978 colBack = attr->GetBackgroundColour();
1979 }
1980 else
1981 {
1982 colBack = GetBackgroundColour();
1983 }
1984
1985 lplvcd->clrText = wxColourToRGB(colText);
1986 lplvcd->clrTextBk = wxColourToRGB(colBack);
1987
1988 // note that if we wanted to set colours for
1989 // individual columns (subitems), we would have
1990 // returned CDRF_NOTIFYSUBITEMREDRAW from here
1991 if ( hFont )
1992 {
1993 ::SelectObject(nmcd.hdc, hFont);
1994
1995 return CDRF_NEWFONT;
1996 }
1997 }
1998 // fall through to return CDRF_DODEFAULT
1999
2000 default:
2001 return CDRF_DODEFAULT;
2002 }
2003}
2004
2005#endif // NM_CUSTOMDRAW supported
2006
2702ed5a
JS
2007// Necessary for drawing hrules and vrules, if specified
2008void wxListCtrl::OnPaint(wxPaintEvent& event)
2009{
2010 wxPaintDC dc(this);
2011
2012 wxControl::OnPaint(event);
2013
2014 // Reset the device origin since it may have been set
2015 dc.SetDeviceOrigin(0, 0);
2016
2017 bool drawHRules = ((GetWindowStyle() & wxLC_HRULES) != 0);
2018 bool drawVRules = ((GetWindowStyle() & wxLC_VRULES) != 0);
2019
2020 if (!drawHRules && !drawVRules)
2021 return;
2022 if ((GetWindowStyle() & wxLC_REPORT) == 0)
2023 return;
2024
a756f210 2025 wxPen pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT), 1, wxSOLID);
2702ed5a
JS
2026 dc.SetPen(pen);
2027 dc.SetBrush(* wxTRANSPARENT_BRUSH);
2028
2029 wxSize clientSize = GetClientSize();
2030 wxRect itemRect;
2031 int cy=0;
2032
2702ed5a
JS
2033 int itemCount = GetItemCount();
2034 int i;
625cb8c0 2035 if (drawHRules)
2702ed5a 2036 {
6443de02
RD
2037 long top = GetTopItem();
2038 for (i = top; i < top + GetCountPerPage() + 1; i++)
2702ed5a 2039 {
625cb8c0 2040 if (GetItemRect(i, itemRect))
ca286917 2041 {
625cb8c0
RD
2042 cy = itemRect.GetTop();
2043 if (i != 0) // Don't draw the first one
2044 {
2045 dc.DrawLine(0, cy, clientSize.x, cy);
2046 }
2047 // Draw last line
2cefcb34 2048 if (i == itemCount - 1)
625cb8c0
RD
2049 {
2050 cy = itemRect.GetBottom();
2051 dc.DrawLine(0, cy, clientSize.x, cy);
2052 }
2702ed5a
JS
2053 }
2054 }
2055 }
2cefcb34 2056 i = itemCount - 1;
2702ed5a
JS
2057 if (drawVRules && (i > -1))
2058 {
2059 wxRect firstItemRect;
2060 GetItemRect(0, firstItemRect);
2061
2062 if (GetItemRect(i, itemRect))
2063 {
2064 int col;
2065 int x = itemRect.GetX();
2066 for (col = 0; col < GetColumnCount(); col++)
2067 {
2068 int colWidth = GetColumnWidth(col);
2069 x += colWidth ;
2070 dc.DrawLine(x, firstItemRect.GetY() - 2, x, itemRect.GetBottom());
2071 }
2072 }
2073 }
2074}
2075
98ec9dbe
VZ
2076// ----------------------------------------------------------------------------
2077// virtual list controls
2078// ----------------------------------------------------------------------------
2079
d699f48b 2080wxString wxListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const
98ec9dbe
VZ
2081{
2082 // this is a pure virtual function, in fact - which is not really pure
2083 // because the controls which are not virtual don't need to implement it
2084 wxFAIL_MSG( _T("not supposed to be called") );
2085
2086 return wxEmptyString;
2087}
2088
d699f48b 2089int wxListCtrl::OnGetItemImage(long WXUNUSED(item)) const
98ec9dbe
VZ
2090{
2091 // same as above
2092 wxFAIL_MSG( _T("not supposed to be called") );
2093
2094 return -1;
2095}
2096
d699f48b 2097wxListItemAttr *wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const
6c02c329 2098{
63166611 2099 wxASSERT_MSG( item >= 0 && item < GetItemCount(),
6c02c329
VZ
2100 _T("invalid item index in OnGetItemAttr()") );
2101
2102 // no attributes by default
2103 return NULL;
2104}
2105
98ec9dbe
VZ
2106void wxListCtrl::SetItemCount(long count)
2107{
2108 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2109
2110 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT, (WPARAM)count, 0) )
2111 {
2112 wxLogLastError(_T("ListView_SetItemCount"));
2113 }
2114}
2115
a7f560a2
VZ
2116void wxListCtrl::RefreshItem(long item)
2117{
2d33aec9
VZ
2118 // strangely enough, ListView_Update() results in much more flicker here
2119 // than a dumb Refresh() -- why?
2120#if 0
a7f560a2
VZ
2121 if ( !ListView_Update(GetHwnd(), item) )
2122 {
2123 wxLogLastError(_T("ListView_Update"));
2124 }
2d33aec9
VZ
2125#else // 1
2126 wxRect rect;
2127 GetItemRect(item, rect);
2128 RefreshRect(rect);
2129#endif // 0/1
a7f560a2
VZ
2130}
2131
2132void wxListCtrl::RefreshItems(long itemFrom, long itemTo)
2133{
d0debf52
VZ
2134 wxRect rect1, rect2;
2135 GetItemRect(itemFrom, rect1);
2136 GetItemRect(itemTo, rect2);
2137
2138 wxRect rect = rect1;
2139 rect.height = rect2.GetBottom() - rect1.GetTop();
2140
2141 RefreshRect(rect);
a7f560a2
VZ
2142}
2143
edccf428
VZ
2144// ----------------------------------------------------------------------------
2145// wxListItem
2146// ----------------------------------------------------------------------------
2147
2bda0e17 2148// List item structure
0b5efdc7 2149wxListItem::wxListItem()
2bda0e17
KB
2150{
2151 m_mask = 0;
2152 m_itemId = 0;
2153 m_col = 0;
2154 m_state = 0;
2155 m_stateMask = 0;
2156 m_image = 0;
0b5efdc7 2157 m_data = 0;
2bda0e17 2158
0b5efdc7
VZ
2159 m_format = wxLIST_FORMAT_CENTRE;
2160 m_width = 0;
bdc72a22
VZ
2161
2162 m_attr = NULL;
2bda0e17
KB
2163}
2164
9b00bb16
RR
2165void wxListItem::Clear()
2166{
2167 m_mask = 0;
2168 m_itemId = 0;
2169 m_col = 0;
2170 m_state = 0;
2171 m_stateMask = 0;
2172 m_image = 0;
2173 m_data = 0;
2174 m_format = wxLIST_FORMAT_CENTRE;
2175 m_width = 0;
2176 m_text = wxEmptyString;
2177
2178 if (m_attr) delete m_attr;
2179 m_attr = NULL;
2180}
2181
2182void wxListItem::ClearAttributes()
2183{
2184 if (m_attr) delete m_attr;
2185 m_attr = NULL;
2186}
2187
8dff2b5c
VZ
2188static void wxConvertFromMSWListItem(HWND hwndListCtrl,
2189 wxListItem& info,
2190 LV_ITEM& lvItem)
2bda0e17 2191{
0b5efdc7
VZ
2192 info.m_data = lvItem.lParam;
2193 info.m_mask = 0;
2194 info.m_state = 0;
2195 info.m_stateMask = 0;
2196 info.m_itemId = lvItem.iItem;
acb62b84 2197
0b5efdc7 2198 long oldMask = lvItem.mask;
acb62b84 2199
0b5efdc7 2200 bool needText = FALSE;
8dff2b5c 2201 if (hwndListCtrl != 0)
acb62b84 2202 {
0b5efdc7
VZ
2203 if ( lvItem.mask & LVIF_TEXT )
2204 needText = FALSE;
2205 else
2206 needText = TRUE;
acb62b84 2207
0b5efdc7
VZ
2208 if ( needText )
2209 {
837e5743 2210 lvItem.pszText = new wxChar[513];
0b5efdc7
VZ
2211 lvItem.cchTextMax = 512;
2212 }
edccf428 2213 lvItem.mask |= LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
8dff2b5c 2214 ::SendMessage(hwndListCtrl, LVM_GETITEM, 0, (LPARAM)& lvItem);
0b5efdc7 2215 }
acb62b84 2216
0b5efdc7 2217 if ( lvItem.mask & LVIF_STATE )
acb62b84 2218 {
0b5efdc7
VZ
2219 info.m_mask |= wxLIST_MASK_STATE;
2220
2221 if ( lvItem.stateMask & LVIS_CUT)
2222 {
edccf428 2223 info.m_stateMask |= wxLIST_STATE_CUT;
0b5efdc7 2224 if ( lvItem.state & LVIS_CUT )
edccf428 2225 info.m_state |= wxLIST_STATE_CUT;
0b5efdc7
VZ
2226 }
2227 if ( lvItem.stateMask & LVIS_DROPHILITED)
2228 {
edccf428 2229 info.m_stateMask |= wxLIST_STATE_DROPHILITED;
0b5efdc7 2230 if ( lvItem.state & LVIS_DROPHILITED )
edccf428 2231 info.m_state |= wxLIST_STATE_DROPHILITED;
0b5efdc7
VZ
2232 }
2233 if ( lvItem.stateMask & LVIS_FOCUSED)
2234 {
edccf428 2235 info.m_stateMask |= wxLIST_STATE_FOCUSED;
0b5efdc7 2236 if ( lvItem.state & LVIS_FOCUSED )
edccf428 2237 info.m_state |= wxLIST_STATE_FOCUSED;
0b5efdc7
VZ
2238 }
2239 if ( lvItem.stateMask & LVIS_SELECTED)
2240 {
edccf428 2241 info.m_stateMask |= wxLIST_STATE_SELECTED;
0b5efdc7 2242 if ( lvItem.state & LVIS_SELECTED )
edccf428 2243 info.m_state |= wxLIST_STATE_SELECTED;
0b5efdc7 2244 }
acb62b84 2245 }
0b5efdc7
VZ
2246
2247 if ( lvItem.mask & LVIF_TEXT )
acb62b84 2248 {
0b5efdc7
VZ
2249 info.m_mask |= wxLIST_MASK_TEXT;
2250 info.m_text = lvItem.pszText;
acb62b84 2251 }
0b5efdc7 2252 if ( lvItem.mask & LVIF_IMAGE )
acb62b84 2253 {
0b5efdc7
VZ
2254 info.m_mask |= wxLIST_MASK_IMAGE;
2255 info.m_image = lvItem.iImage;
acb62b84 2256 }
0b5efdc7
VZ
2257 if ( lvItem.mask & LVIF_PARAM )
2258 info.m_mask |= wxLIST_MASK_DATA;
2259 if ( lvItem.mask & LVIF_DI_SETITEM )
2260 info.m_mask |= wxLIST_SET_ITEM;
2261 info.m_col = lvItem.iSubItem;
2262
2263 if (needText)
acb62b84 2264 {
0b5efdc7
VZ
2265 if (lvItem.pszText)
2266 delete[] lvItem.pszText;
acb62b84 2267 }
edccf428 2268 lvItem.mask = oldMask;
2bda0e17
KB
2269}
2270
8dff2b5c
VZ
2271static void wxConvertToMSWFlags(long state, long stateMask, LV_ITEM& lvItem)
2272{
2273 if (stateMask & wxLIST_STATE_CUT)
2274 {
2275 lvItem.stateMask |= LVIS_CUT;
2276 if (state & wxLIST_STATE_CUT)
2277 lvItem.state |= LVIS_CUT;
2278 }
2279 if (stateMask & wxLIST_STATE_DROPHILITED)
2280 {
2281 lvItem.stateMask |= LVIS_DROPHILITED;
2282 if (state & wxLIST_STATE_DROPHILITED)
2283 lvItem.state |= LVIS_DROPHILITED;
2284 }
2285 if (stateMask & wxLIST_STATE_FOCUSED)
2286 {
2287 lvItem.stateMask |= LVIS_FOCUSED;
2288 if (state & wxLIST_STATE_FOCUSED)
2289 lvItem.state |= LVIS_FOCUSED;
2290 }
2291 if (stateMask & wxLIST_STATE_SELECTED)
2292 {
2293 lvItem.stateMask |= LVIS_SELECTED;
2294 if (state & wxLIST_STATE_SELECTED)
2295 lvItem.state |= LVIS_SELECTED;
2296 }
2297}
2298
2299static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
2300 const wxListItem& info,
2301 LV_ITEM& lvItem)
2bda0e17 2302{
edccf428 2303 lvItem.iItem = (int) info.m_itemId;
acb62b84 2304
edccf428 2305 lvItem.iImage = info.m_image;
0b5efdc7
VZ
2306 lvItem.lParam = info.m_data;
2307 lvItem.stateMask = 0;
2308 lvItem.state = 0;
2309 lvItem.mask = 0;
2310 lvItem.iSubItem = info.m_col;
acb62b84 2311
0b5efdc7 2312 if (info.m_mask & wxLIST_MASK_STATE)
acb62b84 2313 {
edccf428 2314 lvItem.mask |= LVIF_STATE;
8dff2b5c
VZ
2315
2316 wxConvertToMSWFlags(info.m_state, info.m_stateMask, lvItem);
acb62b84 2317 }
acb62b84 2318
0b5efdc7 2319 if (info.m_mask & wxLIST_MASK_TEXT)
acb62b84 2320 {
edccf428 2321 lvItem.mask |= LVIF_TEXT;
0b5efdc7
VZ
2322 if ( ctrl->GetWindowStyleFlag() & wxLC_USER_TEXT )
2323 {
2324 lvItem.pszText = LPSTR_TEXTCALLBACK;
2325 }
2326 else
2327 {
e421922f
VZ
2328 // pszText is not const, hence the cast
2329 lvItem.pszText = (wxChar *)info.m_text.c_str();
0b5efdc7
VZ
2330 if ( lvItem.pszText )
2331 lvItem.cchTextMax = info.m_text.Length();
2332 else
2333 lvItem.cchTextMax = 0;
2334 }
acb62b84 2335 }
0b5efdc7 2336 if (info.m_mask & wxLIST_MASK_IMAGE)
edccf428 2337 lvItem.mask |= LVIF_IMAGE;
0b5efdc7 2338 if (info.m_mask & wxLIST_MASK_DATA)
edccf428 2339 lvItem.mask |= LVIF_PARAM;
2bda0e17
KB
2340}
2341
574c939e 2342static void wxConvertToMSWListCol(int WXUNUSED(col), const wxListItem& item,
6f806543
VZ
2343 LV_COLUMN& lvCol)
2344{
2345 wxZeroMemory(lvCol);
2346
2347 if ( item.m_mask & wxLIST_MASK_TEXT )
2348 {
2349 lvCol.mask |= LVCF_TEXT;
2350 lvCol.pszText = (wxChar *)item.m_text.c_str(); // cast is safe
2351 }
2352
2353 if ( item.m_mask & wxLIST_MASK_FORMAT )
2354 {
2355 lvCol.mask |= LVCF_FMT;
2356
2357 if ( item.m_format == wxLIST_FORMAT_LEFT )
2358 lvCol.fmt = LVCFMT_LEFT;
2359 else if ( item.m_format == wxLIST_FORMAT_RIGHT )
2360 lvCol.fmt = LVCFMT_RIGHT;
2361 else if ( item.m_format == wxLIST_FORMAT_CENTRE )
2362 lvCol.fmt = LVCFMT_CENTER;
2363 }
2364
2365 if ( item.m_mask & wxLIST_MASK_WIDTH )
2366 {
2367 lvCol.mask |= LVCF_WIDTH;
2368 if ( item.m_width == wxLIST_AUTOSIZE)
2369 lvCol.cx = LVSCW_AUTOSIZE;
2370 else if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER)
2371 lvCol.cx = LVSCW_AUTOSIZE_USEHEADER;
2372 else
2373 lvCol.cx = item.m_width;
2374 }
2375
244531bc 2376#if defined(_WIN32_IE) && _WIN32_IE >= 0x300 \
5145e34f 2377 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 1 ) )
6f806543
VZ
2378 if ( item.m_mask & wxLIST_MASK_IMAGE )
2379 {
2380 if ( wxTheApp->GetComCtl32Version() >= 470 )
2381 {
2382 lvCol.mask |= LVCF_IMAGE;
2383 lvCol.iImage = item.m_image;
2384 }
2385 //else: it doesn't support item images anyhow
2386 }
244531bc 2387#endif
6f806543
VZ
2388}
2389
1e6feb95 2390#endif // wxUSE_LISTCTRL