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