1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "listctrl.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
21 #include "wx/dcscreen.h"
23 #include "wx/listctrl.h"
24 #include "wx/generic/imaglist.h"
26 #ifndef wxUSE_GENERIC_LIST_EXTENSIONS
27 #define wxUSE_GENERIC_LIST_EXTENSIONS 0
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 IMPLEMENT_DYNAMIC_CLASS(wxListItemData
,wxObject
);
36 wxListItemData::wxListItemData()
47 wxListItemData::wxListItemData( const wxListItem
&info
)
51 m_colour
= info
.m_colour
;
55 void wxListItemData::SetItem( const wxListItem
&info
)
57 if (info
.m_mask
& wxLIST_MASK_TEXT
) m_text
= info
.m_text
;
58 if (info
.m_mask
& wxLIST_MASK_IMAGE
) m_image
= info
.m_image
;
59 if (info
.m_mask
& wxLIST_MASK_DATA
) m_data
= info
.m_data
;
60 m_colour
= info
.m_colour
;
63 m_width
= info
.m_width
;
67 void wxListItemData::SetText( const wxString
&s
)
72 void wxListItemData::SetImage( int image
)
77 void wxListItemData::SetData( long data
)
82 void wxListItemData::SetPosition( int x
, int y
)
88 void wxListItemData::SetSize( int width
, int height
)
90 if (width
!= -1) m_width
= width
;
91 if (height
!= -1) m_height
= height
;
94 void wxListItemData::SetColour( wxColour
*col
)
99 bool wxListItemData::HasImage() const
101 return (m_image
>= 0);
104 bool wxListItemData::HasText() const
106 return (!m_text
.IsNull());
109 bool wxListItemData::IsHit( int x
, int y
) const
111 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
114 void wxListItemData::GetText( wxString
&s
)
119 int wxListItemData::GetX() const
124 int wxListItemData::GetY() const
129 int wxListItemData::GetWidth() const
134 int wxListItemData::GetHeight() const
139 int wxListItemData::GetImage() const
144 void wxListItemData::GetItem( wxListItem
&info
)
146 info
.m_text
= m_text
;
147 info
.m_image
= m_image
;
148 info
.m_data
= m_data
;
149 info
.m_colour
= m_colour
;
152 wxColour
*wxListItemData::GetColour()
157 //-----------------------------------------------------------------------------
159 //-----------------------------------------------------------------------------
161 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData
,wxObject
);
163 wxListHeaderData::wxListHeaderData()
174 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
182 void wxListHeaderData::SetItem( const wxListItem
&item
)
184 m_mask
= item
.m_mask
;
185 m_text
= item
.m_text
;
186 m_image
= item
.m_image
;
187 m_format
= item
.m_format
;
188 m_width
= item
.m_width
;
189 if (m_width
< 0) m_width
= 80;
190 if (m_width
< 6) m_width
= 6;
193 void wxListHeaderData::SetPosition( int x
, int y
)
199 void wxListHeaderData::SetHeight( int h
)
204 void wxListHeaderData::SetWidth( int w
)
207 if (m_width
< 0) m_width
= 80;
208 if (m_width
< 6) m_width
= 6;
211 void wxListHeaderData::SetFormat( int format
)
216 bool wxListHeaderData::HasImage() const
218 return (m_image
!= 0);
221 bool wxListHeaderData::HasText() const
223 return (m_text
.Length() > 0);
226 bool wxListHeaderData::IsHit( int x
, int y
) const
228 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
231 void wxListHeaderData::GetItem( wxListItem
&item
)
233 item
.m_mask
= m_mask
;
234 item
.m_text
= m_text
;
235 item
.m_image
= m_image
;
236 item
.m_format
= m_format
;
237 item
.m_width
= m_width
;
240 void wxListHeaderData::GetText( wxString
&s
)
245 int wxListHeaderData::GetImage() const
250 int wxListHeaderData::GetWidth() const
255 int wxListHeaderData::GetFormat() const
260 //-----------------------------------------------------------------------------
262 //-----------------------------------------------------------------------------
264 IMPLEMENT_DYNAMIC_CLASS(wxListLineData
,wxObject
);
266 wxListLineData::wxListLineData( wxListMainWindow
*owner
, int mode
, wxBrush
*hilightBrush
)
271 m_hilightBrush
= hilightBrush
;
272 m_items
.DeleteContents( TRUE
);
276 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
283 m_bound_all
.width
= m_spacing
;
284 m_bound_all
.height
= m_spacing
+13;
285 wxNode
*node
= m_items
.First();
288 wxListItemData
*item
= (wxListItemData
*)node
->Data();
292 dc
->GetTextExtent( s
, &lw
, &lh
);
293 if (lw
> m_spacing
) m_bound_all
.width
= lw
;
299 wxNode
*node
= m_items
.First();
302 wxListItemData
*item
= (wxListItemData
*)node
->Data();
306 dc
->GetTextExtent( s
, &lw
, &lh
);
307 m_bound_all
.width
= lw
;
308 m_bound_all
.height
= lh
;
309 if (item
->HasImage())
313 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
314 m_bound_all
.width
+= 4 + w
;
315 if (h
> m_bound_all
.height
) m_bound_all
.height
= h
;
322 m_bound_all
.width
= 0;
323 m_bound_all
.height
= 0;
324 wxNode
*node
= m_items
.First();
327 wxListItemData
*item
= (wxListItemData
*)node
->Data();
330 if (s
.IsNull()) s
= "H";
332 dc
->GetTextExtent( s
, &lw
, &lh
);
333 item
->SetSize( item
->GetWidth(), lh
);
334 m_bound_all
.width
+= lw
;
335 m_bound_all
.height
= lh
;
343 void wxListLineData::SetPosition( wxDC
*dc
, int x
, int y
, int window_width
)
351 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
352 AssignRect( m_bound_label
, 0, 0, 0, 0 );
353 AssignRect( m_bound_hilight
, m_bound_all
);
354 wxNode
*node
= m_items
.First();
357 wxListItemData
*item
= (wxListItemData
*)node
->Data();
358 if (item
->HasImage())
360 wxListItemData
*item
= (wxListItemData
*)node
->Data();
363 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
364 m_bound_icon
.x
= m_bound_all
.x
+ (m_spacing
/2) - (w
/2);
365 m_bound_icon
.y
= m_bound_all
.y
+ m_spacing
- h
- 5;
366 m_bound_icon
.width
= w
;
367 m_bound_icon
.height
= h
;
368 if (!item
->HasText())
370 AssignRect( m_bound_hilight
, m_bound_icon
);
371 m_bound_hilight
.x
-= 5;
372 m_bound_hilight
.y
-= 5;
373 m_bound_hilight
.width
+= 9;
374 m_bound_hilight
.height
+= 9;
382 dc
->GetTextExtent( s
, &lw
, &lh
);
383 if (m_bound_all
.width
> m_spacing
)
384 m_bound_label
.x
= m_bound_all
.x
;
386 m_bound_label
.x
= m_bound_all
.x
+ (m_spacing
/2) - lw
/2;
387 m_bound_label
.y
= m_bound_all
.y
+ m_bound_all
.height
- lh
;
388 m_bound_label
.width
= lw
;
389 m_bound_label
.height
= lh
;
390 AssignRect( m_bound_hilight
, m_bound_label
);
391 m_bound_hilight
.x
-= 2;
392 m_bound_hilight
.y
-= 2;
393 m_bound_hilight
.width
+= 4;
394 m_bound_hilight
.height
+= 4;
401 AssignRect( m_bound_label
, m_bound_all
);
404 m_bound_all
.width
+= 4;
405 m_bound_all
.height
+= 3;
406 AssignRect( m_bound_hilight
, m_bound_all
);
407 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
408 wxNode
*node
= m_items
.First();
411 wxListItemData
*item
= (wxListItemData
*)node
->Data();
412 if (item
->HasImage())
414 m_bound_icon
.x
= m_bound_all
.x
+ 2;
415 m_bound_icon
.y
= m_bound_all
.y
+ 2;
418 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
419 m_bound_icon
.width
= w
;
420 m_bound_icon
.height
= h
;
421 m_bound_label
.x
+= 4 + w
;
422 m_bound_label
.width
-= 4 + w
;
430 dc
->GetTextExtent( "H", &lw
, &lh
);
433 m_bound_all
.height
= lh
+3;
434 m_bound_all
.width
= window_width
;
435 AssignRect( m_bound_hilight
, m_bound_all
);
436 AssignRect( m_bound_label
, m_bound_all
);
437 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
438 wxNode
*node
= m_items
.First();
441 wxListItemData
*item
= (wxListItemData
*)node
->Data();
444 if (s
.IsEmpty()) s
= wxT("H");
446 dc
->GetTextExtent( s
, &lw
, &lh
);
447 m_bound_label
.width
= lw
;
448 m_bound_label
.height
= lh
;
449 if (item
->HasImage())
451 m_bound_icon
.x
= m_bound_all
.x
+ 2;
452 m_bound_icon
.y
= m_bound_all
.y
+ 2;
455 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
456 m_bound_icon
.width
= w
;
457 m_bound_icon
.height
= h
;
458 m_bound_label
.x
+= 4 + w
;
466 void wxListLineData::SetColumnPosition( int index
, int x
)
469 wxNode
*node
= m_items
.Nth( i
);
472 wxListItemData
*item
= (wxListItemData
*)node
->Data();
473 item
->SetPosition( x
, m_bound_all
.y
+1 );
477 void wxListLineData::GetSize( int &width
, int &height
)
479 width
= m_bound_all
.width
;
480 height
= m_bound_all
.height
;
483 void wxListLineData::GetExtent( int &x
, int &y
, int &width
, int &height
)
487 width
= m_bound_all
.width
;
488 height
= m_bound_all
.height
;
491 void wxListLineData::GetLabelExtent( int &x
, int &y
, int &width
, int &height
)
495 width
= m_bound_label
.width
;
496 height
= m_bound_label
.height
;
499 void wxListLineData::GetRect( wxRect
&rect
)
501 AssignRect( rect
, m_bound_all
);
504 long wxListLineData::IsHit( int x
, int y
)
506 wxNode
*node
= m_items
.First();
509 wxListItemData
*item
= (wxListItemData
*)node
->Data();
510 if (item
->HasImage() && IsInRect( x
, y
, m_bound_icon
)) return wxLIST_HITTEST_ONITEMICON
;
511 if (item
->HasText() && IsInRect( x
, y
, m_bound_label
)) return wxLIST_HITTEST_ONITEMLABEL
;
512 // if (!(item->HasImage() || item->HasText())) return 0;
514 // if there is no icon or text = empty
515 if (IsInRect( x
, y
, m_bound_all
)) return wxLIST_HITTEST_ONITEMICON
;
519 void wxListLineData::InitItems( int num
)
521 for (int i
= 0; i
< num
; i
++) m_items
.Append( new wxListItemData() );
524 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
526 wxNode
*node
= m_items
.Nth( index
);
529 wxListItemData
*item
= (wxListItemData
*)node
->Data();
530 item
->SetItem( info
);
534 void wxListLineData::GetItem( int index
, wxListItem
&info
)
537 wxNode
*node
= m_items
.Nth( i
);
540 wxListItemData
*item
= (wxListItemData
*)node
->Data();
541 item
->GetItem( info
);
545 void wxListLineData::GetText( int index
, wxString
&s
)
548 wxNode
*node
= m_items
.Nth( i
);
552 wxListItemData
*item
= (wxListItemData
*)node
->Data();
557 void wxListLineData::SetText( int index
, const wxString s
)
560 wxNode
*node
= m_items
.Nth( i
);
563 wxListItemData
*item
= (wxListItemData
*)node
->Data();
568 int wxListLineData::GetImage( int index
)
571 wxNode
*node
= m_items
.Nth( i
);
574 wxListItemData
*item
= (wxListItemData
*)node
->Data();
575 return item
->GetImage();
580 void wxListLineData::DoDraw( wxDC
*dc
, bool hilight
, bool paintBG
)
582 long dev_x
= dc
->LogicalToDeviceX( m_bound_all
.x
-2 );
583 long dev_y
= dc
->LogicalToDeviceY( m_bound_all
.y
-2 );
584 long dev_w
= dc
->LogicalToDeviceXRel( m_bound_all
.width
+4 );
585 long dev_h
= dc
->LogicalToDeviceYRel( m_bound_all
.height
+4 );
587 if (!m_owner
->IsExposed( dev_x
, dev_y
, dev_w
, dev_h
))
596 dc
->SetBrush( * m_hilightBrush
);
597 dc
->SetPen( * wxTRANSPARENT_PEN
);
601 dc
->SetBrush( * wxWHITE_BRUSH
);
602 dc
->SetPen( * wxTRANSPARENT_PEN
);
604 dc
->DrawRectangle( m_bound_hilight
.x
, m_bound_hilight
.y
,
605 m_bound_hilight
.width
, m_bound_hilight
.height
);
608 dc
->SetBackgroundMode(wxTRANSPARENT
);
609 if (m_mode
== wxLC_REPORT
)
612 wxNode
*node
= m_items
.First();
615 wxListItemData
*item
= (wxListItemData
*)node
->Data();
616 dc
->SetClippingRegion( item
->GetX(), item
->GetY(), item
->GetWidth()-3, item
->GetHeight() );
617 int x
= item
->GetX();
618 if (item
->HasImage())
621 m_owner
->DrawImage( item
->GetImage(), dc
, x
, item
->GetY() );
622 m_owner
->GetImageSize( item
->GetImage(), x
, y
);
623 x
+= item
->GetX() + 5;
629 dc
->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
) );
631 dc
->SetTextForeground( *item
->GetColour() );
632 dc
->DrawText( s
, x
, item
->GetY() );
634 dc
->DestroyClippingRegion();
640 wxNode
*node
= m_items
.First();
643 wxListItemData
*item
= (wxListItemData
*)node
->Data();
644 if (item
->HasImage())
646 m_owner
->DrawImage( item
->GetImage(), dc
, m_bound_icon
.x
, m_bound_icon
.y
);
653 dc
->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
) );
655 dc
->SetTextForeground( * item
->GetColour() );
656 dc
->DrawText( s
, m_bound_label
.x
, m_bound_label
.y
);
662 void wxListLineData::Hilight( bool on
)
664 if (on
== m_hilighted
) return;
666 m_owner
->SelectLine( this );
668 m_owner
->DeselectLine( this );
672 void wxListLineData::ReverseHilight( void )
674 m_hilighted
= !m_hilighted
;
676 m_owner
->SelectLine( this );
678 m_owner
->DeselectLine( this );
681 void wxListLineData::DrawRubberBand( wxDC
*dc
, bool on
)
685 dc
->SetPen( * wxBLACK_PEN
);
686 dc
->SetBrush( * wxTRANSPARENT_BRUSH
);
687 dc
->DrawRectangle( m_bound_hilight
.x
, m_bound_hilight
.y
,
688 m_bound_hilight
.width
, m_bound_hilight
.height
);
692 void wxListLineData::Draw( wxDC
*dc
)
694 DoDraw( dc
, m_hilighted
, m_hilighted
);
697 bool wxListLineData::IsInRect( int x
, int y
, const wxRect
&rect
)
699 return ((x
>= rect
.x
) && (x
<= rect
.x
+rect
.width
) &&
700 (y
>= rect
.y
) && (y
<= rect
.y
+rect
.height
));
703 bool wxListLineData::IsHilighted( void )
708 void wxListLineData::AssignRect( wxRect
&dest
, int x
, int y
, int width
, int height
)
713 dest
.height
= height
;
716 void wxListLineData::AssignRect( wxRect
&dest
, const wxRect
&source
)
720 dest
.width
= source
.width
;
721 dest
.height
= source
.height
;
724 //-----------------------------------------------------------------------------
725 // wxListHeaderWindow
726 //-----------------------------------------------------------------------------
728 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
);
730 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
731 EVT_PAINT (wxListHeaderWindow::OnPaint
)
732 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
733 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
736 wxListHeaderWindow::wxListHeaderWindow( void )
738 m_owner
= (wxListMainWindow
*) NULL
;
739 m_currentCursor
= (wxCursor
*) NULL
;
740 m_resizeCursor
= (wxCursor
*) NULL
;
741 m_isDragging
= FALSE
;
744 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
, wxWindowID id
, wxListMainWindow
*owner
,
745 const wxPoint
&pos
, const wxSize
&size
,
746 long style
, const wxString
&name
) :
747 wxWindow( win
, id
, pos
, size
, style
, name
)
750 // m_currentCursor = wxSTANDARD_CURSOR;
751 m_currentCursor
= (wxCursor
*) NULL
;
752 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
753 m_isDragging
= FALSE
;
754 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
) );
757 wxListHeaderWindow::~wxListHeaderWindow( void )
759 delete m_resizeCursor
;
762 void wxListHeaderWindow::DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
)
764 const int m_corner
= 1;
766 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
768 dc
->SetPen( *wxBLACK_PEN
);
769 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
770 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
772 wxPen
pen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
);
775 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
776 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
778 dc
->SetPen( *wxWHITE_PEN
);
779 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
780 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
781 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
782 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
785 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
787 wxPaintDC
dc( this );
789 #if wxUSE_GENERIC_LIST_EXTENSIONS
790 if ( m_owner
->GetMode() & wxLC_REPORT
)
795 m_owner
->GetScrollPixelsPerUnit( &xpix
, &ypix
) ;
796 m_owner
->ViewStart( &x
, &y
) ;
797 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
802 dc
.SetFont( GetFont() );
808 GetClientSize( &w
, &h
);
810 dc
.SetBackgroundMode(wxTRANSPARENT
);
811 dc
.SetTextForeground( *wxBLACK
);
812 if (m_foregroundColour
.Ok()) dc
.SetTextForeground( m_foregroundColour
);
816 int numColumns
= m_owner
->GetColumnCount();
818 for (int i
= 0; i
< numColumns
; i
++)
820 m_owner
->GetColumn( i
, item
);
821 int cw
= item
.m_width
-2;
822 #if wxUSE_GENERIC_LIST_EXTENSIONS
823 if ((i
+1 == numColumns
) || ( dc
.LogicalToDeviceX(x
+item
.m_width
) > w
-5))
824 cw
= dc
.DeviceToLogicalX(w
)-x
-1;
826 if ((i
+1 == numColumns
) || (x
+item
.m_width
> w
-5)) cw
= w
-x
-1;
828 dc
.SetPen( *wxWHITE_PEN
);
830 DoDrawRect( &dc
, x
, y
, cw
, h
-2 );
831 dc
.SetClippingRegion( x
, y
, cw
-5, h
-4 );
832 dc
.DrawText( item
.m_text
, x
+4, y
+3 );
833 dc
.DestroyClippingRegion();
835 #if wxUSE_GENERIC_LIST_EXTENSIONS
836 if (dc
.LogicalToDeviceX(x
) > w
+5) break;
844 void wxListHeaderWindow::DrawCurrent()
848 int x2
= m_currentX
-1;
851 m_owner
->GetClientSize( &dummy
, &y2
);
852 ClientToScreen( &x1
, &y1
);
853 m_owner
->ClientToScreen( &x2
, &y2
);
856 dc
.SetLogicalFunction( wxINVERT
);
857 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
858 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
860 dc
.DrawLine( x1
, y1
, x2
, y2
);
862 dc
.SetLogicalFunction( wxCOPY
);
864 dc
.SetPen( wxNullPen
);
865 dc
.SetBrush( wxNullBrush
);
868 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
870 int x
= event
.GetX();
871 int y
= event
.GetY();
875 if (event
.ButtonUp())
878 m_isDragging
= FALSE
;
879 m_owner
->SetColumnWidth( m_column
, m_currentX
-m_minX
);
885 GetClientSize( &size_x
, & dummy
);
889 m_currentX
= m_minX
+7;
890 if (m_currentX
> size_x
-7) m_currentX
= size_x
-7;
897 bool hit_border
= FALSE
;
899 for (int j
= 0; j
< m_owner
->GetColumnCount()-1; j
++)
901 xpos
+= m_owner
->GetColumnWidth( j
);
903 if ((abs(x
-xpos
) < 3) && (y
< 22))
915 if (event
.LeftDown())
927 wxListEvent
le( wxEVT_COMMAND_LIST_COL_CLICK
, GetParent()->GetId() );
928 le
.SetEventObject( GetParent() );
930 GetParent()->GetEventHandler()->ProcessEvent( le
);
939 if (m_currentCursor
== wxSTANDARD_CURSOR
) SetCursor( * m_resizeCursor
);
940 m_currentCursor
= m_resizeCursor
;
944 if (m_currentCursor
!= wxSTANDARD_CURSOR
) SetCursor( * wxSTANDARD_CURSOR
);
945 m_currentCursor
= wxSTANDARD_CURSOR
;
950 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
955 //-----------------------------------------------------------------------------
956 // wxListRenameTimer (internal)
957 //-----------------------------------------------------------------------------
959 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
964 void wxListRenameTimer::Notify()
966 m_owner
->OnRenameTimer();
969 //-----------------------------------------------------------------------------
970 // wxListTextCtrl (internal)
971 //-----------------------------------------------------------------------------
973 IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl
,wxTextCtrl
);
975 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
976 EVT_CHAR (wxListTextCtrl::OnChar
)
977 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
980 wxListTextCtrl::wxListTextCtrl( wxWindow
*parent
, const wxWindowID id
,
981 bool *accept
, wxString
*res
, wxListMainWindow
*owner
,
982 const wxString
&value
, const wxPoint
&pos
, const wxSize
&size
,
984 # if defined(__VISAGECPP__)
985 int style
, const wxValidator
* validator
, const wxString
&name
) :
987 int style
, const wxValidator
& validator
, const wxString
&name
) :
990 wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
997 m_startValue
= value
;
1000 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
1002 if (event
.m_keyCode
== WXK_RETURN
)
1005 (*m_res
) = GetValue();
1006 m_owner
->SetFocus();
1009 if (event
.m_keyCode
== WXK_ESCAPE
)
1011 (*m_accept
) = FALSE
;
1013 m_owner
->SetFocus();
1019 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1021 if (wxPendingDelete
.Member(this)) return;
1023 wxPendingDelete
.Append(this);
1025 if ((*m_accept
) && ((*m_res
) != m_startValue
))
1026 m_owner
->OnRenameAccept();
1029 //-----------------------------------------------------------------------------
1031 //-----------------------------------------------------------------------------
1033 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
);
1035 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
1036 EVT_PAINT (wxListMainWindow::OnPaint
)
1037 EVT_SIZE (wxListMainWindow::OnSize
)
1038 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
1039 EVT_CHAR (wxListMainWindow::OnChar
)
1040 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
1041 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
1042 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
1043 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
1046 wxListMainWindow::wxListMainWindow()
1049 m_lines
.DeleteContents( TRUE
);
1050 m_columns
.DeleteContents( TRUE
);
1051 m_current
= (wxListLineData
*) NULL
;
1053 m_hilightBrush
= (wxBrush
*) NULL
;
1057 m_small_image_list
= (wxImageList
*) NULL
;
1058 m_normal_image_list
= (wxImageList
*) NULL
;
1059 m_small_spacing
= 30;
1060 m_normal_spacing
= 40;
1063 m_lastOnSame
= FALSE
;
1064 m_renameTimer
= new wxListRenameTimer( this );
1065 m_isCreated
= FALSE
;
1069 wxListMainWindow::wxListMainWindow( wxWindow
*parent
, wxWindowID id
,
1070 const wxPoint
&pos
, const wxSize
&size
,
1071 long style
, const wxString
&name
) :
1072 wxScrolledWindow( parent
, id
, pos
, size
, style
|wxHSCROLL
|wxVSCROLL
, name
)
1075 m_lines
.DeleteContents( TRUE
);
1076 m_columns
.DeleteContents( TRUE
);
1077 m_current
= (wxListLineData
*) NULL
;
1080 m_hilightBrush
= new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
), wxSOLID
);
1081 m_small_image_list
= (wxImageList
*) NULL
;
1082 m_normal_image_list
= (wxImageList
*) NULL
;
1083 m_small_spacing
= 30;
1084 m_normal_spacing
= 40;
1087 m_isCreated
= FALSE
;
1091 if (m_mode
& wxLC_REPORT
)
1093 #if wxUSE_GENERIC_LIST_EXTENSIONS
1105 SetScrollbars( m_xScroll
, m_yScroll
, 0, 0, 0, 0 );
1108 m_lastOnSame
= FALSE
;
1109 m_renameTimer
= new wxListRenameTimer( this );
1110 m_renameAccept
= FALSE
;
1112 SetBackgroundColour( *wxWHITE
);
1115 wxListMainWindow::~wxListMainWindow()
1117 if (m_hilightBrush
) delete m_hilightBrush
;
1119 delete m_renameTimer
;
1122 void wxListMainWindow::RefreshLine( wxListLineData
*line
)
1130 wxClientDC
dc(this);
1132 line
->GetExtent( x
, y
, w
, h
);
1134 dc
.LogicalToDeviceX(x
-3),
1135 dc
.LogicalToDeviceY(y
-3),
1136 dc
.LogicalToDeviceXRel(w
+6),
1137 dc
.LogicalToDeviceXRel(h
+6) );
1138 Refresh( TRUE
, &rect
);
1142 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1144 // Note: a wxPaintDC must be constructed even if no drawing is
1145 // done (a Windows requirement).
1146 wxPaintDC
dc( this );
1149 if (m_dirty
) return;
1151 if (m_lines
.GetCount() == 0) return;
1155 dc
.SetFont( GetFont() );
1157 if (m_mode
& wxLC_REPORT
)
1159 int lineSpacing
= 0;
1160 wxListLineData
*line
= (wxListLineData
*)m_lines
.First()->Data();
1162 line
->GetSize( dummy
, lineSpacing
);
1165 int y_s
= m_yScroll
*GetScrollPos( wxVERTICAL
);
1167 wxNode
*node
= m_lines
.Nth( y_s
/ lineSpacing
);
1168 for (int i
= 0; i
< m_visibleLines
+2; i
++)
1172 line
= (wxListLineData
*)node
->Data();
1174 node
= node
->Next();
1179 wxNode
*node
= m_lines
.First();
1182 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1184 node
= node
->Next();
1188 if (m_current
) m_current
->DrawRubberBand( &dc
, m_hasFocus
);
1193 void wxListMainWindow::HilightAll( bool on
)
1195 wxNode
*node
= m_lines
.First();
1198 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1199 if (line
->IsHilighted() != on
)
1201 line
->Hilight( on
);
1202 RefreshLine( line
);
1204 node
= node
->Next();
1208 void wxListMainWindow::SendNotify( wxListLineData
*line
, wxEventType command
)
1210 wxListEvent
le( command
, GetParent()->GetId() );
1211 le
.SetEventObject( GetParent() );
1212 le
.m_itemIndex
= GetIndexOfLine( line
);
1213 line
->GetItem( 0, le
.m_item
);
1214 GetParent()->GetEventHandler()->ProcessEvent( le
);
1217 void wxListMainWindow::FocusLine( wxListLineData
*WXUNUSED(line
) )
1219 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED );
1222 void wxListMainWindow::UnfocusLine( wxListLineData
*WXUNUSED(line
) )
1224 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED );
1227 void wxListMainWindow::SelectLine( wxListLineData
*line
)
1229 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_SELECTED
);
1232 void wxListMainWindow::DeselectLine( wxListLineData
*line
)
1234 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1237 void wxListMainWindow::DeleteLine( wxListLineData
*line
)
1239 SendNotify( line
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
1244 void wxListMainWindow::EditLabel( long item
)
1246 wxNode
*node
= m_lines
.Nth( item
);
1247 wxCHECK_RET( node
, wxT("wrong index in wxListCtrl::Edit()") );
1249 m_currentEdit
= (wxListLineData
*) node
->Data();
1251 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
1252 le
.SetEventObject( GetParent() );
1253 le
.m_itemIndex
= GetIndexOfLine( m_currentEdit
);
1254 m_currentEdit
->GetItem( 0, le
.m_item
);
1255 GetParent()->GetEventHandler()->ProcessEvent( le
);
1257 if (!le
.IsAllowed())
1260 // We have to call this here because the label in
1261 // question might just have been added and no screen
1262 // update taken place.
1263 if (m_dirty
) wxYield();
1266 m_currentEdit
->GetText( 0, s
);
1271 m_currentEdit
->GetLabelExtent( x
, y
, w
, h
);
1273 wxClientDC
dc(this);
1275 x
= dc
.LogicalToDeviceX( x
);
1276 y
= dc
.LogicalToDeviceY( y
);
1278 wxListTextCtrl
*text
= new wxListTextCtrl(
1279 this, -1, &m_renameAccept
, &m_renameRes
, this, s
, wxPoint(x
-4,y
-4), wxSize(w
+11,h
+8) );
1283 void wxListMainWindow::OnRenameTimer()
1285 wxCHECK_RET( m_current
, wxT("invalid m_current") );
1287 Edit( m_lines
.IndexOf( m_current
) );
1290 void wxListMainWindow::OnRenameAccept()
1292 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
1293 le
.SetEventObject( GetParent() );
1294 le
.m_itemIndex
= GetIndexOfLine( m_currentEdit
);
1295 m_currentEdit
->GetItem( 0, le
.m_item
);
1296 le
.m_item
.m_text
= m_renameRes
;
1297 GetParent()->GetEventHandler()->ProcessEvent( le
);
1299 if (!le
.IsAllowed()) return;
1302 info
.m_mask
= wxLIST_MASK_TEXT
;
1303 info
.m_itemId
= le
.m_itemIndex
;
1304 info
.m_text
= m_renameRes
;
1305 info
.m_colour
= le
.m_item
.m_colour
;
1309 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
1311 if (GetParent()->GetEventHandler()->ProcessEvent( event
)) return;
1313 if (!m_current
) return;
1314 if (m_dirty
) return;
1315 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() || event
.ButtonDClick()) ) return;
1317 wxClientDC
dc(this);
1319 long x
= dc
.DeviceToLogicalX( (long)event
.GetX() );
1320 long y
= dc
.DeviceToLogicalY( (long)event
.GetY() );
1322 /* Did we actually hit an item ? */
1324 wxNode
*node
= m_lines
.First();
1325 wxListLineData
*line
= (wxListLineData
*) NULL
;
1328 line
= (wxListLineData
*)node
->Data();
1329 hitResult
= line
->IsHit( x
, y
);
1330 if (hitResult
) break;
1331 line
= (wxListLineData
*) NULL
;
1332 node
= node
->Next();
1335 if (event
.Dragging())
1337 if (m_dragCount
== 0)
1338 m_dragStart
= wxPoint(x
,y
);
1342 if (m_dragCount
!= 3) return;
1344 int command
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1345 if (event
.RightIsDown()) command
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1347 wxListEvent
le( command
, GetParent()->GetId() );
1348 le
.SetEventObject( GetParent() );
1349 le
.m_pointDrag
= m_dragStart
;
1350 GetParent()->GetEventHandler()->ProcessEvent( le
);
1361 if (event
.ButtonDClick())
1364 m_lastOnSame
= FALSE
;
1365 m_renameTimer
->Stop();
1367 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
1372 if (event
.LeftUp() && m_lastOnSame
)
1375 if ((line
== m_current
) &&
1376 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
1377 (m_mode
& wxLC_EDIT_LABELS
) )
1379 m_renameTimer
->Start( 100, TRUE
);
1381 m_lastOnSame
= FALSE
;
1385 if (event
.RightDown())
1387 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
);
1391 if (event
.MiddleDown())
1393 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
1397 if (event
.LeftDown())
1400 wxListLineData
*oldCurrent
= m_current
;
1401 if (m_mode
& wxLC_SINGLE_SEL
)
1404 HilightAll( FALSE
);
1405 m_current
->ReverseHilight();
1406 RefreshLine( m_current
);
1410 if (event
.ShiftDown())
1413 m_current
->ReverseHilight();
1414 RefreshLine( m_current
);
1416 else if (event
.ControlDown())
1420 int numOfCurrent
= -1;
1421 node
= m_lines
.First();
1424 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1426 if (test_line
== oldCurrent
) break;
1427 node
= node
->Next();
1431 node
= m_lines
.First();
1434 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1436 if (test_line
== line
) break;
1437 node
= node
->Next();
1440 if (numOfLine
< numOfCurrent
)
1443 numOfLine
= numOfCurrent
;
1447 wxNode
*node
= m_lines
.Nth( numOfCurrent
);
1448 for (int i
= 0; i
<= numOfLine
-numOfCurrent
; i
++)
1450 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1451 test_line
->Hilight(TRUE
);
1452 RefreshLine( test_line
);
1453 node
= node
->Next();
1459 HilightAll( FALSE
);
1460 m_current
->ReverseHilight();
1461 RefreshLine( m_current
);
1464 if (m_current
!= oldCurrent
)
1466 RefreshLine( oldCurrent
);
1467 UnfocusLine( oldCurrent
);
1468 FocusLine( m_current
);
1470 m_lastOnSame
= (m_current
== oldCurrent
);
1475 void wxListMainWindow::MoveToFocus()
1477 if (!m_current
) return;
1483 m_current
->GetExtent( x
, y
, w
, h
);
1487 GetClientSize( &w_p
, &h_p
);
1489 if (m_mode
& wxLC_REPORT
)
1491 int y_s
= m_yScroll
*GetScrollPos( wxVERTICAL
);
1492 if ((y
> y_s
) && (y
+h
< y_s
+h_p
)) return;
1493 if (y
-y_s
< 5) { Scroll( -1, (y
-5-h_p
/2)/m_yScroll
); }
1494 if (y
+h
+5 > y_s
+h_p
) { Scroll( -1, (y
+h
-h_p
/2+h
+15)/m_yScroll
); }
1498 int x_s
= m_xScroll
*GetScrollPos( wxHORIZONTAL
);
1499 if ((x
> x_s
) && (x
+w
< x_s
+w_p
)) return;
1500 if (x
-x_s
< 5) { Scroll( (x
-5)/m_xScroll
, -1 ); }
1501 if (x
+w
-5 > x_s
+w_p
) { Scroll( (x
+w
-w_p
+15)/m_xScroll
, -1 ); }
1505 void wxListMainWindow::OnArrowChar( wxListLineData
*newCurrent
, bool shiftDown
)
1507 if ((m_mode
& wxLC_SINGLE_SEL
) || (m_usedKeys
== FALSE
)) m_current
->Hilight( FALSE
);
1508 wxListLineData
*oldCurrent
= m_current
;
1509 m_current
= newCurrent
;
1511 if (shiftDown
|| (m_mode
& wxLC_SINGLE_SEL
)) m_current
->Hilight( TRUE
);
1512 RefreshLine( m_current
);
1513 RefreshLine( oldCurrent
);
1514 FocusLine( m_current
);
1515 UnfocusLine( oldCurrent
);
1518 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
1520 wxWindow
*parent
= GetParent();
1522 /* we propagate the key event up */
1523 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
1524 ke
.m_shiftDown
= event
.m_shiftDown
;
1525 ke
.m_controlDown
= event
.m_controlDown
;
1526 ke
.m_altDown
= event
.m_altDown
;
1527 ke
.m_metaDown
= event
.m_metaDown
;
1528 ke
.m_keyCode
= event
.m_keyCode
;
1531 ke
.SetEventObject( parent
);
1532 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
1537 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
1539 wxWindow
*parent
= GetParent();
1541 /* we send a list_key event up */
1542 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
1543 le
.m_code
= event
.KeyCode();
1544 le
.SetEventObject( parent
);
1545 parent
->GetEventHandler()->ProcessEvent( le
);
1547 /* we propagate the char event up */
1548 wxKeyEvent
ke( wxEVT_CHAR
);
1549 ke
.m_shiftDown
= event
.m_shiftDown
;
1550 ke
.m_controlDown
= event
.m_controlDown
;
1551 ke
.m_altDown
= event
.m_altDown
;
1552 ke
.m_metaDown
= event
.m_metaDown
;
1553 ke
.m_keyCode
= event
.m_keyCode
;
1556 ke
.SetEventObject( parent
);
1557 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
1559 if (event
.KeyCode() == WXK_TAB
)
1561 wxNavigationKeyEvent nevent
;
1562 nevent
.SetDirection( !event
.ShiftDown() );
1563 nevent
.SetCurrentFocus( m_parent
);
1564 if (m_parent
->GetEventHandler()->ProcessEvent( nevent
)) return;
1567 /* no item -> nothing to do */
1574 switch (event
.KeyCode())
1578 wxNode
*node
= m_lines
.Member( m_current
)->Previous();
1579 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1584 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1585 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1590 wxNode
*node
= m_lines
.Last();
1591 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1596 wxNode
*node
= m_lines
.First();
1597 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1603 if (m_mode
& wxLC_REPORT
)
1605 steps
= m_visibleLines
-1;
1610 wxNode
*node
= m_lines
.First();
1611 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); }
1612 steps
= pos
% m_visibleLines
;
1614 wxNode
*node
= m_lines
.Member( m_current
);
1615 for (int i
= 0; i
< steps
; i
++) if (node
->Previous()) node
= node
->Previous();
1616 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1622 if (m_mode
& wxLC_REPORT
)
1624 steps
= m_visibleLines
-1;
1628 int pos
= 0; wxNode
*node
= m_lines
.First();
1629 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); }
1630 steps
= m_visibleLines
-(pos
% m_visibleLines
)-1;
1632 wxNode
*node
= m_lines
.Member( m_current
);
1633 for (int i
= 0; i
< steps
; i
++) if (node
->Next()) node
= node
->Next();
1634 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1639 if (!(m_mode
& wxLC_REPORT
))
1641 wxNode
*node
= m_lines
.Member( m_current
);
1642 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Previous()) node
= node
->Previous();
1643 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1649 if (!(m_mode
& wxLC_REPORT
))
1651 wxNode
*node
= m_lines
.Member( m_current
);
1652 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Next()) node
= node
->Next();
1653 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1659 m_current
->ReverseHilight();
1660 RefreshLine( m_current
);
1665 if (!(m_mode
& wxLC_SINGLE_SEL
))
1667 wxListLineData
*oldCurrent
= m_current
;
1668 m_current
->ReverseHilight();
1669 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1670 if (node
) m_current
= (wxListLineData
*)node
->Data();
1672 RefreshLine( oldCurrent
);
1673 RefreshLine( m_current
);
1674 UnfocusLine( oldCurrent
);
1675 FocusLine( m_current
);
1682 wxListEvent
le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, GetParent()->GetId() );
1683 le
.SetEventObject( GetParent() );
1684 le
.m_itemIndex
= GetIndexOfLine( m_current
);
1685 m_current
->GetItem( 0, le
.m_item
);
1686 GetParent()->GetEventHandler()->ProcessEvent( le
);
1699 extern wxWindow
*g_focusWindow
;
1702 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1705 RefreshLine( m_current
);
1707 if (!GetParent()) return;
1710 g_focusWindow
= GetParent();
1713 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
1714 event
.SetEventObject( GetParent() );
1715 GetParent()->GetEventHandler()->ProcessEvent( event
);
1718 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1721 RefreshLine( m_current
);
1724 void wxListMainWindow::OnSize( wxSizeEvent
&WXUNUSED(event
) )
1727 We don't even allow the wxScrolledWindow::AdjustScrollbars() call
1732 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
1734 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1736 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1739 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1741 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1743 if ((m_mode
& wxLC_LIST
) && (m_small_image_list
))
1745 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1747 if ((m_mode
& wxLC_REPORT
) && (m_small_image_list
))
1749 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1754 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
)
1756 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1758 m_normal_image_list
->GetSize( index
, width
, height
);
1761 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1763 m_small_image_list
->GetSize( index
, width
, height
);
1766 if ((m_mode
& wxLC_LIST
) && (m_small_image_list
))
1768 m_small_image_list
->GetSize( index
, width
, height
);
1771 if ((m_mode
& wxLC_REPORT
) && (m_small_image_list
))
1773 m_small_image_list
->GetSize( index
, width
, height
);
1780 int wxListMainWindow::GetTextLength( wxString
&s
)
1782 wxClientDC
dc( this );
1785 dc
.GetTextExtent( s
, &lw
, &lh
);
1789 int wxListMainWindow::GetIndexOfLine( const wxListLineData
*line
)
1792 wxNode
*node
= m_lines
.First();
1795 if (line
== (wxListLineData
*)node
->Data()) return i
;
1797 node
= node
->Next();
1802 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
1805 if (which
== wxIMAGE_LIST_NORMAL
) m_normal_image_list
= imageList
;
1806 if (which
== wxIMAGE_LIST_SMALL
) m_small_image_list
= imageList
;
1809 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
1814 m_small_spacing
= spacing
;
1818 m_normal_spacing
= spacing
;
1822 int wxListMainWindow::GetItemSpacing( bool isSmall
)
1824 if (isSmall
) return m_small_spacing
; else return m_normal_spacing
;
1827 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
1830 wxNode
*node
= m_columns
.Nth( col
);
1833 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
)+7;
1834 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1835 column
->SetItem( item
);
1837 wxListCtrl
*lc
= (wxListCtrl
*) GetParent();
1838 if (lc
->m_headerWin
) lc
->m_headerWin
->Refresh();
1841 void wxListMainWindow::SetColumnWidth( int col
, int width
)
1843 if (!(m_mode
& wxLC_REPORT
)) return;
1847 wxNode
*node
= (wxNode
*) NULL
;
1849 if (width
== wxLIST_AUTOSIZE_USEHEADER
) width
= 80;
1850 if (width
== wxLIST_AUTOSIZE
)
1852 wxClientDC
dc(this);
1853 dc
.SetFont( GetFont() );
1855 node
= m_lines
.First();
1858 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1859 wxNode
*n
= line
->m_items
.Nth( col
);
1862 wxListItemData
*item
= (wxListItemData
*)n
->Data();
1863 int current
= 0, ix
= 0, iy
= 0;
1864 long lx
= 0, ly
= 0;
1865 if (item
->HasImage())
1867 GetImageSize( item
->GetImage(), ix
, iy
);
1870 if (item
->HasText())
1873 item
->GetText( str
);
1874 dc
.GetTextExtent( str
, &lx
, &ly
);
1877 if (current
> max
) max
= current
;
1879 node
= node
->Next();
1884 node
= m_columns
.Nth( col
);
1887 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1888 column
->SetWidth( width
);
1891 node
= m_lines
.First();
1894 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1895 wxNode
*n
= line
->m_items
.Nth( col
);
1898 wxListItemData
*item
= (wxListItemData
*)n
->Data();
1899 item
->SetSize( width
, -1 );
1901 node
= node
->Next();
1904 wxListCtrl
*lc
= (wxListCtrl
*) GetParent();
1905 if (lc
->m_headerWin
) lc
->m_headerWin
->Refresh();
1908 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
)
1910 wxNode
*node
= m_columns
.Nth( col
);
1913 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1914 column
->GetItem( item
);
1926 int wxListMainWindow::GetColumnWidth( int col
)
1928 wxNode
*node
= m_columns
.Nth( col
);
1931 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1932 return column
->GetWidth();
1940 int wxListMainWindow::GetColumnCount()
1942 return m_columns
.Number();
1945 int wxListMainWindow::GetCountPerPage()
1947 return m_visibleLines
;
1950 void wxListMainWindow::SetItem( wxListItem
&item
)
1953 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
1956 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1957 if (m_mode
& wxLC_REPORT
) item
.m_width
= GetColumnWidth( item
.m_col
)-3;
1958 line
->SetItem( item
.m_col
, item
);
1962 void wxListMainWindow::SetItemState( long item
, long state
, long stateMask
)
1964 // m_dirty = TRUE; no recalcs needed
1966 wxListLineData
*oldCurrent
= m_current
;
1968 if (stateMask
& wxLIST_STATE_FOCUSED
)
1970 wxNode
*node
= m_lines
.Nth( item
);
1973 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1974 UnfocusLine( m_current
);
1976 FocusLine( m_current
);
1977 RefreshLine( m_current
);
1978 if (oldCurrent
) RefreshLine( oldCurrent
);
1982 if (stateMask
& wxLIST_STATE_SELECTED
)
1984 bool on
= state
& wxLIST_STATE_SELECTED
;
1985 if (!on
&& (m_mode
& wxLC_SINGLE_SEL
)) return;
1987 wxNode
*node
= m_lines
.Nth( item
);
1990 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1991 if (m_mode
& wxLC_SINGLE_SEL
)
1993 UnfocusLine( m_current
);
1995 FocusLine( m_current
);
1996 if (oldCurrent
) oldCurrent
->Hilight( FALSE
);
1997 RefreshLine( m_current
);
1998 if (oldCurrent
) RefreshLine( oldCurrent
);
2000 bool on
= state
& wxLIST_STATE_SELECTED
;
2001 if (on
!= line
->IsHilighted())
2003 line
->Hilight( on
);
2004 RefreshLine( line
);
2010 int wxListMainWindow::GetItemState( long item
, long stateMask
)
2012 int ret
= wxLIST_STATE_DONTCARE
;
2013 if (stateMask
& wxLIST_STATE_FOCUSED
)
2015 wxNode
*node
= m_lines
.Nth( item
);
2018 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2019 if (line
== m_current
) ret
|= wxLIST_STATE_FOCUSED
;
2022 if (stateMask
& wxLIST_STATE_SELECTED
)
2024 wxNode
*node
= m_lines
.Nth( item
);
2027 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2028 if (line
->IsHilighted()) ret
|= wxLIST_STATE_FOCUSED
;
2034 void wxListMainWindow::GetItem( wxListItem
&item
)
2036 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
2039 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2040 line
->GetItem( item
.m_col
, item
);
2051 int wxListMainWindow::GetItemCount()
2053 return m_lines
.Number();
2056 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
)
2058 wxNode
*node
= m_lines
.Nth( index
);
2061 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2062 line
->GetRect( rect
);
2073 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
)
2075 wxNode
*node
= m_lines
.Nth( item
);
2079 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2080 line
->GetRect( rect
);
2092 int wxListMainWindow::GetSelectedItemCount()
2095 wxNode
*node
= m_lines
.First();
2098 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2099 if (line
->IsHilighted()) ret
++;
2100 node
= node
->Next();
2105 void wxListMainWindow::SetMode( long mode
)
2112 if (m_mode
& wxLC_REPORT
)
2114 #if wxUSE_GENERIC_LIST_EXTENSIONS
2128 long wxListMainWindow::GetMode() const
2133 void wxListMainWindow::CalculatePositions()
2135 if (!m_lines
.First()) return;
2137 wxClientDC
dc( this );
2138 dc
.SetFont( GetFont() );
2140 int iconSpacing
= 0;
2141 if (m_mode
& wxLC_ICON
) iconSpacing
= m_normal_spacing
;
2142 if (m_mode
& wxLC_SMALL_ICON
) iconSpacing
= m_small_spacing
;
2144 // we take the first line (which also can be an icon or
2145 // an a text item in wxLC_ICON and wxLC_LIST modes) to
2146 // measure the size of the line
2150 int lineSpacing
= 0;
2152 wxListLineData
*line
= (wxListLineData
*)m_lines
.First()->Data();
2153 line
->CalculateSize( &dc
, iconSpacing
);
2155 line
->GetSize( dummy
, lineSpacing
);
2158 int clientWidth
= 0;
2159 int clientHeight
= 0;
2161 if (m_mode
& wxLC_REPORT
)
2165 int entireHeight
= m_lines
.Number() * lineSpacing
+ 2;
2166 int scroll_pos
= GetScrollPos( wxVERTICAL
);
2167 int x_scroll_pos
= GetScrollPos( wxHORIZONTAL
);
2168 #if wxUSE_GENERIC_LIST_EXTENSIONS
2170 SetScrollbars( m_xScroll
, m_yScroll
, 0, (entireHeight
+15) / m_yScroll
, 0, scroll_pos
, TRUE
);
2172 GetClientSize( &clientWidth
, &clientHeight
);
2174 wxNode
* node
= m_lines
.First();
2175 int entireWidth
= 0 ;
2178 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2179 line
->CalculateSize( &dc
, iconSpacing
);
2180 line
->SetPosition( &dc
, x
, y
, clientWidth
);
2182 for (int i
= 0; i
< GetColumnCount(); i
++)
2184 line
->SetColumnPosition( i
, col_x
);
2185 col_x
+= GetColumnWidth( i
);
2187 entireWidth
= wxMax( entireWidth
, col_x
) ;
2188 #if wxUSE_GENERIC_LIST_EXTENSIONS
2189 line
->SetPosition( &dc
, x
, y
, col_x
);
2191 y
+= lineSpacing
; // one pixel blank line between items
2192 node
= node
->Next();
2194 m_visibleLines
= clientHeight
/ lineSpacing
;
2195 #if wxUSE_GENERIC_LIST_EXTENSIONS
2196 SetScrollbars( m_xScroll
, m_yScroll
, entireWidth
/ m_xScroll
, (entireHeight
+15) / m_yScroll
, x_scroll_pos
, scroll_pos
, TRUE
);
2201 // at first we try without any scrollbar. if the items don't
2202 // fit into the window, we recalculate after subtracting an
2203 // approximated 15 pt for the horizontal scrollbar
2205 GetSize( &clientWidth
, &clientHeight
);
2206 clientHeight
-= 4; // sunken frame
2208 int entireWidth
= 0;
2210 for (int tries
= 0; tries
< 2; tries
++)
2213 int x
= 5; // painting is done at x-2
2214 int y
= 5; // painting is done at y-2
2217 int m_currentVisibleLines
= 0;
2218 wxNode
*node
= m_lines
.First();
2221 m_currentVisibleLines
++;
2222 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2223 line
->CalculateSize( &dc
, iconSpacing
);
2224 line
->SetPosition( &dc
, x
, y
, clientWidth
);
2225 line
->GetSize( lineWidth
, lineHeight
);
2226 if (lineWidth
> maxWidth
) maxWidth
= lineWidth
;
2228 if (y
+lineSpacing
-6 >= clientHeight
) // -6 for earlier "line breaking"
2230 if (m_currentVisibleLines
> m_visibleLines
)
2231 m_visibleLines
= m_currentVisibleLines
;
2232 m_currentVisibleLines
= 0;
2235 entireWidth
+= maxWidth
+6;
2238 node
= node
->Next();
2239 if (!node
) entireWidth
+= maxWidth
;
2240 if ((tries
== 0) && (entireWidth
> clientWidth
))
2242 clientHeight
-= 15; // scrollbar height
2244 m_currentVisibleLines
= 0;
2247 if (!node
) tries
= 1; // everything fits, no second try required
2250 // m_visibleLines = (5+clientHeight+6) / (lineSpacing); // +6 for earlier "line breaking"
2252 int scroll_pos
= GetScrollPos( wxHORIZONTAL
);
2253 SetScrollbars( m_xScroll
, m_yScroll
, (entireWidth
+15) / m_xScroll
, 0, scroll_pos
, 0, TRUE
);
2257 void wxListMainWindow::RealizeChanges( void )
2261 wxNode
*node
= m_lines
.First();
2262 if (node
) m_current
= (wxListLineData
*)node
->Data();
2266 FocusLine( m_current
);
2267 if (m_mode
& wxLC_SINGLE_SEL
) m_current
->Hilight( TRUE
);
2271 long wxListMainWindow::GetNextItem( long item
, int WXUNUSED(geometry
), int state
)
2274 if (item
> 0) ret
= item
;
2275 if(ret
>= GetItemCount()) return -1;
2276 wxNode
*node
= m_lines
.Nth( ret
);
2279 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2280 if ((state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
)) return ret
;
2281 if ((state
& wxLIST_STATE_SELECTED
) && (line
->IsHilighted())) return ret
;
2282 if (!state
) return ret
;
2284 node
= node
->Next();
2289 void wxListMainWindow::DeleteItem( long index
)
2292 wxNode
*node
= m_lines
.Nth( index
);
2295 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2296 if (m_current
== line
) m_current
= (wxListLineData
*) NULL
;
2298 m_lines
.DeleteNode( node
);
2302 void wxListMainWindow::DeleteColumn( int col
)
2304 wxCHECK_RET( col
< (int)m_columns
.GetCount(),
2305 wxT("attempting to delete inexistent column in wxListView") );
2308 wxNode
*node
= m_columns
.Nth( col
);
2309 if (node
) m_columns
.DeleteNode( node
);
2312 void wxListMainWindow::DeleteAllItems( void )
2315 m_current
= (wxListLineData
*) NULL
;
2316 wxNode
*node
= m_lines
.First();
2319 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2321 node
= node
->Next();
2326 void wxListMainWindow::DeleteEverything( void )
2329 m_current
= (wxListLineData
*) NULL
;
2330 wxNode
*node
= m_lines
.First();
2333 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2335 node
= node
->Next();
2338 m_current
= (wxListLineData
*) NULL
;
2342 void wxListMainWindow::EnsureVisible( long index
)
2344 // We have to call this here because the label in
2345 // question might just have been added and no screen
2346 // update taken place.
2347 if (m_dirty
) wxYield();
2349 wxListLineData
*oldCurrent
= m_current
;
2350 m_current
= (wxListLineData
*) NULL
;
2352 wxNode
*node
= m_lines
.Nth( i
);
2353 if (node
) m_current
= (wxListLineData
*)node
->Data();
2354 if (m_current
) MoveToFocus();
2355 m_current
= oldCurrent
;
2358 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
2362 if (pos
< 0) pos
= 0;
2363 wxNode
*node
= m_lines
.Nth( pos
);
2366 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2368 line
->GetText( 0, s
);
2369 if (s
== tmp
) return pos
;
2370 node
= node
->Next();
2376 long wxListMainWindow::FindItem(long start
, long data
)
2379 if (pos
< 0) pos
= 0;
2380 wxNode
*node
= m_lines
.Nth( pos
);
2383 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2385 line
->GetItem( 0, item
);
2386 if (item
.m_data
== data
) return pos
;
2387 node
= node
->Next();
2393 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
2395 wxNode
*node
= m_lines
.First();
2399 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2400 long ret
= line
->IsHit( x
, y
);
2406 node
= node
->Next();
2412 void wxListMainWindow::InsertItem( wxListItem
&item
)
2416 if (m_mode
& wxLC_REPORT
) mode
= wxLC_REPORT
;
2417 else if (m_mode
& wxLC_LIST
) mode
= wxLC_LIST
;
2418 else if (m_mode
& wxLC_ICON
) mode
= wxLC_ICON
;
2419 else if (m_mode
& wxLC_SMALL_ICON
) mode
= wxLC_ICON
; // no typo
2421 wxListLineData
*line
= new wxListLineData( this, mode
, m_hilightBrush
);
2423 if (m_mode
& wxLC_REPORT
)
2425 line
->InitItems( GetColumnCount() );
2426 item
.m_width
= GetColumnWidth( 0 )-3;
2430 line
->InitItems( 1 );
2433 line
->SetItem( 0, item
);
2434 if ((item
.m_itemId
>= 0) && (item
.m_itemId
< (int)m_lines
.GetCount()))
2436 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
2437 if (node
) m_lines
.Insert( node
, line
);
2441 m_lines
.Append( line
);
2445 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
2448 if (m_mode
& wxLC_REPORT
)
2450 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
);
2451 wxListHeaderData
*column
= new wxListHeaderData( item
);
2452 if ((col
>= 0) && (col
< (int)m_columns
.GetCount()))
2454 wxNode
*node
= m_columns
.Nth( col
);
2456 m_columns
.Insert( node
, column
);
2460 m_columns
.Append( column
);
2465 wxListCtrlCompare list_ctrl_compare_func_2
;
2466 long list_ctrl_compare_data
;
2468 int LINKAGEMODE
list_ctrl_compare_func_1( const void *arg1
, const void *arg2
)
2470 wxListLineData
*line1
= *((wxListLineData
**)arg1
);
2471 wxListLineData
*line2
= *((wxListLineData
**)arg2
);
2473 line1
->GetItem( 0, item
);
2474 long data1
= item
.m_data
;
2475 line2
->GetItem( 0, item
);
2476 long data2
= item
.m_data
;
2477 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
2480 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
2482 list_ctrl_compare_func_2
= fn
;
2483 list_ctrl_compare_data
= data
;
2484 m_lines
.Sort( list_ctrl_compare_func_1
);
2487 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
2489 wxScrolledWindow::OnScroll( event
) ;
2490 #if wxUSE_GENERIC_LIST_EXTENSIONS
2492 if (event
.GetOrientation() == wxHORIZONTAL
&& ( m_mode
& wxLC_REPORT
))
2494 wxListCtrl
* lc
= wxDynamicCast( GetParent() , wxListCtrl
) ;
2497 lc
->m_headerWin
->Refresh() ;
2499 lc
->m_headerWin
->MacUpdateImmediately() ;
2506 // -------------------------------------------------------------------------------------
2508 // -------------------------------------------------------------------------------------
2510 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
2512 wxListItem::wxListItem()
2521 m_format
= wxLIST_FORMAT_CENTRE
;
2526 // -------------------------------------------------------------------------------------
2528 // -------------------------------------------------------------------------------------
2530 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
2532 wxListEvent::wxListEvent( wxEventType commandType
, int id
):
2533 wxNotifyEvent( commandType
, id
)
2539 m_cancelled
= FALSE
;
2544 // -------------------------------------------------------------------------------------
2546 // -------------------------------------------------------------------------------------
2548 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
2550 BEGIN_EVENT_TABLE(wxListCtrl
,wxControl
)
2551 EVT_SIZE (wxListCtrl::OnSize
)
2552 EVT_IDLE (wxListCtrl::OnIdle
)
2555 wxListCtrl::wxListCtrl()
2557 m_imageListNormal
= (wxImageList
*) NULL
;
2558 m_imageListSmall
= (wxImageList
*) NULL
;
2559 m_imageListState
= (wxImageList
*) NULL
;
2560 m_mainWin
= (wxListMainWindow
*) NULL
;
2561 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2564 wxListCtrl::~wxListCtrl()
2568 bool wxListCtrl::Create( wxWindow
*parent
, wxWindowID id
,
2569 const wxPoint
&pos
, const wxSize
&size
,
2570 #if wxUSE_VALIDATORS
2571 # if defined(__VISAGECPP__)
2572 long style
, const wxValidator
*validator
,
2574 long style
, const wxValidator
&validator
,
2577 const wxString
&name
)
2579 m_imageListNormal
= (wxImageList
*) NULL
;
2580 m_imageListSmall
= (wxImageList
*) NULL
;
2581 m_imageListState
= (wxImageList
*) NULL
;
2582 m_mainWin
= (wxListMainWindow
*) NULL
;
2583 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2587 if ((s
& wxLC_REPORT
== 0) &&
2588 (s
& wxLC_LIST
== 0) &&
2589 (s
& wxLC_ICON
== 0))
2594 bool ret
= wxControl::Create( parent
, id
, pos
, size
, s
, name
);
2596 #if wxUSE_VALIDATORS
2597 SetValidator( validator
);
2600 if (s
& wxSUNKEN_BORDER
) s
-= wxSUNKEN_BORDER
;
2602 m_mainWin
= new wxListMainWindow( this, -1, wxPoint(0,0), size
, s
);
2604 if (HasFlag(wxLC_REPORT
))
2605 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
, wxPoint(0,0), wxSize(size
.x
,23), wxTAB_TRAVERSAL
);
2607 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2609 SetBackgroundColour( *wxWHITE
);
2614 void wxListCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
2616 /* handled in OnIdle */
2618 if (m_mainWin
) m_mainWin
->m_dirty
= TRUE
;
2621 void wxListCtrl::SetSingleStyle( long style
, bool add
)
2623 long flag
= GetWindowStyle();
2627 if (style
& wxLC_MASK_TYPE
) flag
= flag
& ~wxLC_MASK_TYPE
;
2628 if (style
& wxLC_MASK_ALIGN
) flag
= flag
& ~wxLC_MASK_ALIGN
;
2629 if (style
& wxLC_MASK_SORT
) flag
= flag
& ~wxLC_MASK_SORT
;
2638 if (flag
& style
) flag
-= style
;
2641 SetWindowStyleFlag( flag
);
2644 void wxListCtrl::SetWindowStyleFlag( long flag
)
2648 m_mainWin
->DeleteEverything();
2652 GetClientSize( &width
, &height
);
2654 m_mainWin
->SetMode( flag
);
2656 if (flag
& wxLC_REPORT
)
2658 if (!HasFlag(wxLC_REPORT
))
2662 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
,
2663 wxPoint(0,0), wxSize(width
,23), wxTAB_TRAVERSAL
);
2664 if (HasFlag(wxLC_NO_HEADER
))
2665 m_headerWin
->Show( FALSE
);
2669 if (flag
& wxLC_NO_HEADER
)
2670 m_headerWin
->Show( FALSE
);
2672 m_headerWin
->Show( TRUE
);
2678 if (HasFlag(wxLC_REPORT
) && !(HasFlag(wxLC_NO_HEADER
)))
2680 m_headerWin
->Show( FALSE
);
2685 wxWindow::SetWindowStyleFlag( flag
);
2688 bool wxListCtrl::GetColumn(int col
, wxListItem
&item
) const
2690 m_mainWin
->GetColumn( col
, item
);
2694 bool wxListCtrl::SetColumn( int col
, wxListItem
& item
)
2696 m_mainWin
->SetColumn( col
, item
);
2700 int wxListCtrl::GetColumnWidth( int col
) const
2702 return m_mainWin
->GetColumnWidth( col
);
2705 bool wxListCtrl::SetColumnWidth( int col
, int width
)
2707 m_mainWin
->SetColumnWidth( col
, width
);
2711 int wxListCtrl::GetCountPerPage() const
2713 return m_mainWin
->GetCountPerPage(); // different from Windows ?
2716 bool wxListCtrl::GetItem( wxListItem
&info
) const
2718 m_mainWin
->GetItem( info
);
2722 bool wxListCtrl::SetItem( wxListItem
&info
)
2724 m_mainWin
->SetItem( info
);
2728 long wxListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
2731 info
.m_text
= label
;
2732 info
.m_mask
= wxLIST_MASK_TEXT
;
2733 info
.m_itemId
= index
;
2737 info
.m_image
= imageId
;
2738 info
.m_mask
|= wxLIST_MASK_IMAGE
;
2740 m_mainWin
->SetItem(info
);
2744 int wxListCtrl::GetItemState( long item
, long stateMask
) const
2746 return m_mainWin
->GetItemState( item
, stateMask
);
2749 bool wxListCtrl::SetItemState( long item
, long state
, long stateMask
)
2751 m_mainWin
->SetItemState( item
, state
, stateMask
);
2755 bool wxListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
2758 info
.m_image
= image
;
2759 info
.m_mask
= wxLIST_MASK_IMAGE
;
2760 info
.m_itemId
= item
;
2761 m_mainWin
->SetItem( info
);
2765 wxString
wxListCtrl::GetItemText( long item
) const
2768 info
.m_itemId
= item
;
2769 m_mainWin
->GetItem( info
);
2773 void wxListCtrl::SetItemText( long item
, const wxString
&str
)
2776 info
.m_mask
= wxLIST_MASK_TEXT
;
2777 info
.m_itemId
= item
;
2779 m_mainWin
->SetItem( info
);
2782 long wxListCtrl::GetItemData( long item
) const
2785 info
.m_itemId
= item
;
2786 m_mainWin
->GetItem( info
);
2790 bool wxListCtrl::SetItemData( long item
, long data
)
2793 info
.m_mask
= wxLIST_MASK_DATA
;
2794 info
.m_itemId
= item
;
2796 m_mainWin
->SetItem( info
);
2800 bool wxListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
2802 m_mainWin
->GetItemRect( item
, rect
);
2806 bool wxListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
2808 m_mainWin
->GetItemPosition( item
, pos
);
2812 bool wxListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
2817 int wxListCtrl::GetItemCount() const
2819 return m_mainWin
->GetItemCount();
2822 int wxListCtrl::GetColumnCount() const
2824 return m_mainWin
->GetColumnCount();
2827 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
2829 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
2832 int wxListCtrl::GetItemSpacing( bool isSmall
) const
2834 return m_mainWin
->GetItemSpacing( isSmall
);
2837 int wxListCtrl::GetSelectedItemCount() const
2839 return m_mainWin
->GetSelectedItemCount();
2843 wxColour wxListCtrl::GetTextColour() const
2847 void wxListCtrl::SetTextColour(const wxColour& WXUNUSED(col))
2852 long wxListCtrl::GetTopItem() const
2857 long wxListCtrl::GetNextItem( long item
, int geom
, int state
) const
2859 return m_mainWin
->GetNextItem( item
, geom
, state
);
2862 wxImageList
*wxListCtrl::GetImageList(int which
) const
2864 if (which
== wxIMAGE_LIST_NORMAL
)
2866 return m_imageListNormal
;
2868 else if (which
== wxIMAGE_LIST_SMALL
)
2870 return m_imageListSmall
;
2872 else if (which
== wxIMAGE_LIST_STATE
)
2874 return m_imageListState
;
2876 return (wxImageList
*) NULL
;
2879 void wxListCtrl::SetImageList( wxImageList
*imageList
, int which
)
2881 m_mainWin
->SetImageList( imageList
, which
);
2884 bool wxListCtrl::Arrange( int WXUNUSED(flag
) )
2889 bool wxListCtrl::DeleteItem( long item
)
2891 m_mainWin
->DeleteItem( item
);
2895 bool wxListCtrl::DeleteAllItems()
2897 m_mainWin
->DeleteAllItems();
2901 bool wxListCtrl::DeleteAllColumns()
2903 for ( size_t n
= 0; n
< m_mainWin
->m_columns
.GetCount(); n
++ )
2909 void wxListCtrl::ClearAll()
2911 m_mainWin
->DeleteEverything();
2914 bool wxListCtrl::DeleteColumn( int col
)
2916 m_mainWin
->DeleteColumn( col
);
2920 void wxListCtrl::Edit( long item
)
2922 m_mainWin
->Edit( item
);
2925 bool wxListCtrl::EnsureVisible( long item
)
2927 m_mainWin
->EnsureVisible( item
);
2931 long wxListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
2933 return m_mainWin
->FindItem( start
, str
, partial
);
2936 long wxListCtrl::FindItem( long start
, long data
)
2938 return m_mainWin
->FindItem( start
, data
);
2941 long wxListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& WXUNUSED(pt
),
2942 int WXUNUSED(direction
))
2947 long wxListCtrl::HitTest( const wxPoint
&point
, int &flags
)
2949 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
2952 long wxListCtrl::InsertItem( wxListItem
& info
)
2954 m_mainWin
->InsertItem( info
);
2955 return info
.m_itemId
;
2958 long wxListCtrl::InsertItem( long index
, const wxString
&label
)
2961 info
.m_text
= label
;
2962 info
.m_mask
= wxLIST_MASK_TEXT
;
2963 info
.m_itemId
= index
;
2964 return InsertItem( info
);
2967 long wxListCtrl::InsertItem( long index
, int imageIndex
)
2970 info
.m_mask
= wxLIST_MASK_IMAGE
;
2971 info
.m_image
= imageIndex
;
2972 info
.m_itemId
= index
;
2973 return InsertItem( info
);
2976 long wxListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
2979 info
.m_text
= label
;
2980 info
.m_image
= imageIndex
;
2981 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
2982 info
.m_itemId
= index
;
2983 return InsertItem( info
);
2986 long wxListCtrl::InsertColumn( long col
, wxListItem
&item
)
2988 m_mainWin
->InsertColumn( col
, item
);
2992 long wxListCtrl::InsertColumn( long col
, const wxString
&heading
,
2993 int format
, int width
)
2996 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
2997 item
.m_text
= heading
;
3000 item
.m_mask
|= wxLIST_MASK_WIDTH
;
3001 item
.m_width
= width
;
3003 item
.m_format
= format
;
3005 return InsertColumn( col
, item
);
3008 bool wxListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
3014 // fn is a function which takes 3 long arguments: item1, item2, data.
3015 // item1 is the long data associated with a first item (NOT the index).
3016 // item2 is the long data associated with a second item (NOT the index).
3017 // data is the same value as passed to SortItems.
3018 // The return value is a negative number if the first item should precede the second
3019 // item, a positive number of the second item should precede the first,
3020 // or zero if the two items are equivalent.
3021 // data is arbitrary data to be passed to the sort function.
3023 bool wxListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
3025 m_mainWin
->SortItems( fn
, data
);
3029 void wxListCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
3031 if (!m_mainWin
->m_dirty
) return;
3035 GetClientSize( &cw
, &ch
);
3042 if (HasFlag(wxLC_REPORT
) && !HasFlag(wxLC_NO_HEADER
))
3044 m_headerWin
->GetPosition( &x
, &y
);
3045 m_headerWin
->GetSize( &w
, &h
);
3046 if ((x
!= 0) || (y
!= 0) || (w
!= cw
) || (h
!= 23))
3047 m_headerWin
->SetSize( 0, 0, cw
, 23 );
3049 m_mainWin
->GetPosition( &x
, &y
);
3050 m_mainWin
->GetSize( &w
, &h
);
3051 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
-24))
3052 m_mainWin
->SetSize( 0, 24, cw
, ch
-24 );
3056 m_mainWin
->GetPosition( &x
, &y
);
3057 m_mainWin
->GetSize( &w
, &h
);
3058 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
))
3059 m_mainWin
->SetSize( 0, 0, cw
, ch
);
3062 m_mainWin
->CalculatePositions();
3063 m_mainWin
->RealizeChanges();
3064 m_mainWin
->m_dirty
= FALSE
;
3065 m_mainWin
->Refresh();
3068 bool wxListCtrl::SetBackgroundColour( const wxColour
&colour
)
3070 if ( !wxWindow::SetBackgroundColour( colour
) )
3075 m_mainWin
->SetBackgroundColour( colour
);
3076 m_mainWin
->m_dirty
= TRUE
;
3081 // m_headerWin->SetBackgroundColour( colour );
3087 bool wxListCtrl::SetForegroundColour( const wxColour
&colour
)
3089 if ( !wxWindow::SetForegroundColour( colour
) )
3094 m_mainWin
->SetForegroundColour( colour
);
3095 m_mainWin
->m_dirty
= TRUE
;
3100 m_headerWin
->SetForegroundColour( colour
);
3106 bool wxListCtrl::SetFont( const wxFont
&font
)
3108 if ( !wxWindow::SetFont( font
) )
3113 m_mainWin
->SetFont( font
);
3114 m_mainWin
->m_dirty
= TRUE
;
3119 m_headerWin
->SetFont( font
);