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