]> git.saurik.com Git - wxWidgets.git/blame - src/generic/listctrl.cpp
dbgrid.cpp dbtree.cpp
[wxWidgets.git] / src / generic / listctrl.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: listctrl.cpp
3// Purpose:
4// Author: Robert Roebling
0208334d
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
bd8289c1 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
510fc784
RR
11 #pragma implementation "listctrl.h"
12 #pragma implementation "listctrlbase.h"
c801d85f
KB
13#endif
14
1e6d9499
JS
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#ifdef __BORLANDC__
19#pragma hdrstop
20#endif
21
0208334d
RR
22#include "wx/dcscreen.h"
23#include "wx/app.h"
02527779 24#include "wx/listctrl.h"
f60d0f94 25#include "wx/generic/imaglist.h"
c801d85f 26
7c74e7fe
SC
27#ifndef wxUSE_GENERIC_LIST_EXTENSIONS
28#define wxUSE_GENERIC_LIST_EXTENSIONS 0
29#endif
30
c801d85f
KB
31//-----------------------------------------------------------------------------
32// wxListItemData
33//-----------------------------------------------------------------------------
34
35IMPLEMENT_DYNAMIC_CLASS(wxListItemData,wxObject);
36
fd9811b1 37wxListItemData::wxListItemData()
c801d85f 38{
92976ab6
RR
39 m_image = -1;
40 m_data = 0;
41 m_xpos = 0;
42 m_ypos = 0;
43 m_width = 0;
44 m_height = 0;
0530737d 45 m_attr = NULL;
e1e955e1 46}
c801d85f
KB
47
48wxListItemData::wxListItemData( const wxListItem &info )
49{
92976ab6
RR
50 m_image = -1;
51 m_data = 0;
0530737d
VZ
52 m_attr = NULL;
53
92976ab6 54 SetItem( info );
e1e955e1 55}
c801d85f
KB
56
57void wxListItemData::SetItem( const wxListItem &info )
58{
92976ab6
RR
59 if (info.m_mask & wxLIST_MASK_TEXT) m_text = info.m_text;
60 if (info.m_mask & wxLIST_MASK_IMAGE) m_image = info.m_image;
61 if (info.m_mask & wxLIST_MASK_DATA) m_data = info.m_data;
0530737d
VZ
62
63 if ( info.HasAttributes() )
64 {
65 if ( m_attr )
66 *m_attr = *info.GetAttributes();
67 else
68 m_attr = new wxListItemAttr(*info.GetAttributes());
69 }
70
92976ab6
RR
71 m_xpos = 0;
72 m_ypos = 0;
73 m_width = info.m_width;
74 m_height = 0;
e1e955e1 75}
c801d85f
KB
76
77void wxListItemData::SetText( const wxString &s )
78{
92976ab6 79 m_text = s;
e1e955e1 80}
c801d85f 81
debe6624 82void wxListItemData::SetImage( int image )
c801d85f 83{
92976ab6 84 m_image = image;
e1e955e1 85}
c801d85f 86
debe6624 87void wxListItemData::SetData( long data )
c801d85f 88{
92976ab6 89 m_data = data;
e1e955e1 90}
c801d85f 91
debe6624 92void wxListItemData::SetPosition( int x, int y )
c801d85f 93{
92976ab6
RR
94 m_xpos = x;
95 m_ypos = y;
e1e955e1 96}
c801d85f 97
1e6d9499 98void wxListItemData::SetSize( int width, int height )
c801d85f 99{
92976ab6
RR
100 if (width != -1) m_width = width;
101 if (height != -1) m_height = height;
e1e955e1 102}
c801d85f 103
fd9811b1 104bool wxListItemData::HasImage() const
c801d85f 105{
92976ab6 106 return (m_image >= 0);
e1e955e1 107}
c801d85f 108
fd9811b1 109bool wxListItemData::HasText() const
c801d85f 110{
92976ab6 111 return (!m_text.IsNull());
e1e955e1 112}
c801d85f 113
debe6624 114bool wxListItemData::IsHit( int x, int y ) const
c801d85f 115{
92976ab6 116 return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height));
e1e955e1 117}
c801d85f
KB
118
119void wxListItemData::GetText( wxString &s )
120{
92976ab6 121 s = m_text;
e1e955e1 122}
c801d85f 123
fd9811b1 124int wxListItemData::GetX() const
c801d85f 125{
92976ab6 126 return m_xpos;
e1e955e1 127}
c801d85f 128
fd9811b1 129int wxListItemData::GetY() const
c801d85f 130{
92976ab6 131 return m_ypos;
e1e955e1 132}
c801d85f 133
fd9811b1 134int wxListItemData::GetWidth() const
c801d85f 135{
92976ab6 136 return m_width;
e1e955e1 137}
c801d85f 138
fd9811b1 139int wxListItemData::GetHeight() const
c801d85f 140{
92976ab6 141 return m_height;
e1e955e1 142}
c801d85f 143
fd9811b1 144int wxListItemData::GetImage() const
c801d85f 145{
92976ab6 146 return m_image;
e1e955e1 147}
c801d85f 148
0530737d 149void wxListItemData::GetItem( wxListItem &info ) const
c801d85f 150{
92976ab6
RR
151 info.m_text = m_text;
152 info.m_image = m_image;
153 info.m_data = m_data;
c801d85f 154
0530737d
VZ
155 if ( m_attr )
156 {
157 if ( m_attr->HasTextColour() )
158 info.SetTextColour(m_attr->GetTextColour());
159 if ( m_attr->HasBackgroundColour() )
160 info.SetBackgroundColour(m_attr->GetBackgroundColour());
161 if ( m_attr->HasFont() )
162 info.SetFont(m_attr->GetFont());
163 }
e1e955e1 164}
c801d85f
KB
165
166//-----------------------------------------------------------------------------
167// wxListHeaderData
168//-----------------------------------------------------------------------------
169
170IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData,wxObject);
171
fd9811b1 172wxListHeaderData::wxListHeaderData()
c801d85f 173{
92976ab6
RR
174 m_mask = 0;
175 m_image = 0;
176 m_format = 0;
177 m_width = 0;
178 m_xpos = 0;
179 m_ypos = 0;
180 m_height = 0;
e1e955e1 181}
c801d85f
KB
182
183wxListHeaderData::wxListHeaderData( const wxListItem &item )
184{
92976ab6
RR
185 SetItem( item );
186 m_xpos = 0;
187 m_ypos = 0;
188 m_height = 0;
e1e955e1 189}
c801d85f
KB
190
191void wxListHeaderData::SetItem( const wxListItem &item )
192{
92976ab6
RR
193 m_mask = item.m_mask;
194 m_text = item.m_text;
195 m_image = item.m_image;
196 m_format = item.m_format;
197 m_width = item.m_width;
198 if (m_width < 0) m_width = 80;
199 if (m_width < 6) m_width = 6;
e1e955e1 200}
c801d85f 201
debe6624 202void wxListHeaderData::SetPosition( int x, int y )
c801d85f 203{
92976ab6
RR
204 m_xpos = x;
205 m_ypos = y;
e1e955e1 206}
c801d85f 207
debe6624 208void wxListHeaderData::SetHeight( int h )
c801d85f 209{
92976ab6 210 m_height = h;
e1e955e1 211}
c801d85f 212
debe6624 213void wxListHeaderData::SetWidth( int w )
c801d85f 214{
92976ab6
RR
215 m_width = w;
216 if (m_width < 0) m_width = 80;
217 if (m_width < 6) m_width = 6;
e1e955e1 218}
c801d85f 219
debe6624 220void wxListHeaderData::SetFormat( int format )
c801d85f 221{
92976ab6 222 m_format = format;
e1e955e1 223}
c801d85f 224
fd9811b1 225bool wxListHeaderData::HasImage() const
c801d85f 226{
92976ab6 227 return (m_image != 0);
e1e955e1 228}
c801d85f 229
fd9811b1 230bool wxListHeaderData::HasText() const
c801d85f 231{
92976ab6 232 return (m_text.Length() > 0);
e1e955e1 233}
c801d85f
KB
234
235bool wxListHeaderData::IsHit( int x, int y ) const
236{
92976ab6 237 return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height));
e1e955e1 238}
c801d85f
KB
239
240void wxListHeaderData::GetItem( wxListItem &item )
241{
92976ab6
RR
242 item.m_mask = m_mask;
243 item.m_text = m_text;
244 item.m_image = m_image;
245 item.m_format = m_format;
246 item.m_width = m_width;
e1e955e1 247}
c801d85f
KB
248
249void wxListHeaderData::GetText( wxString &s )
250{
92976ab6 251 s = m_text;
e1e955e1 252}
c801d85f 253
fd9811b1 254int wxListHeaderData::GetImage() const
c801d85f 255{
92976ab6 256 return m_image;
e1e955e1 257}
c801d85f 258
fd9811b1 259int wxListHeaderData::GetWidth() const
c801d85f 260{
92976ab6 261 return m_width;
e1e955e1 262}
c801d85f 263
fd9811b1 264int wxListHeaderData::GetFormat() const
c801d85f 265{
92976ab6 266 return m_format;
e1e955e1 267}
c801d85f
KB
268
269//-----------------------------------------------------------------------------
270// wxListLineData
271//-----------------------------------------------------------------------------
272
273IMPLEMENT_DYNAMIC_CLASS(wxListLineData,wxObject);
274
debe6624 275wxListLineData::wxListLineData( wxListMainWindow *owner, int mode, wxBrush *hilightBrush )
c801d85f 276{
92976ab6
RR
277 m_mode = mode;
278 m_hilighted = FALSE;
279 m_owner = owner;
280 m_hilightBrush = hilightBrush;
281 m_items.DeleteContents( TRUE );
282 m_spacing = 0;
e1e955e1 283}
c801d85f 284
1e6d9499 285void wxListLineData::CalculateSize( wxDC *dc, int spacing )
c801d85f 286{
92976ab6
RR
287 m_spacing = spacing;
288 switch (m_mode)
c801d85f 289 {
92976ab6
RR
290 case wxLC_ICON:
291 {
292 m_bound_all.width = m_spacing;
293 m_bound_all.height = m_spacing+13;
294 wxNode *node = m_items.First();
295 if (node)
296 {
297 wxListItemData *item = (wxListItemData*)node->Data();
0530737d 298 wxString s = item->GetText();
13111b2a 299 wxCoord lw,lh;
92976ab6
RR
300 dc->GetTextExtent( s, &lw, &lh );
301 if (lw > m_spacing) m_bound_all.width = lw;
302 }
303 break;
304 }
305 case wxLC_LIST:
306 {
307 wxNode *node = m_items.First();
308 if (node)
309 {
310 wxListItemData *item = (wxListItemData*)node->Data();
0530737d 311 wxString s = item->GetText();
13111b2a 312 wxCoord lw,lh;
92976ab6
RR
313 dc->GetTextExtent( s, &lw, &lh );
314 m_bound_all.width = lw;
315 m_bound_all.height = lh;
0b855868
RR
316 if (item->HasImage())
317 {
5dd26b08
JS
318#ifdef __WIN16__
319 int w = 0;
320 int h = 0;
321#else
13111b2a
VZ
322 wxCoord w = 0;
323 wxCoord h = 0;
5dd26b08 324#endif
0b855868 325 m_owner->GetImageSize( item->GetImage(), w, h );
bffa1c77
VZ
326 m_bound_all.width += 4 + w;
327 if (h > m_bound_all.height) m_bound_all.height = h;
328 }
92976ab6
RR
329 }
330 break;
331 }
332 case wxLC_REPORT:
333 {
334 m_bound_all.width = 0;
335 m_bound_all.height = 0;
336 wxNode *node = m_items.First();
337 while (node)
338 {
339 wxListItemData *item = (wxListItemData*)node->Data();
340 wxString s;
341 item->GetText( s );
342 if (s.IsNull()) s = "H";
13111b2a 343 wxCoord lw,lh;
7c74e7fe 344 dc->GetTextExtent( s, &lw, &lh );
92976ab6 345 item->SetSize( item->GetWidth(), lh );
7c74e7fe 346 m_bound_all.width += lw;
92976ab6
RR
347 m_bound_all.height = lh;
348 node = node->Next();
349 }
350 break;
351 }
e1e955e1 352 }
e1e955e1 353}
c801d85f 354
1e6d9499 355void wxListLineData::SetPosition( wxDC *dc, int x, int y, int window_width )
c801d85f 356{
0b855868
RR
357 m_bound_all.x = x;
358 m_bound_all.y = y;
359 switch (m_mode)
360 {
361 case wxLC_ICON:
c801d85f 362 {
0b855868
RR
363 AssignRect( m_bound_icon, 0, 0, 0, 0 );
364 AssignRect( m_bound_label, 0, 0, 0, 0 );
365 AssignRect( m_bound_hilight, m_bound_all );
366 wxNode *node = m_items.First();
367 if (node)
368 {
369 wxListItemData *item = (wxListItemData*)node->Data();
370 if (item->HasImage())
371 {
372 wxListItemData *item = (wxListItemData*)node->Data();
373 int w = 0;
374 int h = 0;
375 m_owner->GetImageSize( item->GetImage(), w, h );
376 m_bound_icon.x = m_bound_all.x + (m_spacing/2) - (w/2);
377 m_bound_icon.y = m_bound_all.y + m_spacing - h - 5;
378 m_bound_icon.width = w;
379 m_bound_icon.height = h;
380 if (!item->HasText())
381 {
382 AssignRect( m_bound_hilight, m_bound_icon );
383 m_bound_hilight.x -= 5;
384 m_bound_hilight.y -= 5;
385 m_bound_hilight.width += 9;
386 m_bound_hilight.height += 9;
387 }
388 }
389 if (item->HasText())
390 {
391 wxString s;
392 item->GetText( s );
13111b2a 393 wxCoord lw,lh;
0b855868
RR
394 dc->GetTextExtent( s, &lw, &lh );
395 if (m_bound_all.width > m_spacing)
396 m_bound_label.x = m_bound_all.x;
397 else
398 m_bound_label.x = m_bound_all.x + (m_spacing/2) - lw/2;
399 m_bound_label.y = m_bound_all.y + m_bound_all.height - lh;
400 m_bound_label.width = lw;
401 m_bound_label.height = lh;
402 AssignRect( m_bound_hilight, m_bound_label );
403 m_bound_hilight.x -= 2;
404 m_bound_hilight.y -= 2;
405 m_bound_hilight.width += 4;
406 m_bound_hilight.height += 4;
407 }
408 }
409 break;
e1e955e1 410 }
0b855868 411 case wxLC_LIST:
c801d85f 412 {
0b855868
RR
413 AssignRect( m_bound_label, m_bound_all );
414 m_bound_all.x -= 2;
415 m_bound_all.y -= 2;
416 m_bound_all.width += 4;
417 m_bound_all.height += 3;
418 AssignRect( m_bound_hilight, m_bound_all );
419 AssignRect( m_bound_icon, 0, 0, 0, 0 );
420 wxNode *node = m_items.First();
421 if (node)
422 {
423 wxListItemData *item = (wxListItemData*)node->Data();
424 if (item->HasImage())
bffa1c77 425 {
0b855868
RR
426 m_bound_icon.x = m_bound_all.x + 2;
427 m_bound_icon.y = m_bound_all.y + 2;
bffa1c77
VZ
428 int w;
429 int h;
0b855868
RR
430 m_owner->GetImageSize( item->GetImage(), w, h );
431 m_bound_icon.width = w;
432 m_bound_icon.height = h;
bffa1c77
VZ
433 m_bound_label.x += 4 + w;
434 m_bound_label.width -= 4 + w;
435 }
436 }
0b855868
RR
437 break;
438 }
439 case wxLC_REPORT:
440 {
13111b2a 441 wxCoord lw,lh;
0b855868
RR
442 dc->GetTextExtent( "H", &lw, &lh );
443 m_bound_all.x = 0;
444 m_bound_all.y -= 0;
445 m_bound_all.height = lh+3;
446 m_bound_all.width = window_width;
447 AssignRect( m_bound_hilight, m_bound_all );
448 AssignRect( m_bound_label, m_bound_all );
449 AssignRect( m_bound_icon, 0, 0, 0, 0 );
450 wxNode *node = m_items.First();
451 if (node)
452 {
453 wxListItemData *item = (wxListItemData*)node->Data();
454 wxString s;
455 item->GetText( s );
bffa1c77 456 if (s.IsEmpty()) s = wxT("H");
13111b2a 457 wxCoord lw,lh;
0b855868 458 dc->GetTextExtent( s, &lw, &lh );
bffa1c77
VZ
459 m_bound_label.width = lw;
460 m_bound_label.height = lh;
461 if (item->HasImage())
462 {
0b855868
RR
463 m_bound_icon.x = m_bound_all.x + 2;
464 m_bound_icon.y = m_bound_all.y + 2;
bffa1c77
VZ
465 int w;
466 int h;
0b855868
RR
467 m_owner->GetImageSize( item->GetImage(), w, h );
468 m_bound_icon.width = w;
469 m_bound_icon.height = h;
bffa1c77
VZ
470 m_bound_label.x += 4 + w;
471 }
472 }
0b855868 473 break;
e1e955e1 474 }
e1e955e1 475 }
e1e955e1 476}
c801d85f 477
debe6624 478void wxListLineData::SetColumnPosition( int index, int x )
c801d85f 479{
6f2a55e3 480 wxNode *node = m_items.Nth( (size_t)index );
92976ab6
RR
481 if (node)
482 {
483 wxListItemData *item = (wxListItemData*)node->Data();
484 item->SetPosition( x, m_bound_all.y+1 );
485 }
e1e955e1 486}
c801d85f
KB
487
488void wxListLineData::GetSize( int &width, int &height )
489{
139adb6a
RR
490 width = m_bound_all.width;
491 height = m_bound_all.height;
e1e955e1 492}
c801d85f
KB
493
494void wxListLineData::GetExtent( int &x, int &y, int &width, int &height )
495{
139adb6a
RR
496 x = m_bound_all.x;
497 y = m_bound_all.y;
498 width = m_bound_all.width;
499 height = m_bound_all.height;
e1e955e1 500}
c801d85f
KB
501
502void wxListLineData::GetLabelExtent( int &x, int &y, int &width, int &height )
503{
139adb6a
RR
504 x = m_bound_label.x;
505 y = m_bound_label.y;
506 width = m_bound_label.width;
507 height = m_bound_label.height;
e1e955e1 508}
c801d85f 509
0a240683 510void wxListLineData::GetRect( wxRect &rect )
c801d85f 511{
139adb6a 512 AssignRect( rect, m_bound_all );
e1e955e1 513}
c801d85f 514
debe6624 515long wxListLineData::IsHit( int x, int y )
c801d85f 516{
139adb6a
RR
517 wxNode *node = m_items.First();
518 if (node)
519 {
520 wxListItemData *item = (wxListItemData*)node->Data();
521 if (item->HasImage() && IsInRect( x, y, m_bound_icon )) return wxLIST_HITTEST_ONITEMICON;
522 if (item->HasText() && IsInRect( x, y, m_bound_label )) return wxLIST_HITTEST_ONITEMLABEL;
523// if (!(item->HasImage() || item->HasText())) return 0;
524 }
525 // if there is no icon or text = empty
526 if (IsInRect( x, y, m_bound_all )) return wxLIST_HITTEST_ONITEMICON;
527 return 0;
e1e955e1 528}
c801d85f 529
debe6624 530void wxListLineData::InitItems( int num )
c801d85f 531{
139adb6a 532 for (int i = 0; i < num; i++) m_items.Append( new wxListItemData() );
e1e955e1 533}
c801d85f 534
debe6624 535void wxListLineData::SetItem( int index, const wxListItem &info )
c801d85f 536{
139adb6a
RR
537 wxNode *node = m_items.Nth( index );
538 if (node)
539 {
540 wxListItemData *item = (wxListItemData*)node->Data();
541 item->SetItem( info );
542 }
e1e955e1 543}
c801d85f 544
1e6d9499 545void wxListLineData::GetItem( int index, wxListItem &info )
c801d85f 546{
139adb6a
RR
547 int i = index;
548 wxNode *node = m_items.Nth( i );
549 if (node)
550 {
551 wxListItemData *item = (wxListItemData*)node->Data();
552 item->GetItem( info );
553 }
e1e955e1 554}
c801d85f 555
debe6624 556void wxListLineData::GetText( int index, wxString &s )
c801d85f 557{
139adb6a
RR
558 int i = index;
559 wxNode *node = m_items.Nth( i );
560 s = "";
561 if (node)
562 {
563 wxListItemData *item = (wxListItemData*)node->Data();
564 item->GetText( s );
565 }
e1e955e1 566}
c801d85f 567
debe6624 568void wxListLineData::SetText( int index, const wxString s )
c801d85f 569{
139adb6a
RR
570 int i = index;
571 wxNode *node = m_items.Nth( i );
572 if (node)
573 {
574 wxListItemData *item = (wxListItemData*)node->Data();
575 item->SetText( s );
576 }
e1e955e1 577}
c801d85f 578
debe6624 579int wxListLineData::GetImage( int index )
c801d85f 580{
139adb6a
RR
581 int i = index;
582 wxNode *node = m_items.Nth( i );
583 if (node)
584 {
585 wxListItemData *item = (wxListItemData*)node->Data();
586 return item->GetImage();
587 }
588 return -1;
e1e955e1 589}
c801d85f 590
0530737d
VZ
591void wxListLineData::SetAttributes(wxDC *dc,
592 const wxListItemAttr *attr,
593 const wxColour& colText,
470caaf9
VZ
594 const wxFont& font,
595 bool hilight)
0530737d 596{
470caaf9
VZ
597 // don't use foregroud colour for drawing highlighted items - this might
598 // make them completely invisible (and there is no way to do bit
599 // arithmetics on wxColour, unfortunately)
600 if ( !hilight && attr && attr->HasTextColour() )
0530737d
VZ
601 {
602 dc->SetTextForeground(attr->GetTextColour());
603 }
604 else
605 {
606 dc->SetTextForeground(colText);
607 }
608
609 if ( attr && attr->HasFont() )
610 {
611 dc->SetFont(attr->GetFont());
612 }
613 else
614 {
615 dc->SetFont(font);
616 }
617}
618
1e6d9499 619void wxListLineData::DoDraw( wxDC *dc, bool hilight, bool paintBG )
c801d85f 620{
6f2a55e3
VZ
621 wxCoord dev_x = dc->LogicalToDeviceX( m_bound_all.x-2 );
622 wxCoord dev_y = dc->LogicalToDeviceY( m_bound_all.y-2 );
623 wxCoord dev_w = dc->LogicalToDeviceXRel( m_bound_all.width+4 );
624 wxCoord dev_h = dc->LogicalToDeviceYRel( m_bound_all.height+4 );
004fd0c8 625
139adb6a 626 if (!m_owner->IsExposed( dev_x, dev_y, dev_w, dev_h ))
004fd0c8 627 {
139adb6a
RR
628 return;
629 }
bd8289c1 630
0530737d
VZ
631 wxWindow *listctrl = m_owner->GetParent();
632
633 // default foreground colour
634 wxColour colText;
635 if ( hilight )
636 {
637 colText = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT );
638 }
639 else
640 {
641 colText = listctrl->GetForegroundColour();
642 }
643
644 // default font
645 wxFont font = listctrl->GetFont();
646
647 // VZ: currently we set the colours/fonts only once, but like this (i.e.
648 // using SetAttributes() inside the loop), it will be trivial to
649 // customize the subitems (in report mode) too.
650 wxListItemData *item = (wxListItemData*)m_items.First()->Data();
651 wxListItemAttr *attr = item->GetAttributes();
470caaf9 652 SetAttributes(dc, attr, colText, font, hilight);
0530737d
VZ
653
654 bool hasBgCol = attr && attr->HasBackgroundColour();
655 if ( paintBG || hasBgCol )
c801d85f 656 {
63852e78
RR
657 if (hilight)
658 {
659 dc->SetBrush( * m_hilightBrush );
63852e78
RR
660 }
661 else
662 {
0530737d
VZ
663 if ( hasBgCol )
664 dc->SetBrush(wxBrush(attr->GetBackgroundColour(), wxSOLID));
665 else
666 dc->SetBrush( * wxWHITE_BRUSH );
63852e78 667 }
0530737d
VZ
668
669 dc->SetPen( * wxTRANSPARENT_PEN );
63852e78
RR
670 dc->DrawRectangle( m_bound_hilight.x, m_bound_hilight.y,
671 m_bound_hilight.width, m_bound_hilight.height );
e1e955e1 672 }
004fd0c8 673
63852e78 674 if (m_mode == wxLC_REPORT)
c801d85f 675 {
63852e78
RR
676 wxNode *node = m_items.First();
677 while (node)
678 {
679 wxListItemData *item = (wxListItemData*)node->Data();
680 dc->SetClippingRegion( item->GetX(), item->GetY(), item->GetWidth()-3, item->GetHeight() );
681 int x = item->GetX();
682 if (item->HasImage())
683 {
684 int y = 0;
685 m_owner->DrawImage( item->GetImage(), dc, x, item->GetY() );
686 m_owner->GetImageSize( item->GetImage(), x, y );
687 x += item->GetX() + 5;
688 }
689 if (item->HasText())
690 {
0530737d 691 dc->DrawText( item->GetText(), x, item->GetY() );
63852e78
RR
692 }
693 dc->DestroyClippingRegion();
694 node = node->Next();
695 }
e1e955e1 696 }
63852e78 697 else
c801d85f 698 {
63852e78
RR
699 wxNode *node = m_items.First();
700 if (node)
701 {
702 wxListItemData *item = (wxListItemData*)node->Data();
703 if (item->HasImage())
704 {
705 m_owner->DrawImage( item->GetImage(), dc, m_bound_icon.x, m_bound_icon.y );
706 }
707 if (item->HasText())
708 {
0530737d 709 dc->DrawText( item->GetText(), m_bound_label.x, m_bound_label.y );
63852e78
RR
710 }
711 }
e1e955e1 712 }
e1e955e1 713}
c801d85f 714
debe6624 715void wxListLineData::Hilight( bool on )
c801d85f 716{
63852e78 717 if (on == m_hilighted) return;
6e228e42 718 m_hilighted = on;
63852e78
RR
719 if (on)
720 m_owner->SelectLine( this );
721 else
722 m_owner->DeselectLine( this );
e1e955e1 723}
c801d85f
KB
724
725void wxListLineData::ReverseHilight( void )
726{
63852e78
RR
727 m_hilighted = !m_hilighted;
728 if (m_hilighted)
729 m_owner->SelectLine( this );
730 else
731 m_owner->DeselectLine( this );
e1e955e1 732}
c801d85f 733
1e6d9499 734void wxListLineData::DrawRubberBand( wxDC *dc, bool on )
c801d85f 735{
63852e78
RR
736 if (on)
737 {
738 dc->SetPen( * wxBLACK_PEN );
739 dc->SetBrush( * wxTRANSPARENT_BRUSH );
740 dc->DrawRectangle( m_bound_hilight.x, m_bound_hilight.y,
741 m_bound_hilight.width, m_bound_hilight.height );
742 }
e1e955e1 743}
c801d85f 744
1e6d9499 745void wxListLineData::Draw( wxDC *dc )
c801d85f 746{
63852e78 747 DoDraw( dc, m_hilighted, m_hilighted );
e1e955e1 748}
c801d85f 749
0a240683 750bool wxListLineData::IsInRect( int x, int y, const wxRect &rect )
c801d85f 751{
004fd0c8 752 return ((x >= rect.x) && (x <= rect.x+rect.width) &&
63852e78 753 (y >= rect.y) && (y <= rect.y+rect.height));
e1e955e1 754}
c801d85f
KB
755
756bool wxListLineData::IsHilighted( void )
757{
63852e78 758 return m_hilighted;
e1e955e1 759}
c801d85f 760
0a240683 761void wxListLineData::AssignRect( wxRect &dest, int x, int y, int width, int height )
c801d85f 762{
63852e78
RR
763 dest.x = x;
764 dest.y = y;
765 dest.width = width;
766 dest.height = height;
e1e955e1 767}
c801d85f 768
0a240683 769void wxListLineData::AssignRect( wxRect &dest, const wxRect &source )
c801d85f 770{
63852e78
RR
771 dest.x = source.x;
772 dest.y = source.y;
773 dest.width = source.width;
774 dest.height = source.height;
e1e955e1 775}
c801d85f
KB
776
777//-----------------------------------------------------------------------------
778// wxListHeaderWindow
779//-----------------------------------------------------------------------------
780
781IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow,wxWindow);
782
783BEGIN_EVENT_TABLE(wxListHeaderWindow,wxWindow)
63852e78
RR
784 EVT_PAINT (wxListHeaderWindow::OnPaint)
785 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse)
786 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus)
c801d85f
KB
787END_EVENT_TABLE()
788
789wxListHeaderWindow::wxListHeaderWindow( void )
790{
63852e78
RR
791 m_owner = (wxListMainWindow *) NULL;
792 m_currentCursor = (wxCursor *) NULL;
793 m_resizeCursor = (wxCursor *) NULL;
cfb50f14 794 m_isDragging = FALSE;
e1e955e1 795}
c801d85f 796
bd8289c1 797wxListHeaderWindow::wxListHeaderWindow( wxWindow *win, wxWindowID id, wxListMainWindow *owner,
debe6624
JS
798 const wxPoint &pos, const wxSize &size,
799 long style, const wxString &name ) :
c801d85f
KB
800 wxWindow( win, id, pos, size, style, name )
801{
63852e78 802 m_owner = owner;
c801d85f 803// m_currentCursor = wxSTANDARD_CURSOR;
63852e78
RR
804 m_currentCursor = (wxCursor *) NULL;
805 m_resizeCursor = new wxCursor( wxCURSOR_SIZEWE );
cfb50f14
RR
806 m_isDragging = FALSE;
807 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE ) );
e1e955e1 808}
c801d85f 809
a367b9b3
JS
810wxListHeaderWindow::~wxListHeaderWindow( void )
811{
63852e78 812 delete m_resizeCursor;
a367b9b3
JS
813}
814
1e6d9499 815void wxListHeaderWindow::DoDrawRect( wxDC *dc, int x, int y, int w, int h )
c801d85f 816{
63852e78 817 const int m_corner = 1;
c801d85f 818
63852e78 819 dc->SetBrush( *wxTRANSPARENT_BRUSH );
c801d85f 820
63852e78
RR
821 dc->SetPen( *wxBLACK_PEN );
822 dc->DrawLine( x+w-m_corner+1, y, x+w, y+h ); // right (outer)
17867d61 823 dc->DrawRectangle( x, y+h, w+1, 1 ); // bottom (outer)
bd8289c1 824
63852e78 825 wxPen pen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW ), 1, wxSOLID );
004fd0c8 826
63852e78
RR
827 dc->SetPen( pen );
828 dc->DrawLine( x+w-m_corner, y, x+w-1, y+h ); // right (inner)
829 dc->DrawRectangle( x+1, y+h-1, w-2, 1 ); // bottom (inner)
bd8289c1 830
63852e78
RR
831 dc->SetPen( *wxWHITE_PEN );
832 dc->DrawRectangle( x, y, w-m_corner+1, 1 ); // top (outer)
833 dc->DrawRectangle( x, y, 1, h ); // left (outer)
834 dc->DrawLine( x, y+h-1, x+1, y+h-1 );
835 dc->DrawLine( x+w-1, y, x+w-1, y+1 );
e1e955e1 836}
c801d85f
KB
837
838void wxListHeaderWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
839{
63852e78
RR
840 wxPaintDC dc( this );
841 PrepareDC( dc );
7c74e7fe 842#if wxUSE_GENERIC_LIST_EXTENSIONS
bffa1c77
VZ
843 if ( m_owner->GetMode() & wxLC_REPORT )
844 {
845 int x , y ;
846 int xpix , ypix ;
847
848 m_owner->GetScrollPixelsPerUnit( &xpix , &ypix ) ;
849 m_owner->ViewStart( &x, &y ) ;
850 dc.SetDeviceOrigin( -x * xpix, 0 );
851 }
7c74e7fe 852#endif
63852e78 853 dc.BeginDrawing();
bd8289c1 854
63852e78 855 dc.SetFont( GetFont() );
bd8289c1 856
63852e78
RR
857 int w = 0;
858 int h = 0;
859 int x = 0;
860 int y = 0;
861 GetClientSize( &w, &h );
c801d85f 862
f60d0f94 863 dc.SetBackgroundMode(wxTRANSPARENT);
63852e78 864 dc.SetTextForeground( *wxBLACK );
70846f0a
VZ
865
866 // do *not* use the listctrl colour for headers - one day we will have a
867 // function to set it separately
c801d85f 868
63852e78
RR
869 x = 1;
870 y = 1;
871 int numColumns = m_owner->GetColumnCount();
872 wxListItem item;
873 for (int i = 0; i < numColumns; i++)
874 {
875 m_owner->GetColumn( i, item );
876 int cw = item.m_width-2;
7c74e7fe 877#if wxUSE_GENERIC_LIST_EXTENSIONS
bffa1c77 878 if ((i+1 == numColumns) || ( dc.LogicalToDeviceX(x+item.m_width) > w-5))
470caaf9 879 cw = dc.DeviceToLogicalX(w)-x-1;
7c74e7fe 880#else
470caaf9
VZ
881 if ((i+1 == numColumns) || (x+item.m_width > w-5))
882 cw = w-x-1;
7c74e7fe 883#endif
63852e78 884 dc.SetPen( *wxWHITE_PEN );
c801d85f 885
63852e78
RR
886 DoDrawRect( &dc, x, y, cw, h-2 );
887 dc.SetClippingRegion( x, y, cw-5, h-4 );
888 dc.DrawText( item.m_text, x+4, y+3 );
889 dc.DestroyClippingRegion();
890 x += item.m_width;
7c74e7fe
SC
891#if wxUSE_GENERIC_LIST_EXTENSIONS
892 if (dc.LogicalToDeviceX(x) > w+5) break;
893#else
63852e78 894 if (x > w+5) break;
7c74e7fe 895#endif
63852e78
RR
896 }
897 dc.EndDrawing();
e1e955e1 898}
c801d85f 899
0208334d
RR
900void wxListHeaderWindow::DrawCurrent()
901{
63852e78
RR
902 int x1 = m_currentX;
903 int y1 = 0;
904 int x2 = m_currentX-1;
905 int y2 = 0;
906 int dummy;
907 m_owner->GetClientSize( &dummy, &y2 );
908 ClientToScreen( &x1, &y1 );
909 m_owner->ClientToScreen( &x2, &y2 );
0208334d 910
63852e78 911 wxScreenDC dc;
3c679789 912 dc.SetLogicalFunction( wxINVERT );
63852e78
RR
913 dc.SetPen( wxPen( *wxBLACK, 2, wxSOLID ) );
914 dc.SetBrush( *wxTRANSPARENT_BRUSH );
0208334d 915
63852e78 916 dc.DrawLine( x1, y1, x2, y2 );
0208334d 917
63852e78 918 dc.SetLogicalFunction( wxCOPY );
0208334d 919
63852e78
RR
920 dc.SetPen( wxNullPen );
921 dc.SetBrush( wxNullBrush );
0208334d
RR
922}
923
c801d85f
KB
924void wxListHeaderWindow::OnMouse( wxMouseEvent &event )
925{
6f2a55e3
VZ
926 wxCoord x = (wxCoord)event.GetX();
927 wxCoord y = (wxCoord)event.GetY();
cfb50f14 928 if (m_isDragging)
0208334d 929 {
63852e78
RR
930 DrawCurrent();
931 if (event.ButtonUp())
932 {
933 ReleaseMouse();
cfb50f14 934 m_isDragging = FALSE;
63852e78
RR
935 m_owner->SetColumnWidth( m_column, m_currentX-m_minX );
936 }
937 else
938 {
939 int size_x = 0;
940 int dummy;
941 GetClientSize( &size_x, & dummy );
942 if (x > m_minX+7)
943 m_currentX = x;
944 else
945 m_currentX = m_minX+7;
946 if (m_currentX > size_x-7) m_currentX = size_x-7;
947 DrawCurrent();
948 }
949 return;
0208334d 950 }
bd8289c1 951
63852e78
RR
952 m_minX = 0;
953 bool hit_border = FALSE;
954 int xpos = 0;
4b59bea3 955 for (int j = 0; j < m_owner->GetColumnCount()-1; j++)
bd8289c1 956 {
63852e78 957 xpos += m_owner->GetColumnWidth( j );
8636aed8 958 m_column = j;
63852e78
RR
959 if ((abs(x-xpos) < 3) && (y < 22))
960 {
961 hit_border = TRUE;
63852e78
RR
962 break;
963 }
bffa1c77
VZ
964 if (x-xpos < 0)
965 {
966 break;
967 }
63852e78 968 m_minX = xpos;
0208334d 969 }
bd8289c1 970
8636aed8 971 if (event.LeftDown())
c801d85f 972 {
8636aed8 973 if (hit_border)
bffa1c77 974 {
8636aed8
RR
975 m_isDragging = TRUE;
976 m_currentX = x;
977 DrawCurrent();
978 CaptureMouse();
979 return;
bffa1c77
VZ
980 }
981 else
982 {
8636aed8
RR
983 wxListEvent le( wxEVT_COMMAND_LIST_COL_CLICK, GetParent()->GetId() );
984 le.SetEventObject( GetParent() );
bffa1c77 985 le.m_col = m_column;
8636aed8 986 GetParent()->GetEventHandler()->ProcessEvent( le );
bffa1c77
VZ
987 return;
988 }
c801d85f 989 }
63852e78
RR
990
991 if (event.Moving())
c801d85f 992 {
63852e78
RR
993 if (hit_border)
994 {
995 if (m_currentCursor == wxSTANDARD_CURSOR) SetCursor( * m_resizeCursor );
996 m_currentCursor = m_resizeCursor;
997 }
998 else
999 {
1000 if (m_currentCursor != wxSTANDARD_CURSOR) SetCursor( * wxSTANDARD_CURSOR );
1001 m_currentCursor = wxSTANDARD_CURSOR;
1002 }
e1e955e1 1003 }
e1e955e1 1004}
c801d85f
KB
1005
1006void wxListHeaderWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) )
1007{
63852e78 1008 m_owner->SetFocus();
e1e955e1 1009}
c801d85f
KB
1010
1011//-----------------------------------------------------------------------------
1012// wxListRenameTimer (internal)
1013//-----------------------------------------------------------------------------
1014
bd8289c1
VZ
1015wxListRenameTimer::wxListRenameTimer( wxListMainWindow *owner )
1016{
63852e78 1017 m_owner = owner;
e1e955e1 1018}
c801d85f 1019
bd8289c1
VZ
1020void wxListRenameTimer::Notify()
1021{
63852e78 1022 m_owner->OnRenameTimer();
e1e955e1 1023}
c801d85f 1024
ee7ee469
RR
1025//-----------------------------------------------------------------------------
1026// wxListTextCtrl (internal)
1027//-----------------------------------------------------------------------------
1028
1029IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl,wxTextCtrl);
bd8289c1 1030
ee7ee469 1031BEGIN_EVENT_TABLE(wxListTextCtrl,wxTextCtrl)
63852e78
RR
1032 EVT_CHAR (wxListTextCtrl::OnChar)
1033 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus)
ee7ee469
RR
1034END_EVENT_TABLE()
1035
674ac8b9
VZ
1036wxListTextCtrl::wxListTextCtrl( wxWindow *parent,
1037 const wxWindowID id,
1038 bool *accept,
1039 wxString *res,
1040 wxListMainWindow *owner,
1041 const wxString &value,
1042 const wxPoint &pos,
1043 const wxSize &size,
1044 int style,
1045 const wxValidator& validator,
1046 const wxString &name )
1047 : wxTextCtrl( parent, id, value, pos, size, style, validator, name )
ee7ee469 1048{
63852e78
RR
1049 m_res = res;
1050 m_accept = accept;
1051 m_owner = owner;
5f1ea0ee
RR
1052 (*m_accept) = FALSE;
1053 (*m_res) = "";
1054 m_startValue = value;
ee7ee469
RR
1055}
1056
1057void wxListTextCtrl::OnChar( wxKeyEvent &event )
1058{
63852e78
RR
1059 if (event.m_keyCode == WXK_RETURN)
1060 {
1061 (*m_accept) = TRUE;
1062 (*m_res) = GetValue();
bffa1c77 1063 m_owner->SetFocus();
63852e78
RR
1064 return;
1065 }
1066 if (event.m_keyCode == WXK_ESCAPE)
1067 {
1068 (*m_accept) = FALSE;
1069 (*m_res) = "";
bffa1c77 1070 m_owner->SetFocus();
63852e78
RR
1071 return;
1072 }
1073 event.Skip();
1074}
1075
1076void wxListTextCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) )
1077{
5f1ea0ee
RR
1078 if (wxPendingDelete.Member(this)) return;
1079
1080 wxPendingDelete.Append(this);
004fd0c8 1081
5f1ea0ee
RR
1082 if ((*m_accept) && ((*m_res) != m_startValue))
1083 m_owner->OnRenameAccept();
ee7ee469
RR
1084}
1085
c801d85f
KB
1086//-----------------------------------------------------------------------------
1087// wxListMainWindow
1088//-----------------------------------------------------------------------------
1089
1090IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow,wxScrolledWindow);
bd8289c1 1091
c801d85f
KB
1092BEGIN_EVENT_TABLE(wxListMainWindow,wxScrolledWindow)
1093 EVT_PAINT (wxListMainWindow::OnPaint)
1094 EVT_SIZE (wxListMainWindow::OnSize)
1095 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse)
1096 EVT_CHAR (wxListMainWindow::OnChar)
3dfb93fd 1097 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown)
c801d85f
KB
1098 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus)
1099 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus)
bffa1c77 1100 EVT_SCROLLWIN (wxListMainWindow::OnScroll)
c801d85f
KB
1101END_EVENT_TABLE()
1102
fd9811b1 1103wxListMainWindow::wxListMainWindow()
c801d85f 1104{
139adb6a
RR
1105 m_mode = 0;
1106 m_lines.DeleteContents( TRUE );
1107 m_columns.DeleteContents( TRUE );
1108 m_current = (wxListLineData *) NULL;
1109 m_visibleLines = 0;
1110 m_hilightBrush = (wxBrush *) NULL;
1111 m_xScroll = 0;
1112 m_yScroll = 0;
1113 m_dirty = TRUE;
1114 m_small_image_list = (wxImageList *) NULL;
1115 m_normal_image_list = (wxImageList *) NULL;
1116 m_small_spacing = 30;
1117 m_normal_spacing = 40;
1118 m_hasFocus = FALSE;
1119 m_usedKeys = TRUE;
1120 m_lastOnSame = FALSE;
1121 m_renameTimer = new wxListRenameTimer( this );
1122 m_isCreated = FALSE;
1123 m_dragCount = 0;
e1e955e1 1124}
c801d85f 1125
bd8289c1 1126wxListMainWindow::wxListMainWindow( wxWindow *parent, wxWindowID id,
c801d85f 1127 const wxPoint &pos, const wxSize &size,
debe6624 1128 long style, const wxString &name ) :
a367b9b3 1129 wxScrolledWindow( parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name )
c801d85f 1130{
139adb6a
RR
1131 m_mode = style;
1132 m_lines.DeleteContents( TRUE );
1133 m_columns.DeleteContents( TRUE );
1134 m_current = (wxListLineData *) NULL;
1135 m_dirty = TRUE;
1136 m_visibleLines = 0;
1137 m_hilightBrush = new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT), wxSOLID );
1138 m_small_image_list = (wxImageList *) NULL;
1139 m_normal_image_list = (wxImageList *) NULL;
1140 m_small_spacing = 30;
1141 m_normal_spacing = 40;
1142 m_hasFocus = FALSE;
1143 m_dragCount = 0;
1144 m_isCreated = FALSE;
1145 wxSize sz = size;
1146 sz.y = 25;
bd8289c1 1147
139adb6a
RR
1148 if (m_mode & wxLC_REPORT)
1149 {
7c74e7fe
SC
1150#if wxUSE_GENERIC_LIST_EXTENSIONS
1151 m_xScroll = 15;
1152#else
139adb6a 1153 m_xScroll = 0;
7c74e7fe 1154#endif
139adb6a
RR
1155 m_yScroll = 15;
1156 }
1157 else
1158 {
1159 m_xScroll = 15;
1160 m_yScroll = 0;
1161 }
1162 SetScrollbars( m_xScroll, m_yScroll, 0, 0, 0, 0 );
bd8289c1 1163
139adb6a
RR
1164 m_usedKeys = TRUE;
1165 m_lastOnSame = FALSE;
1166 m_renameTimer = new wxListRenameTimer( this );
1167 m_renameAccept = FALSE;
c801d85f 1168
139adb6a 1169 SetBackgroundColour( *wxWHITE );
e1e955e1 1170}
c801d85f 1171
fd9811b1 1172wxListMainWindow::~wxListMainWindow()
c801d85f 1173{
12c1b46a
RR
1174 DeleteEverything();
1175
139adb6a 1176 if (m_hilightBrush) delete m_hilightBrush;
004fd0c8 1177
139adb6a 1178 delete m_renameTimer;
e1e955e1 1179}
c801d85f
KB
1180
1181void wxListMainWindow::RefreshLine( wxListLineData *line )
1182{
e6527f9d 1183 if (m_dirty) return;
25e3a937 1184
139adb6a
RR
1185 int x = 0;
1186 int y = 0;
1187 int w = 0;
1188 int h = 0;
1189 if (line)
1190 {
1191 wxClientDC dc(this);
1192 PrepareDC( dc );
1193 line->GetExtent( x, y, w, h );
0a240683 1194 wxRect rect(
139adb6a
RR
1195 dc.LogicalToDeviceX(x-3),
1196 dc.LogicalToDeviceY(y-3),
1197 dc.LogicalToDeviceXRel(w+6),
1198 dc.LogicalToDeviceXRel(h+6) );
1199 Refresh( TRUE, &rect );
1200 }
e1e955e1 1201}
c801d85f
KB
1202
1203void wxListMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
1204{
f60d0f94
JS
1205 // Note: a wxPaintDC must be constructed even if no drawing is
1206 // done (a Windows requirement).
1207 wxPaintDC dc( this );
1208 PrepareDC( dc );
1209
139adb6a 1210 if (m_dirty) return;
004fd0c8 1211
139adb6a 1212 if (m_lines.GetCount() == 0) return;
bd8289c1 1213
139adb6a 1214 dc.BeginDrawing();
c801d85f 1215
139adb6a 1216 dc.SetFont( GetFont() );
004fd0c8 1217
139adb6a
RR
1218 if (m_mode & wxLC_REPORT)
1219 {
1220 int lineSpacing = 0;
1221 wxListLineData *line = (wxListLineData*)m_lines.First()->Data();
1222 int dummy = 0;
1223 line->GetSize( dummy, lineSpacing );
1224 lineSpacing += 1;
bffa1c77 1225
139adb6a 1226 int y_s = m_yScroll*GetScrollPos( wxVERTICAL );
bffa1c77 1227
139adb6a 1228 wxNode *node = m_lines.Nth( y_s / lineSpacing );
bffa1c77
VZ
1229 for (int i = 0; i < m_visibleLines+2; i++)
1230 {
1231 if (!node) break;
1232
139adb6a
RR
1233 line = (wxListLineData*)node->Data();
1234 line->Draw( &dc );
1235 node = node->Next();
bffa1c77 1236 }
139adb6a
RR
1237 }
1238 else
1239 {
1240 wxNode *node = m_lines.First();
1241 while (node)
1242 {
1243 wxListLineData *line = (wxListLineData*)node->Data();
1244 line->Draw( &dc );
1245 node = node->Next();
1246 }
1247 }
004fd0c8 1248
139adb6a 1249 if (m_current) m_current->DrawRubberBand( &dc, m_hasFocus );
c801d85f 1250
139adb6a 1251 dc.EndDrawing();
e1e955e1 1252}
c801d85f 1253
debe6624 1254void wxListMainWindow::HilightAll( bool on )
c801d85f 1255{
139adb6a
RR
1256 wxNode *node = m_lines.First();
1257 while (node)
c801d85f 1258 {
139adb6a
RR
1259 wxListLineData *line = (wxListLineData *)node->Data();
1260 if (line->IsHilighted() != on)
1261 {
1262 line->Hilight( on );
1263 RefreshLine( line );
1264 }
1265 node = node->Next();
e1e955e1 1266 }
e1e955e1 1267}
c801d85f 1268
7798a18e 1269void wxListMainWindow::SendNotify( wxListLineData *line, wxEventType command )
c801d85f 1270{
139adb6a
RR
1271 wxListEvent le( command, GetParent()->GetId() );
1272 le.SetEventObject( GetParent() );
1273 le.m_itemIndex = GetIndexOfLine( line );
1274 line->GetItem( 0, le.m_item );
6e228e42
RR
1275 GetParent()->GetEventHandler()->ProcessEvent( le );
1276// GetParent()->GetEventHandler()->AddPendingEvent( le );
e1e955e1 1277}
c801d85f
KB
1278
1279void wxListMainWindow::FocusLine( wxListLineData *WXUNUSED(line) )
1280{
1281// SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED );
e1e955e1 1282}
c801d85f
KB
1283
1284void wxListMainWindow::UnfocusLine( wxListLineData *WXUNUSED(line) )
1285{
1286// SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED );
e1e955e1 1287}
c801d85f
KB
1288
1289void wxListMainWindow::SelectLine( wxListLineData *line )
1290{
139adb6a 1291 SendNotify( line, wxEVT_COMMAND_LIST_ITEM_SELECTED );
e1e955e1 1292}
c801d85f
KB
1293
1294void wxListMainWindow::DeselectLine( wxListLineData *line )
1295{
139adb6a 1296 SendNotify( line, wxEVT_COMMAND_LIST_ITEM_DESELECTED );
e1e955e1 1297}
c801d85f
KB
1298
1299void wxListMainWindow::DeleteLine( wxListLineData *line )
1300{
139adb6a 1301 SendNotify( line, wxEVT_COMMAND_LIST_DELETE_ITEM );
e1e955e1 1302}
c801d85f 1303
e179bd65 1304/* *** */
ee7ee469 1305
5f1ea0ee 1306void wxListMainWindow::EditLabel( long item )
c801d85f 1307{
6f2a55e3 1308 wxNode *node = m_lines.Nth( (size_t)item );
223d09f6 1309 wxCHECK_RET( node, wxT("wrong index in wxListCtrl::Edit()") );
004fd0c8 1310
e179bd65
RR
1311 m_currentEdit = (wxListLineData*) node->Data();
1312
fd9811b1 1313 wxListEvent le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, GetParent()->GetId() );
139adb6a 1314 le.SetEventObject( GetParent() );
e179bd65
RR
1315 le.m_itemIndex = GetIndexOfLine( m_currentEdit );
1316 m_currentEdit->GetItem( 0, le.m_item );
139adb6a 1317 GetParent()->GetEventHandler()->ProcessEvent( le );
004fd0c8 1318
86f975a8 1319 if (!le.IsAllowed())
5f1ea0ee 1320 return;
004fd0c8 1321
dc6c62a9
RR
1322 // We have to call this here because the label in
1323 // question might just have been added and no screen
1324 // update taken place.
1325 if (m_dirty) wxYield();
1326
92976ab6 1327 wxString s;
e179bd65 1328 m_currentEdit->GetText( 0, s );
92976ab6
RR
1329 int x = 0;
1330 int y = 0;
1331 int w = 0;
1332 int h = 0;
e179bd65 1333 m_currentEdit->GetLabelExtent( x, y, w, h );
004fd0c8 1334
92976ab6
RR
1335 wxClientDC dc(this);
1336 PrepareDC( dc );
1337 x = dc.LogicalToDeviceX( x );
1338 y = dc.LogicalToDeviceY( y );
bd8289c1 1339
92976ab6
RR
1340 wxListTextCtrl *text = new wxListTextCtrl(
1341 this, -1, &m_renameAccept, &m_renameRes, this, s, wxPoint(x-4,y-4), wxSize(w+11,h+8) );
1342 text->SetFocus();
e1e955e1 1343}
c801d85f 1344
e179bd65
RR
1345void wxListMainWindow::OnRenameTimer()
1346{
223d09f6 1347 wxCHECK_RET( m_current, wxT("invalid m_current") );
004fd0c8 1348
e179bd65
RR
1349 Edit( m_lines.IndexOf( m_current ) );
1350}
1351
c801d85f
KB
1352void wxListMainWindow::OnRenameAccept()
1353{
e179bd65
RR
1354 wxListEvent le( wxEVT_COMMAND_LIST_END_LABEL_EDIT, GetParent()->GetId() );
1355 le.SetEventObject( GetParent() );
1356 le.m_itemIndex = GetIndexOfLine( m_currentEdit );
1357 m_currentEdit->GetItem( 0, le.m_item );
1358 le.m_item.m_text = m_renameRes;
1359 GetParent()->GetEventHandler()->ProcessEvent( le );
004fd0c8 1360
e179bd65 1361 if (!le.IsAllowed()) return;
004fd0c8 1362
5f1ea0ee
RR
1363 wxListItem info;
1364 info.m_mask = wxLIST_MASK_TEXT;
1365 info.m_itemId = le.m_itemIndex;
1366 info.m_text = m_renameRes;
aaa37c0d 1367 info.SetTextColour(le.m_item.GetTextColour());
5f1ea0ee 1368 SetItem( info );
e1e955e1 1369}
c801d85f
KB
1370
1371void wxListMainWindow::OnMouse( wxMouseEvent &event )
1372{
92976ab6 1373 if (GetParent()->GetEventHandler()->ProcessEvent( event)) return;
e3e65dac 1374
92976ab6
RR
1375 if (!m_current) return;
1376 if (m_dirty) return;
0b855868 1377 if ( !(event.Dragging() || event.ButtonDown() || event.LeftUp() || event.ButtonDClick()) ) return;
c801d85f 1378
92976ab6
RR
1379 wxClientDC dc(this);
1380 PrepareDC(dc);
6f2a55e3
VZ
1381 wxCoord x = dc.DeviceToLogicalX( (wxCoord)event.GetX() );
1382 wxCoord y = dc.DeviceToLogicalY( (wxCoord)event.GetY() );
004fd0c8 1383
51cc4dad 1384 /* Did we actually hit an item ? */
92976ab6
RR
1385 long hitResult = 0;
1386 wxNode *node = m_lines.First();
1387 wxListLineData *line = (wxListLineData *) NULL;
1388 while (node)
1389 {
1390 line = (wxListLineData*)node->Data();
1391 hitResult = line->IsHit( x, y );
1392 if (hitResult) break;
1393 line = (wxListLineData *) NULL;
1394 node = node->Next();
1395 }
bd8289c1 1396
fd9811b1 1397 if (event.Dragging())
92976ab6 1398 {
fd9811b1 1399 if (m_dragCount == 0)
bffa1c77
VZ
1400 m_dragStart = wxPoint(x,y);
1401
fd9811b1 1402 m_dragCount++;
bffa1c77
VZ
1403
1404 if (m_dragCount != 3) return;
1405
1406 int command = wxEVT_COMMAND_LIST_BEGIN_DRAG;
1407 if (event.RightIsDown()) command = wxEVT_COMMAND_LIST_BEGIN_RDRAG;
1408
fd9811b1 1409 wxListEvent le( command, GetParent()->GetId() );
92976ab6 1410 le.SetEventObject( GetParent() );
bffa1c77
VZ
1411 le.m_pointDrag = m_dragStart;
1412 GetParent()->GetEventHandler()->ProcessEvent( le );
1413
1414 return;
92976ab6 1415 }
fd9811b1
RR
1416 else
1417 {
1418 m_dragCount = 0;
1419 }
bd8289c1 1420
92976ab6 1421 if (!line) return;
bd8289c1 1422
92976ab6
RR
1423 if (event.ButtonDClick())
1424 {
1425 m_usedKeys = FALSE;
1426 m_lastOnSame = FALSE;
1427 m_renameTimer->Stop();
004fd0c8 1428
435fe83e 1429 SendNotify( line, wxEVT_COMMAND_LIST_ITEM_ACTIVATED );
004fd0c8 1430
92976ab6
RR
1431 return;
1432 }
bd8289c1 1433
92976ab6 1434 if (event.LeftUp() && m_lastOnSame)
c801d85f 1435 {
92976ab6
RR
1436 m_usedKeys = FALSE;
1437 if ((line == m_current) &&
1438 (hitResult == wxLIST_HITTEST_ONITEMLABEL) &&
1439 (m_mode & wxLC_EDIT_LABELS) )
1440 {
1441 m_renameTimer->Start( 100, TRUE );
1442 }
1443 m_lastOnSame = FALSE;
1444 return;
e1e955e1 1445 }
bd8289c1 1446
92976ab6 1447 if (event.RightDown())
b204641e 1448 {
92976ab6
RR
1449 SendNotify( line, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK );
1450 return;
b204641e 1451 }
004fd0c8 1452
92976ab6 1453 if (event.MiddleDown())
b204641e 1454 {
92976ab6
RR
1455 SendNotify( line, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK );
1456 return;
1457 }
004fd0c8 1458
92976ab6
RR
1459 if (event.LeftDown())
1460 {
1461 m_usedKeys = FALSE;
1462 wxListLineData *oldCurrent = m_current;
1463 if (m_mode & wxLC_SINGLE_SEL)
b204641e 1464 {
92976ab6
RR
1465 m_current = line;
1466 HilightAll( FALSE );
1467 m_current->ReverseHilight();
1468 RefreshLine( m_current );
e1e955e1 1469 }
92976ab6 1470 else
b204641e 1471 {
473d087e 1472 if (event.ControlDown())
92976ab6
RR
1473 {
1474 m_current = line;
1475 m_current->ReverseHilight();
1476 RefreshLine( m_current );
1477 }
473d087e 1478 else if (event.ShiftDown())
92976ab6
RR
1479 {
1480 m_current = line;
bffa1c77 1481
92976ab6
RR
1482 int numOfCurrent = -1;
1483 node = m_lines.First();
1484 while (node)
1485 {
1486 wxListLineData *test_line = (wxListLineData*)node->Data();
1487 numOfCurrent++;
1488 if (test_line == oldCurrent) break;
1489 node = node->Next();
1490 }
bffa1c77 1491
92976ab6
RR
1492 int numOfLine = -1;
1493 node = m_lines.First();
1494 while (node)
1495 {
1496 wxListLineData *test_line = (wxListLineData*)node->Data();
1497 numOfLine++;
1498 if (test_line == line) break;
1499 node = node->Next();
1500 }
1501
1502 if (numOfLine < numOfCurrent)
004fd0c8 1503 {
bffa1c77
VZ
1504 int i = numOfLine;
1505 numOfLine = numOfCurrent;
1506 numOfCurrent = i;
1507 }
1508
92976ab6
RR
1509 wxNode *node = m_lines.Nth( numOfCurrent );
1510 for (int i = 0; i <= numOfLine-numOfCurrent; i++)
1511 {
1512 wxListLineData *test_line= (wxListLineData*)node->Data();
1513 test_line->Hilight(TRUE);
1514 RefreshLine( test_line );
1515 node = node->Next();
1516 }
1517 }
1518 else
1519 {
1520 m_current = line;
1521 HilightAll( FALSE );
1522 m_current->ReverseHilight();
1523 RefreshLine( m_current );
1524 }
e1e955e1 1525 }
92976ab6
RR
1526 if (m_current != oldCurrent)
1527 {
1528 RefreshLine( oldCurrent );
1529 UnfocusLine( oldCurrent );
1530 FocusLine( m_current );
1531 }
1532 m_lastOnSame = (m_current == oldCurrent);
1533 return;
e1e955e1 1534 }
e1e955e1 1535}
c801d85f 1536
e179bd65 1537void wxListMainWindow::MoveToFocus()
c801d85f 1538{
92976ab6 1539 if (!m_current) return;
004fd0c8 1540
cf3da716
RR
1541 int item_x = 0;
1542 int item_y = 0;
1543 int item_w = 0;
1544 int item_h = 0;
1545 m_current->GetExtent( item_x, item_y, item_w, item_h );
1546
1547 int client_w = 0;
1548 int client_h = 0;
1549 GetClientSize( &client_w, &client_h );
1550
1551 int view_x = m_xScroll*GetScrollPos( wxHORIZONTAL );
1552 int view_y = m_yScroll*GetScrollPos( wxVERTICAL );
004fd0c8 1553
92976ab6
RR
1554 if (m_mode & wxLC_REPORT)
1555 {
cf3da716
RR
1556 if (item_y-5 < view_y )
1557 Scroll( -1, (item_y-5)/m_yScroll );
1558 if (item_y+item_h+5 > view_y+client_h)
1559 Scroll( -1, (item_y+item_h-client_h+15)/m_yScroll );
92976ab6
RR
1560 }
1561 else
1562 {
cf3da716
RR
1563 if (item_x-view_x < 5)
1564 Scroll( (item_x-5)/m_xScroll, -1 );
1565 if (item_x+item_w-5 > view_x+client_w)
1566 Scroll( (item_x+item_w-client_w+15)/m_xScroll, -1 );
92976ab6 1567 }
e1e955e1 1568}
c801d85f
KB
1569
1570void wxListMainWindow::OnArrowChar( wxListLineData *newCurrent, bool shiftDown )
1571{
92976ab6
RR
1572 if ((m_mode & wxLC_SINGLE_SEL) || (m_usedKeys == FALSE)) m_current->Hilight( FALSE );
1573 wxListLineData *oldCurrent = m_current;
1574 m_current = newCurrent;
92976ab6
RR
1575 if (shiftDown || (m_mode & wxLC_SINGLE_SEL)) m_current->Hilight( TRUE );
1576 RefreshLine( m_current );
1577 RefreshLine( oldCurrent );
1578 FocusLine( m_current );
1579 UnfocusLine( oldCurrent );
cf3da716 1580 MoveToFocus();
e1e955e1 1581}
c801d85f 1582
3dfb93fd
RR
1583void wxListMainWindow::OnKeyDown( wxKeyEvent &event )
1584{
1585 wxWindow *parent = GetParent();
004fd0c8 1586
3dfb93fd
RR
1587 /* we propagate the key event up */
1588 wxKeyEvent ke( wxEVT_KEY_DOWN );
1589 ke.m_shiftDown = event.m_shiftDown;
1590 ke.m_controlDown = event.m_controlDown;
1591 ke.m_altDown = event.m_altDown;
1592 ke.m_metaDown = event.m_metaDown;
1593 ke.m_keyCode = event.m_keyCode;
1594 ke.m_x = event.m_x;
1595 ke.m_y = event.m_y;
1596 ke.SetEventObject( parent );
1597 if (parent->GetEventHandler()->ProcessEvent( ke )) return;
004fd0c8 1598
3dfb93fd
RR
1599 event.Skip();
1600}
004fd0c8 1601
c801d85f
KB
1602void wxListMainWindow::OnChar( wxKeyEvent &event )
1603{
51cc4dad 1604 wxWindow *parent = GetParent();
004fd0c8 1605
51cc4dad
RR
1606 /* we send a list_key event up */
1607 wxListEvent le( wxEVT_COMMAND_LIST_KEY_DOWN, GetParent()->GetId() );
6f2a55e3 1608 le.m_code = (int)event.KeyCode();
51cc4dad
RR
1609 le.SetEventObject( parent );
1610 parent->GetEventHandler()->ProcessEvent( le );
1611
3dfb93fd
RR
1612 /* we propagate the char event up */
1613 wxKeyEvent ke( wxEVT_CHAR );
51cc4dad
RR
1614 ke.m_shiftDown = event.m_shiftDown;
1615 ke.m_controlDown = event.m_controlDown;
1616 ke.m_altDown = event.m_altDown;
1617 ke.m_metaDown = event.m_metaDown;
1618 ke.m_keyCode = event.m_keyCode;
1619 ke.m_x = event.m_x;
1620 ke.m_y = event.m_y;
1621 ke.SetEventObject( parent );
1622 if (parent->GetEventHandler()->ProcessEvent( ke )) return;
004fd0c8 1623
012a03e0
RR
1624 if (event.KeyCode() == WXK_TAB)
1625 {
1626 wxNavigationKeyEvent nevent;
1627 nevent.SetDirection( !event.ShiftDown() );
8253c7fd 1628 nevent.SetEventObject( GetParent()->GetParent() );
012a03e0 1629 nevent.SetCurrentFocus( m_parent );
8253c7fd 1630 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent )) return;
012a03e0 1631 }
004fd0c8 1632
51cc4dad
RR
1633 /* no item -> nothing to do */
1634 if (!m_current)
c801d85f 1635 {
51cc4dad
RR
1636 event.Skip();
1637 return;
e1e955e1 1638 }
51cc4dad
RR
1639
1640 switch (event.KeyCode())
c801d85f 1641 {
51cc4dad
RR
1642 case WXK_UP:
1643 {
1644 wxNode *node = m_lines.Member( m_current )->Previous();
1645 if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1646 break;
1647 }
1648 case WXK_DOWN:
1649 {
1650 wxNode *node = m_lines.Member( m_current )->Next();
1651 if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1652 break;
1653 }
1654 case WXK_END:
1655 {
1656 wxNode *node = m_lines.Last();
1657 OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1658 break;
1659 }
1660 case WXK_HOME:
1661 {
1662 wxNode *node = m_lines.First();
1663 OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1664 break;
1665 }
1666 case WXK_PRIOR:
1667 {
1668 int steps = 0;
004fd0c8 1669 if (m_mode & wxLC_REPORT)
bffa1c77
VZ
1670 {
1671 steps = m_visibleLines-1;
1672 }
51cc4dad
RR
1673 else
1674 {
1675 int pos = 0;
1676 wxNode *node = m_lines.First();
1677 for (;;) { if (m_current == (wxListLineData*)node->Data()) break; pos++; node = node->Next(); }
1678 steps = pos % m_visibleLines;
1679 }
1680 wxNode *node = m_lines.Member( m_current );
1681 for (int i = 0; i < steps; i++) if (node->Previous()) node = node->Previous();
1682 if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1683 break;
1684 }
1685 case WXK_NEXT:
1686 {
1687 int steps = 0;
004fd0c8 1688 if (m_mode & wxLC_REPORT)
bffa1c77
VZ
1689 {
1690 steps = m_visibleLines-1;
1691 }
51cc4dad
RR
1692 else
1693 {
1694 int pos = 0; wxNode *node = m_lines.First();
1695 for (;;) { if (m_current == (wxListLineData*)node->Data()) break; pos++; node = node->Next(); }
1696 steps = m_visibleLines-(pos % m_visibleLines)-1;
1697 }
1698 wxNode *node = m_lines.Member( m_current );
1699 for (int i = 0; i < steps; i++) if (node->Next()) node = node->Next();
1700 if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1701 break;
1702 }
1703 case WXK_LEFT:
1704 {
1705 if (!(m_mode & wxLC_REPORT))
1706 {
1707 wxNode *node = m_lines.Member( m_current );
1708 for (int i = 0; i <m_visibleLines; i++) if (node->Previous()) node = node->Previous();
1709 if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1710 }
1711 break;
1712 }
1713 case WXK_RIGHT:
1714 {
1715 if (!(m_mode & wxLC_REPORT))
1716 {
1717 wxNode *node = m_lines.Member( m_current );
1718 for (int i = 0; i <m_visibleLines; i++) if (node->Next()) node = node->Next();
1719 if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() );
1720 }
1721 break;
1722 }
1723 case WXK_SPACE:
1724 {
1725 m_current->ReverseHilight();
1726 RefreshLine( m_current );
1727 break;
1728 }
1729 case WXK_INSERT:
1730 {
1731 if (!(m_mode & wxLC_SINGLE_SEL))
1732 {
1733 wxListLineData *oldCurrent = m_current;
1734 m_current->ReverseHilight();
1735 wxNode *node = m_lines.Member( m_current )->Next();
1736 if (node) m_current = (wxListLineData*)node->Data();
51cc4dad
RR
1737 RefreshLine( oldCurrent );
1738 RefreshLine( m_current );
1739 UnfocusLine( oldCurrent );
1740 FocusLine( m_current );
cf3da716 1741 MoveToFocus();
51cc4dad
RR
1742 }
1743 break;
1744 }
1745 case WXK_RETURN:
1746 case WXK_EXECUTE:
1747 {
1748 wxListEvent le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED, GetParent()->GetId() );
1749 le.SetEventObject( GetParent() );
1750 le.m_itemIndex = GetIndexOfLine( m_current );
1751 m_current->GetItem( 0, le.m_item );
1752 GetParent()->GetEventHandler()->ProcessEvent( le );
1753 break;
1754 }
1755 default:
1756 {
1757 event.Skip();
1758 return;
1759 }
e1e955e1 1760 }
51cc4dad 1761 m_usedKeys = TRUE;
e1e955e1 1762}
c801d85f 1763
cae5359f
RR
1764#ifdef __WXGTK__
1765extern wxWindow *g_focusWindow;
1766#endif
1767
c801d85f
KB
1768void wxListMainWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) )
1769{
63852e78
RR
1770 m_hasFocus = TRUE;
1771 RefreshLine( m_current );
bd8289c1 1772
63852e78 1773 if (!GetParent()) return;
004fd0c8 1774
cae5359f
RR
1775#ifdef __WXGTK__
1776 g_focusWindow = GetParent();
1777#endif
bd8289c1 1778
63852e78
RR
1779 wxFocusEvent event( wxEVT_SET_FOCUS, GetParent()->GetId() );
1780 event.SetEventObject( GetParent() );
1781 GetParent()->GetEventHandler()->ProcessEvent( event );
e1e955e1 1782}
c801d85f
KB
1783
1784void wxListMainWindow::OnKillFocus( wxFocusEvent &WXUNUSED(event) )
1785{
63852e78
RR
1786 m_hasFocus = FALSE;
1787 RefreshLine( m_current );
e1e955e1 1788}
c801d85f
KB
1789
1790void wxListMainWindow::OnSize( wxSizeEvent &WXUNUSED(event) )
1791{
1792/*
1793 We don't even allow the wxScrolledWindow::AdjustScrollbars() call
004fd0c8 1794
c801d85f 1795*/
e1e955e1 1796}
c801d85f 1797
1e6d9499 1798void wxListMainWindow::DrawImage( int index, wxDC *dc, int x, int y )
c801d85f 1799{
63852e78
RR
1800 if ((m_mode & wxLC_ICON) && (m_normal_image_list))
1801 {
1802 m_normal_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
1803 return;
1804 }
1805 if ((m_mode & wxLC_SMALL_ICON) && (m_small_image_list))
1806 {
1807 m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
1808 }
0b855868
RR
1809 if ((m_mode & wxLC_LIST) && (m_small_image_list))
1810 {
1811 m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
1812 }
63852e78
RR
1813 if ((m_mode & wxLC_REPORT) && (m_small_image_list))
1814 {
1815 m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
1816 return;
1817 }
e1e955e1 1818}
c801d85f
KB
1819
1820void wxListMainWindow::GetImageSize( int index, int &width, int &height )
1821{
63852e78
RR
1822 if ((m_mode & wxLC_ICON) && (m_normal_image_list))
1823 {
1824 m_normal_image_list->GetSize( index, width, height );
1825 return;
1826 }
1827 if ((m_mode & wxLC_SMALL_ICON) && (m_small_image_list))
1828 {
1829 m_small_image_list->GetSize( index, width, height );
1830 return;
1831 }
0b855868
RR
1832 if ((m_mode & wxLC_LIST) && (m_small_image_list))
1833 {
1834 m_small_image_list->GetSize( index, width, height );
1835 return;
1836 }
63852e78
RR
1837 if ((m_mode & wxLC_REPORT) && (m_small_image_list))
1838 {
1839 m_small_image_list->GetSize( index, width, height );
1840 return;
1841 }
1842 width = 0;
1843 height = 0;
e1e955e1 1844}
c801d85f
KB
1845
1846int wxListMainWindow::GetTextLength( wxString &s )
1847{
1e6d9499 1848 wxClientDC dc( this );
13111b2a
VZ
1849 wxCoord lw = 0;
1850 wxCoord lh = 0;
139adb6a
RR
1851 dc.GetTextExtent( s, &lw, &lh );
1852 return lw + 6;
e1e955e1 1853}
c801d85f
KB
1854
1855int wxListMainWindow::GetIndexOfLine( const wxListLineData *line )
1856{
139adb6a
RR
1857 int i = 0;
1858 wxNode *node = m_lines.First();
1859 while (node)
1860 {
1861 if (line == (wxListLineData*)node->Data()) return i;
1862 i++;
1863 node = node->Next();
1864 }
1865 return -1;
e1e955e1 1866}
c801d85f 1867
debe6624 1868void wxListMainWindow::SetImageList( wxImageList *imageList, int which )
c801d85f 1869{
139adb6a
RR
1870 m_dirty = TRUE;
1871 if (which == wxIMAGE_LIST_NORMAL) m_normal_image_list = imageList;
1872 if (which == wxIMAGE_LIST_SMALL) m_small_image_list = imageList;
e1e955e1 1873}
c801d85f 1874
debe6624 1875void wxListMainWindow::SetItemSpacing( int spacing, bool isSmall )
c801d85f 1876{
139adb6a
RR
1877 m_dirty = TRUE;
1878 if (isSmall)
1879 {
1880 m_small_spacing = spacing;
1881 }
1882 else
1883 {
1884 m_normal_spacing = spacing;
1885 }
e1e955e1 1886}
c801d85f 1887
debe6624 1888int wxListMainWindow::GetItemSpacing( bool isSmall )
c801d85f 1889{
139adb6a 1890 if (isSmall) return m_small_spacing; else return m_normal_spacing;
e1e955e1 1891}
c801d85f 1892
debe6624 1893void wxListMainWindow::SetColumn( int col, wxListItem &item )
c801d85f 1894{
63852e78
RR
1895 m_dirty = TRUE;
1896 wxNode *node = m_columns.Nth( col );
1897 if (node)
1898 {
1899 if (item.m_width == wxLIST_AUTOSIZE_USEHEADER) item.m_width = GetTextLength( item.m_text )+7;
1900 wxListHeaderData *column = (wxListHeaderData*)node->Data();
1901 column->SetItem( item );
1902 }
1903 wxListCtrl *lc = (wxListCtrl*) GetParent();
1904 if (lc->m_headerWin) lc->m_headerWin->Refresh();
e1e955e1 1905}
c801d85f 1906
debe6624 1907void wxListMainWindow::SetColumnWidth( int col, int width )
c801d85f 1908{
63852e78 1909 if (!(m_mode & wxLC_REPORT)) return;
0208334d 1910
63852e78 1911 m_dirty = TRUE;
bd8289c1 1912
0180dad6
RR
1913 wxNode *node = (wxNode*) NULL;
1914
1915 if (width == wxLIST_AUTOSIZE_USEHEADER) width = 80;
1916 if (width == wxLIST_AUTOSIZE)
1917 {
1918 wxClientDC dc(this);
1919 dc.SetFont( GetFont() );
1920 int max = 10;
1921 node = m_lines.First();
1922 while (node)
1923 {
1924 wxListLineData *line = (wxListLineData*)node->Data();
1925 wxNode *n = line->m_items.Nth( col );
1926 if (n)
1927 {
1928 wxListItemData *item = (wxListItemData*)n->Data();
bffa1c77 1929 int current = 0, ix = 0, iy = 0;
13111b2a 1930 wxCoord lx = 0, ly = 0;
bffa1c77
VZ
1931 if (item->HasImage())
1932 {
0180dad6 1933 GetImageSize( item->GetImage(), ix, iy );
bffa1c77
VZ
1934 current = ix + 5;
1935 }
1936 if (item->HasText())
1937 {
1938 wxString str;
1939 item->GetText( str );
1940 dc.GetTextExtent( str, &lx, &ly );
1941 current += lx;
1942 }
1943 if (current > max) max = current;
0180dad6
RR
1944 }
1945 node = node->Next();
1946 }
bffa1c77 1947 width = max+10;
0180dad6
RR
1948 }
1949
1950 node = m_columns.Nth( col );
63852e78
RR
1951 if (node)
1952 {
1953 wxListHeaderData *column = (wxListHeaderData*)node->Data();
1954 column->SetWidth( width );
1955 }
bd8289c1 1956
63852e78
RR
1957 node = m_lines.First();
1958 while (node)
0208334d 1959 {
63852e78
RR
1960 wxListLineData *line = (wxListLineData*)node->Data();
1961 wxNode *n = line->m_items.Nth( col );
1962 if (n)
1963 {
1964 wxListItemData *item = (wxListItemData*)n->Data();
1965 item->SetSize( width, -1 );
1966 }
1967 node = node->Next();
0208334d 1968 }
bd8289c1 1969
63852e78
RR
1970 wxListCtrl *lc = (wxListCtrl*) GetParent();
1971 if (lc->m_headerWin) lc->m_headerWin->Refresh();
e1e955e1 1972}
c801d85f 1973
debe6624 1974void wxListMainWindow::GetColumn( int col, wxListItem &item )
c801d85f 1975{
63852e78
RR
1976 wxNode *node = m_columns.Nth( col );
1977 if (node)
1978 {
1979 wxListHeaderData *column = (wxListHeaderData*)node->Data();
1980 column->GetItem( item );
1981 }
1982 else
1983 {
1984 item.m_format = 0;
1985 item.m_width = 0;
1986 item.m_text = "";
1987 item.m_image = 0;
1988 item.m_data = 0;
1989 }
e1e955e1 1990}
c801d85f 1991
bd8289c1 1992int wxListMainWindow::GetColumnWidth( int col )
c801d85f 1993{
92976ab6
RR
1994 wxNode *node = m_columns.Nth( col );
1995 if (node)
1996 {
1997 wxListHeaderData *column = (wxListHeaderData*)node->Data();
1998 return column->GetWidth();
1999 }
2000 else
2001 {
004fd0c8 2002 return 0;
92976ab6 2003 }
e1e955e1 2004}
c801d85f 2005
e179bd65 2006int wxListMainWindow::GetColumnCount()
c801d85f 2007{
92976ab6 2008 return m_columns.Number();
e1e955e1 2009}
c801d85f 2010
e179bd65 2011int wxListMainWindow::GetCountPerPage()
c801d85f 2012{
92976ab6 2013 return m_visibleLines;
e1e955e1 2014}
c801d85f
KB
2015
2016void wxListMainWindow::SetItem( wxListItem &item )
2017{
92976ab6 2018 m_dirty = TRUE;
6f2a55e3 2019 wxNode *node = m_lines.Nth( (size_t)item.m_itemId );
92976ab6
RR
2020 if (node)
2021 {
2022 wxListLineData *line = (wxListLineData*)node->Data();
2023 if (m_mode & wxLC_REPORT) item.m_width = GetColumnWidth( item.m_col )-3;
2024 line->SetItem( item.m_col, item );
2025 }
e1e955e1 2026}
c801d85f 2027
debe6624 2028void wxListMainWindow::SetItemState( long item, long state, long stateMask )
c801d85f 2029{
92976ab6 2030 // m_dirty = TRUE; no recalcs needed
bd8289c1 2031
92976ab6 2032 wxListLineData *oldCurrent = m_current;
bd8289c1 2033
92976ab6 2034 if (stateMask & wxLIST_STATE_FOCUSED)
c801d85f 2035 {
6f2a55e3 2036 wxNode *node = m_lines.Nth( (size_t)item );
92976ab6
RR
2037 if (node)
2038 {
2039 wxListLineData *line = (wxListLineData*)node->Data();
2040 UnfocusLine( m_current );
2041 m_current = line;
2042 FocusLine( m_current );
2043 RefreshLine( m_current );
00a39542 2044 if (oldCurrent) RefreshLine( oldCurrent );
92976ab6 2045 }
e1e955e1 2046 }
bd8289c1 2047
92976ab6 2048 if (stateMask & wxLIST_STATE_SELECTED)
c801d85f 2049 {
6f2a55e3 2050 bool on = (state & wxLIST_STATE_SELECTED) != 0;
92976ab6
RR
2051 if (!on && (m_mode & wxLC_SINGLE_SEL)) return;
2052
6f2a55e3 2053 wxNode *node = m_lines.Nth( (size_t)item );
92976ab6
RR
2054 if (node)
2055 {
2056 wxListLineData *line = (wxListLineData*)node->Data();
2057 if (m_mode & wxLC_SINGLE_SEL)
2058 {
2059 UnfocusLine( m_current );
2060 m_current = line;
2061 FocusLine( m_current );
00a39542 2062 if (oldCurrent) oldCurrent->Hilight( FALSE );
92976ab6 2063 RefreshLine( m_current );
00a39542 2064 if (oldCurrent) RefreshLine( oldCurrent );
92976ab6 2065 }
6f2a55e3 2066 bool on = (state & wxLIST_STATE_SELECTED) != 0;
bffa1c77
VZ
2067 if (on != line->IsHilighted())
2068 {
139adb6a
RR
2069 line->Hilight( on );
2070 RefreshLine( line );
bffa1c77 2071 }
92976ab6 2072 }
e1e955e1 2073 }
e1e955e1 2074}
c801d85f 2075
debe6624 2076int wxListMainWindow::GetItemState( long item, long stateMask )
c801d85f 2077{
92976ab6
RR
2078 int ret = wxLIST_STATE_DONTCARE;
2079 if (stateMask & wxLIST_STATE_FOCUSED)
c801d85f 2080 {
6f2a55e3 2081 wxNode *node = m_lines.Nth( (size_t)item );
92976ab6
RR
2082 if (node)
2083 {
2084 wxListLineData *line = (wxListLineData*)node->Data();
2085 if (line == m_current) ret |= wxLIST_STATE_FOCUSED;
2086 }
e1e955e1 2087 }
92976ab6 2088 if (stateMask & wxLIST_STATE_SELECTED)
c801d85f 2089 {
6f2a55e3 2090 wxNode *node = m_lines.Nth( (size_t)item );
92976ab6
RR
2091 if (node)
2092 {
2093 wxListLineData *line = (wxListLineData*)node->Data();
2094 if (line->IsHilighted()) ret |= wxLIST_STATE_FOCUSED;
2095 }
e1e955e1 2096 }
92976ab6 2097 return ret;
e1e955e1 2098}
c801d85f
KB
2099
2100void wxListMainWindow::GetItem( wxListItem &item )
2101{
6f2a55e3 2102 wxNode *node = m_lines.Nth( (size_t)item.m_itemId );
92976ab6
RR
2103 if (node)
2104 {
2105 wxListLineData *line = (wxListLineData*)node->Data();
2106 line->GetItem( item.m_col, item );
2107 }
2108 else
2109 {
2110 item.m_mask = 0;
2111 item.m_text = "";
2112 item.m_image = 0;
2113 item.m_data = 0;
2114 }
e1e955e1 2115}
c801d85f 2116
e179bd65 2117int wxListMainWindow::GetItemCount()
c801d85f 2118{
92976ab6 2119 return m_lines.Number();
e1e955e1 2120}
c801d85f 2121
0a240683 2122void wxListMainWindow::GetItemRect( long index, wxRect &rect )
c801d85f 2123{
6f2a55e3 2124 wxNode *node = m_lines.Nth( (size_t)index );
92976ab6
RR
2125 if (node)
2126 {
2127 wxListLineData *line = (wxListLineData*)node->Data();
2128 line->GetRect( rect );
2129 }
2130 else
2131 {
2132 rect.x = 0;
2133 rect.y = 0;
2134 rect.width = 0;
2135 rect.height = 0;
2136 }
e1e955e1 2137}
c801d85f 2138
e3e65dac
RR
2139bool wxListMainWindow::GetItemPosition(long item, wxPoint& pos)
2140{
6f2a55e3 2141 wxNode *node = m_lines.Nth( (size_t)item );
92976ab6
RR
2142 if (node)
2143 {
0a240683 2144 wxRect rect;
92976ab6
RR
2145 wxListLineData *line = (wxListLineData*)node->Data();
2146 line->GetRect( rect );
2147 pos.x = rect.x;
2148 pos.y = rect.y;
2149 }
2150 else
2151 {
2152 pos.x = 0;
2153 pos.y = 0;
2154 }
2155 return TRUE;
e1e955e1 2156}
e3e65dac 2157
e179bd65 2158int wxListMainWindow::GetSelectedItemCount()
c801d85f 2159{
92976ab6
RR
2160 int ret = 0;
2161 wxNode *node = m_lines.First();
2162 while (node)
2163 {
2164 wxListLineData *line = (wxListLineData*)node->Data();
2165 if (line->IsHilighted()) ret++;
2166 node = node->Next();
2167 }
2168 return ret;
e1e955e1 2169}
c801d85f 2170
debe6624 2171void wxListMainWindow::SetMode( long mode )
c801d85f 2172{
92976ab6
RR
2173 m_dirty = TRUE;
2174 m_mode = mode;
bd8289c1 2175
92976ab6 2176 DeleteEverything();
bd8289c1 2177
92976ab6
RR
2178 if (m_mode & wxLC_REPORT)
2179 {
7c74e7fe
SC
2180#if wxUSE_GENERIC_LIST_EXTENSIONS
2181 m_xScroll = 15;
2182#else
92976ab6 2183 m_xScroll = 0;
7c74e7fe 2184#endif
92976ab6
RR
2185 m_yScroll = 15;
2186 }
2187 else
2188 {
2189 m_xScroll = 15;
2190 m_yScroll = 0;
2191 }
e1e955e1 2192}
c801d85f 2193
e179bd65 2194long wxListMainWindow::GetMode() const
c801d85f 2195{
63852e78 2196 return m_mode;
e1e955e1 2197}
c801d85f 2198
e179bd65 2199void wxListMainWindow::CalculatePositions()
c801d85f 2200{
92976ab6 2201 if (!m_lines.First()) return;
e487524e 2202
1e6d9499 2203 wxClientDC dc( this );
92976ab6 2204 dc.SetFont( GetFont() );
c801d85f 2205
92976ab6
RR
2206 int iconSpacing = 0;
2207 if (m_mode & wxLC_ICON) iconSpacing = m_normal_spacing;
2208 if (m_mode & wxLC_SMALL_ICON) iconSpacing = m_small_spacing;
004fd0c8 2209
92976ab6
RR
2210 // we take the first line (which also can be an icon or
2211 // an a text item in wxLC_ICON and wxLC_LIST modes) to
2212 // measure the size of the line
004fd0c8 2213
92976ab6
RR
2214 int lineWidth = 0;
2215 int lineHeight = 0;
2216 int lineSpacing = 0;
c801d85f 2217
92976ab6
RR
2218 wxListLineData *line = (wxListLineData*)m_lines.First()->Data();
2219 line->CalculateSize( &dc, iconSpacing );
2220 int dummy = 0;
2221 line->GetSize( dummy, lineSpacing );
2222 lineSpacing += 4;
bd8289c1 2223
92976ab6
RR
2224 int clientWidth = 0;
2225 int clientHeight = 0;
bd8289c1 2226
92976ab6 2227 if (m_mode & wxLC_REPORT)
c801d85f 2228 {
92976ab6
RR
2229 int x = 4;
2230 int y = 1;
2231 int entireHeight = m_lines.Number() * lineSpacing + 2;
2232 int scroll_pos = GetScrollPos( wxVERTICAL );
7c74e7fe 2233#if wxUSE_GENERIC_LIST_EXTENSIONS
7c0ea335 2234 int x_scroll_pos = GetScrollPos( wxHORIZONTAL );
7c74e7fe 2235#else
8b53e5a2 2236 SetScrollbars( m_xScroll, m_yScroll, 0, (entireHeight+15) / m_yScroll, 0, scroll_pos, TRUE );
7c74e7fe 2237#endif
92976ab6
RR
2238 GetClientSize( &clientWidth, &clientHeight );
2239
2240 wxNode* node = m_lines.First();
7c74e7fe 2241 int entireWidth = 0 ;
92976ab6
RR
2242 while (node)
2243 {
2244 wxListLineData *line = (wxListLineData*)node->Data();
2245 line->CalculateSize( &dc, iconSpacing );
2246 line->SetPosition( &dc, x, y, clientWidth );
2247 int col_x = 2;
2248 for (int i = 0; i < GetColumnCount(); i++)
2249 {
2250 line->SetColumnPosition( i, col_x );
2251 col_x += GetColumnWidth( i );
2252 }
7c74e7fe
SC
2253 entireWidth = wxMax( entireWidth , col_x ) ;
2254#if wxUSE_GENERIC_LIST_EXTENSIONS
2255 line->SetPosition( &dc, x, y, col_x );
2256#endif
92976ab6
RR
2257 y += lineSpacing; // one pixel blank line between items
2258 node = node->Next();
2259 }
bffa1c77 2260 m_visibleLines = clientHeight / lineSpacing;
7c74e7fe 2261#if wxUSE_GENERIC_LIST_EXTENSIONS
bffa1c77 2262 SetScrollbars( m_xScroll, m_yScroll, entireWidth / m_xScroll , (entireHeight+15) / m_yScroll, x_scroll_pos , scroll_pos, TRUE );
7c74e7fe 2263#endif
e1e955e1 2264 }
92976ab6
RR
2265 else
2266 {
2267 // at first we try without any scrollbar. if the items don't
2268 // fit into the window, we recalculate after subtracting an
2269 // approximated 15 pt for the horizontal scrollbar
004fd0c8 2270
92976ab6 2271 GetSize( &clientWidth, &clientHeight );
bffa1c77 2272 clientHeight -= 4; // sunken frame
bd8289c1 2273
92976ab6 2274 int entireWidth = 0;
bd8289c1 2275
92976ab6 2276 for (int tries = 0; tries < 2; tries++)
e487524e 2277 {
92976ab6
RR
2278 entireWidth = 0;
2279 int x = 5; // painting is done at x-2
2280 int y = 5; // painting is done at y-2
2281 int maxWidth = 0;
0b855868 2282 m_visibleLines = 0;
bffa1c77 2283 int m_currentVisibleLines = 0;
92976ab6
RR
2284 wxNode *node = m_lines.First();
2285 while (node)
2286 {
bffa1c77 2287 m_currentVisibleLines++;
92976ab6
RR
2288 wxListLineData *line = (wxListLineData*)node->Data();
2289 line->CalculateSize( &dc, iconSpacing );
2290 line->SetPosition( &dc, x, y, clientWidth );
2291 line->GetSize( lineWidth, lineHeight );
2292 if (lineWidth > maxWidth) maxWidth = lineWidth;
2293 y += lineSpacing;
bffa1c77
VZ
2294 if (m_currentVisibleLines > m_visibleLines)
2295 m_visibleLines = m_currentVisibleLines;
8b53e5a2 2296 if (y+lineSpacing-6 >= clientHeight) // -6 for earlier "line breaking"
92976ab6 2297 {
bffa1c77 2298 m_currentVisibleLines = 0;
92976ab6 2299 y = 5;
8b53e5a2
RR
2300 x += maxWidth+6;
2301 entireWidth += maxWidth+6;
92976ab6
RR
2302 maxWidth = 0;
2303 }
2304 node = node->Next();
2305 if (!node) entireWidth += maxWidth;
2306 if ((tries == 0) && (entireWidth > clientWidth))
2307 {
2308 clientHeight -= 15; // scrollbar height
0b855868 2309 m_visibleLines = 0;
bffa1c77 2310 m_currentVisibleLines = 0;
92976ab6
RR
2311 break;
2312 }
2313 if (!node) tries = 1; // everything fits, no second try required
2314 }
e487524e 2315 }
bffa1c77 2316
92976ab6
RR
2317 int scroll_pos = GetScrollPos( wxHORIZONTAL );
2318 SetScrollbars( m_xScroll, m_yScroll, (entireWidth+15) / m_xScroll, 0, scroll_pos, 0, TRUE );
e1e955e1 2319 }
e1e955e1 2320}
c801d85f
KB
2321
2322void wxListMainWindow::RealizeChanges( void )
2323{
92976ab6
RR
2324 if (!m_current)
2325 {
2326 wxNode *node = m_lines.First();
2327 if (node) m_current = (wxListLineData*)node->Data();
2328 }
2329 if (m_current)
2330 {
2331 FocusLine( m_current );
2332 if (m_mode & wxLC_SINGLE_SEL) m_current->Hilight( TRUE );
2333 }
e1e955e1 2334}
c801d85f 2335
19695fbd
VZ
2336long wxListMainWindow::GetNextItem( long item,
2337 int WXUNUSED(geometry),
2338 int state )
c801d85f 2339{
d1022fd6
VZ
2340 long ret = item,
2341 max = GetItemCount();
2342 wxCHECK_MSG( (ret == -1) || (ret < max), -1,
13771c08 2343 _T("invalid listctrl index in GetNextItem()") );
19695fbd
VZ
2344
2345 // notice that we start with the next item (or the first one if item == -1)
2346 // and this is intentional to allow writing a simple loop to iterate over
2347 // all selected items
d1022fd6
VZ
2348 ret++;
2349 if ( ret == max )
2350 {
2351 // this is not an error because the index was ok initially, just no
2352 // such item
2353 return -1;
2354 }
2355
2356 wxNode *node = m_lines.Nth( (size_t)ret );
63852e78
RR
2357 while (node)
2358 {
2359 wxListLineData *line = (wxListLineData*)node->Data();
19695fbd
VZ
2360 if ((state & wxLIST_STATE_FOCUSED) && (line == m_current))
2361 return ret;
2362 if ((state & wxLIST_STATE_SELECTED) && (line->IsHilighted()))
2363 return ret;
2364 if (!state)
2365 return ret;
63852e78 2366 ret++;
19695fbd 2367
63852e78
RR
2368 node = node->Next();
2369 }
19695fbd 2370
63852e78 2371 return -1;
e1e955e1 2372}
c801d85f 2373
debe6624 2374void wxListMainWindow::DeleteItem( long index )
c801d85f 2375{
63852e78 2376 m_dirty = TRUE;
6f2a55e3 2377 wxNode *node = m_lines.Nth( (size_t)index );
63852e78
RR
2378 if (node)
2379 {
2380 wxListLineData *line = (wxListLineData*)node->Data();
2381 if (m_current == line) m_current = (wxListLineData *) NULL;
2382 DeleteLine( line );
2383 m_lines.DeleteNode( node );
2384 }
e1e955e1 2385}
c801d85f 2386
debe6624 2387void wxListMainWindow::DeleteColumn( int col )
c801d85f 2388{
5b077d48 2389 wxCHECK_RET( col < (int)m_columns.GetCount(),
223d09f6 2390 wxT("attempting to delete inexistent column in wxListView") );
bd8289c1 2391
5b077d48
RR
2392 m_dirty = TRUE;
2393 wxNode *node = m_columns.Nth( col );
2394 if (node) m_columns.DeleteNode( node );
e1e955e1 2395}
c801d85f 2396
12c1b46a 2397void wxListMainWindow::DeleteAllItems()
c801d85f 2398{
5b077d48
RR
2399 m_dirty = TRUE;
2400 m_current = (wxListLineData *) NULL;
7c0ea335
VZ
2401
2402 // to make the deletion of all items faster, we don't send the
2403 // notifications in this case: this is compatible with wxMSW and
2404 // documented in DeleteAllItems() description
bffa1c77 2405
12c1b46a
RR
2406 wxListEvent event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, GetParent()->GetId() );
2407 event.SetEventObject( GetParent() );
2408 GetParent()->GetEventHandler()->ProcessEvent( event );
7c0ea335 2409
5b077d48 2410 m_lines.Clear();
e1e955e1 2411}
c801d85f 2412
12c1b46a 2413void wxListMainWindow::DeleteEverything()
c801d85f 2414{
12c1b46a
RR
2415 DeleteAllItems();
2416
5b077d48 2417 m_columns.Clear();
e1e955e1 2418}
c801d85f 2419
debe6624 2420void wxListMainWindow::EnsureVisible( long index )
c801d85f 2421{
dc6c62a9
RR
2422 // We have to call this here because the label in
2423 // question might just have been added and no screen
2424 // update taken place.
2425 if (m_dirty) wxYield();
2426
5b077d48
RR
2427 wxListLineData *oldCurrent = m_current;
2428 m_current = (wxListLineData *) NULL;
6f2a55e3 2429 wxNode *node = m_lines.Nth( (size_t)index );
5b077d48
RR
2430 if (node) m_current = (wxListLineData*)node->Data();
2431 if (m_current) MoveToFocus();
2432 m_current = oldCurrent;
e1e955e1 2433}
c801d85f 2434
debe6624 2435long wxListMainWindow::FindItem(long start, const wxString& str, bool WXUNUSED(partial) )
c801d85f 2436{
5b077d48
RR
2437 long pos = start;
2438 wxString tmp = str;
2439 if (pos < 0) pos = 0;
6f2a55e3 2440 wxNode *node = m_lines.Nth( (size_t)pos );
5b077d48
RR
2441 while (node)
2442 {
2443 wxListLineData *line = (wxListLineData*)node->Data();
2444 wxString s = "";
2445 line->GetText( 0, s );
2446 if (s == tmp) return pos;
2447 node = node->Next();
2448 pos++;
2449 }
2450 return -1;
e1e955e1 2451}
c801d85f 2452
debe6624 2453long wxListMainWindow::FindItem(long start, long data)
c801d85f 2454{
5b077d48
RR
2455 long pos = start;
2456 if (pos < 0) pos = 0;
6f2a55e3 2457 wxNode *node = m_lines.Nth( (size_t)pos );
5b077d48
RR
2458 while (node)
2459 {
2460 wxListLineData *line = (wxListLineData*)node->Data();
2461 wxListItem item;
2462 line->GetItem( 0, item );
2463 if (item.m_data == data) return pos;
2464 node = node->Next();
2465 pos++;
2466 }
2467 return -1;
e1e955e1 2468}
c801d85f 2469
debe6624 2470long wxListMainWindow::HitTest( int x, int y, int &flags )
c801d85f 2471{
5b077d48
RR
2472 wxNode *node = m_lines.First();
2473 int count = 0;
2474 while (node)
c801d85f 2475 {
5b077d48
RR
2476 wxListLineData *line = (wxListLineData*)node->Data();
2477 long ret = line->IsHit( x, y );
2478 if (ret & flags)
2479 {
6f2a55e3 2480 flags = (int)ret;
5b077d48
RR
2481 return count;
2482 }
2483 node = node->Next();
2484 count++;
e1e955e1 2485 }
5b077d48 2486 return -1;
e1e955e1 2487}
c801d85f
KB
2488
2489void wxListMainWindow::InsertItem( wxListItem &item )
2490{
5b077d48
RR
2491 m_dirty = TRUE;
2492 int mode = 0;
2493 if (m_mode & wxLC_REPORT) mode = wxLC_REPORT;
2494 else if (m_mode & wxLC_LIST) mode = wxLC_LIST;
2495 else if (m_mode & wxLC_ICON) mode = wxLC_ICON;
2496 else if (m_mode & wxLC_SMALL_ICON) mode = wxLC_ICON; // no typo
004fd0c8 2497
5b077d48 2498 wxListLineData *line = new wxListLineData( this, mode, m_hilightBrush );
004fd0c8 2499
5b077d48
RR
2500 if (m_mode & wxLC_REPORT)
2501 {
2502 line->InitItems( GetColumnCount() );
2503 item.m_width = GetColumnWidth( 0 )-3;
2504 }
2505 else
2506 {
2507 line->InitItems( 1 );
2508 }
004fd0c8 2509
5b077d48
RR
2510 line->SetItem( 0, item );
2511 if ((item.m_itemId >= 0) && (item.m_itemId < (int)m_lines.GetCount()))
2512 {
6f2a55e3 2513 wxNode *node = m_lines.Nth( (size_t)item.m_itemId );
5b077d48
RR
2514 if (node) m_lines.Insert( node, line );
2515 }
2516 else
2517 {
2518 m_lines.Append( line );
2519 }
e1e955e1 2520}
c801d85f 2521
debe6624 2522void wxListMainWindow::InsertColumn( long col, wxListItem &item )
c801d85f 2523{
5b077d48
RR
2524 m_dirty = TRUE;
2525 if (m_mode & wxLC_REPORT)
3db7be80 2526 {
5b077d48
RR
2527 if (item.m_width == wxLIST_AUTOSIZE_USEHEADER) item.m_width = GetTextLength( item.m_text );
2528 wxListHeaderData *column = new wxListHeaderData( item );
2529 if ((col >= 0) && (col < (int)m_columns.GetCount()))
2530 {
6f2a55e3 2531 wxNode *node = m_columns.Nth( (size_t)col );
5b077d48
RR
2532 if (node)
2533 m_columns.Insert( node, column );
2534 }
2535 else
2536 {
2537 m_columns.Append( column );
2538 }
3db7be80 2539 }
e1e955e1 2540}
c801d85f
KB
2541
2542wxListCtrlCompare list_ctrl_compare_func_2;
2543long list_ctrl_compare_data;
2544
004fd0c8 2545int LINKAGEMODE list_ctrl_compare_func_1( const void *arg1, const void *arg2 )
c801d85f 2546{
5b077d48
RR
2547 wxListLineData *line1 = *((wxListLineData**)arg1);
2548 wxListLineData *line2 = *((wxListLineData**)arg2);
2549 wxListItem item;
2550 line1->GetItem( 0, item );
2551 long data1 = item.m_data;
2552 line2->GetItem( 0, item );
2553 long data2 = item.m_data;
2554 return list_ctrl_compare_func_2( data1, data2, list_ctrl_compare_data );
e1e955e1 2555}
c801d85f
KB
2556
2557void wxListMainWindow::SortItems( wxListCtrlCompare fn, long data )
2558{
5b077d48
RR
2559 list_ctrl_compare_func_2 = fn;
2560 list_ctrl_compare_data = data;
2561 m_lines.Sort( list_ctrl_compare_func_1 );
af7c1052 2562 m_dirty = TRUE;
e1e955e1 2563}
c801d85f 2564
7c74e7fe
SC
2565void wxListMainWindow::OnScroll(wxScrollWinEvent& event)
2566{
bffa1c77 2567 wxScrolledWindow::OnScroll( event ) ;
7c74e7fe
SC
2568#if wxUSE_GENERIC_LIST_EXTENSIONS
2569
2570 if (event.GetOrientation() == wxHORIZONTAL && ( m_mode & wxLC_REPORT ))
2571 {
bffa1c77
VZ
2572 wxListCtrl* lc = wxDynamicCast( GetParent() , wxListCtrl ) ;
2573 if ( lc )
2574 {
2575 lc->m_headerWin->Refresh() ;
7c74e7fe 2576#ifdef __WXMAC__
bffa1c77 2577 lc->m_headerWin->MacUpdateImmediately() ;
7c74e7fe 2578#endif
bffa1c77 2579 }
7c74e7fe
SC
2580 }
2581#endif
2582}
2583
c801d85f
KB
2584// -------------------------------------------------------------------------------------
2585// wxListItem
2586// -------------------------------------------------------------------------------------
2587
2588IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject)
2589
fd9811b1 2590wxListItem::wxListItem()
c801d85f 2591{
63852e78
RR
2592 m_mask = 0;
2593 m_itemId = 0;
2594 m_col = 0;
2595 m_state = 0;
2596 m_stateMask = 0;
2597 m_image = 0;
2598 m_data = 0;
2599 m_format = wxLIST_FORMAT_CENTRE;
2600 m_width = 0;
aaa37c0d
VZ
2601
2602 m_attr = NULL;
c801d85f
KB
2603}
2604
9b00bb16
RR
2605void wxListItem::Clear()
2606{
2607 m_mask = 0;
2608 m_itemId = 0;
2609 m_col = 0;
2610 m_state = 0;
2611 m_stateMask = 0;
2612 m_image = 0;
2613 m_data = 0;
2614 m_format = wxLIST_FORMAT_CENTRE;
2615 m_width = 0;
2616 m_text = wxEmptyString;
2617
2618 if (m_attr) delete m_attr;
2619 m_attr = NULL;
2620}
2621
2622void wxListItem::ClearAttributes()
2623{
2624 if (m_attr) delete m_attr;
2625 m_attr = NULL;
2626}
2627
c801d85f
KB
2628// -------------------------------------------------------------------------------------
2629// wxListEvent
2630// -------------------------------------------------------------------------------------
2631
92976ab6 2632IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent)
c801d85f 2633
8f79098a 2634wxListEvent::wxListEvent( wxEventType commandType, int id ):
92976ab6 2635 wxNotifyEvent( commandType, id )
c801d85f 2636{
5b077d48
RR
2637 m_code = 0;
2638 m_itemIndex = 0;
2639 m_oldItemIndex = 0;
2640 m_col = 0;
2641 m_cancelled = FALSE;
2642 m_pointDrag.x = 0;
2643 m_pointDrag.y = 0;
e1e955e1 2644}
c801d85f 2645
72a7edf0
RR
2646void wxListEvent::CopyObject(wxObject& object_dest) const
2647{
2648 wxListEvent *obj = (wxListEvent *)&object_dest;
2649
2650 wxNotifyEvent::CopyObject(object_dest);
2651
2652 obj->m_code = m_code;
2653 obj->m_itemIndex = m_itemIndex;
2654 obj->m_oldItemIndex = m_oldItemIndex;
2655 obj->m_col = m_col;
2656 obj->m_cancelled = m_cancelled;
2657 obj->m_pointDrag = m_pointDrag;
2658 obj->m_item.m_mask = m_item.m_mask;
2659 obj->m_item.m_itemId = m_item.m_itemId;
2660 obj->m_item.m_col = m_item.m_col;
2661 obj->m_item.m_state = m_item.m_state;
2662 obj->m_item.m_stateMask = m_item.m_stateMask;
2663 obj->m_item.m_text = m_item.m_text;
2664 obj->m_item.m_image = m_item.m_image;
2665 obj->m_item.m_data = m_item.m_data;
2666 obj->m_item.m_format = m_item.m_format;
2667 obj->m_item.m_width = m_item.m_width;
aaa37c0d
VZ
2668
2669 if ( m_item.HasAttributes() )
2670 {
2671 obj->m_item.SetTextColour(m_item.GetTextColour());
2672 }
72a7edf0
RR
2673}
2674
c801d85f
KB
2675// -------------------------------------------------------------------------------------
2676// wxListCtrl
2677// -------------------------------------------------------------------------------------
2678
2679IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl)
2680
2681BEGIN_EVENT_TABLE(wxListCtrl,wxControl)
2682 EVT_SIZE (wxListCtrl::OnSize)
53010e52 2683 EVT_IDLE (wxListCtrl::OnIdle)
c801d85f
KB
2684END_EVENT_TABLE()
2685
fd9811b1 2686wxListCtrl::wxListCtrl()
c801d85f 2687{
5b077d48
RR
2688 m_imageListNormal = (wxImageList *) NULL;
2689 m_imageListSmall = (wxImageList *) NULL;
2690 m_imageListState = (wxImageList *) NULL;
2691 m_mainWin = (wxListMainWindow*) NULL;
2692 m_headerWin = (wxListHeaderWindow*) NULL;
c801d85f
KB
2693}
2694
fd9811b1 2695wxListCtrl::~wxListCtrl()
c801d85f
KB
2696{
2697}
2698
25e3a937
VZ
2699bool wxListCtrl::Create(wxWindow *parent,
2700 wxWindowID id,
2701 const wxPoint &pos,
2702 const wxSize &size,
2703 long style,
25e3a937 2704 const wxValidator &validator,
25e3a937 2705 const wxString &name)
c801d85f 2706{
5b077d48
RR
2707 m_imageListNormal = (wxImageList *) NULL;
2708 m_imageListSmall = (wxImageList *) NULL;
2709 m_imageListState = (wxImageList *) NULL;
2710 m_mainWin = (wxListMainWindow*) NULL;
2711 m_headerWin = (wxListHeaderWindow*) NULL;
bd8289c1 2712
25e3a937 2713 if ( !(style & (wxLC_REPORT | wxLC_LIST | wxLC_ICON)) )
5b077d48 2714 {
25e3a937 2715 style = style | wxLC_LIST;
5b077d48 2716 }
098963c3
BJ
2717
2718 bool ret = wxControl::Create( parent, id, pos, size, style, validator, name );
2719
fc3463cc 2720
25e3a937
VZ
2721 if (style & wxSUNKEN_BORDER)
2722 style -= wxSUNKEN_BORDER;
bd8289c1 2723
25e3a937 2724 m_mainWin = new wxListMainWindow( this, -1, wxPoint(0,0), size, style );
bd8289c1 2725
f03fc89f 2726 if (HasFlag(wxLC_REPORT))
ea451729 2727 {
5b077d48 2728 m_headerWin = new wxListHeaderWindow( this, -1, m_mainWin, wxPoint(0,0), wxSize(size.x,23), wxTAB_TRAVERSAL );
ea451729
RR
2729 if (HasFlag(wxLC_NO_HEADER))
2730 m_headerWin->Show( FALSE );
2731 }
5b077d48 2732 else
ea451729 2733 {
5b077d48 2734 m_headerWin = (wxListHeaderWindow *) NULL;
ea451729 2735 }
bd8289c1 2736
58dea4b0
RR
2737 SetBackgroundColour( *wxWHITE );
2738
5b077d48 2739 return ret;
e1e955e1 2740}
c801d85f
KB
2741
2742void wxListCtrl::OnSize( wxSizeEvent &WXUNUSED(event) )
2743{
5b077d48 2744 /* handled in OnIdle */
bd8289c1 2745
5b077d48 2746 if (m_mainWin) m_mainWin->m_dirty = TRUE;
e1e955e1 2747}
c801d85f 2748
debe6624 2749void wxListCtrl::SetSingleStyle( long style, bool add )
c801d85f 2750{
f03fc89f 2751 long flag = GetWindowStyle();
bd8289c1 2752
5b077d48
RR
2753 if (add)
2754 {
2755 if (style & wxLC_MASK_TYPE) flag = flag & ~wxLC_MASK_TYPE;
2756 if (style & wxLC_MASK_ALIGN) flag = flag & ~wxLC_MASK_ALIGN;
2757 if (style & wxLC_MASK_SORT) flag = flag & ~wxLC_MASK_SORT;
2758 }
c801d85f 2759
5b077d48
RR
2760 if (add)
2761 {
2762 flag |= style;
2763 }
2764 else
2765 {
2766 if (flag & style) flag -= style;
2767 }
bd8289c1 2768
5b077d48 2769 SetWindowStyleFlag( flag );
e1e955e1 2770}
c801d85f 2771
debe6624 2772void wxListCtrl::SetWindowStyleFlag( long flag )
c801d85f 2773{
121a3581
RR
2774 if (m_mainWin)
2775 {
2776 m_mainWin->DeleteEverything();
c801d85f 2777
121a3581
RR
2778 int width = 0;
2779 int height = 0;
2780 GetClientSize( &width, &height );
c801d85f 2781
121a3581 2782 m_mainWin->SetMode( flag );
bd8289c1 2783
121a3581 2784 if (flag & wxLC_REPORT)
5b077d48 2785 {
121a3581 2786 if (!HasFlag(wxLC_REPORT))
5b077d48 2787 {
121a3581
RR
2788 if (!m_headerWin)
2789 {
004fd0c8 2790 m_headerWin = new wxListHeaderWindow( this, -1, m_mainWin,
bffa1c77
VZ
2791 wxPoint(0,0), wxSize(width,23), wxTAB_TRAVERSAL );
2792 if (HasFlag(wxLC_NO_HEADER))
2793 m_headerWin->Show( FALSE );
121a3581
RR
2794 }
2795 else
004fd0c8 2796 {
bffa1c77
VZ
2797 if (flag & wxLC_NO_HEADER)
2798 m_headerWin->Show( FALSE );
2799 else
8636aed8 2800 m_headerWin->Show( TRUE );
004fd0c8 2801 }
5b077d48
RR
2802 }
2803 }
121a3581 2804 else
5b077d48 2805 {
8636aed8 2806 if (HasFlag(wxLC_REPORT) && !(HasFlag(wxLC_NO_HEADER)))
121a3581
RR
2807 {
2808 m_headerWin->Show( FALSE );
2809 }
bffa1c77 2810 }
e1e955e1 2811 }
004fd0c8 2812
5b077d48 2813 wxWindow::SetWindowStyleFlag( flag );
e1e955e1 2814}
c801d85f 2815
e487524e 2816bool wxListCtrl::GetColumn(int col, wxListItem &item) const
c801d85f 2817{
5b077d48
RR
2818 m_mainWin->GetColumn( col, item );
2819 return TRUE;
e1e955e1 2820}
c801d85f 2821
debe6624 2822bool wxListCtrl::SetColumn( int col, wxListItem& item )
c801d85f 2823{
5b077d48
RR
2824 m_mainWin->SetColumn( col, item );
2825 return TRUE;
e1e955e1 2826}
c801d85f 2827
e487524e 2828int wxListCtrl::GetColumnWidth( int col ) const
c801d85f 2829{
5b077d48 2830 return m_mainWin->GetColumnWidth( col );
e1e955e1 2831}
c801d85f 2832
debe6624 2833bool wxListCtrl::SetColumnWidth( int col, int width )
c801d85f 2834{
5b077d48
RR
2835 m_mainWin->SetColumnWidth( col, width );
2836 return TRUE;
e1e955e1 2837}
c801d85f 2838
fd9811b1 2839int wxListCtrl::GetCountPerPage() const
c801d85f
KB
2840{
2841 return m_mainWin->GetCountPerPage(); // different from Windows ?
e1e955e1 2842}
c801d85f 2843
e487524e 2844bool wxListCtrl::GetItem( wxListItem &info ) const
c801d85f 2845{
5b077d48
RR
2846 m_mainWin->GetItem( info );
2847 return TRUE;
e1e955e1 2848}
c801d85f
KB
2849
2850bool wxListCtrl::SetItem( wxListItem &info )
2851{
5b077d48
RR
2852 m_mainWin->SetItem( info );
2853 return TRUE;
e1e955e1 2854}
c801d85f 2855
debe6624 2856long wxListCtrl::SetItem( long index, int col, const wxString& label, int imageId )
c801d85f 2857{
5b077d48
RR
2858 wxListItem info;
2859 info.m_text = label;
2860 info.m_mask = wxLIST_MASK_TEXT;
2861 info.m_itemId = index;
2862 info.m_col = col;
2863 if ( imageId > -1 )
2864 {
2865 info.m_image = imageId;
2866 info.m_mask |= wxLIST_MASK_IMAGE;
2867 };
2868 m_mainWin->SetItem(info);
2869 return TRUE;
e1e955e1 2870}
c801d85f 2871
e487524e 2872int wxListCtrl::GetItemState( long item, long stateMask ) const
c801d85f 2873{
5b077d48 2874 return m_mainWin->GetItemState( item, stateMask );
e1e955e1 2875}
c801d85f 2876
debe6624 2877bool wxListCtrl::SetItemState( long item, long state, long stateMask )
c801d85f 2878{
5b077d48
RR
2879 m_mainWin->SetItemState( item, state, stateMask );
2880 return TRUE;
e1e955e1 2881}
c801d85f 2882
debe6624 2883bool wxListCtrl::SetItemImage( long item, int image, int WXUNUSED(selImage) )
c801d85f 2884{
5b077d48
RR
2885 wxListItem info;
2886 info.m_image = image;
2887 info.m_mask = wxLIST_MASK_IMAGE;
2888 info.m_itemId = item;
2889 m_mainWin->SetItem( info );
2890 return TRUE;
e1e955e1 2891}
c801d85f 2892
e487524e 2893wxString wxListCtrl::GetItemText( long item ) const
c801d85f 2894{
5b077d48
RR
2895 wxListItem info;
2896 info.m_itemId = item;
2897 m_mainWin->GetItem( info );
2898 return info.m_text;
e1e955e1 2899}
c801d85f 2900
debe6624 2901void wxListCtrl::SetItemText( long item, const wxString &str )
c801d85f 2902{
5b077d48
RR
2903 wxListItem info;
2904 info.m_mask = wxLIST_MASK_TEXT;
2905 info.m_itemId = item;
2906 info.m_text = str;
2907 m_mainWin->SetItem( info );
e1e955e1 2908}
c801d85f 2909
e487524e 2910long wxListCtrl::GetItemData( long item ) const
c801d85f 2911{
5b077d48
RR
2912 wxListItem info;
2913 info.m_itemId = item;
2914 m_mainWin->GetItem( info );
2915 return info.m_data;
e1e955e1 2916}
c801d85f 2917
debe6624 2918bool wxListCtrl::SetItemData( long item, long data )
c801d85f 2919{
5b077d48
RR
2920 wxListItem info;
2921 info.m_mask = wxLIST_MASK_DATA;
2922 info.m_itemId = item;
2923 info.m_data = data;
2924 m_mainWin->SetItem( info );
2925 return TRUE;
e1e955e1 2926}
c801d85f 2927
0a240683 2928bool wxListCtrl::GetItemRect( long item, wxRect &rect, int WXUNUSED(code) ) const
c801d85f 2929{
5b077d48
RR
2930 m_mainWin->GetItemRect( item, rect );
2931 return TRUE;
e1e955e1 2932}
c801d85f 2933
e487524e 2934bool wxListCtrl::GetItemPosition( long item, wxPoint& pos ) const
c801d85f 2935{
5b077d48
RR
2936 m_mainWin->GetItemPosition( item, pos );
2937 return TRUE;
e1e955e1 2938}
c801d85f 2939
debe6624 2940bool wxListCtrl::SetItemPosition( long WXUNUSED(item), const wxPoint& WXUNUSED(pos) )
c801d85f 2941{
5b077d48 2942 return 0;
e1e955e1 2943}
c801d85f 2944
fd9811b1 2945int wxListCtrl::GetItemCount() const
c801d85f 2946{
5b077d48 2947 return m_mainWin->GetItemCount();
e1e955e1 2948}
c801d85f 2949
fd9811b1 2950int wxListCtrl::GetColumnCount() const
92976ab6 2951{
5b077d48 2952 return m_mainWin->GetColumnCount();
92976ab6
RR
2953}
2954
33d0b396
RR
2955void wxListCtrl::SetItemSpacing( int spacing, bool isSmall )
2956{
5b077d48 2957 m_mainWin->SetItemSpacing( spacing, isSmall );
e1e955e1 2958}
33d0b396 2959
e487524e 2960int wxListCtrl::GetItemSpacing( bool isSmall ) const
c801d85f 2961{
5b077d48 2962 return m_mainWin->GetItemSpacing( isSmall );
e1e955e1 2963}
c801d85f 2964
fd9811b1 2965int wxListCtrl::GetSelectedItemCount() const
c801d85f 2966{
5b077d48 2967 return m_mainWin->GetSelectedItemCount();
e1e955e1 2968}
c801d85f 2969
fd9811b1 2970wxColour wxListCtrl::GetTextColour() const
c801d85f 2971{
0530737d 2972 return GetForegroundColour();
e1e955e1 2973}
c801d85f 2974
0530737d 2975void wxListCtrl::SetTextColour(const wxColour& col)
c801d85f 2976{
0530737d 2977 SetForegroundColour(col);
e1e955e1 2978}
c801d85f 2979
fd9811b1 2980long wxListCtrl::GetTopItem() const
c801d85f 2981{
5b077d48 2982 return 0;
e1e955e1 2983}
c801d85f 2984
6de97a3b 2985long wxListCtrl::GetNextItem( long item, int geom, int state ) const
c801d85f 2986{
5b077d48 2987 return m_mainWin->GetNextItem( item, geom, state );
e1e955e1 2988}
c801d85f 2989
e487524e 2990wxImageList *wxListCtrl::GetImageList(int which) const
c801d85f 2991{
5b077d48
RR
2992 if (which == wxIMAGE_LIST_NORMAL)
2993 {
2994 return m_imageListNormal;
2995 }
2996 else if (which == wxIMAGE_LIST_SMALL)
2997 {
2998 return m_imageListSmall;
2999 }
3000 else if (which == wxIMAGE_LIST_STATE)
3001 {
3002 return m_imageListState;
3003 }
3004 return (wxImageList *) NULL;
e1e955e1 3005}
c801d85f 3006
debe6624 3007void wxListCtrl::SetImageList( wxImageList *imageList, int which )
c801d85f 3008{
5b077d48 3009 m_mainWin->SetImageList( imageList, which );
e1e955e1 3010}
c801d85f 3011
debe6624 3012bool wxListCtrl::Arrange( int WXUNUSED(flag) )
c801d85f 3013{
5b077d48 3014 return 0;
e1e955e1 3015}
c801d85f 3016
debe6624 3017bool wxListCtrl::DeleteItem( long item )
c801d85f 3018{
5b077d48
RR
3019 m_mainWin->DeleteItem( item );
3020 return TRUE;
e1e955e1 3021}
c801d85f 3022
fd9811b1 3023bool wxListCtrl::DeleteAllItems()
c801d85f 3024{
5b077d48
RR
3025 m_mainWin->DeleteAllItems();
3026 return TRUE;
e1e955e1 3027}
c801d85f 3028
4f22cf8d 3029bool wxListCtrl::DeleteAllColumns()
bd8289c1
VZ
3030{
3031 for ( size_t n = 0; n < m_mainWin->m_columns.GetCount(); n++ )
3032 DeleteColumn(n);
bffa1c77 3033
5b077d48 3034 return TRUE;
4f22cf8d
RR
3035}
3036
3037void wxListCtrl::ClearAll()
3038{
5b077d48 3039 m_mainWin->DeleteEverything();
bd8289c1
VZ
3040}
3041
debe6624 3042bool wxListCtrl::DeleteColumn( int col )
c801d85f 3043{
5b077d48
RR
3044 m_mainWin->DeleteColumn( col );
3045 return TRUE;
e1e955e1 3046}
c801d85f 3047
e179bd65 3048void wxListCtrl::Edit( long item )
c801d85f 3049{
e179bd65 3050 m_mainWin->Edit( item );
e1e955e1 3051}
c801d85f 3052
debe6624 3053bool wxListCtrl::EnsureVisible( long item )
c801d85f 3054{
5b077d48
RR
3055 m_mainWin->EnsureVisible( item );
3056 return TRUE;
e1e955e1 3057}
c801d85f 3058
debe6624 3059long wxListCtrl::FindItem( long start, const wxString& str, bool partial )
c801d85f 3060{
5b077d48 3061 return m_mainWin->FindItem( start, str, partial );
e1e955e1 3062}
c801d85f 3063
debe6624 3064long wxListCtrl::FindItem( long start, long data )
c801d85f 3065{
5b077d48 3066 return m_mainWin->FindItem( start, data );
e1e955e1 3067}
c801d85f 3068
bd8289c1 3069long wxListCtrl::FindItem( long WXUNUSED(start), const wxPoint& WXUNUSED(pt),
debe6624 3070 int WXUNUSED(direction))
c801d85f 3071{
5b077d48 3072 return 0;
e1e955e1 3073}
c801d85f
KB
3074
3075long wxListCtrl::HitTest( const wxPoint &point, int &flags )
3076{
5b077d48 3077 return m_mainWin->HitTest( (int)point.x, (int)point.y, flags );
e1e955e1 3078}
c801d85f
KB
3079
3080long wxListCtrl::InsertItem( wxListItem& info )
3081{
5b077d48 3082 m_mainWin->InsertItem( info );
2ebcd5f5 3083 return info.m_itemId;
e1e955e1 3084}
c801d85f 3085
debe6624 3086long wxListCtrl::InsertItem( long index, const wxString &label )
c801d85f 3087{
51cc4dad
RR
3088 wxListItem info;
3089 info.m_text = label;
3090 info.m_mask = wxLIST_MASK_TEXT;
3091 info.m_itemId = index;
3092 return InsertItem( info );
e1e955e1 3093}
c801d85f 3094
debe6624 3095long wxListCtrl::InsertItem( long index, int imageIndex )
c801d85f 3096{
51cc4dad
RR
3097 wxListItem info;
3098 info.m_mask = wxLIST_MASK_IMAGE;
3099 info.m_image = imageIndex;
3100 info.m_itemId = index;
3101 return InsertItem( info );
e1e955e1 3102}
c801d85f 3103
debe6624 3104long wxListCtrl::InsertItem( long index, const wxString &label, int imageIndex )
c801d85f 3105{
51cc4dad
RR
3106 wxListItem info;
3107 info.m_text = label;
3108 info.m_image = imageIndex;
3109 info.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE;
3110 info.m_itemId = index;
3111 return InsertItem( info );
e1e955e1 3112}
c801d85f 3113
debe6624 3114long wxListCtrl::InsertColumn( long col, wxListItem &item )
c801d85f 3115{
d3e90957 3116 wxASSERT( m_headerWin );
51cc4dad 3117 m_mainWin->InsertColumn( col, item );
d3e90957 3118 m_headerWin->Refresh();
25e3a937 3119
51cc4dad 3120 return 0;
e1e955e1 3121}
c801d85f 3122
debe6624
JS
3123long wxListCtrl::InsertColumn( long col, const wxString &heading,
3124 int format, int width )
c801d85f 3125{
51cc4dad
RR
3126 wxListItem item;
3127 item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT;
3128 item.m_text = heading;
3129 if (width >= -2)
3130 {
3131 item.m_mask |= wxLIST_MASK_WIDTH;
3132 item.m_width = width;
3133 }
3134 item.m_format = format;
c801d85f 3135
51cc4dad 3136 return InsertColumn( col, item );
e1e955e1 3137}
c801d85f 3138
debe6624 3139bool wxListCtrl::ScrollList( int WXUNUSED(dx), int WXUNUSED(dy) )
c801d85f 3140{
51cc4dad 3141 return 0;
e1e955e1 3142}
c801d85f
KB
3143
3144// Sort items.
3145// fn is a function which takes 3 long arguments: item1, item2, data.
3146// item1 is the long data associated with a first item (NOT the index).
3147// item2 is the long data associated with a second item (NOT the index).
3148// data is the same value as passed to SortItems.
3149// The return value is a negative number if the first item should precede the second
3150// item, a positive number of the second item should precede the first,
3151// or zero if the two items are equivalent.
3152// data is arbitrary data to be passed to the sort function.
3153
3154bool wxListCtrl::SortItems( wxListCtrlCompare fn, long data )
3155{
51cc4dad
RR
3156 m_mainWin->SortItems( fn, data );
3157 return TRUE;
e1e955e1 3158}
c801d85f 3159
e3e65dac 3160void wxListCtrl::OnIdle( wxIdleEvent &WXUNUSED(event) )
53010e52 3161{
51cc4dad 3162 if (!m_mainWin->m_dirty) return;
53010e52 3163
51cc4dad
RR
3164 int cw = 0;
3165 int ch = 0;
3166 GetClientSize( &cw, &ch );
bd8289c1 3167
51cc4dad
RR
3168 int x = 0;
3169 int y = 0;
3170 int w = 0;
3171 int h = 0;
bd8289c1 3172
8636aed8 3173 if (HasFlag(wxLC_REPORT) && !HasFlag(wxLC_NO_HEADER))
51cc4dad
RR
3174 {
3175 m_headerWin->GetPosition( &x, &y );
3176 m_headerWin->GetSize( &w, &h );
3177 if ((x != 0) || (y != 0) || (w != cw) || (h != 23))
3178 m_headerWin->SetSize( 0, 0, cw, 23 );
3179
3180 m_mainWin->GetPosition( &x, &y );
3181 m_mainWin->GetSize( &w, &h );
3182 if ((x != 0) || (y != 24) || (w != cw) || (h != ch-24))
3183 m_mainWin->SetSize( 0, 24, cw, ch-24 );
3184 }
3185 else
3186 {
3187 m_mainWin->GetPosition( &x, &y );
3188 m_mainWin->GetSize( &w, &h );
3189 if ((x != 0) || (y != 24) || (w != cw) || (h != ch))
3190 m_mainWin->SetSize( 0, 0, cw, ch );
3191 }
bd8289c1 3192
51cc4dad
RR
3193 m_mainWin->CalculatePositions();
3194 m_mainWin->RealizeChanges();
3195 m_mainWin->m_dirty = FALSE;
3196 m_mainWin->Refresh();
e1e955e1 3197}
53010e52 3198
f03fc89f 3199bool wxListCtrl::SetBackgroundColour( const wxColour &colour )
bd8289c1 3200{
f03fc89f
VZ
3201 if ( !wxWindow::SetBackgroundColour( colour ) )
3202 return FALSE;
58dea4b0 3203
51cc4dad
RR
3204 if (m_mainWin)
3205 {
3206 m_mainWin->SetBackgroundColour( colour );
3207 m_mainWin->m_dirty = TRUE;
3208 }
004fd0c8 3209
51cc4dad
RR
3210 if (m_headerWin)
3211 {
cfb50f14 3212// m_headerWin->SetBackgroundColour( colour );
51cc4dad 3213 }
f03fc89f
VZ
3214
3215 return TRUE;
e4d06860
RR
3216}
3217
f03fc89f 3218bool wxListCtrl::SetForegroundColour( const wxColour &colour )
bd8289c1 3219{
f03fc89f
VZ
3220 if ( !wxWindow::SetForegroundColour( colour ) )
3221 return FALSE;
004fd0c8 3222
51cc4dad
RR
3223 if (m_mainWin)
3224 {
3225 m_mainWin->SetForegroundColour( colour );
3226 m_mainWin->m_dirty = TRUE;
3227 }
004fd0c8 3228
51cc4dad
RR
3229 if (m_headerWin)
3230 {
3231 m_headerWin->SetForegroundColour( colour );
3232 }
f03fc89f
VZ
3233
3234 return TRUE;
e4d06860 3235}
bd8289c1 3236
f03fc89f 3237bool wxListCtrl::SetFont( const wxFont &font )
bd8289c1 3238{
f03fc89f
VZ
3239 if ( !wxWindow::SetFont( font ) )
3240 return FALSE;
004fd0c8 3241
51cc4dad
RR
3242 if (m_mainWin)
3243 {
3244 m_mainWin->SetFont( font );
3245 m_mainWin->m_dirty = TRUE;
3246 }
004fd0c8 3247
51cc4dad
RR
3248 if (m_headerWin)
3249 {
3250 m_headerWin->SetFont( font );
3251 }
f03fc89f
VZ
3252
3253 return TRUE;
e4d06860 3254}
c801d85f 3255