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/generic/listctrl.h"
24 #include "wx/generic/imaglist.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 IMPLEMENT_DYNAMIC_CLASS(wxListItemData
,wxObject
);
32 wxListItemData::wxListItemData(void)
43 wxListItemData::wxListItemData( const wxListItem
&info
)
47 m_colour
= info
.m_colour
;
51 void wxListItemData::SetItem( const wxListItem
&info
)
53 if (info
.m_mask
& wxLIST_MASK_TEXT
) m_text
= info
.m_text
;
54 if (info
.m_mask
& wxLIST_MASK_IMAGE
) m_image
= info
.m_image
;
55 if (info
.m_mask
& wxLIST_MASK_DATA
) m_data
= info
.m_data
;
56 m_colour
= info
.m_colour
;
59 m_width
= info
.m_width
;
63 void wxListItemData::SetText( const wxString
&s
)
68 void wxListItemData::SetImage( int image
)
73 void wxListItemData::SetData( long data
)
78 void wxListItemData::SetPosition( int x
, int y
)
84 void wxListItemData::SetSize( int width
, int height
)
86 if (width
!= -1) m_width
= width
;
87 if (height
!= -1) m_height
= height
;
90 void wxListItemData::SetColour( wxColour
*col
)
95 bool wxListItemData::HasImage(void) const
97 return (m_image
>= 0);
100 bool wxListItemData::HasText(void) const
102 return (!m_text
.IsNull());
105 bool wxListItemData::IsHit( int x
, int y
) const
107 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
110 void wxListItemData::GetText( wxString
&s
)
115 int wxListItemData::GetX( void ) const
120 int wxListItemData::GetY( void ) const
125 int wxListItemData::GetWidth(void) const
130 int wxListItemData::GetHeight(void) const
135 int wxListItemData::GetImage(void) const
140 void wxListItemData::GetItem( wxListItem
&info
)
142 info
.m_text
= m_text
;
143 info
.m_image
= m_image
;
144 info
.m_data
= m_data
;
147 wxColour
*wxListItemData::GetColour(void)
152 //-----------------------------------------------------------------------------
154 //-----------------------------------------------------------------------------
156 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData
,wxObject
);
158 wxListHeaderData::wxListHeaderData(void)
169 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
177 void wxListHeaderData::SetItem( const wxListItem
&item
)
179 m_mask
= item
.m_mask
;
180 m_text
= item
.m_text
;
181 m_image
= item
.m_image
;
182 m_format
= item
.m_format
;
183 m_width
= item
.m_width
;
184 if (m_width
< 0) m_width
= 80;
185 if (m_width
< 6) m_width
= 6;
188 void wxListHeaderData::SetPosition( int x
, int y
)
194 void wxListHeaderData::SetHeight( int h
)
199 void wxListHeaderData::SetWidth( int w
)
202 if (m_width
< 0) m_width
= 80;
203 if (m_width
< 6) m_width
= 6;
206 void wxListHeaderData::SetFormat( int format
)
211 bool wxListHeaderData::HasImage(void) const
213 return (m_image
!= 0);
216 bool wxListHeaderData::HasText(void) const
218 return (m_text
.Length() > 0);
221 bool wxListHeaderData::IsHit( int x
, int y
) const
223 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
226 void wxListHeaderData::GetItem( wxListItem
&item
)
228 item
.m_mask
= m_mask
;
229 item
.m_text
= m_text
;
230 item
.m_image
= m_image
;
231 item
.m_format
= m_format
;
232 item
.m_width
= m_width
;
235 void wxListHeaderData::GetText( wxString
&s
)
240 int wxListHeaderData::GetImage(void) const
245 int wxListHeaderData::GetWidth(void) const
250 int wxListHeaderData::GetFormat(void) const
255 //-----------------------------------------------------------------------------
257 //-----------------------------------------------------------------------------
259 IMPLEMENT_DYNAMIC_CLASS(wxListLineData
,wxObject
);
261 wxListLineData::wxListLineData( wxListMainWindow
*owner
, int mode
, wxBrush
*hilightBrush
)
266 m_hilightBrush
= hilightBrush
;
267 m_items
.DeleteContents( TRUE
);
271 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
278 m_bound_all
.width
= m_spacing
;
279 m_bound_all
.height
= m_spacing
+13;
280 wxNode
*node
= m_items
.First();
283 wxListItemData
*item
= (wxListItemData
*)node
->Data();
287 dc
->GetTextExtent( s
, &lw
, &lh
);
288 if (lw
> m_spacing
) m_bound_all
.width
= lw
;
294 wxNode
*node
= m_items
.First();
297 wxListItemData
*item
= (wxListItemData
*)node
->Data();
301 dc
->GetTextExtent( s
, &lw
, &lh
);
302 m_bound_all
.width
= lw
;
303 m_bound_all
.height
= lh
;
309 m_bound_all
.width
= 0;
310 m_bound_all
.height
= 0;
311 wxNode
*node
= m_items
.First();
314 wxListItemData
*item
= (wxListItemData
*)node
->Data();
317 if (s
.IsNull()) s
= "H";
319 dc
->GetTextExtent( s
, &lw
, &lh
);
320 item
->SetSize( item
->GetWidth(), lh
);
321 m_bound_all
.width
+= lw
;
322 m_bound_all
.height
= lh
;
330 void wxListLineData::SetPosition( wxDC
*dc
, int x
, int y
, int window_width
)
338 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
339 AssignRect( m_bound_label
, 0, 0, 0, 0 );
340 AssignRect( m_bound_hilight
, m_bound_all
);
341 wxNode
*node
= m_items
.First();
344 wxListItemData
*item
= (wxListItemData
*)node
->Data();
345 if (item
->HasImage())
347 wxListItemData
*item
= (wxListItemData
*)node
->Data();
350 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
351 m_bound_icon
.x
= m_bound_all
.x
+ (m_spacing
/2) - (w
/2);
352 m_bound_icon
.y
= m_bound_all
.y
+ m_spacing
- h
- 5;
353 m_bound_icon
.width
= w
;
354 m_bound_icon
.height
= h
;
355 if (!item
->HasText())
357 AssignRect( m_bound_hilight
, m_bound_icon
);
358 m_bound_hilight
.x
-= 5;
359 m_bound_hilight
.y
-= 5;
360 m_bound_hilight
.width
+= 9;
361 m_bound_hilight
.height
+= 9;
369 dc
->GetTextExtent( s
, &lw
, &lh
);
370 if (m_bound_all
.width
> m_spacing
)
371 m_bound_label
.x
= m_bound_all
.x
;
373 m_bound_label
.x
= m_bound_all
.x
+ (m_spacing
/2) - lw
/2;
374 m_bound_label
.y
= m_bound_all
.y
+ m_bound_all
.height
- lh
;
375 m_bound_label
.width
= lw
;
376 m_bound_label
.height
= lh
;
377 AssignRect( m_bound_hilight
, m_bound_label
);
378 m_bound_hilight
.x
-= 2;
379 m_bound_hilight
.y
-= 2;
380 m_bound_hilight
.width
+= 4;
381 m_bound_hilight
.height
+= 4;
388 AssignRect( m_bound_label
, m_bound_all
);
391 m_bound_all
.width
+= 4;
392 m_bound_all
.height
+= 3;
393 AssignRect( m_bound_hilight
, m_bound_all
);
394 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
400 dc
->GetTextExtent( "H", &lw
, &lh
);
403 m_bound_all
.height
= lh
+3;
404 m_bound_all
.width
= window_width
;
405 AssignRect( m_bound_hilight
, m_bound_all
);
406 AssignRect( m_bound_label
, 0, 0, 0 ,0 );
407 AssignRect( m_bound_icon
, 0, 0, 0, 0 );
413 void wxListLineData::SetColumnPosition( int index
, int x
)
416 wxNode
*node
= m_items
.Nth( i
);
419 wxListItemData
*item
= (wxListItemData
*)node
->Data();
420 item
->SetPosition( x
, m_bound_all
.y
+1 );
424 void wxListLineData::GetSize( int &width
, int &height
)
426 width
= m_bound_all
.width
;
427 height
= m_bound_all
.height
;
430 void wxListLineData::GetExtent( int &x
, int &y
, int &width
, int &height
)
434 width
= m_bound_all
.width
;
435 height
= m_bound_all
.height
;
438 void wxListLineData::GetLabelExtent( int &x
, int &y
, int &width
, int &height
)
442 width
= m_bound_label
.width
;
443 height
= m_bound_label
.height
;
446 void wxListLineData::GetRect( wxRect
&rect
)
448 AssignRect( rect
, m_bound_all
);
451 long wxListLineData::IsHit( int x
, int y
)
453 wxNode
*node
= m_items
.First();
456 wxListItemData
*item
= (wxListItemData
*)node
->Data();
457 if (item
->HasImage() && IsInRect( x
, y
, m_bound_icon
)) return wxLIST_HITTEST_ONITEMICON
;
458 if (item
->HasText() && IsInRect( x
, y
, m_bound_label
)) return wxLIST_HITTEST_ONITEMLABEL
;
459 // if (!(item->HasImage() || item->HasText())) return 0;
461 // if there is no icon or text = empty
462 if (IsInRect( x
, y
, m_bound_all
)) return wxLIST_HITTEST_ONITEMICON
;
466 void wxListLineData::InitItems( int num
)
468 for (int i
= 0; i
< num
; i
++) m_items
.Append( new wxListItemData() );
471 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
473 wxNode
*node
= m_items
.Nth( index
);
476 wxListItemData
*item
= (wxListItemData
*)node
->Data();
477 item
->SetItem( info
);
481 void wxListLineData::GetItem( int index
, wxListItem
&info
)
484 wxNode
*node
= m_items
.Nth( i
);
487 wxListItemData
*item
= (wxListItemData
*)node
->Data();
488 item
->GetItem( info
);
492 void wxListLineData::GetText( int index
, wxString
&s
)
495 wxNode
*node
= m_items
.Nth( i
);
499 wxListItemData
*item
= (wxListItemData
*)node
->Data();
504 void wxListLineData::SetText( int index
, const wxString s
)
507 wxNode
*node
= m_items
.Nth( i
);
510 wxListItemData
*item
= (wxListItemData
*)node
->Data();
515 int wxListLineData::GetImage( int index
)
518 wxNode
*node
= m_items
.Nth( i
);
521 wxListItemData
*item
= (wxListItemData
*)node
->Data();
522 return item
->GetImage();
527 void wxListLineData::DoDraw( wxDC
*dc
, bool hilight
, bool paintBG
)
529 long dev_x
= dc
->LogicalToDeviceX( m_bound_all
.x
-2 );
530 long dev_y
= dc
->LogicalToDeviceY( m_bound_all
.y
-2 );
531 long dev_w
= dc
->LogicalToDeviceXRel( m_bound_all
.width
+4 );
532 long dev_h
= dc
->LogicalToDeviceYRel( m_bound_all
.height
+4 );
534 if (!m_owner
->IsExposed( dev_x
, dev_y
, dev_w
, dev_h
))
543 dc
->SetBrush( * m_hilightBrush
);
544 dc
->SetPen( * wxTRANSPARENT_PEN
);
548 dc
->SetBrush( * wxWHITE_BRUSH
);
549 dc
->SetPen( * wxTRANSPARENT_PEN
);
551 dc
->DrawRectangle( m_bound_hilight
.x
, m_bound_hilight
.y
,
552 m_bound_hilight
.width
, m_bound_hilight
.height
);
555 dc
->SetBackgroundMode(wxTRANSPARENT
);
556 if (m_mode
== wxLC_REPORT
)
559 wxNode
*node
= m_items
.First();
562 wxListItemData
*item
= (wxListItemData
*)node
->Data();
563 dc
->SetClippingRegion( item
->GetX(), item
->GetY(), item
->GetWidth()-3, item
->GetHeight() );
564 int x
= item
->GetX();
565 if (item
->HasImage())
568 m_owner
->DrawImage( item
->GetImage(), dc
, x
, item
->GetY() );
569 m_owner
->GetImageSize( item
->GetImage(), x
, y
);
570 x
+= item
->GetX() + 5;
576 dc
->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
) );
578 dc
->SetTextForeground( *item
->GetColour() );
579 dc
->DrawText( s
, x
, item
->GetY() );
581 dc
->DestroyClippingRegion();
587 wxNode
*node
= m_items
.First();
590 wxListItemData
*item
= (wxListItemData
*)node
->Data();
591 if (item
->HasImage())
593 m_owner
->DrawImage( item
->GetImage(), dc
, m_bound_icon
.x
, m_bound_icon
.y
);
600 dc
->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
) );
602 dc
->SetTextForeground( * item
->GetColour() );
603 dc
->DrawText( s
, m_bound_label
.x
, m_bound_label
.y
);
609 void wxListLineData::Hilight( bool on
)
611 if (on
== m_hilighted
) return;
613 m_owner
->SelectLine( this );
615 m_owner
->DeselectLine( this );
619 void wxListLineData::ReverseHilight( void )
621 m_hilighted
= !m_hilighted
;
623 m_owner
->SelectLine( this );
625 m_owner
->DeselectLine( this );
628 void wxListLineData::DrawRubberBand( wxDC
*dc
, bool on
)
632 dc
->SetPen( * wxBLACK_PEN
);
633 dc
->SetBrush( * wxTRANSPARENT_BRUSH
);
634 dc
->DrawRectangle( m_bound_hilight
.x
, m_bound_hilight
.y
,
635 m_bound_hilight
.width
, m_bound_hilight
.height
);
639 void wxListLineData::Draw( wxDC
*dc
)
641 DoDraw( dc
, m_hilighted
, m_hilighted
);
644 bool wxListLineData::IsInRect( int x
, int y
, const wxRect
&rect
)
646 return ((x
>= rect
.x
) && (x
<= rect
.x
+rect
.width
) &&
647 (y
>= rect
.y
) && (y
<= rect
.y
+rect
.height
));
650 bool wxListLineData::IsHilighted( void )
655 void wxListLineData::AssignRect( wxRect
&dest
, int x
, int y
, int width
, int height
)
660 dest
.height
= height
;
663 void wxListLineData::AssignRect( wxRect
&dest
, const wxRect
&source
)
667 dest
.width
= source
.width
;
668 dest
.height
= source
.height
;
671 //-----------------------------------------------------------------------------
672 // wxListHeaderWindow
673 //-----------------------------------------------------------------------------
675 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
);
677 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
678 EVT_PAINT (wxListHeaderWindow::OnPaint
)
679 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
680 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
683 wxListHeaderWindow::wxListHeaderWindow( void )
685 m_owner
= (wxListMainWindow
*) NULL
;
686 m_currentCursor
= (wxCursor
*) NULL
;
687 m_resizeCursor
= (wxCursor
*) NULL
;
691 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
, wxWindowID id
, wxListMainWindow
*owner
,
692 const wxPoint
&pos
, const wxSize
&size
,
693 long style
, const wxString
&name
) :
694 wxWindow( win
, id
, pos
, size
, style
, name
)
697 // m_currentCursor = wxSTANDARD_CURSOR;
698 m_currentCursor
= (wxCursor
*) NULL
;
699 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
703 wxListHeaderWindow::~wxListHeaderWindow( void )
705 delete m_resizeCursor
;
708 void wxListHeaderWindow::DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
)
710 const int m_corner
= 1;
712 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
714 dc
->SetPen( *wxBLACK_PEN
);
715 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
716 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
718 wxPen
pen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
);
721 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
722 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
724 dc
->SetPen( *wxWHITE_PEN
);
725 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
726 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
727 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
728 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
731 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
733 wxPaintDC
dc( this );
738 dc
.SetFont( GetFont() );
744 GetClientSize( &w
, &h
);
746 dc
.SetBackgroundMode(wxTRANSPARENT
);
747 dc
.SetTextForeground( *wxBLACK
);
748 if (m_foregroundColour
.Ok()) dc
.SetTextForeground( m_foregroundColour
);
752 int numColumns
= m_owner
->GetColumnCount();
754 for (int i
= 0; i
< numColumns
; i
++)
756 m_owner
->GetColumn( i
, item
);
757 int cw
= item
.m_width
-2;
758 if ((i
+1 == numColumns
) || (x
+item
.m_width
> w
-5)) cw
= w
-x
-1;
759 dc
.SetPen( *wxWHITE_PEN
);
761 DoDrawRect( &dc
, x
, y
, cw
, h
-2 );
762 dc
.SetClippingRegion( x
, y
, cw
-5, h
-4 );
763 dc
.DrawText( item
.m_text
, x
+4, y
+3 );
764 dc
.DestroyClippingRegion();
771 void wxListHeaderWindow::DrawCurrent()
775 int x2
= m_currentX
-1;
778 m_owner
->GetClientSize( &dummy
, &y2
);
779 ClientToScreen( &x1
, &y1
);
780 m_owner
->ClientToScreen( &x2
, &y2
);
783 dc
.SetLogicalFunction( wxXOR
);
784 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
785 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
787 dc
.DrawLine( x1
, y1
, x2
, y2
);
789 dc
.SetLogicalFunction( wxCOPY
);
791 dc
.SetPen( wxNullPen
);
792 dc
.SetBrush( wxNullBrush
);
795 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
797 int x
= event
.GetX();
798 int y
= event
.GetY();
802 if (event
.ButtonUp())
806 m_owner
->SetColumnWidth( m_column
, m_currentX
-m_minX
);
812 GetClientSize( &size_x
, & dummy
);
816 m_currentX
= m_minX
+7;
817 if (m_currentX
> size_x
-7) m_currentX
= size_x
-7;
824 bool hit_border
= FALSE
;
826 for (int j
= 0; j
< m_owner
->GetColumnCount(); j
++)
828 xpos
+= m_owner
->GetColumnWidth( j
);
829 if ((abs(x
-xpos
) < 3) && (y
< 22))
838 if (event
.LeftDown() && hit_border
)
851 if (m_currentCursor
== wxSTANDARD_CURSOR
) SetCursor( * m_resizeCursor
);
852 m_currentCursor
= m_resizeCursor
;
856 if (m_currentCursor
!= wxSTANDARD_CURSOR
) SetCursor( * wxSTANDARD_CURSOR
);
857 m_currentCursor
= wxSTANDARD_CURSOR
;
862 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
867 //-----------------------------------------------------------------------------
868 // wxListRenameTimer (internal)
869 //-----------------------------------------------------------------------------
871 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
876 void wxListRenameTimer::Notify()
878 m_owner
->OnRenameTimer();
881 //-----------------------------------------------------------------------------
882 // wxListTextCtrl (internal)
883 //-----------------------------------------------------------------------------
885 IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl
,wxTextCtrl
);
887 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
888 EVT_CHAR (wxListTextCtrl::OnChar
)
889 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
892 wxListTextCtrl::wxListTextCtrl( wxWindow
*parent
, const wxWindowID id
,
893 bool *accept
, wxString
*res
, wxListMainWindow
*owner
,
894 const wxString
&value
, const wxPoint
&pos
, const wxSize
&size
,
895 int style
, const wxValidator
& validator
, const wxString
&name
) :
896 wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
903 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
905 if (event
.m_keyCode
== WXK_RETURN
)
908 (*m_res
) = GetValue();
909 m_owner
->OnRenameAccept();
914 if (event
.m_keyCode
== WXK_ESCAPE
)
925 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
934 //-----------------------------------------------------------------------------
936 //-----------------------------------------------------------------------------
938 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
);
940 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
941 EVT_PAINT (wxListMainWindow::OnPaint
)
942 EVT_SIZE (wxListMainWindow::OnSize
)
943 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
944 EVT_CHAR (wxListMainWindow::OnChar
)
945 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
946 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
947 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
950 wxListMainWindow::wxListMainWindow( void )
953 m_lines
.DeleteContents( TRUE
);
954 m_columns
.DeleteContents( TRUE
);
955 m_current
= (wxListLineData
*) NULL
;
957 m_hilightBrush
= (wxBrush
*) NULL
;
961 m_small_image_list
= (wxImageList
*) NULL
;
962 m_normal_image_list
= (wxImageList
*) NULL
;
963 m_small_spacing
= 30;
964 m_normal_spacing
= 40;
967 m_lastOnSame
= FALSE
;
968 m_renameTimer
= new wxListRenameTimer( this );
973 wxListMainWindow::wxListMainWindow( wxWindow
*parent
, wxWindowID id
,
974 const wxPoint
&pos
, const wxSize
&size
,
975 long style
, const wxString
&name
) :
976 wxScrolledWindow( parent
, id
, pos
, size
, style
|wxHSCROLL
|wxVSCROLL
, name
)
979 m_lines
.DeleteContents( TRUE
);
980 m_columns
.DeleteContents( TRUE
);
981 m_current
= (wxListLineData
*) NULL
;
984 m_hilightBrush
= new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
), wxSOLID
);
985 m_small_image_list
= (wxImageList
*) NULL
;
986 m_normal_image_list
= (wxImageList
*) NULL
;
987 m_small_spacing
= 30;
988 m_normal_spacing
= 40;
995 if (m_mode
& wxLC_REPORT
)
1005 SetScrollbars( m_xScroll
, m_yScroll
, 0, 0, 0, 0 );
1008 m_lastOnSame
= FALSE
;
1009 m_renameTimer
= new wxListRenameTimer( this );
1010 m_renameAccept
= FALSE
;
1012 SetBackgroundColour( *wxWHITE
);
1015 wxListMainWindow::~wxListMainWindow( void )
1017 if (m_hilightBrush
) delete m_hilightBrush
;
1019 delete m_renameTimer
;
1022 void wxListMainWindow::RefreshLine( wxListLineData
*line
)
1030 wxClientDC
dc(this);
1032 line
->GetExtent( x
, y
, w
, h
);
1034 dc
.LogicalToDeviceX(x
-3),
1035 dc
.LogicalToDeviceY(y
-3),
1036 dc
.LogicalToDeviceXRel(w
+6),
1037 dc
.LogicalToDeviceXRel(h
+6) );
1038 Refresh( TRUE
, &rect
);
1042 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1044 // Note: a wxPaintDC must be constructed even if no drawing is
1045 // done (a Windows requirement).
1046 wxPaintDC
dc( this );
1049 if (m_dirty
) return;
1051 if (m_lines
.GetCount() == 0) return;
1055 dc
.SetFont( GetFont() );
1057 if (m_mode
& wxLC_REPORT
)
1059 int lineSpacing
= 0;
1060 wxListLineData
*line
= (wxListLineData
*)m_lines
.First()->Data();
1062 line
->GetSize( dummy
, lineSpacing
);
1065 int y_s
= m_yScroll
*GetScrollPos( wxVERTICAL
);
1067 wxNode
*node
= m_lines
.Nth( y_s
/ lineSpacing
);
1068 for (int i
= 0; i
< m_visibleLines
+2; i
++)
1072 line
= (wxListLineData
*)node
->Data();
1074 node
= node
->Next();
1079 wxNode
*node
= m_lines
.First();
1082 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1084 node
= node
->Next();
1088 if (m_current
) m_current
->DrawRubberBand( &dc
, m_hasFocus
);
1093 void wxListMainWindow::HilightAll( bool on
)
1095 wxNode
*node
= m_lines
.First();
1098 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1099 if (line
->IsHilighted() != on
)
1101 line
->Hilight( on
);
1102 RefreshLine( line
);
1104 node
= node
->Next();
1108 void wxListMainWindow::SendNotify( wxListLineData
*line
, wxEventType command
)
1110 wxListEvent
le( command
, GetParent()->GetId() );
1111 le
.SetEventObject( GetParent() );
1112 le
.m_itemIndex
= GetIndexOfLine( line
);
1113 line
->GetItem( 0, le
.m_item
);
1114 GetParent()->GetEventHandler()->ProcessEvent( le
);
1117 void wxListMainWindow::FocusLine( wxListLineData
*WXUNUSED(line
) )
1119 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED );
1122 void wxListMainWindow::UnfocusLine( wxListLineData
*WXUNUSED(line
) )
1124 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED );
1127 void wxListMainWindow::SelectLine( wxListLineData
*line
)
1129 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_SELECTED
);
1132 void wxListMainWindow::DeselectLine( wxListLineData
*line
)
1134 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1137 void wxListMainWindow::DeleteLine( wxListLineData
*line
)
1139 SendNotify( line
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
1142 void wxListMainWindow::StartLabelEdit( wxListLineData
*line
)
1144 SendNotify( line
, wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
);
1147 void wxListMainWindow::RenameLine( wxListLineData
*line
, const wxString
&newName
)
1149 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
1150 le
.SetEventObject( GetParent() );
1151 le
.m_itemIndex
= GetIndexOfLine( line
);
1152 line
->GetItem( 0, le
.m_item
);
1153 le
.m_item
.m_text
= newName
;
1154 GetParent()->GetEventHandler()->ProcessEvent( le
);
1157 void wxListMainWindow::OnRenameTimer()
1159 StartLabelEdit( m_current
);
1161 m_current
->GetText( 0, s
);
1166 m_current
->GetLabelExtent( x
, y
, w
, h
);
1168 wxClientDC
dc(this);
1170 x
= dc
.LogicalToDeviceX( x
);
1171 y
= dc
.LogicalToDeviceY( y
);
1173 wxListTextCtrl
*text
= new wxListTextCtrl(
1174 this, -1, &m_renameAccept
, &m_renameRes
, this, s
, wxPoint(x
-4,y
-4), wxSize(w
+11,h
+8) );
1178 void wxListMainWindow::OnRenameAccept()
1180 RenameLine( m_current
, m_renameRes
);
1183 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
1185 if (GetParent()->GetEventHandler()->ProcessEvent( event
)) return;
1187 if (!m_current
) return;
1188 if (m_dirty
) return;
1190 wxClientDC
dc(this);
1192 long x
= dc
.DeviceToLogicalX( (long)event
.GetX() );
1193 long y
= dc
.DeviceToLogicalY( (long)event
.GetY() );
1195 /* Did we actually hit an item ? */
1197 wxNode
*node
= m_lines
.First();
1198 wxListLineData
*line
= (wxListLineData
*) NULL
;
1201 line
= (wxListLineData
*)node
->Data();
1202 hitResult
= line
->IsHit( x
, y
);
1203 if (hitResult
) break;
1204 line
= (wxListLineData
*) NULL
;
1205 node
= node
->Next();
1208 if (!event
.Dragging())
1213 if (event
.Dragging() && (m_dragCount
> 3))
1217 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_DRAG
, GetParent()->GetId() );
1218 le
.SetEventObject( GetParent() );
1219 le
.m_pointDrag
.x
= x
;
1220 le
.m_pointDrag
.y
= y
;
1221 GetParent()->GetEventHandler()->ProcessEvent( le
);
1228 if (event
.ButtonDClick())
1231 m_lastOnSame
= FALSE
;
1232 m_renameTimer
->Stop();
1234 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
1239 if (event
.LeftUp() && m_lastOnSame
)
1242 if ((line
== m_current
) &&
1243 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
1244 (m_mode
& wxLC_EDIT_LABELS
) )
1246 m_renameTimer
->Start( 100, TRUE
);
1248 m_lastOnSame
= FALSE
;
1252 if (event
.RightDown())
1254 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
);
1258 if (event
.MiddleDown())
1260 SendNotify( line
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
1264 if (event
.LeftDown())
1267 wxListLineData
*oldCurrent
= m_current
;
1268 if (m_mode
& wxLC_SINGLE_SEL
)
1271 HilightAll( FALSE
);
1272 m_current
->ReverseHilight();
1273 RefreshLine( m_current
);
1277 if (event
.ShiftDown())
1280 m_current
->ReverseHilight();
1281 RefreshLine( m_current
);
1283 else if (event
.ControlDown())
1287 int numOfCurrent
= -1;
1288 node
= m_lines
.First();
1291 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1293 if (test_line
== oldCurrent
) break;
1294 node
= node
->Next();
1298 node
= m_lines
.First();
1301 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1303 if (test_line
== line
) break;
1304 node
= node
->Next();
1307 if (numOfLine
< numOfCurrent
)
1310 numOfLine
= numOfCurrent
;
1314 wxNode
*node
= m_lines
.Nth( numOfCurrent
);
1315 for (int i
= 0; i
<= numOfLine
-numOfCurrent
; i
++)
1317 wxListLineData
*test_line
= (wxListLineData
*)node
->Data();
1318 test_line
->Hilight(TRUE
);
1319 RefreshLine( test_line
);
1320 node
= node
->Next();
1326 HilightAll( FALSE
);
1327 m_current
->ReverseHilight();
1328 RefreshLine( m_current
);
1331 if (m_current
!= oldCurrent
)
1333 RefreshLine( oldCurrent
);
1334 UnfocusLine( oldCurrent
);
1335 FocusLine( m_current
);
1337 m_lastOnSame
= (m_current
== oldCurrent
);
1342 void wxListMainWindow::MoveToFocus( void )
1344 if (!m_current
) return;
1350 m_current
->GetExtent( x
, y
, w
, h
);
1354 GetClientSize( &w_p
, &h_p
);
1356 if (m_mode
& wxLC_REPORT
)
1358 int y_s
= m_yScroll
*GetScrollPos( wxVERTICAL
);
1359 if ((y
> y_s
) && (y
+h
< y_s
+h_p
)) return;
1360 if (y
-y_s
< 5) { Scroll( -1, (y
-5-h_p
/2)/m_yScroll
); Refresh(); }
1361 if (y
+h
+5 > y_s
+h_p
) { Scroll( -1, (y
+h
-h_p
/2+h
+15)/m_yScroll
); Refresh(); }
1365 int x_s
= m_xScroll
*GetScrollPos( wxHORIZONTAL
);
1366 if ((x
> x_s
) && (x
+w
< x_s
+w_p
)) return;
1367 if (x
-x_s
< 5) { Scroll( (x
-5)/m_xScroll
, -1 ); Refresh(); }
1368 if (x
+w
-5 > x_s
+w_p
) { Scroll( (x
+w
-w_p
+15)/m_xScroll
, -1 ); Refresh(); }
1372 void wxListMainWindow::OnArrowChar( wxListLineData
*newCurrent
, bool shiftDown
)
1374 if ((m_mode
& wxLC_SINGLE_SEL
) || (m_usedKeys
== FALSE
)) m_current
->Hilight( FALSE
);
1375 wxListLineData
*oldCurrent
= m_current
;
1376 m_current
= newCurrent
;
1378 if (shiftDown
|| (m_mode
& wxLC_SINGLE_SEL
)) m_current
->Hilight( TRUE
);
1379 RefreshLine( m_current
);
1380 RefreshLine( oldCurrent
);
1381 FocusLine( m_current
);
1382 UnfocusLine( oldCurrent
);
1385 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
1387 wxWindow
*parent
= GetParent();
1389 /* we propagate the key event up */
1390 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
1391 ke
.m_shiftDown
= event
.m_shiftDown
;
1392 ke
.m_controlDown
= event
.m_controlDown
;
1393 ke
.m_altDown
= event
.m_altDown
;
1394 ke
.m_metaDown
= event
.m_metaDown
;
1395 ke
.m_keyCode
= event
.m_keyCode
;
1398 ke
.SetEventObject( parent
);
1399 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
1404 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
1406 wxWindow
*parent
= GetParent();
1408 /* we send a list_key event up */
1409 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
1410 le
.m_code
= event
.KeyCode();
1411 le
.SetEventObject( parent
);
1412 parent
->GetEventHandler()->ProcessEvent( le
);
1414 /* we propagate the char event up */
1415 wxKeyEvent
ke( wxEVT_CHAR
);
1416 ke
.m_shiftDown
= event
.m_shiftDown
;
1417 ke
.m_controlDown
= event
.m_controlDown
;
1418 ke
.m_altDown
= event
.m_altDown
;
1419 ke
.m_metaDown
= event
.m_metaDown
;
1420 ke
.m_keyCode
= event
.m_keyCode
;
1423 ke
.SetEventObject( parent
);
1424 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
1426 /* no item -> nothing to do */
1433 switch (event
.KeyCode())
1437 wxNode
*node
= m_lines
.Member( m_current
)->Previous();
1438 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1443 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1444 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1449 wxNode
*node
= m_lines
.Last();
1450 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1455 wxNode
*node
= m_lines
.First();
1456 OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1462 if (m_mode
& wxLC_REPORT
)
1464 steps
= m_visibleLines
-1;
1469 wxNode
*node
= m_lines
.First();
1470 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); }
1471 steps
= pos
% m_visibleLines
;
1473 wxNode
*node
= m_lines
.Member( m_current
);
1474 for (int i
= 0; i
< steps
; i
++) if (node
->Previous()) node
= node
->Previous();
1475 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1481 if (m_mode
& wxLC_REPORT
)
1483 steps
= m_visibleLines
-1;
1487 int pos
= 0; wxNode
*node
= m_lines
.First();
1488 for (;;) { if (m_current
== (wxListLineData
*)node
->Data()) break; pos
++; node
= node
->Next(); }
1489 steps
= m_visibleLines
-(pos
% m_visibleLines
)-1;
1491 wxNode
*node
= m_lines
.Member( m_current
);
1492 for (int i
= 0; i
< steps
; i
++) if (node
->Next()) node
= node
->Next();
1493 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1498 if (!(m_mode
& wxLC_REPORT
))
1500 wxNode
*node
= m_lines
.Member( m_current
);
1501 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Previous()) node
= node
->Previous();
1502 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1508 if (!(m_mode
& wxLC_REPORT
))
1510 wxNode
*node
= m_lines
.Member( m_current
);
1511 for (int i
= 0; i
<m_visibleLines
; i
++) if (node
->Next()) node
= node
->Next();
1512 if (node
) OnArrowChar( (wxListLineData
*)node
->Data(), event
.ShiftDown() );
1518 m_current
->ReverseHilight();
1519 RefreshLine( m_current
);
1524 if (!(m_mode
& wxLC_SINGLE_SEL
))
1526 wxListLineData
*oldCurrent
= m_current
;
1527 m_current
->ReverseHilight();
1528 wxNode
*node
= m_lines
.Member( m_current
)->Next();
1529 if (node
) m_current
= (wxListLineData
*)node
->Data();
1531 RefreshLine( oldCurrent
);
1532 RefreshLine( m_current
);
1533 UnfocusLine( oldCurrent
);
1534 FocusLine( m_current
);
1541 wxListEvent
le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, GetParent()->GetId() );
1542 le
.SetEventObject( GetParent() );
1543 le
.m_itemIndex
= GetIndexOfLine( m_current
);
1544 m_current
->GetItem( 0, le
.m_item
);
1545 GetParent()->GetEventHandler()->ProcessEvent( le
);
1557 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1560 RefreshLine( m_current
);
1562 if (!GetParent()) return;
1564 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
1565 event
.SetEventObject( GetParent() );
1566 GetParent()->GetEventHandler()->ProcessEvent( event
);
1569 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1572 RefreshLine( m_current
);
1575 void wxListMainWindow::OnSize( wxSizeEvent
&WXUNUSED(event
) )
1578 We don't even allow the wxScrolledWindow::AdjustScrollbars() call
1583 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
1585 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1587 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1590 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1592 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1594 if ((m_mode
& wxLC_REPORT
) && (m_small_image_list
))
1596 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
1601 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
)
1603 if ((m_mode
& wxLC_ICON
) && (m_normal_image_list
))
1605 m_normal_image_list
->GetSize( index
, width
, height
);
1608 if ((m_mode
& wxLC_SMALL_ICON
) && (m_small_image_list
))
1610 m_small_image_list
->GetSize( index
, width
, height
);
1613 if ((m_mode
& wxLC_REPORT
) && (m_small_image_list
))
1615 m_small_image_list
->GetSize( index
, width
, height
);
1622 int wxListMainWindow::GetTextLength( wxString
&s
)
1624 wxClientDC
dc( this );
1627 dc
.GetTextExtent( s
, &lw
, &lh
);
1631 int wxListMainWindow::GetIndexOfLine( const wxListLineData
*line
)
1634 wxNode
*node
= m_lines
.First();
1637 if (line
== (wxListLineData
*)node
->Data()) return i
;
1639 node
= node
->Next();
1644 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
1647 if (which
== wxIMAGE_LIST_NORMAL
) m_normal_image_list
= imageList
;
1648 if (which
== wxIMAGE_LIST_SMALL
) m_small_image_list
= imageList
;
1651 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
1656 m_small_spacing
= spacing
;
1660 m_normal_spacing
= spacing
;
1664 int wxListMainWindow::GetItemSpacing( bool isSmall
)
1666 if (isSmall
) return m_small_spacing
; else return m_normal_spacing
;
1669 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
1672 wxNode
*node
= m_columns
.Nth( col
);
1675 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
)+7;
1676 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1677 column
->SetItem( item
);
1679 wxListCtrl
*lc
= (wxListCtrl
*) GetParent();
1680 if (lc
->m_headerWin
) lc
->m_headerWin
->Refresh();
1683 void wxListMainWindow::SetColumnWidth( int col
, int width
)
1685 if (!(m_mode
& wxLC_REPORT
)) return;
1689 wxNode
*node
= m_columns
.Nth( col
);
1692 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1693 column
->SetWidth( width
);
1696 node
= m_lines
.First();
1699 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1700 wxNode
*n
= line
->m_items
.Nth( col
);
1703 wxListItemData
*item
= (wxListItemData
*)n
->Data();
1704 item
->SetSize( width
, -1 );
1706 node
= node
->Next();
1709 wxListCtrl
*lc
= (wxListCtrl
*) GetParent();
1710 if (lc
->m_headerWin
) lc
->m_headerWin
->Refresh();
1713 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
)
1715 wxNode
*node
= m_columns
.Nth( col
);
1718 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1719 column
->GetItem( item
);
1731 int wxListMainWindow::GetColumnWidth( int col
)
1733 wxNode
*node
= m_columns
.Nth( col
);
1736 wxListHeaderData
*column
= (wxListHeaderData
*)node
->Data();
1737 return column
->GetWidth();
1745 int wxListMainWindow::GetColumnCount( void )
1747 return m_columns
.Number();
1750 int wxListMainWindow::GetCountPerPage( void )
1752 return m_visibleLines
;
1755 void wxListMainWindow::SetItem( wxListItem
&item
)
1758 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
1761 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1762 if (m_mode
& wxLC_REPORT
) item
.m_width
= GetColumnWidth( item
.m_col
)-3;
1763 line
->SetItem( item
.m_col
, item
);
1767 void wxListMainWindow::SetItemState( long item
, long state
, long stateMask
)
1769 // m_dirty = TRUE; no recalcs needed
1771 wxListLineData
*oldCurrent
= m_current
;
1773 if (stateMask
& wxLIST_STATE_FOCUSED
)
1775 wxNode
*node
= m_lines
.Nth( item
);
1778 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1779 UnfocusLine( m_current
);
1781 FocusLine( m_current
);
1782 RefreshLine( m_current
);
1783 RefreshLine( oldCurrent
);
1787 if (stateMask
& wxLIST_STATE_SELECTED
)
1789 bool on
= state
& wxLIST_STATE_SELECTED
;
1790 if (!on
&& (m_mode
& wxLC_SINGLE_SEL
)) return;
1792 wxNode
*node
= m_lines
.Nth( item
);
1795 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1796 if (m_mode
& wxLC_SINGLE_SEL
)
1798 UnfocusLine( m_current
);
1800 FocusLine( m_current
);
1801 oldCurrent
->Hilight( FALSE
);
1802 RefreshLine( m_current
);
1803 RefreshLine( oldCurrent
);
1805 bool on
= state
& wxLIST_STATE_SELECTED
;
1806 if (on
!= line
->IsHilighted())
1808 line
->Hilight( on
);
1809 RefreshLine( line
);
1815 int wxListMainWindow::GetItemState( long item
, long stateMask
)
1817 int ret
= wxLIST_STATE_DONTCARE
;
1818 if (stateMask
& wxLIST_STATE_FOCUSED
)
1820 wxNode
*node
= m_lines
.Nth( item
);
1823 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1824 if (line
== m_current
) ret
|= wxLIST_STATE_FOCUSED
;
1827 if (stateMask
& wxLIST_STATE_SELECTED
)
1829 wxNode
*node
= m_lines
.Nth( item
);
1832 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1833 if (line
->IsHilighted()) ret
|= wxLIST_STATE_FOCUSED
;
1839 void wxListMainWindow::GetItem( wxListItem
&item
)
1841 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
1844 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1845 line
->GetItem( item
.m_col
, item
);
1856 int wxListMainWindow::GetItemCount( void )
1858 return m_lines
.Number();
1861 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
)
1863 wxNode
*node
= m_lines
.Nth( index
);
1866 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1867 line
->GetRect( rect
);
1878 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
)
1880 wxNode
*node
= m_lines
.Nth( item
);
1884 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1885 line
->GetRect( rect
);
1897 int wxListMainWindow::GetSelectedItemCount( void )
1900 wxNode
*node
= m_lines
.First();
1903 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1904 if (line
->IsHilighted()) ret
++;
1905 node
= node
->Next();
1910 void wxListMainWindow::SetMode( long mode
)
1917 if (m_mode
& wxLC_REPORT
)
1929 long wxListMainWindow::GetMode( void ) const
1934 void wxListMainWindow::CalculatePositions( void )
1936 if (!m_lines
.First()) return;
1938 wxClientDC
dc( this );
1939 dc
.SetFont( GetFont() );
1941 int iconSpacing
= 0;
1942 if (m_mode
& wxLC_ICON
) iconSpacing
= m_normal_spacing
;
1943 if (m_mode
& wxLC_SMALL_ICON
) iconSpacing
= m_small_spacing
;
1945 // we take the first line (which also can be an icon or
1946 // an a text item in wxLC_ICON and wxLC_LIST modes) to
1947 // measure the size of the line
1951 int lineSpacing
= 0;
1953 wxListLineData
*line
= (wxListLineData
*)m_lines
.First()->Data();
1954 line
->CalculateSize( &dc
, iconSpacing
);
1956 line
->GetSize( dummy
, lineSpacing
);
1959 int clientWidth
= 0;
1960 int clientHeight
= 0;
1962 if (m_mode
& wxLC_REPORT
)
1966 int entireHeight
= m_lines
.Number() * lineSpacing
+ 2;
1967 int scroll_pos
= GetScrollPos( wxVERTICAL
);
1968 SetScrollbars( m_xScroll
, m_yScroll
, 0, (entireHeight
+15) / m_yScroll
, 0, scroll_pos
, TRUE
);
1969 GetClientSize( &clientWidth
, &clientHeight
);
1971 wxNode
* node
= m_lines
.First();
1974 wxListLineData
*line
= (wxListLineData
*)node
->Data();
1975 line
->CalculateSize( &dc
, iconSpacing
);
1976 line
->SetPosition( &dc
, x
, y
, clientWidth
);
1978 for (int i
= 0; i
< GetColumnCount(); i
++)
1980 line
->SetColumnPosition( i
, col_x
);
1981 col_x
+= GetColumnWidth( i
);
1983 y
+= lineSpacing
; // one pixel blank line between items
1984 node
= node
->Next();
1986 m_visibleLines
= clientHeight
/ lineSpacing
;
1990 // at first we try without any scrollbar. if the items don't
1991 // fit into the window, we recalculate after subtracting an
1992 // approximated 15 pt for the horizontal scrollbar
1994 GetSize( &clientWidth
, &clientHeight
);
1995 clientHeight
-= 4; // sunken frame
1997 int entireWidth
= 0;
1999 for (int tries
= 0; tries
< 2; tries
++)
2002 int x
= 5; // painting is done at x-2
2003 int y
= 5; // painting is done at y-2
2005 wxNode
*node
= m_lines
.First();
2008 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2009 line
->CalculateSize( &dc
, iconSpacing
);
2010 line
->SetPosition( &dc
, x
, y
, clientWidth
);
2011 line
->GetSize( lineWidth
, lineHeight
);
2012 if (lineWidth
> maxWidth
) maxWidth
= lineWidth
;
2014 if (y
+lineSpacing
-6 >= clientHeight
) // -6 for earlier "line breaking"
2018 entireWidth
+= maxWidth
+6;
2021 node
= node
->Next();
2022 if (!node
) entireWidth
+= maxWidth
;
2023 if ((tries
== 0) && (entireWidth
> clientWidth
))
2025 clientHeight
-= 15; // scrollbar height
2028 if (!node
) tries
= 1; // everything fits, no second try required
2031 m_visibleLines
= (clientHeight
+6) / (lineSpacing
); // +6 for earlier "line breaking"
2033 int scroll_pos
= GetScrollPos( wxHORIZONTAL
);
2034 SetScrollbars( m_xScroll
, m_yScroll
, (entireWidth
+15) / m_xScroll
, 0, scroll_pos
, 0, TRUE
);
2038 void wxListMainWindow::RealizeChanges( void )
2042 wxNode
*node
= m_lines
.First();
2043 if (node
) m_current
= (wxListLineData
*)node
->Data();
2047 FocusLine( m_current
);
2048 if (m_mode
& wxLC_SINGLE_SEL
) m_current
->Hilight( TRUE
);
2052 long wxListMainWindow::GetNextItem( long item
, int WXUNUSED(geometry
), int state
)
2055 if (item
> 0) ret
= item
;
2056 if(ret
>= GetItemCount()) return -1;
2057 wxNode
*node
= m_lines
.Nth( ret
);
2060 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2061 if ((state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
)) return ret
;
2062 if ((state
& wxLIST_STATE_SELECTED
) && (line
->IsHilighted())) return ret
;
2063 if (!state
) return ret
;
2065 node
= node
->Next();
2070 void wxListMainWindow::DeleteItem( long index
)
2073 wxNode
*node
= m_lines
.Nth( index
);
2076 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2077 if (m_current
== line
) m_current
= (wxListLineData
*) NULL
;
2079 m_lines
.DeleteNode( node
);
2083 void wxListMainWindow::DeleteColumn( int col
)
2085 wxCHECK_RET( col
< (int)m_columns
.GetCount(),
2086 _T("attempting to delete inexistent column in wxListView") );
2089 wxNode
*node
= m_columns
.Nth( col
);
2090 if (node
) m_columns
.DeleteNode( node
);
2093 void wxListMainWindow::DeleteAllItems( void )
2096 m_current
= (wxListLineData
*) NULL
;
2097 wxNode
*node
= m_lines
.First();
2100 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2102 node
= node
->Next();
2107 void wxListMainWindow::DeleteEverything( void )
2110 m_current
= (wxListLineData
*) NULL
;
2111 wxNode
*node
= m_lines
.First();
2114 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2116 node
= node
->Next();
2119 m_current
= (wxListLineData
*) NULL
;
2123 void wxListMainWindow::EnsureVisible( long index
)
2125 wxListLineData
*oldCurrent
= m_current
;
2126 m_current
= (wxListLineData
*) NULL
;
2128 wxNode
*node
= m_lines
.Nth( i
);
2129 if (node
) m_current
= (wxListLineData
*)node
->Data();
2130 if (m_current
) MoveToFocus();
2131 m_current
= oldCurrent
;
2134 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
2138 if (pos
< 0) pos
= 0;
2139 wxNode
*node
= m_lines
.Nth( pos
);
2142 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2144 line
->GetText( 0, s
);
2145 if (s
== tmp
) return pos
;
2146 node
= node
->Next();
2152 long wxListMainWindow::FindItem(long start
, long data
)
2155 if (pos
< 0) pos
= 0;
2156 wxNode
*node
= m_lines
.Nth( pos
);
2159 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2161 line
->GetItem( 0, item
);
2162 if (item
.m_data
== data
) return pos
;
2163 node
= node
->Next();
2169 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
2171 wxNode
*node
= m_lines
.First();
2175 wxListLineData
*line
= (wxListLineData
*)node
->Data();
2176 long ret
= line
->IsHit( x
, y
);
2182 node
= node
->Next();
2188 void wxListMainWindow::InsertItem( wxListItem
&item
)
2192 if (m_mode
& wxLC_REPORT
) mode
= wxLC_REPORT
;
2193 else if (m_mode
& wxLC_LIST
) mode
= wxLC_LIST
;
2194 else if (m_mode
& wxLC_ICON
) mode
= wxLC_ICON
;
2195 else if (m_mode
& wxLC_SMALL_ICON
) mode
= wxLC_ICON
; // no typo
2197 wxListLineData
*line
= new wxListLineData( this, mode
, m_hilightBrush
);
2199 if (m_mode
& wxLC_REPORT
)
2201 line
->InitItems( GetColumnCount() );
2202 item
.m_width
= GetColumnWidth( 0 )-3;
2206 line
->InitItems( 1 );
2209 line
->SetItem( 0, item
);
2210 if ((item
.m_itemId
>= 0) && (item
.m_itemId
< (int)m_lines
.GetCount()))
2212 wxNode
*node
= m_lines
.Nth( item
.m_itemId
);
2213 if (node
) m_lines
.Insert( node
, line
);
2217 m_lines
.Append( line
);
2221 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
2224 if (m_mode
& wxLC_REPORT
)
2226 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
) item
.m_width
= GetTextLength( item
.m_text
);
2227 wxListHeaderData
*column
= new wxListHeaderData( item
);
2228 if ((col
>= 0) && (col
< (int)m_columns
.GetCount()))
2230 wxNode
*node
= m_columns
.Nth( col
);
2232 m_columns
.Insert( node
, column
);
2236 m_columns
.Append( column
);
2241 wxListCtrlCompare list_ctrl_compare_func_2
;
2242 long list_ctrl_compare_data
;
2244 int list_ctrl_compare_func_1( const void *arg1
, const void *arg2
)
2246 wxListLineData
*line1
= *((wxListLineData
**)arg1
);
2247 wxListLineData
*line2
= *((wxListLineData
**)arg2
);
2249 line1
->GetItem( 0, item
);
2250 long data1
= item
.m_data
;
2251 line2
->GetItem( 0, item
);
2252 long data2
= item
.m_data
;
2253 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
2256 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
2258 list_ctrl_compare_func_2
= fn
;
2259 list_ctrl_compare_data
= data
;
2260 m_lines
.Sort( list_ctrl_compare_func_1
);
2263 // -------------------------------------------------------------------------------------
2265 // -------------------------------------------------------------------------------------
2267 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
2269 wxListItem::wxListItem(void)
2278 m_format
= wxLIST_FORMAT_CENTRE
;
2283 // -------------------------------------------------------------------------------------
2285 // -------------------------------------------------------------------------------------
2287 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
2289 wxListEvent::wxListEvent( wxEventType commandType
, int id
):
2290 wxNotifyEvent( commandType
, id
)
2296 m_cancelled
= FALSE
;
2301 // -------------------------------------------------------------------------------------
2303 // -------------------------------------------------------------------------------------
2305 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
2307 BEGIN_EVENT_TABLE(wxListCtrl
,wxControl
)
2308 EVT_SIZE (wxListCtrl::OnSize
)
2309 EVT_IDLE (wxListCtrl::OnIdle
)
2312 wxListCtrl::wxListCtrl(void)
2314 m_imageListNormal
= (wxImageList
*) NULL
;
2315 m_imageListSmall
= (wxImageList
*) NULL
;
2316 m_imageListState
= (wxImageList
*) NULL
;
2317 m_mainWin
= (wxListMainWindow
*) NULL
;
2318 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2321 wxListCtrl::~wxListCtrl(void)
2325 bool wxListCtrl::Create( wxWindow
*parent
, wxWindowID id
,
2326 const wxPoint
&pos
, const wxSize
&size
,
2327 long style
, const wxValidator
&validator
,
2328 const wxString
&name
)
2330 m_imageListNormal
= (wxImageList
*) NULL
;
2331 m_imageListSmall
= (wxImageList
*) NULL
;
2332 m_imageListState
= (wxImageList
*) NULL
;
2333 m_mainWin
= (wxListMainWindow
*) NULL
;
2334 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2338 if ((s
& wxLC_REPORT
== 0) &&
2339 (s
& wxLC_LIST
== 0) &&
2340 (s
& wxLC_ICON
== 0))
2345 bool ret
= wxControl::Create( parent
, id
, pos
, size
, s
, name
);
2347 SetValidator( validator
);
2349 if (s
& wxSUNKEN_BORDER
) s
-= wxSUNKEN_BORDER
;
2351 m_mainWin
= new wxListMainWindow( this, -1, wxPoint(0,0), size
, s
);
2353 if (HasFlag(wxLC_REPORT
))
2354 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
, wxPoint(0,0), wxSize(size
.x
,23), wxTAB_TRAVERSAL
);
2356 m_headerWin
= (wxListHeaderWindow
*) NULL
;
2358 SetBackgroundColour( *wxWHITE
);
2363 void wxListCtrl::OnSize( wxSizeEvent
&WXUNUSED(event
) )
2365 /* handled in OnIdle */
2367 if (m_mainWin
) m_mainWin
->m_dirty
= TRUE
;
2370 void wxListCtrl::SetSingleStyle( long style
, bool add
)
2372 long flag
= GetWindowStyle();
2376 if (style
& wxLC_MASK_TYPE
) flag
= flag
& ~wxLC_MASK_TYPE
;
2377 if (style
& wxLC_MASK_ALIGN
) flag
= flag
& ~wxLC_MASK_ALIGN
;
2378 if (style
& wxLC_MASK_SORT
) flag
= flag
& ~wxLC_MASK_SORT
;
2387 if (flag
& style
) flag
-= style
;
2390 SetWindowStyleFlag( flag
);
2393 void wxListCtrl::SetWindowStyleFlag( long flag
)
2397 m_mainWin
->DeleteEverything();
2401 GetClientSize( &width
, &height
);
2403 m_mainWin
->SetMode( flag
);
2405 if (flag
& wxLC_REPORT
)
2407 if (!HasFlag(wxLC_REPORT
))
2411 m_headerWin
= new wxListHeaderWindow( this, -1, m_mainWin
,
2412 wxPoint(0,0), wxSize(width
,23), wxTAB_TRAVERSAL
);
2416 m_headerWin
->Show( TRUE
);
2422 if (HasFlag(wxLC_REPORT
))
2424 m_headerWin
->Show( FALSE
);
2429 wxWindow::SetWindowStyleFlag( flag
);
2432 bool wxListCtrl::GetColumn(int col
, wxListItem
&item
) const
2434 m_mainWin
->GetColumn( col
, item
);
2438 bool wxListCtrl::SetColumn( int col
, wxListItem
& item
)
2440 m_mainWin
->SetColumn( col
, item
);
2444 int wxListCtrl::GetColumnWidth( int col
) const
2446 return m_mainWin
->GetColumnWidth( col
);
2449 bool wxListCtrl::SetColumnWidth( int col
, int width
)
2451 m_mainWin
->SetColumnWidth( col
, width
);
2455 int wxListCtrl::GetCountPerPage(void) const
2457 return m_mainWin
->GetCountPerPage(); // different from Windows ?
2461 wxText& wxListCtrl::GetEditControl(void) const
2466 bool wxListCtrl::GetItem( wxListItem
&info
) const
2468 m_mainWin
->GetItem( info
);
2472 bool wxListCtrl::SetItem( wxListItem
&info
)
2474 m_mainWin
->SetItem( info
);
2478 long wxListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
2481 info
.m_text
= label
;
2482 info
.m_mask
= wxLIST_MASK_TEXT
;
2483 info
.m_itemId
= index
;
2487 info
.m_image
= imageId
;
2488 info
.m_mask
|= wxLIST_MASK_IMAGE
;
2490 m_mainWin
->SetItem(info
);
2494 int wxListCtrl::GetItemState( long item
, long stateMask
) const
2496 return m_mainWin
->GetItemState( item
, stateMask
);
2499 bool wxListCtrl::SetItemState( long item
, long state
, long stateMask
)
2501 m_mainWin
->SetItemState( item
, state
, stateMask
);
2505 bool wxListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
2508 info
.m_image
= image
;
2509 info
.m_mask
= wxLIST_MASK_IMAGE
;
2510 info
.m_itemId
= item
;
2511 m_mainWin
->SetItem( info
);
2515 wxString
wxListCtrl::GetItemText( long item
) const
2518 info
.m_itemId
= item
;
2519 m_mainWin
->GetItem( info
);
2523 void wxListCtrl::SetItemText( long item
, const wxString
&str
)
2526 info
.m_mask
= wxLIST_MASK_TEXT
;
2527 info
.m_itemId
= item
;
2529 m_mainWin
->SetItem( info
);
2532 long wxListCtrl::GetItemData( long item
) const
2535 info
.m_itemId
= item
;
2536 m_mainWin
->GetItem( info
);
2540 bool wxListCtrl::SetItemData( long item
, long data
)
2543 info
.m_mask
= wxLIST_MASK_DATA
;
2544 info
.m_itemId
= item
;
2546 m_mainWin
->SetItem( info
);
2550 bool wxListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
2552 m_mainWin
->GetItemRect( item
, rect
);
2556 bool wxListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
2558 m_mainWin
->GetItemPosition( item
, pos
);
2562 bool wxListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
2567 int wxListCtrl::GetItemCount(void) const
2569 return m_mainWin
->GetItemCount();
2572 int wxListCtrl::GetColumnCount(void) const
2574 return m_mainWin
->GetColumnCount();
2577 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
2579 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
2582 int wxListCtrl::GetItemSpacing( bool isSmall
) const
2584 return m_mainWin
->GetItemSpacing( isSmall
);
2587 int wxListCtrl::GetSelectedItemCount(void) const
2589 return m_mainWin
->GetSelectedItemCount();
2593 wxColour wxListCtrl::GetTextColour(void) const
2597 void wxListCtrl::SetTextColour(const wxColour& WXUNUSED(col))
2602 long wxListCtrl::GetTopItem(void) const
2607 long wxListCtrl::GetNextItem( long item
, int geom
, int state
) const
2609 return m_mainWin
->GetNextItem( item
, geom
, state
);
2612 wxImageList
*wxListCtrl::GetImageList(int which
) const
2614 if (which
== wxIMAGE_LIST_NORMAL
)
2616 return m_imageListNormal
;
2618 else if (which
== wxIMAGE_LIST_SMALL
)
2620 return m_imageListSmall
;
2622 else if (which
== wxIMAGE_LIST_STATE
)
2624 return m_imageListState
;
2626 return (wxImageList
*) NULL
;
2629 void wxListCtrl::SetImageList( wxImageList
*imageList
, int which
)
2631 m_mainWin
->SetImageList( imageList
, which
);
2634 bool wxListCtrl::Arrange( int WXUNUSED(flag
) )
2639 bool wxListCtrl::DeleteItem( long item
)
2641 m_mainWin
->DeleteItem( item
);
2645 bool wxListCtrl::DeleteAllItems(void)
2647 m_mainWin
->DeleteAllItems();
2651 bool wxListCtrl::DeleteAllColumns()
2653 for ( size_t n
= 0; n
< m_mainWin
->m_columns
.GetCount(); n
++ )
2659 void wxListCtrl::ClearAll()
2661 m_mainWin
->DeleteEverything();
2664 bool wxListCtrl::DeleteColumn( int col
)
2666 m_mainWin
->DeleteColumn( col
);
2671 wxText& wxListCtrl::Edit( long WXUNUSED(item ) )
2676 bool wxListCtrl::EnsureVisible( long item
)
2678 m_mainWin
->EnsureVisible( item
);
2682 long wxListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
2684 return m_mainWin
->FindItem( start
, str
, partial
);
2687 long wxListCtrl::FindItem( long start
, long data
)
2689 return m_mainWin
->FindItem( start
, data
);
2692 long wxListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& WXUNUSED(pt
),
2693 int WXUNUSED(direction
))
2698 long wxListCtrl::HitTest( const wxPoint
&point
, int &flags
)
2700 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
2703 long wxListCtrl::InsertItem( wxListItem
& info
)
2705 m_mainWin
->InsertItem( info
);
2709 long wxListCtrl::InsertItem( long index
, const wxString
&label
)
2712 info
.m_text
= label
;
2713 info
.m_mask
= wxLIST_MASK_TEXT
;
2714 info
.m_itemId
= index
;
2715 return InsertItem( info
);
2718 long wxListCtrl::InsertItem( long index
, int imageIndex
)
2721 info
.m_mask
= wxLIST_MASK_IMAGE
;
2722 info
.m_image
= imageIndex
;
2723 info
.m_itemId
= index
;
2724 return InsertItem( info
);
2727 long wxListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
2730 info
.m_text
= label
;
2731 info
.m_image
= imageIndex
;
2732 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
2733 info
.m_itemId
= index
;
2734 return InsertItem( info
);
2737 long wxListCtrl::InsertColumn( long col
, wxListItem
&item
)
2739 m_mainWin
->InsertColumn( col
, item
);
2743 long wxListCtrl::InsertColumn( long col
, const wxString
&heading
,
2744 int format
, int width
)
2747 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
2748 item
.m_text
= heading
;
2751 item
.m_mask
|= wxLIST_MASK_WIDTH
;
2752 item
.m_width
= width
;
2754 item
.m_format
= format
;
2756 return InsertColumn( col
, item
);
2759 bool wxListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
2765 // fn is a function which takes 3 long arguments: item1, item2, data.
2766 // item1 is the long data associated with a first item (NOT the index).
2767 // item2 is the long data associated with a second item (NOT the index).
2768 // data is the same value as passed to SortItems.
2769 // The return value is a negative number if the first item should precede the second
2770 // item, a positive number of the second item should precede the first,
2771 // or zero if the two items are equivalent.
2772 // data is arbitrary data to be passed to the sort function.
2774 bool wxListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
2776 m_mainWin
->SortItems( fn
, data
);
2780 void wxListCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2782 if (!m_mainWin
->m_dirty
) return;
2786 GetClientSize( &cw
, &ch
);
2793 if (HasFlag(wxLC_REPORT
))
2795 m_headerWin
->GetPosition( &x
, &y
);
2796 m_headerWin
->GetSize( &w
, &h
);
2797 if ((x
!= 0) || (y
!= 0) || (w
!= cw
) || (h
!= 23))
2798 m_headerWin
->SetSize( 0, 0, cw
, 23 );
2800 m_mainWin
->GetPosition( &x
, &y
);
2801 m_mainWin
->GetSize( &w
, &h
);
2802 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
-24))
2803 m_mainWin
->SetSize( 0, 24, cw
, ch
-24 );
2807 m_mainWin
->GetPosition( &x
, &y
);
2808 m_mainWin
->GetSize( &w
, &h
);
2809 if ((x
!= 0) || (y
!= 24) || (w
!= cw
) || (h
!= ch
))
2810 m_mainWin
->SetSize( 0, 0, cw
, ch
);
2813 m_mainWin
->CalculatePositions();
2814 m_mainWin
->RealizeChanges();
2815 m_mainWin
->m_dirty
= FALSE
;
2816 m_mainWin
->Refresh();
2819 bool wxListCtrl::SetBackgroundColour( const wxColour
&colour
)
2821 if ( !wxWindow::SetBackgroundColour( colour
) )
2826 m_mainWin
->SetBackgroundColour( colour
);
2827 m_mainWin
->m_dirty
= TRUE
;
2832 m_headerWin
->SetBackgroundColour( colour
);
2838 bool wxListCtrl::SetForegroundColour( const wxColour
&colour
)
2840 if ( !wxWindow::SetForegroundColour( colour
) )
2845 m_mainWin
->SetForegroundColour( colour
);
2846 m_mainWin
->m_dirty
= TRUE
;
2851 m_headerWin
->SetForegroundColour( colour
);
2857 bool wxListCtrl::SetFont( const wxFont
&font
)
2859 if ( !wxWindow::SetFont( font
) )
2864 m_mainWin
->SetFont( font
);
2865 m_mainWin
->m_dirty
= TRUE
;
2870 m_headerWin
->SetFont( font
);