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