]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
faa94f3e | 2 | // Name: src/generic/listctrl.cpp |
54442116 | 3 | // Purpose: generic implementation of wxListCtrl |
c801d85f | 4 | // Author: Robert Roebling |
cf1dfa6b | 5 | // Vadim Zeitlin (virtual list control support) |
0208334d RR |
6 | // Id: $Id$ |
7 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 8 | // Licence: wxWindows licence |
c801d85f KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
277ea1b4 DS |
11 | // TODO |
12 | // | |
13 | // 1. we need to implement searching/sorting for virtual controls somehow | |
ad486020 | 14 | // 2. when changing selection the lines are refreshed twice |
b54e41c5 | 15 | |
1370703e | 16 | |
1e6d9499 JS |
17 | // For compilers that support precompilation, includes "wx.h". |
18 | #include "wx/wxprec.h" | |
19 | ||
20 | #ifdef __BORLANDC__ | |
a2e5beee | 21 | #pragma hdrstop |
1e6d9499 JS |
22 | #endif |
23 | ||
1e6feb95 VZ |
24 | #if wxUSE_LISTCTRL |
25 | ||
e2bc1d69 | 26 | #include "wx/listctrl.h" |
2b5f62a0 | 27 | |
530a427a | 28 | #if ((!defined(__WXMSW__) && !(defined(__WXMAC__) && wxOSX_USE_CARBON)) || defined(__WXUNIVERSAL__)) |
2b5f62a0 VZ |
29 | // if we have a native version, its implementation file does all this |
30 | IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject) | |
31 | IMPLEMENT_DYNAMIC_CLASS(wxListView, wxListCtrl) | |
32 | IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent) | |
33 | ||
34 | IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxGenericListCtrl) | |
e409b62a | 35 | #endif |
c801d85f | 36 | |
2a673eb1 | 37 | #ifndef WX_PRECOMP |
e409b62a PC |
38 | #include "wx/scrolwin.h" |
39 | #include "wx/timer.h" | |
40 | #include "wx/settings.h" | |
2a673eb1 | 41 | #include "wx/dynarray.h" |
f7354d92 | 42 | #include "wx/dcclient.h" |
2a673eb1 | 43 | #include "wx/dcscreen.h" |
18680f86 | 44 | #include "wx/math.h" |
5595181f | 45 | #include "wx/settings.h" |
64374d1b | 46 | #include "wx/sizer.h" |
2a673eb1 WS |
47 | #endif |
48 | ||
e409b62a | 49 | #include "wx/imaglist.h" |
9c7f49f5 | 50 | #include "wx/renderer.h" |
74491934 | 51 | #include "wx/generic/private/listctrl.h" |
9c7f49f5 | 52 | |
f89d65ea | 53 | #ifdef __WXMAC__ |
33ddeaba | 54 | #include "wx/osx/private.h" |
530a427a SC |
55 | // for themeing support |
56 | #include <Carbon/Carbon.h> | |
f89d65ea | 57 | #endif |
e1d1f4bd | 58 | |
5d55031c VZ |
59 | #if defined(__WXMSW__) && !defined(__WXWINCE__) && !defined(__WXUNIVERSAL__) |
60 | #define "wx/msw/wrapwin.h" | |
61 | #endif | |
8158e0e1 | 62 | |
e1d1f4bd RD |
63 | // NOTE: If using the wxListBox visual attributes works everywhere then this can |
64 | // be removed, as well as the #else case below. | |
65 | #define _USE_VISATTR 0 | |
66 | ||
67 | ||
cf1dfa6b VZ |
68 | // ---------------------------------------------------------------------------- |
69 | // constants | |
70 | // ---------------------------------------------------------------------------- | |
71 | ||
f8252483 JS |
72 | // // the height of the header window (FIXME: should depend on its font!) |
73 | // static const int HEADER_HEIGHT = 23; | |
cf1dfa6b | 74 | |
cf1dfa6b | 75 | static const int SCROLL_UNIT_X = 15; |
cf1dfa6b VZ |
76 | |
77 | // the spacing between the lines (in report mode) | |
b54e41c5 | 78 | static const int LINE_SPACING = 0; |
cf1dfa6b VZ |
79 | |
80 | // extra margins around the text label | |
ccdbdc89 RR |
81 | #ifdef __WXGTK__ |
82 | static const int EXTRA_WIDTH = 6; | |
83 | #else | |
ae7cbd1a | 84 | static const int EXTRA_WIDTH = 4; |
ccdbdc89 | 85 | #endif |
43cb7161 RR |
86 | |
87 | #ifdef __WXGTK__ | |
88 | static const int EXTRA_HEIGHT = 6; | |
89 | #else | |
cf1dfa6b | 90 | static const int EXTRA_HEIGHT = 4; |
43cb7161 | 91 | #endif |
cf1dfa6b | 92 | |
13602ebd VZ |
93 | // margin between the window and the items |
94 | static const int EXTRA_BORDER_X = 2; | |
95 | static const int EXTRA_BORDER_Y = 2; | |
96 | ||
cf1dfa6b | 97 | // offset for the header window |
36a03ed8 RR |
98 | static const int HEADER_OFFSET_X = 0; |
99 | static const int HEADER_OFFSET_Y = 0; | |
cf1dfa6b | 100 | |
13602ebd VZ |
101 | // margin between rows of icons in [small] icon view |
102 | static const int MARGIN_BETWEEN_ROWS = 6; | |
103 | ||
cf1dfa6b VZ |
104 | // when autosizing the columns, add some slack |
105 | static const int AUTOSIZE_COL_MARGIN = 10; | |
106 | ||
98cb8dcb | 107 | // default width for the header columns |
cf1dfa6b | 108 | static const int WIDTH_COL_DEFAULT = 80; |
cf1dfa6b | 109 | |
06b781c7 VZ |
110 | // the space between the image and the text in the report mode |
111 | static const int IMAGE_MARGIN_IN_REPORT_MODE = 5; | |
112 | ||
936632d3 VZ |
113 | // the space between the image and the text in the report mode in header |
114 | static const int HEADER_IMAGE_MARGIN_IN_REPORT_MODE = 2; | |
115 | ||
efbb7287 | 116 | |
cf1dfa6b | 117 | |
ad486020 FM |
118 | // ---------------------------------------------------------------------------- |
119 | // arrays/list implementations | |
120 | // ---------------------------------------------------------------------------- | |
efbb7287 | 121 | |
2c1f73ee | 122 | #include "wx/listimpl.cpp" |
17a1ebd1 | 123 | WX_DEFINE_LIST(wxListItemDataList) |
2c1f73ee | 124 | |
f6bcfd97 | 125 | #include "wx/arrimpl.cpp" |
17a1ebd1 | 126 | WX_DEFINE_OBJARRAY(wxListLineDataArray) |
f6bcfd97 | 127 | |
24b9f055 | 128 | #include "wx/listimpl.cpp" |
17a1ebd1 | 129 | WX_DEFINE_LIST(wxListHeaderDataList) |
24b9f055 | 130 | |
efbb7287 | 131 | |
ad486020 FM |
132 | // ---------------------------------------------------------------------------- |
133 | // wxListItemData | |
134 | // ---------------------------------------------------------------------------- | |
c801d85f | 135 | |
850ed6e7 VZ |
136 | wxListItemData::~wxListItemData() |
137 | { | |
138 | // in the virtual list control the attributes are managed by the main | |
139 | // program, so don't delete them | |
140 | if ( !m_owner->IsVirtual() ) | |
850ed6e7 | 141 | delete m_attr; |
850ed6e7 VZ |
142 | |
143 | delete m_rect; | |
144 | } | |
145 | ||
cf1dfa6b | 146 | void wxListItemData::Init() |
c801d85f | 147 | { |
92976ab6 RR |
148 | m_image = -1; |
149 | m_data = 0; | |
cf1dfa6b | 150 | |
0530737d | 151 | m_attr = NULL; |
e1e955e1 | 152 | } |
c801d85f | 153 | |
cf1dfa6b | 154 | wxListItemData::wxListItemData(wxListMainWindow *owner) |
c801d85f | 155 | { |
cf1dfa6b | 156 | Init(); |
0530737d | 157 | |
cf1dfa6b VZ |
158 | m_owner = owner; |
159 | ||
850ed6e7 | 160 | if ( owner->InReportView() ) |
cf1dfa6b | 161 | m_rect = NULL; |
cf1dfa6b | 162 | else |
cf1dfa6b | 163 | m_rect = new wxRect; |
e1e955e1 | 164 | } |
c801d85f KB |
165 | |
166 | void wxListItemData::SetItem( const wxListItem &info ) | |
167 | { | |
cf1dfa6b | 168 | if ( info.m_mask & wxLIST_MASK_TEXT ) |
54442116 | 169 | SetText(info.m_text); |
cf1dfa6b | 170 | if ( info.m_mask & wxLIST_MASK_IMAGE ) |
54442116 | 171 | m_image = info.m_image; |
cf1dfa6b | 172 | if ( info.m_mask & wxLIST_MASK_DATA ) |
54442116 | 173 | m_data = info.m_data; |
0530737d VZ |
174 | |
175 | if ( info.HasAttributes() ) | |
176 | { | |
177 | if ( m_attr ) | |
c18fa7a4 | 178 | m_attr->AssignFrom(*info.GetAttributes()); |
0530737d VZ |
179 | else |
180 | m_attr = new wxListItemAttr(*info.GetAttributes()); | |
181 | } | |
182 | ||
cf1dfa6b VZ |
183 | if ( m_rect ) |
184 | { | |
185 | m_rect->x = | |
186 | m_rect->y = | |
187 | m_rect->height = 0; | |
188 | m_rect->width = info.m_width; | |
189 | } | |
e1e955e1 | 190 | } |
c801d85f | 191 | |
debe6624 | 192 | void wxListItemData::SetPosition( int x, int y ) |
c801d85f | 193 | { |
cf1dfa6b VZ |
194 | wxCHECK_RET( m_rect, _T("unexpected SetPosition() call") ); |
195 | ||
196 | m_rect->x = x; | |
197 | m_rect->y = y; | |
e1e955e1 | 198 | } |
c801d85f | 199 | |
1e6d9499 | 200 | void wxListItemData::SetSize( int width, int height ) |
c801d85f | 201 | { |
cf1dfa6b | 202 | wxCHECK_RET( m_rect, _T("unexpected SetSize() call") ); |
c801d85f | 203 | |
cf1dfa6b VZ |
204 | if ( width != -1 ) |
205 | m_rect->width = width; | |
206 | if ( height != -1 ) | |
207 | m_rect->height = height; | |
e1e955e1 | 208 | } |
c801d85f | 209 | |
debe6624 | 210 | bool wxListItemData::IsHit( int x, int y ) const |
c801d85f | 211 | { |
ca65c044 | 212 | wxCHECK_MSG( m_rect, false, _T("can't be called in this mode") ); |
cf1dfa6b | 213 | |
22a35096 | 214 | return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Contains(x, y); |
e1e955e1 | 215 | } |
c801d85f | 216 | |
fd9811b1 | 217 | int wxListItemData::GetX() const |
c801d85f | 218 | { |
cf1dfa6b VZ |
219 | wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") ); |
220 | ||
221 | return m_rect->x; | |
e1e955e1 | 222 | } |
c801d85f | 223 | |
fd9811b1 | 224 | int wxListItemData::GetY() const |
c801d85f | 225 | { |
cf1dfa6b VZ |
226 | wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") ); |
227 | ||
228 | return m_rect->y; | |
e1e955e1 | 229 | } |
c801d85f | 230 | |
fd9811b1 | 231 | int wxListItemData::GetWidth() const |
c801d85f | 232 | { |
cf1dfa6b VZ |
233 | wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") ); |
234 | ||
235 | return m_rect->width; | |
e1e955e1 | 236 | } |
c801d85f | 237 | |
fd9811b1 | 238 | int wxListItemData::GetHeight() const |
c801d85f | 239 | { |
cf1dfa6b | 240 | wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") ); |
c801d85f | 241 | |
cf1dfa6b | 242 | return m_rect->height; |
e1e955e1 | 243 | } |
c801d85f | 244 | |
0530737d | 245 | void wxListItemData::GetItem( wxListItem &info ) const |
c801d85f | 246 | { |
39a7f085 VZ |
247 | long mask = info.m_mask; |
248 | if ( !mask ) | |
39a7f085 VZ |
249 | // by default, get everything for backwards compatibility |
250 | mask = -1; | |
39a7f085 VZ |
251 | |
252 | if ( mask & wxLIST_MASK_TEXT ) | |
253 | info.m_text = m_text; | |
254 | if ( mask & wxLIST_MASK_IMAGE ) | |
255 | info.m_image = m_image; | |
256 | if ( mask & wxLIST_MASK_DATA ) | |
257 | info.m_data = m_data; | |
c801d85f | 258 | |
0530737d VZ |
259 | if ( m_attr ) |
260 | { | |
261 | if ( m_attr->HasTextColour() ) | |
262 | info.SetTextColour(m_attr->GetTextColour()); | |
263 | if ( m_attr->HasBackgroundColour() ) | |
264 | info.SetBackgroundColour(m_attr->GetBackgroundColour()); | |
265 | if ( m_attr->HasFont() ) | |
266 | info.SetFont(m_attr->GetFont()); | |
267 | } | |
e1e955e1 | 268 | } |
c801d85f KB |
269 | |
270 | //----------------------------------------------------------------------------- | |
271 | // wxListHeaderData | |
272 | //----------------------------------------------------------------------------- | |
273 | ||
0a816d95 | 274 | void wxListHeaderData::Init() |
c801d85f | 275 | { |
92976ab6 | 276 | m_mask = 0; |
0a816d95 | 277 | m_image = -1; |
92976ab6 RR |
278 | m_format = 0; |
279 | m_width = 0; | |
280 | m_xpos = 0; | |
281 | m_ypos = 0; | |
282 | m_height = 0; | |
df0edf44 | 283 | m_state = 0; |
e1e955e1 | 284 | } |
c801d85f | 285 | |
0a816d95 VZ |
286 | wxListHeaderData::wxListHeaderData() |
287 | { | |
288 | Init(); | |
289 | } | |
290 | ||
c801d85f KB |
291 | wxListHeaderData::wxListHeaderData( const wxListItem &item ) |
292 | { | |
0a816d95 VZ |
293 | Init(); |
294 | ||
92976ab6 | 295 | SetItem( item ); |
e1e955e1 | 296 | } |
c801d85f KB |
297 | |
298 | void wxListHeaderData::SetItem( const wxListItem &item ) | |
299 | { | |
92976ab6 | 300 | m_mask = item.m_mask; |
cf1dfa6b | 301 | |
0a816d95 VZ |
302 | if ( m_mask & wxLIST_MASK_TEXT ) |
303 | m_text = item.m_text; | |
304 | ||
305 | if ( m_mask & wxLIST_MASK_IMAGE ) | |
306 | m_image = item.m_image; | |
307 | ||
308 | if ( m_mask & wxLIST_MASK_FORMAT ) | |
309 | m_format = item.m_format; | |
310 | ||
311 | if ( m_mask & wxLIST_MASK_WIDTH ) | |
312 | SetWidth(item.m_width); | |
6fef2483 | 313 | |
df0edf44 KO |
314 | if ( m_mask & wxLIST_MASK_STATE ) |
315 | SetState(item.m_state); | |
e1e955e1 | 316 | } |
c801d85f | 317 | |
debe6624 | 318 | void wxListHeaderData::SetPosition( int x, int y ) |
c801d85f | 319 | { |
92976ab6 RR |
320 | m_xpos = x; |
321 | m_ypos = y; | |
e1e955e1 | 322 | } |
c801d85f | 323 | |
debe6624 | 324 | void wxListHeaderData::SetHeight( int h ) |
c801d85f | 325 | { |
92976ab6 | 326 | m_height = h; |
e1e955e1 | 327 | } |
c801d85f | 328 | |
debe6624 | 329 | void wxListHeaderData::SetWidth( int w ) |
c801d85f | 330 | { |
98cb8dcb | 331 | m_width = w < 0 ? WIDTH_COL_DEFAULT : w; |
e1e955e1 | 332 | } |
c801d85f | 333 | |
df0edf44 KO |
334 | void wxListHeaderData::SetState( int flag ) |
335 | { | |
336 | m_state = flag; | |
337 | } | |
338 | ||
debe6624 | 339 | void wxListHeaderData::SetFormat( int format ) |
c801d85f | 340 | { |
92976ab6 | 341 | m_format = format; |
e1e955e1 | 342 | } |
c801d85f | 343 | |
fd9811b1 | 344 | bool wxListHeaderData::HasImage() const |
c801d85f | 345 | { |
0a816d95 | 346 | return m_image != -1; |
e1e955e1 | 347 | } |
c801d85f | 348 | |
c801d85f KB |
349 | bool wxListHeaderData::IsHit( int x, int y ) const |
350 | { | |
92976ab6 | 351 | return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height)); |
e1e955e1 | 352 | } |
c801d85f | 353 | |
0a816d95 | 354 | void wxListHeaderData::GetItem( wxListItem& item ) |
c801d85f | 355 | { |
92976ab6 RR |
356 | item.m_mask = m_mask; |
357 | item.m_text = m_text; | |
358 | item.m_image = m_image; | |
359 | item.m_format = m_format; | |
360 | item.m_width = m_width; | |
df0edf44 | 361 | item.m_state = m_state; |
e1e955e1 | 362 | } |
c801d85f | 363 | |
fd9811b1 | 364 | int wxListHeaderData::GetImage() const |
c801d85f | 365 | { |
92976ab6 | 366 | return m_image; |
e1e955e1 | 367 | } |
c801d85f | 368 | |
fd9811b1 | 369 | int wxListHeaderData::GetWidth() const |
c801d85f | 370 | { |
92976ab6 | 371 | return m_width; |
e1e955e1 | 372 | } |
c801d85f | 373 | |
fd9811b1 | 374 | int wxListHeaderData::GetFormat() const |
c801d85f | 375 | { |
92976ab6 | 376 | return m_format; |
e1e955e1 | 377 | } |
c801d85f | 378 | |
df0edf44 KO |
379 | int wxListHeaderData::GetState() const |
380 | { | |
381 | return m_state; | |
382 | } | |
383 | ||
c801d85f KB |
384 | //----------------------------------------------------------------------------- |
385 | // wxListLineData | |
386 | //----------------------------------------------------------------------------- | |
387 | ||
cf1dfa6b VZ |
388 | inline int wxListLineData::GetMode() const |
389 | { | |
b54e41c5 | 390 | return m_owner->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE; |
cf1dfa6b | 391 | } |
c801d85f | 392 | |
cf1dfa6b | 393 | inline bool wxListLineData::InReportView() const |
c801d85f | 394 | { |
cf1dfa6b | 395 | return m_owner->HasFlag(wxLC_REPORT); |
e1e955e1 | 396 | } |
c801d85f | 397 | |
b54e41c5 | 398 | inline bool wxListLineData::IsVirtual() const |
c801d85f | 399 | { |
cf1dfa6b VZ |
400 | return m_owner->IsVirtual(); |
401 | } | |
2c1f73ee | 402 | |
5cd89174 | 403 | wxListLineData::wxListLineData( wxListMainWindow *owner ) |
cf1dfa6b VZ |
404 | { |
405 | m_owner = owner; | |
2c1f73ee | 406 | |
cf1dfa6b | 407 | if ( InReportView() ) |
cf1dfa6b | 408 | m_gi = NULL; |
cf1dfa6b | 409 | else // !report |
cf1dfa6b | 410 | m_gi = new GeometryInfo; |
f6bcfd97 | 411 | |
ca65c044 | 412 | m_highlighted = false; |
f6bcfd97 | 413 | |
cf1dfa6b VZ |
414 | InitItems( GetMode() == wxLC_REPORT ? m_owner->GetColumnCount() : 1 ); |
415 | } | |
f6bcfd97 | 416 | |
cf1dfa6b VZ |
417 | void wxListLineData::CalculateSize( wxDC *dc, int spacing ) |
418 | { | |
222ed1d6 | 419 | wxListItemDataList::compatibility_iterator node = m_items.GetFirst(); |
cf1dfa6b VZ |
420 | wxCHECK_RET( node, _T("no subitems at all??") ); |
421 | ||
422 | wxListItemData *item = node->GetData(); | |
423 | ||
94dd23ae VZ |
424 | wxString s; |
425 | wxCoord lw, lh; | |
426 | ||
cf1dfa6b VZ |
427 | switch ( GetMode() ) |
428 | { | |
429 | case wxLC_ICON: | |
430 | case wxLC_SMALL_ICON: | |
94dd23ae | 431 | m_gi->m_rectAll.width = spacing; |
cf1dfa6b | 432 | |
94dd23ae | 433 | s = item->GetText(); |
cf1dfa6b | 434 | |
94dd23ae VZ |
435 | if ( s.empty() ) |
436 | { | |
437 | lh = | |
438 | m_gi->m_rectLabel.width = | |
439 | m_gi->m_rectLabel.height = 0; | |
92976ab6 | 440 | } |
94dd23ae | 441 | else // has label |
92976ab6 | 442 | { |
92976ab6 | 443 | dc->GetTextExtent( s, &lw, &lh ); |
cf1dfa6b VZ |
444 | lw += EXTRA_WIDTH; |
445 | lh += EXTRA_HEIGHT; | |
2c1f73ee | 446 | |
94dd23ae VZ |
447 | m_gi->m_rectAll.height = spacing + lh; |
448 | if (lw > spacing) | |
449 | m_gi->m_rectAll.width = lw; | |
450 | ||
cf1dfa6b VZ |
451 | m_gi->m_rectLabel.width = lw; |
452 | m_gi->m_rectLabel.height = lh; | |
94dd23ae | 453 | } |
f6bcfd97 | 454 | |
94dd23ae VZ |
455 | if (item->HasImage()) |
456 | { | |
457 | int w, h; | |
458 | m_owner->GetImageSize( item->GetImage(), w, h ); | |
459 | m_gi->m_rectIcon.width = w + 8; | |
460 | m_gi->m_rectIcon.height = h + 8; | |
461 | ||
462 | if ( m_gi->m_rectIcon.width > m_gi->m_rectAll.width ) | |
463 | m_gi->m_rectAll.width = m_gi->m_rectIcon.width; | |
464 | if ( m_gi->m_rectIcon.height + lh > m_gi->m_rectAll.height - 4 ) | |
465 | m_gi->m_rectAll.height = m_gi->m_rectIcon.height + lh + 4; | |
466 | } | |
f6bcfd97 | 467 | |
94dd23ae VZ |
468 | if ( item->HasText() ) |
469 | { | |
470 | m_gi->m_rectHighlight.width = m_gi->m_rectLabel.width; | |
471 | m_gi->m_rectHighlight.height = m_gi->m_rectLabel.height; | |
472 | } | |
473 | else // no text, highlight the icon | |
474 | { | |
475 | m_gi->m_rectHighlight.width = m_gi->m_rectIcon.width; | |
476 | m_gi->m_rectHighlight.height = m_gi->m_rectIcon.height; | |
477 | } | |
478 | break; | |
479 | ||
480 | case wxLC_LIST: | |
481 | s = item->GetTextForMeasuring(); | |
482 | ||
483 | dc->GetTextExtent( s, &lw, &lh ); | |
94dd23ae VZ |
484 | lw += EXTRA_WIDTH; |
485 | lh += EXTRA_HEIGHT; | |
486 | ||
487 | m_gi->m_rectLabel.width = lw; | |
488 | m_gi->m_rectLabel.height = lh; | |
489 | ||
490 | m_gi->m_rectAll.width = lw; | |
491 | m_gi->m_rectAll.height = lh; | |
f6bcfd97 | 492 | |
94dd23ae VZ |
493 | if (item->HasImage()) |
494 | { | |
495 | int w, h; | |
496 | m_owner->GetImageSize( item->GetImage(), w, h ); | |
497 | m_gi->m_rectIcon.width = w; | |
498 | m_gi->m_rectIcon.height = h; | |
499 | ||
500 | m_gi->m_rectAll.width += 4 + w; | |
501 | if (h > m_gi->m_rectAll.height) | |
502 | m_gi->m_rectAll.height = h; | |
92976ab6 | 503 | } |
94dd23ae VZ |
504 | |
505 | m_gi->m_rectHighlight.width = m_gi->m_rectAll.width; | |
506 | m_gi->m_rectHighlight.height = m_gi->m_rectAll.height; | |
92976ab6 | 507 | break; |
2c1f73ee | 508 | |
cf1dfa6b VZ |
509 | case wxLC_REPORT: |
510 | wxFAIL_MSG( _T("unexpected call to SetSize") ); | |
92976ab6 | 511 | break; |
cf1dfa6b VZ |
512 | |
513 | default: | |
514 | wxFAIL_MSG( _T("unknown mode") ); | |
277ea1b4 | 515 | break; |
e1e955e1 | 516 | } |
e1e955e1 | 517 | } |
c801d85f | 518 | |
13602ebd | 519 | void wxListLineData::SetPosition( int x, int y, int spacing ) |
c801d85f | 520 | { |
222ed1d6 | 521 | wxListItemDataList::compatibility_iterator node = m_items.GetFirst(); |
cf1dfa6b | 522 | wxCHECK_RET( node, _T("no subitems at all??") ); |
2c1f73ee | 523 | |
cf1dfa6b | 524 | wxListItemData *item = node->GetData(); |
2c1f73ee | 525 | |
cf1dfa6b | 526 | switch ( GetMode() ) |
0b855868 RR |
527 | { |
528 | case wxLC_ICON: | |
cf1dfa6b VZ |
529 | case wxLC_SMALL_ICON: |
530 | m_gi->m_rectAll.x = x; | |
531 | m_gi->m_rectAll.y = y; | |
532 | ||
533 | if ( item->HasImage() ) | |
0b855868 | 534 | { |
c2569f41 VZ |
535 | m_gi->m_rectIcon.x = m_gi->m_rectAll.x + 4 + |
536 | (m_gi->m_rectAll.width - m_gi->m_rectIcon.width) / 2; | |
cf1dfa6b | 537 | m_gi->m_rectIcon.y = m_gi->m_rectAll.y + 4; |
0b855868 | 538 | } |
cf1dfa6b VZ |
539 | |
540 | if ( item->HasText() ) | |
0b855868 | 541 | { |
cf1dfa6b | 542 | if (m_gi->m_rectAll.width > spacing) |
ccdbdc89 | 543 | m_gi->m_rectLabel.x = m_gi->m_rectAll.x + (EXTRA_WIDTH/2); |
5d25c050 | 544 | else |
ccdbdc89 | 545 | m_gi->m_rectLabel.x = m_gi->m_rectAll.x + (EXTRA_WIDTH/2) + (spacing / 2) - (m_gi->m_rectLabel.width / 2); |
cf1dfa6b | 546 | m_gi->m_rectLabel.y = m_gi->m_rectAll.y + m_gi->m_rectAll.height + 2 - m_gi->m_rectLabel.height; |
b54e41c5 VZ |
547 | m_gi->m_rectHighlight.x = m_gi->m_rectLabel.x - 2; |
548 | m_gi->m_rectHighlight.y = m_gi->m_rectLabel.y - 2; | |
bffa1c77 | 549 | } |
cf1dfa6b | 550 | else // no text, highlight the icon |
0b855868 | 551 | { |
b54e41c5 VZ |
552 | m_gi->m_rectHighlight.x = m_gi->m_rectIcon.x - 4; |
553 | m_gi->m_rectHighlight.y = m_gi->m_rectIcon.y - 4; | |
bffa1c77 | 554 | } |
0b855868 | 555 | break; |
c801d85f | 556 | |
cf1dfa6b VZ |
557 | case wxLC_LIST: |
558 | m_gi->m_rectAll.x = x; | |
559 | m_gi->m_rectAll.y = y; | |
c801d85f | 560 | |
b54e41c5 VZ |
561 | m_gi->m_rectHighlight.x = m_gi->m_rectAll.x; |
562 | m_gi->m_rectHighlight.y = m_gi->m_rectAll.y; | |
cf1dfa6b | 563 | m_gi->m_rectLabel.y = m_gi->m_rectAll.y + 2; |
c801d85f | 564 | |
cf1dfa6b VZ |
565 | if (item->HasImage()) |
566 | { | |
567 | m_gi->m_rectIcon.x = m_gi->m_rectAll.x + 2; | |
568 | m_gi->m_rectIcon.y = m_gi->m_rectAll.y + 2; | |
ccdbdc89 | 569 | m_gi->m_rectLabel.x = m_gi->m_rectAll.x + 4 + (EXTRA_WIDTH/2) + m_gi->m_rectIcon.width; |
cf1dfa6b VZ |
570 | } |
571 | else | |
572 | { | |
ccdbdc89 | 573 | m_gi->m_rectLabel.x = m_gi->m_rectAll.x + (EXTRA_WIDTH/2); |
cf1dfa6b VZ |
574 | } |
575 | break; | |
c801d85f | 576 | |
cf1dfa6b VZ |
577 | case wxLC_REPORT: |
578 | wxFAIL_MSG( _T("unexpected call to SetPosition") ); | |
579 | break; | |
c801d85f | 580 | |
cf1dfa6b VZ |
581 | default: |
582 | wxFAIL_MSG( _T("unknown mode") ); | |
277ea1b4 | 583 | break; |
cf1dfa6b | 584 | } |
e1e955e1 | 585 | } |
c801d85f | 586 | |
debe6624 | 587 | void wxListLineData::InitItems( int num ) |
c801d85f | 588 | { |
2c1f73ee | 589 | for (int i = 0; i < num; i++) |
cf1dfa6b | 590 | m_items.Append( new wxListItemData(m_owner) ); |
e1e955e1 | 591 | } |
c801d85f | 592 | |
debe6624 | 593 | void wxListLineData::SetItem( int index, const wxListItem &info ) |
c801d85f | 594 | { |
222ed1d6 | 595 | wxListItemDataList::compatibility_iterator node = m_items.Item( index ); |
1370703e VZ |
596 | wxCHECK_RET( node, _T("invalid column index in SetItem") ); |
597 | ||
598 | wxListItemData *item = node->GetData(); | |
599 | item->SetItem( info ); | |
e1e955e1 | 600 | } |
c801d85f | 601 | |
1e6d9499 | 602 | void wxListLineData::GetItem( int index, wxListItem &info ) |
c801d85f | 603 | { |
222ed1d6 | 604 | wxListItemDataList::compatibility_iterator node = m_items.Item( index ); |
139adb6a RR |
605 | if (node) |
606 | { | |
2c1f73ee | 607 | wxListItemData *item = node->GetData(); |
139adb6a RR |
608 | item->GetItem( info ); |
609 | } | |
e1e955e1 | 610 | } |
c801d85f | 611 | |
54442116 | 612 | wxString wxListLineData::GetText(int index) const |
c801d85f | 613 | { |
54442116 VZ |
614 | wxString s; |
615 | ||
222ed1d6 | 616 | wxListItemDataList::compatibility_iterator node = m_items.Item( index ); |
139adb6a RR |
617 | if (node) |
618 | { | |
2c1f73ee | 619 | wxListItemData *item = node->GetData(); |
54442116 | 620 | s = item->GetText(); |
139adb6a | 621 | } |
54442116 VZ |
622 | |
623 | return s; | |
e1e955e1 | 624 | } |
c801d85f | 625 | |
fbfb8bcc | 626 | void wxListLineData::SetText( int index, const wxString& s ) |
c801d85f | 627 | { |
222ed1d6 | 628 | wxListItemDataList::compatibility_iterator node = m_items.Item( index ); |
139adb6a RR |
629 | if (node) |
630 | { | |
2c1f73ee | 631 | wxListItemData *item = node->GetData(); |
139adb6a RR |
632 | item->SetText( s ); |
633 | } | |
e1e955e1 | 634 | } |
c801d85f | 635 | |
cf1dfa6b | 636 | void wxListLineData::SetImage( int index, int image ) |
c801d85f | 637 | { |
222ed1d6 | 638 | wxListItemDataList::compatibility_iterator node = m_items.Item( index ); |
cf1dfa6b VZ |
639 | wxCHECK_RET( node, _T("invalid column index in SetImage()") ); |
640 | ||
641 | wxListItemData *item = node->GetData(); | |
642 | item->SetImage(image); | |
643 | } | |
644 | ||
645 | int wxListLineData::GetImage( int index ) const | |
646 | { | |
222ed1d6 | 647 | wxListItemDataList::compatibility_iterator node = m_items.Item( index ); |
cf1dfa6b VZ |
648 | wxCHECK_MSG( node, -1, _T("invalid column index in GetImage()") ); |
649 | ||
650 | wxListItemData *item = node->GetData(); | |
651 | return item->GetImage(); | |
e1e955e1 | 652 | } |
c801d85f | 653 | |
6c02c329 VZ |
654 | wxListItemAttr *wxListLineData::GetAttr() const |
655 | { | |
222ed1d6 | 656 | wxListItemDataList::compatibility_iterator node = m_items.GetFirst(); |
6c02c329 VZ |
657 | wxCHECK_MSG( node, NULL, _T("invalid column index in GetAttr()") ); |
658 | ||
659 | wxListItemData *item = node->GetData(); | |
660 | return item->GetAttr(); | |
661 | } | |
662 | ||
663 | void wxListLineData::SetAttr(wxListItemAttr *attr) | |
664 | { | |
222ed1d6 | 665 | wxListItemDataList::compatibility_iterator node = m_items.GetFirst(); |
6c02c329 VZ |
666 | wxCHECK_RET( node, _T("invalid column index in SetAttr()") ); |
667 | ||
668 | wxListItemData *item = node->GetData(); | |
669 | item->SetAttr(attr); | |
670 | } | |
671 | ||
0e980f91 | 672 | bool wxListLineData::SetAttributes(wxDC *dc, |
0530737d | 673 | const wxListItemAttr *attr, |
0e980f91 | 674 | bool highlighted) |
0530737d | 675 | { |
0e980f91 VZ |
676 | wxWindow *listctrl = m_owner->GetParent(); |
677 | ||
678 | // fg colour | |
679 | ||
680 | // don't use foreground colour for drawing highlighted items - this might | |
470caaf9 VZ |
681 | // make them completely invisible (and there is no way to do bit |
682 | // arithmetics on wxColour, unfortunately) | |
0e980f91 VZ |
683 | wxColour colText; |
684 | if ( highlighted ) | |
4b8fa634 | 685 | #ifdef __WXMAC__ |
d6d8b172 | 686 | { |
ed9a7a63 | 687 | if (m_owner->HasFocus() |
569bb120 | 688 | #if !defined(__WXUNIVERSAL__) && wxOSX_USE_CARBON |
ed9a7a63 KO |
689 | && IsControlActive( (ControlRef)m_owner->GetHandle() ) |
690 | #endif | |
691 | ) | |
d6d8b172 KO |
692 | colText = *wxWHITE; |
693 | else | |
694 | colText = *wxBLACK; | |
695 | } | |
4b8fa634 | 696 | #else |
a756f210 | 697 | colText = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); |
4b8fa634 | 698 | #endif |
277ea1b4 DS |
699 | else if ( attr && attr->HasTextColour() ) |
700 | colText = attr->GetTextColour(); | |
0530737d | 701 | else |
277ea1b4 | 702 | colText = listctrl->GetForegroundColour(); |
0530737d | 703 | |
0e980f91 VZ |
704 | dc->SetTextForeground(colText); |
705 | ||
706 | // font | |
707 | wxFont font; | |
0530737d | 708 | if ( attr && attr->HasFont() ) |
0e980f91 | 709 | font = attr->GetFont(); |
0530737d | 710 | else |
0e980f91 | 711 | font = listctrl->GetFont(); |
0e980f91 VZ |
712 | |
713 | dc->SetFont(font); | |
714 | ||
715 | // bg colour | |
716 | bool hasBgCol = attr && attr->HasBackgroundColour(); | |
717 | if ( highlighted || hasBgCol ) | |
718 | { | |
719 | if ( highlighted ) | |
49ecb029 | 720 | dc->SetBrush( *m_owner->GetHighlightBrush() ); |
0e980f91 | 721 | else |
04ee05f9 | 722 | dc->SetBrush(wxBrush(attr->GetBackgroundColour(), wxBRUSHSTYLE_SOLID)); |
0e980f91 VZ |
723 | |
724 | dc->SetPen( *wxTRANSPARENT_PEN ); | |
725 | ||
ca65c044 | 726 | return true; |
0e980f91 VZ |
727 | } |
728 | ||
ca65c044 | 729 | return false; |
0530737d VZ |
730 | } |
731 | ||
5cd89174 VZ |
732 | void wxListLineData::Draw( wxDC *dc ) |
733 | { | |
222ed1d6 | 734 | wxListItemDataList::compatibility_iterator node = m_items.GetFirst(); |
5cd89174 VZ |
735 | wxCHECK_RET( node, _T("no subitems at all??") ); |
736 | ||
0e980f91 VZ |
737 | bool highlighted = IsHighlighted(); |
738 | ||
739 | wxListItemAttr *attr = GetAttr(); | |
740 | ||
741 | if ( SetAttributes(dc, attr, highlighted) ) | |
df0edf44 | 742 | #if ( !defined(__WXGTK20__) && !defined(__WXMAC__) ) |
ccdbdc89 | 743 | { |
0e980f91 | 744 | dc->DrawRectangle( m_gi->m_rectHighlight ); |
ccdbdc89 RR |
745 | } |
746 | #else | |
747 | { | |
748 | if (highlighted) | |
749 | { | |
05d97538 | 750 | int flags = wxCONTROL_SELECTED; |
ed9a7a63 | 751 | if (m_owner->HasFocus() |
569bb120 | 752 | #if defined( __WXMAC__ ) && !defined(__WXUNIVERSAL__) && wxOSX_USE_CARBON |
ed9a7a63 KO |
753 | && IsControlActive( (ControlRef)m_owner->GetHandle() ) |
754 | #endif | |
755 | ) | |
05d97538 RR |
756 | flags |= wxCONTROL_FOCUSED; |
757 | wxRendererNative::Get().DrawItemSelectionRect( m_owner, *dc, m_gi->m_rectHighlight, flags ); | |
6fef2483 | 758 | |
ccdbdc89 RR |
759 | } |
760 | else | |
761 | { | |
762 | dc->DrawRectangle( m_gi->m_rectHighlight ); | |
763 | } | |
764 | } | |
765 | #endif | |
0e980f91 | 766 | |
94dd23ae VZ |
767 | // just for debugging to better see where the items are |
768 | #if 0 | |
769 | dc->SetPen(*wxRED_PEN); | |
770 | dc->SetBrush(*wxTRANSPARENT_BRUSH); | |
771 | dc->DrawRectangle( m_gi->m_rectAll ); | |
772 | dc->SetPen(*wxGREEN_PEN); | |
773 | dc->DrawRectangle( m_gi->m_rectIcon ); | |
277ea1b4 | 774 | #endif |
94dd23ae | 775 | |
5cd89174 VZ |
776 | wxListItemData *item = node->GetData(); |
777 | if (item->HasImage()) | |
778 | { | |
94dd23ae VZ |
779 | // centre the image inside our rectangle, this looks nicer when items |
780 | // ae aligned in a row | |
781 | const wxRect& rectIcon = m_gi->m_rectIcon; | |
782 | ||
783 | m_owner->DrawImage(item->GetImage(), dc, rectIcon.x, rectIcon.y); | |
5cd89174 VZ |
784 | } |
785 | ||
786 | if (item->HasText()) | |
787 | { | |
94dd23ae | 788 | const wxRect& rectLabel = m_gi->m_rectLabel; |
06b781c7 VZ |
789 | |
790 | wxDCClipper clipper(*dc, rectLabel); | |
94dd23ae | 791 | dc->DrawText(item->GetText(), rectLabel.x, rectLabel.y); |
5cd89174 VZ |
792 | } |
793 | } | |
794 | ||
795 | void wxListLineData::DrawInReportMode( wxDC *dc, | |
938b652b | 796 | const wxRect& rect, |
5cd89174 | 797 | const wxRect& rectHL, |
32fc355f RR |
798 | bool highlighted, |
799 | bool current ) | |
c801d85f | 800 | { |
6c02c329 VZ |
801 | // TODO: later we should support setting different attributes for |
802 | // different columns - to do it, just add "col" argument to | |
0e980f91 | 803 | // GetAttr() and move these lines into the loop below |
6c02c329 | 804 | wxListItemAttr *attr = GetAttr(); |
0e980f91 | 805 | if ( SetAttributes(dc, attr, highlighted) ) |
df0edf44 | 806 | #if ( !defined(__WXGTK20__) && !defined(__WXMAC__) ) |
ccdbdc89 | 807 | { |
5cd89174 | 808 | dc->DrawRectangle( rectHL ); |
5d55031c VZ |
809 | |
810 | wxUnusedVar(current); | |
ccdbdc89 RR |
811 | } |
812 | #else | |
813 | { | |
814 | if (highlighted) | |
815 | { | |
05d97538 | 816 | int flags = wxCONTROL_SELECTED; |
ce0cf2b8 | 817 | if (m_owner->HasFocus()) |
05d97538 | 818 | flags |= wxCONTROL_FOCUSED; |
32fc355f RR |
819 | if (current) |
820 | flags |= wxCONTROL_CURRENT; | |
05d97538 | 821 | wxRendererNative::Get().DrawItemSelectionRect( m_owner, *dc, rectHL, flags ); |
ccdbdc89 RR |
822 | } |
823 | else | |
824 | { | |
825 | dc->DrawRectangle( rectHL ); | |
826 | } | |
827 | } | |
828 | #endif | |
004fd0c8 | 829 | |
938b652b | 830 | wxCoord x = rect.x + HEADER_OFFSET_X, |
ebadbb76 | 831 | yMid = rect.y + rect.height/2; |
ccdbdc89 RR |
832 | #ifdef __WXGTK__ |
833 | // This probably needs to be done | |
834 | // on all platforms as the icons | |
835 | // otherwise nearly touch the border | |
836 | x += 2; | |
837 | #endif | |
cf1dfa6b | 838 | |
904ccf52 | 839 | size_t col = 0; |
222ed1d6 | 840 | for ( wxListItemDataList::compatibility_iterator node = m_items.GetFirst(); |
904ccf52 VZ |
841 | node; |
842 | node = node->GetNext(), col++ ) | |
5cd89174 VZ |
843 | { |
844 | wxListItemData *item = node->GetData(); | |
cf1dfa6b | 845 | |
904ccf52 | 846 | int width = m_owner->GetColumnWidth(col); |
5cd89174 | 847 | int xOld = x; |
06b781c7 | 848 | x += width; |
cf1dfa6b | 849 | |
f9f37ee2 VZ |
850 | const int wText = width - 8; |
851 | wxDCClipper clipper(*dc, xOld, rect.y, wText, rect.height); | |
852 | ||
5cd89174 VZ |
853 | if ( item->HasImage() ) |
854 | { | |
855 | int ix, iy; | |
5cd89174 | 856 | m_owner->GetImageSize( item->GetImage(), ix, iy ); |
ebadbb76 | 857 | m_owner->DrawImage( item->GetImage(), dc, xOld, yMid - iy/2 ); |
cf1dfa6b | 858 | |
06b781c7 | 859 | ix += IMAGE_MARGIN_IN_REPORT_MODE; |
cf1dfa6b | 860 | |
06b781c7 VZ |
861 | xOld += ix; |
862 | width -= ix; | |
863 | } | |
864 | ||
5cd89174 | 865 | if ( item->HasText() ) |
f9f37ee2 | 866 | DrawTextFormatted(dc, item->GetText(), col, xOld, yMid, wText); |
2b5f62a0 VZ |
867 | } |
868 | } | |
869 | ||
870 | void wxListLineData::DrawTextFormatted(wxDC *dc, | |
359fb29e | 871 | const wxString& textOrig, |
2b5f62a0 VZ |
872 | int col, |
873 | int x, | |
ebadbb76 | 874 | int yMid, |
2b5f62a0 VZ |
875 | int width) |
876 | { | |
359fb29e VZ |
877 | // we don't support displaying multiple lines currently (and neither does |
878 | // wxMSW FWIW) so just merge all the lines | |
879 | wxString text(textOrig); | |
880 | text.Replace(_T("\n"), _T(" ")); | |
881 | ||
ebadbb76 VZ |
882 | wxCoord w, h; |
883 | dc->GetTextExtent(text, &w, &h); | |
884 | ||
885 | const wxCoord y = yMid - (h + 1)/2; | |
886 | ||
887 | wxDCClipper clipper(*dc, x, y, width, h); | |
2b5f62a0 VZ |
888 | |
889 | // determine if the string can fit inside the current width | |
2b5f62a0 VZ |
890 | if (w <= width) |
891 | { | |
e1e1272f | 892 | // it can, draw it using the items alignment |
ebadbb76 | 893 | wxListItem item; |
2b5f62a0 | 894 | m_owner->GetColumn(col, item); |
e1e1272f VZ |
895 | switch ( item.GetAlign() ) |
896 | { | |
e1e1272f VZ |
897 | case wxLIST_FORMAT_LEFT: |
898 | // nothing to do | |
899 | break; | |
900 | ||
901 | case wxLIST_FORMAT_RIGHT: | |
902 | x += width - w; | |
903 | break; | |
904 | ||
905 | case wxLIST_FORMAT_CENTER: | |
906 | x += (width - w) / 2; | |
907 | break; | |
277ea1b4 DS |
908 | |
909 | default: | |
910 | wxFAIL_MSG( _T("unknown list item format") ); | |
911 | break; | |
e1e1272f VZ |
912 | } |
913 | ||
914 | dc->DrawText(text, x, y); | |
2b5f62a0 VZ |
915 | } |
916 | else // otherwise, truncate and add an ellipsis if possible | |
917 | { | |
918 | // determine the base width | |
ebadbb76 VZ |
919 | wxString ellipsis(wxT("...")); |
920 | wxCoord base_w; | |
2b5f62a0 VZ |
921 | dc->GetTextExtent(ellipsis, &base_w, &h); |
922 | ||
923 | // continue until we have enough space or only one character left | |
5175dbbd | 924 | wxCoord w_c, h_c; |
faa94f3e | 925 | size_t len = text.length(); |
ebadbb76 | 926 | wxString drawntext = text.Left(len); |
5175dbbd | 927 | while (len > 1) |
2b5f62a0 | 928 | { |
5175dbbd VS |
929 | dc->GetTextExtent(drawntext.Last(), &w_c, &h_c); |
930 | drawntext.RemoveLast(); | |
931 | len--; | |
932 | w -= w_c; | |
2b5f62a0 VZ |
933 | if (w + base_w <= width) |
934 | break; | |
2b5f62a0 VZ |
935 | } |
936 | ||
937 | // if still not enough space, remove ellipsis characters | |
faa94f3e | 938 | while (ellipsis.length() > 0 && w + base_w > width) |
2b5f62a0 | 939 | { |
faa94f3e | 940 | ellipsis = ellipsis.Left(ellipsis.length() - 1); |
2b5f62a0 | 941 | dc->GetTextExtent(ellipsis, &base_w, &h); |
5cd89174 | 942 | } |
2b5f62a0 VZ |
943 | |
944 | // now draw the text | |
945 | dc->DrawText(drawntext, x, y); | |
946 | dc->DrawText(ellipsis, x + w, y); | |
e1e955e1 | 947 | } |
e1e955e1 | 948 | } |
c801d85f | 949 | |
b54e41c5 | 950 | bool wxListLineData::Highlight( bool on ) |
c801d85f | 951 | { |
ca65c044 | 952 | wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") ); |
c801d85f | 953 | |
b54e41c5 | 954 | if ( on == m_highlighted ) |
ca65c044 | 955 | return false; |
c801d85f | 956 | |
b54e41c5 | 957 | m_highlighted = on; |
c801d85f | 958 | |
ca65c044 | 959 | return true; |
e1e955e1 | 960 | } |
c801d85f | 961 | |
b54e41c5 | 962 | void wxListLineData::ReverseHighlight( void ) |
c801d85f | 963 | { |
b54e41c5 | 964 | Highlight(!IsHighlighted()); |
e1e955e1 | 965 | } |
c801d85f KB |
966 | |
967 | //----------------------------------------------------------------------------- | |
968 | // wxListHeaderWindow | |
969 | //----------------------------------------------------------------------------- | |
970 | ||
c801d85f | 971 | BEGIN_EVENT_TABLE(wxListHeaderWindow,wxWindow) |
63852e78 RR |
972 | EVT_PAINT (wxListHeaderWindow::OnPaint) |
973 | EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse) | |
974 | EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus) | |
c801d85f KB |
975 | END_EVENT_TABLE() |
976 | ||
0a816d95 | 977 | void wxListHeaderWindow::Init() |
c801d85f | 978 | { |
d3b9f782 | 979 | m_currentCursor = NULL; |
ca65c044 WS |
980 | m_isDragging = false; |
981 | m_dirty = false; | |
06cd40a8 | 982 | m_sendSetColumnWidth = false; |
0a816d95 VZ |
983 | } |
984 | ||
985 | wxListHeaderWindow::wxListHeaderWindow() | |
986 | { | |
987 | Init(); | |
988 | ||
d3b9f782 VZ |
989 | m_owner = NULL; |
990 | m_resizeCursor = NULL; | |
e1e955e1 | 991 | } |
c801d85f | 992 | |
0a816d95 VZ |
993 | wxListHeaderWindow::wxListHeaderWindow( wxWindow *win, |
994 | wxWindowID id, | |
995 | wxListMainWindow *owner, | |
996 | const wxPoint& pos, | |
997 | const wxSize& size, | |
998 | long style, | |
999 | const wxString &name ) | |
1000 | : wxWindow( win, id, pos, size, style, name ) | |
c801d85f | 1001 | { |
0a816d95 VZ |
1002 | Init(); |
1003 | ||
63852e78 | 1004 | m_owner = owner; |
63852e78 | 1005 | m_resizeCursor = new wxCursor( wxCURSOR_SIZEWE ); |
f6bcfd97 | 1006 | |
35d4c967 | 1007 | #if _USE_VISATTR |
ca65c044 | 1008 | wxVisualAttributes attr = wxPanel::GetClassDefaultAttributes(); |
fa47d7a7 VS |
1009 | SetOwnForegroundColour( attr.colFg ); |
1010 | SetOwnBackgroundColour( attr.colBg ); | |
92a4e4de VZ |
1011 | if (!m_hasFont) |
1012 | SetOwnFont( attr.font ); | |
35d4c967 | 1013 | #else |
fa47d7a7 VS |
1014 | SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT)); |
1015 | SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)); | |
92a4e4de VZ |
1016 | if (!m_hasFont) |
1017 | SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT )); | |
35d4c967 | 1018 | #endif |
e1e955e1 | 1019 | } |
c801d85f | 1020 | |
0a816d95 | 1021 | wxListHeaderWindow::~wxListHeaderWindow() |
a367b9b3 | 1022 | { |
63852e78 | 1023 | delete m_resizeCursor; |
a367b9b3 JS |
1024 | } |
1025 | ||
2b5f62a0 VZ |
1026 | #ifdef __WXUNIVERSAL__ |
1027 | #include "wx/univ/renderer.h" | |
1028 | #include "wx/univ/theme.h" | |
1029 | #endif | |
1030 | ||
f6bcfd97 BP |
1031 | // shift the DC origin to match the position of the main window horz |
1032 | // scrollbar: this allows us to always use logical coords | |
1033 | void wxListHeaderWindow::AdjustDC(wxDC& dc) | |
1034 | { | |
06cd40a8 RR |
1035 | wxGenericListCtrl *parent = m_owner->GetListCtrl(); |
1036 | ||
f6bcfd97 | 1037 | int xpix; |
06cd40a8 | 1038 | parent->GetScrollPixelsPerUnit( &xpix, NULL ); |
f6bcfd97 | 1039 | |
5eefe029 | 1040 | int view_start; |
06cd40a8 | 1041 | parent->GetViewStart( &view_start, NULL ); |
5eefe029 | 1042 | |
5eefe029 RR |
1043 | |
1044 | int org_x = 0; | |
1045 | int org_y = 0; | |
1046 | dc.GetDeviceOrigin( &org_x, &org_y ); | |
f6bcfd97 BP |
1047 | |
1048 | // account for the horz scrollbar offset | |
807a572e RR |
1049 | #ifdef __WXGTK__ |
1050 | if (GetLayoutDirection() == wxLayout_RightToLeft) | |
1051 | { | |
1052 | // Maybe we just have to check for m_signX | |
1053 | // in the DC, but I leave the #ifdef __WXGTK__ | |
1054 | // for now | |
1055 | dc.SetDeviceOrigin( org_x + (view_start * xpix), org_y ); | |
1056 | } | |
1057 | else | |
1058 | #endif | |
1059 | dc.SetDeviceOrigin( org_x - (view_start * xpix), org_y ); | |
f6bcfd97 BP |
1060 | } |
1061 | ||
c801d85f KB |
1062 | void wxListHeaderWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
1063 | { | |
06cd40a8 | 1064 | wxGenericListCtrl *parent = m_owner->GetListCtrl(); |
7d7b3f69 | 1065 | |
63852e78 | 1066 | wxPaintDC dc( this ); |
10bd0724 | 1067 | |
f6bcfd97 | 1068 | AdjustDC( dc ); |
bffa1c77 | 1069 | |
63852e78 | 1070 | dc.SetFont( GetFont() ); |
bd8289c1 | 1071 | |
f6bcfd97 BP |
1072 | // width and height of the entire header window |
1073 | int w, h; | |
63852e78 | 1074 | GetClientSize( &w, &h ); |
06cd40a8 | 1075 | parent->CalcUnscrolledPosition(w, 0, &w, NULL); |
c801d85f | 1076 | |
04ee05f9 | 1077 | dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT); |
35d4c967 | 1078 | dc.SetTextForeground(GetForegroundColour()); |
ca65c044 | 1079 | |
cf1dfa6b | 1080 | int x = HEADER_OFFSET_X; |
63852e78 RR |
1081 | int numColumns = m_owner->GetColumnCount(); |
1082 | wxListItem item; | |
c5b7bb59 | 1083 | for ( int i = 0; i < numColumns && x < w; i++ ) |
63852e78 RR |
1084 | { |
1085 | m_owner->GetColumn( i, item ); | |
f6bcfd97 | 1086 | int wCol = item.m_width; |
f6bcfd97 | 1087 | |
277ea1b4 DS |
1088 | int cw = wCol; |
1089 | int ch = h; | |
277ea1b4 | 1090 | |
df0edf44 KO |
1091 | int flags = 0; |
1092 | if (!m_parent->IsEnabled()) | |
1093 | flags |= wxCONTROL_DISABLED; | |
1094 | ||
6fef2483 | 1095 | // NB: The code below is not really Mac-specific, but since we are close |
df0edf44 KO |
1096 | // to 2.8 release and I don't have time to test on other platforms, I |
1097 | // defined this only for wxMac. If this behavior is desired on | |
1098 | // other platforms, please go ahead and revise or remove the #ifdef. | |
1099 | #ifdef __WXMAC__ | |
6fef2483 | 1100 | if ( !m_owner->IsVirtual() && (item.m_mask & wxLIST_MASK_STATE) && |
df0edf44 KO |
1101 | (item.m_state & wxLIST_STATE_SELECTED) ) |
1102 | flags |= wxCONTROL_SELECTED; | |
1103 | #endif | |
1104 | ||
06cd40a8 RR |
1105 | if (i == 0) |
1106 | flags |= wxCONTROL_SPECIAL; // mark as first column | |
1107 | ||
9c7f49f5 VZ |
1108 | wxRendererNative::Get().DrawHeaderButton |
1109 | ( | |
1110 | this, | |
1111 | dc, | |
d108f236 | 1112 | wxRect(x, HEADER_OFFSET_Y, cw, ch), |
df0edf44 | 1113 | flags |
9c7f49f5 | 1114 | ); |
0a816d95 | 1115 | |
e1e1272f VZ |
1116 | // see if we have enough space for the column label |
1117 | ||
1118 | // for this we need the width of the text | |
1119 | wxCoord wLabel; | |
ca65c044 | 1120 | wxCoord hLabel; |
cabeffb0 | 1121 | dc.GetTextExtent(item.GetText(), &wLabel, &hLabel); |
277ea1b4 | 1122 | wLabel += 2 * EXTRA_WIDTH; |
e1e1272f VZ |
1123 | |
1124 | // and the width of the icon, if any | |
277ea1b4 | 1125 | int ix = 0, iy = 0; // init them just to suppress the compiler warnings |
e1e1272f | 1126 | const int image = item.m_image; |
8a3e173a | 1127 | wxImageList *imageList; |
0a816d95 VZ |
1128 | if ( image != -1 ) |
1129 | { | |
ad486020 | 1130 | imageList = m_owner->GetSmallImageList(); |
0a816d95 VZ |
1131 | if ( imageList ) |
1132 | { | |
0a816d95 | 1133 | imageList->GetSize(image, ix, iy); |
936632d3 | 1134 | wLabel += ix + HEADER_IMAGE_MARGIN_IN_REPORT_MODE; |
e1e1272f VZ |
1135 | } |
1136 | } | |
1137 | else | |
1138 | { | |
1139 | imageList = NULL; | |
1140 | } | |
1141 | ||
1142 | // ignore alignment if there is not enough space anyhow | |
1143 | int xAligned; | |
1144 | switch ( wLabel < cw ? item.GetAlign() : wxLIST_FORMAT_LEFT ) | |
1145 | { | |
1146 | default: | |
1147 | wxFAIL_MSG( _T("unknown list item format") ); | |
1148 | // fall through | |
0a816d95 | 1149 | |
e1e1272f VZ |
1150 | case wxLIST_FORMAT_LEFT: |
1151 | xAligned = x; | |
1152 | break; | |
0a816d95 | 1153 | |
e1e1272f VZ |
1154 | case wxLIST_FORMAT_RIGHT: |
1155 | xAligned = x + cw - wLabel; | |
1156 | break; | |
1157 | ||
1158 | case wxLIST_FORMAT_CENTER: | |
1159 | xAligned = x + (cw - wLabel) / 2; | |
1160 | break; | |
1161 | } | |
1162 | ||
936632d3 VZ |
1163 | // draw the text and image clipping them so that they |
1164 | // don't overwrite the column boundary | |
1165 | wxDCClipper clipper(dc, x, HEADER_OFFSET_Y, cw, h - 4 ); | |
1166 | ||
e1e1272f VZ |
1167 | // if we have an image, draw it on the right of the label |
1168 | if ( imageList ) | |
1169 | { | |
1170 | imageList->Draw | |
1171 | ( | |
1172 | image, | |
1173 | dc, | |
936632d3 | 1174 | xAligned + wLabel - ix - HEADER_IMAGE_MARGIN_IN_REPORT_MODE, |
e1e1272f VZ |
1175 | HEADER_OFFSET_Y + (h - 4 - iy)/2, |
1176 | wxIMAGELIST_DRAW_TRANSPARENT | |
1177 | ); | |
0a816d95 VZ |
1178 | } |
1179 | ||
06b781c7 | 1180 | dc.DrawText( item.GetText(), |
cabeffb0 | 1181 | xAligned + EXTRA_WIDTH, h / 2 - hLabel / 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT ); |
06b781c7 | 1182 | |
0a816d95 | 1183 | x += wCol; |
63852e78 | 1184 | } |
4a5ed5bf VZ |
1185 | |
1186 | // Fill in what's missing to the right of the columns, otherwise we will | |
1187 | // leave an unpainted area when columns are removed (and it looks better) | |
1188 | if ( x < w ) | |
1189 | { | |
1190 | wxRendererNative::Get().DrawHeaderButton | |
1191 | ( | |
1192 | this, | |
1193 | dc, | |
1194 | wxRect(x, HEADER_OFFSET_Y, w - x, h), | |
06cd40a8 | 1195 | wxCONTROL_DIRTY // mark as last column |
4a5ed5bf VZ |
1196 | ); |
1197 | } | |
e1e955e1 | 1198 | } |
c801d85f | 1199 | |
06cd40a8 RR |
1200 | void wxListHeaderWindow::OnInternalIdle() |
1201 | { | |
1202 | wxWindow::OnInternalIdle(); | |
7d7b3f69 | 1203 | |
06cd40a8 RR |
1204 | if (m_sendSetColumnWidth) |
1205 | { | |
1206 | m_owner->SetColumnWidth( m_colToSend, m_widthToSend ); | |
1207 | m_sendSetColumnWidth = false; | |
1208 | } | |
1209 | } | |
1210 | ||
0208334d RR |
1211 | void wxListHeaderWindow::DrawCurrent() |
1212 | { | |
b46ea782 | 1213 | #if 1 |
06cd40a8 RR |
1214 | // m_owner->SetColumnWidth( m_column, m_currentX - m_minX ); |
1215 | m_sendSetColumnWidth = true; | |
1216 | m_colToSend = m_column; | |
1217 | m_widthToSend = m_currentX - m_minX; | |
b46ea782 | 1218 | #else |
63852e78 RR |
1219 | int x1 = m_currentX; |
1220 | int y1 = 0; | |
f16ba4e6 | 1221 | m_owner->ClientToScreen( &x1, &y1 ); |
f6bcfd97 | 1222 | |
f16ba4e6 | 1223 | int x2 = m_currentX; |
63852e78 | 1224 | int y2 = 0; |
f6bcfd97 | 1225 | m_owner->GetClientSize( NULL, &y2 ); |
63852e78 | 1226 | m_owner->ClientToScreen( &x2, &y2 ); |
0208334d | 1227 | |
63852e78 | 1228 | wxScreenDC dc; |
3c679789 | 1229 | dc.SetLogicalFunction( wxINVERT ); |
63852e78 RR |
1230 | dc.SetPen( wxPen( *wxBLACK, 2, wxSOLID ) ); |
1231 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
0208334d | 1232 | |
f6bcfd97 BP |
1233 | AdjustDC(dc); |
1234 | ||
63852e78 | 1235 | dc.DrawLine( x1, y1, x2, y2 ); |
0208334d | 1236 | |
63852e78 | 1237 | dc.SetLogicalFunction( wxCOPY ); |
0208334d | 1238 | |
63852e78 RR |
1239 | dc.SetPen( wxNullPen ); |
1240 | dc.SetBrush( wxNullBrush ); | |
b46ea782 | 1241 | #endif |
0208334d RR |
1242 | } |
1243 | ||
c801d85f KB |
1244 | void wxListHeaderWindow::OnMouse( wxMouseEvent &event ) |
1245 | { | |
06cd40a8 | 1246 | wxGenericListCtrl *parent = m_owner->GetListCtrl(); |
7d7b3f69 | 1247 | |
f6bcfd97 | 1248 | // we want to work with logical coords |
3ca6a5f0 | 1249 | int x; |
06cd40a8 | 1250 | parent->CalcUnscrolledPosition(event.GetX(), 0, &x, NULL); |
3ca6a5f0 | 1251 | int y = event.GetY(); |
f6bcfd97 | 1252 | |
cfb50f14 | 1253 | if (m_isDragging) |
0208334d | 1254 | { |
355f2407 | 1255 | SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING, event.GetPosition()); |
a77ec46d | 1256 | |
f6bcfd97 BP |
1257 | // we don't draw the line beyond our window, but we allow dragging it |
1258 | // there | |
1259 | int w = 0; | |
1260 | GetClientSize( &w, NULL ); | |
06cd40a8 | 1261 | parent->CalcUnscrolledPosition(w, 0, &w, NULL); |
f6bcfd97 BP |
1262 | w -= 6; |
1263 | ||
1264 | // erase the line if it was drawn | |
1265 | if ( m_currentX < w ) | |
1266 | DrawCurrent(); | |
1267 | ||
63852e78 RR |
1268 | if (event.ButtonUp()) |
1269 | { | |
1270 | ReleaseMouse(); | |
ca65c044 WS |
1271 | m_isDragging = false; |
1272 | m_dirty = true; | |
f6bcfd97 | 1273 | m_owner->SetColumnWidth( m_column, m_currentX - m_minX ); |
355f2407 | 1274 | SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG, event.GetPosition()); |
63852e78 RR |
1275 | } |
1276 | else | |
1277 | { | |
f6bcfd97 | 1278 | if (x > m_minX + 7) |
63852e78 RR |
1279 | m_currentX = x; |
1280 | else | |
f6bcfd97 | 1281 | m_currentX = m_minX + 7; |
bd8289c1 | 1282 | |
f6bcfd97 BP |
1283 | // draw in the new location |
1284 | if ( m_currentX < w ) | |
1285 | DrawCurrent(); | |
bffa1c77 | 1286 | } |
0208334d | 1287 | } |
f6bcfd97 | 1288 | else // not dragging |
c801d85f | 1289 | { |
f6bcfd97 | 1290 | m_minX = 0; |
ca65c044 | 1291 | bool hit_border = false; |
f6bcfd97 BP |
1292 | |
1293 | // end of the current column | |
1294 | int xpos = 0; | |
1295 | ||
3103e8a9 | 1296 | // find the column where this event occurred |
62313c27 VZ |
1297 | int col, |
1298 | countCol = m_owner->GetColumnCount(); | |
1299 | for (col = 0; col < countCol; col++) | |
bffa1c77 | 1300 | { |
cf1dfa6b VZ |
1301 | xpos += m_owner->GetColumnWidth( col ); |
1302 | m_column = col; | |
f6bcfd97 BP |
1303 | |
1304 | if ( (abs(x-xpos) < 3) && (y < 22) ) | |
1305 | { | |
1306 | // near the column border | |
ca65c044 | 1307 | hit_border = true; |
f6bcfd97 BP |
1308 | break; |
1309 | } | |
1310 | ||
1311 | if ( x < xpos ) | |
1312 | { | |
1313 | // inside the column | |
1314 | break; | |
1315 | } | |
1316 | ||
1317 | m_minX = xpos; | |
bffa1c77 | 1318 | } |
63852e78 | 1319 | |
62313c27 VZ |
1320 | if ( col == countCol ) |
1321 | m_column = -1; | |
1322 | ||
11358d39 | 1323 | if (event.LeftDown() || event.RightUp()) |
63852e78 | 1324 | { |
11358d39 | 1325 | if (hit_border && event.LeftDown()) |
f6bcfd97 | 1326 | { |
355f2407 VZ |
1327 | if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG, |
1328 | event.GetPosition()) ) | |
1329 | { | |
ca65c044 | 1330 | m_isDragging = true; |
355f2407 | 1331 | m_currentX = x; |
355f2407 | 1332 | CaptureMouse(); |
03eccb83 | 1333 | DrawCurrent(); |
355f2407 VZ |
1334 | } |
1335 | //else: column resizing was vetoed by the user code | |
f6bcfd97 | 1336 | } |
11358d39 | 1337 | else // click on a column |
f6bcfd97 | 1338 | { |
df0edf44 KO |
1339 | // record the selected state of the columns |
1340 | if (event.LeftDown()) | |
1341 | { | |
1342 | for (int i=0; i < m_owner->GetColumnCount(); i++) | |
1343 | { | |
1344 | wxListItem colItem; | |
1345 | m_owner->GetColumn(i, colItem); | |
6fef2483 | 1346 | long state = colItem.GetState(); |
df0edf44 KO |
1347 | if (i == m_column) |
1348 | colItem.SetState(state | wxLIST_STATE_SELECTED); | |
1349 | else | |
1350 | colItem.SetState(state & ~wxLIST_STATE_SELECTED); | |
1351 | m_owner->SetColumn(i, colItem); | |
1352 | } | |
1353 | } | |
6fef2483 | 1354 | |
a77ec46d | 1355 | SendListEvent( event.LeftDown() |
11358d39 VZ |
1356 | ? wxEVT_COMMAND_LIST_COL_CLICK |
1357 | : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK, | |
a77ec46d | 1358 | event.GetPosition()); |
f6bcfd97 | 1359 | } |
63852e78 | 1360 | } |
f6bcfd97 | 1361 | else if (event.Moving()) |
63852e78 | 1362 | { |
f6bcfd97 BP |
1363 | bool setCursor; |
1364 | if (hit_border) | |
1365 | { | |
1366 | setCursor = m_currentCursor == wxSTANDARD_CURSOR; | |
1367 | m_currentCursor = m_resizeCursor; | |
1368 | } | |
1369 | else | |
1370 | { | |
1371 | setCursor = m_currentCursor != wxSTANDARD_CURSOR; | |
1372 | m_currentCursor = wxSTANDARD_CURSOR; | |
1373 | } | |
1374 | ||
1375 | if ( setCursor ) | |
1376 | SetCursor(*m_currentCursor); | |
63852e78 | 1377 | } |
e1e955e1 | 1378 | } |
e1e955e1 | 1379 | } |
c801d85f KB |
1380 | |
1381 | void wxListHeaderWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) ) | |
1382 | { | |
63852e78 | 1383 | m_owner->SetFocus(); |
03eccb83 | 1384 | m_owner->Update(); |
e1e955e1 | 1385 | } |
c801d85f | 1386 | |
fbfb8bcc | 1387 | bool wxListHeaderWindow::SendListEvent(wxEventType type, const wxPoint& pos) |
a77ec46d RD |
1388 | { |
1389 | wxWindow *parent = GetParent(); | |
1390 | wxListEvent le( type, parent->GetId() ); | |
1391 | le.SetEventObject( parent ); | |
1392 | le.m_pointDrag = pos; | |
1393 | ||
1394 | // the position should be relative to the parent window, not | |
1395 | // this one for compatibility with MSW and common sense: the | |
1396 | // user code doesn't know anything at all about this header | |
1397 | // window, so why should it get positions relative to it? | |
1398 | le.m_pointDrag.y -= GetSize().y; | |
1399 | ||
1400 | le.m_col = m_column; | |
355f2407 | 1401 | return !parent->GetEventHandler()->ProcessEvent( le ) || le.IsAllowed(); |
a77ec46d RD |
1402 | } |
1403 | ||
c801d85f KB |
1404 | //----------------------------------------------------------------------------- |
1405 | // wxListRenameTimer (internal) | |
1406 | //----------------------------------------------------------------------------- | |
1407 | ||
bd8289c1 VZ |
1408 | wxListRenameTimer::wxListRenameTimer( wxListMainWindow *owner ) |
1409 | { | |
63852e78 | 1410 | m_owner = owner; |
e1e955e1 | 1411 | } |
c801d85f | 1412 | |
bd8289c1 VZ |
1413 | void wxListRenameTimer::Notify() |
1414 | { | |
63852e78 | 1415 | m_owner->OnRenameTimer(); |
e1e955e1 | 1416 | } |
c801d85f | 1417 | |
ee7ee469 | 1418 | //----------------------------------------------------------------------------- |
26e8da41 | 1419 | // wxListTextCtrlWrapper (internal) |
ee7ee469 RR |
1420 | //----------------------------------------------------------------------------- |
1421 | ||
26e8da41 VZ |
1422 | BEGIN_EVENT_TABLE(wxListTextCtrlWrapper, wxEvtHandler) |
1423 | EVT_CHAR (wxListTextCtrlWrapper::OnChar) | |
1424 | EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp) | |
1425 | EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus) | |
ee7ee469 RR |
1426 | END_EVENT_TABLE() |
1427 | ||
26e8da41 VZ |
1428 | wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow *owner, |
1429 | wxTextCtrl *text, | |
1430 | size_t itemEdit) | |
62d89eb4 VZ |
1431 | : m_startValue(owner->GetItemText(itemEdit)), |
1432 | m_itemEdited(itemEdit) | |
1433 | { | |
63852e78 | 1434 | m_owner = owner; |
26e8da41 | 1435 | m_text = text; |
33fe475a | 1436 | m_aboutToFinish = false; |
62d89eb4 | 1437 | |
06cd40a8 RR |
1438 | wxGenericListCtrl *parent = m_owner->GetListCtrl(); |
1439 | ||
62d89eb4 VZ |
1440 | wxRect rectLabel = owner->GetLineLabelRect(itemEdit); |
1441 | ||
06cd40a8 | 1442 | parent->CalcScrolledPosition(rectLabel.x, rectLabel.y, |
62d89eb4 VZ |
1443 | &rectLabel.x, &rectLabel.y); |
1444 | ||
26e8da41 VZ |
1445 | m_text->Create(owner, wxID_ANY, m_startValue, |
1446 | wxPoint(rectLabel.x-4,rectLabel.y-4), | |
1447 | wxSize(rectLabel.width+11,rectLabel.height+8)); | |
3603a389 | 1448 | m_text->SetFocus(); |
cf76cd4e | 1449 | |
26e8da41 | 1450 | m_text->PushEventHandler(this); |
ee7ee469 RR |
1451 | } |
1452 | ||
a8a89154 | 1453 | void wxListTextCtrlWrapper::EndEdit(bool discardChanges) |
ee7ee469 | 1454 | { |
a8a89154 | 1455 | m_aboutToFinish = true; |
3e6858cd | 1456 | |
a8a89154 | 1457 | if ( discardChanges ) |
63852e78 | 1458 | { |
a8a89154 | 1459 | m_owner->OnRenameCancelled(m_itemEdited); |
3e6858cd | 1460 | |
a8a89154 RR |
1461 | Finish( true ); |
1462 | } | |
1463 | else | |
1464 | { | |
1465 | // Notify the owner about the changes | |
1466 | AcceptChanges(); | |
26e8da41 | 1467 | |
a8a89154 RR |
1468 | // Even if vetoed, close the control (consistent with MSW) |
1469 | Finish( true ); | |
62d89eb4 VZ |
1470 | } |
1471 | } | |
dd5a32cc | 1472 | |
a8a89154 RR |
1473 | void wxListTextCtrlWrapper::Finish( bool setfocus ) |
1474 | { | |
1475 | m_text->RemoveEventHandler(this); | |
1476 | m_owner->ResetTextControl( m_text ); | |
1477 | ||
1478 | wxPendingDelete.Append( this ); | |
3e6858cd | 1479 | |
a8a89154 | 1480 | if (setfocus) |
16361ec9 | 1481 | m_owner->SetFocus(); |
a8a89154 RR |
1482 | } |
1483 | ||
26e8da41 | 1484 | bool wxListTextCtrlWrapper::AcceptChanges() |
62d89eb4 | 1485 | { |
26e8da41 | 1486 | const wxString value = m_text->GetValue(); |
62d89eb4 | 1487 | |
0a904ed2 VZ |
1488 | // notice that we should always call OnRenameAccept() to generate the "end |
1489 | // label editing" event, even if the user hasn't really changed anything | |
62d89eb4 | 1490 | if ( !m_owner->OnRenameAccept(m_itemEdited, value) ) |
0a904ed2 | 1491 | { |
62d89eb4 | 1492 | // vetoed by the user |
ca65c044 | 1493 | return false; |
0a904ed2 | 1494 | } |
f6bcfd97 | 1495 | |
0a904ed2 VZ |
1496 | // accepted, do rename the item (unless nothing changed) |
1497 | if ( value != m_startValue ) | |
1498 | m_owner->SetItemText(m_itemEdited, value); | |
f6bcfd97 | 1499 | |
ca65c044 | 1500 | return true; |
62d89eb4 | 1501 | } |
dd5a32cc | 1502 | |
26e8da41 | 1503 | void wxListTextCtrlWrapper::OnChar( wxKeyEvent &event ) |
62d89eb4 VZ |
1504 | { |
1505 | switch ( event.m_keyCode ) | |
1506 | { | |
1507 | case WXK_RETURN: | |
a8a89154 | 1508 | EndEdit( false ); |
768276f6 | 1509 | break; |
f6bcfd97 | 1510 | |
62d89eb4 | 1511 | case WXK_ESCAPE: |
a8a89154 | 1512 | EndEdit( true ); |
62d89eb4 VZ |
1513 | break; |
1514 | ||
1515 | default: | |
1516 | event.Skip(); | |
1517 | } | |
63852e78 RR |
1518 | } |
1519 | ||
26e8da41 | 1520 | void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent &event ) |
c13cace1 | 1521 | { |
a8a89154 RR |
1522 | if (m_aboutToFinish) |
1523 | { | |
1524 | // auto-grow the textctrl: | |
1525 | wxSize parentSize = m_owner->GetSize(); | |
1526 | wxPoint myPos = m_text->GetPosition(); | |
1527 | wxSize mySize = m_text->GetSize(); | |
1528 | int sx, sy; | |
1529 | m_text->GetTextExtent(m_text->GetValue() + _T("MM"), &sx, &sy); | |
1530 | if (myPos.x + sx > parentSize.x) | |
1531 | sx = parentSize.x - myPos.x; | |
1532 | if (mySize.x > sx) | |
1533 | sx = mySize.x; | |
1534 | m_text->SetSize(sx, wxDefaultCoord); | |
1535 | } | |
3e6858cd | 1536 | |
c13cace1 VS |
1537 | event.Skip(); |
1538 | } | |
1539 | ||
26e8da41 | 1540 | void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent &event ) |
63852e78 | 1541 | { |
a8a89154 | 1542 | if ( !m_aboutToFinish ) |
dd5a32cc | 1543 | { |
86586459 RR |
1544 | if ( !AcceptChanges() ) |
1545 | m_owner->OnRenameCancelled( m_itemEdited ); | |
cf76cd4e | 1546 | |
a8a89154 | 1547 | Finish( false ); |
62d89eb4 | 1548 | } |
86351e4a | 1549 | |
3603a389 | 1550 | // We must let the native text control handle focus |
62d89eb4 | 1551 | event.Skip(); |
ee7ee469 RR |
1552 | } |
1553 | ||
c801d85f KB |
1554 | //----------------------------------------------------------------------------- |
1555 | // wxListMainWindow | |
1556 | //----------------------------------------------------------------------------- | |
1557 | ||
16361ec9 | 1558 | BEGIN_EVENT_TABLE(wxListMainWindow,wxScrolledCanvas) |
c801d85f | 1559 | EVT_PAINT (wxListMainWindow::OnPaint) |
c801d85f KB |
1560 | EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse) |
1561 | EVT_CHAR (wxListMainWindow::OnChar) | |
3dfb93fd | 1562 | EVT_KEY_DOWN (wxListMainWindow::OnKeyDown) |
6fef2483 | 1563 | EVT_KEY_UP (wxListMainWindow::OnKeyUp) |
c801d85f KB |
1564 | EVT_SET_FOCUS (wxListMainWindow::OnSetFocus) |
1565 | EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus) | |
2fa7c206 | 1566 | EVT_SCROLLWIN (wxListMainWindow::OnScroll) |
c2cbae6b | 1567 | EVT_CHILD_FOCUS (wxListMainWindow::OnChildFocus) |
c801d85f KB |
1568 | END_EVENT_TABLE() |
1569 | ||
1370703e | 1570 | void wxListMainWindow::Init() |
c801d85f | 1571 | { |
ca65c044 | 1572 | m_dirty = true; |
cf1dfa6b VZ |
1573 | m_countVirt = 0; |
1574 | m_lineFrom = | |
b54e41c5 | 1575 | m_lineTo = (size_t)-1; |
cf1dfa6b VZ |
1576 | m_linesPerPage = 0; |
1577 | ||
1578 | m_headerWidth = | |
1579 | m_lineHeight = 0; | |
1370703e | 1580 | |
d3b9f782 VZ |
1581 | m_small_image_list = NULL; |
1582 | m_normal_image_list = NULL; | |
1370703e | 1583 | |
139adb6a RR |
1584 | m_small_spacing = 30; |
1585 | m_normal_spacing = 40; | |
1370703e | 1586 | |
ca65c044 | 1587 | m_hasFocus = false; |
1370703e | 1588 | m_dragCount = 0; |
ca65c044 | 1589 | m_isCreated = false; |
1370703e | 1590 | |
ca65c044 | 1591 | m_lastOnSame = false; |
139adb6a | 1592 | m_renameTimer = new wxListRenameTimer( this ); |
26e8da41 | 1593 | m_textctrlWrapper = NULL; |
277ea1b4 | 1594 | |
cf1dfa6b | 1595 | m_current = |
efbb7287 | 1596 | m_lineLastClicked = |
8df44392 | 1597 | m_lineSelectSingleOnUp = |
1370703e | 1598 | m_lineBeforeLastClicked = (size_t)-1; |
e1e955e1 | 1599 | } |
c801d85f | 1600 | |
1370703e | 1601 | wxListMainWindow::wxListMainWindow() |
c801d85f | 1602 | { |
1370703e VZ |
1603 | Init(); |
1604 | ||
49ecb029 | 1605 | m_highlightBrush = |
d3b9f782 | 1606 | m_highlightUnfocusedBrush = NULL; |
1370703e VZ |
1607 | } |
1608 | ||
1609 | wxListMainWindow::wxListMainWindow( wxWindow *parent, | |
1610 | wxWindowID id, | |
1611 | const wxPoint& pos, | |
1612 | const wxSize& size, | |
1613 | long style, | |
1614 | const wxString &name ) | |
06cd40a8 | 1615 | : wxWindow( parent, id, pos, size, style, name ) |
1370703e VZ |
1616 | { |
1617 | Init(); | |
1618 | ||
49ecb029 | 1619 | m_highlightBrush = new wxBrush |
4b8fa634 | 1620 | ( |
a756f210 | 1621 | wxSystemSettings::GetColour |
49ecb029 VZ |
1622 | ( |
1623 | wxSYS_COLOUR_HIGHLIGHT | |
1624 | ), | |
04ee05f9 | 1625 | wxBRUSHSTYLE_SOLID |
4b8fa634 | 1626 | ); |
6fef2483 | 1627 | |
49ecb029 | 1628 | m_highlightUnfocusedBrush = new wxBrush |
4b8fa634 KO |
1629 | ( |
1630 | wxSystemSettings::GetColour | |
1631 | ( | |
1632 | wxSYS_COLOUR_BTNSHADOW | |
1633 | ), | |
04ee05f9 | 1634 | wxBRUSHSTYLE_SOLID |
4b8fa634 | 1635 | ); |
49ecb029 | 1636 | |
ca65c044 | 1637 | wxVisualAttributes attr = wxGenericListCtrl::GetClassDefaultAttributes(); |
fa47d7a7 VS |
1638 | SetOwnForegroundColour( attr.colFg ); |
1639 | SetOwnBackgroundColour( attr.colBg ); | |
92a4e4de VZ |
1640 | if (!m_hasFont) |
1641 | SetOwnFont( attr.font ); | |
e1e955e1 | 1642 | } |
c801d85f | 1643 | |
fd9811b1 | 1644 | wxListMainWindow::~wxListMainWindow() |
c801d85f | 1645 | { |
5fe143df | 1646 | DoDeleteAllItems(); |
222ed1d6 | 1647 | WX_CLEAR_LIST(wxListHeaderDataList, m_columns); |
8d36b216 | 1648 | WX_CLEAR_ARRAY(m_aColWidths); |
12c1b46a | 1649 | |
b54e41c5 | 1650 | delete m_highlightBrush; |
49ecb029 | 1651 | delete m_highlightUnfocusedBrush; |
139adb6a | 1652 | delete m_renameTimer; |
e1e955e1 | 1653 | } |
c801d85f | 1654 | |
cf1dfa6b | 1655 | void wxListMainWindow::CacheLineData(size_t line) |
c801d85f | 1656 | { |
3cd94a0d | 1657 | wxGenericListCtrl *listctrl = GetListCtrl(); |
25e3a937 | 1658 | |
b54e41c5 | 1659 | wxListLineData *ld = GetDummyLine(); |
f6bcfd97 | 1660 | |
cf1dfa6b VZ |
1661 | size_t countCol = GetColumnCount(); |
1662 | for ( size_t col = 0; col < countCol; col++ ) | |
1663 | { | |
1664 | ld->SetText(col, listctrl->OnGetItemText(line, col)); | |
e062c6a4 | 1665 | ld->SetImage(col, listctrl->OnGetItemColumnImage(line, col)); |
cf1dfa6b VZ |
1666 | } |
1667 | ||
6c02c329 | 1668 | ld->SetAttr(listctrl->OnGetItemAttr(line)); |
e1e955e1 | 1669 | } |
c801d85f | 1670 | |
b54e41c5 | 1671 | wxListLineData *wxListMainWindow::GetDummyLine() const |
c801d85f | 1672 | { |
cf1dfa6b | 1673 | wxASSERT_MSG( !IsEmpty(), _T("invalid line index") ); |
904ccf52 VZ |
1674 | wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") ); |
1675 | ||
1676 | wxListMainWindow *self = wxConstCast(this, wxListMainWindow); | |
1677 | ||
1678 | // we need to recreate the dummy line if the number of columns in the | |
1679 | // control changed as it would have the incorrect number of fields | |
1680 | // otherwise | |
1681 | if ( !m_lines.IsEmpty() && | |
1682 | m_lines[0].m_items.GetCount() != (size_t)GetColumnCount() ) | |
2c1f73ee | 1683 | { |
904ccf52 VZ |
1684 | self->m_lines.Clear(); |
1685 | } | |
cf1dfa6b | 1686 | |
904ccf52 VZ |
1687 | if ( m_lines.IsEmpty() ) |
1688 | { | |
5cd89174 | 1689 | wxListLineData *line = new wxListLineData(self); |
cf1dfa6b | 1690 | self->m_lines.Add(line); |
904ccf52 VZ |
1691 | |
1692 | // don't waste extra memory -- there never going to be anything | |
1693 | // else/more in this array | |
1694 | self->m_lines.Shrink(); | |
2c1f73ee VZ |
1695 | } |
1696 | ||
cf1dfa6b VZ |
1697 | return &m_lines[0]; |
1698 | } | |
1699 | ||
5cd89174 VZ |
1700 | // ---------------------------------------------------------------------------- |
1701 | // line geometry (report mode only) | |
1702 | // ---------------------------------------------------------------------------- | |
1703 | ||
cf1dfa6b VZ |
1704 | wxCoord wxListMainWindow::GetLineHeight() const |
1705 | { | |
cf1dfa6b VZ |
1706 | // we cache the line height as calling GetTextExtent() is slow |
1707 | if ( !m_lineHeight ) | |
2c1f73ee | 1708 | { |
cf1dfa6b | 1709 | wxListMainWindow *self = wxConstCast(this, wxListMainWindow); |
bd8289c1 | 1710 | |
cf1dfa6b VZ |
1711 | wxClientDC dc( self ); |
1712 | dc.SetFont( GetFont() ); | |
c801d85f | 1713 | |
cf1dfa6b VZ |
1714 | wxCoord y; |
1715 | dc.GetTextExtent(_T("H"), NULL, &y); | |
004fd0c8 | 1716 | |
ca7353de RD |
1717 | if ( m_small_image_list && m_small_image_list->GetImageCount() ) |
1718 | { | |
277ea1b4 | 1719 | int iw = 0, ih = 0; |
ca7353de RD |
1720 | m_small_image_list->GetSize(0, iw, ih); |
1721 | y = wxMax(y, ih); | |
1722 | } | |
1723 | ||
1724 | y += EXTRA_HEIGHT; | |
cf1dfa6b VZ |
1725 | self->m_lineHeight = y + LINE_SPACING; |
1726 | } | |
bffa1c77 | 1727 | |
cf1dfa6b VZ |
1728 | return m_lineHeight; |
1729 | } | |
bffa1c77 | 1730 | |
cf1dfa6b VZ |
1731 | wxCoord wxListMainWindow::GetLineY(size_t line) const |
1732 | { | |
b5d43d1d | 1733 | wxASSERT_MSG( InReportView(), _T("only works in report mode") ); |
1370703e | 1734 | |
277ea1b4 | 1735 | return LINE_SPACING + line * GetLineHeight(); |
cf1dfa6b | 1736 | } |
206b0a67 | 1737 | |
5cd89174 VZ |
1738 | wxRect wxListMainWindow::GetLineRect(size_t line) const |
1739 | { | |
1740 | if ( !InReportView() ) | |
1741 | return GetLine(line)->m_gi->m_rectAll; | |
1742 | ||
1743 | wxRect rect; | |
1744 | rect.x = HEADER_OFFSET_X; | |
1745 | rect.y = GetLineY(line); | |
1746 | rect.width = GetHeaderWidth(); | |
1747 | rect.height = GetLineHeight(); | |
1748 | ||
1749 | return rect; | |
1750 | } | |
1751 | ||
1752 | wxRect wxListMainWindow::GetLineLabelRect(size_t line) const | |
1753 | { | |
1754 | if ( !InReportView() ) | |
1755 | return GetLine(line)->m_gi->m_rectLabel; | |
1756 | ||
a70598d5 RR |
1757 | int image_x = 0; |
1758 | wxListLineData *data = GetLine(line); | |
1759 | wxListItemDataList::compatibility_iterator node = data->m_items.GetFirst(); | |
1760 | if (node) | |
1761 | { | |
1762 | wxListItemData *item = node->GetData(); | |
1763 | if ( item->HasImage() ) | |
1764 | { | |
1765 | int ix, iy; | |
1766 | GetImageSize( item->GetImage(), ix, iy ); | |
1767 | image_x = 3 + ix + IMAGE_MARGIN_IN_REPORT_MODE; | |
1768 | } | |
1769 | } | |
a9aead31 | 1770 | |
5cd89174 | 1771 | wxRect rect; |
edddffb5 | 1772 | rect.x = image_x + HEADER_OFFSET_X; |
5cd89174 | 1773 | rect.y = GetLineY(line); |
edddffb5 | 1774 | rect.width = GetColumnWidth(0) - image_x; |
5cd89174 VZ |
1775 | rect.height = GetLineHeight(); |
1776 | ||
1777 | return rect; | |
1778 | } | |
1779 | ||
1780 | wxRect wxListMainWindow::GetLineIconRect(size_t line) const | |
1781 | { | |
1782 | if ( !InReportView() ) | |
1783 | return GetLine(line)->m_gi->m_rectIcon; | |
1784 | ||
1785 | wxListLineData *ld = GetLine(line); | |
1786 | wxASSERT_MSG( ld->HasImage(), _T("should have an image") ); | |
1787 | ||
1788 | wxRect rect; | |
1789 | rect.x = HEADER_OFFSET_X; | |
1790 | rect.y = GetLineY(line); | |
1791 | GetImageSize(ld->GetImage(), rect.width, rect.height); | |
1792 | ||
1793 | return rect; | |
1794 | } | |
1795 | ||
1796 | wxRect wxListMainWindow::GetLineHighlightRect(size_t line) const | |
1797 | { | |
1798 | return InReportView() ? GetLineRect(line) | |
1799 | : GetLine(line)->m_gi->m_rectHighlight; | |
1800 | } | |
1801 | ||
1802 | long wxListMainWindow::HitTestLine(size_t line, int x, int y) const | |
1803 | { | |
fc4f1d5f VZ |
1804 | wxASSERT_MSG( line < GetItemCount(), _T("invalid line in HitTestLine") ); |
1805 | ||
5cd89174 VZ |
1806 | wxListLineData *ld = GetLine(line); |
1807 | ||
22a35096 | 1808 | if ( ld->HasImage() && GetLineIconRect(line).Contains(x, y) ) |
5cd89174 VZ |
1809 | return wxLIST_HITTEST_ONITEMICON; |
1810 | ||
acf4d858 VS |
1811 | // VS: Testing for "ld->HasText() || InReportView()" instead of |
1812 | // "ld->HasText()" is needed to make empty lines in report view | |
1813 | // possible | |
1814 | if ( ld->HasText() || InReportView() ) | |
5cd89174 VZ |
1815 | { |
1816 | wxRect rect = InReportView() ? GetLineRect(line) | |
1817 | : GetLineLabelRect(line); | |
1818 | ||
22a35096 | 1819 | if ( rect.Contains(x, y) ) |
5cd89174 VZ |
1820 | return wxLIST_HITTEST_ONITEMLABEL; |
1821 | } | |
1822 | ||
1823 | return 0; | |
1824 | } | |
1825 | ||
1826 | // ---------------------------------------------------------------------------- | |
1827 | // highlight (selection) handling | |
1828 | // ---------------------------------------------------------------------------- | |
1829 | ||
b54e41c5 | 1830 | bool wxListMainWindow::IsHighlighted(size_t line) const |
cf1dfa6b VZ |
1831 | { |
1832 | if ( IsVirtual() ) | |
1833 | { | |
b54e41c5 | 1834 | return m_selStore.IsSelected(line); |
cf1dfa6b VZ |
1835 | } |
1836 | else // !virtual | |
1837 | { | |
1838 | wxListLineData *ld = GetLine(line); | |
ca65c044 | 1839 | wxCHECK_MSG( ld, false, _T("invalid index in IsHighlighted") ); |
cf1dfa6b | 1840 | |
b54e41c5 | 1841 | return ld->IsHighlighted(); |
cf1dfa6b VZ |
1842 | } |
1843 | } | |
1844 | ||
68a9ef0e VZ |
1845 | void wxListMainWindow::HighlightLines( size_t lineFrom, |
1846 | size_t lineTo, | |
1847 | bool highlight ) | |
cf1dfa6b | 1848 | { |
cf1dfa6b VZ |
1849 | if ( IsVirtual() ) |
1850 | { | |
68a9ef0e VZ |
1851 | wxArrayInt linesChanged; |
1852 | if ( !m_selStore.SelectRange(lineFrom, lineTo, highlight, | |
1853 | &linesChanged) ) | |
1854 | { | |
1855 | // meny items changed state, refresh everything | |
1856 | RefreshLines(lineFrom, lineTo); | |
1857 | } | |
1858 | else // only a few items changed state, refresh only them | |
1859 | { | |
1860 | size_t count = linesChanged.GetCount(); | |
1861 | for ( size_t n = 0; n < count; n++ ) | |
1862 | { | |
1863 | RefreshLine(linesChanged[n]); | |
1864 | } | |
1865 | } | |
b54e41c5 | 1866 | } |
68a9ef0e | 1867 | else // iterate over all items in non report view |
b54e41c5 | 1868 | { |
b54e41c5 | 1869 | for ( size_t line = lineFrom; line <= lineTo; line++ ) |
cf1dfa6b | 1870 | { |
b54e41c5 | 1871 | if ( HighlightLine(line, highlight) ) |
68a9ef0e | 1872 | RefreshLine(line); |
cf1dfa6b | 1873 | } |
b54e41c5 VZ |
1874 | } |
1875 | } | |
1876 | ||
1877 | bool wxListMainWindow::HighlightLine( size_t line, bool highlight ) | |
1878 | { | |
1879 | bool changed; | |
1880 | ||
1881 | if ( IsVirtual() ) | |
1882 | { | |
1883 | changed = m_selStore.SelectItem(line, highlight); | |
cf1dfa6b VZ |
1884 | } |
1885 | else // !virtual | |
1886 | { | |
1887 | wxListLineData *ld = GetLine(line); | |
ca65c044 | 1888 | wxCHECK_MSG( ld, false, _T("invalid index in HighlightLine") ); |
cf1dfa6b | 1889 | |
b54e41c5 | 1890 | changed = ld->Highlight(highlight); |
cf1dfa6b VZ |
1891 | } |
1892 | ||
1893 | if ( changed ) | |
1894 | { | |
b54e41c5 | 1895 | SendNotify( line, highlight ? wxEVT_COMMAND_LIST_ITEM_SELECTED |
5cd89174 | 1896 | : wxEVT_COMMAND_LIST_ITEM_DESELECTED ); |
cf1dfa6b VZ |
1897 | } |
1898 | ||
1899 | return changed; | |
1900 | } | |
1901 | ||
1902 | void wxListMainWindow::RefreshLine( size_t line ) | |
1903 | { | |
b5d43d1d | 1904 | if ( InReportView() ) |
6ea1323a VZ |
1905 | { |
1906 | size_t visibleFrom, visibleTo; | |
1907 | GetVisibleLinesRange(&visibleFrom, &visibleTo); | |
c1c4c551 | 1908 | |
6ea1323a VZ |
1909 | if ( line < visibleFrom || line > visibleTo ) |
1910 | return; | |
1911 | } | |
c1c4c551 | 1912 | |
5cd89174 | 1913 | wxRect rect = GetLineRect(line); |
cf1dfa6b | 1914 | |
06cd40a8 | 1915 | GetListCtrl()->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
cf1dfa6b VZ |
1916 | RefreshRect( rect ); |
1917 | } | |
1918 | ||
1919 | void wxListMainWindow::RefreshLines( size_t lineFrom, size_t lineTo ) | |
1920 | { | |
1921 | // we suppose that they are ordered by caller | |
1922 | wxASSERT_MSG( lineFrom <= lineTo, _T("indices in disorder") ); | |
1923 | ||
6b4a8d93 VZ |
1924 | wxASSERT_MSG( lineTo < GetItemCount(), _T("invalid line range") ); |
1925 | ||
b5d43d1d | 1926 | if ( InReportView() ) |
cf1dfa6b | 1927 | { |
b54e41c5 VZ |
1928 | size_t visibleFrom, visibleTo; |
1929 | GetVisibleLinesRange(&visibleFrom, &visibleTo); | |
1930 | ||
1931 | if ( lineFrom < visibleFrom ) | |
1932 | lineFrom = visibleFrom; | |
1933 | if ( lineTo > visibleTo ) | |
1934 | lineTo = visibleTo; | |
cf1dfa6b VZ |
1935 | |
1936 | wxRect rect; | |
1937 | rect.x = 0; | |
1938 | rect.y = GetLineY(lineFrom); | |
1939 | rect.width = GetClientSize().x; | |
91c6cc0e | 1940 | rect.height = GetLineY(lineTo) - rect.y + GetLineHeight(); |
cf1dfa6b | 1941 | |
06cd40a8 | 1942 | GetListCtrl()->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
cf1dfa6b VZ |
1943 | RefreshRect( rect ); |
1944 | } | |
1945 | else // !report | |
1946 | { | |
1947 | // TODO: this should be optimized... | |
1948 | for ( size_t line = lineFrom; line <= lineTo; line++ ) | |
1949 | { | |
1950 | RefreshLine(line); | |
1951 | } | |
1952 | } | |
1953 | } | |
1954 | ||
6b4a8d93 VZ |
1955 | void wxListMainWindow::RefreshAfter( size_t lineFrom ) |
1956 | { | |
b5d43d1d | 1957 | if ( InReportView() ) |
6b4a8d93 | 1958 | { |
c29582d0 JS |
1959 | size_t visibleFrom, visibleTo; |
1960 | GetVisibleLinesRange(&visibleFrom, &visibleTo); | |
6b4a8d93 VZ |
1961 | |
1962 | if ( lineFrom < visibleFrom ) | |
1963 | lineFrom = visibleFrom; | |
c29582d0 JS |
1964 | else if ( lineFrom > visibleTo ) |
1965 | return; | |
6b4a8d93 VZ |
1966 | |
1967 | wxRect rect; | |
1968 | rect.x = 0; | |
1969 | rect.y = GetLineY(lineFrom); | |
06cd40a8 | 1970 | GetListCtrl()->CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y ); |
6b4a8d93 VZ |
1971 | |
1972 | wxSize size = GetClientSize(); | |
1973 | rect.width = size.x; | |
277ea1b4 | 1974 | |
6b4a8d93 VZ |
1975 | // refresh till the bottom of the window |
1976 | rect.height = size.y - rect.y; | |
1977 | ||
6b4a8d93 | 1978 | RefreshRect( rect ); |
6b4a8d93 VZ |
1979 | } |
1980 | else // !report | |
1981 | { | |
1982 | // TODO: how to do it more efficiently? | |
ca65c044 | 1983 | m_dirty = true; |
6b4a8d93 VZ |
1984 | } |
1985 | } | |
1986 | ||
49ecb029 VZ |
1987 | void wxListMainWindow::RefreshSelected() |
1988 | { | |
1989 | if ( IsEmpty() ) | |
1990 | return; | |
1991 | ||
1992 | size_t from, to; | |
1993 | if ( InReportView() ) | |
1994 | { | |
1995 | GetVisibleLinesRange(&from, &to); | |
1996 | } | |
1997 | else // !virtual | |
1998 | { | |
1999 | from = 0; | |
2000 | to = GetItemCount() - 1; | |
2001 | } | |
2002 | ||
cf30ae13 | 2003 | if ( HasCurrent() && m_current >= from && m_current <= to ) |
49ecb029 | 2004 | RefreshLine(m_current); |
49ecb029 VZ |
2005 | |
2006 | for ( size_t line = from; line <= to; line++ ) | |
2007 | { | |
2008 | // NB: the test works as expected even if m_current == -1 | |
2009 | if ( line != m_current && IsHighlighted(line) ) | |
49ecb029 | 2010 | RefreshLine(line); |
49ecb029 VZ |
2011 | } |
2012 | } | |
2013 | ||
cf1dfa6b VZ |
2014 | void wxListMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
2015 | { | |
2016 | // Note: a wxPaintDC must be constructed even if no drawing is | |
2017 | // done (a Windows requirement). | |
2018 | wxPaintDC dc( this ); | |
2019 | ||
03138b27 | 2020 | if ( IsEmpty() ) |
17808a75 | 2021 | { |
c5c528fc | 2022 | // nothing to draw or not the moment to draw it |
cf1dfa6b | 2023 | return; |
17808a75 | 2024 | } |
cf1dfa6b | 2025 | |
1e4d446b | 2026 | if ( m_dirty ) |
06cd40a8 | 2027 | RecalculatePositions( false ); |
1e4d446b | 2028 | |
06cd40a8 | 2029 | GetListCtrl()->PrepareDC( dc ); |
cf1dfa6b VZ |
2030 | |
2031 | int dev_x, dev_y; | |
06cd40a8 | 2032 | GetListCtrl()->CalcScrolledPosition( 0, 0, &dev_x, &dev_y ); |
cf1dfa6b | 2033 | |
cf1dfa6b VZ |
2034 | dc.SetFont( GetFont() ); |
2035 | ||
b5d43d1d | 2036 | if ( InReportView() ) |
cf1dfa6b | 2037 | { |
b54e41c5 | 2038 | int lineHeight = GetLineHeight(); |
cf1dfa6b | 2039 | |
b54e41c5 VZ |
2040 | size_t visibleFrom, visibleTo; |
2041 | GetVisibleLinesRange(&visibleFrom, &visibleTo); | |
b84839ae VZ |
2042 | |
2043 | wxRect rectLine; | |
5eefe029 RR |
2044 | int xOrig = dc.LogicalToDeviceX( 0 ); |
2045 | int yOrig = dc.LogicalToDeviceY( 0 ); | |
6fef2483 | 2046 | |
ff3d11a0 | 2047 | // tell the caller cache to cache the data |
91c6cc0e VZ |
2048 | if ( IsVirtual() ) |
2049 | { | |
2050 | wxListEvent evCache(wxEVT_COMMAND_LIST_CACHE_HINT, | |
2051 | GetParent()->GetId()); | |
2052 | evCache.SetEventObject( GetParent() ); | |
2053 | evCache.m_oldItemIndex = visibleFrom; | |
2054 | evCache.m_itemIndex = visibleTo; | |
2055 | GetParent()->GetEventHandler()->ProcessEvent( evCache ); | |
2056 | } | |
ff3d11a0 | 2057 | |
b54e41c5 | 2058 | for ( size_t line = visibleFrom; line <= visibleTo; line++ ) |
cf1dfa6b | 2059 | { |
b84839ae VZ |
2060 | rectLine = GetLineRect(line); |
2061 | ||
5eefe029 RR |
2062 | |
2063 | if ( !IsExposed(rectLine.x + xOrig, rectLine.y + yOrig, | |
b84839ae VZ |
2064 | rectLine.width, rectLine.height) ) |
2065 | { | |
2066 | // don't redraw unaffected lines to avoid flicker | |
2067 | continue; | |
2068 | } | |
2069 | ||
5cd89174 | 2070 | GetLine(line)->DrawInReportMode( &dc, |
b84839ae | 2071 | rectLine, |
5cd89174 | 2072 | GetLineHighlightRect(line), |
ad486020 | 2073 | IsHighlighted(line), |
32fc355f | 2074 | line == m_current ); |
cf1dfa6b VZ |
2075 | } |
2076 | ||
2077 | if ( HasFlag(wxLC_HRULES) ) | |
2078 | { | |
04ee05f9 | 2079 | wxPen pen(GetRuleColour(), 1, wxPENSTYLE_SOLID); |
cf1dfa6b VZ |
2080 | wxSize clientSize = GetClientSize(); |
2081 | ||
696a18c7 RR |
2082 | size_t i = visibleFrom; |
2083 | if (i == 0) i = 1; // Don't draw the first one | |
2084 | for ( ; i <= visibleTo; i++ ) | |
cf1dfa6b VZ |
2085 | { |
2086 | dc.SetPen(pen); | |
2087 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
277ea1b4 DS |
2088 | dc.DrawLine(0 - dev_x, i * lineHeight, |
2089 | clientSize.x - dev_x, i * lineHeight); | |
cf1dfa6b VZ |
2090 | } |
2091 | ||
2092 | // Draw last horizontal rule | |
e7d073c3 | 2093 | if ( visibleTo == GetItemCount() - 1 ) |
cf1dfa6b | 2094 | { |
277ea1b4 | 2095 | dc.SetPen( pen ); |
cf1dfa6b | 2096 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); |
277ea1b4 DS |
2097 | dc.DrawLine(0 - dev_x, (m_lineTo + 1) * lineHeight, |
2098 | clientSize.x - dev_x , (m_lineTo + 1) * lineHeight ); | |
cf1dfa6b | 2099 | } |
2c1f73ee | 2100 | } |
206b0a67 JS |
2101 | |
2102 | // Draw vertical rules if required | |
cf1dfa6b | 2103 | if ( HasFlag(wxLC_VRULES) && !IsEmpty() ) |
206b0a67 | 2104 | { |
04ee05f9 | 2105 | wxPen pen(GetRuleColour(), 1, wxPENSTYLE_SOLID); |
277ea1b4 | 2106 | wxRect firstItemRect, lastItemRect; |
cf1dfa6b | 2107 | |
e7d073c3 RD |
2108 | GetItemRect(visibleFrom, firstItemRect); |
2109 | GetItemRect(visibleTo, lastItemRect); | |
206b0a67 | 2110 | int x = firstItemRect.GetX(); |
673dfcfa JS |
2111 | dc.SetPen(pen); |
2112 | dc.SetBrush(* wxTRANSPARENT_BRUSH); | |
277ea1b4 | 2113 | |
999836aa | 2114 | for (int col = 0; col < GetColumnCount(); col++) |
206b0a67 JS |
2115 | { |
2116 | int colWidth = GetColumnWidth(col); | |
cf1dfa6b | 2117 | x += colWidth; |
696a18c7 RR |
2118 | int x_pos = x - dev_x; |
2119 | if (col < GetColumnCount()-1) x_pos -= 2; | |
2120 | dc.DrawLine(x_pos, firstItemRect.GetY() - 1 - dev_y, | |
2121 | x_pos, lastItemRect.GetBottom() + 1 - dev_y); | |
206b0a67 | 2122 | } |
d786bf87 | 2123 | } |
139adb6a | 2124 | } |
cf1dfa6b | 2125 | else // !report |
139adb6a | 2126 | { |
1370703e | 2127 | size_t count = GetItemCount(); |
cf1dfa6b VZ |
2128 | for ( size_t i = 0; i < count; i++ ) |
2129 | { | |
2130 | GetLine(i)->Draw( &dc ); | |
2131 | } | |
139adb6a | 2132 | } |
004fd0c8 | 2133 | |
32fc355f | 2134 | #if !defined( __WXMAC__) && !defined(__WXGTK20__) |
65a1f350 | 2135 | // Don't draw rect outline under Mac at all. |
32fc355f | 2136 | // Draw it elsewhere under GTK. |
c25f61f1 | 2137 | if ( HasCurrent() ) |
cf1dfa6b | 2138 | { |
49ecb029 | 2139 | if ( m_hasFocus ) |
c25f61f1 | 2140 | { |
ccdbdc89 | 2141 | wxRect rect( GetLineHighlightRect( m_current ) ); |
c25f61f1 VZ |
2142 | dc.SetPen( *wxBLACK_PEN ); |
2143 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
ccdbdc89 | 2144 | dc.DrawRectangle( rect ); |
c25f61f1 | 2145 | } |
cf1dfa6b | 2146 | } |
65a1f350 | 2147 | #endif |
e1e955e1 | 2148 | } |
c801d85f | 2149 | |
b54e41c5 | 2150 | void wxListMainWindow::HighlightAll( bool on ) |
c801d85f | 2151 | { |
b54e41c5 | 2152 | if ( IsSingleSel() ) |
c801d85f | 2153 | { |
277ea1b4 | 2154 | wxASSERT_MSG( !on, _T("can't do this in a single selection control") ); |
b54e41c5 VZ |
2155 | |
2156 | // we just have one item to turn off | |
2157 | if ( HasCurrent() && IsHighlighted(m_current) ) | |
139adb6a | 2158 | { |
ca65c044 | 2159 | HighlightLine(m_current, false); |
b54e41c5 | 2160 | RefreshLine(m_current); |
139adb6a | 2161 | } |
e1e955e1 | 2162 | } |
b6423e8b | 2163 | else // multi selection |
cf1dfa6b | 2164 | { |
b6423e8b VZ |
2165 | if ( !IsEmpty() ) |
2166 | HighlightLines(0, GetItemCount() - 1, on); | |
cf1dfa6b | 2167 | } |
e1e955e1 | 2168 | } |
c801d85f | 2169 | |
78806f0c | 2170 | void wxListMainWindow::OnChildFocus(wxChildFocusEvent& WXUNUSED(event)) |
c2cbae6b | 2171 | { |
78806f0c RD |
2172 | // Do nothing here. This prevents the default handler in wxScrolledWindow |
2173 | // from needlessly scrolling the window when the edit control is | |
2174 | // dismissed. See ticket #9563. | |
c2cbae6b RD |
2175 | } |
2176 | ||
cf1dfa6b | 2177 | void wxListMainWindow::SendNotify( size_t line, |
05a7f61d | 2178 | wxEventType command, |
fbfb8bcc | 2179 | const wxPoint& point ) |
c801d85f | 2180 | { |
139adb6a RR |
2181 | wxListEvent le( command, GetParent()->GetId() ); |
2182 | le.SetEventObject( GetParent() ); | |
6fef2483 | 2183 | |
cf1dfa6b | 2184 | le.m_itemIndex = line; |
05a7f61d VZ |
2185 | |
2186 | // set only for events which have position | |
2187 | if ( point != wxDefaultPosition ) | |
2188 | le.m_pointDrag = point; | |
2189 | ||
c1c4c551 VZ |
2190 | // don't try to get the line info for virtual list controls: the main |
2191 | // program has it anyhow and if we did it would result in accessing all | |
2192 | // the lines, even those which are not visible now and this is precisely | |
2193 | // what we're trying to avoid | |
a95d5751 | 2194 | if ( !IsVirtual() ) |
91c6cc0e | 2195 | { |
0ddefeb0 VZ |
2196 | if ( line != (size_t)-1 ) |
2197 | { | |
2198 | GetLine(line)->GetItem( 0, le.m_item ); | |
2199 | } | |
2200 | //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event | |
91c6cc0e VZ |
2201 | } |
2202 | //else: there may be no more such item | |
2203 | ||
6e228e42 | 2204 | GetParent()->GetEventHandler()->ProcessEvent( le ); |
e1e955e1 | 2205 | } |
c801d85f | 2206 | |
0ddefeb0 | 2207 | void wxListMainWindow::ChangeCurrent(size_t current) |
c801d85f | 2208 | { |
0ddefeb0 | 2209 | m_current = current; |
c801d85f | 2210 | |
6fef2483 VZ |
2211 | // as the current item changed, we shouldn't start editing it when the |
2212 | // "slow click" timer expires as the click happened on another item | |
2213 | if ( m_renameTimer->IsRunning() ) | |
2214 | m_renameTimer->Stop(); | |
2215 | ||
0ddefeb0 | 2216 | SendNotify(current, wxEVT_COMMAND_LIST_ITEM_FOCUSED); |
e1e955e1 | 2217 | } |
c801d85f | 2218 | |
26e8da41 | 2219 | wxTextCtrl *wxListMainWindow::EditLabel(long item, wxClassInfo* textControlClass) |
c801d85f | 2220 | { |
26e8da41 | 2221 | wxCHECK_MSG( (item >= 0) && ((size_t)item < GetItemCount()), NULL, |
3cd94a0d | 2222 | wxT("wrong index in wxGenericListCtrl::EditLabel()") ); |
004fd0c8 | 2223 | |
26e8da41 VZ |
2224 | wxASSERT_MSG( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)), |
2225 | wxT("EditLabel() needs a text control") ); | |
2226 | ||
62d89eb4 | 2227 | size_t itemEdit = (size_t)item; |
e179bd65 | 2228 | |
fd9811b1 | 2229 | wxListEvent le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, GetParent()->GetId() ); |
139adb6a | 2230 | le.SetEventObject( GetParent() ); |
1370703e | 2231 | le.m_itemIndex = item; |
62d89eb4 | 2232 | wxListLineData *data = GetLine(itemEdit); |
26e8da41 | 2233 | wxCHECK_MSG( data, NULL, _T("invalid index in EditLabel()") ); |
1370703e | 2234 | data->GetItem( 0, le.m_item ); |
277ea1b4 | 2235 | |
62d89eb4 | 2236 | if ( GetParent()->GetEventHandler()->ProcessEvent( le ) && !le.IsAllowed() ) |
26e8da41 | 2237 | { |
62d89eb4 | 2238 | // vetoed by user code |
26e8da41 VZ |
2239 | return NULL; |
2240 | } | |
004fd0c8 | 2241 | |
cf1dfa6b VZ |
2242 | // We have to call this here because the label in question might just have |
2243 | // been added and no screen update taken place. | |
62d89eb4 | 2244 | if ( m_dirty ) |
a502b284 | 2245 | { |
cf1dfa6b | 2246 | wxSafeYield(); |
004fd0c8 | 2247 | |
a502b284 VZ |
2248 | // Pending events dispatched by wxSafeYield might have changed the item |
2249 | // count | |
2250 | if ( (size_t)item >= GetItemCount() ) | |
2251 | return NULL; | |
2252 | } | |
2253 | ||
26e8da41 VZ |
2254 | wxTextCtrl * const text = (wxTextCtrl *)textControlClass->CreateObject(); |
2255 | m_textctrlWrapper = new wxListTextCtrlWrapper(this, text, item); | |
2256 | return m_textctrlWrapper->GetText(); | |
e1e955e1 | 2257 | } |
c801d85f | 2258 | |
e179bd65 RR |
2259 | void wxListMainWindow::OnRenameTimer() |
2260 | { | |
cf1dfa6b | 2261 | wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") ); |
004fd0c8 | 2262 | |
cf1dfa6b | 2263 | EditLabel( m_current ); |
e179bd65 RR |
2264 | } |
2265 | ||
62d89eb4 | 2266 | bool wxListMainWindow::OnRenameAccept(size_t itemEdit, const wxString& value) |
c801d85f | 2267 | { |
e179bd65 RR |
2268 | wxListEvent le( wxEVT_COMMAND_LIST_END_LABEL_EDIT, GetParent()->GetId() ); |
2269 | le.SetEventObject( GetParent() ); | |
62d89eb4 | 2270 | le.m_itemIndex = itemEdit; |
1370703e | 2271 | |
62d89eb4 | 2272 | wxListLineData *data = GetLine(itemEdit); |
277ea1b4 | 2273 | |
ca65c044 | 2274 | wxCHECK_MSG( data, false, _T("invalid index in OnRenameAccept()") ); |
1370703e VZ |
2275 | |
2276 | data->GetItem( 0, le.m_item ); | |
62d89eb4 VZ |
2277 | le.m_item.m_text = value; |
2278 | return !GetParent()->GetEventHandler()->ProcessEvent( le ) || | |
2279 | le.IsAllowed(); | |
e1e955e1 | 2280 | } |
c801d85f | 2281 | |
18dd54e3 | 2282 | void wxListMainWindow::OnRenameCancelled(size_t itemEdit) |
86586459 | 2283 | { |
86586459 RR |
2284 | // let owner know that the edit was cancelled |
2285 | wxListEvent le( wxEVT_COMMAND_LIST_END_LABEL_EDIT, GetParent()->GetId() ); | |
86351e4a | 2286 | |
ca65c044 | 2287 | le.SetEditCanceled(true); |
86351e4a | 2288 | |
86586459 RR |
2289 | le.SetEventObject( GetParent() ); |
2290 | le.m_itemIndex = itemEdit; | |
2291 | ||
2292 | wxListLineData *data = GetLine(itemEdit); | |
2293 | wxCHECK_RET( data, _T("invalid index in OnRenameCancelled()") ); | |
2294 | ||
2295 | data->GetItem( 0, le.m_item ); | |
86586459 RR |
2296 | GetEventHandler()->ProcessEvent( le ); |
2297 | } | |
2298 | ||
c801d85f KB |
2299 | void wxListMainWindow::OnMouse( wxMouseEvent &event ) |
2300 | { | |
b6bc47ef RD |
2301 | #ifdef __WXMAC__ |
2302 | // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly | |
2303 | // shutdown the edit control when the mouse is clicked elsewhere on the | |
2304 | // listctrl because the order of events is different (or something like | |
277ea1b4 | 2305 | // that), so explicitly end the edit if it is active. |
26e8da41 | 2306 | if ( event.LeftDown() && m_textctrlWrapper ) |
a8a89154 | 2307 | m_textctrlWrapper->EndEdit( false ); |
26e8da41 | 2308 | #endif // __WXMAC__ |
277ea1b4 | 2309 | |
8d4b048e | 2310 | if ( event.LeftDown() ) |
16361ec9 | 2311 | SetFocus(); |
6fef2483 | 2312 | |
3e1c4e00 | 2313 | event.SetEventObject( GetParent() ); |
cf1dfa6b VZ |
2314 | if ( GetParent()->GetEventHandler()->ProcessEvent( event) ) |
2315 | return; | |
2316 | ||
185f6036 RD |
2317 | if (event.GetEventType() == wxEVT_MOUSEWHEEL) |
2318 | { | |
64894596 | 2319 | // let the base class handle mouse wheel events. |
185f6036 RD |
2320 | event.Skip(); |
2321 | return; | |
2322 | } | |
2ac08aeb | 2323 | |
cf1dfa6b | 2324 | if ( !HasCurrent() || IsEmpty() ) |
8b1464af RR |
2325 | { |
2326 | if (event.RightDown()) | |
2327 | { | |
2328 | SendNotify( (size_t)-1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() ); | |
b6423e8b | 2329 | |
64894596 FM |
2330 | wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, |
2331 | GetParent()->GetId(), | |
2332 | ClientToScreen(event.GetPosition())); | |
fc694caa RR |
2333 | evtCtx.SetEventObject(GetParent()); |
2334 | GetParent()->GetEventHandler()->ProcessEvent(evtCtx); | |
8b1464af | 2335 | } |
cf1dfa6b | 2336 | return; |
8b1464af | 2337 | } |
cf1dfa6b VZ |
2338 | |
2339 | if (m_dirty) | |
2340 | return; | |
e3e65dac | 2341 | |
cf1dfa6b VZ |
2342 | if ( !(event.Dragging() || event.ButtonDown() || event.LeftUp() || |
2343 | event.ButtonDClick()) ) | |
2344 | return; | |
c801d85f | 2345 | |
aaef15bf RR |
2346 | int x = event.GetX(); |
2347 | int y = event.GetY(); | |
06cd40a8 | 2348 | GetListCtrl()->CalcUnscrolledPosition( x, y, &x, &y ); |
004fd0c8 | 2349 | |
cc734310 | 2350 | // where did we hit it (if we did)? |
92976ab6 | 2351 | long hitResult = 0; |
1370703e | 2352 | |
cf1dfa6b VZ |
2353 | size_t count = GetItemCount(), |
2354 | current; | |
2355 | ||
b5d43d1d | 2356 | if ( InReportView() ) |
92976ab6 | 2357 | { |
5cd89174 | 2358 | current = y / GetLineHeight(); |
cc734310 VZ |
2359 | if ( current < count ) |
2360 | hitResult = HitTestLine(current, x, y); | |
cf1dfa6b VZ |
2361 | } |
2362 | else // !report | |
2363 | { | |
2364 | // TODO: optimize it too! this is less simple than for report view but | |
2365 | // enumerating all items is still not a way to do it!! | |
4e3ace65 | 2366 | for ( current = 0; current < count; current++ ) |
cf1dfa6b | 2367 | { |
5cd89174 | 2368 | hitResult = HitTestLine(current, x, y); |
4e3ace65 VZ |
2369 | if ( hitResult ) |
2370 | break; | |
cf1dfa6b | 2371 | } |
92976ab6 | 2372 | } |
bd8289c1 | 2373 | |
fd9811b1 | 2374 | if (event.Dragging()) |
92976ab6 | 2375 | { |
fd9811b1 | 2376 | if (m_dragCount == 0) |
8d1d2284 VZ |
2377 | { |
2378 | // we have to report the raw, physical coords as we want to be | |
2379 | // able to call HitTest(event.m_pointDrag) from the user code to | |
2380 | // get the item being dragged | |
2381 | m_dragStart = event.GetPosition(); | |
2382 | } | |
bffa1c77 | 2383 | |
fd9811b1 | 2384 | m_dragCount++; |
bffa1c77 | 2385 | |
cf1dfa6b VZ |
2386 | if (m_dragCount != 3) |
2387 | return; | |
bffa1c77 | 2388 | |
05a7f61d VZ |
2389 | int command = event.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG |
2390 | : wxEVT_COMMAND_LIST_BEGIN_DRAG; | |
bffa1c77 | 2391 | |
fd9811b1 | 2392 | wxListEvent le( command, GetParent()->GetId() ); |
92976ab6 | 2393 | le.SetEventObject( GetParent() ); |
8df44392 | 2394 | le.m_itemIndex = m_lineLastClicked; |
bffa1c77 VZ |
2395 | le.m_pointDrag = m_dragStart; |
2396 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
2397 | ||
2398 | return; | |
92976ab6 | 2399 | } |
fd9811b1 RR |
2400 | else |
2401 | { | |
2402 | m_dragCount = 0; | |
2403 | } | |
bd8289c1 | 2404 | |
cf1dfa6b VZ |
2405 | if ( !hitResult ) |
2406 | { | |
8b1464af RR |
2407 | // outside of any item |
2408 | if (event.RightDown()) | |
2409 | { | |
2410 | SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() ); | |
b6423e8b | 2411 | |
fc694caa RR |
2412 | wxContextMenuEvent evtCtx( |
2413 | wxEVT_CONTEXT_MENU, | |
2414 | GetParent()->GetId(), | |
2415 | ClientToScreen(event.GetPosition())); | |
2416 | evtCtx.SetEventObject(GetParent()); | |
2417 | GetParent()->GetEventHandler()->ProcessEvent(evtCtx); | |
8b1464af RR |
2418 | } |
2419 | else | |
2420 | { | |
2421 | // reset the selection and bail out | |
2422 | HighlightAll(false); | |
2423 | } | |
cf76cd4e | 2424 | |
cf1dfa6b VZ |
2425 | return; |
2426 | } | |
bd8289c1 | 2427 | |
ca65c044 | 2428 | bool forceClick = false; |
92976ab6 RR |
2429 | if (event.ButtonDClick()) |
2430 | { | |
6fef2483 VZ |
2431 | if ( m_renameTimer->IsRunning() ) |
2432 | m_renameTimer->Stop(); | |
2433 | ||
ca65c044 | 2434 | m_lastOnSame = false; |
efbb7287 | 2435 | |
ddba340d | 2436 | if ( current == m_lineLastClicked ) |
efbb7287 | 2437 | { |
cf1dfa6b | 2438 | SendNotify( current, wxEVT_COMMAND_LIST_ITEM_ACTIVATED ); |
004fd0c8 | 2439 | |
efbb7287 VZ |
2440 | return; |
2441 | } | |
2442 | else | |
2443 | { | |
8df44392 | 2444 | // The first click was on another item, so don't interpret this as |
efbb7287 | 2445 | // a double click, but as a simple click instead |
ca65c044 | 2446 | forceClick = true; |
efbb7287 | 2447 | } |
92976ab6 | 2448 | } |
bd8289c1 | 2449 | |
8df44392 | 2450 | if (event.LeftUp()) |
c801d85f | 2451 | { |
277ea1b4 | 2452 | if (m_lineSelectSingleOnUp != (size_t)-1) |
92976ab6 | 2453 | { |
8df44392 RR |
2454 | // select single line |
2455 | HighlightAll( false ); | |
2456 | ReverseHighlight(m_lineSelectSingleOnUp); | |
2457 | } | |
277ea1b4 | 2458 | |
2cb1f3da | 2459 | if (m_lastOnSame) |
8df44392 RR |
2460 | { |
2461 | if ((current == m_current) && | |
2462 | (hitResult == wxLIST_HITTEST_ONITEMLABEL) && | |
2cb1f3da | 2463 | HasFlag(wxLC_EDIT_LABELS) ) |
8df44392 | 2464 | { |
5595181f VZ |
2465 | if ( !InReportView() || |
2466 | GetLineLabelRect(current).Contains(x, y) ) | |
a70598d5 | 2467 | { |
5595181f VZ |
2468 | int dclick = wxSystemSettings::GetMetric(wxSYS_DCLICK_MSEC); |
2469 | m_renameTimer->Start(dclick > 0 ? dclick : 250, true); | |
a70598d5 | 2470 | } |
8df44392 | 2471 | } |
92976ab6 | 2472 | } |
277ea1b4 | 2473 | |
ca65c044 | 2474 | m_lastOnSame = false; |
277ea1b4 | 2475 | m_lineSelectSingleOnUp = (size_t)-1; |
8df44392 RR |
2476 | } |
2477 | else | |
2478 | { | |
3103e8a9 | 2479 | // This is necessary, because after a DnD operation in |
2997ca30 | 2480 | // from and to ourself, the up event is swallowed by the |
8df44392 RR |
2481 | // DnD code. So on next non-up event (which means here and |
2482 | // now) m_lineSelectSingleOnUp should be reset. | |
277ea1b4 | 2483 | m_lineSelectSingleOnUp = (size_t)-1; |
e1e955e1 | 2484 | } |
8df44392 | 2485 | if (event.RightDown()) |
b204641e | 2486 | { |
8df44392 RR |
2487 | m_lineBeforeLastClicked = m_lineLastClicked; |
2488 | m_lineLastClicked = current; | |
277ea1b4 | 2489 | |
eaefbb88 KH |
2490 | // If the item is already selected, do not update the selection. |
2491 | // Multi-selections should not be cleared if a selected item is clicked. | |
2492 | if (!IsHighlighted(current)) | |
2493 | { | |
2494 | HighlightAll(false); | |
2495 | ChangeCurrent(current); | |
2496 | ReverseHighlight(m_current); | |
2497 | } | |
277ea1b4 DS |
2498 | |
2499 | SendNotify( current, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() ); | |
2500 | ||
18216ae3 RR |
2501 | // Allow generation of context menu event |
2502 | event.Skip(); | |
b204641e | 2503 | } |
cf1dfa6b | 2504 | else if (event.MiddleDown()) |
b204641e | 2505 | { |
cf1dfa6b | 2506 | SendNotify( current, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK ); |
92976ab6 | 2507 | } |
cf1dfa6b | 2508 | else if ( event.LeftDown() || forceClick ) |
92976ab6 | 2509 | { |
efbb7287 | 2510 | m_lineBeforeLastClicked = m_lineLastClicked; |
cf1dfa6b VZ |
2511 | m_lineLastClicked = current; |
2512 | ||
2513 | size_t oldCurrent = m_current; | |
2cb1f3da JS |
2514 | bool oldWasSelected = IsHighlighted(m_current); |
2515 | ||
39e39d39 | 2516 | bool cmdModifierDown = event.CmdDown(); |
2fe417e4 | 2517 | if ( IsSingleSel() || !(cmdModifierDown || event.ShiftDown()) ) |
8df44392 | 2518 | { |
277ea1b4 | 2519 | if ( IsSingleSel() || !IsHighlighted(current) ) |
eb3d60a2 KH |
2520 | { |
2521 | HighlightAll( false ); | |
0ddefeb0 | 2522 | |
eb3d60a2 | 2523 | ChangeCurrent(current); |
cf1dfa6b | 2524 | |
eb3d60a2 KH |
2525 | ReverseHighlight(m_current); |
2526 | } | |
2527 | else // multi sel & current is highlighted & no mod keys | |
8df44392 | 2528 | { |
2997ca30 | 2529 | m_lineSelectSingleOnUp = current; |
8df44392 RR |
2530 | ChangeCurrent(current); // change focus |
2531 | } | |
e1e955e1 | 2532 | } |
b54e41c5 | 2533 | else // multi sel & either ctrl or shift is down |
b204641e | 2534 | { |
015fd9ef | 2535 | if (cmdModifierDown) |
92976ab6 | 2536 | { |
0ddefeb0 | 2537 | ChangeCurrent(current); |
cf1dfa6b | 2538 | |
b54e41c5 | 2539 | ReverseHighlight(m_current); |
92976ab6 | 2540 | } |
473d087e | 2541 | else if (event.ShiftDown()) |
92976ab6 | 2542 | { |
0ddefeb0 | 2543 | ChangeCurrent(current); |
bffa1c77 | 2544 | |
cf1dfa6b VZ |
2545 | size_t lineFrom = oldCurrent, |
2546 | lineTo = current; | |
f6bcfd97 | 2547 | |
cf1dfa6b | 2548 | if ( lineTo < lineFrom ) |
92976ab6 | 2549 | { |
cf1dfa6b VZ |
2550 | lineTo = lineFrom; |
2551 | lineFrom = m_current; | |
92976ab6 RR |
2552 | } |
2553 | ||
b54e41c5 | 2554 | HighlightLines(lineFrom, lineTo); |
92976ab6 | 2555 | } |
cf1dfa6b | 2556 | else // !ctrl, !shift |
92976ab6 | 2557 | { |
cf1dfa6b VZ |
2558 | // test in the enclosing if should make it impossible |
2559 | wxFAIL_MSG( _T("how did we get here?") ); | |
92976ab6 | 2560 | } |
e1e955e1 | 2561 | } |
cf1dfa6b | 2562 | |
92976ab6 | 2563 | if (m_current != oldCurrent) |
92976ab6 | 2564 | RefreshLine( oldCurrent ); |
efbb7287 VZ |
2565 | |
2566 | // forceClick is only set if the previous click was on another item | |
2cb1f3da | 2567 | m_lastOnSame = !forceClick && (m_current == oldCurrent) && oldWasSelected; |
e1e955e1 | 2568 | } |
e1e955e1 | 2569 | } |
c801d85f | 2570 | |
34bbbc27 | 2571 | void wxListMainWindow::MoveToItem(size_t item) |
c801d85f | 2572 | { |
34bbbc27 | 2573 | if ( item == (size_t)-1 ) |
cf1dfa6b | 2574 | return; |
004fd0c8 | 2575 | |
34bbbc27 | 2576 | wxRect rect = GetLineRect(item); |
cf3da716 | 2577 | |
cf1dfa6b | 2578 | int client_w, client_h; |
cf3da716 | 2579 | GetClientSize( &client_w, &client_h ); |
f6bcfd97 | 2580 | |
6d78bbe6 VZ |
2581 | const int hLine = GetLineHeight(); |
2582 | ||
edea2c4a RR |
2583 | int view_x = SCROLL_UNIT_X * GetListCtrl()->GetScrollPos( wxHORIZONTAL ); |
2584 | int view_y = hLine * GetListCtrl()->GetScrollPos( wxVERTICAL ); | |
004fd0c8 | 2585 | |
b5d43d1d | 2586 | if ( InReportView() ) |
92976ab6 | 2587 | { |
277ea1b4 DS |
2588 | // the next we need the range of lines shown it might be different, |
2589 | // so recalculate it | |
b54e41c5 VZ |
2590 | ResetVisibleLinesRange(); |
2591 | ||
277ea1b4 | 2592 | if (rect.y < view_y) |
06cd40a8 | 2593 | GetListCtrl()->Scroll( -1, rect.y / hLine ); |
277ea1b4 | 2594 | if (rect.y + rect.height + 5 > view_y + client_h) |
06cd40a8 | 2595 | GetListCtrl()->Scroll( -1, (rect.y + rect.height - client_h + hLine) / hLine ); |
35a7f94b RD |
2596 | |
2597 | #ifdef __WXMAC__ | |
2598 | // At least on Mac the visible lines value will get reset inside of | |
2599 | // Scroll *before* it actually scrolls the window because of the | |
2600 | // Update() that happens there, so it will still have the wrong value. | |
2601 | // So let's reset it again and wait for it to be recalculated in the | |
2602 | // next paint event. I would expect this problem to show up in wxGTK | |
2603 | // too but couldn't duplicate it there. Perhaps the order of events | |
2604 | // is different... --Robin | |
2605 | ResetVisibleLinesRange(); | |
2606 | #endif | |
92976ab6 | 2607 | } |
b54e41c5 | 2608 | else // !report |
92976ab6 | 2609 | { |
e81fa385 VZ |
2610 | int sx = -1, |
2611 | sy = -1; | |
2612 | ||
807a572e | 2613 | if (rect.x-view_x < 5) |
e81fa385 | 2614 | sx = (rect.x - 5) / SCROLL_UNIT_X; |
807a572e | 2615 | if (rect.x + rect.width - 5 > view_x + client_w) |
e81fa385 VZ |
2616 | sx = (rect.x + rect.width - client_w + SCROLL_UNIT_X) / SCROLL_UNIT_X; |
2617 | ||
2618 | if (rect.y-view_y < 5) | |
2619 | sy = (rect.y - 5) / hLine; | |
2620 | if (rect.y + rect.height - 5 > view_y + client_h) | |
2621 | sy = (rect.y + rect.height - client_h + hLine) / hLine; | |
2622 | ||
06cd40a8 | 2623 | GetListCtrl()->Scroll(sx, sy); |
92976ab6 | 2624 | } |
e1e955e1 | 2625 | } |
c801d85f | 2626 | |
66a9201d VZ |
2627 | bool wxListMainWindow::ScrollList(int WXUNUSED(dx), int dy) |
2628 | { | |
2629 | if ( !InReportView() ) | |
2630 | { | |
2631 | // TODO: this should work in all views but is not implemented now | |
2632 | return false; | |
2633 | } | |
2634 | ||
2635 | size_t top, bottom; | |
2636 | GetVisibleLinesRange(&top, &bottom); | |
2637 | ||
2638 | if ( bottom == (size_t)-1 ) | |
2639 | return 0; | |
2640 | ||
2641 | ResetVisibleLinesRange(); | |
2642 | ||
2643 | int hLine = GetLineHeight(); | |
2644 | ||
06cd40a8 | 2645 | GetListCtrl()->Scroll(-1, top + dy / hLine); |
66a9201d VZ |
2646 | |
2647 | #ifdef __WXMAC__ | |
2648 | // see comment in MoveToItem() for why we do this | |
2649 | ResetVisibleLinesRange(); | |
2650 | #endif | |
2651 | ||
2652 | return true; | |
2653 | } | |
2654 | ||
cf1dfa6b VZ |
2655 | // ---------------------------------------------------------------------------- |
2656 | // keyboard handling | |
2657 | // ---------------------------------------------------------------------------- | |
2658 | ||
2659 | void wxListMainWindow::OnArrowChar(size_t newCurrent, const wxKeyEvent& event) | |
c801d85f | 2660 | { |
cf1dfa6b VZ |
2661 | wxCHECK_RET( newCurrent < (size_t)GetItemCount(), |
2662 | _T("invalid item index in OnArrowChar()") ); | |
2663 | ||
2664 | size_t oldCurrent = m_current; | |
2665 | ||
2666 | // in single selection we just ignore Shift as we can't select several | |
2667 | // items anyhow | |
b54e41c5 | 2668 | if ( event.ShiftDown() && !IsSingleSel() ) |
cf1dfa6b | 2669 | { |
0ddefeb0 | 2670 | ChangeCurrent(newCurrent); |
cf1dfa6b | 2671 | |
65a1f350 RR |
2672 | // refresh the old focus to remove it |
2673 | RefreshLine( oldCurrent ); | |
2674 | ||
cf1dfa6b VZ |
2675 | // select all the items between the old and the new one |
2676 | if ( oldCurrent > newCurrent ) | |
2677 | { | |
2678 | newCurrent = oldCurrent; | |
2679 | oldCurrent = m_current; | |
2680 | } | |
2681 | ||
b54e41c5 | 2682 | HighlightLines(oldCurrent, newCurrent); |
cf1dfa6b VZ |
2683 | } |
2684 | else // !shift | |
2685 | { | |
b54e41c5 | 2686 | // all previously selected items are unselected unless ctrl is held |
a9aead31 VZ |
2687 | // in a multiselection control |
2688 | if ( !event.ControlDown() || IsSingleSel() ) | |
ca65c044 | 2689 | HighlightAll(false); |
b54e41c5 | 2690 | |
0ddefeb0 | 2691 | ChangeCurrent(newCurrent); |
ca65c044 | 2692 | |
65a1f350 RR |
2693 | // refresh the old focus to remove it |
2694 | RefreshLine( oldCurrent ); | |
cf1dfa6b | 2695 | |
a9aead31 VZ |
2696 | // in single selection mode we must always have a selected item |
2697 | if ( !event.ControlDown() || IsSingleSel() ) | |
ca65c044 | 2698 | HighlightLine( m_current, true ); |
cf1dfa6b | 2699 | } |
ca65c044 | 2700 | |
92976ab6 | 2701 | RefreshLine( m_current ); |
cf1dfa6b | 2702 | |
cf3da716 | 2703 | MoveToFocus(); |
e1e955e1 | 2704 | } |
c801d85f | 2705 | |
3dfb93fd RR |
2706 | void wxListMainWindow::OnKeyDown( wxKeyEvent &event ) |
2707 | { | |
2708 | wxWindow *parent = GetParent(); | |
004fd0c8 | 2709 | |
277ea1b4 | 2710 | // propagate the key event upwards |
101198ba | 2711 | wxKeyEvent ke(event); |
3dfb93fd | 2712 | ke.SetEventObject( parent ); |
101198ba VZ |
2713 | if (parent->GetEventHandler()->ProcessEvent( ke )) |
2714 | return; | |
004fd0c8 | 2715 | |
3dfb93fd RR |
2716 | event.Skip(); |
2717 | } | |
004fd0c8 | 2718 | |
9fe25f13 KO |
2719 | void wxListMainWindow::OnKeyUp( wxKeyEvent &event ) |
2720 | { | |
2721 | wxWindow *parent = GetParent(); | |
2722 | ||
2723 | // propagate the key event upwards | |
101198ba VZ |
2724 | wxKeyEvent ke(event); |
2725 | if (parent->GetEventHandler()->ProcessEvent( ke )) | |
2726 | return; | |
9fe25f13 KO |
2727 | |
2728 | event.Skip(); | |
2729 | } | |
2730 | ||
c801d85f KB |
2731 | void wxListMainWindow::OnChar( wxKeyEvent &event ) |
2732 | { | |
51cc4dad | 2733 | wxWindow *parent = GetParent(); |
004fd0c8 | 2734 | |
277ea1b4 | 2735 | // send a list_key event up |
cf1dfa6b | 2736 | if ( HasCurrent() ) |
f6bcfd97 BP |
2737 | { |
2738 | wxListEvent le( wxEVT_COMMAND_LIST_KEY_DOWN, GetParent()->GetId() ); | |
cf1dfa6b VZ |
2739 | le.m_itemIndex = m_current; |
2740 | GetLine(m_current)->GetItem( 0, le.m_item ); | |
12a3f227 | 2741 | le.m_code = event.GetKeyCode(); |
f6bcfd97 BP |
2742 | le.SetEventObject( parent ); |
2743 | parent->GetEventHandler()->ProcessEvent( le ); | |
2744 | } | |
51cc4dad | 2745 | |
8be0b888 RR |
2746 | if ( (event.GetKeyCode() != WXK_UP) && |
2747 | (event.GetKeyCode() != WXK_DOWN) && | |
2748 | (event.GetKeyCode() != WXK_RIGHT) && | |
2749 | (event.GetKeyCode() != WXK_LEFT) && | |
2750 | (event.GetKeyCode() != WXK_PAGEUP) && | |
2751 | (event.GetKeyCode() != WXK_PAGEDOWN) && | |
2752 | (event.GetKeyCode() != WXK_END) && | |
2753 | (event.GetKeyCode() != WXK_HOME) ) | |
2754 | { | |
2755 | // propagate the char event upwards | |
2756 | wxKeyEvent ke(event); | |
2757 | ke.SetEventObject( parent ); | |
2758 | if (parent->GetEventHandler()->ProcessEvent( ke )) | |
2759 | return; | |
2760 | } | |
004fd0c8 | 2761 | |
f029f1d1 VS |
2762 | if ( HandleAsNavigationKey(event) ) |
2763 | return; | |
004fd0c8 | 2764 | |
277ea1b4 | 2765 | // no item -> nothing to do |
cf1dfa6b | 2766 | if (!HasCurrent()) |
c801d85f | 2767 | { |
51cc4dad RR |
2768 | event.Skip(); |
2769 | return; | |
e1e955e1 | 2770 | } |
51cc4dad | 2771 | |
cf76cd4e VZ |
2772 | // don't use m_linesPerPage directly as it might not be computed yet |
2773 | const int pageSize = GetCountPerPage(); | |
2774 | wxCHECK_RET( pageSize, _T("should have non zero page size") ); | |
2775 | ||
03703fc0 RR |
2776 | if (GetLayoutDirection() == wxLayout_RightToLeft) |
2777 | { | |
2778 | if (event.GetKeyCode() == WXK_RIGHT) | |
2779 | event.m_keyCode = WXK_LEFT; | |
2780 | else if (event.GetKeyCode() == WXK_LEFT) | |
2781 | event.m_keyCode = WXK_RIGHT; | |
2782 | } | |
2783 | ||
cf76cd4e | 2784 | switch ( event.GetKeyCode() ) |
c801d85f | 2785 | { |
51cc4dad | 2786 | case WXK_UP: |
cf1dfa6b VZ |
2787 | if ( m_current > 0 ) |
2788 | OnArrowChar( m_current - 1, event ); | |
51cc4dad | 2789 | break; |
cf1dfa6b | 2790 | |
51cc4dad | 2791 | case WXK_DOWN: |
cf1dfa6b VZ |
2792 | if ( m_current < (size_t)GetItemCount() - 1 ) |
2793 | OnArrowChar( m_current + 1, event ); | |
51cc4dad | 2794 | break; |
cf1dfa6b | 2795 | |
51cc4dad | 2796 | case WXK_END: |
1370703e | 2797 | if (!IsEmpty()) |
cf1dfa6b | 2798 | OnArrowChar( GetItemCount() - 1, event ); |
51cc4dad | 2799 | break; |
cf1dfa6b | 2800 | |
51cc4dad | 2801 | case WXK_HOME: |
1370703e | 2802 | if (!IsEmpty()) |
cf1dfa6b | 2803 | OnArrowChar( 0, event ); |
51cc4dad | 2804 | break; |
cf1dfa6b | 2805 | |
faa94f3e | 2806 | case WXK_PAGEUP: |
f6bcfd97 | 2807 | { |
cf76cd4e VZ |
2808 | int steps = InReportView() ? pageSize - 1 |
2809 | : m_current % pageSize; | |
cf1dfa6b VZ |
2810 | |
2811 | int index = m_current - steps; | |
2812 | if (index < 0) | |
2813 | index = 0; | |
2814 | ||
2815 | OnArrowChar( index, event ); | |
51cc4dad | 2816 | } |
51cc4dad | 2817 | break; |
cf1dfa6b | 2818 | |
faa94f3e | 2819 | case WXK_PAGEDOWN: |
bffa1c77 | 2820 | { |
b5d43d1d | 2821 | int steps = InReportView() |
cf76cd4e VZ |
2822 | ? pageSize - 1 |
2823 | : pageSize - (m_current % pageSize) - 1; | |
f6bcfd97 | 2824 | |
cf1dfa6b VZ |
2825 | size_t index = m_current + steps; |
2826 | size_t count = GetItemCount(); | |
2827 | if ( index >= count ) | |
2828 | index = count - 1; | |
2829 | ||
2830 | OnArrowChar( index, event ); | |
51cc4dad | 2831 | } |
51cc4dad | 2832 | break; |
cf1dfa6b | 2833 | |
51cc4dad | 2834 | case WXK_LEFT: |
b5d43d1d | 2835 | if ( !InReportView() ) |
51cc4dad | 2836 | { |
cf76cd4e | 2837 | int index = m_current - pageSize; |
cf1dfa6b VZ |
2838 | if (index < 0) |
2839 | index = 0; | |
2840 | ||
2841 | OnArrowChar( index, event ); | |
51cc4dad RR |
2842 | } |
2843 | break; | |
cf1dfa6b | 2844 | |
51cc4dad | 2845 | case WXK_RIGHT: |
b5d43d1d | 2846 | if ( !InReportView() ) |
51cc4dad | 2847 | { |
cf76cd4e | 2848 | size_t index = m_current + pageSize; |
cf1dfa6b VZ |
2849 | |
2850 | size_t count = GetItemCount(); | |
2851 | if ( index >= count ) | |
2852 | index = count - 1; | |
2853 | ||
2854 | OnArrowChar( index, event ); | |
51cc4dad RR |
2855 | } |
2856 | break; | |
cf1dfa6b | 2857 | |
51cc4dad | 2858 | case WXK_SPACE: |
b54e41c5 | 2859 | if ( IsSingleSel() ) |
33d0e17c | 2860 | { |
a9aead31 VZ |
2861 | if ( event.ControlDown() ) |
2862 | { | |
2863 | ReverseHighlight(m_current); | |
2864 | } | |
2865 | else // normal space press | |
70541533 | 2866 | { |
a9aead31 | 2867 | SendNotify( m_current, wxEVT_COMMAND_LIST_ITEM_ACTIVATED ); |
70541533 | 2868 | } |
33d0e17c | 2869 | } |
a9aead31 VZ |
2870 | else // multiple selection |
2871 | { | |
2872 | ReverseHighlight(m_current); | |
2873 | } | |
51cc4dad | 2874 | break; |
cf1dfa6b | 2875 | |
51cc4dad RR |
2876 | case WXK_RETURN: |
2877 | case WXK_EXECUTE: | |
87948f22 | 2878 | SendNotify( m_current, wxEVT_COMMAND_LIST_ITEM_ACTIVATED ); |
51cc4dad | 2879 | break; |
cf1dfa6b | 2880 | |
51cc4dad | 2881 | default: |
51cc4dad | 2882 | event.Skip(); |
e1e955e1 | 2883 | } |
e1e955e1 | 2884 | } |
c801d85f | 2885 | |
cf1dfa6b VZ |
2886 | // ---------------------------------------------------------------------------- |
2887 | // focus handling | |
2888 | // ---------------------------------------------------------------------------- | |
2889 | ||
c801d85f KB |
2890 | void wxListMainWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) ) |
2891 | { | |
dc76287d RD |
2892 | if ( GetParent() ) |
2893 | { | |
2894 | wxFocusEvent event( wxEVT_SET_FOCUS, GetParent()->GetId() ); | |
2895 | event.SetEventObject( GetParent() ); | |
2896 | if ( GetParent()->GetEventHandler()->ProcessEvent( event) ) | |
2897 | return; | |
2898 | } | |
2899 | ||
bde9072f VZ |
2900 | // wxGTK sends us EVT_SET_FOCUS events even if we had never got |
2901 | // EVT_KILL_FOCUS before which means that we finish by redrawing the items | |
2902 | // which are already drawn correctly resulting in horrible flicker - avoid | |
2903 | // it | |
47724389 VZ |
2904 | if ( !m_hasFocus ) |
2905 | { | |
ca65c044 | 2906 | m_hasFocus = true; |
bde9072f | 2907 | |
47724389 VZ |
2908 | RefreshSelected(); |
2909 | } | |
e1e955e1 | 2910 | } |
c801d85f KB |
2911 | |
2912 | void wxListMainWindow::OnKillFocus( wxFocusEvent &WXUNUSED(event) ) | |
2913 | { | |
dc76287d RD |
2914 | if ( GetParent() ) |
2915 | { | |
2916 | wxFocusEvent event( wxEVT_KILL_FOCUS, GetParent()->GetId() ); | |
2917 | event.SetEventObject( GetParent() ); | |
2918 | if ( GetParent()->GetEventHandler()->ProcessEvent( event) ) | |
2919 | return; | |
2920 | } | |
277ea1b4 | 2921 | |
ca65c044 | 2922 | m_hasFocus = false; |
49ecb029 | 2923 | RefreshSelected(); |
e1e955e1 | 2924 | } |
c801d85f | 2925 | |
1e6d9499 | 2926 | void wxListMainWindow::DrawImage( int index, wxDC *dc, int x, int y ) |
c801d85f | 2927 | { |
cf1dfa6b | 2928 | if ( HasFlag(wxLC_ICON) && (m_normal_image_list)) |
63852e78 RR |
2929 | { |
2930 | m_normal_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
63852e78 | 2931 | } |
cf1dfa6b | 2932 | else if ( HasFlag(wxLC_SMALL_ICON) && (m_small_image_list)) |
63852e78 RR |
2933 | { |
2934 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
2935 | } | |
cf1dfa6b | 2936 | else if ( HasFlag(wxLC_LIST) && (m_small_image_list)) |
0b855868 RR |
2937 | { |
2938 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
2939 | } | |
b5d43d1d | 2940 | else if ( InReportView() && (m_small_image_list)) |
63852e78 RR |
2941 | { |
2942 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
63852e78 | 2943 | } |
e1e955e1 | 2944 | } |
c801d85f | 2945 | |
5cd89174 | 2946 | void wxListMainWindow::GetImageSize( int index, int &width, int &height ) const |
c801d85f | 2947 | { |
cf1dfa6b | 2948 | if ( HasFlag(wxLC_ICON) && m_normal_image_list ) |
63852e78 RR |
2949 | { |
2950 | m_normal_image_list->GetSize( index, width, height ); | |
63852e78 | 2951 | } |
cf1dfa6b | 2952 | else if ( HasFlag(wxLC_SMALL_ICON) && m_small_image_list ) |
63852e78 RR |
2953 | { |
2954 | m_small_image_list->GetSize( index, width, height ); | |
63852e78 | 2955 | } |
cf1dfa6b | 2956 | else if ( HasFlag(wxLC_LIST) && m_small_image_list ) |
0b855868 RR |
2957 | { |
2958 | m_small_image_list->GetSize( index, width, height ); | |
0b855868 | 2959 | } |
b5d43d1d | 2960 | else if ( InReportView() && m_small_image_list ) |
63852e78 RR |
2961 | { |
2962 | m_small_image_list->GetSize( index, width, height ); | |
63852e78 | 2963 | } |
cf1dfa6b VZ |
2964 | else |
2965 | { | |
2966 | width = | |
2967 | height = 0; | |
2968 | } | |
e1e955e1 | 2969 | } |
c801d85f | 2970 | |
5cd89174 | 2971 | int wxListMainWindow::GetTextLength( const wxString &s ) const |
c801d85f | 2972 | { |
5cd89174 | 2973 | wxClientDC dc( wxConstCast(this, wxListMainWindow) ); |
cf1dfa6b | 2974 | dc.SetFont( GetFont() ); |
c801d85f | 2975 | |
cf1dfa6b VZ |
2976 | wxCoord lw; |
2977 | dc.GetTextExtent( s, &lw, NULL ); | |
2978 | ||
2979 | return lw + AUTOSIZE_COL_MARGIN; | |
e1e955e1 | 2980 | } |
c801d85f | 2981 | |
8a3e173a | 2982 | void wxListMainWindow::SetImageList( wxImageList *imageList, int which ) |
c801d85f | 2983 | { |
ca65c044 | 2984 | m_dirty = true; |
f6bcfd97 BP |
2985 | |
2986 | // calc the spacing from the icon size | |
277ea1b4 DS |
2987 | int width = 0, height = 0; |
2988 | ||
f6bcfd97 | 2989 | if ((imageList) && (imageList->GetImageCount()) ) |
f6bcfd97 | 2990 | imageList->GetSize(0, width, height); |
f6bcfd97 BP |
2991 | |
2992 | if (which == wxIMAGE_LIST_NORMAL) | |
2993 | { | |
2994 | m_normal_image_list = imageList; | |
2995 | m_normal_spacing = width + 8; | |
2996 | } | |
2997 | ||
2998 | if (which == wxIMAGE_LIST_SMALL) | |
2999 | { | |
3000 | m_small_image_list = imageList; | |
3001 | m_small_spacing = width + 14; | |
ca7353de | 3002 | m_lineHeight = 0; // ensure that the line height will be recalc'd |
f6bcfd97 | 3003 | } |
e1e955e1 | 3004 | } |
c801d85f | 3005 | |
debe6624 | 3006 | void wxListMainWindow::SetItemSpacing( int spacing, bool isSmall ) |
c801d85f | 3007 | { |
ca65c044 | 3008 | m_dirty = true; |
139adb6a | 3009 | if (isSmall) |
139adb6a | 3010 | m_small_spacing = spacing; |
139adb6a | 3011 | else |
139adb6a | 3012 | m_normal_spacing = spacing; |
e1e955e1 | 3013 | } |
c801d85f | 3014 | |
debe6624 | 3015 | int wxListMainWindow::GetItemSpacing( bool isSmall ) |
c801d85f | 3016 | { |
f6bcfd97 | 3017 | return isSmall ? m_small_spacing : m_normal_spacing; |
e1e955e1 | 3018 | } |
c801d85f | 3019 | |
cf1dfa6b VZ |
3020 | // ---------------------------------------------------------------------------- |
3021 | // columns | |
3022 | // ---------------------------------------------------------------------------- | |
3023 | ||
debe6624 | 3024 | void wxListMainWindow::SetColumn( int col, wxListItem &item ) |
c801d85f | 3025 | { |
222ed1d6 | 3026 | wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col ); |
f6bcfd97 | 3027 | |
cf1dfa6b VZ |
3028 | wxCHECK_RET( node, _T("invalid column index in SetColumn") ); |
3029 | ||
3030 | if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER ) | |
3031 | item.m_width = GetTextLength( item.m_text ); | |
3032 | ||
3033 | wxListHeaderData *column = node->GetData(); | |
3034 | column->SetItem( item ); | |
3035 | ||
3036 | wxListHeaderWindow *headerWin = GetListCtrl()->m_headerWin; | |
f6bcfd97 | 3037 | if ( headerWin ) |
ca65c044 | 3038 | headerWin->m_dirty = true; |
cf1dfa6b | 3039 | |
ca65c044 | 3040 | m_dirty = true; |
cf1dfa6b VZ |
3041 | |
3042 | // invalidate it as it has to be recalculated | |
3043 | m_headerWidth = 0; | |
e1e955e1 | 3044 | } |
c801d85f | 3045 | |
debe6624 | 3046 | void wxListMainWindow::SetColumnWidth( int col, int width ) |
c801d85f | 3047 | { |
cf1dfa6b VZ |
3048 | wxCHECK_RET( col >= 0 && col < GetColumnCount(), |
3049 | _T("invalid column index") ); | |
3050 | ||
b5d43d1d | 3051 | wxCHECK_RET( InReportView(), |
f6bcfd97 | 3052 | _T("SetColumnWidth() can only be called in report mode.") ); |
7d7b3f69 | 3053 | |
ca65c044 | 3054 | m_dirty = true; |
06cd40a8 | 3055 | |
abe4a4f1 VS |
3056 | wxListHeaderWindow *headerWin = GetListCtrl()->m_headerWin; |
3057 | if ( headerWin ) | |
ca65c044 | 3058 | headerWin->m_dirty = true; |
bd8289c1 | 3059 | |
222ed1d6 | 3060 | wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col ); |
cf1dfa6b VZ |
3061 | wxCHECK_RET( node, _T("no column?") ); |
3062 | ||
3063 | wxListHeaderData *column = node->GetData(); | |
3064 | ||
3065 | size_t count = GetItemCount(); | |
3066 | ||
f6bcfd97 BP |
3067 | if (width == wxLIST_AUTOSIZE_USEHEADER) |
3068 | { | |
cf1dfa6b | 3069 | width = GetTextLength(column->GetText()); |
d63c9ecf VZ |
3070 | width += 2*EXTRA_WIDTH; |
3071 | ||
3072 | // check for column header's image availability | |
3073 | const int image = column->GetImage(); | |
3074 | if ( image != -1 ) | |
3075 | { | |
3076 | if ( m_small_image_list ) | |
3077 | { | |
3078 | int ix = 0, iy = 0; | |
3079 | m_small_image_list->GetSize(image, ix, iy); | |
3080 | width += ix + HEADER_IMAGE_MARGIN_IN_REPORT_MODE; | |
3081 | } | |
3082 | } | |
f6bcfd97 | 3083 | } |
cf1dfa6b | 3084 | else if ( width == wxLIST_AUTOSIZE ) |
0180dad6 | 3085 | { |
cf1dfa6b VZ |
3086 | if ( IsVirtual() ) |
3087 | { | |
3088 | // TODO: determine the max width somehow... | |
3089 | width = WIDTH_COL_DEFAULT; | |
3090 | } | |
3091 | else // !virtual | |
0180dad6 | 3092 | { |
cf1dfa6b VZ |
3093 | wxClientDC dc(this); |
3094 | dc.SetFont( GetFont() ); | |
3095 | ||
3096 | int max = AUTOSIZE_COL_MARGIN; | |
3097 | ||
7d4813a0 VZ |
3098 | // if the cached column width isn't valid then recalculate it |
3099 | if (m_aColWidths.Item(col)->bNeedsUpdate) | |
0180dad6 | 3100 | { |
7d4813a0 VZ |
3101 | for (size_t i = 0; i < count; i++) |
3102 | { | |
277ea1b4 | 3103 | wxListLineData *line = GetLine( i ); |
7d4813a0 | 3104 | wxListItemDataList::compatibility_iterator n = line->m_items.Item( col ); |
cf1dfa6b | 3105 | |
7d4813a0 | 3106 | wxCHECK_RET( n, _T("no subitem?") ); |
cf1dfa6b | 3107 | |
7d4813a0 VZ |
3108 | wxListItemData *itemData = n->GetData(); |
3109 | wxListItem item; | |
cf1dfa6b | 3110 | |
7d4813a0 VZ |
3111 | itemData->GetItem(item); |
3112 | int itemWidth = GetItemWidthWithImage(&item); | |
3113 | if (itemWidth > max) | |
3114 | max = itemWidth; | |
bffa1c77 | 3115 | } |
cf1dfa6b | 3116 | |
7d4813a0 VZ |
3117 | m_aColWidths.Item(col)->bNeedsUpdate = false; |
3118 | m_aColWidths.Item(col)->nMaxWidth = max; | |
0180dad6 | 3119 | } |
cf1dfa6b | 3120 | |
7d4813a0 | 3121 | max = m_aColWidths.Item(col)->nMaxWidth; |
cf1dfa6b | 3122 | width = max + AUTOSIZE_COL_MARGIN; |
0180dad6 | 3123 | } |
0180dad6 RR |
3124 | } |
3125 | ||
cf1dfa6b | 3126 | column->SetWidth( width ); |
bd8289c1 | 3127 | |
cf1dfa6b VZ |
3128 | // invalidate it as it has to be recalculated |
3129 | m_headerWidth = 0; | |
3130 | } | |
3131 | ||
3132 | int wxListMainWindow::GetHeaderWidth() const | |
3133 | { | |
3134 | if ( !m_headerWidth ) | |
0208334d | 3135 | { |
cf1dfa6b VZ |
3136 | wxListMainWindow *self = wxConstCast(this, wxListMainWindow); |
3137 | ||
3138 | size_t count = GetColumnCount(); | |
3139 | for ( size_t col = 0; col < count; col++ ) | |
63852e78 | 3140 | { |
cf1dfa6b | 3141 | self->m_headerWidth += GetColumnWidth(col); |
63852e78 | 3142 | } |
0208334d | 3143 | } |
bd8289c1 | 3144 | |
cf1dfa6b | 3145 | return m_headerWidth; |
e1e955e1 | 3146 | } |
c801d85f | 3147 | |
cf1dfa6b | 3148 | void wxListMainWindow::GetColumn( int col, wxListItem &item ) const |
c801d85f | 3149 | { |
222ed1d6 | 3150 | wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col ); |
cf1dfa6b VZ |
3151 | wxCHECK_RET( node, _T("invalid column index in GetColumn") ); |
3152 | ||
3153 | wxListHeaderData *column = node->GetData(); | |
3154 | column->GetItem( item ); | |
e1e955e1 | 3155 | } |
c801d85f | 3156 | |
cf1dfa6b | 3157 | int wxListMainWindow::GetColumnWidth( int col ) const |
c801d85f | 3158 | { |
222ed1d6 | 3159 | wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col ); |
24b9f055 VZ |
3160 | wxCHECK_MSG( node, 0, _T("invalid column index") ); |
3161 | ||
3162 | wxListHeaderData *column = node->GetData(); | |
3163 | return column->GetWidth(); | |
e1e955e1 | 3164 | } |
c801d85f | 3165 | |
cf1dfa6b VZ |
3166 | // ---------------------------------------------------------------------------- |
3167 | // item state | |
3168 | // ---------------------------------------------------------------------------- | |
c801d85f KB |
3169 | |
3170 | void wxListMainWindow::SetItem( wxListItem &item ) | |
3171 | { | |
cf1dfa6b VZ |
3172 | long id = item.m_itemId; |
3173 | wxCHECK_RET( id >= 0 && (size_t)id < GetItemCount(), | |
3174 | _T("invalid item index in SetItem") ); | |
3175 | ||
6c02c329 VZ |
3176 | if ( !IsVirtual() ) |
3177 | { | |
3178 | wxListLineData *line = GetLine((size_t)id); | |
3179 | line->SetItem( item.m_col, item ); | |
7d4813a0 | 3180 | |
39a7f085 VZ |
3181 | // Set item state if user wants |
3182 | if ( item.m_mask & wxLIST_MASK_STATE ) | |
3183 | SetItemState( item.m_itemId, item.m_state, item.m_state ); | |
3184 | ||
7d4813a0 VZ |
3185 | if (InReportView()) |
3186 | { | |
3187 | // update the Max Width Cache if needed | |
3188 | int width = GetItemWidthWithImage(&item); | |
3189 | ||
3190 | if (width > m_aColWidths.Item(item.m_col)->nMaxWidth) | |
3191 | m_aColWidths.Item(item.m_col)->nMaxWidth = width; | |
3192 | } | |
6c02c329 VZ |
3193 | } |
3194 | ||
285013b3 VZ |
3195 | // update the item on screen |
3196 | wxRect rectItem; | |
3197 | GetItemRect(id, rectItem); | |
3198 | RefreshRect(rectItem); | |
e1e955e1 | 3199 | } |
c801d85f | 3200 | |
0afa5859 VZ |
3201 | void wxListMainWindow::SetItemStateAll(long state, long stateMask) |
3202 | { | |
3203 | if ( IsEmpty() ) | |
3204 | return; | |
3205 | ||
3206 | // first deal with selection | |
3207 | if ( stateMask & wxLIST_STATE_SELECTED ) | |
3208 | { | |
3209 | // set/clear select state | |
3210 | if ( IsVirtual() ) | |
3211 | { | |
3212 | // optimized version for virtual listctrl. | |
3213 | m_selStore.SelectRange(0, GetItemCount() - 1, state == wxLIST_STATE_SELECTED); | |
3214 | Refresh(); | |
3215 | } | |
3216 | else if ( state & wxLIST_STATE_SELECTED ) | |
3217 | { | |
3218 | const long count = GetItemCount(); | |
3219 | for( long i = 0; i < count; i++ ) | |
3220 | { | |
3221 | SetItemState( i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED ); | |
3222 | } | |
3223 | ||
3224 | } | |
3225 | else | |
3226 | { | |
3227 | // clear for non virtual (somewhat optimized by using GetNextItem()) | |
3228 | long i = -1; | |
3229 | while ( (i = GetNextItem(i, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED)) != -1 ) | |
3230 | { | |
3231 | SetItemState( i, 0, wxLIST_STATE_SELECTED ); | |
3232 | } | |
3233 | } | |
3234 | } | |
3235 | ||
3236 | if ( HasCurrent() && (state == 0) && (stateMask & wxLIST_STATE_FOCUSED) ) | |
3237 | { | |
3238 | // unfocus all: only one item can be focussed, so clearing focus for | |
3239 | // all items is simply clearing focus of the focussed item. | |
3240 | SetItemState(m_current, state, stateMask); | |
3241 | } | |
3242 | //(setting focus to all items makes no sense, so it is not handled here.) | |
3243 | } | |
3244 | ||
cf1dfa6b | 3245 | void wxListMainWindow::SetItemState( long litem, long state, long stateMask ) |
c801d85f | 3246 | { |
0afa5859 VZ |
3247 | if ( litem == -1 ) |
3248 | { | |
3249 | SetItemStateAll(state, stateMask); | |
3250 | return; | |
3251 | } | |
3252 | ||
7448de8d WS |
3253 | wxCHECK_RET( litem >= 0 && (size_t)litem < GetItemCount(), |
3254 | _T("invalid list ctrl item index in SetItem") ); | |
54442116 | 3255 | |
cf1dfa6b | 3256 | size_t oldCurrent = m_current; |
88b792af | 3257 | size_t item = (size_t)litem; // safe because of the check above |
bd8289c1 | 3258 | |
88b792af | 3259 | // do we need to change the focus? |
54442116 | 3260 | if ( stateMask & wxLIST_STATE_FOCUSED ) |
c801d85f | 3261 | { |
54442116 | 3262 | if ( state & wxLIST_STATE_FOCUSED ) |
92976ab6 | 3263 | { |
54442116 | 3264 | // don't do anything if this item is already focused |
cf1dfa6b | 3265 | if ( item != m_current ) |
92976ab6 | 3266 | { |
0ddefeb0 | 3267 | ChangeCurrent(item); |
cf1dfa6b | 3268 | |
88b792af | 3269 | if ( oldCurrent != (size_t)-1 ) |
cf1dfa6b | 3270 | { |
88b792af VZ |
3271 | if ( IsSingleSel() ) |
3272 | { | |
ca65c044 | 3273 | HighlightLine(oldCurrent, false); |
88b792af VZ |
3274 | } |
3275 | ||
cf1dfa6b VZ |
3276 | RefreshLine(oldCurrent); |
3277 | } | |
54442116 | 3278 | |
92976ab6 | 3279 | RefreshLine( m_current ); |
92976ab6 | 3280 | } |
54442116 VZ |
3281 | } |
3282 | else // unfocus | |
3283 | { | |
3284 | // don't do anything if this item is not focused | |
cf1dfa6b | 3285 | if ( item == m_current ) |
bffa1c77 | 3286 | { |
0ddefeb0 | 3287 | ResetCurrent(); |
88b792af | 3288 | |
943f6ad3 VZ |
3289 | if ( IsSingleSel() ) |
3290 | { | |
3291 | // we must unselect the old current item as well or we | |
3292 | // might end up with more than one selected item in a | |
3293 | // single selection control | |
ca65c044 | 3294 | HighlightLine(oldCurrent, false); |
943f6ad3 VZ |
3295 | } |
3296 | ||
88b792af | 3297 | RefreshLine( oldCurrent ); |
bffa1c77 | 3298 | } |
92976ab6 | 3299 | } |
e1e955e1 | 3300 | } |
54442116 | 3301 | |
88b792af | 3302 | // do we need to change the selection state? |
54442116 VZ |
3303 | if ( stateMask & wxLIST_STATE_SELECTED ) |
3304 | { | |
3305 | bool on = (state & wxLIST_STATE_SELECTED) != 0; | |
54442116 | 3306 | |
b54e41c5 | 3307 | if ( IsSingleSel() ) |
54442116 | 3308 | { |
cf1dfa6b VZ |
3309 | if ( on ) |
3310 | { | |
3311 | // selecting the item also makes it the focused one in the | |
3312 | // single sel mode | |
3313 | if ( m_current != item ) | |
3314 | { | |
0ddefeb0 | 3315 | ChangeCurrent(item); |
cf1dfa6b VZ |
3316 | |
3317 | if ( oldCurrent != (size_t)-1 ) | |
3318 | { | |
ca65c044 | 3319 | HighlightLine( oldCurrent, false ); |
cf1dfa6b VZ |
3320 | RefreshLine( oldCurrent ); |
3321 | } | |
3322 | } | |
3323 | } | |
3324 | else // off | |
3325 | { | |
3326 | // only the current item may be selected anyhow | |
3327 | if ( item != m_current ) | |
3328 | return; | |
3329 | } | |
54442116 VZ |
3330 | } |
3331 | ||
b54e41c5 | 3332 | if ( HighlightLine(item, on) ) |
54442116 | 3333 | { |
cf1dfa6b | 3334 | RefreshLine(item); |
54442116 VZ |
3335 | } |
3336 | } | |
e1e955e1 | 3337 | } |
c801d85f | 3338 | |
62d89eb4 | 3339 | int wxListMainWindow::GetItemState( long item, long stateMask ) const |
c801d85f | 3340 | { |
cf1dfa6b VZ |
3341 | wxCHECK_MSG( item >= 0 && (size_t)item < GetItemCount(), 0, |
3342 | _T("invalid list ctrl item index in GetItemState()") ); | |
3343 | ||
92976ab6 | 3344 | int ret = wxLIST_STATE_DONTCARE; |
cf1dfa6b VZ |
3345 | |
3346 | if ( stateMask & wxLIST_STATE_FOCUSED ) | |
c801d85f | 3347 | { |
cf1dfa6b VZ |
3348 | if ( (size_t)item == m_current ) |
3349 | ret |= wxLIST_STATE_FOCUSED; | |
e1e955e1 | 3350 | } |
cf1dfa6b VZ |
3351 | |
3352 | if ( stateMask & wxLIST_STATE_SELECTED ) | |
c801d85f | 3353 | { |
b54e41c5 | 3354 | if ( IsHighlighted(item) ) |
cf1dfa6b | 3355 | ret |= wxLIST_STATE_SELECTED; |
e1e955e1 | 3356 | } |
cf1dfa6b | 3357 | |
92976ab6 | 3358 | return ret; |
e1e955e1 | 3359 | } |
c801d85f | 3360 | |
62d89eb4 | 3361 | void wxListMainWindow::GetItem( wxListItem &item ) const |
c801d85f | 3362 | { |
cf1dfa6b VZ |
3363 | wxCHECK_RET( item.m_itemId >= 0 && (size_t)item.m_itemId < GetItemCount(), |
3364 | _T("invalid item index in GetItem") ); | |
3365 | ||
3366 | wxListLineData *line = GetLine((size_t)item.m_itemId); | |
3367 | line->GetItem( item.m_col, item ); | |
39a7f085 VZ |
3368 | |
3369 | // Get item state if user wants it | |
3370 | if ( item.m_mask & wxLIST_MASK_STATE ) | |
3371 | item.m_state = GetItemState( item.m_itemId, wxLIST_STATE_SELECTED | | |
3372 | wxLIST_STATE_FOCUSED ); | |
e1e955e1 | 3373 | } |
c801d85f | 3374 | |
cf1dfa6b VZ |
3375 | // ---------------------------------------------------------------------------- |
3376 | // item count | |
3377 | // ---------------------------------------------------------------------------- | |
3378 | ||
3379 | size_t wxListMainWindow::GetItemCount() const | |
1370703e VZ |
3380 | { |
3381 | return IsVirtual() ? m_countVirt : m_lines.GetCount(); | |
3382 | } | |
3383 | ||
3384 | void wxListMainWindow::SetItemCount(long count) | |
c801d85f | 3385 | { |
b54e41c5 | 3386 | m_selStore.SetItemCount(count); |
1370703e VZ |
3387 | m_countVirt = count; |
3388 | ||
850ed6e7 VZ |
3389 | ResetVisibleLinesRange(); |
3390 | ||
5fe143df | 3391 | // scrollbars must be reset |
ca65c044 | 3392 | m_dirty = true; |
e1e955e1 | 3393 | } |
c801d85f | 3394 | |
62d89eb4 | 3395 | int wxListMainWindow::GetSelectedItemCount() const |
c801d85f | 3396 | { |
cf1dfa6b | 3397 | // deal with the quick case first |
b54e41c5 | 3398 | if ( IsSingleSel() ) |
ca65c044 | 3399 | return HasCurrent() ? IsHighlighted(m_current) : false; |
cf1dfa6b VZ |
3400 | |
3401 | // virtual controls remmebers all its selections itself | |
3402 | if ( IsVirtual() ) | |
b54e41c5 | 3403 | return m_selStore.GetSelectedCount(); |
cf1dfa6b VZ |
3404 | |
3405 | // TODO: we probably should maintain the number of items selected even for | |
3406 | // non virtual controls as enumerating all lines is really slow... | |
3407 | size_t countSel = 0; | |
3408 | size_t count = GetItemCount(); | |
3409 | for ( size_t line = 0; line < count; line++ ) | |
92976ab6 | 3410 | { |
b54e41c5 | 3411 | if ( GetLine(line)->IsHighlighted() ) |
cf1dfa6b | 3412 | countSel++; |
92976ab6 | 3413 | } |
c801d85f | 3414 | |
cf1dfa6b | 3415 | return countSel; |
e1e955e1 | 3416 | } |
e3e65dac | 3417 | |
cf1dfa6b VZ |
3418 | // ---------------------------------------------------------------------------- |
3419 | // item position/size | |
3420 | // ---------------------------------------------------------------------------- | |
3421 | ||
11ebea16 VZ |
3422 | wxRect wxListMainWindow::GetViewRect() const |
3423 | { | |
929b7901 | 3424 | wxASSERT_MSG( !HasFlag(wxLC_LIST), "not implemented for list view" ); |
11ebea16 VZ |
3425 | |
3426 | // we need to find the longest/tallest label | |
277ea1b4 | 3427 | wxCoord xMax = 0, yMax = 0; |
11ebea16 VZ |
3428 | const int count = GetItemCount(); |
3429 | if ( count ) | |
3430 | { | |
3431 | for ( int i = 0; i < count; i++ ) | |
3432 | { | |
ebf82d2b VZ |
3433 | // we need logical, not physical, coordinates here, so use |
3434 | // GetLineRect() instead of GetItemRect() | |
3435 | wxRect r = GetLineRect(i); | |
11ebea16 VZ |
3436 | |
3437 | wxCoord x = r.GetRight(), | |
3438 | y = r.GetBottom(); | |
3439 | ||
3440 | if ( x > xMax ) | |
3441 | xMax = x; | |
3442 | if ( y > yMax ) | |
3443 | yMax = y; | |
3444 | } | |
3445 | } | |
3446 | ||
eb6c4508 | 3447 | // some fudge needed to make it look prettier |
277ea1b4 DS |
3448 | xMax += 2 * EXTRA_BORDER_X; |
3449 | yMax += 2 * EXTRA_BORDER_Y; | |
eb6c4508 VZ |
3450 | |
3451 | // account for the scrollbars if necessary | |
3452 | const wxSize sizeAll = GetClientSize(); | |
3453 | if ( xMax > sizeAll.x ) | |
3454 | yMax += wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y); | |
3455 | if ( yMax > sizeAll.y ) | |
3456 | xMax += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X); | |
11ebea16 VZ |
3457 | |
3458 | return wxRect(0, 0, xMax, yMax); | |
3459 | } | |
3460 | ||
e974c5d2 VZ |
3461 | bool |
3462 | wxListMainWindow::GetSubItemRect(long item, long subItem, wxRect& rect) const | |
c801d85f | 3463 | { |
b8e57034 VZ |
3464 | wxCHECK_MSG( subItem == wxLIST_GETSUBITEMRECT_WHOLEITEM || InReportView(), |
3465 | false, | |
e974c5d2 VZ |
3466 | _T("GetSubItemRect only meaningful in report view") ); |
3467 | wxCHECK_MSG( item >= 0 && (size_t)item < GetItemCount(), false, | |
3468 | _T("invalid item in GetSubItemRect") ); | |
cf1dfa6b | 3469 | |
1e54be64 VZ |
3470 | // ensure that we're laid out, otherwise we could return nonsense |
3471 | if ( m_dirty ) | |
3472 | { | |
3473 | wxConstCast(this, wxListMainWindow)-> | |
ca65c044 | 3474 | RecalculatePositions(true /* no refresh */); |
1e54be64 VZ |
3475 | } |
3476 | ||
e974c5d2 VZ |
3477 | rect = GetLineRect((size_t)item); |
3478 | ||
3479 | // Adjust rect to specified column | |
3480 | if ( subItem != wxLIST_GETSUBITEMRECT_WHOLEITEM ) | |
3481 | { | |
3482 | wxCHECK_MSG( subItem >= 0 && subItem < GetColumnCount(), false, | |
3483 | _T("invalid subItem in GetSubItemRect") ); | |
3484 | ||
3485 | for (int i = 0; i < subItem; i++) | |
3486 | { | |
3487 | rect.x += GetColumnWidth(i); | |
3488 | } | |
3489 | rect.width = GetColumnWidth(subItem); | |
3490 | } | |
b54e41c5 | 3491 | |
06cd40a8 | 3492 | GetListCtrl()->CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y); |
e974c5d2 VZ |
3493 | |
3494 | return true; | |
e1e955e1 | 3495 | } |
c801d85f | 3496 | |
62d89eb4 | 3497 | bool wxListMainWindow::GetItemPosition(long item, wxPoint& pos) const |
c801d85f | 3498 | { |
cf1dfa6b VZ |
3499 | wxRect rect; |
3500 | GetItemRect(item, rect); | |
bd8289c1 | 3501 | |
cf1dfa6b VZ |
3502 | pos.x = rect.x; |
3503 | pos.y = rect.y; | |
bd8289c1 | 3504 | |
ca65c044 | 3505 | return true; |
e1e955e1 | 3506 | } |
c801d85f | 3507 | |
cf1dfa6b VZ |
3508 | // ---------------------------------------------------------------------------- |
3509 | // geometry calculation | |
3510 | // ---------------------------------------------------------------------------- | |
3511 | ||
34bbbc27 | 3512 | void wxListMainWindow::RecalculatePositions(bool noRefresh) |
c801d85f | 3513 | { |
6d6d86a6 RD |
3514 | const int lineHeight = GetLineHeight(); |
3515 | ||
1e6d9499 | 3516 | wxClientDC dc( this ); |
92976ab6 | 3517 | dc.SetFont( GetFont() ); |
c801d85f | 3518 | |
13602ebd VZ |
3519 | const size_t count = GetItemCount(); |
3520 | ||
cf1dfa6b | 3521 | int iconSpacing; |
026d7276 | 3522 | if ( HasFlag(wxLC_ICON) && m_normal_image_list ) |
cf1dfa6b | 3523 | iconSpacing = m_normal_spacing; |
026d7276 | 3524 | else if ( HasFlag(wxLC_SMALL_ICON) && m_small_image_list ) |
cf1dfa6b VZ |
3525 | iconSpacing = m_small_spacing; |
3526 | else | |
3527 | iconSpacing = 0; | |
004fd0c8 | 3528 | |
bf632edd | 3529 | // Note that we do not call GetClientSize() here but |
34621cc5 | 3530 | // GetSize() and subtract the border size for sunken |
bf632edd RR |
3531 | // borders manually. This is technically incorrect, |
3532 | // but we need to know the client area's size WITHOUT | |
3533 | // scrollbars here. Since we don't know if there are | |
3534 | // any scrollbars, we use GetSize() instead. Another | |
3535 | // solution would be to call SetScrollbars() here to | |
3536 | // remove the scrollbars and call GetClientSize() then, | |
3537 | // but this might result in flicker and - worse - will | |
3538 | // reset the scrollbars to 0 which is not good at all | |
3539 | // if you resize a dialog/window, but don't want to | |
3540 | // reset the window scrolling. RR. | |
3541 | // Furthermore, we actually do NOT subtract the border | |
3542 | // width as 2 pixels is just the extra space which we | |
3543 | // need around the actual content in the window. Other- | |
3544 | // wise the text would e.g. touch the upper border. RR. | |
cf1dfa6b VZ |
3545 | int clientWidth, |
3546 | clientHeight; | |
bf632edd | 3547 | GetSize( &clientWidth, &clientHeight ); |
a77ec46d | 3548 | |
b5d43d1d | 3549 | if ( InReportView() ) |
cf1dfa6b | 3550 | { |
13602ebd | 3551 | // all lines have the same height and we scroll one line per step |
277ea1b4 | 3552 | int entireHeight = count * lineHeight + LINE_SPACING; |
bd8289c1 | 3553 | |
b54e41c5 VZ |
3554 | m_linesPerPage = clientHeight / lineHeight; |
3555 | ||
3556 | ResetVisibleLinesRange(); | |
2c1f73ee | 3557 | |
06cd40a8 | 3558 | GetListCtrl()->SetScrollbars( SCROLL_UNIT_X, lineHeight, |
13602ebd VZ |
3559 | GetHeaderWidth() / SCROLL_UNIT_X, |
3560 | (entireHeight + lineHeight - 1) / lineHeight, | |
06cd40a8 RR |
3561 | GetListCtrl()->GetScrollPos(wxHORIZONTAL), |
3562 | GetListCtrl()->GetScrollPos(wxVERTICAL), | |
ca65c044 | 3563 | true ); |
e1e955e1 | 3564 | } |
cf1dfa6b | 3565 | else // !report |
92976ab6 | 3566 | { |
13602ebd VZ |
3567 | // we have 3 different layout strategies: either layout all items |
3568 | // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or | |
3569 | // to arrange them in top to bottom, left to right (don't ask me why | |
3570 | // not the other way round...) order | |
3571 | if ( HasFlag(wxLC_ALIGN_LEFT | wxLC_ALIGN_TOP) ) | |
e487524e | 3572 | { |
13602ebd VZ |
3573 | int x = EXTRA_BORDER_X; |
3574 | int y = EXTRA_BORDER_Y; | |
cf1dfa6b | 3575 | |
94dd23ae VZ |
3576 | wxCoord widthMax = 0; |
3577 | ||
3578 | size_t i; | |
3579 | for ( i = 0; i < count; i++ ) | |
92976ab6 | 3580 | { |
cf1dfa6b | 3581 | wxListLineData *line = GetLine(i); |
92976ab6 | 3582 | line->CalculateSize( &dc, iconSpacing ); |
13602ebd | 3583 | line->SetPosition( x, y, iconSpacing ); |
cf1dfa6b | 3584 | |
5cd89174 | 3585 | wxSize sizeLine = GetLineSize(i); |
cf1dfa6b | 3586 | |
13602ebd VZ |
3587 | if ( HasFlag(wxLC_ALIGN_TOP) ) |
3588 | { | |
94dd23ae VZ |
3589 | if ( sizeLine.x > widthMax ) |
3590 | widthMax = sizeLine.x; | |
3591 | ||
13602ebd VZ |
3592 | y += sizeLine.y; |
3593 | } | |
3594 | else // wxLC_ALIGN_LEFT | |
3595 | { | |
3596 | x += sizeLine.x + MARGIN_BETWEEN_ROWS; | |
3597 | } | |
3598 | } | |
3599 | ||
94dd23ae VZ |
3600 | if ( HasFlag(wxLC_ALIGN_TOP) ) |
3601 | { | |
3602 | // traverse the items again and tweak their sizes so that they are | |
3603 | // all the same in a row | |
3604 | for ( i = 0; i < count; i++ ) | |
3605 | { | |
3606 | wxListLineData *line = GetLine(i); | |
3607 | line->m_gi->ExtendWidth(widthMax); | |
3608 | } | |
3609 | } | |
3610 | ||
06cd40a8 | 3611 | GetListCtrl()->SetScrollbars |
13602ebd VZ |
3612 | ( |
3613 | SCROLL_UNIT_X, | |
6d78bbe6 | 3614 | lineHeight, |
13602ebd | 3615 | (x + SCROLL_UNIT_X) / SCROLL_UNIT_X, |
6d78bbe6 | 3616 | (y + lineHeight) / lineHeight, |
06cd40a8 RR |
3617 | GetListCtrl()->GetScrollPos( wxHORIZONTAL ), |
3618 | GetListCtrl()->GetScrollPos( wxVERTICAL ), | |
ca65c044 | 3619 | true |
13602ebd VZ |
3620 | ); |
3621 | } | |
3622 | else // "flowed" arrangement, the most complicated case | |
3623 | { | |
3624 | // at first we try without any scrollbars, if the items don't fit into | |
3625 | // the window, we recalculate after subtracting the space taken by the | |
3626 | // scrollbar | |
3627 | ||
8a39593e | 3628 | int entireWidth = 0; |
cf1dfa6b | 3629 | |
13602ebd VZ |
3630 | for (int tries = 0; tries < 2; tries++) |
3631 | { | |
277ea1b4 | 3632 | entireWidth = 2 * EXTRA_BORDER_X; |
cf1dfa6b | 3633 | |
13602ebd | 3634 | if (tries == 1) |
92976ab6 | 3635 | { |
13602ebd VZ |
3636 | // Now we have decided that the items do not fit into the |
3637 | // client area, so we need a scrollbar | |
3638 | entireWidth += SCROLL_UNIT_X; | |
92976ab6 | 3639 | } |
a77ec46d | 3640 | |
13602ebd VZ |
3641 | int x = EXTRA_BORDER_X; |
3642 | int y = EXTRA_BORDER_Y; | |
3643 | int maxWidthInThisRow = 0; | |
3644 | ||
3645 | m_linesPerPage = 0; | |
3646 | int currentlyVisibleLines = 0; | |
a77ec46d | 3647 | |
13602ebd | 3648 | for (size_t i = 0; i < count; i++) |
92976ab6 | 3649 | { |
13602ebd | 3650 | currentlyVisibleLines++; |
277ea1b4 | 3651 | wxListLineData *line = GetLine( i ); |
13602ebd VZ |
3652 | line->CalculateSize( &dc, iconSpacing ); |
3653 | line->SetPosition( x, y, iconSpacing ); | |
3654 | ||
277ea1b4 | 3655 | wxSize sizeLine = GetLineSize( i ); |
a77ec46d | 3656 | |
13602ebd VZ |
3657 | if ( maxWidthInThisRow < sizeLine.x ) |
3658 | maxWidthInThisRow = sizeLine.x; | |
3659 | ||
3660 | y += sizeLine.y; | |
3661 | if (currentlyVisibleLines > m_linesPerPage) | |
3662 | m_linesPerPage = currentlyVisibleLines; | |
3663 | ||
3664 | if ( y + sizeLine.y >= clientHeight ) | |
3665 | { | |
3666 | currentlyVisibleLines = 0; | |
3667 | y = EXTRA_BORDER_Y; | |
3668 | maxWidthInThisRow += MARGIN_BETWEEN_ROWS; | |
3669 | x += maxWidthInThisRow; | |
3670 | entireWidth += maxWidthInThisRow; | |
3671 | maxWidthInThisRow = 0; | |
3672 | } | |
3673 | ||
3674 | // We have reached the last item. | |
3675 | if ( i == count - 1 ) | |
3676 | entireWidth += maxWidthInThisRow; | |
3677 | ||
3678 | if ( (tries == 0) && | |
3679 | (entireWidth + SCROLL_UNIT_X > clientWidth) ) | |
3680 | { | |
3681 | clientHeight -= wxSystemSettings:: | |
3682 | GetMetric(wxSYS_HSCROLL_Y); | |
3683 | m_linesPerPage = 0; | |
13602ebd VZ |
3684 | break; |
3685 | } | |
3686 | ||
3687 | if ( i == count - 1 ) | |
3688 | tries = 1; // Everything fits, no second try required. | |
3689 | } | |
92976ab6 | 3690 | } |
bffa1c77 | 3691 | |
06cd40a8 | 3692 | GetListCtrl()->SetScrollbars |
13602ebd VZ |
3693 | ( |
3694 | SCROLL_UNIT_X, | |
6d78bbe6 | 3695 | lineHeight, |
13602ebd VZ |
3696 | (entireWidth + SCROLL_UNIT_X) / SCROLL_UNIT_X, |
3697 | 0, | |
06cd40a8 | 3698 | GetListCtrl()->GetScrollPos( wxHORIZONTAL ), |
13602ebd | 3699 | 0, |
ca65c044 | 3700 | true |
13602ebd VZ |
3701 | ); |
3702 | } | |
e1e955e1 | 3703 | } |
cf1dfa6b | 3704 | |
34bbbc27 VZ |
3705 | if ( !noRefresh ) |
3706 | { | |
3707 | // FIXME: why should we call it from here? | |
3708 | UpdateCurrent(); | |
b54e41c5 | 3709 | |
34bbbc27 VZ |
3710 | RefreshAll(); |
3711 | } | |
b54e41c5 VZ |
3712 | } |
3713 | ||
3714 | void wxListMainWindow::RefreshAll() | |
3715 | { | |
ca65c044 | 3716 | m_dirty = false; |
b54e41c5 VZ |
3717 | Refresh(); |
3718 | ||
3719 | wxListHeaderWindow *headerWin = GetListCtrl()->m_headerWin; | |
70541533 | 3720 | if ( headerWin && headerWin->m_dirty ) |
b54e41c5 | 3721 | { |
ca65c044 | 3722 | headerWin->m_dirty = false; |
b54e41c5 VZ |
3723 | headerWin->Refresh(); |
3724 | } | |
e1e955e1 | 3725 | } |
c801d85f | 3726 | |
cf1dfa6b | 3727 | void wxListMainWindow::UpdateCurrent() |
c801d85f | 3728 | { |
b54e41c5 | 3729 | if ( !HasCurrent() && !IsEmpty() ) |
0ddefeb0 | 3730 | ChangeCurrent(0); |
e1e955e1 | 3731 | } |
c801d85f | 3732 | |
19695fbd VZ |
3733 | long wxListMainWindow::GetNextItem( long item, |
3734 | int WXUNUSED(geometry), | |
62d89eb4 | 3735 | int state ) const |
c801d85f | 3736 | { |
d1022fd6 VZ |
3737 | long ret = item, |
3738 | max = GetItemCount(); | |
3739 | wxCHECK_MSG( (ret == -1) || (ret < max), -1, | |
13771c08 | 3740 | _T("invalid listctrl index in GetNextItem()") ); |
19695fbd VZ |
3741 | |
3742 | // notice that we start with the next item (or the first one if item == -1) | |
3743 | // and this is intentional to allow writing a simple loop to iterate over | |
3744 | // all selected items | |
d1022fd6 VZ |
3745 | ret++; |
3746 | if ( ret == max ) | |
277ea1b4 DS |
3747 | // this is not an error because the index was OK initially, |
3748 | // just no such item | |
d1022fd6 | 3749 | return -1; |
d1022fd6 | 3750 | |
cf1dfa6b | 3751 | if ( !state ) |
cf1dfa6b VZ |
3752 | // any will do |
3753 | return (size_t)ret; | |
cf1dfa6b VZ |
3754 | |
3755 | size_t count = GetItemCount(); | |
3756 | for ( size_t line = (size_t)ret; line < count; line++ ) | |
63852e78 | 3757 | { |
cf1dfa6b VZ |
3758 | if ( (state & wxLIST_STATE_FOCUSED) && (line == m_current) ) |
3759 | return line; | |
3760 | ||
b54e41c5 | 3761 | if ( (state & wxLIST_STATE_SELECTED) && IsHighlighted(line) ) |
cf1dfa6b | 3762 | return line; |
63852e78 | 3763 | } |
19695fbd | 3764 | |
63852e78 | 3765 | return -1; |
e1e955e1 | 3766 | } |
c801d85f | 3767 | |
cf1dfa6b VZ |
3768 | // ---------------------------------------------------------------------------- |
3769 | // deleting stuff | |
3770 | // ---------------------------------------------------------------------------- | |
3771 | ||
b54e41c5 | 3772 | void wxListMainWindow::DeleteItem( long lindex ) |
c801d85f | 3773 | { |
cf1dfa6b VZ |
3774 | size_t count = GetItemCount(); |
3775 | ||
b54e41c5 | 3776 | wxCHECK_RET( (lindex >= 0) && ((size_t)lindex < count), |
cf1dfa6b VZ |
3777 | _T("invalid item index in DeleteItem") ); |
3778 | ||
b54e41c5 VZ |
3779 | size_t index = (size_t)lindex; |
3780 | ||
d6ddcd57 VZ |
3781 | // we don't need to adjust the index for the previous items |
3782 | if ( HasCurrent() && m_current >= index ) | |
cf1dfa6b | 3783 | { |
d6ddcd57 VZ |
3784 | // if the current item is being deleted, we want the next one to |
3785 | // become selected - unless there is no next one - so don't adjust | |
3786 | // m_current in this case | |
3787 | if ( m_current != index || m_current == count - 1 ) | |
d6ddcd57 | 3788 | m_current--; |
cf1dfa6b | 3789 | } |
6fef2483 | 3790 | |
938b652b | 3791 | if ( InReportView() ) |
63852e78 | 3792 | { |
a95d5751 RR |
3793 | // mark the Column Max Width cache as dirty if the items in the line |
3794 | // we're deleting contain the Max Column Width | |
7d4813a0 VZ |
3795 | wxListLineData * const line = GetLine(index); |
3796 | wxListItemDataList::compatibility_iterator n; | |
3797 | wxListItemData *itemData; | |
3798 | wxListItem item; | |
3799 | int itemWidth; | |
3800 | ||
3801 | for (size_t i = 0; i < m_columns.GetCount(); i++) | |
3802 | { | |
3803 | n = line->m_items.Item( i ); | |
3804 | itemData = n->GetData(); | |
3805 | itemData->GetItem(item); | |
3806 | ||
3807 | itemWidth = GetItemWidthWithImage(&item); | |
3808 | ||
3809 | if (itemWidth >= m_aColWidths.Item(i)->nMaxWidth) | |
3810 | m_aColWidths.Item(i)->bNeedsUpdate = true; | |
3811 | } | |
3812 | ||
6b4a8d93 | 3813 | ResetVisibleLinesRange(); |
938b652b VZ |
3814 | } |
3815 | ||
a95d5751 RR |
3816 | SendNotify( index, wxEVT_COMMAND_LIST_DELETE_ITEM, wxDefaultPosition ); |
3817 | ||
938b652b VZ |
3818 | if ( IsVirtual() ) |
3819 | { | |
3820 | m_countVirt--; | |
b54e41c5 VZ |
3821 | m_selStore.OnItemDelete(index); |
3822 | } | |
3823 | else | |
3824 | { | |
3825 | m_lines.RemoveAt( index ); | |
63852e78 | 3826 | } |
6b4a8d93 | 3827 | |
70541533 | 3828 | // we need to refresh the (vert) scrollbar as the number of items changed |
ca65c044 | 3829 | m_dirty = true; |
91c6cc0e | 3830 | |
6b4a8d93 | 3831 | RefreshAfter(index); |
e1e955e1 | 3832 | } |
c801d85f | 3833 | |
debe6624 | 3834 | void wxListMainWindow::DeleteColumn( int col ) |
c801d85f | 3835 | { |
222ed1d6 | 3836 | wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col ); |
24b9f055 VZ |
3837 | |
3838 | wxCHECK_RET( node, wxT("invalid column index in DeleteColumn()") ); | |
bd8289c1 | 3839 | |
ca65c044 | 3840 | m_dirty = true; |
222ed1d6 MB |
3841 | delete node->GetData(); |
3842 | m_columns.Erase( node ); | |
ae409cb8 | 3843 | |
df6f82f0 VZ |
3844 | if ( !IsVirtual() ) |
3845 | { | |
3846 | // update all the items | |
3847 | for ( size_t i = 0; i < m_lines.GetCount(); i++ ) | |
3848 | { | |
3849 | wxListLineData * const line = GetLine(i); | |
222ed1d6 MB |
3850 | wxListItemDataList::compatibility_iterator n = line->m_items.Item( col ); |
3851 | delete n->GetData(); | |
3852 | line->m_items.Erase(n); | |
df6f82f0 VZ |
3853 | } |
3854 | } | |
3855 | ||
7d4813a0 VZ |
3856 | if ( InReportView() ) // we only cache max widths when in Report View |
3857 | { | |
3858 | delete m_aColWidths.Item(col); | |
3859 | m_aColWidths.RemoveAt(col); | |
3860 | } | |
3861 | ||
ae409cb8 VZ |
3862 | // invalidate it as it has to be recalculated |
3863 | m_headerWidth = 0; | |
e1e955e1 | 3864 | } |
c801d85f | 3865 | |
5fe143df | 3866 | void wxListMainWindow::DoDeleteAllItems() |
c801d85f | 3867 | { |
cf1dfa6b | 3868 | if ( IsEmpty() ) |
cf1dfa6b VZ |
3869 | // nothing to do - in particular, don't send the event |
3870 | return; | |
cf1dfa6b | 3871 | |
b54e41c5 | 3872 | ResetCurrent(); |
7c0ea335 VZ |
3873 | |
3874 | // to make the deletion of all items faster, we don't send the | |
cf1dfa6b VZ |
3875 | // notifications for each item deletion in this case but only one event |
3876 | // for all of them: this is compatible with wxMSW and documented in | |
3877 | // DeleteAllItems() description | |
bffa1c77 | 3878 | |
12c1b46a RR |
3879 | wxListEvent event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, GetParent()->GetId() ); |
3880 | event.SetEventObject( GetParent() ); | |
3881 | GetParent()->GetEventHandler()->ProcessEvent( event ); | |
7c0ea335 | 3882 | |
b54e41c5 VZ |
3883 | if ( IsVirtual() ) |
3884 | { | |
3885 | m_countVirt = 0; | |
850ed6e7 | 3886 | m_selStore.Clear(); |
b54e41c5 VZ |
3887 | } |
3888 | ||
6b4a8d93 VZ |
3889 | if ( InReportView() ) |
3890 | { | |
3891 | ResetVisibleLinesRange(); | |
7d4813a0 VZ |
3892 | for (size_t i = 0; i < m_aColWidths.GetCount(); i++) |
3893 | { | |
8d36b216 | 3894 | m_aColWidths.Item(i)->bNeedsUpdate = true; |
7d4813a0 | 3895 | } |
6b4a8d93 VZ |
3896 | } |
3897 | ||
5b077d48 | 3898 | m_lines.Clear(); |
5fe143df | 3899 | } |
cf1dfa6b | 3900 | |
5fe143df VZ |
3901 | void wxListMainWindow::DeleteAllItems() |
3902 | { | |
3903 | DoDeleteAllItems(); | |
3904 | ||
3905 | RecalculatePositions(); | |
e1e955e1 | 3906 | } |
c801d85f | 3907 | |
12c1b46a | 3908 | void wxListMainWindow::DeleteEverything() |
c801d85f | 3909 | { |
222ed1d6 | 3910 | WX_CLEAR_LIST(wxListHeaderDataList, m_columns); |
8d36b216 | 3911 | WX_CLEAR_ARRAY(m_aColWidths); |
904ccf52 VZ |
3912 | |
3913 | DeleteAllItems(); | |
e1e955e1 | 3914 | } |
c801d85f | 3915 | |
cf1dfa6b VZ |
3916 | // ---------------------------------------------------------------------------- |
3917 | // scanning for an item | |
3918 | // ---------------------------------------------------------------------------- | |
3919 | ||
debe6624 | 3920 | void wxListMainWindow::EnsureVisible( long index ) |
c801d85f | 3921 | { |
cf1dfa6b VZ |
3922 | wxCHECK_RET( index >= 0 && (size_t)index < GetItemCount(), |
3923 | _T("invalid index in EnsureVisible") ); | |
3924 | ||
3925 | // We have to call this here because the label in question might just have | |
34bbbc27 VZ |
3926 | // been added and its position is not known yet |
3927 | if ( m_dirty ) | |
ca65c044 | 3928 | RecalculatePositions(true /* no refresh */); |
34bbbc27 VZ |
3929 | |
3930 | MoveToItem((size_t)index); | |
e1e955e1 | 3931 | } |
c801d85f | 3932 | |
23739465 | 3933 | long wxListMainWindow::FindItem(long start, const wxString& str, bool partial ) |
c801d85f | 3934 | { |
23739465 RR |
3935 | if (str.empty()) |
3936 | return wxNOT_FOUND; | |
6fef2483 | 3937 | |
5b077d48 | 3938 | long pos = start; |
23739465 | 3939 | wxString str_upper = str.Upper(); |
cf1dfa6b VZ |
3940 | if (pos < 0) |
3941 | pos = 0; | |
54442116 | 3942 | |
cf1dfa6b VZ |
3943 | size_t count = GetItemCount(); |
3944 | for ( size_t i = (size_t)pos; i < count; i++ ) | |
3945 | { | |
3946 | wxListLineData *line = GetLine(i); | |
23739465 RR |
3947 | wxString line_upper = line->GetText(0).Upper(); |
3948 | if (!partial) | |
3949 | { | |
3950 | if (line_upper == str_upper ) | |
3951 | return i; | |
3952 | } | |
3953 | else | |
3954 | { | |
3955 | if (line_upper.find(str_upper) == 0) | |
3956 | return i; | |
3957 | } | |
5b077d48 | 3958 | } |
cf1dfa6b VZ |
3959 | |
3960 | return wxNOT_FOUND; | |
e1e955e1 | 3961 | } |
c801d85f | 3962 | |
81ce36aa | 3963 | long wxListMainWindow::FindItem(long start, wxUIntPtr data) |
c801d85f | 3964 | { |
5b077d48 | 3965 | long pos = start; |
cf1dfa6b VZ |
3966 | if (pos < 0) |
3967 | pos = 0; | |
3968 | ||
3969 | size_t count = GetItemCount(); | |
3970 | for (size_t i = (size_t)pos; i < count; i++) | |
5b077d48 | 3971 | { |
cf1dfa6b | 3972 | wxListLineData *line = GetLine(i); |
5b077d48 RR |
3973 | wxListItem item; |
3974 | line->GetItem( 0, item ); | |
cf1dfa6b VZ |
3975 | if (item.m_data == data) |
3976 | return i; | |
5b077d48 | 3977 | } |
cf1dfa6b VZ |
3978 | |
3979 | return wxNOT_FOUND; | |
e1e955e1 | 3980 | } |
c801d85f | 3981 | |
8158e0e1 VZ |
3982 | long wxListMainWindow::FindItem( const wxPoint& pt ) |
3983 | { | |
e6bf9573 | 3984 | size_t topItem; |
277ea1b4 | 3985 | GetVisibleLinesRange( &topItem, NULL ); |
8158e0e1 | 3986 | |
e6bf9573 | 3987 | wxPoint p; |
277ea1b4 DS |
3988 | GetItemPosition( GetItemCount() - 1, p ); |
3989 | if ( p.y == 0 ) | |
e6bf9573 | 3990 | return topItem; |
277ea1b4 DS |
3991 | |
3992 | long id = (long)floor( pt.y * double(GetItemCount() - topItem - 1) / p.y + topItem ); | |
3993 | if ( id >= 0 && id < (long)GetItemCount() ) | |
e6bf9573 | 3994 | return id; |
8158e0e1 | 3995 | |
e6bf9573 | 3996 | return wxNOT_FOUND; |
8158e0e1 VZ |
3997 | } |
3998 | ||
be0e5d69 | 3999 | long wxListMainWindow::HitTest( int x, int y, int &flags ) const |
c801d85f | 4000 | { |
06cd40a8 | 4001 | GetListCtrl()->CalcUnscrolledPosition( x, y, &x, &y ); |
e8741cca | 4002 | |
fc4f1d5f VZ |
4003 | size_t count = GetItemCount(); |
4004 | ||
b5d43d1d | 4005 | if ( InReportView() ) |
c801d85f | 4006 | { |
5cd89174 | 4007 | size_t current = y / GetLineHeight(); |
fc4f1d5f VZ |
4008 | if ( current < count ) |
4009 | { | |
4010 | flags = HitTestLine(current, x, y); | |
4011 | if ( flags ) | |
4012 | return current; | |
4013 | } | |
5cd89174 VZ |
4014 | } |
4015 | else // !report | |
4016 | { | |
4017 | // TODO: optimize it too! this is less simple than for report view but | |
4018 | // enumerating all items is still not a way to do it!! | |
5cd89174 | 4019 | for ( size_t current = 0; current < count; current++ ) |
5b077d48 | 4020 | { |
5cd89174 VZ |
4021 | flags = HitTestLine(current, x, y); |
4022 | if ( flags ) | |
4023 | return current; | |
5b077d48 | 4024 | } |
e1e955e1 | 4025 | } |
cf1dfa6b VZ |
4026 | |
4027 | return wxNOT_FOUND; | |
e1e955e1 | 4028 | } |
c801d85f | 4029 | |
cf1dfa6b VZ |
4030 | // ---------------------------------------------------------------------------- |
4031 | // adding stuff | |
4032 | // ---------------------------------------------------------------------------- | |
4033 | ||
c801d85f KB |
4034 | void wxListMainWindow::InsertItem( wxListItem &item ) |
4035 | { | |
cf1dfa6b VZ |
4036 | wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") ); |
4037 | ||
c7cf7a78 | 4038 | int count = GetItemCount(); |
33c956e6 | 4039 | wxCHECK_RET( item.m_itemId >= 0, _T("invalid item index") ); |
cf1dfa6b | 4040 | |
33c956e6 RD |
4041 | if (item.m_itemId > count) |
4042 | item.m_itemId = count; | |
b713f891 | 4043 | |
cf1dfa6b VZ |
4044 | size_t id = item.m_itemId; |
4045 | ||
ca65c044 | 4046 | m_dirty = true; |
cf1dfa6b | 4047 | |
b5d43d1d | 4048 | if ( InReportView() ) |
2b5f62a0 | 4049 | { |
2b5f62a0 | 4050 | ResetVisibleLinesRange(); |
7d4813a0 VZ |
4051 | |
4052 | // calculate the width of the item and adjust the max column width | |
4053 | wxColWidthInfo *pWidthInfo = m_aColWidths.Item(item.GetColumn()); | |
f5c479cc | 4054 | int width = GetItemWidthWithImage(&item); |
7d4813a0 VZ |
4055 | item.SetWidth(width); |
4056 | if (width > pWidthInfo->nMaxWidth) | |
4057 | pWidthInfo->nMaxWidth = width; | |
1370703e | 4058 | } |
004fd0c8 | 4059 | |
5cd89174 | 4060 | wxListLineData *line = new wxListLineData(this); |
004fd0c8 | 4061 | |
1e6601c7 | 4062 | line->SetItem( item.m_col, item ); |
cf1dfa6b VZ |
4063 | |
4064 | m_lines.Insert( line, id ); | |
5cd89174 | 4065 | |
ca65c044 | 4066 | m_dirty = true; |
a67e6e54 | 4067 | |
ab96d680 VZ |
4068 | // If an item is selected at or below the point of insertion, we need to |
4069 | // increment the member variables because the current row's index has gone | |
4070 | // up by one | |
4071 | if ( HasCurrent() && m_current >= id ) | |
ab96d680 | 4072 | m_current++; |
ab96d680 | 4073 | |
a67e6e54 VZ |
4074 | SendNotify(id, wxEVT_COMMAND_LIST_INSERT_ITEM); |
4075 | ||
5cd89174 | 4076 | RefreshLines(id, GetItemCount() - 1); |
e1e955e1 | 4077 | } |
c801d85f | 4078 | |
debe6624 | 4079 | void wxListMainWindow::InsertColumn( long col, wxListItem &item ) |
c801d85f | 4080 | { |
ca65c044 | 4081 | m_dirty = true; |
b5d43d1d | 4082 | if ( InReportView() ) |
3db7be80 | 4083 | { |
54442116 VZ |
4084 | if (item.m_width == wxLIST_AUTOSIZE_USEHEADER) |
4085 | item.m_width = GetTextLength( item.m_text ); | |
df6f82f0 | 4086 | |
5b077d48 | 4087 | wxListHeaderData *column = new wxListHeaderData( item ); |
7d4813a0 VZ |
4088 | wxColWidthInfo *colWidthInfo = new wxColWidthInfo(); |
4089 | ||
df6f82f0 VZ |
4090 | bool insert = (col >= 0) && ((size_t)col < m_columns.GetCount()); |
4091 | if ( insert ) | |
5b077d48 | 4092 | { |
7d4813a0 VZ |
4093 | wxListHeaderDataList::compatibility_iterator |
4094 | node = m_columns.Item( col ); | |
24b9f055 | 4095 | m_columns.Insert( node, column ); |
7d4813a0 | 4096 | m_aColWidths.Insert( colWidthInfo, col ); |
5b077d48 RR |
4097 | } |
4098 | else | |
4099 | { | |
4100 | m_columns.Append( column ); | |
7d4813a0 | 4101 | m_aColWidths.Add( colWidthInfo ); |
5b077d48 | 4102 | } |
ae409cb8 | 4103 | |
df6f82f0 VZ |
4104 | if ( !IsVirtual() ) |
4105 | { | |
4106 | // update all the items | |
4107 | for ( size_t i = 0; i < m_lines.GetCount(); i++ ) | |
4108 | { | |
4109 | wxListLineData * const line = GetLine(i); | |
4110 | wxListItemData * const data = new wxListItemData(this); | |
4111 | if ( insert ) | |
4112 | line->m_items.Insert(col, data); | |
4113 | else | |
4114 | line->m_items.Append(data); | |
4115 | } | |
4116 | } | |
4117 | ||
ae409cb8 VZ |
4118 | // invalidate it as it has to be recalculated |
4119 | m_headerWidth = 0; | |
3db7be80 | 4120 | } |
e1e955e1 | 4121 | } |
c801d85f | 4122 | |
7d4813a0 VZ |
4123 | int wxListMainWindow::GetItemWidthWithImage(wxListItem * item) |
4124 | { | |
4125 | int width = 0; | |
4126 | wxClientDC dc(this); | |
4127 | ||
4128 | dc.SetFont( GetFont() ); | |
4129 | ||
4130 | if (item->GetImage() != -1) | |
4131 | { | |
4132 | int ix, iy; | |
4133 | GetImageSize( item->GetImage(), ix, iy ); | |
4134 | width += ix + 5; | |
4135 | } | |
4136 | ||
4137 | if (!item->GetText().empty()) | |
4138 | { | |
4139 | wxCoord w; | |
4140 | dc.GetTextExtent( item->GetText(), &w, NULL ); | |
4141 | width += w; | |
4142 | } | |
4143 | ||
4144 | return width; | |
4145 | } | |
4146 | ||
cf1dfa6b VZ |
4147 | // ---------------------------------------------------------------------------- |
4148 | // sorting | |
4149 | // ---------------------------------------------------------------------------- | |
4150 | ||
7d7b3f69 FM |
4151 | static wxListCtrlCompare list_ctrl_compare_func_2; |
4152 | static long list_ctrl_compare_data; | |
c801d85f | 4153 | |
f6bcfd97 | 4154 | int LINKAGEMODE list_ctrl_compare_func_1( wxListLineData **arg1, wxListLineData **arg2 ) |
c801d85f | 4155 | { |
f6bcfd97 BP |
4156 | wxListLineData *line1 = *arg1; |
4157 | wxListLineData *line2 = *arg2; | |
5b077d48 RR |
4158 | wxListItem item; |
4159 | line1->GetItem( 0, item ); | |
81ce36aa | 4160 | wxUIntPtr data1 = item.m_data; |
5b077d48 | 4161 | line2->GetItem( 0, item ); |
81ce36aa | 4162 | wxUIntPtr data2 = item.m_data; |
5b077d48 | 4163 | return list_ctrl_compare_func_2( data1, data2, list_ctrl_compare_data ); |
e1e955e1 | 4164 | } |
c801d85f KB |
4165 | |
4166 | void wxListMainWindow::SortItems( wxListCtrlCompare fn, long data ) | |
4167 | { | |
6b06a727 VZ |
4168 | // selections won't make sense any more after sorting the items so reset |
4169 | // them | |
4170 | HighlightAll(false); | |
4171 | ResetCurrent(); | |
4172 | ||
5b077d48 RR |
4173 | list_ctrl_compare_func_2 = fn; |
4174 | list_ctrl_compare_data = data; | |
4175 | m_lines.Sort( list_ctrl_compare_func_1 ); | |
ca65c044 | 4176 | m_dirty = true; |
e1e955e1 | 4177 | } |
c801d85f | 4178 | |
cf1dfa6b VZ |
4179 | // ---------------------------------------------------------------------------- |
4180 | // scrolling | |
4181 | // ---------------------------------------------------------------------------- | |
4182 | ||
7c74e7fe SC |
4183 | void wxListMainWindow::OnScroll(wxScrollWinEvent& event) |
4184 | { | |
602e3365 RR |
4185 | // update our idea of which lines are shown when we redraw the window the |
4186 | // next time | |
4187 | ResetVisibleLinesRange(); | |
a9aead31 | 4188 | |
cf1dfa6b | 4189 | if ( event.GetOrientation() == wxHORIZONTAL && HasHeader() ) |
7c74e7fe | 4190 | { |
3cd94a0d | 4191 | wxGenericListCtrl* lc = GetListCtrl(); |
cf1dfa6b VZ |
4192 | wxCHECK_RET( lc, _T("no listctrl window?") ); |
4193 | ||
52d2a5e4 FM |
4194 | if (lc->m_headerWin) // when we use wxLC_NO_HEADER, m_headerWin==NULL |
4195 | { | |
4196 | lc->m_headerWin->Refresh(); | |
4197 | lc->m_headerWin->Update(); | |
4198 | } | |
7c74e7fe | 4199 | } |
cf1dfa6b VZ |
4200 | } |
4201 | ||
5cd89174 VZ |
4202 | int wxListMainWindow::GetCountPerPage() const |
4203 | { | |
4204 | if ( !m_linesPerPage ) | |
4205 | { | |
4206 | wxConstCast(this, wxListMainWindow)-> | |
4207 | m_linesPerPage = GetClientSize().y / GetLineHeight(); | |
4208 | } | |
4209 | ||
4210 | return m_linesPerPage; | |
4211 | } | |
4212 | ||
b54e41c5 | 4213 | void wxListMainWindow::GetVisibleLinesRange(size_t *from, size_t *to) |
cf1dfa6b | 4214 | { |
b5d43d1d | 4215 | wxASSERT_MSG( InReportView(), _T("this is for report mode only") ); |
cf1dfa6b | 4216 | |
b54e41c5 VZ |
4217 | if ( m_lineFrom == (size_t)-1 ) |
4218 | { | |
b54e41c5 | 4219 | size_t count = GetItemCount(); |
6522713c VZ |
4220 | if ( count ) |
4221 | { | |
e5d28ed4 | 4222 | m_lineFrom = GetListCtrl()->GetScrollPos(wxVERTICAL); |
cf1dfa6b | 4223 | |
152c57f2 VZ |
4224 | // this may happen if SetScrollbars() hadn't been called yet |
4225 | if ( m_lineFrom >= count ) | |
bcc0da5c | 4226 | m_lineFrom = count - 1; |
cf1dfa6b | 4227 | |
6522713c VZ |
4228 | // we redraw one extra line but this is needed to make the redrawing |
4229 | // logic work when there is a fractional number of lines on screen | |
4230 | m_lineTo = m_lineFrom + m_linesPerPage; | |
4231 | if ( m_lineTo >= count ) | |
4232 | m_lineTo = count - 1; | |
4233 | } | |
4234 | else // empty control | |
4235 | { | |
4236 | m_lineFrom = 0; | |
4237 | m_lineTo = (size_t)-1; | |
4238 | } | |
cf1dfa6b | 4239 | } |
b54e41c5 | 4240 | |
ae167d2f VZ |
4241 | wxASSERT_MSG( IsEmpty() || |
4242 | (m_lineFrom <= m_lineTo && m_lineTo < GetItemCount()), | |
6b4a8d93 VZ |
4243 | _T("GetVisibleLinesRange() returns incorrect result") ); |
4244 | ||
b54e41c5 VZ |
4245 | if ( from ) |
4246 | *from = m_lineFrom; | |
4247 | if ( to ) | |
4248 | *to = m_lineTo; | |
7c74e7fe SC |
4249 | } |
4250 | ||
c801d85f | 4251 | // ------------------------------------------------------------------------------------- |
3cd94a0d | 4252 | // wxGenericListCtrl |
c801d85f KB |
4253 | // ------------------------------------------------------------------------------------- |
4254 | ||
3cd94a0d JS |
4255 | IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl, wxControl) |
4256 | ||
3cd94a0d JS |
4257 | BEGIN_EVENT_TABLE(wxGenericListCtrl,wxControl) |
4258 | EVT_SIZE(wxGenericListCtrl::OnSize) | |
06cd40a8 | 4259 | EVT_SCROLLWIN(wxGenericListCtrl::OnScroll) |
c801d85f KB |
4260 | END_EVENT_TABLE() |
4261 | ||
06cd40a8 | 4262 | void wxGenericListCtrl::Init() |
c801d85f | 4263 | { |
d3b9f782 VZ |
4264 | m_imageListNormal = NULL; |
4265 | m_imageListSmall = NULL; | |
4266 | m_imageListState = NULL; | |
cf1dfa6b VZ |
4267 | |
4268 | m_ownsImageListNormal = | |
4269 | m_ownsImageListSmall = | |
ca65c044 | 4270 | m_ownsImageListState = false; |
cf1dfa6b | 4271 | |
d3b9f782 VZ |
4272 | m_mainWin = NULL; |
4273 | m_headerWin = NULL; | |
06cd40a8 | 4274 | m_headerHeight = wxRendererNative::Get().GetHeaderButtonHeight(this); |
c801d85f KB |
4275 | } |
4276 | ||
3cd94a0d | 4277 | wxGenericListCtrl::~wxGenericListCtrl() |
c801d85f | 4278 | { |
cf1dfa6b VZ |
4279 | if (m_ownsImageListNormal) |
4280 | delete m_imageListNormal; | |
4281 | if (m_ownsImageListSmall) | |
4282 | delete m_imageListSmall; | |
4283 | if (m_ownsImageListState) | |
4284 | delete m_imageListState; | |
4285 | } | |
4286 | ||
06cd40a8 | 4287 | void wxGenericListCtrl::CreateOrDestroyHeaderWindowAsNeeded() |
f8252483 | 4288 | { |
06cd40a8 RR |
4289 | bool needs_header = HasHeader(); |
4290 | bool has_header = (m_headerWin != NULL); | |
7d7b3f69 | 4291 | |
06cd40a8 RR |
4292 | if (needs_header == has_header) |
4293 | return; | |
f8252483 | 4294 | |
06cd40a8 RR |
4295 | if (needs_header) |
4296 | { | |
4297 | m_headerWin = new wxListHeaderWindow | |
cf1dfa6b | 4298 | ( |
ca65c044 | 4299 | this, wxID_ANY, m_mainWin, |
c47addef | 4300 | wxPoint(0,0), |
f8252483 | 4301 | wxSize(GetClientSize().x, m_headerHeight), |
cf1dfa6b VZ |
4302 | wxTAB_TRAVERSAL |
4303 | ); | |
7d7b3f69 | 4304 | |
06cd40a8 RR |
4305 | #if defined( __WXMAC__ ) && wxOSX_USE_COCOA_OR_CARBON |
4306 | wxFont font; | |
4307 | #if wxOSX_USE_ATSU_TEXT | |
4308 | font.MacCreateFromThemeFont( kThemeSmallSystemFont ); | |
4309 | #else | |
4310 | font.MacCreateFromUIFont( kCTFontSystemFontType ); | |
4311 | #endif | |
4312 | m_headerWin->SetFont( font ); | |
4313 | #endif | |
7d7b3f69 | 4314 | |
06cd40a8 RR |
4315 | GetSizer()->Prepend( m_headerWin, 0, wxGROW ); |
4316 | } | |
4317 | else | |
4318 | { | |
4319 | GetSizer()->Detach( m_headerWin ); | |
7d7b3f69 | 4320 | |
06cd40a8 | 4321 | delete m_headerWin; |
7d7b3f69 | 4322 | |
06cd40a8 RR |
4323 | m_headerWin = NULL; |
4324 | } | |
c801d85f KB |
4325 | } |
4326 | ||
3cd94a0d | 4327 | bool wxGenericListCtrl::Create(wxWindow *parent, |
25e3a937 VZ |
4328 | wxWindowID id, |
4329 | const wxPoint &pos, | |
4330 | const wxSize &size, | |
4331 | long style, | |
25e3a937 | 4332 | const wxValidator &validator, |
25e3a937 | 4333 | const wxString &name) |
c801d85f | 4334 | { |
06cd40a8 | 4335 | Init(); |
3fc93ebd | 4336 | |
c615d649 | 4337 | // just like in other ports, an assert will fail if the user doesn't give any type style: |
5ac526c4 | 4338 | wxASSERT_MSG( (style & wxLC_MASK_TYPE), |
c615d649 | 4339 | _T("wxListCtrl style should have exactly one mode bit set") ); |
f6bcfd97 | 4340 | |
06cd40a8 | 4341 | if ( !wxControl::Create( parent, id, pos, size, style|wxVSCROLL|wxHSCROLL, validator, name ) ) |
ca65c044 | 4342 | return false; |
f6bcfd97 | 4343 | |
dff750b4 RR |
4344 | #ifdef __WXGTK__ |
4345 | style &= ~wxBORDER_MASK; | |
4346 | style |= wxBORDER_THEME; | |
7d7b3f69 | 4347 | #endif |
bd8289c1 | 4348 | |
277ea1b4 | 4349 | m_mainWin = new wxListMainWindow( this, wxID_ANY, wxPoint(0, 0), size, style ); |
bd8289c1 | 4350 | |
06cd40a8 | 4351 | SetTargetWindow( m_mainWin ); |
7d7b3f69 | 4352 | |
06cd40a8 RR |
4353 | wxBoxSizer *sizer = new wxBoxSizer( wxVERTICAL ); |
4354 | sizer->Add( m_mainWin, 1, wxGROW ); | |
4355 | SetSizer( sizer ); | |
7d7b3f69 | 4356 | |
06cd40a8 RR |
4357 | CreateOrDestroyHeaderWindowAsNeeded(); |
4358 | ||
4359 | SetInitialSize(size); | |
4360 | ||
4361 | return true; | |
4362 | } | |
4363 | ||
4364 | wxBorder wxGenericListCtrl::GetDefaultBorder() const | |
4365 | { | |
4366 | return wxBORDER_THEME; | |
4367 | } | |
4368 | ||
5d55031c | 4369 | #if defined(__WXMSW__) && !defined(__WXWINCE__) && !defined(__WXUNIVERSAL__) |
06cd40a8 RR |
4370 | WXLRESULT wxGenericListCtrl::MSWWindowProc(WXUINT nMsg, |
4371 | WXWPARAM wParam, | |
4372 | WXLPARAM lParam) | |
4373 | { | |
4374 | WXLRESULT rc = wxControl::MSWWindowProc(nMsg, wParam, lParam); | |
4375 | ||
06cd40a8 RR |
4376 | // we need to process arrows ourselves for scrolling |
4377 | if ( nMsg == WM_GETDLGCODE ) | |
309e4c14 | 4378 | { |
06cd40a8 | 4379 | rc |= DLGC_WANTARROWS; |
309e4c14 | 4380 | } |
277ea1b4 | 4381 | |
06cd40a8 RR |
4382 | return rc; |
4383 | } | |
5d55031c | 4384 | #endif // __WXMSW__ |
277ea1b4 | 4385 | |
06cd40a8 RR |
4386 | wxSize wxGenericListCtrl::GetSizeAvailableForScrollTarget(const wxSize& size) |
4387 | { | |
4388 | wxSize newsize = size; | |
4389 | if (m_headerWin) | |
4390 | newsize.y -= m_headerWin->GetSize().y; | |
bd8289c1 | 4391 | |
06cd40a8 RR |
4392 | return newsize; |
4393 | } | |
ca65c044 | 4394 | |
06cd40a8 RR |
4395 | void wxGenericListCtrl::OnScroll(wxScrollWinEvent& event) |
4396 | { | |
4397 | // update our idea of which lines are shown when we redraw | |
4398 | // the window the next time | |
4399 | m_mainWin->ResetVisibleLinesRange(); | |
4400 | ||
4401 | HandleOnScroll( event ); | |
4402 | ||
4403 | if ( event.GetOrientation() == wxHORIZONTAL && HasHeader() ) | |
4404 | { | |
4405 | m_headerWin->Refresh(); | |
4406 | m_headerWin->Update(); | |
4407 | } | |
e1e955e1 | 4408 | } |
c801d85f | 4409 | |
3cd94a0d | 4410 | void wxGenericListCtrl::SetSingleStyle( long style, bool add ) |
c801d85f | 4411 | { |
b54e41c5 VZ |
4412 | wxASSERT_MSG( !(style & wxLC_VIRTUAL), |
4413 | _T("wxLC_VIRTUAL can't be [un]set") ); | |
4414 | ||
f03fc89f | 4415 | long flag = GetWindowStyle(); |
bd8289c1 | 4416 | |
5b077d48 RR |
4417 | if (add) |
4418 | { | |
cf1dfa6b | 4419 | if (style & wxLC_MASK_TYPE) |
b54e41c5 | 4420 | flag &= ~(wxLC_MASK_TYPE | wxLC_VIRTUAL); |
cf1dfa6b VZ |
4421 | if (style & wxLC_MASK_ALIGN) |
4422 | flag &= ~wxLC_MASK_ALIGN; | |
4423 | if (style & wxLC_MASK_SORT) | |
4424 | flag &= ~wxLC_MASK_SORT; | |
5b077d48 | 4425 | } |
c801d85f | 4426 | |
5b077d48 | 4427 | if (add) |
5b077d48 | 4428 | flag |= style; |
5b077d48 | 4429 | else |
cf1dfa6b | 4430 | flag &= ~style; |
bd8289c1 | 4431 | |
b119ee87 VZ |
4432 | // some styles can be set without recreating everything (as happens in |
4433 | // SetWindowStyleFlag() which calls wxListMainWindow::DeleteEverything()) | |
4434 | if ( !(style & ~(wxLC_HRULES | wxLC_VRULES)) ) | |
4435 | { | |
4436 | Refresh(); | |
4437 | wxWindow::SetWindowStyleFlag(flag); | |
4438 | } | |
4439 | else | |
4440 | { | |
4441 | SetWindowStyleFlag( flag ); | |
4442 | } | |
e1e955e1 | 4443 | } |
c801d85f | 4444 | |
3cd94a0d | 4445 | void wxGenericListCtrl::SetWindowStyleFlag( long flag ) |
c801d85f | 4446 | { |
121a3581 RR |
4447 | if (m_mainWin) |
4448 | { | |
06cd40a8 | 4449 | // m_mainWin->DeleteEverything(); wxMSW doesn't do that |
a95cdab8 | 4450 | |
06cd40a8 | 4451 | CreateOrDestroyHeaderWindowAsNeeded(); |
7d7b3f69 | 4452 | |
06cd40a8 | 4453 | GetSizer()->Layout(); |
e1e955e1 | 4454 | } |
004fd0c8 | 4455 | |
5b077d48 | 4456 | wxWindow::SetWindowStyleFlag( flag ); |
e1e955e1 | 4457 | } |
c801d85f | 4458 | |
3cd94a0d | 4459 | bool wxGenericListCtrl::GetColumn(int col, wxListItem &item) const |
c801d85f | 4460 | { |
5b077d48 | 4461 | m_mainWin->GetColumn( col, item ); |
ca65c044 | 4462 | return true; |
e1e955e1 | 4463 | } |
c801d85f | 4464 | |
3cd94a0d | 4465 | bool wxGenericListCtrl::SetColumn( int col, wxListItem& item ) |
c801d85f | 4466 | { |
5b077d48 | 4467 | m_mainWin->SetColumn( col, item ); |
ca65c044 | 4468 | return true; |
e1e955e1 | 4469 | } |
c801d85f | 4470 | |
3cd94a0d | 4471 | int wxGenericListCtrl::GetColumnWidth( int col ) const |
c801d85f | 4472 | { |
5b077d48 | 4473 | return m_mainWin->GetColumnWidth( col ); |
e1e955e1 | 4474 | } |
c801d85f | 4475 | |
3cd94a0d | 4476 | bool wxGenericListCtrl::SetColumnWidth( int col, int width ) |
c801d85f | 4477 | { |
5b077d48 | 4478 | m_mainWin->SetColumnWidth( col, width ); |
ca65c044 | 4479 | return true; |
e1e955e1 | 4480 | } |
c801d85f | 4481 | |
3cd94a0d | 4482 | int wxGenericListCtrl::GetCountPerPage() const |
c801d85f KB |
4483 | { |
4484 | return m_mainWin->GetCountPerPage(); // different from Windows ? | |
e1e955e1 | 4485 | } |
c801d85f | 4486 | |
3cd94a0d | 4487 | bool wxGenericListCtrl::GetItem( wxListItem &info ) const |
c801d85f | 4488 | { |
5b077d48 | 4489 | m_mainWin->GetItem( info ); |
ca65c044 | 4490 | return true; |
e1e955e1 | 4491 | } |
c801d85f | 4492 | |
3cd94a0d | 4493 | bool wxGenericListCtrl::SetItem( wxListItem &info ) |
c801d85f | 4494 | { |
5b077d48 | 4495 | m_mainWin->SetItem( info ); |
ca65c044 | 4496 | return true; |
e1e955e1 | 4497 | } |
c801d85f | 4498 | |
3cd94a0d | 4499 | long wxGenericListCtrl::SetItem( long index, int col, const wxString& label, int imageId ) |
c801d85f | 4500 | { |
5b077d48 RR |
4501 | wxListItem info; |
4502 | info.m_text = label; | |
4503 | info.m_mask = wxLIST_MASK_TEXT; | |
4504 | info.m_itemId = index; | |
4505 | info.m_col = col; | |
4506 | if ( imageId > -1 ) | |
4507 | { | |
4508 | info.m_image = imageId; | |
4509 | info.m_mask |= wxLIST_MASK_IMAGE; | |
277ea1b4 DS |
4510 | } |
4511 | ||
5b077d48 | 4512 | m_mainWin->SetItem(info); |
ca65c044 | 4513 | return true; |
e1e955e1 | 4514 | } |
c801d85f | 4515 | |
3cd94a0d | 4516 | int wxGenericListCtrl::GetItemState( long item, long stateMask ) const |
c801d85f | 4517 | { |
5b077d48 | 4518 | return m_mainWin->GetItemState( item, stateMask ); |
e1e955e1 | 4519 | } |
c801d85f | 4520 | |
3cd94a0d | 4521 | bool wxGenericListCtrl::SetItemState( long item, long state, long stateMask ) |
c801d85f | 4522 | { |
5b077d48 | 4523 | m_mainWin->SetItemState( item, state, stateMask ); |
ca65c044 | 4524 | return true; |
e1e955e1 | 4525 | } |
c801d85f | 4526 | |
aba3d35e VZ |
4527 | bool |
4528 | wxGenericListCtrl::SetItemImage( long item, int image, int WXUNUSED(selImage) ) | |
06db67bc RD |
4529 | { |
4530 | return SetItemColumnImage(item, 0, image); | |
4531 | } | |
4532 | ||
4533 | bool | |
4534 | wxGenericListCtrl::SetItemColumnImage( long item, long column, int image ) | |
c3627a00 JS |
4535 | { |
4536 | wxListItem info; | |
4537 | info.m_image = image; | |
4538 | info.m_mask = wxLIST_MASK_IMAGE; | |
4539 | info.m_itemId = item; | |
06db67bc | 4540 | info.m_col = column; |
c3627a00 JS |
4541 | m_mainWin->SetItem( info ); |
4542 | return true; | |
4543 | } | |
c801d85f | 4544 | |
3cd94a0d | 4545 | wxString wxGenericListCtrl::GetItemText( long item ) const |
c801d85f | 4546 | { |
62d89eb4 | 4547 | return m_mainWin->GetItemText(item); |
e1e955e1 | 4548 | } |
c801d85f | 4549 | |
3cd94a0d | 4550 | void wxGenericListCtrl::SetItemText( long item, const wxString& str ) |
c801d85f | 4551 | { |
62d89eb4 | 4552 | m_mainWin->SetItemText(item, str); |
e1e955e1 | 4553 | } |
c801d85f | 4554 | |
81ce36aa | 4555 | wxUIntPtr wxGenericListCtrl::GetItemData( long item ) const |
c801d85f | 4556 | { |
5b077d48 | 4557 | wxListItem info; |
39a7f085 | 4558 | info.m_mask = wxLIST_MASK_DATA; |
5b077d48 RR |
4559 | info.m_itemId = item; |
4560 | m_mainWin->GetItem( info ); | |
4561 | return info.m_data; | |
e1e955e1 | 4562 | } |
c801d85f | 4563 | |
9fcd0bf7 | 4564 | bool wxGenericListCtrl::SetItemPtrData( long item, wxUIntPtr data ) |
c801d85f | 4565 | { |
5b077d48 RR |
4566 | wxListItem info; |
4567 | info.m_mask = wxLIST_MASK_DATA; | |
4568 | info.m_itemId = item; | |
4569 | info.m_data = data; | |
4570 | m_mainWin->SetItem( info ); | |
ca65c044 | 4571 | return true; |
e1e955e1 | 4572 | } |
c801d85f | 4573 | |
11ebea16 VZ |
4574 | wxRect wxGenericListCtrl::GetViewRect() const |
4575 | { | |
4576 | return m_mainWin->GetViewRect(); | |
4577 | } | |
4578 | ||
e974c5d2 VZ |
4579 | bool wxGenericListCtrl::GetItemRect(long item, wxRect& rect, int code) const |
4580 | { | |
4581 | return GetSubItemRect(item, wxLIST_GETSUBITEMRECT_WHOLEITEM, rect, code); | |
4582 | } | |
4583 | ||
4584 | bool wxGenericListCtrl::GetSubItemRect(long item, | |
4585 | long subItem, | |
4586 | wxRect& rect, | |
4587 | int WXUNUSED(code)) const | |
c801d85f | 4588 | { |
e974c5d2 VZ |
4589 | if ( !m_mainWin->GetSubItemRect( item, subItem, rect ) ) |
4590 | return false; | |
4591 | ||
7e6874c0 | 4592 | if ( m_mainWin->HasHeader() ) |
f8252483 | 4593 | rect.y += m_headerHeight + 1; |
e974c5d2 | 4594 | |
ca65c044 | 4595 | return true; |
e1e955e1 | 4596 | } |
c801d85f | 4597 | |
3cd94a0d | 4598 | bool wxGenericListCtrl::GetItemPosition( long item, wxPoint& pos ) const |
c801d85f | 4599 | { |
5b077d48 | 4600 | m_mainWin->GetItemPosition( item, pos ); |
ca65c044 | 4601 | return true; |
e1e955e1 | 4602 | } |
c801d85f | 4603 | |
3cd94a0d | 4604 | bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item), const wxPoint& WXUNUSED(pos) ) |
c801d85f | 4605 | { |
e974c5d2 | 4606 | return false; |
e1e955e1 | 4607 | } |
c801d85f | 4608 | |
3cd94a0d | 4609 | int wxGenericListCtrl::GetItemCount() const |
c801d85f | 4610 | { |
5b077d48 | 4611 | return m_mainWin->GetItemCount(); |
e1e955e1 | 4612 | } |
c801d85f | 4613 | |
3cd94a0d | 4614 | int wxGenericListCtrl::GetColumnCount() const |
92976ab6 | 4615 | { |
5b077d48 | 4616 | return m_mainWin->GetColumnCount(); |
92976ab6 RR |
4617 | } |
4618 | ||
3cd94a0d | 4619 | void wxGenericListCtrl::SetItemSpacing( int spacing, bool isSmall ) |
33d0b396 | 4620 | { |
5b077d48 | 4621 | m_mainWin->SetItemSpacing( spacing, isSmall ); |
e1e955e1 | 4622 | } |
33d0b396 | 4623 | |
5db8d758 VZ |
4624 | wxSize wxGenericListCtrl::GetItemSpacing() const |
4625 | { | |
f58fc140 | 4626 | const int spacing = m_mainWin->GetItemSpacing(HasFlag(wxLC_SMALL_ICON)); |
5db8d758 VZ |
4627 | |
4628 | return wxSize(spacing, spacing); | |
4629 | } | |
4630 | ||
82d492f1 | 4631 | #if WXWIN_COMPATIBILITY_2_6 |
3cd94a0d | 4632 | int wxGenericListCtrl::GetItemSpacing( bool isSmall ) const |
c801d85f | 4633 | { |
5b077d48 | 4634 | return m_mainWin->GetItemSpacing( isSmall ); |
e1e955e1 | 4635 | } |
82d492f1 | 4636 | #endif // WXWIN_COMPATIBILITY_2_6 |
c801d85f | 4637 | |
3cd94a0d | 4638 | void wxGenericListCtrl::SetItemTextColour( long item, const wxColour &col ) |
5b98eb2f RL |
4639 | { |
4640 | wxListItem info; | |
4641 | info.m_itemId = item; | |
4642 | info.SetTextColour( col ); | |
4643 | m_mainWin->SetItem( info ); | |
4644 | } | |
4645 | ||
3cd94a0d | 4646 | wxColour wxGenericListCtrl::GetItemTextColour( long item ) const |
5b98eb2f RL |
4647 | { |
4648 | wxListItem info; | |
4649 | info.m_itemId = item; | |
4650 | m_mainWin->GetItem( info ); | |
4651 | return info.GetTextColour(); | |
4652 | } | |
4653 | ||
3cd94a0d | 4654 | void wxGenericListCtrl::SetItemBackgroundColour( long item, const wxColour &col ) |
5b98eb2f RL |
4655 | { |
4656 | wxListItem info; | |
4657 | info.m_itemId = item; | |
4658 | info.SetBackgroundColour( col ); | |
4659 | m_mainWin->SetItem( info ); | |
4660 | } | |
4661 | ||
3cd94a0d | 4662 | wxColour wxGenericListCtrl::GetItemBackgroundColour( long item ) const |
5b98eb2f RL |
4663 | { |
4664 | wxListItem info; | |
4665 | info.m_itemId = item; | |
4666 | m_mainWin->GetItem( info ); | |
4667 | return info.GetBackgroundColour(); | |
4668 | } | |
4669 | ||
35c2acd4 MW |
4670 | void wxGenericListCtrl::SetItemFont( long item, const wxFont &f ) |
4671 | { | |
4672 | wxListItem info; | |
4673 | info.m_itemId = item; | |
4674 | info.SetFont( f ); | |
4675 | m_mainWin->SetItem( info ); | |
4676 | } | |
4677 | ||
4678 | wxFont wxGenericListCtrl::GetItemFont( long item ) const | |
4679 | { | |
4680 | wxListItem info; | |
4681 | info.m_itemId = item; | |
4682 | m_mainWin->GetItem( info ); | |
4683 | return info.GetFont(); | |
4684 | } | |
4685 | ||
3cd94a0d | 4686 | int wxGenericListCtrl::GetSelectedItemCount() const |
c801d85f | 4687 | { |
5b077d48 | 4688 | return m_mainWin->GetSelectedItemCount(); |
e1e955e1 | 4689 | } |
c801d85f | 4690 | |
3cd94a0d | 4691 | wxColour wxGenericListCtrl::GetTextColour() const |
c801d85f | 4692 | { |
0530737d | 4693 | return GetForegroundColour(); |
e1e955e1 | 4694 | } |
c801d85f | 4695 | |
3cd94a0d | 4696 | void wxGenericListCtrl::SetTextColour(const wxColour& col) |
c801d85f | 4697 | { |
0530737d | 4698 | SetForegroundColour(col); |
e1e955e1 | 4699 | } |
c801d85f | 4700 | |
3cd94a0d | 4701 | long wxGenericListCtrl::GetTopItem() const |
c801d85f | 4702 | { |
2b5f62a0 VZ |
4703 | size_t top; |
4704 | m_mainWin->GetVisibleLinesRange(&top, NULL); | |
4705 | return (long)top; | |
e1e955e1 | 4706 | } |
c801d85f | 4707 | |
3cd94a0d | 4708 | long wxGenericListCtrl::GetNextItem( long item, int geom, int state ) const |
c801d85f | 4709 | { |
5b077d48 | 4710 | return m_mainWin->GetNextItem( item, geom, state ); |
e1e955e1 | 4711 | } |
c801d85f | 4712 | |
8a3e173a | 4713 | wxImageList *wxGenericListCtrl::GetImageList(int which) const |
c801d85f | 4714 | { |
5b077d48 | 4715 | if (which == wxIMAGE_LIST_NORMAL) |
5b077d48 | 4716 | return m_imageListNormal; |
5b077d48 | 4717 | else if (which == wxIMAGE_LIST_SMALL) |
5b077d48 | 4718 | return m_imageListSmall; |
5b077d48 | 4719 | else if (which == wxIMAGE_LIST_STATE) |
5b077d48 | 4720 | return m_imageListState; |
277ea1b4 | 4721 | |
d3b9f782 | 4722 | return NULL; |
e1e955e1 | 4723 | } |
c801d85f | 4724 | |
8a3e173a | 4725 | void wxGenericListCtrl::SetImageList( wxImageList *imageList, int which ) |
c801d85f | 4726 | { |
2e12c11a VS |
4727 | if ( which == wxIMAGE_LIST_NORMAL ) |
4728 | { | |
277ea1b4 DS |
4729 | if (m_ownsImageListNormal) |
4730 | delete m_imageListNormal; | |
2e12c11a | 4731 | m_imageListNormal = imageList; |
ca65c044 | 4732 | m_ownsImageListNormal = false; |
2e12c11a VS |
4733 | } |
4734 | else if ( which == wxIMAGE_LIST_SMALL ) | |
4735 | { | |
277ea1b4 DS |
4736 | if (m_ownsImageListSmall) |
4737 | delete m_imageListSmall; | |
2e12c11a | 4738 | m_imageListSmall = imageList; |
ca65c044 | 4739 | m_ownsImageListSmall = false; |
2e12c11a VS |
4740 | } |
4741 | else if ( which == wxIMAGE_LIST_STATE ) | |
4742 | { | |
277ea1b4 DS |
4743 | if (m_ownsImageListState) |
4744 | delete m_imageListState; | |
2e12c11a | 4745 | m_imageListState = imageList; |
ca65c044 | 4746 | m_ownsImageListState = false; |
2e12c11a VS |
4747 | } |
4748 | ||
5b077d48 | 4749 | m_mainWin->SetImageList( imageList, which ); |
e1e955e1 | 4750 | } |
c801d85f | 4751 | |
8a3e173a | 4752 | void wxGenericListCtrl::AssignImageList(wxImageList *imageList, int which) |
2e12c11a VS |
4753 | { |
4754 | SetImageList(imageList, which); | |
4755 | if ( which == wxIMAGE_LIST_NORMAL ) | |
ca65c044 | 4756 | m_ownsImageListNormal = true; |
2e12c11a | 4757 | else if ( which == wxIMAGE_LIST_SMALL ) |
ca65c044 | 4758 | m_ownsImageListSmall = true; |
2e12c11a | 4759 | else if ( which == wxIMAGE_LIST_STATE ) |
ca65c044 | 4760 | m_ownsImageListState = true; |
2e12c11a VS |
4761 | } |
4762 | ||
3cd94a0d | 4763 | bool wxGenericListCtrl::Arrange( int WXUNUSED(flag) ) |
c801d85f | 4764 | { |
5b077d48 | 4765 | return 0; |
e1e955e1 | 4766 | } |
c801d85f | 4767 | |
3cd94a0d | 4768 | bool wxGenericListCtrl::DeleteItem( long item ) |
c801d85f | 4769 | { |
5b077d48 | 4770 | m_mainWin->DeleteItem( item ); |
ca65c044 | 4771 | return true; |
e1e955e1 | 4772 | } |
c801d85f | 4773 | |
3cd94a0d | 4774 | bool wxGenericListCtrl::DeleteAllItems() |
c801d85f | 4775 | { |
5b077d48 | 4776 | m_mainWin->DeleteAllItems(); |
ca65c044 | 4777 | return true; |
e1e955e1 | 4778 | } |
c801d85f | 4779 | |
3cd94a0d | 4780 | bool wxGenericListCtrl::DeleteAllColumns() |
bd8289c1 | 4781 | { |
24b9f055 VZ |
4782 | size_t count = m_mainWin->m_columns.GetCount(); |
4783 | for ( size_t n = 0; n < count; n++ ) | |
277ea1b4 | 4784 | DeleteColumn( 0 ); |
ca65c044 | 4785 | return true; |
4f22cf8d RR |
4786 | } |
4787 | ||
3cd94a0d | 4788 | void wxGenericListCtrl::ClearAll() |
4f22cf8d | 4789 | { |
5b077d48 | 4790 | m_mainWin->DeleteEverything(); |
bd8289c1 VZ |
4791 | } |
4792 | ||
3cd94a0d | 4793 | bool wxGenericListCtrl::DeleteColumn( int col ) |
c801d85f | 4794 | { |
5b077d48 | 4795 | m_mainWin->DeleteColumn( col ); |
40c08808 VZ |
4796 | |
4797 | // if we don't have the header any longer, we need to relayout the window | |
06cd40a8 | 4798 | // if ( !GetColumnCount() ) |
7d7b3f69 | 4799 | |
ca65c044 | 4800 | return true; |
e1e955e1 | 4801 | } |
c801d85f | 4802 | |
26e8da41 VZ |
4803 | wxTextCtrl *wxGenericListCtrl::EditLabel(long item, |
4804 | wxClassInfo* textControlClass) | |
4805 | { | |
4806 | return m_mainWin->EditLabel( item, textControlClass ); | |
4807 | } | |
4808 | ||
4809 | wxTextCtrl *wxGenericListCtrl::GetEditControl() const | |
c801d85f | 4810 | { |
26e8da41 | 4811 | return m_mainWin->GetEditControl(); |
e1e955e1 | 4812 | } |
c801d85f | 4813 | |
3cd94a0d | 4814 | bool wxGenericListCtrl::EnsureVisible( long item ) |
c801d85f | 4815 | { |
5b077d48 | 4816 | m_mainWin->EnsureVisible( item ); |
ca65c044 | 4817 | return true; |
e1e955e1 | 4818 | } |
c801d85f | 4819 | |
277ea1b4 | 4820 | long wxGenericListCtrl::FindItem( long start, const wxString& str, bool partial ) |
c801d85f | 4821 | { |
5b077d48 | 4822 | return m_mainWin->FindItem( start, str, partial ); |
e1e955e1 | 4823 | } |
c801d85f | 4824 | |
81ce36aa | 4825 | long wxGenericListCtrl::FindItem( long start, wxUIntPtr data ) |
c801d85f | 4826 | { |
5b077d48 | 4827 | return m_mainWin->FindItem( start, data ); |
e1e955e1 | 4828 | } |
c801d85f | 4829 | |
8158e0e1 | 4830 | long wxGenericListCtrl::FindItem( long WXUNUSED(start), const wxPoint& pt, |
debe6624 | 4831 | int WXUNUSED(direction)) |
c801d85f | 4832 | { |
8158e0e1 | 4833 | return m_mainWin->FindItem( pt ); |
e1e955e1 | 4834 | } |
c801d85f | 4835 | |
164a7972 | 4836 | // TODO: sub item hit testing |
be0e5d69 | 4837 | long wxGenericListCtrl::HitTest(const wxPoint& point, int& flags, long *) const |
c801d85f | 4838 | { |
5b077d48 | 4839 | return m_mainWin->HitTest( (int)point.x, (int)point.y, flags ); |
e1e955e1 | 4840 | } |
c801d85f | 4841 | |
3cd94a0d | 4842 | long wxGenericListCtrl::InsertItem( wxListItem& info ) |
c801d85f | 4843 | { |
5b077d48 | 4844 | m_mainWin->InsertItem( info ); |
2ebcd5f5 | 4845 | return info.m_itemId; |
e1e955e1 | 4846 | } |
c801d85f | 4847 | |
3cd94a0d | 4848 | long wxGenericListCtrl::InsertItem( long index, const wxString &label ) |
c801d85f | 4849 | { |
51cc4dad RR |
4850 | wxListItem info; |
4851 | info.m_text = label; | |
4852 | info.m_mask = wxLIST_MASK_TEXT; | |
4853 | info.m_itemId = index; | |
4854 | return InsertItem( info ); | |
e1e955e1 | 4855 | } |
c801d85f | 4856 | |
3cd94a0d | 4857 | long wxGenericListCtrl::InsertItem( long index, int imageIndex ) |
c801d85f | 4858 | { |
51cc4dad RR |
4859 | wxListItem info; |
4860 | info.m_mask = wxLIST_MASK_IMAGE; | |
4861 | info.m_image = imageIndex; | |
4862 | info.m_itemId = index; | |
4863 | return InsertItem( info ); | |
e1e955e1 | 4864 | } |
c801d85f | 4865 | |
3cd94a0d | 4866 | long wxGenericListCtrl::InsertItem( long index, const wxString &label, int imageIndex ) |
c801d85f | 4867 | { |
51cc4dad RR |
4868 | wxListItem info; |
4869 | info.m_text = label; | |
4870 | info.m_image = imageIndex; | |
4871 | info.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE; | |
4872 | info.m_itemId = index; | |
4873 | return InsertItem( info ); | |
e1e955e1 | 4874 | } |
c801d85f | 4875 | |
3cd94a0d | 4876 | long wxGenericListCtrl::InsertColumn( long col, wxListItem &item ) |
c801d85f | 4877 | { |
52d2a5e4 | 4878 | wxCHECK_MSG( InReportView(), -1, _T("can't add column in non report mode") ); |
40c08808 | 4879 | |
51cc4dad | 4880 | m_mainWin->InsertColumn( col, item ); |
40c08808 | 4881 | |
52d2a5e4 FM |
4882 | // NOTE: if wxLC_NO_HEADER was given, then we are in report view mode but |
4883 | // still have m_headerWin==NULL | |
4884 | if (m_headerWin) | |
4885 | m_headerWin->Refresh(); | |
25e3a937 | 4886 | |
51cc4dad | 4887 | return 0; |
e1e955e1 | 4888 | } |
c801d85f | 4889 | |
3cd94a0d | 4890 | long wxGenericListCtrl::InsertColumn( long col, const wxString &heading, |
debe6624 | 4891 | int format, int width ) |
c801d85f | 4892 | { |
51cc4dad RR |
4893 | wxListItem item; |
4894 | item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT; | |
4895 | item.m_text = heading; | |
4896 | if (width >= -2) | |
4897 | { | |
4898 | item.m_mask |= wxLIST_MASK_WIDTH; | |
4899 | item.m_width = width; | |
4900 | } | |
277ea1b4 | 4901 | |
51cc4dad | 4902 | item.m_format = format; |
c801d85f | 4903 | |
51cc4dad | 4904 | return InsertColumn( col, item ); |
e1e955e1 | 4905 | } |
c801d85f | 4906 | |
66a9201d | 4907 | bool wxGenericListCtrl::ScrollList( int dx, int dy ) |
c801d85f | 4908 | { |
66a9201d | 4909 | return m_mainWin->ScrollList(dx, dy); |
e1e955e1 | 4910 | } |
c801d85f KB |
4911 | |
4912 | // Sort items. | |
4913 | // fn is a function which takes 3 long arguments: item1, item2, data. | |
4914 | // item1 is the long data associated with a first item (NOT the index). | |
4915 | // item2 is the long data associated with a second item (NOT the index). | |
4916 | // data is the same value as passed to SortItems. | |
4917 | // The return value is a negative number if the first item should precede the second | |
4918 | // item, a positive number of the second item should precede the first, | |
4919 | // or zero if the two items are equivalent. | |
4920 | // data is arbitrary data to be passed to the sort function. | |
4921 | ||
3cd94a0d | 4922 | bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn, long data ) |
c801d85f | 4923 | { |
51cc4dad | 4924 | m_mainWin->SortItems( fn, data ); |
ca65c044 | 4925 | return true; |
e1e955e1 | 4926 | } |
c801d85f | 4927 | |
cf1dfa6b | 4928 | // ---------------------------------------------------------------------------- |
b54e41c5 | 4929 | // event handlers |
cf1dfa6b VZ |
4930 | // ---------------------------------------------------------------------------- |
4931 | ||
3cd94a0d | 4932 | void wxGenericListCtrl::OnSize(wxSizeEvent& WXUNUSED(event)) |
53010e52 | 4933 | { |
06cd40a8 | 4934 | if (!m_mainWin) return; |
53010e52 | 4935 | |
06cd40a8 RR |
4936 | // We need to override OnSize so that our scrolled |
4937 | // window a) does call Layout() to use sizers for | |
4938 | // positioning the controls but b) does not query | |
4939 | // the sizer for their size and use that for setting | |
4940 | // the scrollable area as set that ourselves by | |
4941 | // calling SetScrollbar() further down. | |
a95cdab8 | 4942 | |
06cd40a8 | 4943 | Layout(); |
bd8289c1 | 4944 | |
06cd40a8 | 4945 | m_mainWin->RecalculatePositions(); |
7d7b3f69 | 4946 | |
06cd40a8 | 4947 | AdjustScrollbars(); |
b54e41c5 | 4948 | } |
cf1dfa6b | 4949 | |
5180055b | 4950 | void wxGenericListCtrl::OnInternalIdle() |
b54e41c5 | 4951 | { |
5180055b | 4952 | wxWindow::OnInternalIdle(); |
86351e4a | 4953 | |
06cd40a8 RR |
4954 | if (m_mainWin->m_dirty) |
4955 | m_mainWin->RecalculatePositions(); | |
e1e955e1 | 4956 | } |
53010e52 | 4957 | |
cf1dfa6b VZ |
4958 | // ---------------------------------------------------------------------------- |
4959 | // font/colours | |
4960 | // ---------------------------------------------------------------------------- | |
4961 | ||
3cd94a0d | 4962 | bool wxGenericListCtrl::SetBackgroundColour( const wxColour &colour ) |
bd8289c1 | 4963 | { |
51cc4dad RR |
4964 | if (m_mainWin) |
4965 | { | |
4966 | m_mainWin->SetBackgroundColour( colour ); | |
ca65c044 | 4967 | m_mainWin->m_dirty = true; |
51cc4dad | 4968 | } |
004fd0c8 | 4969 | |
ca65c044 | 4970 | return true; |
e4d06860 RR |
4971 | } |
4972 | ||
3cd94a0d | 4973 | bool wxGenericListCtrl::SetForegroundColour( const wxColour &colour ) |
bd8289c1 | 4974 | { |
f03fc89f | 4975 | if ( !wxWindow::SetForegroundColour( colour ) ) |
ca65c044 | 4976 | return false; |
004fd0c8 | 4977 | |
51cc4dad RR |
4978 | if (m_mainWin) |
4979 | { | |
4980 | m_mainWin->SetForegroundColour( colour ); | |
ca65c044 | 4981 | m_mainWin->m_dirty = true; |
51cc4dad | 4982 | } |
004fd0c8 | 4983 | |
51cc4dad | 4984 | if (m_headerWin) |
51cc4dad | 4985 | m_headerWin->SetForegroundColour( colour ); |
f03fc89f | 4986 | |
ca65c044 | 4987 | return true; |
e4d06860 | 4988 | } |
bd8289c1 | 4989 | |
3cd94a0d | 4990 | bool wxGenericListCtrl::SetFont( const wxFont &font ) |
bd8289c1 | 4991 | { |
f03fc89f | 4992 | if ( !wxWindow::SetFont( font ) ) |
ca65c044 | 4993 | return false; |
004fd0c8 | 4994 | |
51cc4dad RR |
4995 | if (m_mainWin) |
4996 | { | |
4997 | m_mainWin->SetFont( font ); | |
ca65c044 | 4998 | m_mainWin->m_dirty = true; |
51cc4dad | 4999 | } |
004fd0c8 | 5000 | |
51cc4dad RR |
5001 | if (m_headerWin) |
5002 | { | |
5003 | m_headerWin->SetFont( font ); | |
06cd40a8 | 5004 | // CalculateAndSetHeaderHeight(); |
51cc4dad | 5005 | } |
f03fc89f | 5006 | |
f8252483 JS |
5007 | Refresh(); |
5008 | ||
ca65c044 | 5009 | return true; |
e4d06860 | 5010 | } |
c801d85f | 5011 | |
277ea1b4 | 5012 | // static |
35d4c967 RD |
5013 | wxVisualAttributes |
5014 | wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant) | |
5015 | { | |
5016 | #if _USE_VISATTR | |
5017 | // Use the same color scheme as wxListBox | |
5018 | return wxListBox::GetClassDefaultAttributes(variant); | |
5019 | #else | |
e7045784 | 5020 | wxUnusedVar(variant); |
35d4c967 | 5021 | wxVisualAttributes attr; |
9f2968ad | 5022 | attr.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOXTEXT); |
35d4c967 RD |
5023 | attr.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX); |
5024 | attr.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); | |
5025 | return attr; | |
5026 | #endif | |
5027 | } | |
5028 | ||
cf1dfa6b VZ |
5029 | // ---------------------------------------------------------------------------- |
5030 | // methods forwarded to m_mainWin | |
5031 | // ---------------------------------------------------------------------------- | |
5032 | ||
efbb7287 VZ |
5033 | #if wxUSE_DRAG_AND_DROP |
5034 | ||
3cd94a0d | 5035 | void wxGenericListCtrl::SetDropTarget( wxDropTarget *dropTarget ) |
efbb7287 VZ |
5036 | { |
5037 | m_mainWin->SetDropTarget( dropTarget ); | |
5038 | } | |
5039 | ||
3cd94a0d | 5040 | wxDropTarget *wxGenericListCtrl::GetDropTarget() const |
efbb7287 VZ |
5041 | { |
5042 | return m_mainWin->GetDropTarget(); | |
5043 | } | |
5044 | ||
277ea1b4 | 5045 | #endif |
efbb7287 | 5046 | |
3cd94a0d | 5047 | bool wxGenericListCtrl::SetCursor( const wxCursor &cursor ) |
efbb7287 | 5048 | { |
ca65c044 | 5049 | return m_mainWin ? m_mainWin->wxWindow::SetCursor(cursor) : false; |
efbb7287 VZ |
5050 | } |
5051 | ||
3cd94a0d | 5052 | wxColour wxGenericListCtrl::GetBackgroundColour() const |
efbb7287 VZ |
5053 | { |
5054 | return m_mainWin ? m_mainWin->GetBackgroundColour() : wxColour(); | |
5055 | } | |
5056 | ||
3cd94a0d | 5057 | wxColour wxGenericListCtrl::GetForegroundColour() const |
efbb7287 VZ |
5058 | { |
5059 | return m_mainWin ? m_mainWin->GetForegroundColour() : wxColour(); | |
5060 | } | |
5061 | ||
3cd94a0d | 5062 | bool wxGenericListCtrl::DoPopupMenu( wxMenu *menu, int x, int y ) |
efbb7287 | 5063 | { |
3a8c693a | 5064 | #if wxUSE_MENUS |
efbb7287 | 5065 | return m_mainWin->PopupMenu( menu, x, y ); |
3a8c693a | 5066 | #else |
ca65c044 | 5067 | return false; |
277ea1b4 | 5068 | #endif |
efbb7287 VZ |
5069 | } |
5070 | ||
7447bdd7 VZ |
5071 | void wxGenericListCtrl::DoClientToScreen( int *x, int *y ) const |
5072 | { | |
5d584acb | 5073 | m_mainWin->DoClientToScreen(x, y); |
7447bdd7 VZ |
5074 | } |
5075 | ||
5076 | void wxGenericListCtrl::DoScreenToClient( int *x, int *y ) const | |
5077 | { | |
5d584acb | 5078 | m_mainWin->DoScreenToClient(x, y); |
7447bdd7 VZ |
5079 | } |
5080 | ||
3cd94a0d | 5081 | void wxGenericListCtrl::SetFocus() |
efbb7287 | 5082 | { |
277ea1b4 DS |
5083 | // The test in window.cpp fails as we are a composite |
5084 | // window, so it checks against "this", but not m_mainWin. | |
66370e38 | 5085 | if ( DoFindFocus() != this ) |
efbb7287 VZ |
5086 | m_mainWin->SetFocus(); |
5087 | } | |
1e6feb95 | 5088 | |
3872d96d RD |
5089 | wxSize wxGenericListCtrl::DoGetBestSize() const |
5090 | { | |
5091 | // Something is better than nothing... | |
5092 | // 100x80 is what the MSW version will get from the default | |
5093 | // wxControl::DoGetBestSize | |
277ea1b4 | 5094 | return wxSize(100, 80); |
3872d96d RD |
5095 | } |
5096 | ||
2c1f73ee VZ |
5097 | // ---------------------------------------------------------------------------- |
5098 | // virtual list control support | |
5099 | // ---------------------------------------------------------------------------- | |
5100 | ||
3cd94a0d | 5101 | wxString wxGenericListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const |
2c1f73ee VZ |
5102 | { |
5103 | // this is a pure virtual function, in fact - which is not really pure | |
5104 | // because the controls which are not virtual don't need to implement it | |
3cd94a0d | 5105 | wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") ); |
2c1f73ee VZ |
5106 | |
5107 | return wxEmptyString; | |
5108 | } | |
5109 | ||
3cd94a0d | 5110 | int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item)) const |
2c1f73ee | 5111 | { |
611a725e RD |
5112 | wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL), |
5113 | -1, | |
208458a7 | 5114 | wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden.")); |
2c1f73ee VZ |
5115 | return -1; |
5116 | } | |
5117 | ||
208458a7 RD |
5118 | int wxGenericListCtrl::OnGetItemColumnImage(long item, long column) const |
5119 | { | |
5120 | if (!column) | |
5121 | return OnGetItemImage(item); | |
5122 | ||
5123 | return -1; | |
08a175ce | 5124 | } |
208458a7 | 5125 | |
999836aa VZ |
5126 | wxListItemAttr * |
5127 | wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const | |
6c02c329 VZ |
5128 | { |
5129 | wxASSERT_MSG( item >= 0 && item < GetItemCount(), | |
5130 | _T("invalid item index in OnGetItemAttr()") ); | |
5131 | ||
5132 | // no attributes by default | |
5133 | return NULL; | |
5134 | } | |
5135 | ||
3cd94a0d | 5136 | void wxGenericListCtrl::SetItemCount(long count) |
2c1f73ee VZ |
5137 | { |
5138 | wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") ); | |
5139 | ||
5140 | m_mainWin->SetItemCount(count); | |
5141 | } | |
5142 | ||
3cd94a0d | 5143 | void wxGenericListCtrl::RefreshItem(long item) |
1a6cb56f VZ |
5144 | { |
5145 | m_mainWin->RefreshLine(item); | |
5146 | } | |
5147 | ||
3cd94a0d | 5148 | void wxGenericListCtrl::RefreshItems(long itemFrom, long itemTo) |
1a6cb56f VZ |
5149 | { |
5150 | m_mainWin->RefreshLines(itemFrom, itemTo); | |
5151 | } | |
5152 | ||
277ea1b4 DS |
5153 | // Generic wxListCtrl is more or less a container for two other |
5154 | // windows which drawings are done upon. These are namely | |
5155 | // 'm_headerWin' and 'm_mainWin'. | |
5156 | // Here we override 'virtual wxWindow::Refresh()' to mimic the | |
5157 | // behaviour wxListCtrl has under wxMSW. | |
5158 | // | |
2f1e3c46 VZ |
5159 | void wxGenericListCtrl::Refresh(bool eraseBackground, const wxRect *rect) |
5160 | { | |
5161 | if (!rect) | |
5162 | { | |
5163 | // The easy case, no rectangle specified. | |
5164 | if (m_headerWin) | |
5165 | m_headerWin->Refresh(eraseBackground); | |
5166 | ||
5167 | if (m_mainWin) | |
5168 | m_mainWin->Refresh(eraseBackground); | |
5169 | } | |
5170 | else | |
5171 | { | |
5172 | // Refresh the header window | |
5173 | if (m_headerWin) | |
5174 | { | |
5175 | wxRect rectHeader = m_headerWin->GetRect(); | |
5176 | rectHeader.Intersect(*rect); | |
5177 | if (rectHeader.GetWidth() && rectHeader.GetHeight()) | |
5178 | { | |
5179 | int x, y; | |
5180 | m_headerWin->GetPosition(&x, &y); | |
5181 | rectHeader.Offset(-x, -y); | |
5182 | m_headerWin->Refresh(eraseBackground, &rectHeader); | |
5183 | } | |
2f1e3c46 VZ |
5184 | } |
5185 | ||
5186 | // Refresh the main window | |
5187 | if (m_mainWin) | |
5188 | { | |
5189 | wxRect rectMain = m_mainWin->GetRect(); | |
5190 | rectMain.Intersect(*rect); | |
5191 | if (rectMain.GetWidth() && rectMain.GetHeight()) | |
5192 | { | |
5193 | int x, y; | |
5194 | m_mainWin->GetPosition(&x, &y); | |
5195 | rectMain.Offset(-x, -y); | |
5196 | m_mainWin->Refresh(eraseBackground, &rectMain); | |
5197 | } | |
5198 | } | |
5199 | } | |
5200 | } | |
5201 | ||
1e6feb95 | 5202 | #endif // wxUSE_LISTCTRL |