1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "listctrl.h"
12 #pragma implementation "listctrlbase.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/dcscreen.h"
24 #include "wx/listctrl.h"
25 #include "wx/generic/imaglist.h"
27 #ifndef wxUSE_GENERIC_LIST_EXTENSIONS
28 #define wxUSE_GENERIC_LIST_EXTENSIONS 0
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 IMPLEMENT_DYNAMIC_CLASS(wxListItemData
,wxObject
);
37 wxListItemData::wxListItemData()
48 wxListItemData::wxListItemData( const wxListItem
&info
)
57 void wxListItemData::SetItem( const wxListItem
&info
)
59 if (info
.m_mask
& wxLIST_MASK_TEXT
) m_text
= info
.m_text
;
60 if (info
.m_mask
& wxLIST_MASK_IMAGE
) m_image
= info
.m_image
;
61 if (info
.m_mask
& wxLIST_MASK_DATA
) m_data
= info
.m_data
;
63 if ( info
.HasAttributes() )
66 *m_attr
= *info
.GetAttributes();
68 m_attr
= new wxListItemAttr(*info
.GetAttributes());
73 m_width
= info
.m_width
;
77 void wxListItemData::SetText( const wxString
&s
)
82 void wxListItemData::SetImage( int image
)
87 void wxListItemData::SetData( long data
)
92 void wxListItemData::SetPosition( int x
, int y
)
98 void wxListItemData::SetSize( int width
, int height
)
100 if (width
!= -1) m_width
= width
;
101 if (height
!= -1) m_height
= height
;
104 bool wxListItemData::HasImage() const
106 return (m_image
>= 0);
109 bool wxListItemData::HasText() const
111 return (!m_text
.IsNull());
114 bool wxListItemData::IsHit( int x
, int y
) const
116 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
119 void wxListItemData::GetText( wxString
&s
)
124 int wxListItemData::GetX() const
129 int wxListItemData::GetY() const
134 int wxListItemData::GetWidth() const
139 int wxListItemData::GetHeight() const
144 int wxListItemData::GetImage() const
149 void wxListItemData::GetItem( wxListItem
&info
) const
151 info
.m_text
= m_text
;
152 info
.m_image
= m_image
;
153 info
.m_data
= m_data
;
157 if ( m_attr
->HasTextColour() )
158 info
.SetTextColour(m_attr
->GetTextColour());
159 if ( m_attr
->HasBackgroundColour() )
160 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
161 if ( m_attr
->HasFont() )
162 info
.SetFont(m_attr
->GetFont());
166 //-----------------------------------------------------------------------------
168 //-----------------------------------------------------------------------------
170 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData
,wxObject
);
172 wxListHeaderData::wxListHeaderData()
183 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
191 void wxListHeaderData::SetItem( const wxListItem
&item
)
193 m_mask
= item
.m_mask
;
194 m_text
= item
.m_text
;
195 m_image
= item
.m_image
;
196 m_format
= item
.m_format
;
197 m_width
= item
.m_width
;
198 if (m_width
< 0) m_width
= 80;
199 if (m_width
< 6) m_width
= 6;
202 void wxListHeaderData::SetPosition( int x
, int y
)
208 void wxListHeaderData::SetHeight( int h
)
213 void wxListHeaderData::SetWidth( int w
)
216 if (m_width
< 0) m_width
= 80;
217 if (m_width
< 6) m_width
= 6;
220 void wxListHeaderData::SetFormat( int format
)
225 bool wxListHeaderData::HasImage() const
227 return (m_image
!= 0);
230 bool wxListHeaderData::HasText() const
232 return (m_text
.Length() > 0);
235 bool wxListHeaderData::IsHit( int x
, int y
) const
237 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
240 void wxListHeaderData::GetItem( wxListItem
&item
)
242 item
.m_mask
= m_mask
;
243 item
.m_text
= m_text
;
244 item
.m_image
= m_image
;
245 item
.m_format
= m_format
;
246 item
.m_width
= m_width
;
249 void wxListHeaderData::GetText( wxString
&s
)
254 int wxListHeaderData::GetImage() const
259 int wxListHeaderData::GetWidth() const
264 int wxListHeaderData::GetFormat() const
269 //-----------------------------------------------------------------------------
271 //-----------------------------------------------------------------------------
273 IMPLEMENT_DYNAMIC_CLASS(wxListLineData
,wxObject
);
275 wxListLineData::wxListLineData( wxListMainWindow
*owner
, int mode
, wxBrush
*hilightBrush
)
280 m_hilightBrush
= hilightBrush
;
281 m_items
.DeleteContents( TRUE
);
285 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
292 m_bound_all
.width
= m_spacing
;
293 m_bound_all
.height
= m_spacing
+13;
294 wxNode
*node
= m_items
.First();
297 wxListItemData
*item
= (wxListItemData
*)node
->Data();
298 wxString s
= item
->GetText();
300 dc
->GetTextExtent( s
, &lw
, &lh
);
301 if (lw
> m_spacing
) m_bound_all
.width
= lw
;
307 wxNode
*node
= m_items
.First();
310 wxListItemData
*item
= (wxListItemData
*)node
->Data();
311 wxString s
= item
->GetText();
313 dc
->GetTextExtent( s
, &lw
, &lh
);
314 m_bound_all
.width
= lw
;
315 m_bound_all
.height
= lh
;
316 if (item
->HasImage())
325 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
326 m_bound_all
.width
+= 4 + w
;
327 if (h
> m_bound_all
.height
) m_bound_all
.height
= h
;
334 m_bound_all
.width
= 0;
335 m_bound_all
.height
= 0;
336 wxNode
*node
= m_items
.First();
339 wxListItemData
*item
= (wxListItemData
*)node
->Data();
342 if (s
.IsNull()) s
= "H";
344 dc
->GetTextExtent( s
, &lw
, &lh
);
345 item
->SetSize( item
->GetWidth(), lh
);
346 m_bound_all
.width
+= lw
;
347 m_bound_all
.height
= lh
;
355 void wxListLineData::SetPosition( wxDC
*dc
, int x
, int y
, int window_width
)
363 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
364 AssignRect( m_bound_label
, 0, 0, 0, 0 );
365 AssignRect( m_bound_hilight
, m_bound_all
);
366 wxNode
*node
= m_items
.First();
369 wxListItemData
*item
= (wxListItemData
*)node
->Data();
370 if (item
->HasImage())
372 wxListItemData
*item
= (wxListItemData
*)node
->Data();
375 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
376 m_bound_icon
.x
= m_bound_all
.x
+ (m_spacing
/2) - (w
/2);
377 m_bound_icon
.y
= m_bound_all
.y
+ m_spacing
- h
- 5;
378 m_bound_icon
.width
= w
;
379 m_bound_icon
.height
= h
;
380 if (!item
->HasText())
382 AssignRect( m_bound_hilight
, m_bound_icon
);
383 m_bound_hilight
.x
-= 5;
384 m_bound_hilight
.y
-= 5;
385 m_bound_hilight
.width
+= 9;
386 m_bound_hilight
.height
+= 9;
394 dc
->GetTextExtent( s
, &lw
, &lh
);
395 if (m_bound_all
.width
> m_spacing
)
396 m_bound_label
.x
= m_bound_all
.x
;
398 m_bound_label
.x
= m_bound_all
.x
+ (m_spacing
/2) - lw
/2;
399 m_bound_label
.y
= m_bound_all
.y
+ m_bound_all
.height
- lh
;
400 m_bound_label
.width
= lw
;
401 m_bound_label
.height
= lh
;
402 AssignRect( m_bound_hilight
, m_bound_label
);
403 m_bound_hilight
.x
-= 2;
404 m_bound_hilight
.y
-= 2;
405 m_bound_hilight
.width
+= 4;
406 m_bound_hilight
.height
+= 4;
413 AssignRect( m_bound_label
, m_bound_all
);
416 m_bound_all
.width
+= 4;
417 m_bound_all
.height
+= 3;
418 AssignRect( m_bound_hilight
, m_bound_all
);
419 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
420 wxNode
*node
= m_items
.First();
423 wxListItemData
*item
= (wxListItemData
*)node
->Data();
424 if (item
->HasImage())
426 m_bound_icon
.x
= m_bound_all
.x
+ 2;
427 m_bound_icon
.y
= m_bound_all
.y
+ 2;
430 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
431 m_bound_icon
.width
= w
;
432 m_bound_icon
.height
= h
;
433 m_bound_label
.x
+= 4 + w
;
434 m_bound_label
.width
-= 4 + w
;
442 dc
->GetTextExtent( "H", &lw
, &lh
);
445 m_bound_all
.height
= lh
+3;
446 m_bound_all
.width
= window_width
;
447 AssignRect( m_bound_hilight
, m_bound_all
);
448 AssignRect( m_bound_label
, m_bound_all
);
449 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
450 wxNode
*node
= m_items
.First();
453 wxListItemData
*item
= (wxListItemData
*)node
->Data();
456 if (s
.IsEmpty()) s
= wxT("H");
458 dc
->GetTextExtent( s
, &lw
, &lh
);
459 m_bound_label
.width
= lw
;
460 m_bound_label
.height
= lh
;
461 if (item
->HasImage())
463 m_bound_icon
.x
= m_bound_all
.x
+ 2;
464 m_bound_icon
.y
= m_bound_all
.y
+ 2;
467 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
468 m_bound_icon
.width
= w
;
469 m_bound_icon
.height
= h
;
470 m_bound_label
.x
+= 4 + w
;
478 void wxListLineData::SetColumnPosition( int index
, int x
)
480 wxNode
*node
= m_items
.Nth( (size_t)index
);
483 wxListItemData
*item
= (wxListItemData
*)node
->Data();
484 item
->SetPosition( x
, m_bound_all
.y
+1 );
488 void wxListLineData::GetSize( int &width
, int &height
)
490 width
= m_bound_all
.width
;
491 height
= m_bound_all
.height
;
494 void wxListLineData::GetExtent( int &x
, int &y
, int &width
, int &height
)
498 width
= m_bound_all
.width
;
499 height
= m_bound_all
.height
;
502 void wxListLineData::GetLabelExtent( int &x
, int &y
, int &width
, int &height
)
506 width
= m_bound_label
.width
;
507 height
= m_bound_label
.height
;
510 void wxListLineData::GetRect( wxRect
&rect
)
512 AssignRect( rect
, m_bound_all
);
515 long wxListLineData::IsHit( int x
, int y
)
517 wxNode
*node
= m_items
.First();
520 wxListItemData
*item
= (wxListItemData
*)node
->Data();
521 if (item
->HasImage() && IsInRect( x
, y
, m_bound_icon
)) return wxLIST_HITTEST_ONITEMICON
;
522 if (item
->HasText() && IsInRect( x
, y
, m_bound_label
)) return wxLIST_HITTEST_ONITEMLABEL
;
523 // if (!(item->HasImage() || item->HasText())) return 0;
525 // if there is no icon or text = empty
526 if (IsInRect( x
, y
, m_bound_all
)) return wxLIST_HITTEST_ONITEMICON
;
530 void wxListLineData::InitItems( int num
)
532 for (int i
= 0; i
< num
; i
++) m_items
.Append( new wxListItemData() );
535 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
537 wxNode
*node
= m_items
.Nth( index
);
540 wxListItemData
*item
= (wxListItemData
*)node
->Data();
541 item
->SetItem( info
);
545 void wxListLineData::GetItem( int index
, wxListItem
&info
)
548 wxNode
*node
= m_items
.Nth( i
);
551 wxListItemData
*item
= (wxListItemData
*)node
->Data();
552 item
->GetItem( info
);
556 void wxListLineData::GetText( int index
, wxString
&s
)
559 wxNode
*node
= m_items
.Nth( i
);
563 wxListItemData
*item
= (wxListItemData
*)node
->Data();
568 void wxListLineData::SetText( int index
, const wxString s
)
571 wxNode
*node
= m_items
.Nth( i
);
574 wxListItemData
*item
= (wxListItemData
*)node
->Data();
579 int wxListLineData::GetImage( int index
)
582 wxNode
*node
= m_items
.Nth( i
);
585 wxListItemData
*item
= (wxListItemData
*)node
->Data();
586 return item
->GetImage();
591 void wxListLineData::SetAttributes(wxDC
*dc
,
592 const wxListItemAttr
*attr
,
593 const wxColour
& colText
,
597 // don't use foregroud colour for drawing highlighted items - this might
598 // make them completely invisible (and there is no way to do bit
599 // arithmetics on wxColour, unfortunately)
600 if ( !hilight
&& attr
&& attr
->HasTextColour() )
602 dc
->SetTextForeground(attr
->GetTextColour());
606 dc
->SetTextForeground(colText
);
609 if ( attr
&& attr
->HasFont() )
611 dc
->SetFont(attr
->GetFont());
619 void wxListLineData::DoDraw( wxDC
*dc
, bool hilight
, bool paintBG
)
621 wxCoord dev_x
= dc
->LogicalToDeviceX( m_bound_all
.x
-2 );
622 wxCoord dev_y
= dc
->LogicalToDeviceY( m_bound_all
.y
-2 );
623 wxCoord dev_w
= dc
->LogicalToDeviceXRel( m_bound_all
.width
+4 );
624 wxCoord dev_h
= dc
->LogicalToDeviceYRel( m_bound_all
.height
+4 );
626 if (!m_owner
->IsExposed( dev_x
, dev_y
, dev_w
, dev_h
))
631 wxWindow
*listctrl
= m_owner
->GetParent();
633 // default foreground colour
637 colText
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
641 colText
= listctrl
->GetForegroundColour();
645 wxFont font
= listctrl
->GetFont();
647 // VZ: currently we set the colours/fonts only once, but like this (i.e.
648 // using SetAttributes() inside the loop), it will be trivial to
649 // customize the subitems (in report mode) too.
650 wxListItemData
*item
= (wxListItemData
*)m_items
.First()->Data();
651 wxListItemAttr
*attr
= item
->GetAttributes();
652 SetAttributes(dc
, attr
, colText
, font
, hilight
);
654 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
655 if ( paintBG
|| hasBgCol
)
659 dc
->SetBrush( * m_hilightBrush
);
664 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
666 dc
->SetBrush( * wxWHITE_BRUSH
);
669 dc
->SetPen( * wxTRANSPARENT_PEN
);
670 dc
->DrawRectangle( m_bound_hilight
.x
, m_bound_hilight
.y
,
671 m_bound_hilight
.width
, m_bound_hilight
.height
);
674 if (m_mode
== wxLC_REPORT
)
676 wxNode
*node
= m_items
.First();
679 wxListItemData
*item
= (wxListItemData
*)node
->Data();
680 dc
->SetClippingRegion( item
->GetX(), item
->GetY(), item
->GetWidth()-3, item
->GetHeight() );
681 int x
= item
->GetX();
682 if (item
->HasImage())
685 m_owner
->DrawImage( item
->GetImage(), dc
, x
, item
->GetY() );
686 m_owner
->GetImageSize( item
->GetImage(), x
, y
);
687 x
+= item
->GetX() + 5;
691 dc
->DrawText( item
->GetText(), x
, item
->GetY() );
693 dc
->DestroyClippingRegion();
699 wxNode
*node
= m_items
.First();
702 wxListItemData
*item
= (wxListItemData
*)node
->Data();
703 if (item
->HasImage())
705 m_owner
->DrawImage( item
->GetImage(), dc
, m_bound_icon
.x
, m_bound_icon
.y
);
709 dc
->DrawText( item
->GetText(), m_bound_label
.x
, m_bound_label
.y
);
715 void wxListLineData::Hilight( bool on
)
717 if (on
== m_hilighted
) return;
720 m_owner
->SelectLine( this );
722 m_owner
->DeselectLine( this );
725 void wxListLineData::ReverseHilight( void )
727 m_hilighted
= !m_hilighted
;
729 m_owner
->SelectLine( this );
731 m_owner
->DeselectLine( this );
734 void wxListLineData::DrawRubberBand( wxDC
*dc
, bool on
)
738 dc
->SetPen( * wxBLACK_PEN
);
739 dc
->SetBrush( * wxTRANSPARENT_BRUSH
);
740 dc
->DrawRectangle( m_bound_hilight
.x
, m_bound_hilight
.y
,
741 m_bound_hilight
.width
, m_bound_hilight
.height
);
745 void wxListLineData::Draw( wxDC
*dc
)
747 DoDraw( dc
, m_hilighted
, m_hilighted
);
750 bool wxListLineData::IsInRect( int x
, int y
, const wxRect
&rect
)
752 return ((x
>= rect
.x
) && (x
<= rect
.x
+rect
.width
) &&
753 (y
>= rect
.y
) && (y
<= rect
.y
+rect
.height
));
756 bool wxListLineData::IsHilighted( void )
761 void wxListLineData::AssignRect( wxRect
&dest
, int x
, int y
, int width
, int height
)
766 dest
.height
= height
;
769 void wxListLineData::AssignRect( wxRect
&dest
, const wxRect
&source
)
773 dest
.width
= source
.width
;
774 dest
.height
= source
.height
;
777 //-----------------------------------------------------------------------------
778 // wxListHeaderWindow
779 //-----------------------------------------------------------------------------
781 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
);
783 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
784 EVT_PAINT (wxListHeaderWindow::OnPaint
)
785 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
786 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
789 wxListHeaderWindow::wxListHeaderWindow( void )
791 m_owner
= (wxListMainWindow
*) NULL
;
792 m_currentCursor
= (wxCursor
*) NULL
;
793 m_resizeCursor
= (wxCursor
*) NULL
;
794 m_isDragging
= FALSE
;
797 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
, wxWindowID id
, wxListMainWindow
*owner
,
798 const wxPoint
&pos
, const wxSize
&size
,
799 long style
, const wxString
&name
) :
800 wxWindow( win
, id
, pos
, size
, style
, name
)
803 // m_currentCursor = wxSTANDARD_CURSOR;
804 m_currentCursor
= (wxCursor
*) NULL
;
805 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
806 m_isDragging
= FALSE
;
807 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
) );
810 wxListHeaderWindow::~wxListHeaderWindow( void )
812 delete m_resizeCursor
;
815 void wxListHeaderWindow::DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
)
817 const int m_corner
= 1;
819 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
821 dc
->SetPen( *wxBLACK_PEN
);
822 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
823 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
825 wxPen
pen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
);
828 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
829 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
831 dc
->SetPen( *wxWHITE_PEN
);
832 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
833 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
834 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
835 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
838 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
840 wxPaintDC
dc( this );
842 #if wxUSE_GENERIC_LIST_EXTENSIONS
843 if ( m_owner
->GetMode() & wxLC_REPORT
)
848 m_owner
->GetScrollPixelsPerUnit( &xpix
, &ypix
) ;
849 m_owner
->ViewStart( &x
, &y
) ;
850 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
855 dc
.SetFont( GetFont() );
861 GetClientSize( &w
, &h
);
863 dc
.SetBackgroundMode(wxTRANSPARENT
);
864 dc
.SetTextForeground( *wxBLACK
);
866 // do *not* use the listctrl colour for headers - one day we will have a
867 // function to set it separately
871 int numColumns
= m_owner
->GetColumnCount();
873 for (int i
= 0; i
< numColumns
; i
++)
875 m_owner
->GetColumn( i
, item
);
876 int cw
= item
.m_width
-2;
877 #if wxUSE_GENERIC_LIST_EXTENSIONS
878 if ((i
+1 == numColumns
) || ( dc
.LogicalToDeviceX(x
+item
.m_width
) > w
-5))
879 cw
= dc
.DeviceToLogicalX(w
)-x
-1;
881 if ((i
+1 == numColumns
) || (x
+item
.m_width
> w
-5))
884 dc
.SetPen( *wxWHITE_PEN
);
886 DoDrawRect( &dc
, x
, y
, cw
, h
-2 );
887 dc
.SetClippingRegion( x
, y
, cw
-5, h
-4 );
888 dc
.DrawText( item
.m_text
, x
+4, y
+3 );
889 dc
.DestroyClippingRegion();
891 #if wxUSE_GENERIC_LIST_EXTENSIONS
892 if (dc
.LogicalToDeviceX(x
) > w
+5) break;
900 void wxListHeaderWindow::DrawCurrent()
904 int x2
= m_currentX
-1;
907 m_owner
->GetClientSize( &dummy
, &y2
);
908 ClientToScreen( &x1
, &y1
);
909 m_owner
->ClientToScreen( &x2
, &y2
);
912 dc
.SetLogicalFunction( wxINVERT
);
913 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
914 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
916 dc
.DrawLine( x1
, y1
, x2
, y2
);
918 dc
.SetLogicalFunction( wxCOPY
);
920 dc
.SetPen( wxNullPen
);
921 dc
.SetBrush( wxNullBrush
);
924 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
926 wxCoord x
= (wxCoord
)event
.GetX();
927 wxCoord y
= (wxCoord
)event
.GetY();
931 if (event
.ButtonUp())
934 m_isDragging
= FALSE
;
935 m_owner
->SetColumnWidth( m_column
, m_currentX
-m_minX
);
941 GetClientSize( &size_x
, & dummy
);
945 m_currentX
= m_minX
+7;
946 if (m_currentX
> size_x
-7) m_currentX
= size_x
-7;
953 bool hit_border
= FALSE
;
955 for (int j
= 0; j
< m_owner
->GetColumnCount()-1; j
++)
957 xpos
+= m_owner
->GetColumnWidth( j
);
959 if ((abs(x
-xpos
) < 3) && (y
< 22))
971 if (event
.LeftDown())
983 wxListEvent
le( wxEVT_COMMAND_LIST_COL_CLICK
, GetParent()->GetId() );
984 le
.SetEventObject( GetParent() );
986 GetParent()->GetEventHandler()->ProcessEvent( le
);
995 if (m_currentCursor
== wxSTANDARD_CURSOR
) SetCursor( * m_resizeCursor
);
996 m_currentCursor
= m_resizeCursor
;
1000 if (m_currentCursor
!= wxSTANDARD_CURSOR
) SetCursor( * wxSTANDARD_CURSOR
);
1001 m_currentCursor
= wxSTANDARD_CURSOR
;
1006 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1008 m_owner
->SetFocus();
1011 //-----------------------------------------------------------------------------
1012 // wxListRenameTimer (internal)
1013 //-----------------------------------------------------------------------------
1015 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
1020 void wxListRenameTimer::Notify()
1022 m_owner
->OnRenameTimer();
1025 //-----------------------------------------------------------------------------
1026 // wxListTextCtrl (internal)
1027 //-----------------------------------------------------------------------------
1029 IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl
,wxTextCtrl
);
1031 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
1032 EVT_CHAR (wxListTextCtrl::OnChar
)
1033 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
1036 wxListTextCtrl::wxListTextCtrl( wxWindow
*parent
,
1037 const wxWindowID id
,
1040 wxListMainWindow
*owner
,
1041 const wxString
&value
,
1045 const wxValidator
& validator
,
1046 const wxString
&name
)
1047 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
1052 (*m_accept
) = FALSE
;
1054 m_startValue
= value
;
1057 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
1059 if (event
.m_keyCode
== WXK_RETURN
)
1062 (*m_res
) = GetValue();
1063 m_owner
->SetFocus();
1066 if (event
.m_keyCode
== WXK_ESCAPE
)
1068 (*m_accept
) = FALSE
;
1070 m_owner
->SetFocus();
1076 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1078 if (wxPendingDelete
.Member(this)) return;
1080 wxPendingDelete
.Append(this);
1082 if ((*m_accept
) && ((*m_res
) != m_startValue
))
1083 m_owner
->OnRenameAccept();
1086 //-----------------------------------------------------------------------------
1088 //-----------------------------------------------------------------------------
1090 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
);
1092 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
1093 EVT_PAINT (wxListMainWindow::OnPaint
)
1094 EVT_SIZE (wxListMainWindow::OnSize
)
1095 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
1096 EVT_CHAR (wxListMainWindow::OnChar
)
1097 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
1098 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
1099 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
1100 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
1103 wxListMainWindow::wxListMainWindow()
1106 m_lines
.DeleteContents( TRUE
);
1107 m_columns
.DeleteContents( TRUE
);
1108 m_current
= (wxListLineData
*) NULL
;
1110 m_hilightBrush
= (wxBrush
*) NULL
;
1114 m_small_image_list
= (wxImageList
*) NULL
;
1115 m_normal_image_list
= (wxImageList
*) NULL
;
1116 m_small_spacing
= 30;
1117 m_normal_spacing
= 40;
1120 m_lastOnSame
= FALSE
;
1121 m_renameTimer
= new wxListRenameTimer( this );
1122 m_isCreated
= FALSE
;
1126 wxListMainWindow::wxListMainWindow( wxWindow
*parent
, wxWindowID id
,
1127 const wxPoint
&pos
, const wxSize
&size
,
1128 long style
, const wxString
&name
) :
1129 wxScrolledWindow( parent
, id
, pos
, size
, style
|wxHSCROLL
|wxVSCROLL
, name
)
1132 m_lines
.DeleteContents( TRUE
);
1133 m_columns
.DeleteContents( TRUE
);
1134 m_current
= (wxListLineData
*) NULL
;
1137 m_hilightBrush
= new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
), wxSOLID
);
1138 m_small_image_list
= (wxImageList
*) NULL
;
1139 m_normal_image_list
= (wxImageList
*) NULL
;
1140 m_small_spacing
= 30;
1141 m_normal_spacing
= 40;
1144 m_isCreated
= FALSE
;
1148 if (m_mode
& wxLC_REPORT
)
1150 #if wxUSE_GENERIC_LIST_EXTENSIONS
1162 SetScrollbars( m_xScroll
, m_yScroll
, 0, 0, 0, 0 );
1165 m_lastOnSame
= FALSE
;
1166 m_renameTimer
= new wxListRenameTimer( this );
1167 m_renameAccept
= FALSE
;
1169 SetBackgroundColour( *wxWHITE
);
1172 wxListMainWindow::~wxListMainWindow()
1174 if (m_hilightBrush
) delete m_hilightBrush
;
1176 delete m_renameTimer
;
1179 void wxListMainWindow::RefreshLine( wxListLineData
*line
)
1181 if (m_dirty
) return;
1189 wxClientDC
dc(this);
1191 line
->GetExtent( x
, y
, w
, h
);
1193 dc
.LogicalToDeviceX(x
-3),
1194 dc
.LogicalToDeviceY(y
-3),
1195 dc
.LogicalToDeviceXRel(w
+6),
1196 dc
.LogicalToDeviceXRel(h
+6) );
1197 Refresh( TRUE
, &rect
);
1201 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1203 // Note: a wxPaintDC must be constructed even if no drawing is
1204 // done (a Windows requirement).
1205 wxPaintDC
dc( this );
1208 if (m_dirty
) return;
1210 if (m_lines
.GetCount() == 0) return;
1214 dc
.SetFont( GetFont() );
1216 if (m_mode
& wxLC_REPORT
)
1218 int lineSpacing
= 0;
1219 wxListLineData
*line
= (wxListLineData
*)m_lines
.First()->Data();
1221 line
->GetSize( dummy
, lineSpacing
);
1224 int y_s
= m_yScroll
*GetScrollPos( wxVERTICAL
);
1226 wxNode
*node
= m_lines
.Nth( y_s
/ lineSpacing
);
1227 for (int i
= 0; i
< m_visibleLines
+2; i
++)
1231 line
= (wxListLineData
*)node
->Data();
1233 node
= node
->Next();
1238 wxNode
*node
= m_lines
.First();
1241 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1243 node
= node
->Next();
1247 if (m_current
) m_current
->DrawRubberBand( &dc
, m_hasFocus
);
1252 void wxListMainWindow::HilightAll( bool on
)
1254 wxNode
*node
= m_lines
.First();
1257 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1258 if (line
->IsHilighted() != on
)
1260 line
->Hilight( on
);
1261 RefreshLine( line
);
1263 node
= node
->Next();
1267 void wxListMainWindow::SendNotify( wxListLineData
*line
, wxEventType command
)
1269 wxListEvent
le( command
, GetParent()->GetId() );
1270 le
.SetEventObject( GetParent() );
1271 le
.m_itemIndex
= GetIndexOfLine( line
);
1272 line
->GetItem( 0, le
.m_item
);
1273 GetParent()->GetEventHandler()->ProcessEvent( le
);
1274 // GetParent()->GetEventHandler()->AddPendingEvent( le );
1277 void wxListMainWindow::FocusLine( wxListLineData
*WXUNUSED(line
) )
1279 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED );
1282 void wxListMainWindow::UnfocusLine( wxListLineData
*WXUNUSED(line
) )
1284 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED );
1287 void wxListMainWindow::SelectLine( wxListLineData
*line
)
1289 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_SELECTED
);
1292 void wxListMainWindow::DeselectLine( wxListLineData
*line
)
1294 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1297 void wxListMainWindow::DeleteLine( wxListLineData
*line
)
1299 SendNotify( line
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
1304 void wxListMainWindow::EditLabel( long item
)
1306 wxNode
*node
= m_lines
.Nth( (size_t)item
);
1307 wxCHECK_RET( node
, wxT("wrong index in wxListCtrl::Edit()") );
1309 m_currentEdit
= (wxListLineData
*) node
->Data();
1311 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
1312 le
.SetEventObject( GetParent() );
1313 le
.m_itemIndex
= GetIndexOfLine( m_currentEdit
);
1314 m_currentEdit
->GetItem( 0, le
.m_item
);
1315 GetParent()->GetEventHandler()->ProcessEvent( le
);
1317 if (!le
.IsAllowed())
1320 // We have to call this here because the label in
1321 // question might just have been added and no screen
1322 // update taken place.
1323 if (m_dirty
) wxYield();
1326 m_currentEdit
->GetText( 0, s
);
1331 m_currentEdit
->GetLabelExtent( x
, y
, w
, h
);
1333 wxClientDC
dc(this);
1335 x
= dc
.LogicalToDeviceX( x
);
1336 y
= dc
.LogicalToDeviceY( y
);
1338 wxListTextCtrl
*text
= new wxListTextCtrl(
1339 this, -1, &m_renameAccept
, &m_renameRes
, this, s
, wxPoint(x
-4,y
-4), wxSize(w
+11,h
+8) );
1343 void wxListMainWindow::OnRenameTimer()
1345 wxCHECK_RET( m_current
, wxT("invalid m_current") );
1347 Edit( m_lines
.IndexOf( m_current
) );
1350 void wxListMainWindow::OnRenameAccept()
1352 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
1353 le
.SetEventObject( GetParent() );
1354 le
.m_itemIndex
= GetIndexOfLine( m_currentEdit
);
1355 m_currentEdit
->GetItem( 0, le
.m_item
);
1356 le
.m_item
.m_text
= m_renameRes
;
1357 GetParent()->GetEventHandler()->ProcessEvent( le
);
1359 if (!le
.IsAllowed()) return;
1362 info
.m_mask
= wxLIST_MASK_TEXT
;
1363 info
.m_itemId
= le
.m_itemIndex
;
1364 info
.m_text
= m_renameRes
;
1365 info
.SetTextColour(le
.m_item
.GetTextColour());
1369 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
1371 if (GetParent()->GetEventHandler()->ProcessEvent( event
)) return;
1373 if (!m_current
) return;
1374 if (m_dirty
) return;
1375 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() || event
.ButtonDClick()) ) return;
1377 wxClientDC
dc(this);
1379 wxCoord x
= dc
.DeviceToLogicalX( (wxCoord
)event
.GetX() );
1380 wxCoord y
= dc
.DeviceToLogicalY( (wxCoord
)event
.GetY() );
1382 /* Did we actually hit an item ? */
1384 wxNode
*node
= m_lines
.First();
1385 wxListLineData
*line
= (wxListLineData
*) NULL
;
1388 line
= (wxListLineData
*)node
->Data();
1389 hitResult
= line
->IsHit( x
, y
);
1390 if (hitResult
) break;
1391 line
= (wxListLineData
*) NULL
;
1392 node
= node
->Next();
1395 if (event
.Dragging())
1397 if (m_dragCount
== 0)
1398 m_dragStart
= wxPoint(x
,y
);
1402 if (m_dragCount
!= 3) return;
1404 int command
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1405 if (event
.RightIsDown()) command
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1407 wxListEvent
le( command
, GetParent()->GetId() );
1408 le
.SetEventObject( GetParent() );
1409 le
.m_pointDrag
= m_dragStart
;
1410 GetParent()->GetEventHandler()->ProcessEvent( le
);
1421 if (event
.ButtonDClick())
1424 m_lastOnSame
= FALSE
;
1425 m_renameTimer
->Stop();
1427 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
1432 if (event
.LeftUp() && m_lastOnSame
)
1435 if ((line
== m_current
) &&
1436 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
1437 (m_mode
& wxLC_EDIT_LABELS
) )
1439 m_renameTimer
->Start( 100, TRUE
);
1441 m_lastOnSame
= FALSE
;
1445 if (event
.RightDown())
1447 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
);
1451 if (event
.MiddleDown())
1453 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
1457 if (event
.LeftDown())
1460 wxListLineData
*oldCurrent
= m_current
;
1461 if (m_mode
& wxLC_SINGLE_SEL
)
1464 HilightAll( FALSE
);
1465 m_current
->ReverseHilight();
1466 RefreshLine( m_current
);
1470 if (event
.ControlDown())
1473 m_current
->ReverseHilight();
1474 RefreshLine( m_current
);
1476 else if (event
.ShiftDown())
1480 int numOfCurrent
= -1;
1481 node
= m_lines
.First();
1484 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1486 if (test_line
== oldCurrent
) break;
1487 node
= node
->Next();
1491 node
= m_lines
.First();
1494 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1496 if (test_line
== line
) break;
1497 node
= node
->Next();
1500 if (numOfLine
< numOfCurrent
)
1503 numOfLine
= numOfCurrent
;
1507 wxNode
*node
= m_lines
.Nth( numOfCurrent
);
1508 for (int i
= 0; i
<= numOfLine
-numOfCurrent
; i
++)
1510 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1511 test_line
->Hilight(TRUE
);
1512 RefreshLine( test_line
);
1513 node
= node
->Next();
1519 HilightAll( FALSE
);
1520 m_current
->ReverseHilight();
1521 RefreshLine( m_current
);
1524 if (m_current
!= oldCurrent
)
1526 RefreshLine( oldCurrent
);
1527 UnfocusLine( oldCurrent
);
1528 FocusLine( m_current
);
1530 m_lastOnSame
= (m_current
== oldCurrent
);
1535 void wxListMainWindow::MoveToFocus()
1537 if (!m_current
) return;
1543 m_current
->GetExtent( item_x
, item_y
, item_w
, item_h
);
1547 GetClientSize( &client_w
, &client_h
);
1549 int view_x
= m_xScroll
*GetScrollPos( wxHORIZONTAL
);
1550 int view_y
= m_yScroll
*GetScrollPos( wxVERTICAL
);
1552 if (m_mode
& wxLC_REPORT
)
1554 if (item_y
-5 < view_y
)
1555 Scroll( -1, (item_y
-5)/m_yScroll
);
1556 if (item_y
+item_h
+5 > view_y
+client_h
)
1557 Scroll( -1, (item_y
+item_h
-client_h
+15)/m_yScroll
);
1561 if (item_x
-view_x
< 5)
1562 Scroll( (item_x
-5)/m_xScroll
, -1 );
1563 if (item_x
+item_w
-5 > view_x
+client_w
)
1564 Scroll( (item_x
+item_w
-client_w
+15)/m_xScroll
, -1 );
1568 void wxListMainWindow::OnArrowChar( wxListLineData
*newCurrent
, bool shiftDown
)
1570 if ((m_mode
& wxLC_SINGLE_SEL
) || (m_usedKeys
== FALSE
)) m_current
->Hilight( FALSE
);
1571 wxListLineData
*oldCurrent
= m_current
;
1572 m_current
= newCurrent
;
1573 if (shiftDown
|| (m_mode
& wxLC_SINGLE_SEL
)) m_current
->Hilight( TRUE
);
1574 RefreshLine( m_current
);
1575 RefreshLine( oldCurrent
);
1576 FocusLine( m_current
);
1577 UnfocusLine( oldCurrent
);
1581 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
1583 wxWindow
*parent
= GetParent();
1585 /* we propagate the key event up */
1586 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
1587 ke
.m_shiftDown
= event
.m_shiftDown
;
1588 ke
.m_controlDown
= event
.m_controlDown
;
1589 ke
.m_altDown
= event
.m_altDown
;
1590 ke
.m_metaDown
= event
.m_metaDown
;
1591 ke
.m_keyCode
= event
.m_keyCode
;
1594 ke
.SetEventObject( parent
);
1595 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
1600 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
1602 wxWindow
*parent
= GetParent();
1604 /* we send a list_key event up */
1605 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
1606 le
.m_code
= (int)event
.KeyCode();
1607 le
.SetEventObject( parent
);
1608 parent
->GetEventHandler()->ProcessEvent( le
);
1610 /* we propagate the char event up */
1611 wxKeyEvent
ke( wxEVT_CHAR
);
1612 ke
.m_shiftDown
= event
.m_shiftDown
;
1613 ke
.m_controlDown
= event
.m_controlDown
;
1614 ke
.m_altDown
= event
.m_altDown
;
1615 ke
.m_metaDown
= event
.m_metaDown
;
1616 ke
.m_keyCode
= event
.m_keyCode
;
1619 ke
.SetEventObject( parent
);
1620 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
1622 if (event
.KeyCode() == WXK_TAB
)
1624 wxNavigationKeyEvent nevent
;
1625 nevent
.SetDirection( !event
.ShiftDown() );
1626 nevent
.SetEventObject( GetParent()->GetParent() );
1627 nevent
.SetCurrentFocus( m_parent
);
1628 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
)) return;
1631 /* no item -> nothing to do */
1638 switch (event
.KeyCode())
1642 wxNode
*node
= m_lines
.Member( m_current
)->Previous();
1643 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1648 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1649 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1654 wxNode
*node
= m_lines
.Last();
1655 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1660 wxNode
*node
= m_lines
.First();
1661 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1667 if (m_mode
& wxLC_REPORT
)
1669 steps
= m_visibleLines
-1;
1674 wxNode
*node
= m_lines
.First();
1675 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); }
1676 steps
= pos
% m_visibleLines
;
1678 wxNode
*node
= m_lines
.Member( m_current
);
1679 for (int i
= 0; i
< steps
; i
++) if (node
->Previous()) node
= node
->Previous();
1680 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1686 if (m_mode
& wxLC_REPORT
)
1688 steps
= m_visibleLines
-1;
1692 int pos
= 0; wxNode
*node
= m_lines
.First();
1693 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); }
1694 steps
= m_visibleLines
-(pos
% m_visibleLines
)-1;
1696 wxNode
*node
= m_lines
.Member( m_current
);
1697 for (int i
= 0; i
< steps
; i
++) if (node
->Next()) node
= node
->Next();
1698 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1703 if (!(m_mode
& wxLC_REPORT
))
1705 wxNode
*node
= m_lines
.Member( m_current
);
1706 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Previous()) node
= node
->Previous();
1707 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1713 if (!(m_mode
& wxLC_REPORT
))
1715 wxNode
*node
= m_lines
.Member( m_current
);
1716 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Next()) node
= node
->Next();
1717 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1723 m_current
->ReverseHilight();
1724 RefreshLine( m_current
);
1729 if (!(m_mode
& wxLC_SINGLE_SEL
))
1731 wxListLineData
*oldCurrent
= m_current
;
1732 m_current
->ReverseHilight();
1733 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1734 if (node
) m_current
= (wxListLineData
*)node
->Data();
1735 RefreshLine( oldCurrent
);
1736 RefreshLine( m_current
);
1737 UnfocusLine( oldCurrent
);
1738 FocusLine( m_current
);
1746 wxListEvent
le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, GetParent()->GetId() );
1747 le
.SetEventObject( GetParent() );
1748 le
.m_itemIndex
= GetIndexOfLine( m_current
);
1749 m_current
->GetItem( 0, le
.m_item
);
1750 GetParent()->GetEventHandler()->ProcessEvent( le
);
1763 extern wxWindow
*g_focusWindow
;
1766 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1769 RefreshLine( m_current
);
1771 if (!GetParent()) return;
1774 g_focusWindow
= GetParent();
1777 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
1778 event
.SetEventObject( GetParent() );
1779 GetParent()->GetEventHandler()->ProcessEvent( event
);
1782 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1785 RefreshLine( m_current
);
1788 void wxListMainWindow::OnSize( wxSizeEvent
&WXUNUSED(event
) )
1791 We don't even allow the wxScrolledWindow::AdjustScrollbars() call
1796 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
1798 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1800 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1803 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1805 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1807 if ((m_mode
& wxLC_LIST
) && (m_small_image_list
))
1809 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1811 if ((m_mode
& wxLC_REPORT
) && (m_small_image_list
))
1813 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1818 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
)
1820 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1822 m_normal_image_list
->GetSize( index
, width
, height
);
1825 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1827 m_small_image_list
->GetSize( index
, width
, height
);
1830 if ((m_mode
& wxLC_LIST
) && (m_small_image_list
))
1832 m_small_image_list
->GetSize( index
, width
, height
);
1835 if ((m_mode
& wxLC_REPORT
) && (m_small_image_list
))
1837 m_small_image_list
->GetSize( index
, width
, height
);
1844 int wxListMainWindow::GetTextLength( wxString
&s
)
1846 wxClientDC
dc( this );
1849 dc
.GetTextExtent( s
, &lw
, &lh
);
1853 int wxListMainWindow::GetIndexOfLine( const wxListLineData
*line
)
1856 wxNode
*node
= m_lines
.First();
1859 if (line
== (wxListLineData
*)node
->Data()) return i
;
1861 node
= node
->Next();
1866 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
1869 if (which
== wxIMAGE_LIST_NORMAL
) m_normal_image_list
= imageList
;
1870 if (which
== wxIMAGE_LIST_SMALL
) m_small_image_list
= imageList
;
1873 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
1878 m_small_spacing
= spacing
;
1882 m_normal_spacing
= spacing
;
1886 int wxListMainWindow::GetItemSpacing( bool isSmall
)
1888 if (isSmall
) return m_small_spacing
; else return m_normal_spacing
;
1891 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
1894 wxNode
*node
= m_columns
.Nth( col
);
1897 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
)+7;
1898 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1899 column
->SetItem( item
);
1901 wxListCtrl
*lc
= (wxListCtrl
*) GetParent();
1902 if (lc
->m_headerWin
) lc
->m_headerWin
->Refresh();
1905 void wxListMainWindow::SetColumnWidth( int col
, int width
)
1907 if (!(m_mode
& wxLC_REPORT
)) return;
1911 wxNode
*node
= (wxNode
*) NULL
;
1913 if (width
== wxLIST_AUTOSIZE_USEHEADER
) width
= 80;
1914 if (width
== wxLIST_AUTOSIZE
)
1916 wxClientDC
dc(this);
1917 dc
.SetFont( GetFont() );
1919 node
= m_lines
.First();
1922 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1923 wxNode
*n
= line
->m_items
.Nth( col
);
1926 wxListItemData
*item
= (wxListItemData
*)n
->Data();
1927 int current
= 0, ix
= 0, iy
= 0;
1928 wxCoord lx
= 0, ly
= 0;
1929 if (item
->HasImage())
1931 GetImageSize( item
->GetImage(), ix
, iy
);
1934 if (item
->HasText())
1937 item
->GetText( str
);
1938 dc
.GetTextExtent( str
, &lx
, &ly
);
1941 if (current
> max
) max
= current
;
1943 node
= node
->Next();
1948 node
= m_columns
.Nth( col
);
1951 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1952 column
->SetWidth( width
);
1955 node
= m_lines
.First();
1958 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1959 wxNode
*n
= line
->m_items
.Nth( col
);
1962 wxListItemData
*item
= (wxListItemData
*)n
->Data();
1963 item
->SetSize( width
, -1 );
1965 node
= node
->Next();
1968 wxListCtrl
*lc
= (wxListCtrl
*) GetParent();
1969 if (lc
->m_headerWin
) lc
->m_headerWin
->Refresh();
1972 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
)
1974 wxNode
*node
= m_columns
.Nth( col
);
1977 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1978 column
->GetItem( item
);
1990 int wxListMainWindow::GetColumnWidth( int col
)
1992 wxNode
*node
= m_columns
.Nth( col
);
1995 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1996 return column
->GetWidth();
2004 int wxListMainWindow::GetColumnCount()
2006 return m_columns
.Number();
2009 int wxListMainWindow::GetCountPerPage()
2011 return m_visibleLines
;
2014 void wxListMainWindow::SetItem( wxListItem
&item
)
2017 wxNode
*node
= m_lines
.Nth( (size_t)item
.m_itemId
);
2020 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2021 if (m_mode
& wxLC_REPORT
) item
.m_width
= GetColumnWidth( item
.m_col
)-3;
2022 line
->SetItem( item
.m_col
, item
);
2026 void wxListMainWindow::SetItemState( long item
, long state
, long stateMask
)
2028 // m_dirty = TRUE; no recalcs needed
2030 wxListLineData
*oldCurrent
= m_current
;
2032 if (stateMask
& wxLIST_STATE_FOCUSED
)
2034 wxNode
*node
= m_lines
.Nth( (size_t)item
);
2037 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2038 UnfocusLine( m_current
);
2040 FocusLine( m_current
);
2041 RefreshLine( m_current
);
2042 if (oldCurrent
) RefreshLine( oldCurrent
);
2046 if (stateMask
& wxLIST_STATE_SELECTED
)
2048 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
2049 if (!on
&& (m_mode
& wxLC_SINGLE_SEL
)) return;
2051 wxNode
*node
= m_lines
.Nth( (size_t)item
);
2054 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2055 if (m_mode
& wxLC_SINGLE_SEL
)
2057 UnfocusLine( m_current
);
2059 FocusLine( m_current
);
2060 if (oldCurrent
) oldCurrent
->Hilight( FALSE
);
2061 RefreshLine( m_current
);
2062 if (oldCurrent
) RefreshLine( oldCurrent
);
2064 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
2065 if (on
!= line
->IsHilighted())
2067 line
->Hilight( on
);
2068 RefreshLine( line
);
2074 int wxListMainWindow::GetItemState( long item
, long stateMask
)
2076 int ret
= wxLIST_STATE_DONTCARE
;
2077 if (stateMask
& wxLIST_STATE_FOCUSED
)
2079 wxNode
*node
= m_lines
.Nth( (size_t)item
);
2082 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2083 if (line
== m_current
) ret
|= wxLIST_STATE_FOCUSED
;
2086 if (stateMask
& wxLIST_STATE_SELECTED
)
2088 wxNode
*node
= m_lines
.Nth( (size_t)item
);
2091 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2092 if (line
->IsHilighted()) ret
|= wxLIST_STATE_FOCUSED
;
2098 void wxListMainWindow::GetItem( wxListItem
&item
)
2100 wxNode
*node
= m_lines
.Nth( (size_t)item
.m_itemId
);
2103 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2104 line
->GetItem( item
.m_col
, item
);
2115 int wxListMainWindow::GetItemCount()
2117 return m_lines
.Number();
2120 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
)
2122 wxNode
*node
= m_lines
.Nth( (size_t)index
);
2125 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2126 line
->GetRect( rect
);
2137 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
)
2139 wxNode
*node
= m_lines
.Nth( (size_t)item
);
2143 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2144 line
->GetRect( rect
);
2156 int wxListMainWindow::GetSelectedItemCount()
2159 wxNode
*node
= m_lines
.First();
2162 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2163 if (line
->IsHilighted()) ret
++;
2164 node
= node
->Next();
2169 void wxListMainWindow::SetMode( long mode
)
2176 if (m_mode
& wxLC_REPORT
)
2178 #if wxUSE_GENERIC_LIST_EXTENSIONS
2192 long wxListMainWindow::GetMode() const
2197 void wxListMainWindow::CalculatePositions()
2199 if (!m_lines
.First()) return;
2201 wxClientDC
dc( this );
2202 dc
.SetFont( GetFont() );
2204 int iconSpacing
= 0;
2205 if (m_mode
& wxLC_ICON
) iconSpacing
= m_normal_spacing
;
2206 if (m_mode
& wxLC_SMALL_ICON
) iconSpacing
= m_small_spacing
;
2208 // we take the first line (which also can be an icon or
2209 // an a text item in wxLC_ICON and wxLC_LIST modes) to
2210 // measure the size of the line
2214 int lineSpacing
= 0;
2216 wxListLineData
*line
= (wxListLineData
*)m_lines
.First()->Data();
2217 line
->CalculateSize( &dc
, iconSpacing
);
2219 line
->GetSize( dummy
, lineSpacing
);
2222 int clientWidth
= 0;
2223 int clientHeight
= 0;
2225 if (m_mode
& wxLC_REPORT
)
2229 int entireHeight
= m_lines
.Number() * lineSpacing
+ 2;
2230 int scroll_pos
= GetScrollPos( wxVERTICAL
);
2231 #if wxUSE_GENERIC_LIST_EXTENSIONS
2232 int x_scroll_pos
= GetScrollPos( wxHORIZONTAL
);
2234 SetScrollbars( m_xScroll
, m_yScroll
, 0, (entireHeight
+15) / m_yScroll
, 0, scroll_pos
, TRUE
);
2236 GetClientSize( &clientWidth
, &clientHeight
);
2238 wxNode
* node
= m_lines
.First();
2239 int entireWidth
= 0 ;
2242 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2243 line
->CalculateSize( &dc
, iconSpacing
);
2244 line
->SetPosition( &dc
, x
, y
, clientWidth
);
2246 for (int i
= 0; i
< GetColumnCount(); i
++)
2248 line
->SetColumnPosition( i
, col_x
);
2249 col_x
+= GetColumnWidth( i
);
2251 entireWidth
= wxMax( entireWidth
, col_x
) ;
2252 #if wxUSE_GENERIC_LIST_EXTENSIONS
2253 line
->SetPosition( &dc
, x
, y
, col_x
);
2255 y
+= lineSpacing
; // one pixel blank line between items
2256 node
= node
->Next();
2258 m_visibleLines
= clientHeight
/ lineSpacing
;
2259 #if wxUSE_GENERIC_LIST_EXTENSIONS
2260 SetScrollbars( m_xScroll
, m_yScroll
, entireWidth
/ m_xScroll
, (entireHeight
+15) / m_yScroll
, x_scroll_pos
, scroll_pos
, TRUE
);
2265 // at first we try without any scrollbar. if the items don't
2266 // fit into the window, we recalculate after subtracting an
2267 // approximated 15 pt for the horizontal scrollbar
2269 GetSize( &clientWidth
, &clientHeight
);
2270 clientHeight
-= 4; // sunken frame
2272 int entireWidth
= 0;
2274 for (int tries
= 0; tries
< 2; tries
++)
2277 int x
= 5; // painting is done at x-2
2278 int y
= 5; // painting is done at y-2
2281 int m_currentVisibleLines
= 0;
2282 wxNode
*node
= m_lines
.First();
2285 m_currentVisibleLines
++;
2286 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2287 line
->CalculateSize( &dc
, iconSpacing
);
2288 line
->SetPosition( &dc
, x
, y
, clientWidth
);
2289 line
->GetSize( lineWidth
, lineHeight
);
2290 if (lineWidth
> maxWidth
) maxWidth
= lineWidth
;
2292 if (m_currentVisibleLines
> m_visibleLines
)
2293 m_visibleLines
= m_currentVisibleLines
;
2294 if (y
+lineSpacing
-6 >= clientHeight
) // -6 for earlier "line breaking"
2296 m_currentVisibleLines
= 0;
2299 entireWidth
+= maxWidth
+6;
2302 node
= node
->Next();
2303 if (!node
) entireWidth
+= maxWidth
;
2304 if ((tries
== 0) && (entireWidth
> clientWidth
))
2306 clientHeight
-= 15; // scrollbar height
2308 m_currentVisibleLines
= 0;
2311 if (!node
) tries
= 1; // everything fits, no second try required
2315 int scroll_pos
= GetScrollPos( wxHORIZONTAL
);
2316 SetScrollbars( m_xScroll
, m_yScroll
, (entireWidth
+15) / m_xScroll
, 0, scroll_pos
, 0, TRUE
);
2320 void wxListMainWindow::RealizeChanges( void )
2324 wxNode
*node
= m_lines
.First();
2325 if (node
) m_current
= (wxListLineData
*)node
->Data();
2329 FocusLine( m_current
);
2330 if (m_mode
& wxLC_SINGLE_SEL
) m_current
->Hilight( TRUE
);
2334 long wxListMainWindow::GetNextItem( long item
,
2335 int WXUNUSED(geometry
),
2339 max
= GetItemCount();
2340 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
2341 _T("invalid listctrl index in GetNextItem()") );
2343 // notice that we start with the next item (or the first one if item == -1)
2344 // and this is intentional to allow writing a simple loop to iterate over
2345 // all selected items
2349 // this is not an error because the index was ok initially, just no
2354 wxNode
*node
= m_lines
.Nth( (size_t)ret
);
2357 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2358 if ((state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
))
2360 if ((state
& wxLIST_STATE_SELECTED
) && (line
->IsHilighted()))
2366 node
= node
->Next();
2372 void wxListMainWindow::DeleteItem( long index
)
2375 wxNode
*node
= m_lines
.Nth( (size_t)index
);
2378 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2379 if (m_current
== line
) m_current
= (wxListLineData
*) NULL
;
2381 m_lines
.DeleteNode( node
);
2385 void wxListMainWindow::DeleteColumn( int col
)
2387 wxCHECK_RET( col
< (int)m_columns
.GetCount(),
2388 wxT("attempting to delete inexistent column in wxListView") );
2391 wxNode
*node
= m_columns
.Nth( col
);
2392 if (node
) m_columns
.DeleteNode( node
);
2395 void wxListMainWindow::DeleteAllItems( void )
2398 m_current
= (wxListLineData
*) NULL
;
2400 // to make the deletion of all items faster, we don't send the
2401 // notifications in this case: this is compatible with wxMSW and
2402 // documented in DeleteAllItems() description
2404 wxNode
*node
= m_lines
.First();
2407 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2411 node
= node
->Next();
2418 void wxListMainWindow::DeleteEverything( void )
2421 m_current
= (wxListLineData
*) NULL
;
2422 wxNode
*node
= m_lines
.First();
2425 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2427 node
= node
->Next();
2430 m_current
= (wxListLineData
*) NULL
;
2434 void wxListMainWindow::EnsureVisible( long index
)
2436 // We have to call this here because the label in
2437 // question might just have been added and no screen
2438 // update taken place.
2439 if (m_dirty
) wxYield();
2441 wxListLineData
*oldCurrent
= m_current
;
2442 m_current
= (wxListLineData
*) NULL
;
2443 wxNode
*node
= m_lines
.Nth( (size_t)index
);
2444 if (node
) m_current
= (wxListLineData
*)node
->Data();
2445 if (m_current
) MoveToFocus();
2446 m_current
= oldCurrent
;
2449 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
2453 if (pos
< 0) pos
= 0;
2454 wxNode
*node
= m_lines
.Nth( (size_t)pos
);
2457 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2459 line
->GetText( 0, s
);
2460 if (s
== tmp
) return pos
;
2461 node
= node
->Next();
2467 long wxListMainWindow::FindItem(long start
, long data
)
2470 if (pos
< 0) pos
= 0;
2471 wxNode
*node
= m_lines
.Nth( (size_t)pos
);
2474 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2476 line
->GetItem( 0, item
);
2477 if (item
.m_data
== data
) return pos
;
2478 node
= node
->Next();
2484 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
2486 wxNode
*node
= m_lines
.First();
2490 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2491 long ret
= line
->IsHit( x
, y
);
2497 node
= node
->Next();
2503 void wxListMainWindow::InsertItem( wxListItem
&item
)
2507 if (m_mode
& wxLC_REPORT
) mode
= wxLC_REPORT
;
2508 else if (m_mode
& wxLC_LIST
) mode
= wxLC_LIST
;
2509 else if (m_mode
& wxLC_ICON
) mode
= wxLC_ICON
;
2510 else if (m_mode
& wxLC_SMALL_ICON
) mode
= wxLC_ICON
; // no typo
2512 wxListLineData
*line
= new wxListLineData( this, mode
, m_hilightBrush
);
2514 if (m_mode
& wxLC_REPORT
)
2516 line
->InitItems( GetColumnCount() );
2517 item
.m_width
= GetColumnWidth( 0 )-3;
2521 line
->InitItems( 1 );
2524 line
->SetItem( 0, item
);
2525 if ((item
.m_itemId
>= 0) && (item
.m_itemId
< (int)m_lines
.GetCount()))
2527 wxNode
*node
= m_lines
.Nth( (size_t)item
.m_itemId
);
2528 if (node
) m_lines
.Insert( node
, line
);
2532 m_lines
.Append( line
);
2536 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
2539 if (m_mode
& wxLC_REPORT
)
2541 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
);
2542 wxListHeaderData
*column
= new wxListHeaderData( item
);
2543 if ((col
>= 0) && (col
< (int)m_columns
.GetCount()))
2545 wxNode
*node
= m_columns
.Nth( (size_t)col
);
2547 m_columns
.Insert( node
, column
);
2551 m_columns
.Append( column
);
2556 wxListCtrlCompare list_ctrl_compare_func_2
;
2557 long list_ctrl_compare_data
;
2559 int LINKAGEMODE
list_ctrl_compare_func_1( const void *arg1
, const void *arg2
)
2561 wxListLineData
*line1
= *((wxListLineData
**)arg1
);
2562 wxListLineData
*line2
= *((wxListLineData
**)arg2
);
2564 line1
->GetItem( 0, item
);
2565 long data1
= item
.m_data
;
2566 line2
->GetItem( 0, item
);
2567 long data2
= item
.m_data
;
2568 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
2571 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
2573 list_ctrl_compare_func_2
= fn
;
2574 list_ctrl_compare_data
= data
;
2575 m_lines
.Sort( list_ctrl_compare_func_1
);
2579 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
2581 wxScrolledWindow::OnScroll( event
) ;
2582 #if wxUSE_GENERIC_LIST_EXTENSIONS
2584 if (event
.GetOrientation() == wxHORIZONTAL
&& ( m_mode
& wxLC_REPORT
))
2586 wxListCtrl
* lc
= wxDynamicCast( GetParent() , wxListCtrl
) ;
2589 lc
->m_headerWin
->Refresh() ;
2591 lc
->m_headerWin
->MacUpdateImmediately() ;
2598 // -------------------------------------------------------------------------------------
2600 // -------------------------------------------------------------------------------------
2602 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
2604 wxListItem::wxListItem()
2613 m_format
= wxLIST_FORMAT_CENTRE
;
2619 void wxListItem::Clear()
2628 m_format
= wxLIST_FORMAT_CENTRE
;
2630 m_text
= wxEmptyString
;
2632 if (m_attr
) delete m_attr
;
2636 void wxListItem::ClearAttributes()
2638 if (m_attr
) delete m_attr
;
2642 // -------------------------------------------------------------------------------------
2644 // -------------------------------------------------------------------------------------
2646 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
2648 wxListEvent::wxListEvent( wxEventType commandType
, int id
):
2649 wxNotifyEvent( commandType
, id
)
2655 m_cancelled
= FALSE
;
2660 void wxListEvent::CopyObject(wxObject
& object_dest
) const
2662 wxListEvent
*obj
= (wxListEvent
*)&object_dest
;
2664 wxNotifyEvent::CopyObject(object_dest
);
2666 obj
->m_code
= m_code
;
2667 obj
->m_itemIndex
= m_itemIndex
;
2668 obj
->m_oldItemIndex
= m_oldItemIndex
;
2670 obj
->m_cancelled
= m_cancelled
;
2671 obj
->m_pointDrag
= m_pointDrag
;
2672 obj
->m_item
.m_mask
= m_item
.m_mask
;
2673 obj
->m_item
.m_itemId
= m_item
.m_itemId
;
2674 obj
->m_item
.m_col
= m_item
.m_col
;
2675 obj
->m_item
.m_state
= m_item
.m_state
;
2676 obj
->m_item
.m_stateMask
= m_item
.m_stateMask
;
2677 obj
->m_item
.m_text
= m_item
.m_text
;
2678 obj
->m_item
.m_image
= m_item
.m_image
;
2679 obj
->m_item
.m_data
= m_item
.m_data
;
2680 obj
->m_item
.m_format
= m_item
.m_format
;
2681 obj
->m_item
.m_width
= m_item
.m_width
;
2683 if ( m_item
.HasAttributes() )
2685 obj
->m_item
.SetTextColour(m_item
.GetTextColour());
2689 // -------------------------------------------------------------------------------------
2691 // -------------------------------------------------------------------------------------
2693 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
2695 BEGIN_EVENT_TABLE(wxListCtrl
,wxControl
)
2696 EVT_SIZE (wxListCtrl::OnSize
)
2697 EVT_IDLE (wxListCtrl::OnIdle
)
2700 wxListCtrl::wxListCtrl()
2702 m_imageListNormal
= (wxImageList
*) NULL
;
2703 m_imageListSmall
= (wxImageList
*) NULL
;
2704 m_imageListState
= (wxImageList
*) NULL
;
2705 m_mainWin
= (wxListMainWindow
*) NULL
;
2706 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2709 wxListCtrl::~wxListCtrl()
2713 bool wxListCtrl::Create(wxWindow
*parent
,
2718 const wxValidator
&validator
,
2719 const wxString
&name
)
2721 m_imageListNormal
= (wxImageList
*) NULL
;
2722 m_imageListSmall
= (wxImageList
*) NULL
;
2723 m_imageListState
= (wxImageList
*) NULL
;
2724 m_mainWin
= (wxListMainWindow
*) NULL
;
2725 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2727 if ( !(style
& (wxLC_REPORT
| wxLC_LIST
| wxLC_ICON
)) )
2729 style
= style
| wxLC_LIST
;
2732 bool ret
= wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
);
2735 if (style
& wxSUNKEN_BORDER
)
2736 style
-= wxSUNKEN_BORDER
;
2738 m_mainWin
= new wxListMainWindow( this, -1, wxPoint(0,0), size
, style
);
2740 if (HasFlag(wxLC_REPORT
))
2742 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
, wxPoint(0,0), wxSize(size
.x
,23), wxTAB_TRAVERSAL
);
2743 if (HasFlag(wxLC_NO_HEADER
))
2744 m_headerWin
->Show( FALSE
);
2748 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2751 SetBackgroundColour( *wxWHITE
);
2756 void wxListCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
2758 /* handled in OnIdle */
2760 if (m_mainWin
) m_mainWin
->m_dirty
= TRUE
;
2763 void wxListCtrl::SetSingleStyle( long style
, bool add
)
2765 long flag
= GetWindowStyle();
2769 if (style
& wxLC_MASK_TYPE
) flag
= flag
& ~wxLC_MASK_TYPE
;
2770 if (style
& wxLC_MASK_ALIGN
) flag
= flag
& ~wxLC_MASK_ALIGN
;
2771 if (style
& wxLC_MASK_SORT
) flag
= flag
& ~wxLC_MASK_SORT
;
2780 if (flag
& style
) flag
-= style
;
2783 SetWindowStyleFlag( flag
);
2786 void wxListCtrl::SetWindowStyleFlag( long flag
)
2790 m_mainWin
->DeleteEverything();
2794 GetClientSize( &width
, &height
);
2796 m_mainWin
->SetMode( flag
);
2798 if (flag
& wxLC_REPORT
)
2800 if (!HasFlag(wxLC_REPORT
))
2804 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
,
2805 wxPoint(0,0), wxSize(width
,23), wxTAB_TRAVERSAL
);
2806 if (HasFlag(wxLC_NO_HEADER
))
2807 m_headerWin
->Show( FALSE
);
2811 if (flag
& wxLC_NO_HEADER
)
2812 m_headerWin
->Show( FALSE
);
2814 m_headerWin
->Show( TRUE
);
2820 if (HasFlag(wxLC_REPORT
) && !(HasFlag(wxLC_NO_HEADER
)))
2822 m_headerWin
->Show( FALSE
);
2827 wxWindow::SetWindowStyleFlag( flag
);
2830 bool wxListCtrl::GetColumn(int col
, wxListItem
&item
) const
2832 m_mainWin
->GetColumn( col
, item
);
2836 bool wxListCtrl::SetColumn( int col
, wxListItem
& item
)
2838 m_mainWin
->SetColumn( col
, item
);
2842 int wxListCtrl::GetColumnWidth( int col
) const
2844 return m_mainWin
->GetColumnWidth( col
);
2847 bool wxListCtrl::SetColumnWidth( int col
, int width
)
2849 m_mainWin
->SetColumnWidth( col
, width
);
2853 int wxListCtrl::GetCountPerPage() const
2855 return m_mainWin
->GetCountPerPage(); // different from Windows ?
2858 bool wxListCtrl::GetItem( wxListItem
&info
) const
2860 m_mainWin
->GetItem( info
);
2864 bool wxListCtrl::SetItem( wxListItem
&info
)
2866 m_mainWin
->SetItem( info
);
2870 long wxListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
2873 info
.m_text
= label
;
2874 info
.m_mask
= wxLIST_MASK_TEXT
;
2875 info
.m_itemId
= index
;
2879 info
.m_image
= imageId
;
2880 info
.m_mask
|= wxLIST_MASK_IMAGE
;
2882 m_mainWin
->SetItem(info
);
2886 int wxListCtrl::GetItemState( long item
, long stateMask
) const
2888 return m_mainWin
->GetItemState( item
, stateMask
);
2891 bool wxListCtrl::SetItemState( long item
, long state
, long stateMask
)
2893 m_mainWin
->SetItemState( item
, state
, stateMask
);
2897 bool wxListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
2900 info
.m_image
= image
;
2901 info
.m_mask
= wxLIST_MASK_IMAGE
;
2902 info
.m_itemId
= item
;
2903 m_mainWin
->SetItem( info
);
2907 wxString
wxListCtrl::GetItemText( long item
) const
2910 info
.m_itemId
= item
;
2911 m_mainWin
->GetItem( info
);
2915 void wxListCtrl::SetItemText( long item
, const wxString
&str
)
2918 info
.m_mask
= wxLIST_MASK_TEXT
;
2919 info
.m_itemId
= item
;
2921 m_mainWin
->SetItem( info
);
2924 long wxListCtrl::GetItemData( long item
) const
2927 info
.m_itemId
= item
;
2928 m_mainWin
->GetItem( info
);
2932 bool wxListCtrl::SetItemData( long item
, long data
)
2935 info
.m_mask
= wxLIST_MASK_DATA
;
2936 info
.m_itemId
= item
;
2938 m_mainWin
->SetItem( info
);
2942 bool wxListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
2944 m_mainWin
->GetItemRect( item
, rect
);
2948 bool wxListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
2950 m_mainWin
->GetItemPosition( item
, pos
);
2954 bool wxListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
2959 int wxListCtrl::GetItemCount() const
2961 return m_mainWin
->GetItemCount();
2964 int wxListCtrl::GetColumnCount() const
2966 return m_mainWin
->GetColumnCount();
2969 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
2971 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
2974 int wxListCtrl::GetItemSpacing( bool isSmall
) const
2976 return m_mainWin
->GetItemSpacing( isSmall
);
2979 int wxListCtrl::GetSelectedItemCount() const
2981 return m_mainWin
->GetSelectedItemCount();
2984 wxColour
wxListCtrl::GetTextColour() const
2986 return GetForegroundColour();
2989 void wxListCtrl::SetTextColour(const wxColour
& col
)
2991 SetForegroundColour(col
);
2994 long wxListCtrl::GetTopItem() const
2999 long wxListCtrl::GetNextItem( long item
, int geom
, int state
) const
3001 return m_mainWin
->GetNextItem( item
, geom
, state
);
3004 wxImageList
*wxListCtrl::GetImageList(int which
) const
3006 if (which
== wxIMAGE_LIST_NORMAL
)
3008 return m_imageListNormal
;
3010 else if (which
== wxIMAGE_LIST_SMALL
)
3012 return m_imageListSmall
;
3014 else if (which
== wxIMAGE_LIST_STATE
)
3016 return m_imageListState
;
3018 return (wxImageList
*) NULL
;
3021 void wxListCtrl::SetImageList( wxImageList
*imageList
, int which
)
3023 m_mainWin
->SetImageList( imageList
, which
);
3026 bool wxListCtrl::Arrange( int WXUNUSED(flag
) )
3031 bool wxListCtrl::DeleteItem( long item
)
3033 m_mainWin
->DeleteItem( item
);
3037 bool wxListCtrl::DeleteAllItems()
3039 m_mainWin
->DeleteAllItems();
3043 bool wxListCtrl::DeleteAllColumns()
3045 for ( size_t n
= 0; n
< m_mainWin
->m_columns
.GetCount(); n
++ )
3051 void wxListCtrl::ClearAll()
3053 m_mainWin
->DeleteEverything();
3056 bool wxListCtrl::DeleteColumn( int col
)
3058 m_mainWin
->DeleteColumn( col
);
3062 void wxListCtrl::Edit( long item
)
3064 m_mainWin
->Edit( item
);
3067 bool wxListCtrl::EnsureVisible( long item
)
3069 m_mainWin
->EnsureVisible( item
);
3073 long wxListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
3075 return m_mainWin
->FindItem( start
, str
, partial
);
3078 long wxListCtrl::FindItem( long start
, long data
)
3080 return m_mainWin
->FindItem( start
, data
);
3083 long wxListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& WXUNUSED(pt
),
3084 int WXUNUSED(direction
))
3089 long wxListCtrl::HitTest( const wxPoint
&point
, int &flags
)
3091 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
3094 long wxListCtrl::InsertItem( wxListItem
& info
)
3096 m_mainWin
->InsertItem( info
);
3097 return info
.m_itemId
;
3100 long wxListCtrl::InsertItem( long index
, const wxString
&label
)
3103 info
.m_text
= label
;
3104 info
.m_mask
= wxLIST_MASK_TEXT
;
3105 info
.m_itemId
= index
;
3106 return InsertItem( info
);
3109 long wxListCtrl::InsertItem( long index
, int imageIndex
)
3112 info
.m_mask
= wxLIST_MASK_IMAGE
;
3113 info
.m_image
= imageIndex
;
3114 info
.m_itemId
= index
;
3115 return InsertItem( info
);
3118 long wxListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
3121 info
.m_text
= label
;
3122 info
.m_image
= imageIndex
;
3123 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
3124 info
.m_itemId
= index
;
3125 return InsertItem( info
);
3128 long wxListCtrl::InsertColumn( long col
, wxListItem
&item
)
3130 wxASSERT( m_headerWin
);
3131 m_mainWin
->InsertColumn( col
, item
);
3132 m_headerWin
->Refresh();
3137 long wxListCtrl::InsertColumn( long col
, const wxString
&heading
,
3138 int format
, int width
)
3141 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
3142 item
.m_text
= heading
;
3145 item
.m_mask
|= wxLIST_MASK_WIDTH
;
3146 item
.m_width
= width
;
3148 item
.m_format
= format
;
3150 return InsertColumn( col
, item
);
3153 bool wxListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
3159 // fn is a function which takes 3 long arguments: item1, item2, data.
3160 // item1 is the long data associated with a first item (NOT the index).
3161 // item2 is the long data associated with a second item (NOT the index).
3162 // data is the same value as passed to SortItems.
3163 // The return value is a negative number if the first item should precede the second
3164 // item, a positive number of the second item should precede the first,
3165 // or zero if the two items are equivalent.
3166 // data is arbitrary data to be passed to the sort function.
3168 bool wxListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
3170 m_mainWin
->SortItems( fn
, data
);
3174 void wxListCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
3176 if (!m_mainWin
->m_dirty
) return;
3180 GetClientSize( &cw
, &ch
);
3187 if (HasFlag(wxLC_REPORT
) && !HasFlag(wxLC_NO_HEADER
))
3189 m_headerWin
->GetPosition( &x
, &y
);
3190 m_headerWin
->GetSize( &w
, &h
);
3191 if ((x
!= 0) || (y
!= 0) || (w
!= cw
) || (h
!= 23))
3192 m_headerWin
->SetSize( 0, 0, cw
, 23 );
3194 m_mainWin
->GetPosition( &x
, &y
);
3195 m_mainWin
->GetSize( &w
, &h
);
3196 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
-24))
3197 m_mainWin
->SetSize( 0, 24, cw
, ch
-24 );
3201 m_mainWin
->GetPosition( &x
, &y
);
3202 m_mainWin
->GetSize( &w
, &h
);
3203 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
))
3204 m_mainWin
->SetSize( 0, 0, cw
, ch
);
3207 m_mainWin
->CalculatePositions();
3208 m_mainWin
->RealizeChanges();
3209 m_mainWin
->m_dirty
= FALSE
;
3210 m_mainWin
->Refresh();
3213 bool wxListCtrl::SetBackgroundColour( const wxColour
&colour
)
3215 if ( !wxWindow::SetBackgroundColour( colour
) )
3220 m_mainWin
->SetBackgroundColour( colour
);
3221 m_mainWin
->m_dirty
= TRUE
;
3226 // m_headerWin->SetBackgroundColour( colour );
3232 bool wxListCtrl::SetForegroundColour( const wxColour
&colour
)
3234 if ( !wxWindow::SetForegroundColour( colour
) )
3239 m_mainWin
->SetForegroundColour( colour
);
3240 m_mainWin
->m_dirty
= TRUE
;
3245 m_headerWin
->SetForegroundColour( colour
);
3251 bool wxListCtrl::SetFont( const wxFont
&font
)
3253 if ( !wxWindow::SetFont( font
) )
3258 m_mainWin
->SetFont( font
);
3259 m_mainWin
->m_dirty
= TRUE
;
3264 m_headerWin
->SetFont( font
);