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