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