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