]> git.saurik.com Git - wxWidgets.git/blame - src/msw/listctrl.cpp
Use Unix EOL format for the new files.
[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
164a7972 5// Modified by: Agron Selimaj
2bda0e17
KB
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
edccf428
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
0b5efdc7 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
a71d815b 27#if wxUSE_LISTCTRL
9f303149 28
e409b62a
PC
29#include "wx/listctrl.h"
30
2bda0e17 31#ifndef WX_PRECOMP
57bd4c60 32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
9f303149 33 #include "wx/app.h"
9f303149
VZ
34 #include "wx/intl.h"
35 #include "wx/log.h"
36 #include "wx/settings.h"
ed4b0fdc 37 #include "wx/dcclient.h"
fec9cc08 38 #include "wx/textctrl.h"
2bda0e17
KB
39#endif
40
de8e98f1 41#include "wx/imaglist.h"
ceef3893 42#include "wx/vector.h"
2bda0e17
KB
43
44#include "wx/msw/private.h"
0c03f52d 45#include "wx/msw/private/keyboard.h"
2bda0e17 46
781a24e8 47#if defined(__WXWINCE__) && !defined(__HANDHELDPC__)
80a81a12
JS
48 #include <ole2.h>
49 #include <shellapi.h>
2d36b3d8
JS
50 #if _WIN32_WCE < 400
51 #include <aygshell.h>
52 #endif
80a81a12
JS
53#endif
54
2f73fd38
MW
55// Currently gcc and watcom don't define NMLVFINDITEM, and DMC only defines
56// it by its old name NM_FINDTIEM.
57//
73f91e1e 58#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(NMLVFINDITEM)
2f73fd38 59 #define HAVE_NMLVFINDITEM 1
73f91e1e 60#elif defined(__DMC__) || defined(NM_FINDITEM)
206391cb
VZ
61 #define HAVE_NMLVFINDITEM 1
62 #define NMLVFINDITEM NM_FINDITEM
2f73fd38
MW
63#endif
64
edccf428
VZ
65// ----------------------------------------------------------------------------
66// private functions
67// ----------------------------------------------------------------------------
2bda0e17 68
8dff2b5c
VZ
69// convert our state and mask flags to LV_ITEM constants
70static void wxConvertToMSWFlags(long state, long mask, LV_ITEM& lvItem);
71
72// convert wxListItem to LV_ITEM
73static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
74 const wxListItem& info, LV_ITEM& lvItem);
75
76// convert LV_ITEM to wxListItem
77static void wxConvertFromMSWListItem(HWND hwndListCtrl,
78 wxListItem& info,
79 /* const */ LV_ITEM& lvItem);
2bda0e17 80
6f806543 81// convert our wxListItem to LV_COLUMN
e64658ed
VZ
82static void wxConvertToMSWListCol(HWND hwndList,
83 int col,
84 const wxListItem& item,
6f806543
VZ
85 LV_COLUMN& lvCol);
86
89cafab0
VZ
87namespace
88{
89
90// replacement for ListView_GetSubItemRect() which provokes warnings like
91// "the address of 'rc' will always evaluate as 'true'" when used with mingw32
92// 4.3+
93//
94// this function does no error checking on item and subitem parameters, notice
67561862
VZ
95// that subitem 0 means the whole item so there is no way to retrieve the
96// rectangle of the first subitem using this function, in particular notice
97// that the index is *not* 1-based, in spite of what MSDN says
89cafab0
VZ
98inline bool
99wxGetListCtrlSubItemRect(HWND hwnd, int item, int subitem, int flags, RECT& rect)
100{
101 rect.top = subitem;
102 rect.left = flags;
103 return ::SendMessage(hwnd, LVM_GETSUBITEMRECT, item, (LPARAM)&rect) != 0;
104}
105
106inline bool
107wxGetListCtrlItemRect(HWND hwnd, int item, int flags, RECT& rect)
108{
109 return wxGetListCtrlSubItemRect(hwnd, item, 0, flags, rect);
110}
111
112} // anonymous namespace
113
8c21905b
VS
114// ----------------------------------------------------------------------------
115// private helper classes
116// ----------------------------------------------------------------------------
117
118// We have to handle both fooW and fooA notifications in several cases
d2ed74b9 119// because of broken comctl32.dll and/or unicows.dll. This class is used to
73d8c5fd 120// convert LV_ITEMA and LV_ITEMW to LV_ITEM (which is either LV_ITEMA or
8c21905b
VS
121// LV_ITEMW depending on wxUSE_UNICODE setting), so that it can be processed
122// by wxConvertToMSWListItem().
d2ed74b9
VZ
123#if wxUSE_UNICODE
124 #define LV_ITEM_NATIVE LV_ITEMW
125 #define LV_ITEM_OTHER LV_ITEMA
126
127 #define LV_CONV_TO_WX cMB2WX
128 #define LV_CONV_BUF wxMB2WXbuf
129#else // ANSI
130 #define LV_ITEM_NATIVE LV_ITEMA
131 #define LV_ITEM_OTHER LV_ITEMW
132
133 #define LV_CONV_TO_WX cWC2WX
134 #define LV_CONV_BUF wxWC2WXbuf
135#endif // Unicode/ANSI
136
8c21905b
VS
137class wxLV_ITEM
138{
139public:
d2ed74b9
VZ
140 // default ctor, use Init() later
141 wxLV_ITEM() { m_buf = NULL; m_pItem = NULL; }
8c21905b 142
d2ed74b9
VZ
143 // init without conversion
144 void Init(LV_ITEM_NATIVE& item)
8c21905b 145 {
9a83f860 146 wxASSERT_MSG( !m_pItem, wxT("Init() called twice?") );
d2ed74b9
VZ
147
148 m_pItem = &item;
73d8c5fd 149 }
8c21905b 150
d2ed74b9 151 // init with conversion
fbfb8bcc 152 void Init(const LV_ITEM_OTHER& item)
8c21905b 153 {
d2ed74b9
VZ
154 // avoid unnecessary dynamic memory allocation, jjust make m_pItem
155 // point to our own m_item
2b5f62a0 156
1c6f2414
WS
157 // memcpy() can't work if the struct sizes are different
158 wxCOMPILE_TIME_ASSERT( sizeof(LV_ITEM_OTHER) == sizeof(LV_ITEM_NATIVE),
159 CodeCantWorkIfDiffSizes);
160
d2ed74b9
VZ
161 memcpy(&m_item, &item, sizeof(LV_ITEM_NATIVE));
162
163 // convert text from ANSI to Unicod if necessary
8c21905b
VS
164 if ( (item.mask & LVIF_TEXT) && item.pszText )
165 {
d2ed74b9
VZ
166 m_buf = new LV_CONV_BUF(wxConvLocal.LV_CONV_TO_WX(item.pszText));
167 m_item.pszText = (wxChar *)m_buf->data();
8c21905b 168 }
73d8c5fd 169 }
d2ed74b9
VZ
170
171 // ctor without conversion
172 wxLV_ITEM(LV_ITEM_NATIVE& item) : m_buf(NULL), m_pItem(&item) { }
173
174 // ctor with conversion
175 wxLV_ITEM(LV_ITEM_OTHER& item) : m_buf(NULL)
176 {
177 Init(item);
178 }
179
180 ~wxLV_ITEM() { delete m_buf; }
181
182 // conversion to the real LV_ITEM
183 operator LV_ITEM_NATIVE&() const { return *m_pItem; }
184
8c21905b 185private:
d2ed74b9 186 LV_CONV_BUF *m_buf;
8c21905b 187
d2ed74b9
VZ
188 LV_ITEM_NATIVE *m_pItem;
189 LV_ITEM_NATIVE m_item;
22f3361e 190
c0c133e1 191 wxDECLARE_NO_COPY_CLASS(wxLV_ITEM);
8c21905b
VS
192};
193
7cf46fdb
VZ
194///////////////////////////////////////////////////////
195// Problem:
73d8c5fd
RD
196// The MSW version had problems with SetTextColour() et
197// al as the wxListItemAttr's were stored keyed on the
198// item index. If a item was inserted anywhere but the end
c767a5bb 199// of the list the text attributes (colour etc) for
7cf46fdb 200// the following items were out of sync.
73d8c5fd 201//
7cf46fdb 202// Solution:
73d8c5fd 203// Under MSW the only way to associate data with a List
43e8916f 204// item independent of its position in the list is to
73d8c5fd
RD
205// store a pointer to it in its lParam attribute. However
206// user programs are already using this (via the
7cf46fdb 207// SetItemData() GetItemData() calls).
73d8c5fd
RD
208//
209// However what we can do is store a pointer to a
210// structure which contains the attributes we want *and*
c767a5bb 211// a lParam -- and this is what wxMSWListItemData does.
73d8c5fd 212//
c767a5bb 213// To conserve memory, a wxMSWListItemData is
73d8c5fd 214// only allocated for a LV_ITEM if text attributes or
7cf46fdb 215// user data(lparam) are being set.
c767a5bb 216class wxMSWListItemData
7cf46fdb
VZ
217{
218public:
c767a5bb
VZ
219 wxMSWListItemData() : attr(NULL), lParam(0) {}
220 ~wxMSWListItemData() { delete attr; }
7cf46fdb 221
c767a5bb
VZ
222 wxListItemAttr *attr;
223 LPARAM lParam; // real user data
22f3361e 224
c767a5bb 225 wxDECLARE_NO_COPY_CLASS(wxMSWListItemData);
7cf46fdb
VZ
226};
227
786a2425 228#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
229WX_DEFINE_FLAGS( wxListCtrlStyle )
230
321239b6 231wxBEGIN_FLAGS( wxListCtrlStyle )
bc9fb572
JS
232 // new style border flags, we put them first to
233 // use them for streaming out
321239b6
SC
234 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
235 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
236 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
237 wxFLAGS_MEMBER(wxBORDER_RAISED)
238 wxFLAGS_MEMBER(wxBORDER_STATIC)
239 wxFLAGS_MEMBER(wxBORDER_NONE)
598ddd96 240
bc9fb572 241 // old style border flags
321239b6
SC
242 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
243 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
244 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
245 wxFLAGS_MEMBER(wxRAISED_BORDER)
246 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 247 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
248
249 // standard window styles
321239b6
SC
250 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
251 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
252 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
253 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 254 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
321239b6
SC
255 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
256 wxFLAGS_MEMBER(wxVSCROLL)
257 wxFLAGS_MEMBER(wxHSCROLL)
258
259 wxFLAGS_MEMBER(wxLC_LIST)
260 wxFLAGS_MEMBER(wxLC_REPORT)
261 wxFLAGS_MEMBER(wxLC_ICON)
262 wxFLAGS_MEMBER(wxLC_SMALL_ICON)
263 wxFLAGS_MEMBER(wxLC_ALIGN_TOP)
264 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT)
265 wxFLAGS_MEMBER(wxLC_AUTOARRANGE)
266 wxFLAGS_MEMBER(wxLC_USER_TEXT)
267 wxFLAGS_MEMBER(wxLC_EDIT_LABELS)
268 wxFLAGS_MEMBER(wxLC_NO_HEADER)
269 wxFLAGS_MEMBER(wxLC_SINGLE_SEL)
270 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING)
271 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING)
272 wxFLAGS_MEMBER(wxLC_VIRTUAL)
273
274wxEND_FLAGS( wxListCtrlStyle )
bc9fb572 275
786a2425
SC
276IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl, wxControl,"wx/listctrl.h")
277
321239b6 278wxBEGIN_PROPERTIES_TABLE(wxListCtrl)
598ddd96 279 wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent )
c5ca409b 280
af498247 281 wxPROPERTY_FLAGS( WindowStyle , wxListCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
321239b6 282wxEND_PROPERTIES_TABLE()
786a2425 283
321239b6
SC
284wxBEGIN_HANDLERS_TABLE(wxListCtrl)
285wxEND_HANDLERS_TABLE()
786a2425 286
598ddd96 287wxCONSTRUCTOR_5( wxListCtrl , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
786a2425
SC
288
289/*
9d55bfef 290 TODO : Expose more information of a list's layout etc. via appropriate objects (a la NotebookPageInfo)
786a2425
SC
291*/
292#else
8f177c8e 293IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl)
786a2425
SC
294#endif
295
bf9b6266 296IMPLEMENT_DYNAMIC_CLASS(wxListView, wxListCtrl)
8f177c8e 297IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject)
2bda0e17 298
2d33aec9
VZ
299IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent)
300
2702ed5a
JS
301BEGIN_EVENT_TABLE(wxListCtrl, wxControl)
302 EVT_PAINT(wxListCtrl::OnPaint)
303END_EVENT_TABLE()
304
edccf428
VZ
305// ============================================================================
306// implementation
307// ============================================================================
308
309// ----------------------------------------------------------------------------
310// wxListCtrl construction
311// ----------------------------------------------------------------------------
312
bdc72a22 313void wxListCtrl::Init()
2bda0e17 314{
c767a5bb
VZ
315 m_imageListNormal =
316 m_imageListSmall =
0b5efdc7 317 m_imageListState = NULL;
c767a5bb
VZ
318 m_ownsImageListNormal =
319 m_ownsImageListSmall =
320 m_ownsImageListState = false;
321
2bda0e17 322 m_colCount = 0;
68c124a1 323 m_count = 0;
bbcdf8bc 324 m_textCtrl = NULL;
c767a5bb 325
598ddd96 326 m_hasAnyAttr = false;
2bda0e17
KB
327}
328
0b5efdc7
VZ
329bool wxListCtrl::Create(wxWindow *parent,
330 wxWindowID id,
331 const wxPoint& pos,
332 const wxSize& size,
333 long style,
97c611f8 334 const wxValidator& validator,
0b5efdc7 335 const wxString& name)
2bda0e17 336{
97c611f8 337 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
598ddd96 338 return false;
11b6a93b 339
f31a4098 340 if ( !MSWCreateControl(WC_LISTVIEW, wxEmptyString, pos, size) )
598ddd96 341 return false;
2bda0e17 342
97c611f8
VZ
343 // explicitly say that we want to use Unicode because otherwise we get ANSI
344 // versions of _some_ messages (notably LVN_GETDISPINFOA) in MSLU build
9a63feff 345 wxSetCCUnicodeFormat(GetHwnd());
2bda0e17 346
6e21a3db
KH
347 // We must set the default text colour to the system/theme color, otherwise
348 // GetTextColour will always return black
349 SetTextColour(GetDefaultAttributes().colFg);
350
04d24675
VZ
351 if ( InReportView() )
352 MSWSetExListStyles();
353
354 return true;
355}
356
357void wxListCtrl::MSWSetExListStyles()
358{
16a0ccd0
VZ
359 // for comctl32.dll v 4.70+ we want to have some non default extended
360 // styles because it's prettier (and also because wxGTK does it like this)
04d24675 361 if ( wxApp::GetComCtl32Version() >= 470 )
97c611f8 362 {
67d3fc49
VZ
363 ::SendMessage
364 (
365 GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE, 0,
2036bdd3
VZ
366 // LVS_EX_LABELTIP shouldn't be used under Windows CE where it's
367 // not defined in the SDK headers
368#ifdef LVS_EX_LABELTIP
67d3fc49 369 LVS_EX_LABELTIP |
2036bdd3 370#endif
67d3fc49
VZ
371 LVS_EX_FULLROWSELECT |
372 LVS_EX_SUBITEMIMAGES |
373 // normally this should be governed by a style as it's probably not
374 // always appropriate, but we don't have any free styles left and
375 // it seems better to enable it by default than disable
376 LVS_EX_HEADERDRAGDROP
377 );
97c611f8 378 }
97c611f8 379}
2bda0e17 380
97c611f8
VZ
381WXDWORD wxListCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const
382{
383 WXDWORD wstyle = wxControl::MSWGetStyle(style, exstyle);
2bda0e17 384
97c611f8 385 wstyle |= LVS_SHAREIMAGELISTS | LVS_SHOWSELALWAYS;
b0766406 386
4b6a582b 387#if wxDEBUG_LEVEL
97c611f8 388 size_t nModes = 0;
edccf428 389
97c611f8
VZ
390 #define MAP_MODE_STYLE(wx, ms) \
391 if ( style & (wx) ) { wstyle |= (ms); nModes++; }
4b6a582b 392#else // !wxDEBUG_LEVEL
97c611f8
VZ
393 #define MAP_MODE_STYLE(wx, ms) \
394 if ( style & (wx) ) wstyle |= (ms);
4b6a582b 395#endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL
edccf428 396
97c611f8
VZ
397 MAP_MODE_STYLE(wxLC_ICON, LVS_ICON)
398 MAP_MODE_STYLE(wxLC_SMALL_ICON, LVS_SMALLICON)
399 MAP_MODE_STYLE(wxLC_LIST, LVS_LIST)
400 MAP_MODE_STYLE(wxLC_REPORT, LVS_REPORT)
edccf428 401
97c611f8 402 wxASSERT_MSG( nModes == 1,
9a83f860 403 wxT("wxListCtrl style should have exactly one mode bit set") );
edccf428 404
97c611f8 405#undef MAP_MODE_STYLE
2bda0e17 406
97c611f8
VZ
407 if ( style & wxLC_ALIGN_LEFT )
408 wstyle |= LVS_ALIGNLEFT;
2bda0e17 409
97c611f8
VZ
410 if ( style & wxLC_ALIGN_TOP )
411 wstyle |= LVS_ALIGNTOP;
2bda0e17 412
97c611f8
VZ
413 if ( style & wxLC_AUTOARRANGE )
414 wstyle |= LVS_AUTOARRANGE;
f8352807 415
97c611f8
VZ
416 if ( style & wxLC_NO_SORT_HEADER )
417 wstyle |= LVS_NOSORTHEADER;
0b5efdc7 418
97c611f8
VZ
419 if ( style & wxLC_NO_HEADER )
420 wstyle |= LVS_NOCOLUMNHEADER;
0b5efdc7 421
97c611f8
VZ
422 if ( style & wxLC_EDIT_LABELS )
423 wstyle |= LVS_EDITLABELS;
bfc8138f 424
97c611f8
VZ
425 if ( style & wxLC_SINGLE_SEL )
426 wstyle |= LVS_SINGLESEL;
427
428 if ( style & wxLC_SORT_ASCENDING )
0b5efdc7 429 {
97c611f8
VZ
430 wstyle |= LVS_SORTASCENDING;
431
432 wxASSERT_MSG( !(style & wxLC_SORT_DESCENDING),
9a83f860 433 wxT("can't sort in ascending and descending orders at once") );
0b5efdc7 434 }
97c611f8
VZ
435 else if ( style & wxLC_SORT_DESCENDING )
436 wstyle |= LVS_SORTDESCENDING;
f8352807 437
97c611f8
VZ
438#if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
439 if ( style & wxLC_VIRTUAL )
440 {
2a1f999f 441 int ver = wxApp::GetComCtl32Version();
97c611f8
VZ
442 if ( ver < 470 )
443 {
444 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."),
445 ver / 100, ver % 100);
446 }
2bda0e17 447
97c611f8
VZ
448 wstyle |= LVS_OWNERDATA;
449 }
450#endif // ancient cygwin
2bda0e17 451
97c611f8 452 return wstyle;
2bda0e17
KB
453}
454
edccf428
VZ
455void wxListCtrl::UpdateStyle()
456{
97c611f8 457 if ( GetHwnd() )
edccf428
VZ
458 {
459 // The new window view style
97c611f8 460 DWORD dwStyleNew = MSWGetStyle(m_windowStyle, NULL);
edccf428 461
6e2fef03
VZ
462 // some styles are not returned by MSWGetStyle()
463 if ( IsShown() )
464 dwStyleNew |= WS_VISIBLE;
465
910484a6 466 // Get the current window style.
edccf428
VZ
467 DWORD dwStyleOld = ::GetWindowLong(GetHwnd(), GWL_STYLE);
468
6e2fef03
VZ
469 // we don't have wxVSCROLL style, but the list control may have it,
470 // don't change it then
471 dwStyleNew |= dwStyleOld & (WS_HSCROLL | WS_VSCROLL);
472
910484a6 473 // Only set the window style if the view bits have changed.
edccf428
VZ
474 if ( dwStyleOld != dwStyleNew )
475 {
476 ::SetWindowLong(GetHwnd(), GWL_STYLE, dwStyleNew);
04d24675
VZ
477
478 // if we switched to the report view, set the extended styles for
479 // it too
480 if ( !(dwStyleOld & LVS_REPORT) && (dwStyleNew & LVS_REPORT) )
481 MSWSetExListStyles();
edccf428
VZ
482 }
483 }
484}
485
7cf46fdb 486void wxListCtrl::FreeAllInternalData()
2bda0e17 487{
c767a5bb
VZ
488 const unsigned count = m_internalData.size();
489 for ( unsigned n = 0; n < count; n++ )
490 delete m_internalData[n];
6149de71 491
c767a5bb 492 m_internalData.clear();
6932a32c 493}
d62228a6 494
5cd4cb75 495void wxListCtrl::DeleteEditControl()
6932a32c 496{
d62228a6 497 if ( m_textCtrl )
bbcdf8bc 498 {
7bf1474a 499 m_textCtrl->UnsubclassWin();
f3076f9f 500 m_textCtrl->SetHWND(0);
5276b0a5 501 wxDELETE(m_textCtrl);
bbcdf8bc 502 }
5cd4cb75
VZ
503}
504
505wxListCtrl::~wxListCtrl()
506{
507 FreeAllInternalData();
508
509 DeleteEditControl();
33ac7e6f 510
07763c99
VZ
511 if (m_ownsImageListNormal)
512 delete m_imageListNormal;
513 if (m_ownsImageListSmall)
514 delete m_imageListSmall;
515 if (m_ownsImageListState)
516 delete m_imageListState;
2bda0e17
KB
517}
518
edccf428
VZ
519// ----------------------------------------------------------------------------
520// set/get/change style
521// ----------------------------------------------------------------------------
522
2bda0e17 523// Add or remove a single window style
debe6624 524void wxListCtrl::SetSingleStyle(long style, bool add)
2bda0e17 525{
0b5efdc7 526 long flag = GetWindowStyleFlag();
2bda0e17 527
0b5efdc7 528 // Get rid of conflicting styles
acb62b84
VZ
529 if ( add )
530 {
0b5efdc7 531 if ( style & wxLC_MASK_TYPE)
edccf428 532 flag = flag & ~wxLC_MASK_TYPE;
0b5efdc7 533 if ( style & wxLC_MASK_ALIGN )
edccf428 534 flag = flag & ~wxLC_MASK_ALIGN;
0b5efdc7 535 if ( style & wxLC_MASK_SORT )
edccf428 536 flag = flag & ~wxLC_MASK_SORT;
acb62b84 537 }
2bda0e17 538
6e2fef03
VZ
539 if ( add )
540 flag |= style;
0b5efdc7 541 else
6e2fef03 542 flag &= ~style;
2bda0e17 543
6e2fef03 544 SetWindowStyleFlag(flag);
2bda0e17
KB
545}
546
547// Set the whole window style
debe6624 548void wxListCtrl::SetWindowStyleFlag(long flag)
2bda0e17 549{
6e2fef03
VZ
550 if ( flag != m_windowStyle )
551 {
9a8d75f1 552 wxControl::SetWindowStyleFlag(flag);
6e2fef03
VZ
553
554 UpdateStyle();
2bda0e17 555
6e2fef03
VZ
556 Refresh();
557 }
2bda0e17
KB
558}
559
edccf428
VZ
560// ----------------------------------------------------------------------------
561// accessors
562// ----------------------------------------------------------------------------
563
39c7a53c
VZ
564/* static */ wxVisualAttributes
565wxListCtrl::GetClassDefaultAttributes(wxWindowVariant variant)
566{
567 wxVisualAttributes attrs = GetCompositeControlsDefaultAttributes(variant);
568
569 // common controls have their own default font
570 attrs.font = wxGetCCDefaultFont();
571
572 return attrs;
573}
574
91b4c08d
VZ
575// Sets the foreground, i.e. text, colour
576bool wxListCtrl::SetForegroundColour(const wxColour& col)
577{
578 if ( !wxWindow::SetForegroundColour(col) )
598ddd96 579 return false;
91b4c08d
VZ
580
581 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col));
582
598ddd96 583 return true;
91b4c08d
VZ
584}
585
586// Sets the background colour
cc2b7472 587bool wxListCtrl::SetBackgroundColour(const wxColour& col)
2bda0e17 588{
cc2b7472 589 if ( !wxWindow::SetBackgroundColour(col) )
598ddd96 590 return false;
2bda0e17 591
91b4c08d
VZ
592 // we set the same colour for both the "empty" background and the items
593 // background
594 COLORREF color = wxColourToRGB(col);
595 ListView_SetBkColor(GetHwnd(), color);
596 ListView_SetTextBkColor(GetHwnd(), color);
cc2b7472 597
598ddd96 598 return true;
2bda0e17
KB
599}
600
601// Gets information about this column
debe6624 602bool wxListCtrl::GetColumn(int col, wxListItem& item) const
2bda0e17 603{
0b5efdc7 604 LV_COLUMN lvCol;
6f806543 605 wxZeroMemory(lvCol);
0b5efdc7 606
37094564
RD
607 lvCol.mask = LVCF_WIDTH;
608
0b5efdc7
VZ
609 if ( item.m_mask & wxLIST_MASK_TEXT )
610 {
611 lvCol.mask |= LVCF_TEXT;
837e5743 612 lvCol.pszText = new wxChar[513];
0b5efdc7
VZ
613 lvCol.cchTextMax = 512;
614 }
615
37094564
RD
616 if ( item.m_mask & wxLIST_MASK_FORMAT )
617 {
618 lvCol.mask |= LVCF_FMT;
619 }
620
621 if ( item.m_mask & wxLIST_MASK_IMAGE )
622 {
623 lvCol.mask |= LVCF_IMAGE;
624 }
625
0b190ffc 626 bool success = ListView_GetColumn(GetHwnd(), col, &lvCol) != 0;
0b5efdc7
VZ
627
628 // item.m_subItem = lvCol.iSubItem;
629 item.m_width = lvCol.cx;
630
631 if ( (item.m_mask & wxLIST_MASK_TEXT) && lvCol.pszText )
632 {
633 item.m_text = lvCol.pszText;
634 delete[] lvCol.pszText;
635 }
636
637 if ( item.m_mask & wxLIST_MASK_FORMAT )
638 {
0b190ffc
RD
639 switch (lvCol.fmt & LVCFMT_JUSTIFYMASK) {
640 case LVCFMT_LEFT:
641 item.m_format = wxLIST_FORMAT_LEFT;
642 break;
643 case LVCFMT_RIGHT:
644 item.m_format = wxLIST_FORMAT_RIGHT;
645 break;
646 case LVCFMT_CENTER:
647 item.m_format = wxLIST_FORMAT_CENTRE;
648 break;
649 default:
650 item.m_format = -1; // Unknown?
651 break;
652 }
2bda0e17
KB
653 }
654
5b59df83
VZ
655 // the column images were not supported in older versions but how to check
656 // for this? we can't use _WIN32_IE because we always define it to a very
657 // high value, so see if another symbol which is only defined starting from
658 // comctl32.dll 4.70 is available
659#ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
37094564
RD
660 if ( item.m_mask & wxLIST_MASK_IMAGE )
661 {
662 item.m_image = lvCol.iImage;
663 }
5b59df83 664#endif // LVCOLUMN::iImage exists
37094564 665
0b5efdc7 666 return success;
2bda0e17
KB
667}
668
669// Sets information about this column
fbfb8bcc 670bool wxListCtrl::SetColumn(int col, const wxListItem& item)
2bda0e17 671{
0b5efdc7 672 LV_COLUMN lvCol;
e64658ed 673 wxConvertToMSWListCol(GetHwnd(), col, item, lvCol);
0b5efdc7 674
6f806543 675 return ListView_SetColumn(GetHwnd(), col, &lvCol) != 0;
2bda0e17
KB
676}
677
678// Gets the column width
debe6624 679int wxListCtrl::GetColumnWidth(int col) const
2bda0e17 680{
edccf428 681 return ListView_GetColumnWidth(GetHwnd(), col);
2bda0e17
KB
682}
683
684// Sets the column width
debe6624 685bool wxListCtrl::SetColumnWidth(int col, int width)
2bda0e17 686{
0b5efdc7 687 if ( m_windowStyle & wxLC_LIST )
514ee250 688 col = 0;
2bda0e17 689
514ee250
VZ
690 if ( width == wxLIST_AUTOSIZE)
691 width = LVSCW_AUTOSIZE;
692 else if ( width == wxLIST_AUTOSIZE_USEHEADER)
693 width = LVSCW_AUTOSIZE_USEHEADER;
2bda0e17 694
514ee250 695 return ListView_SetColumnWidth(GetHwnd(), col, width) != 0;
2bda0e17
KB
696}
697
67d3fc49
VZ
698// ----------------------------------------------------------------------------
699// columns order
700// ----------------------------------------------------------------------------
701
80cc5fc7 702int wxListCtrl::GetColumnIndexFromOrder(int order) const
67d3fc49
VZ
703{
704 const int numCols = GetColumnCount();
80cc5fc7 705 wxCHECK_MSG( order >= 0 && order < numCols, -1,
9a83f860 706 wxT("Column position out of bounds") );
67d3fc49
VZ
707
708 wxArrayInt indexArray(numCols);
67d3fc49
VZ
709 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols, &indexArray[0]) )
710 return -1;
711
80cc5fc7 712 return indexArray[order];
67d3fc49
VZ
713}
714
80cc5fc7 715int wxListCtrl::GetColumnOrder(int col) const
67d3fc49
VZ
716{
717 const int numCols = GetColumnCount();
9a83f860 718 wxASSERT_MSG( col >= 0 && col < numCols, wxT("Column index out of bounds") );
67d3fc49
VZ
719
720 wxArrayInt indexArray(numCols);
67d3fc49
VZ
721 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols, &indexArray[0]) )
722 return -1;
723
80cc5fc7 724 for ( int pos = 0; pos < numCols; pos++ )
67d3fc49 725 {
80cc5fc7
VZ
726 if ( indexArray[pos] == col )
727 return pos;
67d3fc49
VZ
728 }
729
9a83f860 730 wxFAIL_MSG( wxT("no column with with given order?") );
67d3fc49
VZ
731
732 return -1;
733}
734
735// Gets the column order for all columns
736wxArrayInt wxListCtrl::GetColumnsOrder() const
737{
738 const int numCols = GetColumnCount();
739
740 wxArrayInt orders(numCols);
741 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols, &orders[0]) )
742 orders.clear();
743
744 return orders;
745}
746
747// Sets the column order for all columns
748bool wxListCtrl::SetColumnsOrder(const wxArrayInt& orders)
749{
750 const int numCols = GetColumnCount();
751
752 wxCHECK_MSG( orders.size() == (size_t)numCols, false,
9a83f860 753 wxT("wrong number of elements in column orders array") );
67d3fc49
VZ
754
755 return ListView_SetColumnOrderArray(GetHwnd(), numCols, &orders[0]) != 0;
756}
757
758
2bda0e17
KB
759// Gets the number of items that can fit vertically in the
760// visible area of the list control (list or report view)
761// or the total number of items in the list control (icon
762// or small icon view)
c42404a5 763int wxListCtrl::GetCountPerPage() const
2bda0e17 764{
edccf428 765 return ListView_GetCountPerPage(GetHwnd());
2bda0e17
KB
766}
767
768// Gets the edit control for editing labels.
c42404a5 769wxTextCtrl* wxListCtrl::GetEditControl() const
2bda0e17 770{
508b6523
VZ
771 // first check corresponds to the case when the label editing was started
772 // by user and hence m_textCtrl wasn't created by EditLabel() at all, while
773 // the second case corresponds to us being called from inside EditLabel()
774 // (e.g. from a user wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT handler): in this
775 // case EditLabel() did create the control but it didn't have an HWND to
776 // initialize it with yet
777 if ( !m_textCtrl || !m_textCtrl->GetHWND() )
778 {
779 HWND hwndEdit = ListView_GetEditControl(GetHwnd());
780 if ( hwndEdit )
781 {
5c33522f 782 wxListCtrl * const self = const_cast<wxListCtrl *>(this);
508b6523
VZ
783
784 if ( !m_textCtrl )
785 self->m_textCtrl = new wxTextCtrl;
786 self->InitEditControl((WXHWND)hwndEdit);
787 }
788 }
789
bbcdf8bc 790 return m_textCtrl;
2bda0e17
KB
791}
792
793// Gets information about the item
794bool wxListCtrl::GetItem(wxListItem& info) const
795{
0b5efdc7 796 LV_ITEM lvItem;
11c7d5b6 797 wxZeroMemory(lvItem);
2bda0e17 798
0b5efdc7 799 lvItem.iItem = info.m_itemId;
fc5a93cd 800 lvItem.iSubItem = info.m_col;
0b5efdc7
VZ
801
802 if ( info.m_mask & wxLIST_MASK_TEXT )
803 {
804 lvItem.mask |= LVIF_TEXT;
837e5743 805 lvItem.pszText = new wxChar[513];
0b5efdc7
VZ
806 lvItem.cchTextMax = 512;
807 }
808 else
809 {
810 lvItem.pszText = NULL;
811 }
812
813 if (info.m_mask & wxLIST_MASK_DATA)
edccf428 814 lvItem.mask |= LVIF_PARAM;
0b5efdc7 815
2189c644
JS
816 if (info.m_mask & wxLIST_MASK_IMAGE)
817 lvItem.mask |= LVIF_IMAGE;
818
0b5efdc7
VZ
819 if ( info.m_mask & wxLIST_MASK_STATE )
820 {
821 lvItem.mask |= LVIF_STATE;
7c392815 822 wxConvertToMSWFlags(0, info.m_stateMask, lvItem);
0b5efdc7
VZ
823 }
824
825 bool success = ListView_GetItem((HWND)GetHWND(), &lvItem) != 0;
826 if ( !success )
827 {
828 wxLogError(_("Couldn't retrieve information about list control item %d."),
829 lvItem.iItem);
830 }
831 else
832 {
dccde0c0
VZ
833 // give NULL as hwnd as we already have everything we need
834 wxConvertFromMSWListItem(NULL, info, lvItem);
0b5efdc7
VZ
835 }
836
837 if (lvItem.pszText)
838 delete[] lvItem.pszText;
839
840 return success;
2bda0e17
KB
841}
842
843// Sets information about the item
844bool wxListCtrl::SetItem(wxListItem& info)
845{
4ce04fd8
VZ
846 const long id = info.GetId();
847 wxCHECK_MSG( id >= 0 && id < GetItemCount(), false,
9a83f860 848 wxT("invalid item index in SetItem") );
4ce04fd8 849
0b5efdc7 850 LV_ITEM item;
2bda0e17 851 wxConvertToMSWListItem(this, info, item);
bdc72a22 852
7cf46fdb 853 // we never update the lParam if it contains our pointer
c767a5bb 854 // to the wxMSWListItemData structure
7cf46fdb
VZ
855 item.mask &= ~LVIF_PARAM;
856
857 // check if setting attributes or lParam
c767a5bb 858 if ( info.HasAttributes() || (info.m_mask & wxLIST_MASK_DATA) )
7cf46fdb
VZ
859 {
860 // get internal item data
c767a5bb 861 wxMSWListItemData *data = MSWGetItemData(id);
73d8c5fd 862
c767a5bb 863 if ( !data )
7cf46fdb 864 {
c767a5bb
VZ
865 // need to allocate the internal data object
866 data = new wxMSWListItemData;
867 m_internalData.push_back(data);
7cf46fdb
VZ
868 item.lParam = (LPARAM) data;
869 item.mask |= LVIF_PARAM;
dcc3f1a5 870 }
7cf46fdb
VZ
871
872
873 // user data
c767a5bb 874 if ( info.m_mask & wxLIST_MASK_DATA )
7cf46fdb
VZ
875 data->lParam = info.m_data;
876
877 // attributes
0f3888a5 878 if ( info.HasAttributes() )
7cf46fdb 879 {
0f3888a5
VZ
880 const wxListItemAttr& attrNew = *info.GetAttributes();
881
882 // don't overwrite the already set attributes if we have them
883 if ( data->attr )
884 data->attr->AssignFrom(attrNew);
7cf46fdb 885 else
0f3888a5 886 data->attr = new wxListItemAttr(attrNew);
dcc3f1a5
VZ
887 }
888 }
7cf46fdb
VZ
889
890
2d33aec9
VZ
891 // we could be changing only the attribute in which case we don't need to
892 // call ListView_SetItem() at all
893 if ( item.mask )
bdc72a22 894 {
2d33aec9
VZ
895 if ( !ListView_SetItem(GetHwnd(), &item) )
896 {
9a83f860 897 wxLogDebug(wxT("ListView_SetItem() failed"));
2702ed5a 898
598ddd96 899 return false;
2d33aec9 900 }
233d0295 901 }
2702ed5a 902
233d0295
VZ
903 // we need to update the item immediately to show the new image
904 bool updateNow = (info.m_mask & wxLIST_MASK_IMAGE) != 0;
2702ed5a 905
233d0295
VZ
906 // check whether it has any custom attributes
907 if ( info.HasAttributes() )
908 {
598ddd96 909 m_hasAnyAttr = true;
233d0295
VZ
910
911 // if the colour has changed, we must redraw the item
598ddd96 912 updateNow = true;
bdc72a22 913 }
bdc72a22 914
233d0295 915 if ( updateNow )
7cc98b3e 916 {
233d0295 917 // we need this to make the change visible right now
2d33aec9 918 RefreshItem(item.iItem);
7cc98b3e
VZ
919 }
920
598ddd96 921 return true;
2bda0e17
KB
922}
923
debe6624 924long wxListCtrl::SetItem(long index, int col, const wxString& label, int imageId)
2bda0e17 925{
0b5efdc7
VZ
926 wxListItem info;
927 info.m_text = label;
928 info.m_mask = wxLIST_MASK_TEXT;
929 info.m_itemId = index;
930 info.m_col = col;
931 if ( imageId > -1 )
932 {
933 info.m_image = imageId;
934 info.m_mask |= wxLIST_MASK_IMAGE;
935 }
936 return SetItem(info);
2bda0e17
KB
937}
938
939
940// Gets the item state
debe6624 941int wxListCtrl::GetItemState(long item, long stateMask) const
2bda0e17 942{
0b5efdc7 943 wxListItem info;
2bda0e17 944
edccf428 945 info.m_mask = wxLIST_MASK_STATE;
0b5efdc7
VZ
946 info.m_stateMask = stateMask;
947 info.m_itemId = item;
2bda0e17 948
0b5efdc7
VZ
949 if (!GetItem(info))
950 return 0;
2bda0e17 951
0b5efdc7 952 return info.m_state;
2bda0e17
KB
953}
954
955// Sets the item state
debe6624 956bool wxListCtrl::SetItemState(long item, long state, long stateMask)
2bda0e17 957{
8dff2b5c
VZ
958 // NB: don't use SetItem() here as it doesn't work with the virtual list
959 // controls
960 LV_ITEM lvItem;
961 wxZeroMemory(lvItem);
2bda0e17 962
8dff2b5c 963 wxConvertToMSWFlags(state, stateMask, lvItem);
2bda0e17 964
b720b86b
VZ
965 const bool changingFocus = (stateMask & wxLIST_STATE_FOCUSED) &&
966 (state & wxLIST_STATE_FOCUSED);
967
2d33aec9 968 // for the virtual list controls we need to refresh the previously focused
ad9f477d
VZ
969 // item manually when changing focus without changing selection
970 // programmatically because otherwise it keeps its focus rectangle until
971 // next repaint (yet another comctl32 bug)
2d33aec9 972 long focusOld;
b720b86b 973 if ( IsVirtual() && changingFocus )
2d33aec9
VZ
974 {
975 focusOld = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED);
976 }
977 else
978 {
979 focusOld = -1;
980 }
981
8dff2b5c
VZ
982 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE,
983 (WPARAM)item, (LPARAM)&lvItem) )
984 {
9a83f860 985 wxLogLastError(wxT("ListView_SetItemState"));
8dff2b5c 986
598ddd96 987 return false;
8dff2b5c
VZ
988 }
989
2d33aec9
VZ
990 if ( focusOld != -1 )
991 {
ad9f477d
VZ
992 // no need to refresh the item if it was previously selected, it would
993 // only result in annoying flicker
994 if ( !(GetItemState(focusOld,
995 wxLIST_STATE_SELECTED) & wxLIST_STATE_SELECTED) )
996 {
997 RefreshItem(focusOld);
998 }
2d33aec9
VZ
999 }
1000
b720b86b
VZ
1001 // we expect the selection anchor, i.e. the item from which multiple
1002 // selection (such as performed with e.g. Shift-arrows) starts, to be the
1003 // same as the currently focused item but the native control doesn't update
1004 // it when we change focus and leaves at the last item it set itself focus
1005 // to, so do it explicitly
1006 if ( changingFocus && !HasFlag(wxLC_SINGLE_SEL) )
1007 {
1008 ListView_SetSelectionMark(GetHwnd(), item);
1009 }
1010
598ddd96 1011 return true;
2bda0e17
KB
1012}
1013
1014// Sets the item image
33ac7e6f 1015bool wxListCtrl::SetItemImage(long item, int image, int WXUNUSED(selImage))
06db67bc
RD
1016{
1017 return SetItemColumnImage(item, 0, image);
1018}
1019
1020// Sets the item image
1021bool wxListCtrl::SetItemColumnImage(long item, long column, int image)
2bda0e17 1022{
0b5efdc7 1023 wxListItem info;
2bda0e17 1024
edccf428 1025 info.m_mask = wxLIST_MASK_IMAGE;
0b5efdc7
VZ
1026 info.m_image = image;
1027 info.m_itemId = item;
06db67bc 1028 info.m_col = column;
2bda0e17 1029
0b5efdc7 1030 return SetItem(info);
2bda0e17
KB
1031}
1032
1033// Gets the item text
b6812a6f 1034wxString wxListCtrl::GetItemText(long item, int col) const
2bda0e17 1035{
0b5efdc7 1036 wxListItem info;
2bda0e17 1037
edccf428 1038 info.m_mask = wxLIST_MASK_TEXT;
0b5efdc7 1039 info.m_itemId = item;
b6812a6f 1040 info.m_col = col;
2bda0e17 1041
0b5efdc7 1042 if (!GetItem(info))
2b5f62a0 1043 return wxEmptyString;
0b5efdc7 1044 return info.m_text;
2bda0e17
KB
1045}
1046
1047// Sets the item text
debe6624 1048void wxListCtrl::SetItemText(long item, const wxString& str)
2bda0e17 1049{
0b5efdc7 1050 wxListItem info;
2bda0e17 1051
edccf428 1052 info.m_mask = wxLIST_MASK_TEXT;
0b5efdc7
VZ
1053 info.m_itemId = item;
1054 info.m_text = str;
2bda0e17 1055
0b5efdc7 1056 SetItem(info);
2bda0e17
KB
1057}
1058
c767a5bb
VZ
1059// Gets the internal item data
1060wxMSWListItemData *wxListCtrl::MSWGetItemData(long itemId) const
1061{
1062 LV_ITEM it;
1063 it.mask = LVIF_PARAM;
1064 it.iItem = itemId;
1065
1066 if ( !ListView_GetItem(GetHwnd(), &it) )
1067 return NULL;
1068
1069 return (wxMSWListItemData *) it.lParam;
1070}
1071
2bda0e17 1072// Gets the item data
81ce36aa 1073wxUIntPtr wxListCtrl::GetItemData(long item) const
2bda0e17 1074{
0b5efdc7 1075 wxListItem info;
2bda0e17 1076
edccf428 1077 info.m_mask = wxLIST_MASK_DATA;
0b5efdc7 1078 info.m_itemId = item;
2bda0e17 1079
0b5efdc7
VZ
1080 if (!GetItem(info))
1081 return 0;
1082 return info.m_data;
2bda0e17
KB
1083}
1084
1085// Sets the item data
9fcd0bf7 1086bool wxListCtrl::SetItemPtrData(long item, wxUIntPtr data)
2bda0e17 1087{
0b5efdc7 1088 wxListItem info;
2bda0e17 1089
edccf428 1090 info.m_mask = wxLIST_MASK_DATA;
0b5efdc7
VZ
1091 info.m_itemId = item;
1092 info.m_data = data;
2bda0e17 1093
0b5efdc7 1094 return SetItem(info);
2bda0e17
KB
1095}
1096
11ebea16
VZ
1097wxRect wxListCtrl::GetViewRect() const
1098{
929b7901 1099 wxRect rect;
11ebea16 1100
929b7901
VZ
1101 // ListView_GetViewRect() can only be used in icon and small icon views
1102 // (this is documented in MSDN and, indeed, it returns bogus results in
1103 // report view, at least with comctl32.dll v6 under Windows 2003)
1104 if ( HasFlag(wxLC_ICON | wxLC_SMALL_ICON) )
11ebea16 1105 {
929b7901
VZ
1106 RECT rc;
1107 if ( !ListView_GetViewRect(GetHwnd(), &rc) )
1108 {
9a83f860 1109 wxLogDebug(wxT("ListView_GetViewRect() failed."));
929b7901
VZ
1110
1111 wxZeroMemory(rc);
1112 }
11ebea16 1113
929b7901 1114 wxCopyRECTToRect(rc, rect);
11ebea16 1115 }
929b7901
VZ
1116 else if ( HasFlag(wxLC_REPORT) )
1117 {
1118 const long count = GetItemCount();
1119 if ( count )
1120 {
1121 GetItemRect(wxMin(GetTopItem() + GetCountPerPage(), count - 1), rect);
11ebea16 1122
929b7901
VZ
1123 // extend the rectangle to start at the top (we include the column
1124 // headers, if any, for compatibility with the generic version)
1125 rect.height += rect.y;
1126 rect.y = 0;
1127 }
1128 }
1129 else
1130 {
9a83f860 1131 wxFAIL_MSG( wxT("not implemented in this mode") );
929b7901 1132 }
11ebea16
VZ
1133
1134 return rect;
1135}
1136
2bda0e17 1137// Gets the item rectangle
16e93305 1138bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const
164a7972
VZ
1139{
1140 return GetSubItemRect( item, wxLIST_GETSUBITEMRECT_WHOLEITEM, rect, code) ;
1141}
1142
164a7972 1143bool wxListCtrl::GetSubItemRect(long item, long subItem, wxRect& rect, int code) const
2bda0e17 1144{
e974c5d2
VZ
1145 // ListView_GetSubItemRect() doesn't do subItem error checking and returns
1146 // true even for the out of range values of it (even if the results are
1147 // completely bogus in this case), so we check item validity ourselves
1148 wxCHECK_MSG( subItem == wxLIST_GETSUBITEMRECT_WHOLEITEM ||
1149 (subItem >= 0 && subItem < GetColumnCount()),
9a83f860 1150 false, wxT("invalid sub item index") );
2bda0e17 1151
8d1a4101
FM
1152 // use wxCHECK_MSG against "item" too, for coherency with the generic implementation:
1153 wxCHECK_MSG( item >= 0 && item < GetItemCount(), false,
9a83f860 1154 wxT("invalid item in GetSubItemRect") );
8d1a4101 1155
2d33aec9 1156 int codeWin;
0b5efdc7 1157 if ( code == wxLIST_RECT_BOUNDS )
2d33aec9 1158 codeWin = LVIR_BOUNDS;
0b5efdc7 1159 else if ( code == wxLIST_RECT_ICON )
2d33aec9 1160 codeWin = LVIR_ICON;
0b5efdc7 1161 else if ( code == wxLIST_RECT_LABEL )
2d33aec9
VZ
1162 codeWin = LVIR_LABEL;
1163 else
1164 {
9a83f860 1165 wxFAIL_MSG( wxT("incorrect code in GetItemRect() / GetSubItemRect()") );
2d33aec9
VZ
1166 codeWin = LVIR_BOUNDS;
1167 }
2bda0e17 1168
e974c5d2 1169 RECT rectWin;
89cafab0 1170 if ( !wxGetListCtrlSubItemRect
e974c5d2
VZ
1171 (
1172 GetHwnd(),
1173 item,
1174 subItem == wxLIST_GETSUBITEMRECT_WHOLEITEM ? 0 : subItem,
1175 codeWin,
89cafab0 1176 rectWin
e974c5d2 1177 ) )
164a7972 1178 {
e974c5d2 1179 return false;
164a7972 1180 }
2bda0e17 1181
e974c5d2 1182 wxCopyRECTToRect(rectWin, rect);
2d33aec9 1183
67561862
VZ
1184 // there is no way to retrieve the first sub item bounding rectangle using
1185 // wxGetListCtrlSubItemRect() as 0 means the whole item, so we need to
1186 // truncate it at first column ourselves
92a2a0ef 1187 if ( subItem == 0 && code == wxLIST_RECT_BOUNDS )
67561862 1188 rect.width = GetColumnWidth(0);
e974c5d2
VZ
1189
1190 return true;
2bda0e17
KB
1191}
1192
164a7972
VZ
1193
1194
1195
2bda0e17 1196// Gets the item position
debe6624 1197bool wxListCtrl::GetItemPosition(long item, wxPoint& pos) const
2bda0e17 1198{
0b5efdc7 1199 POINT pt;
2bda0e17 1200
edccf428 1201 bool success = (ListView_GetItemPosition(GetHwnd(), (int) item, &pt) != 0);
2bda0e17 1202
0b5efdc7
VZ
1203 pos.x = pt.x; pos.y = pt.y;
1204 return success;
2bda0e17
KB
1205}
1206
1207// Sets the item position.
debe6624 1208bool wxListCtrl::SetItemPosition(long item, const wxPoint& pos)
2bda0e17 1209{
edccf428 1210 return (ListView_SetItemPosition(GetHwnd(), (int) item, pos.x, pos.y) != 0);
2bda0e17
KB
1211}
1212
1213// Gets the number of items in the list control
c42404a5 1214int wxListCtrl::GetItemCount() const
2bda0e17 1215{
68c124a1 1216 return m_count;
2bda0e17
KB
1217}
1218
5db8d758
VZ
1219wxSize wxListCtrl::GetItemSpacing() const
1220{
66b9ec3d 1221 const int spacing = ListView_GetItemSpacing(GetHwnd(), (BOOL)HasFlag(wxLC_SMALL_ICON));
5db8d758
VZ
1222
1223 return wxSize(LOWORD(spacing), HIWORD(spacing));
1224}
1225
40ff126a
WS
1226#if WXWIN_COMPATIBILITY_2_6
1227
2bda0e17
KB
1228int wxListCtrl::GetItemSpacing(bool isSmall) const
1229{
edccf428 1230 return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall);
2bda0e17
KB
1231}
1232
40ff126a
WS
1233#endif // WXWIN_COMPATIBILITY_2_6
1234
5b98eb2f
RL
1235void wxListCtrl::SetItemTextColour( long item, const wxColour &col )
1236{
1237 wxListItem info;
1238 info.m_itemId = item;
1239 info.SetTextColour( col );
1240 SetItem( info );
1241}
1242
1243wxColour wxListCtrl::GetItemTextColour( long item ) const
1244{
97c611f8 1245 wxColour col;
c767a5bb 1246 wxMSWListItemData *data = MSWGetItemData(item);
97c611f8
VZ
1247 if ( data && data->attr )
1248 col = data->attr->GetTextColour();
1249
1250 return col;
5b98eb2f
RL
1251}
1252
1253void wxListCtrl::SetItemBackgroundColour( long item, const wxColour &col )
1254{
1255 wxListItem info;
1256 info.m_itemId = item;
1257 info.SetBackgroundColour( col );
1258 SetItem( info );
1259}
1260
1261wxColour wxListCtrl::GetItemBackgroundColour( long item ) const
1262{
97c611f8 1263 wxColour col;
c767a5bb 1264 wxMSWListItemData *data = MSWGetItemData(item);
97c611f8
VZ
1265 if ( data && data->attr )
1266 col = data->attr->GetBackgroundColour();
1267
1268 return col;
5b98eb2f
RL
1269}
1270
35c2acd4
MW
1271void wxListCtrl::SetItemFont( long item, const wxFont &f )
1272{
1273 wxListItem info;
1274 info.m_itemId = item;
1275 info.SetFont( f );
1276 SetItem( info );
1277}
1278
1279wxFont wxListCtrl::GetItemFont( long item ) const
1280{
1281 wxFont f;
c767a5bb 1282 wxMSWListItemData *data = MSWGetItemData(item);
35c2acd4
MW
1283 if ( data && data->attr )
1284 f = data->attr->GetFont();
1285
1286 return f;
1287}
1288
2bda0e17 1289// Gets the number of selected items in the list control
c42404a5 1290int wxListCtrl::GetSelectedItemCount() const
2bda0e17 1291{
edccf428 1292 return ListView_GetSelectedCount(GetHwnd());
2bda0e17
KB
1293}
1294
1295// Gets the text colour of the listview
c42404a5 1296wxColour wxListCtrl::GetTextColour() const
2bda0e17 1297{
6e21a3db
KH
1298 COLORREF ref = ListView_GetTextColor(GetHwnd());
1299 wxColour col(GetRValue(ref), GetGValue(ref), GetBValue(ref));
1300 return col;
2bda0e17
KB
1301}
1302
1303// Sets the text colour of the listview
1304void wxListCtrl::SetTextColour(const wxColour& col)
1305{
910484a6 1306 ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue()));
2bda0e17
KB
1307}
1308
1309// Gets the index of the topmost visible item when in
1310// list or report view
c42404a5 1311long wxListCtrl::GetTopItem() const
2bda0e17 1312{
edccf428 1313 return (long) ListView_GetTopIndex(GetHwnd());
2bda0e17
KB
1314}
1315
1316// Searches for an item, starting from 'item'.
1317// 'geometry' is one of
1318// wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1319// 'state' is a state bit flag, one or more of
1320// wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1321// item can be -1 to find the first item that matches the
1322// specified flags.
1323// Returns the item or -1 if unsuccessful.
debe6624 1324long wxListCtrl::GetNextItem(long item, int geom, int state) const
2bda0e17 1325{
0b5efdc7 1326 long flags = 0;
2bda0e17 1327
0b5efdc7
VZ
1328 if ( geom == wxLIST_NEXT_ABOVE )
1329 flags |= LVNI_ABOVE;
1330 if ( geom == wxLIST_NEXT_ALL )
1331 flags |= LVNI_ALL;
1332 if ( geom == wxLIST_NEXT_BELOW )
1333 flags |= LVNI_BELOW;
1334 if ( geom == wxLIST_NEXT_LEFT )
1335 flags |= LVNI_TOLEFT;
1336 if ( geom == wxLIST_NEXT_RIGHT )
1337 flags |= LVNI_TORIGHT;
2bda0e17 1338
0b5efdc7
VZ
1339 if ( state & wxLIST_STATE_CUT )
1340 flags |= LVNI_CUT;
1341 if ( state & wxLIST_STATE_DROPHILITED )
1342 flags |= LVNI_DROPHILITED;
1343 if ( state & wxLIST_STATE_FOCUSED )
1344 flags |= LVNI_FOCUSED;
1345 if ( state & wxLIST_STATE_SELECTED )
1346 flags |= LVNI_SELECTED;
2bda0e17 1347
edccf428 1348 return (long) ListView_GetNextItem(GetHwnd(), item, flags);
2bda0e17
KB
1349}
1350
1351
debe6624 1352wxImageList *wxListCtrl::GetImageList(int which) const
2bda0e17 1353{
0b5efdc7 1354 if ( which == wxIMAGE_LIST_NORMAL )
2bda0e17 1355 {
0b5efdc7
VZ
1356 return m_imageListNormal;
1357 }
1358 else if ( which == wxIMAGE_LIST_SMALL )
2bda0e17 1359 {
0b5efdc7
VZ
1360 return m_imageListSmall;
1361 }
1362 else if ( which == wxIMAGE_LIST_STATE )
2bda0e17 1363 {
0b5efdc7
VZ
1364 return m_imageListState;
1365 }
1366 return NULL;
2bda0e17
KB
1367}
1368
debe6624 1369void wxListCtrl::SetImageList(wxImageList *imageList, int which)
2bda0e17 1370{
0b5efdc7
VZ
1371 int flags = 0;
1372 if ( which == wxIMAGE_LIST_NORMAL )
2bda0e17 1373 {
0b5efdc7 1374 flags = LVSIL_NORMAL;
2e12c11a 1375 if (m_ownsImageListNormal) delete m_imageListNormal;
0b5efdc7 1376 m_imageListNormal = imageList;
598ddd96 1377 m_ownsImageListNormal = false;
0b5efdc7
VZ
1378 }
1379 else if ( which == wxIMAGE_LIST_SMALL )
2bda0e17 1380 {
0b5efdc7 1381 flags = LVSIL_SMALL;
2e12c11a 1382 if (m_ownsImageListSmall) delete m_imageListSmall;
0b5efdc7 1383 m_imageListSmall = imageList;
598ddd96 1384 m_ownsImageListSmall = false;
0b5efdc7
VZ
1385 }
1386 else if ( which == wxIMAGE_LIST_STATE )
2bda0e17 1387 {
0b5efdc7 1388 flags = LVSIL_STATE;
2e12c11a 1389 if (m_ownsImageListState) delete m_imageListState;
0b5efdc7 1390 m_imageListState = imageList;
598ddd96 1391 m_ownsImageListState = false;
0b5efdc7 1392 }
8ecd5de2 1393 (void) ListView_SetImageList(GetHwnd(), (HIMAGELIST) imageList ? imageList->GetHIMAGELIST() : 0, flags);
2bda0e17
KB
1394}
1395
2e12c11a
VS
1396void wxListCtrl::AssignImageList(wxImageList *imageList, int which)
1397{
1398 SetImageList(imageList, which);
1399 if ( which == wxIMAGE_LIST_NORMAL )
598ddd96 1400 m_ownsImageListNormal = true;
2e12c11a 1401 else if ( which == wxIMAGE_LIST_SMALL )
598ddd96 1402 m_ownsImageListSmall = true;
2e12c11a 1403 else if ( which == wxIMAGE_LIST_STATE )
598ddd96 1404 m_ownsImageListState = true;
2e12c11a
VS
1405}
1406
edccf428 1407// ----------------------------------------------------------------------------
2bda0e17 1408// Operations
edccf428 1409// ----------------------------------------------------------------------------
2bda0e17
KB
1410
1411// Arranges the items
debe6624 1412bool wxListCtrl::Arrange(int flag)
2bda0e17 1413{
0b5efdc7
VZ
1414 UINT code = 0;
1415 if ( flag == wxLIST_ALIGN_LEFT )
1416 code = LVA_ALIGNLEFT;
1417 else if ( flag == wxLIST_ALIGN_TOP )
1418 code = LVA_ALIGNTOP;
1419 else if ( flag == wxLIST_ALIGN_DEFAULT )
1420 code = LVA_DEFAULT;
1421 else if ( flag == wxLIST_ALIGN_SNAP_TO_GRID )
1422 code = LVA_SNAPTOGRID;
2bda0e17 1423
edccf428 1424 return (ListView_Arrange(GetHwnd(), code) != 0);
2bda0e17
KB
1425}
1426
1427// Deletes an item
debe6624 1428bool wxListCtrl::DeleteItem(long item)
2bda0e17 1429{
2e9f62da
VZ
1430 if ( !ListView_DeleteItem(GetHwnd(), (int) item) )
1431 {
9a83f860 1432 wxLogLastError(wxT("ListView_DeleteItem"));
598ddd96 1433 return false;
2e9f62da
VZ
1434 }
1435
7a462631 1436 m_count--;
68c124a1
RD
1437 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
1438 wxT("m_count should match ListView_GetItemCount"));
1439
2e9f62da
VZ
1440 // the virtual list control doesn't refresh itself correctly, help it
1441 if ( IsVirtual() )
1442 {
1443 // we need to refresh all the lines below the one which was deleted
1444 wxRect rectItem;
1445 if ( item > 0 && GetItemCount() )
1446 {
1447 GetItemRect(item - 1, rectItem);
1448 }
1449 else
1450 {
1451 rectItem.y =
1452 rectItem.height = 0;
1453 }
1454
1455 wxRect rectWin = GetRect();
1456 rectWin.height = rectWin.GetBottom() - rectItem.GetBottom();
1457 rectWin.y = rectItem.GetBottom();
1458
1459 RefreshRect(rectWin);
1460 }
1461
598ddd96 1462 return true;
2bda0e17
KB
1463}
1464
1465// Deletes all items
0b5efdc7 1466bool wxListCtrl::DeleteAllItems()
2bda0e17 1467{
4b97af90
VZ
1468 // Calling ListView_DeleteAllItems() will always generate an event but we
1469 // shouldn't do it if the control is empty
1470 return !GetItemCount() || ListView_DeleteAllItems(GetHwnd()) != 0;
2bda0e17
KB
1471}
1472
1473// Deletes all items
0b5efdc7 1474bool wxListCtrl::DeleteAllColumns()
2bda0e17 1475{
edccf428 1476 while ( m_colCount > 0 )
2bda0e17 1477 {
edccf428
VZ
1478 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1479 {
f6bcfd97 1480 wxLogLastError(wxT("ListView_DeleteColumn"));
edccf428 1481
598ddd96 1482 return false;
edccf428
VZ
1483 }
1484
1485 m_colCount--;
2bda0e17 1486 }
edccf428 1487
223d09f6 1488 wxASSERT_MSG( m_colCount == 0, wxT("no columns should be left") );
edccf428 1489
598ddd96 1490 return true;
2bda0e17
KB
1491}
1492
1493// Deletes a column
debe6624 1494bool wxListCtrl::DeleteColumn(int col)
2bda0e17 1495{
edccf428 1496 bool success = (ListView_DeleteColumn(GetHwnd(), col) != 0);
2bda0e17
KB
1497
1498 if ( success && (m_colCount > 0) )
1499 m_colCount --;
1500 return success;
1501}
1502
1503// Clears items, and columns if there are any.
0b5efdc7 1504void wxListCtrl::ClearAll()
2bda0e17
KB
1505{
1506 DeleteAllItems();
1507 if ( m_colCount > 0 )
1508 DeleteAllColumns();
1509}
1510
508b6523
VZ
1511void wxListCtrl::InitEditControl(WXHWND hWnd)
1512{
1513 m_textCtrl->SetHWND(hWnd);
1514 m_textCtrl->SubclassWin(hWnd);
1515 m_textCtrl->SetParent(this);
1516
1517 // we must disallow TABbing away from the control while the edit contol is
1518 // shown because this leaves it in some strange state (just try removing
1519 // this line and then pressing TAB while editing an item in listctrl
1520 // inside a panel)
1521 m_textCtrl->SetWindowStyle(m_textCtrl->GetWindowStyle() | wxTE_PROCESS_TAB);
1522}
1523
bbcdf8bc
JS
1524wxTextCtrl* wxListCtrl::EditLabel(long item, wxClassInfo* textControlClass)
1525{
508b6523
VZ
1526 wxCHECK_MSG( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)), NULL,
1527 "control used for label editing must be a wxTextCtrl" );
bbcdf8bc 1528
6aaef140 1529 // ListView_EditLabel requires that the list has focus.
aa50e893 1530 SetFocus();
2b5f62a0 1531
508b6523
VZ
1532 // create m_textCtrl here before calling ListView_EditLabel() because it
1533 // generates wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT event from inside it and
1534 // the user handler for it can call GetEditControl() resulting in an on
1535 // demand creation of a stock wxTextCtrl instead of the control of a
1536 // (possibly) custom wxClassInfo
1537 DeleteEditControl();
1538 m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject();
1539
6aaef140 1540 WXHWND hWnd = (WXHWND) ListView_EditLabel(GetHwnd(), item);
2b5f62a0
VZ
1541 if ( !hWnd )
1542 {
1543 // failed to start editing
5276b0a5 1544 wxDELETE(m_textCtrl);
508b6523 1545
2b5f62a0
VZ
1546 return NULL;
1547 }
bbcdf8bc 1548
508b6523
VZ
1549 // if GetEditControl() hasn't been called, we need to initialize the edit
1550 // control ourselves
1551 if ( !m_textCtrl->GetHWND() )
1552 InitEditControl(hWnd);
2b5f62a0 1553
bbcdf8bc
JS
1554 return m_textCtrl;
1555}
1556
1557// End label editing, optionally cancelling the edit
4496eadc 1558bool wxListCtrl::EndEditLabel(bool cancel)
2bda0e17 1559{
4496eadc
JS
1560 // m_textCtrl is not always ready, ie. in EVT_LIST_BEGIN_LABEL_EDIT
1561 HWND hwnd = ListView_GetEditControl(GetHwnd());
55f42db2
VZ
1562 if ( !hwnd )
1563 return false;
1564
417b8fcc
VZ
1565 // Newer versions of Windows have a special message for cancelling editing,
1566 // use it if available.
1567#ifdef ListView_CancelEditLabel
1568 if ( cancel && (wxApp::GetComCtl32Version() >= 600) )
1569 {
1570 ListView_CancelEditLabel(GetHwnd());
1571 }
1572 else
1573#endif // ListView_CancelEditLabel
1574 {
1575 // We shouldn't destroy the control ourselves according to MSDN, which
1576 // proposes WM_CANCELMODE to do this, but it doesn't seem to work so
1577 // emulate the corresponding user action instead.
1578 ::SendMessage(hwnd, WM_KEYDOWN, cancel ? VK_ESCAPE : VK_RETURN, 0);
1579 }
55f42db2
VZ
1580
1581 return true;
2bda0e17
KB
1582}
1583
1584// Ensures this item is visible
debe6624 1585bool wxListCtrl::EnsureVisible(long item)
2bda0e17 1586{
598ddd96 1587 return ListView_EnsureVisible(GetHwnd(), (int) item, FALSE) != FALSE;
2bda0e17
KB
1588}
1589
1590// Find an item whose label matches this string, starting from the item after 'start'
1591// or the beginning if 'start' is -1.
debe6624 1592long wxListCtrl::FindItem(long start, const wxString& str, bool partial)
2bda0e17 1593{
0b5efdc7 1594 LV_FINDINFO findInfo;
2bda0e17 1595
0b5efdc7
VZ
1596 findInfo.flags = LVFI_STRING;
1597 if ( partial )
7edc258e 1598 findInfo.flags |= LVFI_PARTIAL;
e0a050e3 1599 findInfo.psz = str.wx_str();
2bda0e17 1600
3ca6a5f0
BP
1601 // ListView_FindItem() excludes the first item from search and to look
1602 // through all the items you need to start from -1 which is unnatural and
8036af01
JS
1603 // inconsistent with the generic version - so we adjust the index
1604 if (start != -1)
1605 start --;
c767a5bb 1606 return ListView_FindItem(GetHwnd(), start, &findInfo);
2bda0e17
KB
1607}
1608
c767a5bb
VZ
1609// Find an item whose data matches this data, starting from the item after
1610// 'start' or the beginning if 'start' is -1.
81ce36aa 1611long wxListCtrl::FindItem(long start, wxUIntPtr data)
2bda0e17 1612{
c767a5bb
VZ
1613 // we can't use ListView_FindItem() directly as we don't store the data
1614 // pointer itself in the control but rather our own internal data, so first
1615 // we need to find the right value to search for (and there can be several
1616 // of them)
1617 int idx = wxNOT_FOUND;
1618 const unsigned count = m_internalData.size();
1619 for ( unsigned n = 0; n < count; n++ )
72db8894 1620 {
c767a5bb
VZ
1621 if ( m_internalData[n]->lParam == (LPARAM)data )
1622 {
1623 LV_FINDINFO findInfo;
1624 findInfo.flags = LVFI_PARAM;
1625 findInfo.lParam = (LPARAM)wxPtrToUInt(m_internalData[n]);
1626
1627 int rc = ListView_FindItem(GetHwnd(), start, &findInfo);
1628 if ( rc != -1 )
1629 {
1630 if ( idx == wxNOT_FOUND || rc < idx )
1631 {
1632 idx = rc;
1633 if ( idx == start + 1 )
1634 {
1635 // we can stop here, we don't risk finding a closer
1636 // match
1637 break;
1638 }
1639 }
1640 //else: this item is after the previously found one
1641 }
1642 }
dcc3f1a5 1643 }
2bda0e17 1644
c767a5bb 1645 return idx;
2bda0e17
KB
1646}
1647
1648// Find an item nearest this position in the specified direction, starting from
1649// the item after 'start' or the beginning if 'start' is -1.
debe6624 1650long wxListCtrl::FindItem(long start, const wxPoint& pt, int direction)
2bda0e17 1651{
0b5efdc7 1652 LV_FINDINFO findInfo;
2bda0e17 1653
0b5efdc7
VZ
1654 findInfo.flags = LVFI_NEARESTXY;
1655 findInfo.pt.x = pt.x;
1656 findInfo.pt.y = pt.y;
acb62b84 1657 findInfo.vkDirection = VK_RIGHT;
2bda0e17 1658
0b5efdc7
VZ
1659 if ( direction == wxLIST_FIND_UP )
1660 findInfo.vkDirection = VK_UP;
1661 else if ( direction == wxLIST_FIND_DOWN )
1662 findInfo.vkDirection = VK_DOWN;
1663 else if ( direction == wxLIST_FIND_LEFT )
1664 findInfo.vkDirection = VK_LEFT;
1665 else if ( direction == wxLIST_FIND_RIGHT )
1666 findInfo.vkDirection = VK_RIGHT;
1667
c767a5bb 1668 return ListView_FindItem(GetHwnd(), start, &findInfo);
2bda0e17
KB
1669}
1670
1671// Determines which item (if any) is at the specified point,
1672// giving details in 'flags' (see wxLIST_HITTEST_... flags above)
be0e5d69
VZ
1673long
1674wxListCtrl::HitTest(const wxPoint& point, int& flags, long *ptrSubItem) const
2bda0e17
KB
1675{
1676 LV_HITTESTINFO hitTestInfo;
0b5efdc7
VZ
1677 hitTestInfo.pt.x = (int) point.x;
1678 hitTestInfo.pt.y = (int) point.y;
2bda0e17 1679
164a7972
VZ
1680 long item;
1681#ifdef LVM_SUBITEMHITTEST
1682 if ( ptrSubItem && wxApp::GetComCtl32Version() >= 470 )
1683 {
1684 item = ListView_SubItemHitTest(GetHwnd(), &hitTestInfo);
1685 *ptrSubItem = hitTestInfo.iSubItem;
1686 }
1687 else
1688#endif // LVM_SUBITEMHITTEST
1689 {
1690 item = ListView_HitTest(GetHwnd(), &hitTestInfo);
1691 }
2bda0e17 1692
0b5efdc7 1693 flags = 0;
698b34fa 1694
0b5efdc7
VZ
1695 if ( hitTestInfo.flags & LVHT_ABOVE )
1696 flags |= wxLIST_HITTEST_ABOVE;
1697 if ( hitTestInfo.flags & LVHT_BELOW )
1698 flags |= wxLIST_HITTEST_BELOW;
0b5efdc7
VZ
1699 if ( hitTestInfo.flags & LVHT_TOLEFT )
1700 flags |= wxLIST_HITTEST_TOLEFT;
1701 if ( hitTestInfo.flags & LVHT_TORIGHT )
1702 flags |= wxLIST_HITTEST_TORIGHT;
1703
698b34fa
VZ
1704 if ( hitTestInfo.flags & LVHT_NOWHERE )
1705 flags |= wxLIST_HITTEST_NOWHERE;
1706
1707 // note a bug or at least a very strange feature of comtl32.dll (tested
1708 // with version 4.0 under Win95 and 6.0 under Win 2003): if you click to
1709 // the right of the item label, ListView_HitTest() returns a combination of
1710 // LVHT_ONITEMICON, LVHT_ONITEMLABEL and LVHT_ONITEMSTATEICON -- filter out
1711 // the bits which don't make sense
1712 if ( hitTestInfo.flags & LVHT_ONITEMLABEL )
1713 {
1714 flags |= wxLIST_HITTEST_ONITEMLABEL;
1715
1716 // do not translate LVHT_ONITEMICON here, as per above
1717 }
1718 else
1719 {
1720 if ( hitTestInfo.flags & LVHT_ONITEMICON )
1721 flags |= wxLIST_HITTEST_ONITEMICON;
1722 if ( hitTestInfo.flags & LVHT_ONITEMSTATEICON )
1723 flags |= wxLIST_HITTEST_ONITEMSTATEICON;
1724 }
1725
164a7972 1726 return item;
2bda0e17
KB
1727}
1728
164a7972 1729
2bda0e17
KB
1730// Inserts an item, returning the index of the new item if successful,
1731// -1 otherwise.
fbfb8bcc 1732long wxListCtrl::InsertItem(const wxListItem& info)
2bda0e17 1733{
9a83f860 1734 wxASSERT_MSG( !IsVirtual(), wxT("can't be used with virtual controls") );
98ec9dbe 1735
0b5efdc7
VZ
1736 LV_ITEM item;
1737 wxConvertToMSWListItem(this, info, item);
7cf46fdb 1738 item.mask &= ~LVIF_PARAM;
2bda0e17 1739
c767a5bb
VZ
1740 // check whether we need to allocate our internal data
1741 bool needInternalData = (info.m_mask & wxLIST_MASK_DATA) ||
1742 info.HasAttributes();
1743 if ( needInternalData )
bdc72a22 1744 {
7cf46fdb 1745 item.mask |= LVIF_PARAM;
2702ed5a 1746
c767a5bb
VZ
1747 wxMSWListItemData * const data = new wxMSWListItemData;
1748 m_internalData.push_back(data);
1749 item.lParam = (LPARAM)data;
2702ed5a 1750
c767a5bb 1751 if ( info.m_mask & wxLIST_MASK_DATA )
7cf46fdb 1752 data->lParam = info.m_data;
2702ed5a 1753
b653e655
VZ
1754 // check whether it has any custom attributes
1755 if ( info.HasAttributes() )
1756 {
7cf46fdb
VZ
1757 // take copy of attributes
1758 data->attr = new wxListItemAttr(*info.GetAttributes());
5205e26b
VZ
1759
1760 // and remember that we have some now...
598ddd96 1761 m_hasAnyAttr = true;
b653e655 1762 }
dcc3f1a5 1763 }
7cf46fdb 1764
2d5e5799
VZ
1765 const long rv = ListView_InsertItem(GetHwnd(), & item);
1766
1767 // failing to insert the item is really unexpected
1768 wxCHECK_MSG( rv != -1, rv, "failed to insert an item in wxListCtrl" );
b653e655
VZ
1769
1770 m_count++;
68c124a1
RD
1771 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
1772 wxT("m_count should match ListView_GetItemCount"));
bdc72a22 1773
68c124a1 1774 return rv;
2bda0e17
KB
1775}
1776
debe6624 1777long wxListCtrl::InsertItem(long index, const wxString& label)
2bda0e17 1778{
0b5efdc7
VZ
1779 wxListItem info;
1780 info.m_text = label;
1781 info.m_mask = wxLIST_MASK_TEXT;
1782 info.m_itemId = index;
1783 return InsertItem(info);
2bda0e17
KB
1784}
1785
1786// Inserts an image item
debe6624 1787long wxListCtrl::InsertItem(long index, int imageIndex)
2bda0e17 1788{
0b5efdc7
VZ
1789 wxListItem info;
1790 info.m_image = imageIndex;
1791 info.m_mask = wxLIST_MASK_IMAGE;
1792 info.m_itemId = index;
1793 return InsertItem(info);
2bda0e17
KB
1794}
1795
1796// Inserts an image/string item
debe6624 1797long wxListCtrl::InsertItem(long index, const wxString& label, int imageIndex)
2bda0e17 1798{
0b5efdc7
VZ
1799 wxListItem info;
1800 info.m_image = imageIndex;
1801 info.m_text = label;
1802 info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT;
1803 info.m_itemId = index;
1804 return InsertItem(info);
2bda0e17
KB
1805}
1806
1807// For list view mode (only), inserts a column.
fbfb8bcc 1808long wxListCtrl::InsertColumn(long col, const wxListItem& item)
2bda0e17 1809{
0b5efdc7 1810 LV_COLUMN lvCol;
e64658ed 1811 wxConvertToMSWListCol(GetHwnd(), col, item, lvCol);
0b5efdc7 1812
6f806543 1813 if ( !(lvCol.mask & LVCF_WIDTH) )
e373f51b
VZ
1814 {
1815 // always give some width to the new column: this one is compatible
6f806543
VZ
1816 // with the generic version
1817 lvCol.mask |= LVCF_WIDTH;
e373f51b 1818 lvCol.cx = 80;
0b5efdc7 1819 }
e373f51b 1820
8b3a4016
VZ
1821 long n = ListView_InsertColumn(GetHwnd(), col, &lvCol);
1822 if ( n != -1 )
e373f51b
VZ
1823 {
1824 m_colCount++;
1825 }
8b3a4016 1826 else // failed to insert?
e373f51b 1827 {
223d09f6 1828 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
e373f51b
VZ
1829 lvCol.pszText);
1830 }
1831
8b3a4016 1832 return n;
2bda0e17
KB
1833}
1834
bdc72a22
VZ
1835long wxListCtrl::InsertColumn(long col,
1836 const wxString& heading,
1837 int format,
1838 int width)
2bda0e17 1839{
0b5efdc7
VZ
1840 wxListItem item;
1841 item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT;
1842 item.m_text = heading;
1843 if ( width > -1 )
1844 {
1845 item.m_mask |= wxLIST_MASK_WIDTH;
1846 item.m_width = width;
1847 }
1848 item.m_format = format;
2bda0e17 1849
0b5efdc7 1850 return InsertColumn(col, item);
2bda0e17
KB
1851}
1852
2b5f62a0
VZ
1853// scroll the control by the given number of pixels (exception: in list view,
1854// dx is interpreted as number of columns)
debe6624 1855bool wxListCtrl::ScrollList(int dx, int dy)
2bda0e17 1856{
2b5f62a0
VZ
1857 if ( !ListView_Scroll(GetHwnd(), dx, dy) )
1858 {
9a83f860 1859 wxLogDebug(wxT("ListView_Scroll(%d, %d) failed"), dx, dy);
2b5f62a0 1860
598ddd96 1861 return false;
2b5f62a0
VZ
1862 }
1863
598ddd96 1864 return true;
2bda0e17
KB
1865}
1866
1867// Sort items.
1868
1869// fn is a function which takes 3 long arguments: item1, item2, data.
1870// item1 is the long data associated with a first item (NOT the index).
1871// item2 is the long data associated with a second item (NOT the index).
1872// data is the same value as passed to SortItems.
1873// The return value is a negative number if the first item should precede the second
1874// item, a positive number of the second item should precede the first,
1875// or zero if the two items are equivalent.
1876
1877// data is arbitrary data to be passed to the sort function.
19230604 1878
7cf46fdb
VZ
1879// Internal structures for proxying the user compare function
1880// so that we can pass it the *real* user data
19230604 1881
7cf46fdb
VZ
1882// translate lParam data and call user func
1883struct wxInternalDataSort
19230604 1884{
7cf46fdb 1885 wxListCtrlCompare user_fn;
b18e2046 1886 wxIntPtr data;
7cf46fdb 1887};
19230604 1888
7cf46fdb 1889int CALLBACK wxInternalDataCompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
2bda0e17 1890{
6e2f3084 1891 wxInternalDataSort * const internalData = (wxInternalDataSort *) lParamSort;
19230604 1892
c767a5bb
VZ
1893 wxMSWListItemData *data1 = (wxMSWListItemData *) lParam1;
1894 wxMSWListItemData *data2 = (wxMSWListItemData *) lParam2;
19230604 1895
7cf46fdb
VZ
1896 long d1 = (data1 == NULL ? 0 : data1->lParam);
1897 long d2 = (data2 == NULL ? 0 : data2->lParam);
19230604 1898
7cf46fdb 1899 return internalData->user_fn(d1, d2, internalData->data);
19230604 1900
259c43f6 1901}
19230604 1902
b18e2046 1903bool wxListCtrl::SortItems(wxListCtrlCompare fn, wxIntPtr data)
7cf46fdb 1904{
6e2f3084 1905 wxInternalDataSort internalData;
7cf46fdb
VZ
1906 internalData.user_fn = fn;
1907 internalData.data = data;
19230604 1908
14090241
VZ
1909 // WPARAM cast is needed for mingw/cygwin
1910 if ( !ListView_SortItems(GetHwnd(),
1911 wxInternalDataCompareFunc,
1912 (WPARAM) &internalData) )
19230604 1913 {
9a83f860 1914 wxLogDebug(wxT("ListView_SortItems() failed"));
19230604 1915
598ddd96 1916 return false;
19230604
RD
1917 }
1918
598ddd96 1919 return true;
2bda0e17
KB
1920}
1921
19230604
RD
1922
1923
edccf428
VZ
1924// ----------------------------------------------------------------------------
1925// message processing
1926// ----------------------------------------------------------------------------
1927
90c6edd7
VZ
1928bool wxListCtrl::MSWShouldPreProcessMessage(WXMSG* msg)
1929{
1930 if ( msg->message == WM_KEYDOWN )
1931 {
6719c06a
VZ
1932 // Only eat VK_RETURN if not being used by the application in
1933 // conjunction with modifiers
1934 if ( msg->wParam == VK_RETURN && !wxIsAnyModifierDown() )
90c6edd7 1935 {
6719c06a 1936 // we need VK_RETURN to generate wxEVT_COMMAND_LIST_ITEM_ACTIVATED
90c6edd7
VZ
1937 return false;
1938 }
1939 }
90c6edd7
VZ
1940 return wxControl::MSWShouldPreProcessMessage(msg);
1941}
1942
0edeeb6d 1943bool wxListCtrl::MSWCommand(WXUINT cmd, WXWORD id_)
2bda0e17 1944{
0edeeb6d 1945 const int id = (signed short)id_;
0b5efdc7 1946 if (cmd == EN_UPDATE)
acb62b84 1947 {
0b5efdc7
VZ
1948 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
1949 event.SetEventObject( this );
1950 ProcessCommand(event);
598ddd96 1951 return true;
acb62b84 1952 }
0b5efdc7 1953 else if (cmd == EN_KILLFOCUS)
acb62b84 1954 {
0b5efdc7
VZ
1955 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
1956 event.SetEventObject( this );
1957 ProcessCommand(event);
598ddd96 1958 return true;
acb62b84 1959 }
edccf428 1960 else
598ddd96 1961 return false;
0b5efdc7
VZ
1962}
1963
a9fdf824 1964// utility used by wxListCtrl::MSWOnNotify and by wxDataViewHeaderWindowMSW::MSWOnNotify
a68962fc 1965int WXDLLIMPEXP_CORE wxMSWGetColumnClicked(NMHDR *nmhdr, POINT *ptClick)
a9fdf824 1966{
674c2750
VZ
1967 // find the column clicked: we have to search for it ourselves as the
1968 // notification message doesn't provide this info
a9fdf824
RR
1969
1970 // where did the click occur?
1971#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
674c2750 1972 if ( nmhdr->code == GN_CONTEXTMENU )
a9fdf824
RR
1973 {
1974 *ptClick = ((NMRGINFO*)nmhdr)->ptAction;
f4322df6 1975 }
a9fdf824
RR
1976 else
1977#endif //__WXWINCE__
1978 if ( !::GetCursorPos(ptClick) )
1979 {
9a83f860 1980 wxLogLastError(wxT("GetCursorPos"));
a9fdf824
RR
1981 }
1982
674c2750
VZ
1983 // we need to use listctrl coordinates for the event point so this is what
1984 // we return in ptClick, but for comparison with Header_GetItemRect()
1985 // result below we need to use header window coordinates
1986 POINT ptClickHeader = *ptClick;
1987 if ( !::ScreenToClient(nmhdr->hwndFrom, &ptClickHeader) )
a9fdf824 1988 {
9a83f860 1989 wxLogLastError(wxT("ScreenToClient(listctrl header)"));
a9fdf824
RR
1990 }
1991
674c2750
VZ
1992 if ( !::ScreenToClient(::GetParent(nmhdr->hwndFrom), ptClick) )
1993 {
9a83f860 1994 wxLogLastError(wxT("ScreenToClient(listctrl)"));
674c2750 1995 }
a9fdf824 1996
674c2750 1997 const int colCount = Header_GetItemCount(nmhdr->hwndFrom);
a9fdf824
RR
1998 for ( int col = 0; col < colCount; col++ )
1999 {
674c2750 2000 RECT rect;
a9fdf824
RR
2001 if ( Header_GetItemRect(nmhdr->hwndFrom, col, &rect) )
2002 {
674c2750 2003 if ( ::PtInRect(&rect, ptClickHeader) )
a9fdf824
RR
2004 {
2005 return col;
2006 }
2007 }
2008 }
2009
2010 return wxNOT_FOUND;
2011}
2012
a23fd0e1 2013bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
0b5efdc7 2014{
68c124a1 2015
bdc72a22
VZ
2016 // prepare the event
2017 // -----------------
2018
0b5efdc7 2019 wxListEvent event(wxEVT_NULL, m_windowId);
648bec3e
VZ
2020 event.SetEventObject(this);
2021
0b5efdc7 2022 wxEventType eventType = wxEVT_NULL;
225fe9d6 2023
bdc72a22 2024 NMHDR *nmhdr = (NMHDR *)lParam;
225fe9d6 2025
d1f2eb1d
VZ
2026 // if your compiler is as broken as this, you should really change it: this
2027 // code is needed for normal operation! #ifdef below is only useful for
2028 // automatic rebuilds which are done with a very old compiler version
0cf5b099 2029#ifdef HDN_BEGINTRACKA
d1f2eb1d 2030
11358d39
VZ
2031 // check for messages from the header (in report view)
2032 HWND hwndHdr = ListView_GetHeader(GetHwnd());
225fe9d6 2033
11358d39
VZ
2034 // is it a message from the header?
2035 if ( nmhdr->hwndFrom == hwndHdr )
acb62b84 2036 {
00811ff9 2037 HD_NOTIFY *nmHDR = (HD_NOTIFY *)nmhdr;
0cf5b099 2038
11358d39 2039 event.m_itemIndex = -1;
cb0f56f9 2040
b66c3a67 2041 bool ignore = false;
11358d39
VZ
2042 switch ( nmhdr->code )
2043 {
2044 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
2045 // TRACK messages even to ANSI programs: on my system I get
b66c3a67 2046 // HDN_BEGINTRACKW and HDN_ENDTRACKA!
11358d39
VZ
2047 //
2048 // work around is to simply catch both versions and hope that it
2049 // works (why should this message exist in ANSI and Unicode is
2050 // beyond me as it doesn't deal with strings at all...)
2b5f62a0 2051 //
b66c3a67
VZ
2052 // another problem is that HDN_TRACK is not sent at all by header
2053 // with HDS_FULLDRAG style which is used by default by wxListCtrl
2054 // under recent Windows versions (starting from at least XP) so we
2055 // need to use HDN_ITEMCHANGING instead of it
11358d39
VZ
2056 case HDN_BEGINTRACKA:
2057 case HDN_BEGINTRACKW:
2058 eventType = wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
2059 // fall through
2060
b66c3a67 2061 case HDN_ITEMCHANGING:
11358d39 2062 if ( eventType == wxEVT_NULL )
b66c3a67
VZ
2063 {
2064 if ( !nmHDR->pitem || !(nmHDR->pitem->mask & HDI_WIDTH) )
2065 {
2066 // something other than the width is being changed,
2067 // ignore it
2068 ignore = true;
2069 break;
2070 }
2071
2072 // also ignore the events sent when the width didn't really
2073 // change: this is not just an optimization but also gets
2074 // rid of a useless and unexpected DRAGGING event which
2075 // would otherwise be sent after the END_DRAG one as we get
2076 // an HDN_ITEMCHANGING after HDN_ENDTRACK for some reason
2077 if ( nmHDR->pitem->cxy == GetColumnWidth(nmHDR->iItem) )
2078 {
2079 ignore = true;
2080 break;
2081 }
2082
11358d39 2083 eventType = wxEVT_COMMAND_LIST_COL_DRAGGING;
b66c3a67 2084 }
11358d39
VZ
2085 // fall through
2086
2087 case HDN_ENDTRACKA:
2088 case HDN_ENDTRACKW:
2089 if ( eventType == wxEVT_NULL )
2090 eventType = wxEVT_COMMAND_LIST_COL_END_DRAG;
2b5f62a0
VZ
2091
2092 event.m_item.m_width = nmHDR->pitem->cxy;
11358d39
VZ
2093 event.m_col = nmHDR->iItem;
2094 break;
2095
781a24e8 2096#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
80a81a12 2097 case GN_CONTEXTMENU:
a61d4011 2098#endif //__WXWINCE__
11358d39
VZ
2099 case NM_RCLICK:
2100 {
11358d39 2101 POINT ptClick;
5ea47806 2102
a9fdf824
RR
2103 eventType = wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
2104 event.m_col = wxMSWGetColumnClicked(nmhdr, &ptClick);
11358d39
VZ
2105 event.m_pointDrag.x = ptClick.x;
2106 event.m_pointDrag.y = ptClick.y;
11358d39
VZ
2107 }
2108 break;
5ea47806 2109
2b5f62a0 2110 case HDN_GETDISPINFOW:
c68f590a
VZ
2111 // letting Windows XP handle this message results in mysterious
2112 // crashes in comctl32.dll seemingly because of bad message
2113 // parameters
2114 //
2115 // I have no idea what is the real cause of the bug (which is,
a9fdf824 2116 // just to make things interesting, impossible to reproduce
c68f590a
VZ
2117 // reliably) but ignoring all these messages does fix it and
2118 // doesn't seem to have any negative consequences
2119 return true;
2b5f62a0 2120
11358d39 2121 default:
b66c3a67 2122 ignore = true;
11358d39 2123 }
b66c3a67
VZ
2124
2125 if ( ignore )
2126 return wxControl::MSWOnNotify(idCtrl, lParam, result);
11358d39 2127 }
d1f2eb1d 2128 else
0cf5b099 2129#endif // defined(HDN_BEGINTRACKA)
164e8d41 2130 if ( nmhdr->hwndFrom == GetHwnd() )
11358d39
VZ
2131 {
2132 // almost all messages use NM_LISTVIEW
2133 NM_LISTVIEW *nmLV = (NM_LISTVIEW *)nmhdr;
bdc72a22 2134
2b5f62a0
VZ
2135 const int iItem = nmLV->iItem;
2136
68c124a1 2137
68c124a1
RD
2138 // If we have a valid item then check if there is a data value
2139 // associated with it and put it in the event.
2140 if ( iItem >= 0 && iItem < GetItemCount() )
2141 {
c767a5bb
VZ
2142 wxMSWListItemData *internaldata =
2143 MSWGetItemData(iItem);
2b5f62a0 2144
68c124a1
RD
2145 if ( internaldata )
2146 event.m_item.m_data = internaldata->lParam;
2b5f62a0 2147 }
bdc72a22 2148
f0755097 2149 bool processed = true;
11358d39
VZ
2150 switch ( nmhdr->code )
2151 {
2152 case LVN_BEGINRDRAG:
2153 eventType = wxEVT_COMMAND_LIST_BEGIN_RDRAG;
2154 // fall through
7bf1474a 2155
11358d39
VZ
2156 case LVN_BEGINDRAG:
2157 if ( eventType == wxEVT_NULL )
2158 {
2159 eventType = wxEVT_COMMAND_LIST_BEGIN_DRAG;
2160 }
bdc72a22 2161
2b5f62a0 2162 event.m_itemIndex = iItem;
11358d39
VZ
2163 event.m_pointDrag.x = nmLV->ptAction.x;
2164 event.m_pointDrag.y = nmLV->ptAction.y;
2165 break;
2166
8c21905b 2167 // NB: we have to handle both *A and *W versions here because some
d2ed74b9
VZ
2168 // versions of comctl32.dll send ANSI messages even to the
2169 // Unicode windows
8c21905b 2170 case LVN_BEGINLABELEDITA:
8c21905b
VS
2171 case LVN_BEGINLABELEDITW:
2172 {
d2ed74b9
VZ
2173 wxLV_ITEM item;
2174 if ( nmhdr->code == LVN_BEGINLABELEDITA )
2175 {
2176 item.Init(((LV_DISPINFOA *)lParam)->item);
2177 }
2178 else // LVN_BEGINLABELEDITW
2179 {
2180 item.Init(((LV_DISPINFOW *)lParam)->item);
2181 }
2182
8c21905b 2183 eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
8c21905b
VS
2184 wxConvertFromMSWListItem(GetHwnd(), event.m_item, item);
2185 event.m_itemIndex = event.m_item.m_itemId;
2186 }
2187 break;
2188
2189 case LVN_ENDLABELEDITA:
d2ed74b9 2190 case LVN_ENDLABELEDITW:
8c21905b 2191 {
d2ed74b9
VZ
2192 wxLV_ITEM item;
2193 if ( nmhdr->code == LVN_ENDLABELEDITA )
c546974f 2194 {
d2ed74b9
VZ
2195 item.Init(((LV_DISPINFOA *)lParam)->item);
2196 }
2197 else // LVN_ENDLABELEDITW
2198 {
2199 item.Init(((LV_DISPINFOW *)lParam)->item);
c546974f 2200 }
8c21905b 2201
d2ed74b9
VZ
2202 // was editing cancelled?
2203 const LV_ITEM& lvi = (LV_ITEM)item;
2204 if ( !lvi.pszText || lvi.iItem == -1 )
c546974f 2205 {
5cd4cb75
VZ
2206 // EDIT control will be deleted by the list control
2207 // itself so prevent us from deleting it as well
2208 DeleteEditControl();
d2ed74b9
VZ
2209
2210 event.SetEditCanceled(true);
c546974f 2211 }
8c21905b 2212
d2ed74b9
VZ
2213 eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT;
2214 wxConvertFromMSWListItem(NULL, event.m_item, item);
11358d39
VZ
2215 event.m_itemIndex = event.m_item.m_itemId;
2216 }
2217 break;
edccf428 2218
11358d39
VZ
2219 case LVN_COLUMNCLICK:
2220 eventType = wxEVT_COMMAND_LIST_COL_CLICK;
2221 event.m_itemIndex = -1;
2222 event.m_col = nmLV->iSubItem;
2223 break;
bdc72a22 2224
11358d39
VZ
2225 case LVN_DELETEALLITEMS:
2226 eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
2227 event.m_itemIndex = -1;
11358d39
VZ
2228 break;
2229
2230 case LVN_DELETEITEM:
07763c99
VZ
2231 if ( m_count == 0 )
2232 {
2233 // this should be prevented by the post-processing code
2234 // below, but "just in case"
598ddd96 2235 return false;
07763c99 2236 }
68c124a1 2237
11358d39 2238 eventType = wxEVT_COMMAND_LIST_DELETE_ITEM;
2b5f62a0 2239 event.m_itemIndex = iItem;
c767a5bb 2240
11358d39
VZ
2241 break;
2242
11358d39
VZ
2243 case LVN_INSERTITEM:
2244 eventType = wxEVT_COMMAND_LIST_INSERT_ITEM;
2b5f62a0 2245 event.m_itemIndex = iItem;
11358d39 2246 break;
edccf428 2247
11358d39 2248 case LVN_ITEMCHANGED:
648bec3e 2249 // we translate this catch all message into more interesting
77ffb593 2250 // (and more easy to process) wxWidgets events
648bec3e 2251
2b5f62a0
VZ
2252 // first of all, we deal with the state change events only and
2253 // only for valid items (item == -1 for the virtual list
2254 // control)
2255 if ( nmLV->uChanged & LVIF_STATE && iItem != -1 )
11358d39 2256 {
648bec3e
VZ
2257 // temp vars for readability
2258 const UINT stOld = nmLV->uOldState;
2259 const UINT stNew = nmLV->uNewState;
2260
2b5f62a0
VZ
2261 event.m_item.SetId(iItem);
2262 event.m_item.SetMask(wxLIST_MASK_TEXT |
2263 wxLIST_MASK_IMAGE |
2264 wxLIST_MASK_DATA);
2265 GetItem(event.m_item);
2266
648bec3e
VZ
2267 // has the focus changed?
2268 if ( !(stOld & LVIS_FOCUSED) && (stNew & LVIS_FOCUSED) )
2269 {
2270 eventType = wxEVT_COMMAND_LIST_ITEM_FOCUSED;
2b5f62a0 2271 event.m_itemIndex = iItem;
648bec3e
VZ
2272 }
2273
2274 if ( (stNew & LVIS_SELECTED) != (stOld & LVIS_SELECTED) )
2275 {
2276 if ( eventType != wxEVT_NULL )
2277 {
2278 // focus and selection have both changed: send the
2279 // focus event from here and the selection one
2280 // below
2281 event.SetEventType(eventType);
937013e0 2282 (void)HandleWindowEvent(event);
648bec3e
VZ
2283 }
2284 else // no focus event to send
2285 {
2286 // then need to set m_itemIndex as it wasn't done
2287 // above
2b5f62a0 2288 event.m_itemIndex = iItem;
648bec3e
VZ
2289 }
2290
2291 eventType = stNew & LVIS_SELECTED
2292 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2293 : wxEVT_COMMAND_LIST_ITEM_DESELECTED;
2294 }
edccf428 2295 }
648bec3e
VZ
2296
2297 if ( eventType == wxEVT_NULL )
edccf428 2298 {
648bec3e 2299 // not an interesting event for us
598ddd96 2300 return false;
edccf428 2301 }
648bec3e 2302
11358d39 2303 break;
225fe9d6 2304
11358d39
VZ
2305 case LVN_KEYDOWN:
2306 {
2307 LV_KEYDOWN *info = (LV_KEYDOWN *)lParam;
2308 WORD wVKey = info->wVKey;
2309
2310 // get the current selection
2311 long lItem = GetNextItem(-1,
2312 wxLIST_NEXT_ALL,
2313 wxLIST_STATE_SELECTED);
2314
2315 // <Enter> or <Space> activate the selected item if any (but
ec27ba21
VZ
2316 // not with any modifiers as they have a predefined meaning
2317 // then)
11358d39
VZ
2318 if ( lItem != -1 &&
2319 (wVKey == VK_RETURN || wVKey == VK_SPACE) &&
ec27ba21 2320 !wxIsAnyModifierDown() )
11358d39
VZ
2321 {
2322 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2323 }
2324 else
2325 {
2326 eventType = wxEVT_COMMAND_LIST_KEY_DOWN;
185d0094 2327
0c03f52d 2328 event.m_code = wxMSWKeyboard::VKToWX(wVKey);
5844ad30
VZ
2329
2330 if ( event.m_code == WXK_NONE )
2331 {
2332 // We can't translate this to a standard key code,
2333 // until support for Unicode key codes is added to
2334 // wxListEvent we just ignore them.
2335 return false;
2336 }
11358d39 2337 }
7db91489 2338
11358d39
VZ
2339 event.m_itemIndex =
2340 event.m_item.m_itemId = lItem;
2341
2342 if ( lItem != -1 )
2343 {
2344 // fill the other fields too
2345 event.m_item.m_text = GetItemText(lItem);
2346 event.m_item.m_data = GetItemData(lItem);
2347 }
2348 }
2349 break;
2350
2351 case NM_DBLCLK:
2352 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2353 // anything else
2354 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
f6bcfd97 2355 {
598ddd96 2356 return true;
f6bcfd97 2357 }
edccf428 2358
11358d39
VZ
2359 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2360 // if it happened on an item (and not on empty place)
2b5f62a0 2361 if ( iItem == -1 )
11358d39
VZ
2362 {
2363 // not on item
598ddd96 2364 return false;
11358d39 2365 }
edccf428 2366
11358d39 2367 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2b5f62a0
VZ
2368 event.m_itemIndex = iItem;
2369 event.m_item.m_text = GetItemText(iItem);
2370 event.m_item.m_data = GetItemData(iItem);
11358d39 2371 break;
225fe9d6 2372
781a24e8 2373#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
80a81a12 2374 case GN_CONTEXTMENU:
a61d4011 2375#endif //__WXWINCE__
11358d39 2376 case NM_RCLICK:
225fe9d6
VZ
2377 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2378 // don't do anything else
2379 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
2380 {
598ddd96 2381 return true;
225fe9d6 2382 }
cb0f56f9 2383
225fe9d6
VZ
2384 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2385 LV_HITTESTINFO lvhti;
2386 wxZeroMemory(lvhti);
11c7d5b6 2387
781a24e8 2388#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
fb4079af
VZ
2389 if ( nmhdr->code == GN_CONTEXTMENU )
2390 {
2391 lvhti.pt = ((NMRGINFO*)nmhdr)->ptAction;
2392 }
2393 else
a61d4011 2394#endif //__WXWINCE__
fb4079af
VZ
2395 {
2396 ::GetCursorPos(&(lvhti.pt));
2397 }
2398
2399 ::ScreenToClient(GetHwnd(), &lvhti.pt);
2400 if ( ListView_HitTest(GetHwnd(), &lvhti) != -1 )
cb0f56f9 2401 {
225fe9d6
VZ
2402 if ( lvhti.flags & LVHT_ONITEM )
2403 {
2404 eventType = wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
2405 event.m_itemIndex = lvhti.iItem;
a1f79c1e
VZ
2406 event.m_pointDrag.x = lvhti.pt.x;
2407 event.m_pointDrag.y = lvhti.pt.y;
225fe9d6 2408 }
cb0f56f9 2409 }
11358d39 2410 break;
bdc72a22 2411
5b59df83 2412#ifdef NM_CUSTOMDRAW
80c54c3d 2413 case NM_CUSTOMDRAW:
11358d39 2414 *result = OnCustomDraw(lParam);
63166611 2415
e6b1317b 2416 return *result != CDRF_DODEFAULT;
6ecfe2ac 2417#endif // _WIN32_IE >= 0x300
0b5efdc7 2418
11358d39
VZ
2419 case LVN_ODCACHEHINT:
2420 {
2421 const NM_CACHEHINT *cacheHint = (NM_CACHEHINT *)lParam;
614391dc 2422
11358d39 2423 eventType = wxEVT_COMMAND_LIST_CACHE_HINT;
e623926d 2424
0ea0359b
VZ
2425 // we get some really stupid cache hints like ones for
2426 // items in range 0..0 for an empty control or, after
2427 // deleting an item, for items in invalid range -- filter
2428 // this garbage out
2429 if ( cacheHint->iFrom > cacheHint->iTo )
598ddd96 2430 return false;
0ea0359b
VZ
2431
2432 event.m_oldItemIndex = cacheHint->iFrom;
2433
2434 const long iMax = GetItemCount();
2435 event.m_itemIndex = cacheHint->iTo < iMax ? cacheHint->iTo
2436 : iMax - 1;
e623926d 2437 }
11358d39 2438 break;
614391dc 2439
206391cb 2440#ifdef HAVE_NMLVFINDITEM
f0755097
VZ
2441 case LVN_ODFINDITEM:
2442 // this message is only used with the virtual list control but
2443 // even there we don't want to always use it: in a control with
2444 // sufficiently big number of items (defined as > 1000 here),
2445 // accidentally pressing a key could result in hanging an
2446 // application waiting while it performs linear search
2447 if ( IsVirtual() && GetItemCount() <= 1000 )
2448 {
2449 NMLVFINDITEM* pFindInfo = (NMLVFINDITEM*)lParam;
2450
2451 // no match by default
2452 *result = -1;
2453
2454 // we only handle string-based searches here
2455 //
2456 // TODO: what about LVFI_PARTIAL, should we handle this?
2457 if ( !(pFindInfo->lvfi.flags & LVFI_STRING) )
2458 {
2459 return false;
2460 }
2461
2462 const wxChar * const searchstr = pFindInfo->lvfi.psz;
2463 const size_t len = wxStrlen(searchstr);
2464
2465 // this is the first item we should examine, search from it
2466 // wrapping if necessary
2467 const int startPos = pFindInfo->iStart;
2468 const int maxPos = GetItemCount();
2469 wxCHECK_MSG( startPos <= maxPos, false,
9a83f860 2470 wxT("bad starting position in LVN_ODFINDITEM") );
f0755097
VZ
2471
2472 int currentPos = startPos;
2473 do
2474 {
2475 // wrap to the beginning if necessary
2476 if ( currentPos == maxPos )
2477 {
cbab1556 2478 // somewhat surprisingly, LVFI_WRAP isn't set in
f0755097
VZ
2479 // flags but we still should wrap
2480 currentPos = 0;
2481 }
2482
2483 // does this item begin with searchstr?
2484 if ( wxStrnicmp(searchstr,
2485 GetItemText(currentPos), len) == 0 )
2486 {
2487 *result = currentPos;
2488 break;
2489 }
2490 }
2491 while ( ++currentPos != startPos );
2492
2493 if ( *result == -1 )
2494 {
2495 // not found
2496 return false;
2497 }
2498
2499 SetItemState(*result,
2500 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED,
2501 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED);
2502 EnsureVisible(*result);
2503 return true;
2504 }
2505 else
2506 {
2507 processed = false;
2508 }
2509 break;
206391cb 2510#endif // HAVE_NMLVFINDITEM
f0755097 2511
11358d39
VZ
2512 case LVN_GETDISPINFO:
2513 if ( IsVirtual() )
2514 {
2515 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
98ec9dbe 2516
11358d39
VZ
2517 LV_ITEM& lvi = info->item;
2518 long item = lvi.iItem;
98ec9dbe 2519
11358d39
VZ
2520 if ( lvi.mask & LVIF_TEXT )
2521 {
2522 wxString text = OnGetItemText(item, lvi.iSubItem);
64accea5 2523 wxStrlcpy(lvi.pszText, text.c_str(), lvi.cchTextMax);
11358d39 2524 }
98ec9dbe 2525
5b59df83
VZ
2526 // see comment at the end of wxListCtrl::GetColumn()
2527#ifdef NM_CUSTOMDRAW
11358d39
VZ
2528 if ( lvi.mask & LVIF_IMAGE )
2529 {
208458a7 2530 lvi.iImage = OnGetItemColumnImage(item, lvi.iSubItem);
11358d39 2531 }
5b59df83 2532#endif // NM_CUSTOMDRAW
98ec9dbe 2533
19def5e7
VZ
2534 // even though we never use LVM_SETCALLBACKMASK, we still
2535 // can get messages with LVIF_STATE in lvi.mask under Vista
2536 if ( lvi.mask & LVIF_STATE )
2537 {
2538 // we don't have anything to return from here...
2539 lvi.stateMask = 0;
2540 }
98ec9dbe 2541
598ddd96 2542 return true;
11358d39
VZ
2543 }
2544 // fall through
98ec9dbe 2545
11358d39 2546 default:
f0755097 2547 processed = false;
11358d39 2548 }
f0755097
VZ
2549
2550 if ( !processed )
2551 return wxControl::MSWOnNotify(idCtrl, lParam, result);
11358d39
VZ
2552 }
2553 else
2554 {
2555 // where did this one come from?
598ddd96 2556 return false;
acb62b84
VZ
2557 }
2558
bdc72a22
VZ
2559 // process the event
2560 // -----------------
2561
0b5efdc7 2562 event.SetEventType(eventType);
acb62b84 2563
fb4079af
VZ
2564 // fill in the item before passing it to the event handler if we do have a
2565 // valid item index and haven't filled it yet (e.g. for LVN_ITEMCHANGED)
2566 if ( event.m_itemIndex != -1 && !event.m_item.GetMask() )
2567 {
2568 wxListItem& item = event.m_item;
2569
2570 item.SetId(event.m_itemIndex);
2571 item.SetMask(wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE | wxLIST_MASK_DATA);
2572 GetItem(item);
2573 }
2574
937013e0 2575 bool processed = HandleWindowEvent(event);
acb62b84 2576
bdc72a22
VZ
2577 // post processing
2578 // ---------------
225fe9d6 2579 switch ( nmhdr->code )
acb62b84 2580 {
6932a32c 2581 case LVN_DELETEALLITEMS:
598ddd96 2582 // always return true to suppress all additional LVN_DELETEITEM
6932a32c
VZ
2583 // notifications - this makes deleting all items from a list ctrl
2584 // much faster
2585 *result = TRUE;
f7df21aa
VZ
2586
2587 // also, we may free all user data now (couldn't do it before as
2588 // the user should have access to it in OnDeleteAllItems() handler)
2589 FreeAllInternalData();
07763c99
VZ
2590
2591 // the control is empty now, synchronize the cached number of items
2592 // with the real one
2593 m_count = 0;
598ddd96 2594 return true;
6932a32c 2595
c67f8151
VZ
2596 case LVN_DELETEITEM:
2597 // Delete the associated internal data. Notice that this can be
2598 // done only after the event has been handled as the data could be
2599 // accessed during the handling of the event.
2600 if ( wxMSWListItemData *data = MSWGetItemData(event.m_itemIndex) )
2601 {
2602 const unsigned count = m_internalData.size();
2603 for ( unsigned n = 0; n < count; n++ )
2604 {
2605 if ( m_internalData[n] == data )
2606 {
2607 m_internalData.erase(m_internalData.begin() + n);
2608 wxDELETE(data);
2609 break;
2610 }
2611 }
2612
2613 wxASSERT_MSG( !data, "invalid internal data pointer?" );
2614 }
2615 break;
2616
8c21905b
VS
2617 case LVN_ENDLABELEDITA:
2618 case LVN_ENDLABELEDITW:
3103e8a9 2619 // logic here is inverted compared to all the other messages
614391dc
VZ
2620 *result = event.IsAllowed();
2621
5cd4cb75
VZ
2622 // EDIT control will be deleted by the list control itself so
2623 // prevent us from deleting it as well
2624 DeleteEditControl();
2b5f62a0 2625
598ddd96 2626 return true;
acb62b84 2627 }
acb62b84 2628
68c124a1
RD
2629 if ( processed )
2630 *result = !event.IsAllowed();
fd3f686c 2631
68c124a1 2632 return processed;
2bda0e17
KB
2633}
2634
e6b1317b
VZ
2635// ----------------------------------------------------------------------------
2636// custom draw stuff
2637// ----------------------------------------------------------------------------
2638
5b59df83
VZ
2639// see comment at the end of wxListCtrl::GetColumn()
2640#ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
63166611 2641
e6b1317b
VZ
2642static RECT GetCustomDrawnItemRect(const NMCUSTOMDRAW& nmcd)
2643{
2644 RECT rc;
89cafab0 2645 wxGetListCtrlItemRect(nmcd.hdr.hwndFrom, nmcd.dwItemSpec, LVIR_BOUNDS, rc);
e6b1317b
VZ
2646
2647 RECT rcIcon;
89cafab0 2648 wxGetListCtrlItemRect(nmcd.hdr.hwndFrom, nmcd.dwItemSpec, LVIR_ICON, rcIcon);
e6b1317b
VZ
2649
2650 // exclude the icon part, neither the selection background nor focus rect
2651 // should cover it
2652 rc.left = rcIcon.right;
2653
2654 return rc;
2655}
2656
0c1602b8
VZ
2657static
2658bool HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD, HFONT hfont, int colCount)
e6b1317b
VZ
2659{
2660 NMCUSTOMDRAW& nmcd = pLVCD->nmcd;
2661
2662 HDC hdc = nmcd.hdc;
2663 HWND hwndList = nmcd.hdr.hwndFrom;
223b7504 2664 const int col = pLVCD->iSubItem;
e6b1317b
VZ
2665 const DWORD item = nmcd.dwItemSpec;
2666
e6b1317b
VZ
2667 // the font must be valid, otherwise we wouldn't be painting the item at all
2668 SelectInHDC selFont(hdc, hfont);
2669
2670 // get the rectangle to paint
89cafab0 2671 int subitem = colCount ? col + 1 : col;
e6b1317b 2672 RECT rc;
89cafab0
VZ
2673 wxGetListCtrlSubItemRect(hwndList, item, subitem, LVIR_BOUNDS, rc);
2674 rc.left += 6;
e6b1317b
VZ
2675
2676 // get the image and text to draw
2677 wxChar text[512];
2678 LV_ITEM it;
2679 wxZeroMemory(it);
2680 it.mask = LVIF_TEXT | LVIF_IMAGE;
2681 it.iItem = item;
223b7504 2682 it.iSubItem = col;
e6b1317b
VZ
2683 it.pszText = text;
2684 it.cchTextMax = WXSIZEOF(text);
2685 ListView_GetItem(hwndList, &it);
2686
25e6a4a6
VZ
2687 HIMAGELIST himl = ListView_GetImageList(hwndList, LVSIL_SMALL);
2688 if ( himl && ImageList_GetImageCount(himl) )
e6b1317b 2689 {
25e6a4a6
VZ
2690 if ( it.iImage != -1 )
2691 {
2692 ImageList_Draw(himl, it.iImage, hdc, rc.left, rc.top,
2693 nmcd.uItemState & CDIS_SELECTED ? ILD_SELECTED
2694 : ILD_TRANSPARENT);
2695 }
e6b1317b 2696
25e6a4a6 2697 // notice that even if this item doesn't have any image, the list
23535447
VZ
2698 // control still leaves space for the image in the first column if the
2699 // image list is not empty (presumably so that items with and without
2700 // images align?)
2701 if ( it.iImage != -1 || it.iSubItem == 0 )
2702 {
2703 int wImage, hImage;
2704 ImageList_GetIconSize(himl, &wImage, &hImage);
e6b1317b 2705
23535447
VZ
2706 rc.left += wImage + 2;
2707 }
e6b1317b
VZ
2708 }
2709
2710 ::SetBkMode(hdc, TRANSPARENT);
2711
223b7504 2712 UINT fmt = DT_SINGLELINE |
5cce8340
VZ
2713#ifndef __WXWINCE__
2714 DT_WORD_ELLIPSIS |
2715#endif // __WXWINCE__
223b7504
VZ
2716 DT_NOPREFIX |
2717 DT_VCENTER;
2718
2719 LV_COLUMN lvCol;
2720 wxZeroMemory(lvCol);
2721 lvCol.mask = LVCF_FMT;
2722 if ( ListView_GetColumn(hwndList, col, &lvCol) )
2723 {
2724 switch ( lvCol.fmt & LVCFMT_JUSTIFYMASK )
2725 {
2726 case LVCFMT_LEFT:
2727 fmt |= DT_LEFT;
2728 break;
2729
2730 case LVCFMT_CENTER:
2731 fmt |= DT_CENTER;
2732 break;
2733
2734 case LVCFMT_RIGHT:
2735 fmt |= DT_RIGHT;
2736 break;
2737 }
2738 }
2739 //else: failed to get alignment, assume it's DT_LEFT (default)
2740
2741 DrawText(hdc, text, -1, &rc, fmt);
2742
2743 return true;
e6b1317b
VZ
2744}
2745
2746static void HandleItemPostpaint(NMCUSTOMDRAW nmcd)
2747{
2748 if ( nmcd.uItemState & CDIS_FOCUS )
2749 {
2750 RECT rc = GetCustomDrawnItemRect(nmcd);
2751
2752 // don't use the provided HDC, it's in some strange state by now
2753 ::DrawFocusRect(WindowHDC(nmcd.hdr.hwndFrom), &rc);
2754 }
2755}
2756
2757// pLVCD->clrText and clrTextBk should contain the colours to use
2758static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD, HFONT hfont)
2759{
2760 NMCUSTOMDRAW& nmcd = pLVCD->nmcd; // just a shortcut
2761
13845bd5
VZ
2762 const HWND hwndList = nmcd.hdr.hwndFrom;
2763 const int item = nmcd.dwItemSpec;
e6b1317b
VZ
2764
2765 // unfortunately we can't trust CDIS_SELECTED, it is often set even when
2766 // the item is not at all selected for some reason (comctl32 6), but we
2767 // also can't always trust ListView_GetItem() as it could return the old
2768 // item status if we're called just after the (de)selection, so remember
2769 // the last item to gain selection and also check for it here
2770 for ( int i = -1;; )
2771 {
2772 i = ListView_GetNextItem(hwndList, i, LVNI_SELECTED);
2773 if ( i == -1 )
2774 {
2775 nmcd.uItemState &= ~CDIS_SELECTED;
2776 break;
2777 }
2778
13845bd5 2779 if ( i == item )
e6b1317b
VZ
2780 {
2781 nmcd.uItemState |= CDIS_SELECTED;
2782 break;
2783 }
2784 }
2785
13845bd5 2786 // same thing for CDIS_FOCUS (except simpler as there is only one of them)
36e5a9a7
VZ
2787 //
2788 // NB: cast is needed to work around the bug in mingw32 headers which don't
2789 // have it inside ListView_GetNextItem() itself (unlike SDK ones)
728f972b 2790 if ( ::GetFocus() == hwndList &&
36e5a9a7
VZ
2791 ListView_GetNextItem(
2792 hwndList, static_cast<WPARAM>(-1), LVNI_FOCUSED) == item )
13845bd5
VZ
2793 {
2794 nmcd.uItemState |= CDIS_FOCUS;
2795 }
2796 else
2797 {
2798 nmcd.uItemState &= ~CDIS_FOCUS;
2799 }
2800
e6b1317b
VZ
2801 if ( nmcd.uItemState & CDIS_SELECTED )
2802 {
2803 int syscolFg, syscolBg;
2804 if ( ::GetFocus() == hwndList )
2805 {
2806 syscolFg = COLOR_HIGHLIGHTTEXT;
2807 syscolBg = COLOR_HIGHLIGHT;
2808 }
2809 else // selected but unfocused
2810 {
2811 syscolFg = COLOR_WINDOWTEXT;
2812 syscolBg = COLOR_BTNFACE;
2813
2814 // don't grey out the icon in this case neither
2815 nmcd.uItemState &= ~CDIS_SELECTED;
2816 }
2817
2818 pLVCD->clrText = ::GetSysColor(syscolFg);
2819 pLVCD->clrTextBk = ::GetSysColor(syscolBg);
2820 }
2821 //else: not selected, use normal colours from pLVCD
2822
2823 HDC hdc = nmcd.hdc;
2824 RECT rc = GetCustomDrawnItemRect(nmcd);
2825
2826 ::SetTextColor(hdc, pLVCD->clrText);
2827 ::FillRect(hdc, &rc, AutoHBRUSH(pLVCD->clrTextBk));
2828
2829 // we could use CDRF_NOTIFYSUBITEMDRAW here but it results in weird repaint
2830 // problems so just draw everything except the focus rect from here instead
2831 const int colCount = Header_GetItemCount(ListView_GetHeader(hwndList));
2832 for ( int col = 0; col < colCount; col++ )
2833 {
2834 pLVCD->iSubItem = col;
0c1602b8 2835 HandleSubItemPrepaint(pLVCD, hfont, colCount);
e6b1317b
VZ
2836 }
2837
2838 HandleItemPostpaint(nmcd);
2839}
2840
2841static WXLPARAM HandleItemPrepaint(wxListCtrl *listctrl,
2842 LPNMLVCUSTOMDRAW pLVCD,
2843 wxListItemAttr *attr)
2844{
2845 if ( !attr )
2846 {
2847 // nothing to do for this item
2848 return CDRF_DODEFAULT;
2849 }
2850
2851
2852 // set the colours to use for text drawing
3568f700
WS
2853 pLVCD->clrText = attr->HasTextColour()
2854 ? wxColourToRGB(attr->GetTextColour())
2855 : wxColourToRGB(listctrl->GetTextColour());
2856 pLVCD->clrTextBk = attr->HasBackgroundColour()
2857 ? wxColourToRGB(attr->GetBackgroundColour())
2858 : wxColourToRGB(listctrl->GetBackgroundColour());
e6b1317b
VZ
2859
2860 // select the font if non default one is specified
2861 if ( attr->HasFont() )
2862 {
2863 wxFont font = attr->GetFont();
2864 if ( font.GetEncoding() != wxFONTENCODING_SYSTEM )
2865 {
2866 // the standard control ignores the font encoding/charset, at least
2867 // with recent comctl32.dll versions (5 and 6, it uses to work with
2868 // 4.something) so we have to draw the item entirely ourselves in
2869 // this case
2870 HandleItemPaint(pLVCD, GetHfontOf(font));
2871 return CDRF_SKIPDEFAULT;
2872 }
2873
2874 ::SelectObject(pLVCD->nmcd.hdc, GetHfontOf(font));
2875
2876 return CDRF_NEWFONT;
2877 }
2878
2879 return CDRF_DODEFAULT;
2880}
2881
63166611
VZ
2882WXLPARAM wxListCtrl::OnCustomDraw(WXLPARAM lParam)
2883{
e6b1317b
VZ
2884 LPNMLVCUSTOMDRAW pLVCD = (LPNMLVCUSTOMDRAW)lParam;
2885 NMCUSTOMDRAW& nmcd = pLVCD->nmcd;
63166611
VZ
2886 switch ( nmcd.dwDrawStage )
2887 {
2888 case CDDS_PREPAINT:
2889 // if we've got any items with non standard attributes,
2890 // notify us before painting each item
2891 //
2892 // for virtual controls, always suppose that we have attributes as
2893 // there is no way to check for this
e6b1317b
VZ
2894 if ( IsVirtual() || m_hasAnyAttr )
2895 return CDRF_NOTIFYITEMDRAW;
2896 break;
63166611
VZ
2897
2898 case CDDS_ITEMPREPAINT:
eab1336c
VZ
2899 // get a message for each subitem
2900 return CDRF_NOTIFYITEMDRAW;
2901
2902 case CDDS_SUBITEM | CDDS_ITEMPREPAINT:
e6b1317b 2903 const int item = nmcd.dwItemSpec;
eab1336c 2904 const int column = pLVCD->iSubItem;
63166611 2905
e6b1317b
VZ
2906 // we get this message with item == 0 for an empty control, we
2907 // must ignore it as calling OnGetItemAttr() would be wrong
2908 if ( item < 0 || item >= GetItemCount() )
2909 break;
eab1336c
VZ
2910 // same for columns
2911 if ( column < 0 || column >= GetColumnCount() )
2912 break;
63166611 2913
eab1336c 2914 return HandleItemPrepaint(this, pLVCD, DoGetItemColumnAttr(item, column));
63166611 2915 }
e6b1317b
VZ
2916
2917 return CDRF_DODEFAULT;
63166611
VZ
2918}
2919
2920#endif // NM_CUSTOMDRAW supported
2921
2702ed5a
JS
2922// Necessary for drawing hrules and vrules, if specified
2923void wxListCtrl::OnPaint(wxPaintEvent& event)
2924{
99366b91 2925 const int itemCount = GetItemCount();
d3acc83a
VZ
2926 const bool drawHRules = HasFlag(wxLC_HRULES);
2927 const bool drawVRules = HasFlag(wxLC_VRULES);
2e6a9dad 2928
99366b91 2929 if (!InReportView() || !(drawHRules || drawVRules) || !itemCount)
2e6a9dad
VS
2930 {
2931 event.Skip();
2932 return;
2933 }
2934
2702ed5a
JS
2935 wxPaintDC dc(this);
2936
2937 wxControl::OnPaint(event);
2938
2939 // Reset the device origin since it may have been set
2940 dc.SetDeviceOrigin(0, 0);
2941
36c10aa1 2942 wxPen pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT));
2702ed5a
JS
2943 dc.SetPen(pen);
2944 dc.SetBrush(* wxTRANSPARENT_BRUSH);
2945
2946 wxSize clientSize = GetClientSize();
2947 wxRect itemRect;
2702ed5a 2948
625cb8c0 2949 if (drawHRules)
2702ed5a 2950 {
99366b91
VZ
2951 const long top = GetTopItem();
2952 for ( int i = top; i < top + GetCountPerPage() + 1; i++ )
2702ed5a 2953 {
625cb8c0 2954 if (GetItemRect(i, itemRect))
ca286917 2955 {
5cb598ae 2956 int cy = itemRect.GetTop();
625cb8c0
RD
2957 if (i != 0) // Don't draw the first one
2958 {
2959 dc.DrawLine(0, cy, clientSize.x, cy);
2960 }
2961 // Draw last line
2cefcb34 2962 if (i == itemCount - 1)
625cb8c0
RD
2963 {
2964 cy = itemRect.GetBottom();
2965 dc.DrawLine(0, cy, clientSize.x, cy);
99366b91 2966 break;
625cb8c0 2967 }
2702ed5a
JS
2968 }
2969 }
2970 }
99366b91
VZ
2971
2972 if (drawVRules)
2702ed5a
JS
2973 {
2974 wxRect firstItemRect;
2975 GetItemRect(0, firstItemRect);
2976
99366b91 2977 if (GetItemRect(itemCount - 1, itemRect))
2702ed5a 2978 {
9eaba692
VZ
2979 // this is a fix for bug 673394: erase the pixels which we would
2980 // otherwise leave on the screen
2981 static const int gap = 2;
2982 dc.SetPen(*wxTRANSPARENT_PEN);
2983 dc.SetBrush(wxBrush(GetBackgroundColour()));
2984 dc.DrawRectangle(0, firstItemRect.GetY() - gap,
2985 clientSize.GetWidth(), gap);
2986
2987 dc.SetPen(pen);
2988 dc.SetBrush(*wxTRANSPARENT_BRUSH);
67d3fc49 2989
ceef3893
VZ
2990 const int numCols = GetColumnCount();
2991 wxVector<int> indexArray(numCols);
2992 if ( !ListView_GetColumnOrderArray(GetHwnd(),
2993 numCols,
2994 &indexArray[0]) )
7a8dce71 2995 {
9a83f860 2996 wxFAIL_MSG( wxT("invalid column index array in OnPaint()") );
ceef3893 2997 return;
7a8dce71 2998 }
67d3fc49 2999
2702ed5a 3000 int x = itemRect.GetX();
67d3fc49 3001 for (int col = 0; col < numCols; col++)
2702ed5a 3002 {
67d3fc49 3003 int colWidth = GetColumnWidth(indexArray[col]);
2702ed5a 3004 x += colWidth ;
9eaba692
VZ
3005 dc.DrawLine(x-1, firstItemRect.GetY() - gap,
3006 x-1, itemRect.GetBottom());
2702ed5a
JS
3007 }
3008 }
3009 }
3010}
3011
4bd6ae0f
VZ
3012WXLRESULT
3013wxListCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
3014{
777f37e0 3015 switch ( nMsg )
4bd6ae0f 3016 {
777f37e0
VZ
3017#ifdef WM_PRINT
3018 case WM_PRINT:
3019 // we should bypass our own WM_PRINT handling as we don't handle
3020 // PRF_CHILDREN flag, so leave it to the native control itself
3021 return MSWDefWindowProc(nMsg, wParam, lParam);
4bd6ae0f
VZ
3022#endif // WM_PRINT
3023
777f37e0
VZ
3024 case WM_CONTEXTMENU:
3025 // because this message is propagated upwards the child-parent
3026 // chain, we get it for the right clicks on the header window but
3027 // this is confusing in wx as right clicking there already
3028 // generates a separate wxEVT_COMMAND_LIST_COL_RIGHT_CLICK event
3029 // so just ignore them
3030 if ( (HWND)wParam == ListView_GetHeader(GetHwnd()) )
3031 return 0;
3032 //else: break
3033 }
3034
4bd6ae0f
VZ
3035 return wxControl::MSWWindowProc(nMsg, wParam, lParam);
3036}
3037
98ec9dbe
VZ
3038// ----------------------------------------------------------------------------
3039// virtual list controls
3040// ----------------------------------------------------------------------------
3041
d699f48b 3042wxString wxListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const
98ec9dbe
VZ
3043{
3044 // this is a pure virtual function, in fact - which is not really pure
3045 // because the controls which are not virtual don't need to implement it
9a83f860 3046 wxFAIL_MSG( wxT("wxListCtrl::OnGetItemText not supposed to be called") );
98ec9dbe
VZ
3047
3048 return wxEmptyString;
3049}
3050
d699f48b 3051int wxListCtrl::OnGetItemImage(long WXUNUSED(item)) const
98ec9dbe 3052{
611a725e
RD
3053 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL),
3054 -1,
208458a7
RD
3055 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
3056 return -1;
3057}
3058
3059int wxListCtrl::OnGetItemColumnImage(long item, long column) const
3060{
3061 if (!column)
3062 return OnGetItemImage(item);
3063
98ec9dbe
VZ
3064 return -1;
3065}
3066
d699f48b 3067wxListItemAttr *wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const
6c02c329 3068{
63166611 3069 wxASSERT_MSG( item >= 0 && item < GetItemCount(),
9a83f860 3070 wxT("invalid item index in OnGetItemAttr()") );
6c02c329
VZ
3071
3072 // no attributes by default
3073 return NULL;
3074}
3075
eab1336c 3076wxListItemAttr *wxListCtrl::DoGetItemColumnAttr(long item, long column) const
e6b1317b 3077{
c767a5bb
VZ
3078 if ( IsVirtual() )
3079 return OnGetItemColumnAttr(item, column);
3080
3081 wxMSWListItemData * const data = MSWGetItemData(item);
3082 return data ? data->attr : NULL;
e6b1317b
VZ
3083}
3084
98ec9dbe
VZ
3085void wxListCtrl::SetItemCount(long count)
3086{
9a83f860 3087 wxASSERT_MSG( IsVirtual(), wxT("this is for virtual controls only") );
98ec9dbe 3088
54759554
VZ
3089 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT, (WPARAM)count,
3090 LVSICF_NOSCROLL | LVSICF_NOINVALIDATEALL) )
98ec9dbe 3091 {
9a83f860 3092 wxLogLastError(wxT("ListView_SetItemCount"));
98ec9dbe 3093 }
68c124a1
RD
3094 m_count = count;
3095 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
3096 wxT("m_count should match ListView_GetItemCount"));
98ec9dbe
VZ
3097}
3098
a7f560a2
VZ
3099void wxListCtrl::RefreshItem(long item)
3100{
ebc9b89d 3101 RefreshItems(item, item);
a7f560a2
VZ
3102}
3103
3104void wxListCtrl::RefreshItems(long itemFrom, long itemTo)
3105{
ebc9b89d 3106 ListView_RedrawItems(GetHwnd(), itemFrom, itemTo);
a7f560a2
VZ
3107}
3108
97c611f8
VZ
3109// ----------------------------------------------------------------------------
3110// wxWin <-> MSW items conversions
3111// ----------------------------------------------------------------------------
3112
8dff2b5c
VZ
3113static void wxConvertFromMSWListItem(HWND hwndListCtrl,
3114 wxListItem& info,
3115 LV_ITEM& lvItem)
2bda0e17 3116{
c767a5bb
VZ
3117 wxMSWListItemData *internaldata =
3118 (wxMSWListItemData *) lvItem.lParam;
7cf46fdb
VZ
3119
3120 if (internaldata)
3121 info.m_data = internaldata->lParam;
3122
0b5efdc7
VZ
3123 info.m_mask = 0;
3124 info.m_state = 0;
3125 info.m_stateMask = 0;
3126 info.m_itemId = lvItem.iItem;
acb62b84 3127
0b5efdc7 3128 long oldMask = lvItem.mask;
acb62b84 3129
598ddd96 3130 bool needText = false;
8dff2b5c 3131 if (hwndListCtrl != 0)
acb62b84 3132 {
0b5efdc7 3133 if ( lvItem.mask & LVIF_TEXT )
598ddd96 3134 needText = false;
0b5efdc7 3135 else
598ddd96 3136 needText = true;
acb62b84 3137
0b5efdc7
VZ
3138 if ( needText )
3139 {
837e5743 3140 lvItem.pszText = new wxChar[513];
0b5efdc7
VZ
3141 lvItem.cchTextMax = 512;
3142 }
edccf428 3143 lvItem.mask |= LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
8dff2b5c 3144 ::SendMessage(hwndListCtrl, LVM_GETITEM, 0, (LPARAM)& lvItem);
0b5efdc7 3145 }
acb62b84 3146
0b5efdc7 3147 if ( lvItem.mask & LVIF_STATE )
acb62b84 3148 {
0b5efdc7
VZ
3149 info.m_mask |= wxLIST_MASK_STATE;
3150
3151 if ( lvItem.stateMask & LVIS_CUT)
3152 {
edccf428 3153 info.m_stateMask |= wxLIST_STATE_CUT;
0b5efdc7 3154 if ( lvItem.state & LVIS_CUT )
edccf428 3155 info.m_state |= wxLIST_STATE_CUT;
0b5efdc7
VZ
3156 }
3157 if ( lvItem.stateMask & LVIS_DROPHILITED)
3158 {
edccf428 3159 info.m_stateMask |= wxLIST_STATE_DROPHILITED;
0b5efdc7 3160 if ( lvItem.state & LVIS_DROPHILITED )
edccf428 3161 info.m_state |= wxLIST_STATE_DROPHILITED;
0b5efdc7
VZ
3162 }
3163 if ( lvItem.stateMask & LVIS_FOCUSED)
3164 {
edccf428 3165 info.m_stateMask |= wxLIST_STATE_FOCUSED;
0b5efdc7 3166 if ( lvItem.state & LVIS_FOCUSED )
edccf428 3167 info.m_state |= wxLIST_STATE_FOCUSED;
0b5efdc7
VZ
3168 }
3169 if ( lvItem.stateMask & LVIS_SELECTED)
3170 {
edccf428 3171 info.m_stateMask |= wxLIST_STATE_SELECTED;
0b5efdc7 3172 if ( lvItem.state & LVIS_SELECTED )
edccf428 3173 info.m_state |= wxLIST_STATE_SELECTED;
0b5efdc7 3174 }
acb62b84 3175 }
0b5efdc7
VZ
3176
3177 if ( lvItem.mask & LVIF_TEXT )
acb62b84 3178 {
0b5efdc7
VZ
3179 info.m_mask |= wxLIST_MASK_TEXT;
3180 info.m_text = lvItem.pszText;
acb62b84 3181 }
0b5efdc7 3182 if ( lvItem.mask & LVIF_IMAGE )
acb62b84 3183 {
0b5efdc7
VZ
3184 info.m_mask |= wxLIST_MASK_IMAGE;
3185 info.m_image = lvItem.iImage;
acb62b84 3186 }
0b5efdc7
VZ
3187 if ( lvItem.mask & LVIF_PARAM )
3188 info.m_mask |= wxLIST_MASK_DATA;
3189 if ( lvItem.mask & LVIF_DI_SETITEM )
3190 info.m_mask |= wxLIST_SET_ITEM;
3191 info.m_col = lvItem.iSubItem;
3192
3193 if (needText)
acb62b84 3194 {
0b5efdc7
VZ
3195 if (lvItem.pszText)
3196 delete[] lvItem.pszText;
acb62b84 3197 }
edccf428 3198 lvItem.mask = oldMask;
2bda0e17
KB
3199}
3200
8dff2b5c
VZ
3201static void wxConvertToMSWFlags(long state, long stateMask, LV_ITEM& lvItem)
3202{
3203 if (stateMask & wxLIST_STATE_CUT)
3204 {
3205 lvItem.stateMask |= LVIS_CUT;
3206 if (state & wxLIST_STATE_CUT)
3207 lvItem.state |= LVIS_CUT;
3208 }
3209 if (stateMask & wxLIST_STATE_DROPHILITED)
3210 {
3211 lvItem.stateMask |= LVIS_DROPHILITED;
3212 if (state & wxLIST_STATE_DROPHILITED)
3213 lvItem.state |= LVIS_DROPHILITED;
3214 }
3215 if (stateMask & wxLIST_STATE_FOCUSED)
3216 {
3217 lvItem.stateMask |= LVIS_FOCUSED;
3218 if (state & wxLIST_STATE_FOCUSED)
3219 lvItem.state |= LVIS_FOCUSED;
3220 }
3221 if (stateMask & wxLIST_STATE_SELECTED)
3222 {
3223 lvItem.stateMask |= LVIS_SELECTED;
3224 if (state & wxLIST_STATE_SELECTED)
3225 lvItem.state |= LVIS_SELECTED;
3226 }
3227}
3228
3229static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
3230 const wxListItem& info,
3231 LV_ITEM& lvItem)
2bda0e17 3232{
dc6a272b
VZ
3233 if ( ctrl->InReportView() )
3234 {
3235 wxASSERT_MSG( 0 <= info.m_col && info.m_col < ctrl->GetColumnCount(),
3236 "wxListCtrl column index out of bounds" );
3237 }
3238 else // not in report view
3239 {
3240 wxASSERT_MSG( info.m_col == 0, "columns only exist in report view" );
3241 }
14263426 3242
edccf428 3243 lvItem.iItem = (int) info.m_itemId;
acb62b84 3244
edccf428 3245 lvItem.iImage = info.m_image;
0b5efdc7
VZ
3246 lvItem.stateMask = 0;
3247 lvItem.state = 0;
3248 lvItem.mask = 0;
3249 lvItem.iSubItem = info.m_col;
acb62b84 3250
0b5efdc7 3251 if (info.m_mask & wxLIST_MASK_STATE)
acb62b84 3252 {
edccf428 3253 lvItem.mask |= LVIF_STATE;
8dff2b5c
VZ
3254
3255 wxConvertToMSWFlags(info.m_state, info.m_stateMask, lvItem);
acb62b84 3256 }
acb62b84 3257
0b5efdc7 3258 if (info.m_mask & wxLIST_MASK_TEXT)
acb62b84 3259 {
edccf428 3260 lvItem.mask |= LVIF_TEXT;
b5d43d1d 3261 if ( ctrl->HasFlag(wxLC_USER_TEXT) )
0b5efdc7
VZ
3262 {
3263 lvItem.pszText = LPSTR_TEXTCALLBACK;
3264 }
3265 else
3266 {
e421922f 3267 // pszText is not const, hence the cast
c9f78968 3268 lvItem.pszText = (wxChar *)info.m_text.wx_str();
0b5efdc7 3269 if ( lvItem.pszText )
8ecd5de2 3270 lvItem.cchTextMax = info.m_text.length();
0b5efdc7
VZ
3271 else
3272 lvItem.cchTextMax = 0;
3273 }
acb62b84 3274 }
0b5efdc7 3275 if (info.m_mask & wxLIST_MASK_IMAGE)
edccf428 3276 lvItem.mask |= LVIF_IMAGE;
2bda0e17
KB
3277}
3278
e64658ed
VZ
3279static void wxConvertToMSWListCol(HWND hwndList,
3280 int col,
3281 const wxListItem& item,
6f806543
VZ
3282 LV_COLUMN& lvCol)
3283{
3284 wxZeroMemory(lvCol);
3285
3286 if ( item.m_mask & wxLIST_MASK_TEXT )
3287 {
3288 lvCol.mask |= LVCF_TEXT;
c9f78968 3289 lvCol.pszText = (wxChar *)item.m_text.wx_str(); // cast is safe
6f806543
VZ
3290 }
3291
3292 if ( item.m_mask & wxLIST_MASK_FORMAT )
3293 {
3294 lvCol.mask |= LVCF_FMT;
3295
3296 if ( item.m_format == wxLIST_FORMAT_LEFT )
3297 lvCol.fmt = LVCFMT_LEFT;
3298 else if ( item.m_format == wxLIST_FORMAT_RIGHT )
3299 lvCol.fmt = LVCFMT_RIGHT;
3300 else if ( item.m_format == wxLIST_FORMAT_CENTRE )
3301 lvCol.fmt = LVCFMT_CENTER;
3302 }
3303
3304 if ( item.m_mask & wxLIST_MASK_WIDTH )
3305 {
3306 lvCol.mask |= LVCF_WIDTH;
3307 if ( item.m_width == wxLIST_AUTOSIZE)
3308 lvCol.cx = LVSCW_AUTOSIZE;
3309 else if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER)
3310 lvCol.cx = LVSCW_AUTOSIZE_USEHEADER;
3311 else
3312 lvCol.cx = item.m_width;
3313 }
3314
5b59df83
VZ
3315 // see comment at the end of wxListCtrl::GetColumn()
3316#ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
6f806543
VZ
3317 if ( item.m_mask & wxLIST_MASK_IMAGE )
3318 {
5625d0d4 3319 if ( wxApp::GetComCtl32Version() >= 470 )
6f806543 3320 {
e64658ed 3321 lvCol.mask |= LVCF_IMAGE;
8b3a4016 3322
e64658ed 3323 // we use LVCFMT_BITMAP_ON_RIGHT because the images on the right
8b3a4016
VZ
3324 // seem to be generally nicer than on the left and the generic
3325 // version only draws them on the right (we don't have a flag to
3326 // specify the image location anyhow)
3327 //
3328 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
3329 // make any difference in my tests -- but maybe we should?
73bb5654 3330 if ( item.m_image != -1 )
e64658ed
VZ
3331 {
3332 // as we're going to overwrite the format field, get its
3333 // current value first -- unless we want to overwrite it anyhow
3334 if ( !(lvCol.mask & LVCF_FMT) )
3335 {
3336 LV_COLUMN lvColOld;
3337 wxZeroMemory(lvColOld);
3338 lvColOld.mask = LVCF_FMT;
3339 if ( ListView_GetColumn(hwndList, col, &lvColOld) )
3340 {
3341 lvCol.fmt = lvColOld.fmt;
3342 }
3343
3344 lvCol.mask |= LVCF_FMT;
3345 }
3346
73bb5654 3347 lvCol.fmt |= LVCFMT_BITMAP_ON_RIGHT | LVCFMT_IMAGE;
e64658ed 3348 }
8b3a4016 3349
6f806543
VZ
3350 lvCol.iImage = item.m_image;
3351 }
3352 //else: it doesn't support item images anyhow
3353 }
5b59df83 3354#endif // _WIN32_IE >= 0x0300
6f806543
VZ
3355}
3356
1e6feb95 3357#endif // wxUSE_LISTCTRL