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