1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "listctrl.h"
15 #include "wx/listctrl.h"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 IMPLEMENT_DYNAMIC_CLASS(wxListItemData
,wxObject
);
23 wxListItemData::wxListItemData(void)
34 wxListItemData::wxListItemData( const wxListItem
&info
)
38 m_colour
= info
.m_colour
;
42 void wxListItemData::SetItem( const wxListItem
&info
)
44 if (info
.m_mask
& wxLIST_MASK_TEXT
) m_text
= info
.m_text
;
45 if (info
.m_mask
& wxLIST_MASK_IMAGE
) m_image
= info
.m_image
;
46 if (info
.m_mask
& wxLIST_MASK_DATA
) m_data
= info
.m_data
;
47 m_colour
= info
.m_colour
;
50 m_width
= info
.m_width
;
54 void wxListItemData::SetText( const wxString
&s
)
59 void wxListItemData::SetImage( int image
)
64 void wxListItemData::SetData( long data
)
69 void wxListItemData::SetPosition( int x
, int y
)
75 void wxListItemData::SetSize( int const width
, int height
)
81 void wxListItemData::SetColour( wxColour
*col
)
86 bool wxListItemData::HasImage(void) const
88 return (m_image
>= 0);
91 bool wxListItemData::HasText(void) const
93 return (!m_text
.IsNull());
96 bool wxListItemData::IsHit( int x
, int y
) const
98 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
101 void wxListItemData::GetText( wxString
&s
)
106 int wxListItemData::GetX( void ) const
111 int wxListItemData::GetY( void ) const
116 int wxListItemData::GetWidth(void) const
121 int wxListItemData::GetHeight(void) const
126 int wxListItemData::GetImage(void) const
131 void wxListItemData::GetItem( wxListItem
&info
)
133 info
.m_text
= m_text
;
134 info
.m_image
= m_image
;
135 info
.m_data
= m_data
;
138 wxColour
*wxListItemData::GetColour(void)
143 //-----------------------------------------------------------------------------
145 //-----------------------------------------------------------------------------
147 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData
,wxObject
);
149 wxListHeaderData::wxListHeaderData(void)
160 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
168 void wxListHeaderData::SetItem( const wxListItem
&item
)
170 m_mask
= item
.m_mask
;
171 m_text
= item
.m_text
;
172 m_image
= item
.m_image
;
173 m_format
= item
.m_format
;
174 m_width
= item
.m_width
;
175 if (m_width
< 0) m_width
= 80;
176 if (m_width
< 6) m_width
= 6;
179 void wxListHeaderData::SetPosition( int x
, int y
)
185 void wxListHeaderData::SetHeight( int h
)
190 void wxListHeaderData::SetWidth( int w
)
193 if (m_width
< 0) m_width
= 80;
194 if (m_width
< 6) m_width
= 6;
197 void wxListHeaderData::SetFormat( int format
)
202 bool wxListHeaderData::HasImage(void) const
204 return (m_image
!= 0);
207 bool wxListHeaderData::HasText(void) const
209 return (m_text
.Length() > 0);
212 bool wxListHeaderData::IsHit( int x
, int y
) const
214 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
217 void wxListHeaderData::GetItem( wxListItem
&item
)
219 item
.m_mask
= m_mask
;
220 item
.m_text
= m_text
;
221 item
.m_image
= m_image
;
222 item
.m_format
= m_format
;
223 item
.m_width
= m_width
;
226 void wxListHeaderData::GetText( wxString
&s
)
231 int wxListHeaderData::GetImage(void) const
236 int wxListHeaderData::GetWidth(void) const
241 int wxListHeaderData::GetFormat(void) const
246 //-----------------------------------------------------------------------------
248 //-----------------------------------------------------------------------------
250 IMPLEMENT_DYNAMIC_CLASS(wxListLineData
,wxObject
);
252 wxListLineData::wxListLineData( wxListMainWindow
*owner
, int mode
, wxBrush
*hilightBrush
)
257 m_hilightBrush
= hilightBrush
;
258 m_items
.DeleteContents( TRUE
);
262 void wxListLineData::CalculateSize( wxPaintDC
*dc
, int spacing
)
269 m_bound_all
.width
= m_spacing
;
270 m_bound_all
.height
= m_spacing
+13;
271 wxNode
*node
= m_items
.First();
274 wxListItemData
*item
= (wxListItemData
*)node
->Data();
278 dc
->GetTextExtent( s
, &lw
, &lh
);
279 if (lw
> m_spacing
) m_bound_all
.width
= lw
;
285 wxNode
*node
= m_items
.First();
288 wxListItemData
*item
= (wxListItemData
*)node
->Data();
292 dc
->GetTextExtent( s
, &lw
, &lh
);
293 m_bound_all
.width
= lw
;
294 m_bound_all
.height
= lh
;
300 m_bound_all
.width
= 0;
301 m_bound_all
.height
= 0;
302 wxNode
*node
= m_items
.First();
305 wxListItemData
*item
= (wxListItemData
*)node
->Data();
308 if (s
.IsNull()) s
= "H";
310 dc
->GetTextExtent( s
, &lw
, &lh
);
311 item
->SetSize( item
->GetWidth(), lh
);
312 m_bound_all
.width
+= lw
;
313 m_bound_all
.height
= lh
;
321 void wxListLineData::SetPosition( wxPaintDC
*dc
, int x
, int y
, int window_width
)
329 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
330 AssignRect( m_bound_label
, 0, 0, 0, 0 );
331 AssignRect( m_bound_hilight
, m_bound_all
);
332 wxNode
*node
= m_items
.First();
335 wxListItemData
*item
= (wxListItemData
*)node
->Data();
336 if (item
->HasImage())
338 wxListItemData
*item
= (wxListItemData
*)node
->Data();
341 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
342 m_bound_icon
.x
= m_bound_all
.x
+ (m_spacing
/2) - (w
/2);
343 m_bound_icon
.y
= m_bound_all
.y
+ m_spacing
- h
- 5;
344 m_bound_icon
.width
= w
;
345 m_bound_icon
.height
= h
;
346 if (!item
->HasText())
348 AssignRect( m_bound_hilight
, m_bound_icon
);
349 m_bound_hilight
.x
-= 3;
350 m_bound_hilight
.y
-= 3;
351 m_bound_hilight
.width
+= 7;
352 m_bound_hilight
.height
+= 7;
360 dc
->GetTextExtent( s
, &lw
, &lh
);
361 if (m_bound_all
.width
> m_spacing
)
362 m_bound_label
.x
= m_bound_all
.x
;
364 m_bound_label
.x
= m_bound_all
.x
+ (m_spacing
/2) - lw
/2;
365 m_bound_label
.y
= m_bound_all
.y
+ m_bound_all
.height
- lh
;
366 m_bound_label
.width
= lw
;
367 m_bound_label
.height
= lh
;
368 AssignRect( m_bound_hilight
, m_bound_label
);
375 AssignRect( m_bound_label
, m_bound_all
);
376 AssignRect( m_bound_hilight
, m_bound_all
);
377 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
383 dc
->GetTextExtent( "H", &lw
, &lh
);
384 m_bound_all
.height
= lh
;
385 m_bound_all
.width
= window_width
;
386 AssignRect( m_bound_label
, m_bound_all
);
387 AssignRect( m_bound_hilight
, m_bound_all
);
388 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
389 m_bound_hilight
.width
= window_width
-10;
390 m_bound_label
.width
= window_width
-10;
396 void wxListLineData::SetColumnPosition( int index
, int x
)
399 wxNode
*node
= m_items
.Nth( i
);
402 wxListItemData
*item
= (wxListItemData
*)node
->Data();
403 item
->SetPosition( x
, m_bound_all
.y
);
407 void wxListLineData::GetSize( int &width
, int &height
)
409 width
= m_bound_all
.width
;
410 height
= m_bound_all
.height
;
413 void wxListLineData::GetExtent( int &x
, int &y
, int &width
, int &height
)
417 width
= m_bound_all
.width
;
418 height
= m_bound_all
.height
;
421 void wxListLineData::GetLabelExtent( int &x
, int &y
, int &width
, int &height
)
425 width
= m_bound_label
.width
;
426 height
= m_bound_label
.height
;
429 void wxListLineData::GetRect( wxRectangle
&rect
)
431 AssignRect( rect
, m_bound_all
);
434 long wxListLineData::IsHit( int x
, int y
)
436 wxNode
*node
= m_items
.First();
439 wxListItemData
*item
= (wxListItemData
*)node
->Data();
440 if (item
->HasImage() && IsInRect( x
, y
, m_bound_icon
)) return wxLIST_HITTEST_ONITEMICON
;
441 if (item
->HasText() && IsInRect( x
, y
, m_bound_label
)) return wxLIST_HITTEST_ONITEMLABEL
;
442 // if (!(item->HasImage() || item->HasText())) return 0;
444 // if there is no icon or text = empty
445 if (IsInRect( x
, y
, m_bound_all
)) return wxLIST_HITTEST_ONITEMICON
;
449 void wxListLineData::InitItems( int num
)
451 for (int i
= 0; i
< num
; i
++) m_items
.Append( new wxListItemData() );
454 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
456 wxNode
*node
= m_items
.Nth( index
);
459 wxListItemData
*item
= (wxListItemData
*)node
->Data();
460 item
->SetItem( info
);
464 void wxListLineData::GetItem( int const index
, wxListItem
&info
)
467 wxNode
*node
= m_items
.Nth( i
);
470 wxListItemData
*item
= (wxListItemData
*)node
->Data();
471 item
->GetItem( info
);
475 void wxListLineData::GetText( int index
, wxString
&s
)
478 wxNode
*node
= m_items
.Nth( i
);
482 wxListItemData
*item
= (wxListItemData
*)node
->Data();
487 void wxListLineData::SetText( int index
, const wxString s
)
490 wxNode
*node
= m_items
.Nth( i
);
493 wxListItemData
*item
= (wxListItemData
*)node
->Data();
498 int wxListLineData::GetImage( int index
)
501 wxNode
*node
= m_items
.Nth( i
);
504 wxListItemData
*item
= (wxListItemData
*)node
->Data();
505 return item
->GetImage();
510 void wxListLineData::DoDraw( wxPaintDC
*dc
, bool hilight
, bool paintBG
)
512 long dev_x
= dc
->LogicalToDeviceX( m_bound_all
.x
-2 );
513 long dev_y
= dc
->LogicalToDeviceY( m_bound_all
.y
-2 );
514 long dev_w
= dc
->LogicalToDeviceXRel( m_bound_all
.width
+4 );
515 long dev_h
= dc
->LogicalToDeviceYRel( m_bound_all
.height
+4 );
516 if (!m_owner
->IsExposed( dev_x
, dev_y
, dev_w
, dev_h
) ) return;
522 dc
->SetBrush( m_hilightBrush
);
523 dc
->SetPen( wxTRANSPARENT_PEN
);
527 dc
->SetBrush( wxWHITE_BRUSH
);
528 dc
->SetPen( wxTRANSPARENT_PEN
);
530 dc
->DrawRectangle( m_bound_hilight
.x
-2, m_bound_hilight
.y
-2,
531 m_bound_hilight
.width
+4, m_bound_hilight
.height
+4 );
533 if (m_mode
== wxLC_REPORT
)
536 wxNode
*node
= m_items
.First();
539 wxListItemData
*info
= (wxListItemData
*)node
->Data();
540 dc
->SetClippingRegion( info
->GetX(), info
->GetY(), info
->GetWidth(), info
->GetHeight() );
543 dc
->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
) );
545 dc
->SetTextForeground( info
->GetColour() );
546 dc
->DrawText( s
, info
->GetX()+2, info
->GetY() );
547 dc
->DestroyClippingRegion();
553 wxNode
*node
= m_items
.First();
556 wxListItemData
*item
= (wxListItemData
*)node
->Data();
557 if (item
->HasImage())
559 m_owner
->DrawImage( item
->GetImage(), dc
, m_bound_icon
.x
, m_bound_icon
.y
);
566 dc
->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
) );
568 dc
->SetTextForeground( item
->GetColour() );
569 dc
->DrawText( s
, m_bound_label
.x
, m_bound_label
.y
);
575 void wxListLineData::Hilight( bool on
)
577 if (on
== m_hilighted
) return;
579 m_owner
->SelectLine( this );
581 m_owner
->DeselectLine( this );
585 void wxListLineData::ReverseHilight( void )
587 m_hilighted
= !m_hilighted
;
589 m_owner
->SelectLine( this );
591 m_owner
->DeselectLine( this );
594 void wxListLineData::DrawRubberBand( wxPaintDC
*dc
, bool on
)
598 dc
->SetPen( wxBLACK_PEN
);
599 dc
->SetBrush( wxTRANSPARENT_BRUSH
);
600 dc
->DrawRectangle( m_bound_hilight
.x
-2, m_bound_hilight
.y
-2,
601 m_bound_hilight
.width
+4, m_bound_hilight
.height
+4 );
605 void wxListLineData::Draw( wxPaintDC
*dc
)
607 DoDraw( dc
, m_hilighted
, m_hilighted
);
610 bool wxListLineData::IsInRect( int x
, int y
, const wxRectangle
&rect
)
612 return ((x
>= rect
.x
) && (x
<= rect
.x
+rect
.width
) && (y
>= rect
.y
) && (y
<= rect
.y
+rect
.height
));
615 bool wxListLineData::IsHilighted( void )
620 void wxListLineData::AssignRect( wxRectangle
&dest
, int x
, int y
, int width
, int height
)
625 dest
.height
= height
;
628 void wxListLineData::AssignRect( wxRectangle
&dest
, const wxRectangle
&source
)
632 dest
.width
= source
.width
;
633 dest
.height
= source
.height
;
636 //-----------------------------------------------------------------------------
637 // wxListHeaderWindow
638 //-----------------------------------------------------------------------------
640 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
);
642 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
643 EVT_PAINT (wxListHeaderWindow::OnPaint
)
644 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
645 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
648 wxListHeaderWindow::wxListHeaderWindow( void )
651 m_currentCursor
= NULL
;
652 m_resizeCursor
= NULL
;
655 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
, wxWindowID id
, wxListMainWindow
*owner
,
656 const wxPoint
&pos
, const wxSize
&size
,
657 long style
, const wxString
&name
) :
658 wxWindow( win
, id
, pos
, size
, style
, name
)
661 // m_currentCursor = wxSTANDARD_CURSOR;
662 m_currentCursor
= NULL
;
663 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
666 void wxListHeaderWindow::DoDrawRect( wxPaintDC
*dc
, int x
, int y
, int w
, int h
)
670 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
672 dc
->SetPen( *wxBLACK_PEN
);
673 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
674 dc
->DrawRectangle( x
, y
+h
, w
, 1 ); // bottom (outer)
676 dc
->SetPen( *wxMEDIUM_GREY_PEN
);
677 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
678 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
680 dc
->SetPen( *wxWHITE_PEN
);
681 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
682 // dc->DrawRectangle( x, y+1, w-m_corner, 1 ); // top (inner)
683 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
684 // dc->DrawRectangle( x+1, y, 1, h-1 ); // left (inner)
687 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
689 wxPaintDC
dc( this );
694 dc
.SetFont( wxSystemSettings::GetSystemFont( wxSYS_SYSTEM_FONT
) );
700 GetClientSize( &w
, &h
);
702 dc
.SetTextForeground( *wxBLACK
);
706 int numColumns
= m_owner
->GetColumnCount();
708 for (int i
= 0; i
< numColumns
; i
++)
710 m_owner
->GetColumn( i
, item
);
711 int cw
= item
.m_width
-2;
712 if ((i
+1 == numColumns
) || (x
+item
.m_width
> w
-5)) cw
= w
-x
-1;
713 dc
.SetPen( *wxWHITE_PEN
);
715 DoDrawRect( &dc
, x
, y
, cw
, h
-2 );
716 dc
.SetClippingRegion( x
, y
, cw
-5, h
-4 );
717 dc
.DrawText( item
.m_text
, x
+4, y
+3 );
718 dc
.DestroyClippingRegion();
725 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
729 event
.Position( &fx
, &fy
);
736 for (int j
= 0; j
< m_owner
->GetColumnCount(); j
++)
738 xpos
+= m_owner
->GetColumnWidth( j
);
739 if ((abs(x
-xpos
) < 2) && (y
< 14)) { hit
= TRUE
; break; }
743 if (m_currentCursor
== wxSTANDARD_CURSOR
) SetCursor( m_resizeCursor
);
744 m_currentCursor
= m_resizeCursor
;
748 if (m_currentCursor
!= wxSTANDARD_CURSOR
) SetCursor( wxSTANDARD_CURSOR
);
749 m_currentCursor
= wxSTANDARD_CURSOR
;
754 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
759 //-----------------------------------------------------------------------------
760 // wxListRenameTimer (internal)
761 //-----------------------------------------------------------------------------
763 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
768 void wxListRenameTimer::Notify()
770 m_owner
->OnRenameTimer();
773 //-----------------------------------------------------------------------------
774 // wxListTextCtrl (internal)
775 //-----------------------------------------------------------------------------
777 IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl
,wxTextCtrl
);
779 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
780 EVT_CHAR (wxListTextCtrl::OnChar
)
781 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
784 wxListTextCtrl::wxListTextCtrl( wxWindow
*parent
, const wxWindowID id
,
785 bool *accept
, wxString
*res
, wxListMainWindow
*owner
,
786 const wxString
&value
, const wxPoint
&pos
, const wxSize
&size
,
787 int style
, const wxValidator
& validator
, const wxString
&name
) :
788 wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
795 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
797 if (event
.m_keyCode
== WXK_RETURN
)
800 (*m_res
) = GetValue();
801 m_owner
->OnRenameAccept();
806 if (event
.m_keyCode
== WXK_ESCAPE
)
817 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
826 //-----------------------------------------------------------------------------
828 //-----------------------------------------------------------------------------
830 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
);
832 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
833 EVT_PAINT (wxListMainWindow::OnPaint
)
834 EVT_SIZE (wxListMainWindow::OnSize
)
835 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
836 EVT_CHAR (wxListMainWindow::OnChar
)
837 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
838 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
841 wxListMainWindow::wxListMainWindow( void )
844 m_lines
.DeleteContents( TRUE
);
845 m_columns
.DeleteContents( TRUE
);
848 m_hilightBrush
= NULL
;
853 m_small_image_list
= NULL
;
854 m_normal_image_list
= NULL
;
855 m_small_spacing
= 30;
856 m_normal_spacing
= 40;
859 m_lastOnSame
= FALSE
;
860 // m_renameTimer = new wxListRenameTimer( this );
861 m_renameTimer
= NULL
;
866 wxListMainWindow::wxListMainWindow( wxWindow
*parent
, wxWindowID id
,
867 const wxPoint
&pos
, const wxSize
&size
,
868 long style
, const wxString
&name
) :
869 wxScrolledWindow( parent
, id
, pos
, size
, style
, name
)
872 m_lines
.DeleteContents( TRUE
);
873 m_columns
.DeleteContents( TRUE
);
877 m_hilightBrush
= new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
), wxSOLID
);
878 m_small_image_list
= NULL
;
879 m_normal_image_list
= NULL
;
880 m_small_spacing
= 30;
881 m_normal_spacing
= 40;
882 // AllowDoubleClick( TRUE );
883 m_myFont
= wxNORMAL_FONT
;
890 if (m_mode
& wxLC_REPORT
)
900 SetScrollbars( m_xScroll
, m_yScroll
, 0, 0, 0, 0 );
903 m_lastOnSame
= FALSE
;
904 m_renameTimer
= new wxListRenameTimer( this );
905 m_renameAccept
= FALSE
;
906 // m_text = new wxRawListTextCtrl( GetParent(), "", &m_renameAccept, &m_renameRes, this, 10, 10, 40, 10 );
907 // m_text->Show( FALSE );
909 SetBackgroundColour( *wxWHITE
);
912 wxListMainWindow::~wxListMainWindow( void )
914 // if (m_hilightColour) delete m_hilightColour;
915 // if (m_hilightBrush) delete m_hilightBrush;
916 // if (m_myFont) delete m_myFont;
917 delete m_renameTimer
;
921 void wxListMainWindow::RefreshLine( wxListLineData
*line
)
931 line
->GetExtent( x
, y
, w
, h
);
933 dc
.LogicalToDeviceX(x
-3),
934 dc
.LogicalToDeviceY(y
-3),
935 dc
.LogicalToDeviceXRel(w
+6),
936 dc
.LogicalToDeviceXRel(h
+6) );
937 Refresh( TRUE
, &rect
);
941 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
945 wxPaintDC
dc( this );
950 // dc.SetFont( *m_myFont );
951 dc
.SetFont( wxSystemSettings::GetSystemFont( wxSYS_SYSTEM_FONT
) );
953 wxNode
*node
= m_lines
.First();
956 wxListLineData
*line
= (wxListLineData
*)node
->Data();
960 if (m_current
) m_current
->DrawRubberBand( &dc
, m_hasFocus
);
965 void wxListMainWindow::HilightAll( bool on
)
967 wxNode
*node
= m_lines
.First();
970 wxListLineData
*line
= (wxListLineData
*)node
->Data();
971 if (line
->IsHilighted() != on
)
980 void wxListMainWindow::ActivateLine( wxListLineData
*line
)
982 if (!m_parent
) return;
983 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, m_parent
->GetId() );
984 le
.SetEventObject( m_parent
);
986 le
.m_itemIndex
= GetIndexOfLine( line
);
988 line
->GetItem( 0, le
.m_item
);
992 void wxListMainWindow::SendNotify( wxListLineData
*line
, wxEventType command
)
994 if (!m_parent
) return;
995 wxListEvent
le( command
, m_parent
->GetId() );
996 le
.SetEventObject( m_parent
);
998 le
.m_itemIndex
= GetIndexOfLine( line
);
1000 line
->GetItem( 0, le
.m_item
);
1004 void wxListMainWindow::FocusLine( wxListLineData
*WXUNUSED(line
) )
1006 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED );
1009 void wxListMainWindow::UnfocusLine( wxListLineData
*WXUNUSED(line
) )
1011 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED );
1014 void wxListMainWindow::SelectLine( wxListLineData
*line
)
1016 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_SELECTED
);
1019 void wxListMainWindow::DeselectLine( wxListLineData
*line
)
1021 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1024 void wxListMainWindow::DeleteLine( wxListLineData
*line
)
1026 SendNotify( line
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
1029 void wxListMainWindow::StartLabelEdit( wxListLineData
*line
)
1031 SendNotify( line
, wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
);
1034 void wxListMainWindow::RenameLine( wxListLineData
*line
, const wxString
&newName
)
1036 if (!m_parent
) return;
1038 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, m_parent
->GetId() );
1039 le
.SetEventObject( m_parent
);
1041 le
.m_itemIndex
= GetIndexOfLine( line
);
1043 line
->GetItem( 0, le
.m_item
);
1044 le
.m_item
.m_text
= newName
;
1048 void wxListMainWindow::OnRenameTimer()
1050 StartLabelEdit( m_current
);
1052 m_current
->GetText( 0, s
);
1057 m_current
->GetLabelExtent( x
, y
, w
, h
);
1059 wxClientDC
dc(this);
1061 x
= dc
.LogicalToDeviceX( x
);
1062 y
= dc
.LogicalToDeviceY( y
);
1064 wxListTextCtrl
*text
= new wxListTextCtrl(
1065 this, -1, &m_renameAccept
, &m_renameRes
, this, s
, wxPoint(x
-4,y
-4), wxSize(w
+11,h
+8) );
1068 m_text->SetSize( x+3, y+3, w+6, h+6 );
1069 m_text->SetValue( s );
1070 m_text->Show( TRUE );
1074 char *res = wxGetTextFromUser( _("Enter new name:"), "", s );
1079 RenameLine( m_current, s );
1084 void wxListMainWindow::OnRenameAccept()
1086 RenameLine( m_current
, m_renameRes
);
1089 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
1091 if (m_parent
->ProcessEvent( event
)) return;
1093 if (!m_current
) return;
1094 if (m_dirty
) return;
1096 wxClientDC
dc(this);
1098 long x
= dc
.DeviceToLogicalX( (long)event
.GetX() );
1099 long y
= dc
.DeviceToLogicalY( (long)event
.GetY() );
1102 wxNode
*node
= m_lines
.First();
1103 wxListLineData
*line
= NULL
;
1106 line
= (wxListLineData
*)node
->Data();
1107 hitResult
= line
->IsHit( x
, y
);
1108 if (hitResult
) break;
1110 node
= node
->Next();
1113 if (!event
.Dragging())
1118 if (event
.Dragging() && (m_dragCount
> 3))
1121 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_DRAG
, m_parent
->GetId() );
1122 le
.SetEventObject( this );
1131 if (event
.ButtonDClick())
1134 m_lastOnSame
= FALSE
;
1135 m_renameTimer
->Stop();
1136 ActivateLine( line
);
1140 if (event
.LeftUp() && m_lastOnSame
)
1143 if ((line
== m_current
) &&
1144 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) /* &&
1145 (m_mode & wxLC_ICON) */ )
1147 m_renameTimer
->Start( 100, TRUE
);
1149 m_lastOnSame
= FALSE
;
1153 if (event
.LeftDown())
1156 wxListLineData
*oldCurrent
= m_current
;
1157 if (m_mode
& wxLC_SINGLE_SEL
)
1160 HilightAll( FALSE
);
1161 m_current
->ReverseHilight();
1162 RefreshLine( m_current
);
1166 if (event
.ShiftDown())
1169 m_current
->ReverseHilight();
1170 RefreshLine( m_current
);
1172 else if (event
.ControlDown())
1175 int numOfCurrent
= -1;
1176 node
= m_lines
.First();
1179 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1181 if (test_line
== oldCurrent
) break;
1182 node
= node
->Next();
1185 node
= m_lines
.First();
1188 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1190 if (test_line
== line
) break;
1191 node
= node
->Next();
1194 if (numOfLine
< numOfCurrent
)
1195 { int i
= numOfLine
; numOfLine
= numOfCurrent
; numOfCurrent
= i
; }
1196 wxNode
*node
= m_lines
.Nth( numOfCurrent
);
1197 for (int i
= 0; i
<= numOfLine
-numOfCurrent
; i
++)
1199 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1200 test_line
->Hilight(TRUE
);
1201 RefreshLine( test_line
);
1202 node
= node
->Next();
1208 HilightAll( FALSE
);
1209 m_current
->ReverseHilight();
1210 RefreshLine( m_current
);
1213 if (m_current
!= oldCurrent
)
1215 RefreshLine( oldCurrent
);
1216 UnfocusLine( oldCurrent
);
1217 FocusLine( m_current
);
1219 m_lastOnSame
= (m_current
== oldCurrent
);
1225 void wxListMainWindow::MoveToFocus( void )
1227 if (!m_current
) return;
1233 m_current->GetExtent( x, y, w, h );
1236 GetClientSize( &w_p, &h_p );
1237 if (m_mode & wxLC_REPORT)
1239 if (GetScrollPos( wxHORIZONTAL ) != 0) SetScrollPos( wxHORIZONTAL, 0);
1240 int y_s = m_yScroll*GetScrollPos( wxVERTICAL );
1241 if ((y > y_s) && (y+h < y_s+h_p)) return;
1242 if (y-y_s < 5) SetScrollPos( wxVERTICAL, (y-5)/m_yScroll );
1243 if (y+h+5 > y_s+h_p) SetScrollPos( wxVERTICAL, (y+h-h_p+h+5)/m_yScroll );
1247 if (GetScrollPos( wxVERTICAL ) != 0) SetScrollPos( wxVERTICAL, 0);
1248 int x_s = m_xScroll*GetScrollPos( wxHORIZONTAL );
1249 if ((x > x_s) && (x+w < x_s+w_p)) return;
1250 if (x-x_s < 5) SetScrollPos( wxHORIZONTAL, (x-5)/m_xScroll );
1251 if (x+w > x_s+w_p) SetScrollPos( wxHORIZONTAL, (x+w-w_p+5)/m_xScroll );
1256 void wxListMainWindow::OnArrowChar( wxListLineData
*newCurrent
, bool shiftDown
)
1258 if ((m_mode
& wxLC_SINGLE_SEL
) || (m_usedKeys
== FALSE
)) m_current
->Hilight( FALSE
);
1259 wxListLineData
*oldCurrent
= m_current
;
1260 m_current
= newCurrent
;
1262 if (shiftDown
|| (m_mode
& wxLC_SINGLE_SEL
)) m_current
->Hilight( TRUE
);
1263 RefreshLine( m_current
);
1264 RefreshLine( oldCurrent
);
1265 FocusLine( m_current
);
1266 UnfocusLine( oldCurrent
);
1269 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
1272 if (event.KeyCode() == WXK_TAB)
1274 if (event.ShiftDown())
1281 if (!m_current
) return;
1282 switch (event
.KeyCode())
1286 wxNode
*node
= m_lines
.Member( m_current
)->Previous();
1287 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1292 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1293 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1298 wxNode
*node
= m_lines
.Last();
1299 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1304 wxNode
*node
= m_lines
.First();
1305 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1311 if (m_mode
& wxLC_REPORT
) { steps
= m_visibleLines
-1; }
1315 wxNode
*node
= m_lines
.First();
1316 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); };
1317 steps
= pos
% m_visibleLines
;
1319 wxNode
*node
= m_lines
.Member( m_current
);
1320 for (int i
= 0; i
< steps
; i
++) if (node
->Previous()) node
= node
->Previous();
1321 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1327 if (m_mode
& wxLC_REPORT
) { steps
= m_visibleLines
-1; }
1330 int pos
= 0; wxNode
*node
= m_lines
.First();
1331 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); };
1332 steps
= m_visibleLines
-(pos
% m_visibleLines
)-1;
1334 wxNode
*node
= m_lines
.Member( m_current
);
1335 for (int i
= 0; i
< steps
; i
++) if (node
->Next()) node
= node
->Next();
1336 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1341 if (!(m_mode
& wxLC_REPORT
))
1343 wxNode
*node
= m_lines
.Member( m_current
);
1344 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Previous()) node
= node
->Previous();
1345 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1351 if (!(m_mode
& wxLC_REPORT
))
1353 wxNode
*node
= m_lines
.Member( m_current
);
1354 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Next()) node
= node
->Next();
1355 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1361 m_current
->ReverseHilight();
1362 RefreshLine( m_current
);
1367 if (!(m_mode
& wxLC_SINGLE_SEL
))
1369 wxListLineData
*oldCurrent
= m_current
;
1370 m_current
->ReverseHilight();
1371 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1372 if (node
) m_current
= (wxListLineData
*)node
->Data();
1374 RefreshLine( oldCurrent
);
1375 RefreshLine( m_current
);
1376 UnfocusLine( oldCurrent
);
1377 FocusLine( m_current
);
1384 ActivateLine( m_current
);
1396 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1399 RefreshLine( m_current
);
1401 if (!m_parent
) return;
1403 wxFocusEvent
event( wxEVT_SET_FOCUS
, m_parent
->GetId() );
1404 event
.SetEventObject( m_parent
);
1405 m_parent
->ProcessEvent( event
);
1408 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1411 RefreshLine( m_current
);
1414 void wxListMainWindow::OnSize( wxSizeEvent
&WXUNUSED(event
) )
1417 We don't even allow the wxScrolledWindow::AdjustScrollbars() call
1419 CalculatePositions();
1420 printf( "OnSize::Refresh.\n" );
1426 wxFont
*wxListMainWindow::GetMyFont( void )
1431 void wxListMainWindow::DrawImage( int index
, wxPaintDC
*dc
, int x
, int y
)
1433 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1435 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1438 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1440 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1444 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
)
1446 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1448 m_normal_image_list
->GetSize( index
, width
, height
);
1451 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1453 m_small_image_list
->GetSize( index
, width
, height
);
1460 int wxListMainWindow::GetTextLength( wxString
&s
)
1462 wxPaintDC
dc( this );
1465 dc
.GetTextExtent( s
, &lw
, &lh
);
1469 int wxListMainWindow::GetIndexOfLine( const wxListLineData
*line
)
1472 wxNode
*node
= m_lines
.First();
1475 if (line
== (wxListLineData
*)node
->Data()) return i
;
1477 node
= node
->Next();
1482 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
1485 if (which
== wxIMAGE_LIST_NORMAL
) m_normal_image_list
= imageList
;
1486 if (which
== wxIMAGE_LIST_SMALL
) m_small_image_list
= imageList
;
1489 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
1494 m_small_spacing
= spacing
;
1498 m_normal_spacing
= spacing
;
1502 int wxListMainWindow::GetItemSpacing( bool isSmall
)
1504 if (isSmall
) return m_small_spacing
; else return m_normal_spacing
;
1507 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
1510 wxNode
*node
= m_columns
.Nth( col
);
1513 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
)+7;
1514 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1515 column
->SetItem( item
);
1519 void wxListMainWindow::SetColumnWidth( int col
, int width
)
1522 wxNode
*node
= m_columns
.Nth( col
);
1525 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1526 column
->SetWidth( width
);
1530 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
)
1532 wxNode
*node
= m_columns
.Nth( col
);
1535 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1536 column
->GetItem( item
);
1548 int wxListMainWindow::GetColumnWidth( int col
)
1550 wxNode
*node
= m_columns
.Nth( col
);
1553 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1554 return column
->GetWidth();
1560 int wxListMainWindow::GetColumnCount( void )
1562 return m_columns
.Number();
1565 int wxListMainWindow::GetCountPerPage( void )
1567 return m_visibleLines
;
1570 void wxListMainWindow::SetItem( wxListItem
&item
)
1573 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
1576 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1577 if (m_mode
& wxLC_REPORT
) item
.m_width
= GetColumnWidth( item
.m_col
)-3;
1578 line
->SetItem( item
.m_col
, item
);
1582 void wxListMainWindow::SetItemState( long item
, long state
, long stateMask
)
1584 // m_dirty = TRUE; no recalcs needed
1585 wxListLineData
*oldCurrent
= m_current
;
1586 if (stateMask
& wxLIST_STATE_FOCUSED
)
1588 wxNode
*node
= m_lines
.Nth( item
);
1591 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1592 UnfocusLine( m_current
);
1594 FocusLine( m_current
);
1595 RefreshLine( m_current
);
1596 RefreshLine( oldCurrent
);
1599 if (stateMask
& wxLIST_STATE_SELECTED
)
1601 wxNode
*node
= m_lines
.Nth( item
);
1604 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1605 bool on
= state
& wxLIST_STATE_SELECTED
;
1606 line
->Hilight( on
);
1607 RefreshLine( m_current
);
1608 RefreshLine( oldCurrent
);
1613 int wxListMainWindow::GetItemState( long item
, long stateMask
)
1615 int ret
= wxLIST_STATE_DONTCARE
;
1616 if (stateMask
& wxLIST_STATE_FOCUSED
)
1618 wxNode
*node
= m_lines
.Nth( item
);
1621 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1622 if (line
== m_current
) ret
|= wxLIST_STATE_FOCUSED
;
1625 if (stateMask
& wxLIST_STATE_SELECTED
)
1627 wxNode
*node
= m_lines
.Nth( item
);
1630 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1631 if (line
->IsHilighted()) ret
|= wxLIST_STATE_FOCUSED
;
1637 void wxListMainWindow::GetItem( wxListItem
&item
)
1639 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
1642 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1643 line
->GetItem( item
.m_col
, item
);
1654 int wxListMainWindow::GetItemCount( void )
1656 return m_lines
.Number();
1659 void wxListMainWindow::GetItemRect( long index
, wxRectangle
&rect
)
1661 wxNode
*node
= m_lines
.Nth( index
);
1664 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1665 line
->GetRect( rect
);
1676 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
)
1678 wxNode
*node
= m_lines
.Nth( item
);
1682 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1683 line
->GetRect( rect
);
1695 int wxListMainWindow::GetSelectedItemCount( void )
1698 wxNode
*node
= m_lines
.First();
1701 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1702 if (line
->IsHilighted()) ret
++;
1703 node
= node
->Next();
1708 void wxListMainWindow::SetMode( long mode
)
1715 if (m_mode
& wxLC_REPORT
)
1727 long wxListMainWindow::GetMode( void ) const
1732 void wxListMainWindow::CalculatePositions( void )
1734 wxPaintDC
dc( this );
1735 dc
.SetFont( wxSystemSettings::GetSystemFont( wxSYS_SYSTEM_FONT
) );
1737 int iconSpacing
= 0;
1738 if (m_mode
& wxLC_ICON
) iconSpacing
= m_normal_spacing
;
1739 if (m_mode
& wxLC_SMALL_ICON
) iconSpacing
= m_small_spacing
;
1740 wxNode
*node
= m_lines
.First();
1743 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1744 line
->CalculateSize( &dc
, iconSpacing
);
1745 node
= node
->Next();
1750 int lineSpacing
= 0;
1752 node
= m_lines
.First();
1755 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1757 line
->GetSize( dummy
, lineSpacing
);
1763 lineSpacing
= 6 + (int)dc
.GetCharHeight();
1766 int clientWidth
= 0;
1767 int clientHeight
= 0;
1769 if (m_mode
& wxLC_REPORT
)
1773 int entireHeight
= m_lines
.Number() * lineSpacing
+ 10;
1774 SetScrollbars( m_xScroll
, m_yScroll
, 0, (entireHeight
+10) / m_yScroll
, 0, 0, TRUE
);
1775 GetClientSize( &clientWidth
, &clientHeight
);
1776 node
= m_lines
.First();
1779 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1780 line
->SetPosition( &dc
, x
, y
, clientWidth
);
1782 for (int i
= 0; i
< GetColumnCount(); i
++)
1784 line
->SetColumnPosition( i
, col_x
);
1785 col_x
+= GetColumnWidth( i
);
1788 node
= node
->Next();
1793 // At first, we try without any scrollbar
1794 GetSize( &clientWidth
, &clientHeight
);
1796 int entireWidth
= 0;
1798 for (int tries
= 0; tries
< 2; tries
++)
1804 node
= m_lines
.First();
1807 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1808 line
->SetPosition( &dc
, x
, y
, clientWidth
);
1809 line
->GetSize( lineWidth
, lineHeight
);
1810 if (lineWidth
> maxWidth
) maxWidth
= lineWidth
;
1812 if (y
+lineHeight
> clientHeight
-4)
1816 entireWidth
+= maxWidth
+13;
1819 node
= node
->Next();
1820 if (!node
) entireWidth
+= maxWidth
;
1821 if ((tries
== 0) && (entireWidth
> clientWidth
))
1823 clientHeight
-= 14; // scrollbar height
1826 if (!node
) tries
= 1;
1829 SetScrollbars( m_xScroll
, m_yScroll
, (entireWidth
+15) / m_xScroll
, 0, 0, 0, TRUE
);
1831 m_visibleLines
= (clientHeight
-4) / (lineSpacing
);
1834 void wxListMainWindow::RealizeChanges( void )
1838 wxNode
*node
= m_lines
.First();
1839 if (node
) m_current
= (wxListLineData
*)node
->Data();
1843 FocusLine( m_current
);
1844 if (m_mode
& wxLC_SINGLE_SEL
) m_current
->Hilight( TRUE
);
1848 long wxListMainWindow::GetNextItem( long item
, int WXUNUSED(geometry
), int state
)
1851 if (item
> 0) ret
= item
;
1852 wxNode
*node
= m_lines
.Nth( ret
);
1855 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1856 if ((state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
)) return ret
;
1857 if ((state
& wxLIST_STATE_SELECTED
) && (line
->IsHilighted())) return ret
;
1858 if (!state
) return ret
;
1860 node
= node
->Next();
1865 void wxListMainWindow::DeleteItem( long index
)
1868 wxNode
*node
= m_lines
.Nth( index
);
1871 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1872 if (m_current
== line
) m_current
= NULL
;
1874 m_lines
.DeleteNode( node
);
1878 void wxListMainWindow::DeleteColumn( int col
)
1881 wxNode
*node
= m_columns
.Nth( col
);
1882 if (node
) m_columns
.DeleteNode( node
);
1885 void wxListMainWindow::DeleteAllItems( void )
1889 wxNode
*node
= m_lines
.First();
1892 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1894 node
= node
->Next();
1899 void wxListMainWindow::DeleteEverything( void )
1903 wxNode
*node
= m_lines
.First();
1906 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1908 node
= node
->Next();
1915 void wxListMainWindow::EnsureVisible( long index
)
1917 wxListLineData
*oldCurrent
= m_current
;
1920 wxNode
*node
= m_lines
.Nth( i
);
1921 if (node
) m_current
= (wxListLineData
*)node
->Data();
1922 if (m_current
) MoveToFocus();
1923 m_current
= oldCurrent
;
1926 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
1930 if (pos
< 0) pos
= 0;
1931 wxNode
*node
= m_lines
.Nth( pos
);
1934 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1936 line
->GetText( 0, s
);
1937 if (s
== tmp
) return pos
;
1938 node
= node
->Next();
1944 long wxListMainWindow::FindItem(long start
, long data
)
1947 if (pos
< 0) pos
= 0;
1948 wxNode
*node
= m_lines
.Nth( pos
);
1951 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1953 line
->GetItem( 0, item
);
1954 if (item
.m_data
== data
) return pos
;
1955 node
= node
->Next();
1961 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
1963 wxNode
*node
= m_lines
.First();
1967 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1968 long ret
= line
->IsHit( x
, y
);
1974 node
= node
->Next();
1980 void wxListMainWindow::InsertItem( wxListItem
&item
)
1984 if (m_mode
& wxLC_REPORT
) mode
= wxLC_REPORT
;
1985 else if (m_mode
& wxLC_LIST
) mode
= wxLC_LIST
;
1986 else if (m_mode
& wxLC_ICON
) mode
= wxLC_ICON
;
1987 else if (m_mode
& wxLC_SMALL_ICON
) mode
= wxLC_ICON
; // no typo
1988 wxListLineData
*line
= new wxListLineData( this, mode
, m_hilightBrush
);
1989 if (m_mode
& wxLC_REPORT
)
1991 line
->InitItems( GetColumnCount() );
1992 item
.m_width
= GetColumnWidth( 0 )-3;
1995 line
->InitItems( 1 );
1996 line
->SetItem( 0, item
);
1997 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
1999 m_lines
.Insert( node
, line
);
2001 m_lines
.Append( line
);
2004 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
2007 if (m_mode
& wxLC_REPORT
)
2009 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
);
2010 wxListHeaderData
*column
= new wxListHeaderData( item
);
2011 wxNode
*node
= m_columns
.Nth( col
);
2013 m_columns
.Insert( node
, column
);
2015 m_columns
.Append( column
);
2019 wxListCtrlCompare list_ctrl_compare_func_2
;
2020 long list_ctrl_compare_data
;
2022 int list_ctrl_compare_func_1( const void *arg1
, const void *arg2
)
2024 wxListLineData
*line1
= *((wxListLineData
**)arg1
);
2025 wxListLineData
*line2
= *((wxListLineData
**)arg2
);
2027 line1
->GetItem( 0, item
);
2028 long data1
= item
.m_data
;
2029 line2
->GetItem( 0, item
);
2030 long data2
= item
.m_data
;
2031 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
2034 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
2036 list_ctrl_compare_func_2
= fn
;
2037 list_ctrl_compare_data
= data
;
2038 m_lines
.Sort( list_ctrl_compare_func_1
);
2041 bool wxListMainWindow::OnListNotify( wxListEvent
&event
)
2043 if (m_parent
) m_parent
->ProcessEvent( event
);
2047 // -------------------------------------------------------------------------------------
2049 // -------------------------------------------------------------------------------------
2051 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
2053 wxListItem::wxListItem(void)
2062 m_format
= wxLIST_FORMAT_CENTRE
;
2067 // -------------------------------------------------------------------------------------
2069 // -------------------------------------------------------------------------------------
2071 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxCommandEvent
)
2073 wxListEvent::wxListEvent( wxEventType commandType
, int id
):
2074 wxCommandEvent( commandType
, id
)
2079 m_cancelled
= FALSE
;
2082 // -------------------------------------------------------------------------------------
2084 // -------------------------------------------------------------------------------------
2086 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
2088 BEGIN_EVENT_TABLE(wxListCtrl
,wxControl
)
2089 EVT_SIZE (wxListCtrl::OnSize
)
2090 EVT_IDLE (wxListCtrl::OnIdle
)
2093 wxListCtrl::wxListCtrl(void)
2095 m_imageListNormal
= NULL
;
2096 m_imageListSmall
= NULL
;
2097 m_imageListState
= NULL
;
2100 wxListCtrl::wxListCtrl( wxWindow
*parent
, wxWindowID id
,
2101 const wxPoint
&pos
, const wxSize
&size
,
2102 long style
, const wxString
&name
)
2105 Create( parent
, id
, pos
, size
, style
, name
);
2108 wxListCtrl::~wxListCtrl(void)
2112 bool wxListCtrl::Create( wxWindow
*parent
, wxWindowID id
,
2113 const wxPoint
&pos
, const wxSize
&size
,
2114 long style
, const wxString
&name
)
2116 m_imageListNormal
= NULL
;
2117 m_imageListSmall
= NULL
;
2118 m_imageListState
= NULL
;
2122 if ((s
& wxLC_REPORT
== 0) &&
2123 (s
& wxLC_LIST
== 0) &&
2124 (s
& wxLC_ICON
== 0))
2127 bool ret
= wxControl::Create( parent
, id
, pos
, size
, s
, name
);
2129 m_mainWin
= new wxListMainWindow( this, -1, wxPoint(0,0), size
, s
);
2131 if (GetWindowStyleFlag() & wxLC_REPORT
)
2132 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
, wxPoint(0,0), wxSize(size
.x
,23) );
2139 void wxListCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
2141 // handled in OnIdle
2143 if (m_mainWin
) m_mainWin
->m_dirty
= TRUE
;
2146 void wxListCtrl::SetSingleStyle( long style
, bool add
)
2148 long flag
= GetWindowStyleFlag();
2152 if (style
& wxLC_MASK_TYPE
) flag
= flag
& ~wxLC_MASK_TYPE
;
2153 if (style
& wxLC_MASK_ALIGN
) flag
= flag
& ~wxLC_MASK_ALIGN
;
2154 if (style
& wxLC_MASK_SORT
) flag
= flag
& ~wxLC_MASK_SORT
;
2163 if (flag
& style
) flag
-= style
;
2166 SetWindowStyleFlag( flag
);
2169 void wxListCtrl::SetWindowStyleFlag( long flag
)
2171 m_mainWin
->DeleteEverything();
2175 GetClientSize( &width
, &height
);
2177 m_mainWin
->SetMode( flag
);
2179 if (flag
& wxLC_REPORT
)
2181 if (!(GetWindowStyleFlag() & wxLC_REPORT
))
2183 // m_mainWin->SetSize( 0, 24, width, height-24 );
2186 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
, wxPoint(0,0), wxSize(width
,23) );
2190 // m_headerWin->SetSize( 0, 0, width, 23 );
2191 m_headerWin
->Show( TRUE
);
2197 if (GetWindowStyleFlag() & wxLC_REPORT
)
2199 // m_mainWin->SetSize( 0, 0, width, height );
2200 m_headerWin
->Show( FALSE
);
2204 wxWindow::SetWindowStyleFlag( flag
);
2207 bool wxListCtrl::GetColumn(int col
, wxListItem
&item
)
2209 m_mainWin
->GetColumn( col
, item
);
2213 bool wxListCtrl::SetColumn( int col
, wxListItem
& item
)
2215 m_mainWin
->SetColumn( col
, item
);
2219 int wxListCtrl::GetColumnWidth( int col
)
2221 return m_mainWin
->GetColumnWidth( col
);
2224 bool wxListCtrl::SetColumnWidth( int col
, int width
)
2226 m_mainWin
->SetColumnWidth( col
, width
);
2230 int wxListCtrl::GetCountPerPage(void)
2232 return m_mainWin
->GetCountPerPage(); // different from Windows ?
2236 wxText& wxListCtrl::GetEditControl(void) const
2241 bool wxListCtrl::GetItem( wxListItem
&info
)
2243 m_mainWin
->GetItem( info
);
2247 bool wxListCtrl::SetItem( wxListItem
&info
)
2249 m_mainWin
->SetItem( info
);
2253 long wxListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
2256 info
.m_text
= label
;
2257 info
.m_mask
= wxLIST_MASK_TEXT
;
2258 info
.m_itemId
= index
;
2262 info
.m_image
= imageId
;
2263 info
.m_mask
|= wxLIST_MASK_IMAGE
;
2266 m_mainWin
->SetItem(info
);
2270 int wxListCtrl::GetItemState( long item
, long stateMask
)
2272 return m_mainWin
->GetItemState( item
, stateMask
);
2275 bool wxListCtrl::SetItemState( long item
, long state
, long stateMask
)
2277 m_mainWin
->SetItemState( item
, state
, stateMask
);
2281 bool wxListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
2284 info
.m_image
= image
;
2285 info
.m_mask
= wxLIST_MASK_IMAGE
;
2286 info
.m_itemId
= item
;
2287 m_mainWin
->SetItem( info
);
2291 wxString
wxListCtrl::GetItemText( long item
)
2294 info
.m_itemId
= item
;
2295 m_mainWin
->GetItem( info
);
2299 void wxListCtrl::SetItemText( long item
, const wxString
&str
)
2302 info
.m_mask
= wxLIST_MASK_TEXT
;
2303 info
.m_itemId
= item
;
2305 m_mainWin
->SetItem( info
);
2308 long wxListCtrl::GetItemData( long item
)
2311 info
.m_itemId
= item
;
2312 m_mainWin
->GetItem( info
);
2316 bool wxListCtrl::SetItemData( long item
, long data
)
2319 info
.m_mask
= wxLIST_MASK_DATA
;
2320 info
.m_itemId
= item
;
2322 m_mainWin
->SetItem( info
);
2326 bool wxListCtrl::GetItemRect( long item
, wxRectangle
&rect
, int WXUNUSED(code
) )
2328 m_mainWin
->GetItemRect( item
, rect
);
2332 bool wxListCtrl::GetItemPosition( long item
, wxPoint
& pos
)
2334 m_mainWin
->GetItemPosition( item
, pos
);
2338 bool wxListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
2343 int wxListCtrl::GetItemCount(void)
2345 return m_mainWin
->GetItemCount();
2348 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
2350 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
2353 int wxListCtrl::GetItemSpacing( bool isSmall
)
2355 return m_mainWin
->GetItemSpacing( isSmall
);
2358 int wxListCtrl::GetSelectedItemCount(void)
2360 return m_mainWin
->GetSelectedItemCount();
2364 wxColour wxListCtrl::GetTextColour(void) const
2368 void wxListCtrl::SetTextColour(const wxColour& WXUNUSED(col))
2373 long wxListCtrl::GetTopItem(void)
2378 long wxListCtrl::GetNextItem( long item
, int geom
, int state
) const
2380 return m_mainWin
->GetNextItem( item
, geom
, state
);
2383 wxImageList
*wxListCtrl::GetImageList(int which
)
2385 if (which
== wxIMAGE_LIST_NORMAL
)
2387 return m_imageListNormal
;
2389 else if (which
== wxIMAGE_LIST_SMALL
)
2391 return m_imageListSmall
;
2393 else if (which
== wxIMAGE_LIST_STATE
)
2395 return m_imageListState
;
2400 void wxListCtrl::SetImageList( wxImageList
*imageList
, int which
)
2402 m_mainWin
->SetImageList( imageList
, which
);
2405 bool wxListCtrl::Arrange( int WXUNUSED(flag
) )
2410 bool wxListCtrl::DeleteItem( long item
)
2412 m_mainWin
->DeleteItem( item
);
2416 bool wxListCtrl::DeleteAllItems(void)
2418 m_mainWin
->DeleteAllItems();
2422 bool wxListCtrl::DeleteColumn( int col
)
2424 m_mainWin
->DeleteColumn( col
);
2429 wxText& wxListCtrl::Edit( long WXUNUSED(item ) )
2434 bool wxListCtrl::EnsureVisible( long item
)
2436 m_mainWin
->EnsureVisible( item
);
2440 long wxListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
2442 return m_mainWin
->FindItem( start
, str
, partial
);
2445 long wxListCtrl::FindItem( long start
, long data
)
2447 return m_mainWin
->FindItem( start
, data
);
2450 long wxListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& WXUNUSED(pt
),
2451 int WXUNUSED(direction
))
2456 long wxListCtrl::HitTest( const wxPoint
&point
, int &flags
)
2458 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
2461 long wxListCtrl::InsertItem( wxListItem
& info
)
2463 m_mainWin
->InsertItem( info
);
2467 long wxListCtrl::InsertItem( long index
, const wxString
&label
)
2470 info
.m_text
= label
;
2471 info
.m_mask
= wxLIST_MASK_TEXT
;
2472 info
.m_itemId
= index
;
2473 return InsertItem( info
);
2476 long wxListCtrl::InsertItem( long index
, int imageIndex
)
2479 info
.m_mask
= wxLIST_MASK_IMAGE
;
2480 info
.m_image
= imageIndex
;
2481 info
.m_itemId
= index
;
2482 return InsertItem( info
);
2485 long wxListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
2488 info
.m_text
= label
;
2489 info
.m_image
= imageIndex
;
2490 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
2491 info
.m_itemId
= index
;
2492 return InsertItem( info
);
2495 long wxListCtrl::InsertColumn( long col
, wxListItem
&item
)
2497 m_mainWin
->InsertColumn( col
, item
);
2501 long wxListCtrl::InsertColumn( long col
, const wxString
&heading
,
2502 int format
, int width
)
2505 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
2506 item
.m_text
= heading
;
2509 item
.m_mask
|= wxLIST_MASK_WIDTH
;
2510 item
.m_width
= width
;
2513 item
.m_format
= format
;
2515 return InsertColumn( col
, item
);
2518 bool wxListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
2524 // fn is a function which takes 3 long arguments: item1, item2, data.
2525 // item1 is the long data associated with a first item (NOT the index).
2526 // item2 is the long data associated with a second item (NOT the index).
2527 // data is the same value as passed to SortItems.
2528 // The return value is a negative number if the first item should precede the second
2529 // item, a positive number of the second item should precede the first,
2530 // or zero if the two items are equivalent.
2531 // data is arbitrary data to be passed to the sort function.
2533 bool wxListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
2535 m_mainWin
->SortItems( fn
, data
);
2539 void wxListCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2541 if (!m_mainWin
->m_dirty
) return;
2545 GetClientSize( &cw
, &ch
);
2552 if (GetWindowStyleFlag() & wxLC_REPORT
)
2554 m_headerWin
->GetPosition( &x
, &y
);
2555 m_headerWin
->GetSize( &w
, &h
);
2556 if ((x
!= 0) || (y
!= 0) || (w
!= cw
) || (h
!= 23))
2557 m_headerWin
->SetSize( 0, 0, cw
, 23 );
2559 m_mainWin
->GetPosition( &x
, &y
);
2560 m_mainWin
->GetSize( &w
, &h
);
2561 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
-24))
2562 m_mainWin
->SetSize( 0, 24, cw
, ch
-24 );
2566 m_mainWin
->GetPosition( &x
, &y
);
2567 m_mainWin
->GetSize( &w
, &h
);
2568 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
))
2569 m_mainWin
->SetSize( 0, 0, cw
, ch
);
2572 m_mainWin
->CalculatePositions();
2573 m_mainWin
->RealizeChanges();
2574 m_mainWin
->m_dirty
= FALSE
;
2575 m_mainWin
->Refresh();