]> git.saurik.com Git - wxWidgets.git/blame - src/msw/listctrl.cpp
Fix best size computation for buttons without image and with empty label.
[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);
0b5efdc7
VZ
500 delete m_textCtrl;
501 m_textCtrl = NULL;
bbcdf8bc 502 }
5cd4cb75
VZ
503}
504
505wxListCtrl::~wxListCtrl()
506{
507 FreeAllInternalData();
508
509 DeleteEditControl();
33ac7e6f 510
07763c99
VZ
511 if (m_ownsImageListNormal)
512 delete m_imageListNormal;
513 if (m_ownsImageListSmall)
514 delete m_imageListSmall;
515 if (m_ownsImageListState)
516 delete m_imageListState;
2bda0e17
KB
517}
518
edccf428
VZ
519// ----------------------------------------------------------------------------
520// set/get/change style
521// ----------------------------------------------------------------------------
522
2bda0e17 523// Add or remove a single window style
debe6624 524void wxListCtrl::SetSingleStyle(long style, bool add)
2bda0e17 525{
0b5efdc7 526 long flag = GetWindowStyleFlag();
2bda0e17 527
0b5efdc7 528 // Get rid of conflicting styles
acb62b84
VZ
529 if ( add )
530 {
0b5efdc7 531 if ( style & wxLC_MASK_TYPE)
edccf428 532 flag = flag & ~wxLC_MASK_TYPE;
0b5efdc7 533 if ( style & wxLC_MASK_ALIGN )
edccf428 534 flag = flag & ~wxLC_MASK_ALIGN;
0b5efdc7 535 if ( style & wxLC_MASK_SORT )
edccf428 536 flag = flag & ~wxLC_MASK_SORT;
acb62b84 537 }
2bda0e17 538
6e2fef03
VZ
539 if ( add )
540 flag |= style;
0b5efdc7 541 else
6e2fef03 542 flag &= ~style;
2bda0e17 543
6e2fef03 544 SetWindowStyleFlag(flag);
2bda0e17
KB
545}
546
547// Set the whole window style
debe6624 548void wxListCtrl::SetWindowStyleFlag(long flag)
2bda0e17 549{
6e2fef03
VZ
550 if ( flag != m_windowStyle )
551 {
9a8d75f1 552 wxControl::SetWindowStyleFlag(flag);
6e2fef03
VZ
553
554 UpdateStyle();
2bda0e17 555
6e2fef03
VZ
556 Refresh();
557 }
2bda0e17
KB
558}
559
edccf428
VZ
560// ----------------------------------------------------------------------------
561// accessors
562// ----------------------------------------------------------------------------
563
39c7a53c
VZ
564/* static */ wxVisualAttributes
565wxListCtrl::GetClassDefaultAttributes(wxWindowVariant variant)
566{
567 wxVisualAttributes attrs = GetCompositeControlsDefaultAttributes(variant);
568
569 // common controls have their own default font
570 attrs.font = wxGetCCDefaultFont();
571
572 return attrs;
573}
574
91b4c08d
VZ
575// Sets the foreground, i.e. text, colour
576bool wxListCtrl::SetForegroundColour(const wxColour& col)
577{
578 if ( !wxWindow::SetForegroundColour(col) )
598ddd96 579 return false;
91b4c08d
VZ
580
581 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col));
582
598ddd96 583 return true;
91b4c08d
VZ
584}
585
586// Sets the background colour
cc2b7472 587bool wxListCtrl::SetBackgroundColour(const wxColour& col)
2bda0e17 588{
cc2b7472 589 if ( !wxWindow::SetBackgroundColour(col) )
598ddd96 590 return false;
2bda0e17 591
91b4c08d
VZ
592 // we set the same colour for both the "empty" background and the items
593 // background
594 COLORREF color = wxColourToRGB(col);
595 ListView_SetBkColor(GetHwnd(), color);
596 ListView_SetTextBkColor(GetHwnd(), color);
cc2b7472 597
598ddd96 598 return true;
2bda0e17
KB
599}
600
601// Gets information about this column
debe6624 602bool wxListCtrl::GetColumn(int col, wxListItem& item) const
2bda0e17 603{
0b5efdc7 604 LV_COLUMN lvCol;
6f806543 605 wxZeroMemory(lvCol);
0b5efdc7 606
37094564
RD
607 lvCol.mask = LVCF_WIDTH;
608
0b5efdc7
VZ
609 if ( item.m_mask & wxLIST_MASK_TEXT )
610 {
611 lvCol.mask |= LVCF_TEXT;
837e5743 612 lvCol.pszText = new wxChar[513];
0b5efdc7
VZ
613 lvCol.cchTextMax = 512;
614 }
615
37094564
RD
616 if ( item.m_mask & wxLIST_MASK_FORMAT )
617 {
618 lvCol.mask |= LVCF_FMT;
619 }
620
621 if ( item.m_mask & wxLIST_MASK_IMAGE )
622 {
623 lvCol.mask |= LVCF_IMAGE;
624 }
625
0b190ffc 626 bool success = ListView_GetColumn(GetHwnd(), col, &lvCol) != 0;
0b5efdc7
VZ
627
628 // item.m_subItem = lvCol.iSubItem;
629 item.m_width = lvCol.cx;
630
631 if ( (item.m_mask & wxLIST_MASK_TEXT) && lvCol.pszText )
632 {
633 item.m_text = lvCol.pszText;
634 delete[] lvCol.pszText;
635 }
636
637 if ( item.m_mask & wxLIST_MASK_FORMAT )
638 {
0b190ffc
RD
639 switch (lvCol.fmt & LVCFMT_JUSTIFYMASK) {
640 case LVCFMT_LEFT:
641 item.m_format = wxLIST_FORMAT_LEFT;
642 break;
643 case LVCFMT_RIGHT:
644 item.m_format = wxLIST_FORMAT_RIGHT;
645 break;
646 case LVCFMT_CENTER:
647 item.m_format = wxLIST_FORMAT_CENTRE;
648 break;
649 default:
650 item.m_format = -1; // Unknown?
651 break;
652 }
2bda0e17
KB
653 }
654
5b59df83
VZ
655 // the column images were not supported in older versions but how to check
656 // for this? we can't use _WIN32_IE because we always define it to a very
657 // high value, so see if another symbol which is only defined starting from
658 // comctl32.dll 4.70 is available
659#ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
37094564
RD
660 if ( item.m_mask & wxLIST_MASK_IMAGE )
661 {
662 item.m_image = lvCol.iImage;
663 }
5b59df83 664#endif // LVCOLUMN::iImage exists
37094564 665
0b5efdc7 666 return success;
2bda0e17
KB
667}
668
669// Sets information about this column
fbfb8bcc 670bool wxListCtrl::SetColumn(int col, const wxListItem& item)
2bda0e17 671{
0b5efdc7 672 LV_COLUMN lvCol;
e64658ed 673 wxConvertToMSWListCol(GetHwnd(), col, item, lvCol);
0b5efdc7 674
6f806543 675 return ListView_SetColumn(GetHwnd(), col, &lvCol) != 0;
2bda0e17
KB
676}
677
678// Gets the column width
debe6624 679int wxListCtrl::GetColumnWidth(int col) const
2bda0e17 680{
edccf428 681 return ListView_GetColumnWidth(GetHwnd(), col);
2bda0e17
KB
682}
683
684// Sets the column width
debe6624 685bool wxListCtrl::SetColumnWidth(int col, int width)
2bda0e17 686{
0b5efdc7 687 if ( m_windowStyle & wxLC_LIST )
514ee250 688 col = 0;
2bda0e17 689
514ee250
VZ
690 if ( width == wxLIST_AUTOSIZE)
691 width = LVSCW_AUTOSIZE;
692 else if ( width == wxLIST_AUTOSIZE_USEHEADER)
693 width = LVSCW_AUTOSIZE_USEHEADER;
2bda0e17 694
514ee250 695 return ListView_SetColumnWidth(GetHwnd(), col, width) != 0;
2bda0e17
KB
696}
697
67d3fc49
VZ
698// ----------------------------------------------------------------------------
699// columns order
700// ----------------------------------------------------------------------------
701
80cc5fc7 702int wxListCtrl::GetColumnIndexFromOrder(int order) const
67d3fc49
VZ
703{
704 const int numCols = GetColumnCount();
80cc5fc7 705 wxCHECK_MSG( order >= 0 && order < numCols, -1,
9a83f860 706 wxT("Column position out of bounds") );
67d3fc49
VZ
707
708 wxArrayInt indexArray(numCols);
67d3fc49
VZ
709 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols, &indexArray[0]) )
710 return -1;
711
80cc5fc7 712 return indexArray[order];
67d3fc49
VZ
713}
714
80cc5fc7 715int wxListCtrl::GetColumnOrder(int col) const
67d3fc49
VZ
716{
717 const int numCols = GetColumnCount();
9a83f860 718 wxASSERT_MSG( col >= 0 && col < numCols, wxT("Column index out of bounds") );
67d3fc49
VZ
719
720 wxArrayInt indexArray(numCols);
67d3fc49
VZ
721 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols, &indexArray[0]) )
722 return -1;
723
80cc5fc7 724 for ( int pos = 0; pos < numCols; pos++ )
67d3fc49 725 {
80cc5fc7
VZ
726 if ( indexArray[pos] == col )
727 return pos;
67d3fc49
VZ
728 }
729
9a83f860 730 wxFAIL_MSG( wxT("no column with with given order?") );
67d3fc49
VZ
731
732 return -1;
733}
734
735// Gets the column order for all columns
736wxArrayInt wxListCtrl::GetColumnsOrder() const
737{
738 const int numCols = GetColumnCount();
739
740 wxArrayInt orders(numCols);
741 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols, &orders[0]) )
742 orders.clear();
743
744 return orders;
745}
746
747// Sets the column order for all columns
748bool wxListCtrl::SetColumnsOrder(const wxArrayInt& orders)
749{
750 const int numCols = GetColumnCount();
751
752 wxCHECK_MSG( orders.size() == (size_t)numCols, false,
9a83f860 753 wxT("wrong number of elements in column orders array") );
67d3fc49
VZ
754
755 return ListView_SetColumnOrderArray(GetHwnd(), numCols, &orders[0]) != 0;
756}
757
758
2bda0e17
KB
759// Gets the number of items that can fit vertically in the
760// visible area of the list control (list or report view)
761// or the total number of items in the list control (icon
762// or small icon view)
c42404a5 763int wxListCtrl::GetCountPerPage() const
2bda0e17 764{
edccf428 765 return ListView_GetCountPerPage(GetHwnd());
2bda0e17
KB
766}
767
768// Gets the edit control for editing labels.
c42404a5 769wxTextCtrl* wxListCtrl::GetEditControl() const
2bda0e17 770{
508b6523
VZ
771 // first check corresponds to the case when the label editing was started
772 // by user and hence m_textCtrl wasn't created by EditLabel() at all, while
773 // the second case corresponds to us being called from inside EditLabel()
774 // (e.g. from a user wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT handler): in this
775 // case EditLabel() did create the control but it didn't have an HWND to
776 // initialize it with yet
777 if ( !m_textCtrl || !m_textCtrl->GetHWND() )
778 {
779 HWND hwndEdit = ListView_GetEditControl(GetHwnd());
780 if ( hwndEdit )
781 {
5c33522f 782 wxListCtrl * const self = const_cast<wxListCtrl *>(this);
508b6523
VZ
783
784 if ( !m_textCtrl )
785 self->m_textCtrl = new wxTextCtrl;
786 self->InitEditControl((WXHWND)hwndEdit);
787 }
788 }
789
bbcdf8bc 790 return m_textCtrl;
2bda0e17
KB
791}
792
793// Gets information about the item
794bool wxListCtrl::GetItem(wxListItem& info) const
795{
0b5efdc7 796 LV_ITEM lvItem;
11c7d5b6 797 wxZeroMemory(lvItem);
2bda0e17 798
0b5efdc7 799 lvItem.iItem = info.m_itemId;
fc5a93cd 800 lvItem.iSubItem = info.m_col;
0b5efdc7
VZ
801
802 if ( info.m_mask & wxLIST_MASK_TEXT )
803 {
804 lvItem.mask |= LVIF_TEXT;
837e5743 805 lvItem.pszText = new wxChar[513];
0b5efdc7
VZ
806 lvItem.cchTextMax = 512;
807 }
808 else
809 {
810 lvItem.pszText = NULL;
811 }
812
813 if (info.m_mask & wxLIST_MASK_DATA)
edccf428 814 lvItem.mask |= LVIF_PARAM;
0b5efdc7 815
2189c644
JS
816 if (info.m_mask & wxLIST_MASK_IMAGE)
817 lvItem.mask |= LVIF_IMAGE;
818
0b5efdc7
VZ
819 if ( info.m_mask & wxLIST_MASK_STATE )
820 {
821 lvItem.mask |= LVIF_STATE;
7c392815 822 wxConvertToMSWFlags(0, info.m_stateMask, lvItem);
0b5efdc7
VZ
823 }
824
825 bool success = ListView_GetItem((HWND)GetHWND(), &lvItem) != 0;
826 if ( !success )
827 {
828 wxLogError(_("Couldn't retrieve information about list control item %d."),
829 lvItem.iItem);
830 }
831 else
832 {
dccde0c0
VZ
833 // give NULL as hwnd as we already have everything we need
834 wxConvertFromMSWListItem(NULL, info, lvItem);
0b5efdc7
VZ
835 }
836
837 if (lvItem.pszText)
838 delete[] lvItem.pszText;
839
840 return success;
2bda0e17
KB
841}
842
843// Sets information about the item
844bool wxListCtrl::SetItem(wxListItem& info)
845{
4ce04fd8
VZ
846 const long id = info.GetId();
847 wxCHECK_MSG( id >= 0 && id < GetItemCount(), false,
9a83f860 848 wxT("invalid item index in SetItem") );
4ce04fd8 849
0b5efdc7 850 LV_ITEM item;
2bda0e17 851 wxConvertToMSWListItem(this, info, item);
bdc72a22 852
7cf46fdb 853 // we never update the lParam if it contains our pointer
c767a5bb 854 // to the wxMSWListItemData structure
7cf46fdb
VZ
855 item.mask &= ~LVIF_PARAM;
856
857 // check if setting attributes or lParam
c767a5bb 858 if ( info.HasAttributes() || (info.m_mask & wxLIST_MASK_DATA) )
7cf46fdb
VZ
859 {
860 // get internal item data
c767a5bb 861 wxMSWListItemData *data = MSWGetItemData(id);
73d8c5fd 862
c767a5bb 863 if ( !data )
7cf46fdb 864 {
c767a5bb
VZ
865 // need to allocate the internal data object
866 data = new wxMSWListItemData;
867 m_internalData.push_back(data);
7cf46fdb
VZ
868 item.lParam = (LPARAM) data;
869 item.mask |= LVIF_PARAM;
dcc3f1a5 870 }
7cf46fdb
VZ
871
872
873 // user data
c767a5bb 874 if ( info.m_mask & wxLIST_MASK_DATA )
7cf46fdb
VZ
875 data->lParam = info.m_data;
876
877 // attributes
0f3888a5 878 if ( info.HasAttributes() )
7cf46fdb 879 {
0f3888a5
VZ
880 const wxListItemAttr& attrNew = *info.GetAttributes();
881
882 // don't overwrite the already set attributes if we have them
883 if ( data->attr )
884 data->attr->AssignFrom(attrNew);
7cf46fdb 885 else
0f3888a5 886 data->attr = new wxListItemAttr(attrNew);
dcc3f1a5
VZ
887 }
888 }
7cf46fdb
VZ
889
890
2d33aec9
VZ
891 // we could be changing only the attribute in which case we don't need to
892 // call ListView_SetItem() at all
893 if ( item.mask )
bdc72a22 894 {
2d33aec9
VZ
895 if ( !ListView_SetItem(GetHwnd(), &item) )
896 {
9a83f860 897 wxLogDebug(wxT("ListView_SetItem() failed"));
2702ed5a 898
598ddd96 899 return false;
2d33aec9 900 }
233d0295 901 }
2702ed5a 902
233d0295
VZ
903 // we need to update the item immediately to show the new image
904 bool updateNow = (info.m_mask & wxLIST_MASK_IMAGE) != 0;
2702ed5a 905
233d0295
VZ
906 // check whether it has any custom attributes
907 if ( info.HasAttributes() )
908 {
598ddd96 909 m_hasAnyAttr = true;
233d0295
VZ
910
911 // if the colour has changed, we must redraw the item
598ddd96 912 updateNow = true;
bdc72a22 913 }
bdc72a22 914
233d0295 915 if ( updateNow )
7cc98b3e 916 {
233d0295 917 // we need this to make the change visible right now
2d33aec9 918 RefreshItem(item.iItem);
7cc98b3e
VZ
919 }
920
598ddd96 921 return true;
2bda0e17
KB
922}
923
debe6624 924long wxListCtrl::SetItem(long index, int col, const wxString& label, int imageId)
2bda0e17 925{
0b5efdc7
VZ
926 wxListItem info;
927 info.m_text = label;
928 info.m_mask = wxLIST_MASK_TEXT;
929 info.m_itemId = index;
930 info.m_col = col;
931 if ( imageId > -1 )
932 {
933 info.m_image = imageId;
934 info.m_mask |= wxLIST_MASK_IMAGE;
935 }
936 return SetItem(info);
2bda0e17
KB
937}
938
939
940// Gets the item state
debe6624 941int wxListCtrl::GetItemState(long item, long stateMask) const
2bda0e17 942{
0b5efdc7 943 wxListItem info;
2bda0e17 944
edccf428 945 info.m_mask = wxLIST_MASK_STATE;
0b5efdc7
VZ
946 info.m_stateMask = stateMask;
947 info.m_itemId = item;
2bda0e17 948
0b5efdc7
VZ
949 if (!GetItem(info))
950 return 0;
2bda0e17 951
0b5efdc7 952 return info.m_state;
2bda0e17
KB
953}
954
955// Sets the item state
debe6624 956bool wxListCtrl::SetItemState(long item, long state, long stateMask)
2bda0e17 957{
8dff2b5c
VZ
958 // NB: don't use SetItem() here as it doesn't work with the virtual list
959 // controls
960 LV_ITEM lvItem;
961 wxZeroMemory(lvItem);
2bda0e17 962
8dff2b5c 963 wxConvertToMSWFlags(state, stateMask, lvItem);
2bda0e17 964
b720b86b
VZ
965 const bool changingFocus = (stateMask & wxLIST_STATE_FOCUSED) &&
966 (state & wxLIST_STATE_FOCUSED);
967
2d33aec9 968 // for the virtual list controls we need to refresh the previously focused
ad9f477d
VZ
969 // item manually when changing focus without changing selection
970 // programmatically because otherwise it keeps its focus rectangle until
971 // next repaint (yet another comctl32 bug)
2d33aec9 972 long focusOld;
b720b86b 973 if ( IsVirtual() && changingFocus )
2d33aec9
VZ
974 {
975 focusOld = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED);
976 }
977 else
978 {
979 focusOld = -1;
980 }
981
8dff2b5c
VZ
982 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE,
983 (WPARAM)item, (LPARAM)&lvItem) )
984 {
9a83f860 985 wxLogLastError(wxT("ListView_SetItemState"));
8dff2b5c 986
598ddd96 987 return false;
8dff2b5c
VZ
988 }
989
2d33aec9
VZ
990 if ( focusOld != -1 )
991 {
ad9f477d
VZ
992 // no need to refresh the item if it was previously selected, it would
993 // only result in annoying flicker
994 if ( !(GetItemState(focusOld,
995 wxLIST_STATE_SELECTED) & wxLIST_STATE_SELECTED) )
996 {
997 RefreshItem(focusOld);
998 }
2d33aec9
VZ
999 }
1000
b720b86b
VZ
1001 // we expect the selection anchor, i.e. the item from which multiple
1002 // selection (such as performed with e.g. Shift-arrows) starts, to be the
1003 // same as the currently focused item but the native control doesn't update
1004 // it when we change focus and leaves at the last item it set itself focus
1005 // to, so do it explicitly
1006 if ( changingFocus && !HasFlag(wxLC_SINGLE_SEL) )
1007 {
1008 ListView_SetSelectionMark(GetHwnd(), item);
1009 }
1010
598ddd96 1011 return true;
2bda0e17
KB
1012}
1013
1014// Sets the item image
33ac7e6f 1015bool wxListCtrl::SetItemImage(long item, int image, int WXUNUSED(selImage))
06db67bc
RD
1016{
1017 return SetItemColumnImage(item, 0, image);
1018}
1019
1020// Sets the item image
1021bool wxListCtrl::SetItemColumnImage(long item, long column, int image)
2bda0e17 1022{
0b5efdc7 1023 wxListItem info;
2bda0e17 1024
edccf428 1025 info.m_mask = wxLIST_MASK_IMAGE;
0b5efdc7
VZ
1026 info.m_image = image;
1027 info.m_itemId = item;
06db67bc 1028 info.m_col = column;
2bda0e17 1029
0b5efdc7 1030 return SetItem(info);
2bda0e17
KB
1031}
1032
1033// Gets the item text
debe6624 1034wxString wxListCtrl::GetItemText(long item) const
2bda0e17 1035{
0b5efdc7 1036 wxListItem info;
2bda0e17 1037
edccf428 1038 info.m_mask = wxLIST_MASK_TEXT;
0b5efdc7 1039 info.m_itemId = item;
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
508b6523
VZ
1541 delete m_textCtrl;
1542 m_textCtrl = NULL;
1543
2b5f62a0
VZ
1544 return NULL;
1545 }
bbcdf8bc 1546
508b6523
VZ
1547 // if GetEditControl() hasn't been called, we need to initialize the edit
1548 // control ourselves
1549 if ( !m_textCtrl->GetHWND() )
1550 InitEditControl(hWnd);
2b5f62a0 1551
bbcdf8bc
JS
1552 return m_textCtrl;
1553}
1554
1555// End label editing, optionally cancelling the edit
4496eadc 1556bool wxListCtrl::EndEditLabel(bool cancel)
2bda0e17 1557{
4496eadc
JS
1558 // m_textCtrl is not always ready, ie. in EVT_LIST_BEGIN_LABEL_EDIT
1559 HWND hwnd = ListView_GetEditControl(GetHwnd());
55f42db2
VZ
1560 if ( !hwnd )
1561 return false;
1562
1563 if ( cancel )
1564 ::SetWindowText(hwnd, wxEmptyString); // dubious but better than nothing
1565
1566 // we shouldn't destroy the control ourselves according to MSDN, which
1567 // proposes WM_CANCELMODE to do this, but it doesn't seem to work
1568 //
1569 // posting WM_CLOSE to it does seem to work without any side effects
1570 ::PostMessage(hwnd, WM_CLOSE, 0, 0);
1571
1572 return true;
2bda0e17
KB
1573}
1574
1575// Ensures this item is visible
debe6624 1576bool wxListCtrl::EnsureVisible(long item)
2bda0e17 1577{
598ddd96 1578 return ListView_EnsureVisible(GetHwnd(), (int) item, FALSE) != FALSE;
2bda0e17
KB
1579}
1580
1581// Find an item whose label matches this string, starting from the item after 'start'
1582// or the beginning if 'start' is -1.
debe6624 1583long wxListCtrl::FindItem(long start, const wxString& str, bool partial)
2bda0e17 1584{
0b5efdc7 1585 LV_FINDINFO findInfo;
2bda0e17 1586
0b5efdc7
VZ
1587 findInfo.flags = LVFI_STRING;
1588 if ( partial )
7edc258e 1589 findInfo.flags |= LVFI_PARTIAL;
e0a050e3 1590 findInfo.psz = str.wx_str();
2bda0e17 1591
3ca6a5f0
BP
1592 // ListView_FindItem() excludes the first item from search and to look
1593 // through all the items you need to start from -1 which is unnatural and
8036af01
JS
1594 // inconsistent with the generic version - so we adjust the index
1595 if (start != -1)
1596 start --;
c767a5bb 1597 return ListView_FindItem(GetHwnd(), start, &findInfo);
2bda0e17
KB
1598}
1599
c767a5bb
VZ
1600// Find an item whose data matches this data, starting from the item after
1601// 'start' or the beginning if 'start' is -1.
81ce36aa 1602long wxListCtrl::FindItem(long start, wxUIntPtr data)
2bda0e17 1603{
c767a5bb
VZ
1604 // we can't use ListView_FindItem() directly as we don't store the data
1605 // pointer itself in the control but rather our own internal data, so first
1606 // we need to find the right value to search for (and there can be several
1607 // of them)
1608 int idx = wxNOT_FOUND;
1609 const unsigned count = m_internalData.size();
1610 for ( unsigned n = 0; n < count; n++ )
72db8894 1611 {
c767a5bb
VZ
1612 if ( m_internalData[n]->lParam == (LPARAM)data )
1613 {
1614 LV_FINDINFO findInfo;
1615 findInfo.flags = LVFI_PARAM;
1616 findInfo.lParam = (LPARAM)wxPtrToUInt(m_internalData[n]);
1617
1618 int rc = ListView_FindItem(GetHwnd(), start, &findInfo);
1619 if ( rc != -1 )
1620 {
1621 if ( idx == wxNOT_FOUND || rc < idx )
1622 {
1623 idx = rc;
1624 if ( idx == start + 1 )
1625 {
1626 // we can stop here, we don't risk finding a closer
1627 // match
1628 break;
1629 }
1630 }
1631 //else: this item is after the previously found one
1632 }
1633 }
dcc3f1a5 1634 }
2bda0e17 1635
c767a5bb 1636 return idx;
2bda0e17
KB
1637}
1638
1639// Find an item nearest this position in the specified direction, starting from
1640// the item after 'start' or the beginning if 'start' is -1.
debe6624 1641long wxListCtrl::FindItem(long start, const wxPoint& pt, int direction)
2bda0e17 1642{
0b5efdc7 1643 LV_FINDINFO findInfo;
2bda0e17 1644
0b5efdc7
VZ
1645 findInfo.flags = LVFI_NEARESTXY;
1646 findInfo.pt.x = pt.x;
1647 findInfo.pt.y = pt.y;
acb62b84 1648 findInfo.vkDirection = VK_RIGHT;
2bda0e17 1649
0b5efdc7
VZ
1650 if ( direction == wxLIST_FIND_UP )
1651 findInfo.vkDirection = VK_UP;
1652 else if ( direction == wxLIST_FIND_DOWN )
1653 findInfo.vkDirection = VK_DOWN;
1654 else if ( direction == wxLIST_FIND_LEFT )
1655 findInfo.vkDirection = VK_LEFT;
1656 else if ( direction == wxLIST_FIND_RIGHT )
1657 findInfo.vkDirection = VK_RIGHT;
1658
c767a5bb 1659 return ListView_FindItem(GetHwnd(), start, &findInfo);
2bda0e17
KB
1660}
1661
1662// Determines which item (if any) is at the specified point,
1663// giving details in 'flags' (see wxLIST_HITTEST_... flags above)
be0e5d69
VZ
1664long
1665wxListCtrl::HitTest(const wxPoint& point, int& flags, long *ptrSubItem) const
2bda0e17
KB
1666{
1667 LV_HITTESTINFO hitTestInfo;
0b5efdc7
VZ
1668 hitTestInfo.pt.x = (int) point.x;
1669 hitTestInfo.pt.y = (int) point.y;
2bda0e17 1670
164a7972
VZ
1671 long item;
1672#ifdef LVM_SUBITEMHITTEST
1673 if ( ptrSubItem && wxApp::GetComCtl32Version() >= 470 )
1674 {
1675 item = ListView_SubItemHitTest(GetHwnd(), &hitTestInfo);
1676 *ptrSubItem = hitTestInfo.iSubItem;
1677 }
1678 else
1679#endif // LVM_SUBITEMHITTEST
1680 {
1681 item = ListView_HitTest(GetHwnd(), &hitTestInfo);
1682 }
2bda0e17 1683
0b5efdc7 1684 flags = 0;
698b34fa 1685
0b5efdc7
VZ
1686 if ( hitTestInfo.flags & LVHT_ABOVE )
1687 flags |= wxLIST_HITTEST_ABOVE;
1688 if ( hitTestInfo.flags & LVHT_BELOW )
1689 flags |= wxLIST_HITTEST_BELOW;
0b5efdc7
VZ
1690 if ( hitTestInfo.flags & LVHT_TOLEFT )
1691 flags |= wxLIST_HITTEST_TOLEFT;
1692 if ( hitTestInfo.flags & LVHT_TORIGHT )
1693 flags |= wxLIST_HITTEST_TORIGHT;
1694
698b34fa
VZ
1695 if ( hitTestInfo.flags & LVHT_NOWHERE )
1696 flags |= wxLIST_HITTEST_NOWHERE;
1697
1698 // note a bug or at least a very strange feature of comtl32.dll (tested
1699 // with version 4.0 under Win95 and 6.0 under Win 2003): if you click to
1700 // the right of the item label, ListView_HitTest() returns a combination of
1701 // LVHT_ONITEMICON, LVHT_ONITEMLABEL and LVHT_ONITEMSTATEICON -- filter out
1702 // the bits which don't make sense
1703 if ( hitTestInfo.flags & LVHT_ONITEMLABEL )
1704 {
1705 flags |= wxLIST_HITTEST_ONITEMLABEL;
1706
1707 // do not translate LVHT_ONITEMICON here, as per above
1708 }
1709 else
1710 {
1711 if ( hitTestInfo.flags & LVHT_ONITEMICON )
1712 flags |= wxLIST_HITTEST_ONITEMICON;
1713 if ( hitTestInfo.flags & LVHT_ONITEMSTATEICON )
1714 flags |= wxLIST_HITTEST_ONITEMSTATEICON;
1715 }
1716
164a7972 1717 return item;
2bda0e17
KB
1718}
1719
164a7972 1720
2bda0e17
KB
1721// Inserts an item, returning the index of the new item if successful,
1722// -1 otherwise.
fbfb8bcc 1723long wxListCtrl::InsertItem(const wxListItem& info)
2bda0e17 1724{
9a83f860 1725 wxASSERT_MSG( !IsVirtual(), wxT("can't be used with virtual controls") );
98ec9dbe 1726
0b5efdc7
VZ
1727 LV_ITEM item;
1728 wxConvertToMSWListItem(this, info, item);
7cf46fdb 1729 item.mask &= ~LVIF_PARAM;
2bda0e17 1730
c767a5bb
VZ
1731 // check whether we need to allocate our internal data
1732 bool needInternalData = (info.m_mask & wxLIST_MASK_DATA) ||
1733 info.HasAttributes();
1734 if ( needInternalData )
bdc72a22 1735 {
7cf46fdb 1736 item.mask |= LVIF_PARAM;
2702ed5a 1737
c767a5bb
VZ
1738 wxMSWListItemData * const data = new wxMSWListItemData;
1739 m_internalData.push_back(data);
1740 item.lParam = (LPARAM)data;
2702ed5a 1741
c767a5bb 1742 if ( info.m_mask & wxLIST_MASK_DATA )
7cf46fdb 1743 data->lParam = info.m_data;
2702ed5a 1744
b653e655
VZ
1745 // check whether it has any custom attributes
1746 if ( info.HasAttributes() )
1747 {
7cf46fdb
VZ
1748 // take copy of attributes
1749 data->attr = new wxListItemAttr(*info.GetAttributes());
5205e26b
VZ
1750
1751 // and remember that we have some now...
598ddd96 1752 m_hasAnyAttr = true;
b653e655 1753 }
dcc3f1a5 1754 }
7cf46fdb 1755
2d5e5799
VZ
1756 const long rv = ListView_InsertItem(GetHwnd(), & item);
1757
1758 // failing to insert the item is really unexpected
1759 wxCHECK_MSG( rv != -1, rv, "failed to insert an item in wxListCtrl" );
b653e655
VZ
1760
1761 m_count++;
68c124a1
RD
1762 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
1763 wxT("m_count should match ListView_GetItemCount"));
bdc72a22 1764
68c124a1 1765 return rv;
2bda0e17
KB
1766}
1767
debe6624 1768long wxListCtrl::InsertItem(long index, const wxString& label)
2bda0e17 1769{
0b5efdc7
VZ
1770 wxListItem info;
1771 info.m_text = label;
1772 info.m_mask = wxLIST_MASK_TEXT;
1773 info.m_itemId = index;
1774 return InsertItem(info);
2bda0e17
KB
1775}
1776
1777// Inserts an image item
debe6624 1778long wxListCtrl::InsertItem(long index, int imageIndex)
2bda0e17 1779{
0b5efdc7
VZ
1780 wxListItem info;
1781 info.m_image = imageIndex;
1782 info.m_mask = wxLIST_MASK_IMAGE;
1783 info.m_itemId = index;
1784 return InsertItem(info);
2bda0e17
KB
1785}
1786
1787// Inserts an image/string item
debe6624 1788long wxListCtrl::InsertItem(long index, const wxString& label, int imageIndex)
2bda0e17 1789{
0b5efdc7
VZ
1790 wxListItem info;
1791 info.m_image = imageIndex;
1792 info.m_text = label;
1793 info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT;
1794 info.m_itemId = index;
1795 return InsertItem(info);
2bda0e17
KB
1796}
1797
1798// For list view mode (only), inserts a column.
fbfb8bcc 1799long wxListCtrl::InsertColumn(long col, const wxListItem& item)
2bda0e17 1800{
0b5efdc7 1801 LV_COLUMN lvCol;
e64658ed 1802 wxConvertToMSWListCol(GetHwnd(), col, item, lvCol);
0b5efdc7 1803
6f806543 1804 if ( !(lvCol.mask & LVCF_WIDTH) )
e373f51b
VZ
1805 {
1806 // always give some width to the new column: this one is compatible
6f806543
VZ
1807 // with the generic version
1808 lvCol.mask |= LVCF_WIDTH;
e373f51b 1809 lvCol.cx = 80;
0b5efdc7 1810 }
e373f51b 1811
8b3a4016
VZ
1812 long n = ListView_InsertColumn(GetHwnd(), col, &lvCol);
1813 if ( n != -1 )
e373f51b
VZ
1814 {
1815 m_colCount++;
1816 }
8b3a4016 1817 else // failed to insert?
e373f51b 1818 {
223d09f6 1819 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
e373f51b
VZ
1820 lvCol.pszText);
1821 }
1822
8b3a4016 1823 return n;
2bda0e17
KB
1824}
1825
bdc72a22
VZ
1826long wxListCtrl::InsertColumn(long col,
1827 const wxString& heading,
1828 int format,
1829 int width)
2bda0e17 1830{
0b5efdc7
VZ
1831 wxListItem item;
1832 item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT;
1833 item.m_text = heading;
1834 if ( width > -1 )
1835 {
1836 item.m_mask |= wxLIST_MASK_WIDTH;
1837 item.m_width = width;
1838 }
1839 item.m_format = format;
2bda0e17 1840
0b5efdc7 1841 return InsertColumn(col, item);
2bda0e17
KB
1842}
1843
2b5f62a0
VZ
1844// scroll the control by the given number of pixels (exception: in list view,
1845// dx is interpreted as number of columns)
debe6624 1846bool wxListCtrl::ScrollList(int dx, int dy)
2bda0e17 1847{
2b5f62a0
VZ
1848 if ( !ListView_Scroll(GetHwnd(), dx, dy) )
1849 {
9a83f860 1850 wxLogDebug(wxT("ListView_Scroll(%d, %d) failed"), dx, dy);
2b5f62a0 1851
598ddd96 1852 return false;
2b5f62a0
VZ
1853 }
1854
598ddd96 1855 return true;
2bda0e17
KB
1856}
1857
1858// Sort items.
1859
1860// fn is a function which takes 3 long arguments: item1, item2, data.
1861// item1 is the long data associated with a first item (NOT the index).
1862// item2 is the long data associated with a second item (NOT the index).
1863// data is the same value as passed to SortItems.
1864// The return value is a negative number if the first item should precede the second
1865// item, a positive number of the second item should precede the first,
1866// or zero if the two items are equivalent.
1867
1868// data is arbitrary data to be passed to the sort function.
19230604 1869
7cf46fdb
VZ
1870// Internal structures for proxying the user compare function
1871// so that we can pass it the *real* user data
19230604 1872
7cf46fdb
VZ
1873// translate lParam data and call user func
1874struct wxInternalDataSort
19230604 1875{
7cf46fdb 1876 wxListCtrlCompare user_fn;
b18e2046 1877 wxIntPtr data;
7cf46fdb 1878};
19230604 1879
7cf46fdb 1880int CALLBACK wxInternalDataCompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
2bda0e17 1881{
6e2f3084 1882 wxInternalDataSort * const internalData = (wxInternalDataSort *) lParamSort;
19230604 1883
c767a5bb
VZ
1884 wxMSWListItemData *data1 = (wxMSWListItemData *) lParam1;
1885 wxMSWListItemData *data2 = (wxMSWListItemData *) lParam2;
19230604 1886
7cf46fdb
VZ
1887 long d1 = (data1 == NULL ? 0 : data1->lParam);
1888 long d2 = (data2 == NULL ? 0 : data2->lParam);
19230604 1889
7cf46fdb 1890 return internalData->user_fn(d1, d2, internalData->data);
19230604 1891
259c43f6 1892}
19230604 1893
b18e2046 1894bool wxListCtrl::SortItems(wxListCtrlCompare fn, wxIntPtr data)
7cf46fdb 1895{
6e2f3084 1896 wxInternalDataSort internalData;
7cf46fdb
VZ
1897 internalData.user_fn = fn;
1898 internalData.data = data;
19230604 1899
14090241
VZ
1900 // WPARAM cast is needed for mingw/cygwin
1901 if ( !ListView_SortItems(GetHwnd(),
1902 wxInternalDataCompareFunc,
1903 (WPARAM) &internalData) )
19230604 1904 {
9a83f860 1905 wxLogDebug(wxT("ListView_SortItems() failed"));
19230604 1906
598ddd96 1907 return false;
19230604
RD
1908 }
1909
598ddd96 1910 return true;
2bda0e17
KB
1911}
1912
19230604
RD
1913
1914
edccf428
VZ
1915// ----------------------------------------------------------------------------
1916// message processing
1917// ----------------------------------------------------------------------------
1918
90c6edd7
VZ
1919bool wxListCtrl::MSWShouldPreProcessMessage(WXMSG* msg)
1920{
1921 if ( msg->message == WM_KEYDOWN )
1922 {
6719c06a
VZ
1923 // Only eat VK_RETURN if not being used by the application in
1924 // conjunction with modifiers
1925 if ( msg->wParam == VK_RETURN && !wxIsAnyModifierDown() )
90c6edd7 1926 {
6719c06a 1927 // we need VK_RETURN to generate wxEVT_COMMAND_LIST_ITEM_ACTIVATED
90c6edd7
VZ
1928 return false;
1929 }
1930 }
90c6edd7
VZ
1931 return wxControl::MSWShouldPreProcessMessage(msg);
1932}
1933
0edeeb6d 1934bool wxListCtrl::MSWCommand(WXUINT cmd, WXWORD id_)
2bda0e17 1935{
0edeeb6d 1936 const int id = (signed short)id_;
0b5efdc7 1937 if (cmd == EN_UPDATE)
acb62b84 1938 {
0b5efdc7
VZ
1939 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
1940 event.SetEventObject( this );
1941 ProcessCommand(event);
598ddd96 1942 return true;
acb62b84 1943 }
0b5efdc7 1944 else if (cmd == EN_KILLFOCUS)
acb62b84 1945 {
0b5efdc7
VZ
1946 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
1947 event.SetEventObject( this );
1948 ProcessCommand(event);
598ddd96 1949 return true;
acb62b84 1950 }
edccf428 1951 else
598ddd96 1952 return false;
0b5efdc7
VZ
1953}
1954
a9fdf824 1955// utility used by wxListCtrl::MSWOnNotify and by wxDataViewHeaderWindowMSW::MSWOnNotify
a68962fc 1956int WXDLLIMPEXP_CORE wxMSWGetColumnClicked(NMHDR *nmhdr, POINT *ptClick)
a9fdf824 1957{
674c2750
VZ
1958 // find the column clicked: we have to search for it ourselves as the
1959 // notification message doesn't provide this info
a9fdf824
RR
1960
1961 // where did the click occur?
1962#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
674c2750 1963 if ( nmhdr->code == GN_CONTEXTMENU )
a9fdf824
RR
1964 {
1965 *ptClick = ((NMRGINFO*)nmhdr)->ptAction;
f4322df6 1966 }
a9fdf824
RR
1967 else
1968#endif //__WXWINCE__
1969 if ( !::GetCursorPos(ptClick) )
1970 {
9a83f860 1971 wxLogLastError(wxT("GetCursorPos"));
a9fdf824
RR
1972 }
1973
674c2750
VZ
1974 // we need to use listctrl coordinates for the event point so this is what
1975 // we return in ptClick, but for comparison with Header_GetItemRect()
1976 // result below we need to use header window coordinates
1977 POINT ptClickHeader = *ptClick;
1978 if ( !::ScreenToClient(nmhdr->hwndFrom, &ptClickHeader) )
a9fdf824 1979 {
9a83f860 1980 wxLogLastError(wxT("ScreenToClient(listctrl header)"));
a9fdf824
RR
1981 }
1982
674c2750
VZ
1983 if ( !::ScreenToClient(::GetParent(nmhdr->hwndFrom), ptClick) )
1984 {
9a83f860 1985 wxLogLastError(wxT("ScreenToClient(listctrl)"));
674c2750 1986 }
a9fdf824 1987
674c2750 1988 const int colCount = Header_GetItemCount(nmhdr->hwndFrom);
a9fdf824
RR
1989 for ( int col = 0; col < colCount; col++ )
1990 {
674c2750 1991 RECT rect;
a9fdf824
RR
1992 if ( Header_GetItemRect(nmhdr->hwndFrom, col, &rect) )
1993 {
674c2750 1994 if ( ::PtInRect(&rect, ptClickHeader) )
a9fdf824
RR
1995 {
1996 return col;
1997 }
1998 }
1999 }
2000
2001 return wxNOT_FOUND;
2002}
2003
a23fd0e1 2004bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
0b5efdc7 2005{
68c124a1 2006
bdc72a22
VZ
2007 // prepare the event
2008 // -----------------
2009
0b5efdc7 2010 wxListEvent event(wxEVT_NULL, m_windowId);
648bec3e
VZ
2011 event.SetEventObject(this);
2012
0b5efdc7 2013 wxEventType eventType = wxEVT_NULL;
225fe9d6 2014
bdc72a22 2015 NMHDR *nmhdr = (NMHDR *)lParam;
225fe9d6 2016
d1f2eb1d
VZ
2017 // if your compiler is as broken as this, you should really change it: this
2018 // code is needed for normal operation! #ifdef below is only useful for
2019 // automatic rebuilds which are done with a very old compiler version
0cf5b099 2020#ifdef HDN_BEGINTRACKA
d1f2eb1d 2021
11358d39
VZ
2022 // check for messages from the header (in report view)
2023 HWND hwndHdr = ListView_GetHeader(GetHwnd());
225fe9d6 2024
11358d39
VZ
2025 // is it a message from the header?
2026 if ( nmhdr->hwndFrom == hwndHdr )
acb62b84 2027 {
00811ff9 2028 HD_NOTIFY *nmHDR = (HD_NOTIFY *)nmhdr;
0cf5b099 2029
11358d39 2030 event.m_itemIndex = -1;
cb0f56f9 2031
11358d39
VZ
2032 switch ( nmhdr->code )
2033 {
2034 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
2035 // TRACK messages even to ANSI programs: on my system I get
2036 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
2037 //
2038 // work around is to simply catch both versions and hope that it
2039 // works (why should this message exist in ANSI and Unicode is
2040 // beyond me as it doesn't deal with strings at all...)
2b5f62a0
VZ
2041 //
2042 // note that fr HDN_TRACK another possibility could be to use
2043 // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when
2044 // something other than the item width changes so we'd have to
2045 // filter out the unwanted events then
11358d39
VZ
2046 case HDN_BEGINTRACKA:
2047 case HDN_BEGINTRACKW:
2048 eventType = wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
2049 // fall through
2050
2051 case HDN_TRACKA:
2052 case HDN_TRACKW:
2053 if ( eventType == wxEVT_NULL )
2054 eventType = wxEVT_COMMAND_LIST_COL_DRAGGING;
2055 // fall through
2056
2057 case HDN_ENDTRACKA:
2058 case HDN_ENDTRACKW:
2059 if ( eventType == wxEVT_NULL )
2060 eventType = wxEVT_COMMAND_LIST_COL_END_DRAG;
2b5f62a0
VZ
2061
2062 event.m_item.m_width = nmHDR->pitem->cxy;
11358d39
VZ
2063 event.m_col = nmHDR->iItem;
2064 break;
2065
781a24e8 2066#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
80a81a12 2067 case GN_CONTEXTMENU:
a61d4011 2068#endif //__WXWINCE__
11358d39
VZ
2069 case NM_RCLICK:
2070 {
11358d39 2071 POINT ptClick;
5ea47806 2072
a9fdf824
RR
2073 eventType = wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
2074 event.m_col = wxMSWGetColumnClicked(nmhdr, &ptClick);
11358d39
VZ
2075 event.m_pointDrag.x = ptClick.x;
2076 event.m_pointDrag.y = ptClick.y;
11358d39
VZ
2077 }
2078 break;
5ea47806 2079
2b5f62a0 2080 case HDN_GETDISPINFOW:
c68f590a
VZ
2081 // letting Windows XP handle this message results in mysterious
2082 // crashes in comctl32.dll seemingly because of bad message
2083 // parameters
2084 //
2085 // I have no idea what is the real cause of the bug (which is,
a9fdf824 2086 // just to make things interesting, impossible to reproduce
c68f590a
VZ
2087 // reliably) but ignoring all these messages does fix it and
2088 // doesn't seem to have any negative consequences
2089 return true;
2b5f62a0 2090
11358d39
VZ
2091 default:
2092 return wxControl::MSWOnNotify(idCtrl, lParam, result);
2093 }
2094 }
d1f2eb1d 2095 else
0cf5b099 2096#endif // defined(HDN_BEGINTRACKA)
164e8d41 2097 if ( nmhdr->hwndFrom == GetHwnd() )
11358d39
VZ
2098 {
2099 // almost all messages use NM_LISTVIEW
2100 NM_LISTVIEW *nmLV = (NM_LISTVIEW *)nmhdr;
bdc72a22 2101
2b5f62a0
VZ
2102 const int iItem = nmLV->iItem;
2103
68c124a1 2104
68c124a1
RD
2105 // If we have a valid item then check if there is a data value
2106 // associated with it and put it in the event.
2107 if ( iItem >= 0 && iItem < GetItemCount() )
2108 {
c767a5bb
VZ
2109 wxMSWListItemData *internaldata =
2110 MSWGetItemData(iItem);
2b5f62a0 2111
68c124a1
RD
2112 if ( internaldata )
2113 event.m_item.m_data = internaldata->lParam;
2b5f62a0 2114 }
bdc72a22 2115
f0755097 2116 bool processed = true;
11358d39
VZ
2117 switch ( nmhdr->code )
2118 {
2119 case LVN_BEGINRDRAG:
2120 eventType = wxEVT_COMMAND_LIST_BEGIN_RDRAG;
2121 // fall through
7bf1474a 2122
11358d39
VZ
2123 case LVN_BEGINDRAG:
2124 if ( eventType == wxEVT_NULL )
2125 {
2126 eventType = wxEVT_COMMAND_LIST_BEGIN_DRAG;
2127 }
bdc72a22 2128
2b5f62a0 2129 event.m_itemIndex = iItem;
11358d39
VZ
2130 event.m_pointDrag.x = nmLV->ptAction.x;
2131 event.m_pointDrag.y = nmLV->ptAction.y;
2132 break;
2133
8c21905b 2134 // NB: we have to handle both *A and *W versions here because some
d2ed74b9
VZ
2135 // versions of comctl32.dll send ANSI messages even to the
2136 // Unicode windows
8c21905b 2137 case LVN_BEGINLABELEDITA:
8c21905b
VS
2138 case LVN_BEGINLABELEDITW:
2139 {
d2ed74b9
VZ
2140 wxLV_ITEM item;
2141 if ( nmhdr->code == LVN_BEGINLABELEDITA )
2142 {
2143 item.Init(((LV_DISPINFOA *)lParam)->item);
2144 }
2145 else // LVN_BEGINLABELEDITW
2146 {
2147 item.Init(((LV_DISPINFOW *)lParam)->item);
2148 }
2149
8c21905b 2150 eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
8c21905b
VS
2151 wxConvertFromMSWListItem(GetHwnd(), event.m_item, item);
2152 event.m_itemIndex = event.m_item.m_itemId;
2153 }
2154 break;
2155
2156 case LVN_ENDLABELEDITA:
d2ed74b9 2157 case LVN_ENDLABELEDITW:
8c21905b 2158 {
d2ed74b9
VZ
2159 wxLV_ITEM item;
2160 if ( nmhdr->code == LVN_ENDLABELEDITA )
c546974f 2161 {
d2ed74b9
VZ
2162 item.Init(((LV_DISPINFOA *)lParam)->item);
2163 }
2164 else // LVN_ENDLABELEDITW
2165 {
2166 item.Init(((LV_DISPINFOW *)lParam)->item);
c546974f 2167 }
8c21905b 2168
d2ed74b9
VZ
2169 // was editing cancelled?
2170 const LV_ITEM& lvi = (LV_ITEM)item;
2171 if ( !lvi.pszText || lvi.iItem == -1 )
c546974f 2172 {
5cd4cb75
VZ
2173 // EDIT control will be deleted by the list control
2174 // itself so prevent us from deleting it as well
2175 DeleteEditControl();
d2ed74b9
VZ
2176
2177 event.SetEditCanceled(true);
c546974f 2178 }
8c21905b 2179
d2ed74b9
VZ
2180 eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT;
2181 wxConvertFromMSWListItem(NULL, event.m_item, item);
11358d39
VZ
2182 event.m_itemIndex = event.m_item.m_itemId;
2183 }
2184 break;
edccf428 2185
11358d39
VZ
2186 case LVN_COLUMNCLICK:
2187 eventType = wxEVT_COMMAND_LIST_COL_CLICK;
2188 event.m_itemIndex = -1;
2189 event.m_col = nmLV->iSubItem;
2190 break;
bdc72a22 2191
11358d39
VZ
2192 case LVN_DELETEALLITEMS:
2193 eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
2194 event.m_itemIndex = -1;
11358d39
VZ
2195 break;
2196
2197 case LVN_DELETEITEM:
07763c99
VZ
2198 if ( m_count == 0 )
2199 {
2200 // this should be prevented by the post-processing code
2201 // below, but "just in case"
598ddd96 2202 return false;
07763c99 2203 }
68c124a1 2204
11358d39 2205 eventType = wxEVT_COMMAND_LIST_DELETE_ITEM;
2b5f62a0 2206 event.m_itemIndex = iItem;
c767a5bb
VZ
2207
2208 // delete the associated internal data
2209 if ( wxMSWListItemData *data = MSWGetItemData(iItem) )
2210 {
2211 const unsigned count = m_internalData.size();
2212 for ( unsigned n = 0; n < count; n++ )
2213 {
2214 if ( m_internalData[n] == data )
2215 {
2216 m_internalData.erase(m_internalData.begin() + n);
2217 delete data;
2218 data = NULL;
2219 break;
2220 }
2221 }
2222
31cc5049 2223 wxASSERT_MSG( !data, "invalid internal data pointer?" );
c767a5bb 2224 }
11358d39
VZ
2225 break;
2226
11358d39
VZ
2227 case LVN_INSERTITEM:
2228 eventType = wxEVT_COMMAND_LIST_INSERT_ITEM;
2b5f62a0 2229 event.m_itemIndex = iItem;
11358d39 2230 break;
edccf428 2231
11358d39 2232 case LVN_ITEMCHANGED:
648bec3e 2233 // we translate this catch all message into more interesting
77ffb593 2234 // (and more easy to process) wxWidgets events
648bec3e 2235
2b5f62a0
VZ
2236 // first of all, we deal with the state change events only and
2237 // only for valid items (item == -1 for the virtual list
2238 // control)
2239 if ( nmLV->uChanged & LVIF_STATE && iItem != -1 )
11358d39 2240 {
648bec3e
VZ
2241 // temp vars for readability
2242 const UINT stOld = nmLV->uOldState;
2243 const UINT stNew = nmLV->uNewState;
2244
2b5f62a0
VZ
2245 event.m_item.SetId(iItem);
2246 event.m_item.SetMask(wxLIST_MASK_TEXT |
2247 wxLIST_MASK_IMAGE |
2248 wxLIST_MASK_DATA);
2249 GetItem(event.m_item);
2250
648bec3e
VZ
2251 // has the focus changed?
2252 if ( !(stOld & LVIS_FOCUSED) && (stNew & LVIS_FOCUSED) )
2253 {
2254 eventType = wxEVT_COMMAND_LIST_ITEM_FOCUSED;
2b5f62a0 2255 event.m_itemIndex = iItem;
648bec3e
VZ
2256 }
2257
2258 if ( (stNew & LVIS_SELECTED) != (stOld & LVIS_SELECTED) )
2259 {
2260 if ( eventType != wxEVT_NULL )
2261 {
2262 // focus and selection have both changed: send the
2263 // focus event from here and the selection one
2264 // below
2265 event.SetEventType(eventType);
937013e0 2266 (void)HandleWindowEvent(event);
648bec3e
VZ
2267 }
2268 else // no focus event to send
2269 {
2270 // then need to set m_itemIndex as it wasn't done
2271 // above
2b5f62a0 2272 event.m_itemIndex = iItem;
648bec3e
VZ
2273 }
2274
2275 eventType = stNew & LVIS_SELECTED
2276 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2277 : wxEVT_COMMAND_LIST_ITEM_DESELECTED;
2278 }
edccf428 2279 }
648bec3e
VZ
2280
2281 if ( eventType == wxEVT_NULL )
edccf428 2282 {
648bec3e 2283 // not an interesting event for us
598ddd96 2284 return false;
edccf428 2285 }
648bec3e 2286
11358d39 2287 break;
225fe9d6 2288
11358d39
VZ
2289 case LVN_KEYDOWN:
2290 {
2291 LV_KEYDOWN *info = (LV_KEYDOWN *)lParam;
2292 WORD wVKey = info->wVKey;
2293
2294 // get the current selection
2295 long lItem = GetNextItem(-1,
2296 wxLIST_NEXT_ALL,
2297 wxLIST_STATE_SELECTED);
2298
2299 // <Enter> or <Space> activate the selected item if any (but
ec27ba21
VZ
2300 // not with any modifiers as they have a predefined meaning
2301 // then)
11358d39
VZ
2302 if ( lItem != -1 &&
2303 (wVKey == VK_RETURN || wVKey == VK_SPACE) &&
ec27ba21 2304 !wxIsAnyModifierDown() )
11358d39
VZ
2305 {
2306 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2307 }
2308 else
2309 {
2310 eventType = wxEVT_COMMAND_LIST_KEY_DOWN;
185d0094
VZ
2311
2312 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
2313 // value which should be used as is
2314 int code = wxCharCodeMSWToWX(wVKey);
2315 event.m_code = code ? code : wVKey;
11358d39 2316 }
7db91489 2317
11358d39
VZ
2318 event.m_itemIndex =
2319 event.m_item.m_itemId = lItem;
2320
2321 if ( lItem != -1 )
2322 {
2323 // fill the other fields too
2324 event.m_item.m_text = GetItemText(lItem);
2325 event.m_item.m_data = GetItemData(lItem);
2326 }
2327 }
2328 break;
2329
2330 case NM_DBLCLK:
2331 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2332 // anything else
2333 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
f6bcfd97 2334 {
598ddd96 2335 return true;
f6bcfd97 2336 }
edccf428 2337
11358d39
VZ
2338 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2339 // if it happened on an item (and not on empty place)
2b5f62a0 2340 if ( iItem == -1 )
11358d39
VZ
2341 {
2342 // not on item
598ddd96 2343 return false;
11358d39 2344 }
edccf428 2345
11358d39 2346 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2b5f62a0
VZ
2347 event.m_itemIndex = iItem;
2348 event.m_item.m_text = GetItemText(iItem);
2349 event.m_item.m_data = GetItemData(iItem);
11358d39 2350 break;
225fe9d6 2351
781a24e8 2352#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
80a81a12 2353 case GN_CONTEXTMENU:
a61d4011 2354#endif //__WXWINCE__
11358d39 2355 case NM_RCLICK:
225fe9d6
VZ
2356 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2357 // don't do anything else
2358 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
2359 {
598ddd96 2360 return true;
225fe9d6 2361 }
cb0f56f9 2362
225fe9d6
VZ
2363 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2364 LV_HITTESTINFO lvhti;
2365 wxZeroMemory(lvhti);
11c7d5b6 2366
781a24e8 2367#if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
fb4079af
VZ
2368 if ( nmhdr->code == GN_CONTEXTMENU )
2369 {
2370 lvhti.pt = ((NMRGINFO*)nmhdr)->ptAction;
2371 }
2372 else
a61d4011 2373#endif //__WXWINCE__
fb4079af
VZ
2374 {
2375 ::GetCursorPos(&(lvhti.pt));
2376 }
2377
2378 ::ScreenToClient(GetHwnd(), &lvhti.pt);
2379 if ( ListView_HitTest(GetHwnd(), &lvhti) != -1 )
cb0f56f9 2380 {
225fe9d6
VZ
2381 if ( lvhti.flags & LVHT_ONITEM )
2382 {
2383 eventType = wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
2384 event.m_itemIndex = lvhti.iItem;
a1f79c1e
VZ
2385 event.m_pointDrag.x = lvhti.pt.x;
2386 event.m_pointDrag.y = lvhti.pt.y;
225fe9d6 2387 }
cb0f56f9 2388 }
11358d39 2389 break;
bdc72a22 2390
5b59df83 2391#ifdef NM_CUSTOMDRAW
80c54c3d 2392 case NM_CUSTOMDRAW:
11358d39 2393 *result = OnCustomDraw(lParam);
63166611 2394
e6b1317b 2395 return *result != CDRF_DODEFAULT;
6ecfe2ac 2396#endif // _WIN32_IE >= 0x300
0b5efdc7 2397
11358d39
VZ
2398 case LVN_ODCACHEHINT:
2399 {
2400 const NM_CACHEHINT *cacheHint = (NM_CACHEHINT *)lParam;
614391dc 2401
11358d39 2402 eventType = wxEVT_COMMAND_LIST_CACHE_HINT;
e623926d 2403
0ea0359b
VZ
2404 // we get some really stupid cache hints like ones for
2405 // items in range 0..0 for an empty control or, after
2406 // deleting an item, for items in invalid range -- filter
2407 // this garbage out
2408 if ( cacheHint->iFrom > cacheHint->iTo )
598ddd96 2409 return false;
0ea0359b
VZ
2410
2411 event.m_oldItemIndex = cacheHint->iFrom;
2412
2413 const long iMax = GetItemCount();
2414 event.m_itemIndex = cacheHint->iTo < iMax ? cacheHint->iTo
2415 : iMax - 1;
e623926d 2416 }
11358d39 2417 break;
614391dc 2418
206391cb 2419#ifdef HAVE_NMLVFINDITEM
f0755097
VZ
2420 case LVN_ODFINDITEM:
2421 // this message is only used with the virtual list control but
2422 // even there we don't want to always use it: in a control with
2423 // sufficiently big number of items (defined as > 1000 here),
2424 // accidentally pressing a key could result in hanging an
2425 // application waiting while it performs linear search
2426 if ( IsVirtual() && GetItemCount() <= 1000 )
2427 {
2428 NMLVFINDITEM* pFindInfo = (NMLVFINDITEM*)lParam;
2429
2430 // no match by default
2431 *result = -1;
2432
2433 // we only handle string-based searches here
2434 //
2435 // TODO: what about LVFI_PARTIAL, should we handle this?
2436 if ( !(pFindInfo->lvfi.flags & LVFI_STRING) )
2437 {
2438 return false;
2439 }
2440
2441 const wxChar * const searchstr = pFindInfo->lvfi.psz;
2442 const size_t len = wxStrlen(searchstr);
2443
2444 // this is the first item we should examine, search from it
2445 // wrapping if necessary
2446 const int startPos = pFindInfo->iStart;
2447 const int maxPos = GetItemCount();
2448 wxCHECK_MSG( startPos <= maxPos, false,
9a83f860 2449 wxT("bad starting position in LVN_ODFINDITEM") );
f0755097
VZ
2450
2451 int currentPos = startPos;
2452 do
2453 {
2454 // wrap to the beginning if necessary
2455 if ( currentPos == maxPos )
2456 {
2457 // somewhat surprizingly, LVFI_WRAP isn't set in
2458 // flags but we still should wrap
2459 currentPos = 0;
2460 }
2461
2462 // does this item begin with searchstr?
2463 if ( wxStrnicmp(searchstr,
2464 GetItemText(currentPos), len) == 0 )
2465 {
2466 *result = currentPos;
2467 break;
2468 }
2469 }
2470 while ( ++currentPos != startPos );
2471
2472 if ( *result == -1 )
2473 {
2474 // not found
2475 return false;
2476 }
2477
2478 SetItemState(*result,
2479 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED,
2480 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED);
2481 EnsureVisible(*result);
2482 return true;
2483 }
2484 else
2485 {
2486 processed = false;
2487 }
2488 break;
206391cb 2489#endif // HAVE_NMLVFINDITEM
f0755097 2490
11358d39
VZ
2491 case LVN_GETDISPINFO:
2492 if ( IsVirtual() )
2493 {
2494 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
98ec9dbe 2495
11358d39
VZ
2496 LV_ITEM& lvi = info->item;
2497 long item = lvi.iItem;
98ec9dbe 2498
11358d39
VZ
2499 if ( lvi.mask & LVIF_TEXT )
2500 {
2501 wxString text = OnGetItemText(item, lvi.iSubItem);
64accea5 2502 wxStrlcpy(lvi.pszText, text.c_str(), lvi.cchTextMax);
11358d39 2503 }
98ec9dbe 2504
5b59df83
VZ
2505 // see comment at the end of wxListCtrl::GetColumn()
2506#ifdef NM_CUSTOMDRAW
11358d39
VZ
2507 if ( lvi.mask & LVIF_IMAGE )
2508 {
208458a7 2509 lvi.iImage = OnGetItemColumnImage(item, lvi.iSubItem);
11358d39 2510 }
5b59df83 2511#endif // NM_CUSTOMDRAW
98ec9dbe 2512
19def5e7
VZ
2513 // even though we never use LVM_SETCALLBACKMASK, we still
2514 // can get messages with LVIF_STATE in lvi.mask under Vista
2515 if ( lvi.mask & LVIF_STATE )
2516 {
2517 // we don't have anything to return from here...
2518 lvi.stateMask = 0;
2519 }
98ec9dbe 2520
598ddd96 2521 return true;
11358d39
VZ
2522 }
2523 // fall through
98ec9dbe 2524
11358d39 2525 default:
f0755097 2526 processed = false;
11358d39 2527 }
f0755097
VZ
2528
2529 if ( !processed )
2530 return wxControl::MSWOnNotify(idCtrl, lParam, result);
11358d39
VZ
2531 }
2532 else
2533 {
2534 // where did this one come from?
598ddd96 2535 return false;
acb62b84
VZ
2536 }
2537
bdc72a22
VZ
2538 // process the event
2539 // -----------------
2540
0b5efdc7 2541 event.SetEventType(eventType);
acb62b84 2542
fb4079af
VZ
2543 // fill in the item before passing it to the event handler if we do have a
2544 // valid item index and haven't filled it yet (e.g. for LVN_ITEMCHANGED)
2545 if ( event.m_itemIndex != -1 && !event.m_item.GetMask() )
2546 {
2547 wxListItem& item = event.m_item;
2548
2549 item.SetId(event.m_itemIndex);
2550 item.SetMask(wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE | wxLIST_MASK_DATA);
2551 GetItem(item);
2552 }
2553
937013e0 2554 bool processed = HandleWindowEvent(event);
acb62b84 2555
bdc72a22
VZ
2556 // post processing
2557 // ---------------
225fe9d6 2558 switch ( nmhdr->code )
acb62b84 2559 {
6932a32c 2560 case LVN_DELETEALLITEMS:
598ddd96 2561 // always return true to suppress all additional LVN_DELETEITEM
6932a32c
VZ
2562 // notifications - this makes deleting all items from a list ctrl
2563 // much faster
2564 *result = TRUE;
f7df21aa
VZ
2565
2566 // also, we may free all user data now (couldn't do it before as
2567 // the user should have access to it in OnDeleteAllItems() handler)
2568 FreeAllInternalData();
07763c99
VZ
2569
2570 // the control is empty now, synchronize the cached number of items
2571 // with the real one
2572 m_count = 0;
598ddd96 2573 return true;
6932a32c 2574
8c21905b
VS
2575 case LVN_ENDLABELEDITA:
2576 case LVN_ENDLABELEDITW:
3103e8a9 2577 // logic here is inverted compared to all the other messages
614391dc
VZ
2578 *result = event.IsAllowed();
2579
5cd4cb75
VZ
2580 // EDIT control will be deleted by the list control itself so
2581 // prevent us from deleting it as well
2582 DeleteEditControl();
2b5f62a0 2583
598ddd96 2584 return true;
acb62b84 2585 }
acb62b84 2586
68c124a1
RD
2587 if ( processed )
2588 *result = !event.IsAllowed();
fd3f686c 2589
68c124a1 2590 return processed;
2bda0e17
KB
2591}
2592
e6b1317b
VZ
2593// ----------------------------------------------------------------------------
2594// custom draw stuff
2595// ----------------------------------------------------------------------------
2596
5b59df83
VZ
2597// see comment at the end of wxListCtrl::GetColumn()
2598#ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
63166611 2599
e6b1317b
VZ
2600static RECT GetCustomDrawnItemRect(const NMCUSTOMDRAW& nmcd)
2601{
2602 RECT rc;
89cafab0 2603 wxGetListCtrlItemRect(nmcd.hdr.hwndFrom, nmcd.dwItemSpec, LVIR_BOUNDS, rc);
e6b1317b
VZ
2604
2605 RECT rcIcon;
89cafab0 2606 wxGetListCtrlItemRect(nmcd.hdr.hwndFrom, nmcd.dwItemSpec, LVIR_ICON, rcIcon);
e6b1317b
VZ
2607
2608 // exclude the icon part, neither the selection background nor focus rect
2609 // should cover it
2610 rc.left = rcIcon.right;
2611
2612 return rc;
2613}
2614
0c1602b8
VZ
2615static
2616bool HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD, HFONT hfont, int colCount)
e6b1317b
VZ
2617{
2618 NMCUSTOMDRAW& nmcd = pLVCD->nmcd;
2619
2620 HDC hdc = nmcd.hdc;
2621 HWND hwndList = nmcd.hdr.hwndFrom;
223b7504 2622 const int col = pLVCD->iSubItem;
e6b1317b
VZ
2623 const DWORD item = nmcd.dwItemSpec;
2624
e6b1317b
VZ
2625 // the font must be valid, otherwise we wouldn't be painting the item at all
2626 SelectInHDC selFont(hdc, hfont);
2627
2628 // get the rectangle to paint
89cafab0 2629 int subitem = colCount ? col + 1 : col;
e6b1317b 2630 RECT rc;
89cafab0
VZ
2631 wxGetListCtrlSubItemRect(hwndList, item, subitem, LVIR_BOUNDS, rc);
2632 rc.left += 6;
e6b1317b
VZ
2633
2634 // get the image and text to draw
2635 wxChar text[512];
2636 LV_ITEM it;
2637 wxZeroMemory(it);
2638 it.mask = LVIF_TEXT | LVIF_IMAGE;
2639 it.iItem = item;
223b7504 2640 it.iSubItem = col;
e6b1317b
VZ
2641 it.pszText = text;
2642 it.cchTextMax = WXSIZEOF(text);
2643 ListView_GetItem(hwndList, &it);
2644
25e6a4a6
VZ
2645 HIMAGELIST himl = ListView_GetImageList(hwndList, LVSIL_SMALL);
2646 if ( himl && ImageList_GetImageCount(himl) )
e6b1317b 2647 {
25e6a4a6
VZ
2648 if ( it.iImage != -1 )
2649 {
2650 ImageList_Draw(himl, it.iImage, hdc, rc.left, rc.top,
2651 nmcd.uItemState & CDIS_SELECTED ? ILD_SELECTED
2652 : ILD_TRANSPARENT);
2653 }
e6b1317b 2654
25e6a4a6 2655 // notice that even if this item doesn't have any image, the list
23535447
VZ
2656 // control still leaves space for the image in the first column if the
2657 // image list is not empty (presumably so that items with and without
2658 // images align?)
2659 if ( it.iImage != -1 || it.iSubItem == 0 )
2660 {
2661 int wImage, hImage;
2662 ImageList_GetIconSize(himl, &wImage, &hImage);
e6b1317b 2663
23535447
VZ
2664 rc.left += wImage + 2;
2665 }
e6b1317b
VZ
2666 }
2667
2668 ::SetBkMode(hdc, TRANSPARENT);
2669
223b7504 2670 UINT fmt = DT_SINGLELINE |
5cce8340
VZ
2671#ifndef __WXWINCE__
2672 DT_WORD_ELLIPSIS |
2673#endif // __WXWINCE__
223b7504
VZ
2674 DT_NOPREFIX |
2675 DT_VCENTER;
2676
2677 LV_COLUMN lvCol;
2678 wxZeroMemory(lvCol);
2679 lvCol.mask = LVCF_FMT;
2680 if ( ListView_GetColumn(hwndList, col, &lvCol) )
2681 {
2682 switch ( lvCol.fmt & LVCFMT_JUSTIFYMASK )
2683 {
2684 case LVCFMT_LEFT:
2685 fmt |= DT_LEFT;
2686 break;
2687
2688 case LVCFMT_CENTER:
2689 fmt |= DT_CENTER;
2690 break;
2691
2692 case LVCFMT_RIGHT:
2693 fmt |= DT_RIGHT;
2694 break;
2695 }
2696 }
2697 //else: failed to get alignment, assume it's DT_LEFT (default)
2698
2699 DrawText(hdc, text, -1, &rc, fmt);
2700
2701 return true;
e6b1317b
VZ
2702}
2703
2704static void HandleItemPostpaint(NMCUSTOMDRAW nmcd)
2705{
2706 if ( nmcd.uItemState & CDIS_FOCUS )
2707 {
2708 RECT rc = GetCustomDrawnItemRect(nmcd);
2709
2710 // don't use the provided HDC, it's in some strange state by now
2711 ::DrawFocusRect(WindowHDC(nmcd.hdr.hwndFrom), &rc);
2712 }
2713}
2714
2715// pLVCD->clrText and clrTextBk should contain the colours to use
2716static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD, HFONT hfont)
2717{
2718 NMCUSTOMDRAW& nmcd = pLVCD->nmcd; // just a shortcut
2719
13845bd5
VZ
2720 const HWND hwndList = nmcd.hdr.hwndFrom;
2721 const int item = nmcd.dwItemSpec;
e6b1317b
VZ
2722
2723 // unfortunately we can't trust CDIS_SELECTED, it is often set even when
2724 // the item is not at all selected for some reason (comctl32 6), but we
2725 // also can't always trust ListView_GetItem() as it could return the old
2726 // item status if we're called just after the (de)selection, so remember
2727 // the last item to gain selection and also check for it here
2728 for ( int i = -1;; )
2729 {
2730 i = ListView_GetNextItem(hwndList, i, LVNI_SELECTED);
2731 if ( i == -1 )
2732 {
2733 nmcd.uItemState &= ~CDIS_SELECTED;
2734 break;
2735 }
2736
13845bd5 2737 if ( i == item )
e6b1317b
VZ
2738 {
2739 nmcd.uItemState |= CDIS_SELECTED;
2740 break;
2741 }
2742 }
2743
13845bd5 2744 // same thing for CDIS_FOCUS (except simpler as there is only one of them)
36e5a9a7
VZ
2745 //
2746 // NB: cast is needed to work around the bug in mingw32 headers which don't
2747 // have it inside ListView_GetNextItem() itself (unlike SDK ones)
728f972b 2748 if ( ::GetFocus() == hwndList &&
36e5a9a7
VZ
2749 ListView_GetNextItem(
2750 hwndList, static_cast<WPARAM>(-1), LVNI_FOCUSED) == item )
13845bd5
VZ
2751 {
2752 nmcd.uItemState |= CDIS_FOCUS;
2753 }
2754 else
2755 {
2756 nmcd.uItemState &= ~CDIS_FOCUS;
2757 }
2758
e6b1317b
VZ
2759 if ( nmcd.uItemState & CDIS_SELECTED )
2760 {
2761 int syscolFg, syscolBg;
2762 if ( ::GetFocus() == hwndList )
2763 {
2764 syscolFg = COLOR_HIGHLIGHTTEXT;
2765 syscolBg = COLOR_HIGHLIGHT;
2766 }
2767 else // selected but unfocused
2768 {
2769 syscolFg = COLOR_WINDOWTEXT;
2770 syscolBg = COLOR_BTNFACE;
2771
2772 // don't grey out the icon in this case neither
2773 nmcd.uItemState &= ~CDIS_SELECTED;
2774 }
2775
2776 pLVCD->clrText = ::GetSysColor(syscolFg);
2777 pLVCD->clrTextBk = ::GetSysColor(syscolBg);
2778 }
2779 //else: not selected, use normal colours from pLVCD
2780
2781 HDC hdc = nmcd.hdc;
2782 RECT rc = GetCustomDrawnItemRect(nmcd);
2783
2784 ::SetTextColor(hdc, pLVCD->clrText);
2785 ::FillRect(hdc, &rc, AutoHBRUSH(pLVCD->clrTextBk));
2786
2787 // we could use CDRF_NOTIFYSUBITEMDRAW here but it results in weird repaint
2788 // problems so just draw everything except the focus rect from here instead
2789 const int colCount = Header_GetItemCount(ListView_GetHeader(hwndList));
2790 for ( int col = 0; col < colCount; col++ )
2791 {
2792 pLVCD->iSubItem = col;
0c1602b8 2793 HandleSubItemPrepaint(pLVCD, hfont, colCount);
e6b1317b
VZ
2794 }
2795
2796 HandleItemPostpaint(nmcd);
2797}
2798
2799static WXLPARAM HandleItemPrepaint(wxListCtrl *listctrl,
2800 LPNMLVCUSTOMDRAW pLVCD,
2801 wxListItemAttr *attr)
2802{
2803 if ( !attr )
2804 {
2805 // nothing to do for this item
2806 return CDRF_DODEFAULT;
2807 }
2808
2809
2810 // set the colours to use for text drawing
3568f700
WS
2811 pLVCD->clrText = attr->HasTextColour()
2812 ? wxColourToRGB(attr->GetTextColour())
2813 : wxColourToRGB(listctrl->GetTextColour());
2814 pLVCD->clrTextBk = attr->HasBackgroundColour()
2815 ? wxColourToRGB(attr->GetBackgroundColour())
2816 : wxColourToRGB(listctrl->GetBackgroundColour());
e6b1317b
VZ
2817
2818 // select the font if non default one is specified
2819 if ( attr->HasFont() )
2820 {
2821 wxFont font = attr->GetFont();
2822 if ( font.GetEncoding() != wxFONTENCODING_SYSTEM )
2823 {
2824 // the standard control ignores the font encoding/charset, at least
2825 // with recent comctl32.dll versions (5 and 6, it uses to work with
2826 // 4.something) so we have to draw the item entirely ourselves in
2827 // this case
2828 HandleItemPaint(pLVCD, GetHfontOf(font));
2829 return CDRF_SKIPDEFAULT;
2830 }
2831
2832 ::SelectObject(pLVCD->nmcd.hdc, GetHfontOf(font));
2833
2834 return CDRF_NEWFONT;
2835 }
2836
2837 return CDRF_DODEFAULT;
2838}
2839
63166611
VZ
2840WXLPARAM wxListCtrl::OnCustomDraw(WXLPARAM lParam)
2841{
e6b1317b
VZ
2842 LPNMLVCUSTOMDRAW pLVCD = (LPNMLVCUSTOMDRAW)lParam;
2843 NMCUSTOMDRAW& nmcd = pLVCD->nmcd;
63166611
VZ
2844 switch ( nmcd.dwDrawStage )
2845 {
2846 case CDDS_PREPAINT:
2847 // if we've got any items with non standard attributes,
2848 // notify us before painting each item
2849 //
2850 // for virtual controls, always suppose that we have attributes as
2851 // there is no way to check for this
e6b1317b
VZ
2852 if ( IsVirtual() || m_hasAnyAttr )
2853 return CDRF_NOTIFYITEMDRAW;
2854 break;
63166611
VZ
2855
2856 case CDDS_ITEMPREPAINT:
eab1336c
VZ
2857 // get a message for each subitem
2858 return CDRF_NOTIFYITEMDRAW;
2859
2860 case CDDS_SUBITEM | CDDS_ITEMPREPAINT:
e6b1317b 2861 const int item = nmcd.dwItemSpec;
eab1336c 2862 const int column = pLVCD->iSubItem;
63166611 2863
e6b1317b
VZ
2864 // we get this message with item == 0 for an empty control, we
2865 // must ignore it as calling OnGetItemAttr() would be wrong
2866 if ( item < 0 || item >= GetItemCount() )
2867 break;
eab1336c
VZ
2868 // same for columns
2869 if ( column < 0 || column >= GetColumnCount() )
2870 break;
63166611 2871
eab1336c 2872 return HandleItemPrepaint(this, pLVCD, DoGetItemColumnAttr(item, column));
63166611 2873 }
e6b1317b
VZ
2874
2875 return CDRF_DODEFAULT;
63166611
VZ
2876}
2877
2878#endif // NM_CUSTOMDRAW supported
2879
2702ed5a
JS
2880// Necessary for drawing hrules and vrules, if specified
2881void wxListCtrl::OnPaint(wxPaintEvent& event)
2882{
99366b91 2883 const int itemCount = GetItemCount();
d3acc83a
VZ
2884 const bool drawHRules = HasFlag(wxLC_HRULES);
2885 const bool drawVRules = HasFlag(wxLC_VRULES);
2e6a9dad 2886
99366b91 2887 if (!InReportView() || !(drawHRules || drawVRules) || !itemCount)
2e6a9dad
VS
2888 {
2889 event.Skip();
2890 return;
2891 }
2892
2702ed5a
JS
2893 wxPaintDC dc(this);
2894
2895 wxControl::OnPaint(event);
2896
2897 // Reset the device origin since it may have been set
2898 dc.SetDeviceOrigin(0, 0);
2899
36c10aa1 2900 wxPen pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT));
2702ed5a
JS
2901 dc.SetPen(pen);
2902 dc.SetBrush(* wxTRANSPARENT_BRUSH);
2903
2904 wxSize clientSize = GetClientSize();
2905 wxRect itemRect;
2702ed5a 2906
625cb8c0 2907 if (drawHRules)
2702ed5a 2908 {
99366b91
VZ
2909 const long top = GetTopItem();
2910 for ( int i = top; i < top + GetCountPerPage() + 1; i++ )
2702ed5a 2911 {
625cb8c0 2912 if (GetItemRect(i, itemRect))
ca286917 2913 {
5cb598ae 2914 int cy = itemRect.GetTop();
625cb8c0
RD
2915 if (i != 0) // Don't draw the first one
2916 {
2917 dc.DrawLine(0, cy, clientSize.x, cy);
2918 }
2919 // Draw last line
2cefcb34 2920 if (i == itemCount - 1)
625cb8c0
RD
2921 {
2922 cy = itemRect.GetBottom();
2923 dc.DrawLine(0, cy, clientSize.x, cy);
99366b91 2924 break;
625cb8c0 2925 }
2702ed5a
JS
2926 }
2927 }
2928 }
99366b91
VZ
2929
2930 if (drawVRules)
2702ed5a
JS
2931 {
2932 wxRect firstItemRect;
2933 GetItemRect(0, firstItemRect);
2934
99366b91 2935 if (GetItemRect(itemCount - 1, itemRect))
2702ed5a 2936 {
9eaba692
VZ
2937 // this is a fix for bug 673394: erase the pixels which we would
2938 // otherwise leave on the screen
2939 static const int gap = 2;
2940 dc.SetPen(*wxTRANSPARENT_PEN);
2941 dc.SetBrush(wxBrush(GetBackgroundColour()));
2942 dc.DrawRectangle(0, firstItemRect.GetY() - gap,
2943 clientSize.GetWidth(), gap);
2944
2945 dc.SetPen(pen);
2946 dc.SetBrush(*wxTRANSPARENT_BRUSH);
67d3fc49 2947
ceef3893
VZ
2948 const int numCols = GetColumnCount();
2949 wxVector<int> indexArray(numCols);
2950 if ( !ListView_GetColumnOrderArray(GetHwnd(),
2951 numCols,
2952 &indexArray[0]) )
7a8dce71 2953 {
9a83f860 2954 wxFAIL_MSG( wxT("invalid column index array in OnPaint()") );
ceef3893 2955 return;
7a8dce71 2956 }
67d3fc49 2957
2702ed5a 2958 int x = itemRect.GetX();
67d3fc49 2959 for (int col = 0; col < numCols; col++)
2702ed5a 2960 {
67d3fc49 2961 int colWidth = GetColumnWidth(indexArray[col]);
2702ed5a 2962 x += colWidth ;
9eaba692
VZ
2963 dc.DrawLine(x-1, firstItemRect.GetY() - gap,
2964 x-1, itemRect.GetBottom());
2702ed5a
JS
2965 }
2966 }
2967 }
2968}
2969
4bd6ae0f
VZ
2970WXLRESULT
2971wxListCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
2972{
777f37e0 2973 switch ( nMsg )
4bd6ae0f 2974 {
777f37e0
VZ
2975#ifdef WM_PRINT
2976 case WM_PRINT:
2977 // we should bypass our own WM_PRINT handling as we don't handle
2978 // PRF_CHILDREN flag, so leave it to the native control itself
2979 return MSWDefWindowProc(nMsg, wParam, lParam);
4bd6ae0f
VZ
2980#endif // WM_PRINT
2981
777f37e0
VZ
2982 case WM_CONTEXTMENU:
2983 // because this message is propagated upwards the child-parent
2984 // chain, we get it for the right clicks on the header window but
2985 // this is confusing in wx as right clicking there already
2986 // generates a separate wxEVT_COMMAND_LIST_COL_RIGHT_CLICK event
2987 // so just ignore them
2988 if ( (HWND)wParam == ListView_GetHeader(GetHwnd()) )
2989 return 0;
2990 //else: break
2991 }
2992
4bd6ae0f
VZ
2993 return wxControl::MSWWindowProc(nMsg, wParam, lParam);
2994}
2995
98ec9dbe
VZ
2996// ----------------------------------------------------------------------------
2997// virtual list controls
2998// ----------------------------------------------------------------------------
2999
d699f48b 3000wxString wxListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const
98ec9dbe
VZ
3001{
3002 // this is a pure virtual function, in fact - which is not really pure
3003 // because the controls which are not virtual don't need to implement it
9a83f860 3004 wxFAIL_MSG( wxT("wxListCtrl::OnGetItemText not supposed to be called") );
98ec9dbe
VZ
3005
3006 return wxEmptyString;
3007}
3008
d699f48b 3009int wxListCtrl::OnGetItemImage(long WXUNUSED(item)) const
98ec9dbe 3010{
611a725e
RD
3011 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL),
3012 -1,
208458a7
RD
3013 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
3014 return -1;
3015}
3016
3017int wxListCtrl::OnGetItemColumnImage(long item, long column) const
3018{
3019 if (!column)
3020 return OnGetItemImage(item);
3021
98ec9dbe
VZ
3022 return -1;
3023}
3024
d699f48b 3025wxListItemAttr *wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const
6c02c329 3026{
63166611 3027 wxASSERT_MSG( item >= 0 && item < GetItemCount(),
9a83f860 3028 wxT("invalid item index in OnGetItemAttr()") );
6c02c329
VZ
3029
3030 // no attributes by default
3031 return NULL;
3032}
3033
eab1336c 3034wxListItemAttr *wxListCtrl::DoGetItemColumnAttr(long item, long column) const
e6b1317b 3035{
c767a5bb
VZ
3036 if ( IsVirtual() )
3037 return OnGetItemColumnAttr(item, column);
3038
3039 wxMSWListItemData * const data = MSWGetItemData(item);
3040 return data ? data->attr : NULL;
e6b1317b
VZ
3041}
3042
98ec9dbe
VZ
3043void wxListCtrl::SetItemCount(long count)
3044{
9a83f860 3045 wxASSERT_MSG( IsVirtual(), wxT("this is for virtual controls only") );
98ec9dbe 3046
54759554
VZ
3047 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT, (WPARAM)count,
3048 LVSICF_NOSCROLL | LVSICF_NOINVALIDATEALL) )
98ec9dbe 3049 {
9a83f860 3050 wxLogLastError(wxT("ListView_SetItemCount"));
98ec9dbe 3051 }
68c124a1
RD
3052 m_count = count;
3053 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
3054 wxT("m_count should match ListView_GetItemCount"));
98ec9dbe
VZ
3055}
3056
a7f560a2
VZ
3057void wxListCtrl::RefreshItem(long item)
3058{
ebc9b89d 3059 RefreshItems(item, item);
a7f560a2
VZ
3060}
3061
3062void wxListCtrl::RefreshItems(long itemFrom, long itemTo)
3063{
ebc9b89d 3064 ListView_RedrawItems(GetHwnd(), itemFrom, itemTo);
a7f560a2
VZ
3065}
3066
97c611f8
VZ
3067// ----------------------------------------------------------------------------
3068// wxWin <-> MSW items conversions
3069// ----------------------------------------------------------------------------
3070
8dff2b5c
VZ
3071static void wxConvertFromMSWListItem(HWND hwndListCtrl,
3072 wxListItem& info,
3073 LV_ITEM& lvItem)
2bda0e17 3074{
c767a5bb
VZ
3075 wxMSWListItemData *internaldata =
3076 (wxMSWListItemData *) lvItem.lParam;
7cf46fdb
VZ
3077
3078 if (internaldata)
3079 info.m_data = internaldata->lParam;
3080
0b5efdc7
VZ
3081 info.m_mask = 0;
3082 info.m_state = 0;
3083 info.m_stateMask = 0;
3084 info.m_itemId = lvItem.iItem;
acb62b84 3085
0b5efdc7 3086 long oldMask = lvItem.mask;
acb62b84 3087
598ddd96 3088 bool needText = false;
8dff2b5c 3089 if (hwndListCtrl != 0)
acb62b84 3090 {
0b5efdc7 3091 if ( lvItem.mask & LVIF_TEXT )
598ddd96 3092 needText = false;
0b5efdc7 3093 else
598ddd96 3094 needText = true;
acb62b84 3095
0b5efdc7
VZ
3096 if ( needText )
3097 {
837e5743 3098 lvItem.pszText = new wxChar[513];
0b5efdc7
VZ
3099 lvItem.cchTextMax = 512;
3100 }
edccf428 3101 lvItem.mask |= LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
8dff2b5c 3102 ::SendMessage(hwndListCtrl, LVM_GETITEM, 0, (LPARAM)& lvItem);
0b5efdc7 3103 }
acb62b84 3104
0b5efdc7 3105 if ( lvItem.mask & LVIF_STATE )
acb62b84 3106 {
0b5efdc7
VZ
3107 info.m_mask |= wxLIST_MASK_STATE;
3108
3109 if ( lvItem.stateMask & LVIS_CUT)
3110 {
edccf428 3111 info.m_stateMask |= wxLIST_STATE_CUT;
0b5efdc7 3112 if ( lvItem.state & LVIS_CUT )
edccf428 3113 info.m_state |= wxLIST_STATE_CUT;
0b5efdc7
VZ
3114 }
3115 if ( lvItem.stateMask & LVIS_DROPHILITED)
3116 {
edccf428 3117 info.m_stateMask |= wxLIST_STATE_DROPHILITED;
0b5efdc7 3118 if ( lvItem.state & LVIS_DROPHILITED )
edccf428 3119 info.m_state |= wxLIST_STATE_DROPHILITED;
0b5efdc7
VZ
3120 }
3121 if ( lvItem.stateMask & LVIS_FOCUSED)
3122 {
edccf428 3123 info.m_stateMask |= wxLIST_STATE_FOCUSED;
0b5efdc7 3124 if ( lvItem.state & LVIS_FOCUSED )
edccf428 3125 info.m_state |= wxLIST_STATE_FOCUSED;
0b5efdc7
VZ
3126 }
3127 if ( lvItem.stateMask & LVIS_SELECTED)
3128 {
edccf428 3129 info.m_stateMask |= wxLIST_STATE_SELECTED;
0b5efdc7 3130 if ( lvItem.state & LVIS_SELECTED )
edccf428 3131 info.m_state |= wxLIST_STATE_SELECTED;
0b5efdc7 3132 }
acb62b84 3133 }
0b5efdc7
VZ
3134
3135 if ( lvItem.mask & LVIF_TEXT )
acb62b84 3136 {
0b5efdc7
VZ
3137 info.m_mask |= wxLIST_MASK_TEXT;
3138 info.m_text = lvItem.pszText;
acb62b84 3139 }
0b5efdc7 3140 if ( lvItem.mask & LVIF_IMAGE )
acb62b84 3141 {
0b5efdc7
VZ
3142 info.m_mask |= wxLIST_MASK_IMAGE;
3143 info.m_image = lvItem.iImage;
acb62b84 3144 }
0b5efdc7
VZ
3145 if ( lvItem.mask & LVIF_PARAM )
3146 info.m_mask |= wxLIST_MASK_DATA;
3147 if ( lvItem.mask & LVIF_DI_SETITEM )
3148 info.m_mask |= wxLIST_SET_ITEM;
3149 info.m_col = lvItem.iSubItem;
3150
3151 if (needText)
acb62b84 3152 {
0b5efdc7
VZ
3153 if (lvItem.pszText)
3154 delete[] lvItem.pszText;
acb62b84 3155 }
edccf428 3156 lvItem.mask = oldMask;
2bda0e17
KB
3157}
3158
8dff2b5c
VZ
3159static void wxConvertToMSWFlags(long state, long stateMask, LV_ITEM& lvItem)
3160{
3161 if (stateMask & wxLIST_STATE_CUT)
3162 {
3163 lvItem.stateMask |= LVIS_CUT;
3164 if (state & wxLIST_STATE_CUT)
3165 lvItem.state |= LVIS_CUT;
3166 }
3167 if (stateMask & wxLIST_STATE_DROPHILITED)
3168 {
3169 lvItem.stateMask |= LVIS_DROPHILITED;
3170 if (state & wxLIST_STATE_DROPHILITED)
3171 lvItem.state |= LVIS_DROPHILITED;
3172 }
3173 if (stateMask & wxLIST_STATE_FOCUSED)
3174 {
3175 lvItem.stateMask |= LVIS_FOCUSED;
3176 if (state & wxLIST_STATE_FOCUSED)
3177 lvItem.state |= LVIS_FOCUSED;
3178 }
3179 if (stateMask & wxLIST_STATE_SELECTED)
3180 {
3181 lvItem.stateMask |= LVIS_SELECTED;
3182 if (state & wxLIST_STATE_SELECTED)
3183 lvItem.state |= LVIS_SELECTED;
3184 }
3185}
3186
3187static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
3188 const wxListItem& info,
3189 LV_ITEM& lvItem)
2bda0e17 3190{
dc6a272b
VZ
3191 if ( ctrl->InReportView() )
3192 {
3193 wxASSERT_MSG( 0 <= info.m_col && info.m_col < ctrl->GetColumnCount(),
3194 "wxListCtrl column index out of bounds" );
3195 }
3196 else // not in report view
3197 {
3198 wxASSERT_MSG( info.m_col == 0, "columns only exist in report view" );
3199 }
14263426 3200
edccf428 3201 lvItem.iItem = (int) info.m_itemId;
acb62b84 3202
edccf428 3203 lvItem.iImage = info.m_image;
0b5efdc7
VZ
3204 lvItem.stateMask = 0;
3205 lvItem.state = 0;
3206 lvItem.mask = 0;
3207 lvItem.iSubItem = info.m_col;
acb62b84 3208
0b5efdc7 3209 if (info.m_mask & wxLIST_MASK_STATE)
acb62b84 3210 {
edccf428 3211 lvItem.mask |= LVIF_STATE;
8dff2b5c
VZ
3212
3213 wxConvertToMSWFlags(info.m_state, info.m_stateMask, lvItem);
acb62b84 3214 }
acb62b84 3215
0b5efdc7 3216 if (info.m_mask & wxLIST_MASK_TEXT)
acb62b84 3217 {
edccf428 3218 lvItem.mask |= LVIF_TEXT;
b5d43d1d 3219 if ( ctrl->HasFlag(wxLC_USER_TEXT) )
0b5efdc7
VZ
3220 {
3221 lvItem.pszText = LPSTR_TEXTCALLBACK;
3222 }
3223 else
3224 {
e421922f 3225 // pszText is not const, hence the cast
c9f78968 3226 lvItem.pszText = (wxChar *)info.m_text.wx_str();
0b5efdc7 3227 if ( lvItem.pszText )
8ecd5de2 3228 lvItem.cchTextMax = info.m_text.length();
0b5efdc7
VZ
3229 else
3230 lvItem.cchTextMax = 0;
3231 }
acb62b84 3232 }
0b5efdc7 3233 if (info.m_mask & wxLIST_MASK_IMAGE)
edccf428 3234 lvItem.mask |= LVIF_IMAGE;
2bda0e17
KB
3235}
3236
e64658ed
VZ
3237static void wxConvertToMSWListCol(HWND hwndList,
3238 int col,
3239 const wxListItem& item,
6f806543
VZ
3240 LV_COLUMN& lvCol)
3241{
3242 wxZeroMemory(lvCol);
3243
3244 if ( item.m_mask & wxLIST_MASK_TEXT )
3245 {
3246 lvCol.mask |= LVCF_TEXT;
c9f78968 3247 lvCol.pszText = (wxChar *)item.m_text.wx_str(); // cast is safe
6f806543
VZ
3248 }
3249
3250 if ( item.m_mask & wxLIST_MASK_FORMAT )
3251 {
3252 lvCol.mask |= LVCF_FMT;
3253
3254 if ( item.m_format == wxLIST_FORMAT_LEFT )
3255 lvCol.fmt = LVCFMT_LEFT;
3256 else if ( item.m_format == wxLIST_FORMAT_RIGHT )
3257 lvCol.fmt = LVCFMT_RIGHT;
3258 else if ( item.m_format == wxLIST_FORMAT_CENTRE )
3259 lvCol.fmt = LVCFMT_CENTER;
3260 }
3261
3262 if ( item.m_mask & wxLIST_MASK_WIDTH )
3263 {
3264 lvCol.mask |= LVCF_WIDTH;
3265 if ( item.m_width == wxLIST_AUTOSIZE)
3266 lvCol.cx = LVSCW_AUTOSIZE;
3267 else if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER)
3268 lvCol.cx = LVSCW_AUTOSIZE_USEHEADER;
3269 else
3270 lvCol.cx = item.m_width;
3271 }
3272
5b59df83
VZ
3273 // see comment at the end of wxListCtrl::GetColumn()
3274#ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
6f806543
VZ
3275 if ( item.m_mask & wxLIST_MASK_IMAGE )
3276 {
5625d0d4 3277 if ( wxApp::GetComCtl32Version() >= 470 )
6f806543 3278 {
e64658ed 3279 lvCol.mask |= LVCF_IMAGE;
8b3a4016 3280
e64658ed 3281 // we use LVCFMT_BITMAP_ON_RIGHT because the images on the right
8b3a4016
VZ
3282 // seem to be generally nicer than on the left and the generic
3283 // version only draws them on the right (we don't have a flag to
3284 // specify the image location anyhow)
3285 //
3286 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
3287 // make any difference in my tests -- but maybe we should?
73bb5654 3288 if ( item.m_image != -1 )
e64658ed
VZ
3289 {
3290 // as we're going to overwrite the format field, get its
3291 // current value first -- unless we want to overwrite it anyhow
3292 if ( !(lvCol.mask & LVCF_FMT) )
3293 {
3294 LV_COLUMN lvColOld;
3295 wxZeroMemory(lvColOld);
3296 lvColOld.mask = LVCF_FMT;
3297 if ( ListView_GetColumn(hwndList, col, &lvColOld) )
3298 {
3299 lvCol.fmt = lvColOld.fmt;
3300 }
3301
3302 lvCol.mask |= LVCF_FMT;
3303 }
3304
73bb5654 3305 lvCol.fmt |= LVCFMT_BITMAP_ON_RIGHT | LVCFMT_IMAGE;
e64658ed 3306 }
8b3a4016 3307
6f806543
VZ
3308 lvCol.iImage = item.m_image;
3309 }
3310 //else: it doesn't support item images anyhow
3311 }
5b59df83 3312#endif // _WIN32_IE >= 0x0300
6f806543
VZ
3313}
3314
1e6feb95 3315#endif // wxUSE_LISTCTRL