1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/listctrl.cpp
3 // Purpose: generic implementation of wxListCtrl
4 // Author: Robert Roebling
5 // Vadim Zeitlin (virtual list control support)
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 // 1. we need to implement searching/sorting for virtual controls somehow
14 // 2. when changing selection the lines are refreshed twice
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
26 #include "wx/listctrl.h"
29 #include "wx/scrolwin.h"
31 #include "wx/settings.h"
32 #include "wx/dynarray.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcscreen.h"
36 #include "wx/settings.h"
40 #include "wx/imaglist.h"
41 #include "wx/renderer.h"
42 #include "wx/generic/private/listctrl.h"
45 #include "wx/osx/private.h"
48 #if defined(__WXMSW__) && !defined(__WXWINCE__) && !defined(__WXUNIVERSAL__)
49 #define "wx/msw/wrapwin.h"
52 // NOTE: If using the wxListBox visual attributes works everywhere then this can
53 // be removed, as well as the #else case below.
54 #define _USE_VISATTR 0
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 // // the height of the header window (FIXME: should depend on its font!)
62 // static const int HEADER_HEIGHT = 23;
64 static const int SCROLL_UNIT_X
= 15;
66 // the spacing between the lines (in report mode)
67 static const int LINE_SPACING
= 0;
69 // extra margins around the text label
71 static const int EXTRA_WIDTH
= 6;
73 static const int EXTRA_WIDTH
= 4;
77 static const int EXTRA_HEIGHT
= 6;
79 static const int EXTRA_HEIGHT
= 4;
82 // margin between the window and the items
83 static const int EXTRA_BORDER_X
= 2;
84 static const int EXTRA_BORDER_Y
= 2;
86 // offset for the header window
87 static const int HEADER_OFFSET_X
= 0;
88 static const int HEADER_OFFSET_Y
= 0;
90 // margin between rows of icons in [small] icon view
91 static const int MARGIN_BETWEEN_ROWS
= 6;
93 // when autosizing the columns, add some slack
94 static const int AUTOSIZE_COL_MARGIN
= 10;
96 // default width for the header columns
97 static const int WIDTH_COL_DEFAULT
= 80;
99 // the space between the image and the text in the report mode
100 static const int IMAGE_MARGIN_IN_REPORT_MODE
= 5;
102 // the space between the image and the text in the report mode in header
103 static const int HEADER_IMAGE_MARGIN_IN_REPORT_MODE
= 2;
107 // ----------------------------------------------------------------------------
108 // arrays/list implementations
109 // ----------------------------------------------------------------------------
111 #include "wx/listimpl.cpp"
112 WX_DEFINE_LIST(wxListItemDataList
)
114 #include "wx/arrimpl.cpp"
115 WX_DEFINE_OBJARRAY(wxListLineDataArray
)
117 #include "wx/listimpl.cpp"
118 WX_DEFINE_LIST(wxListHeaderDataList
)
121 // ----------------------------------------------------------------------------
123 // ----------------------------------------------------------------------------
125 wxListItemData::~wxListItemData()
127 // in the virtual list control the attributes are managed by the main
128 // program, so don't delete them
129 if ( !m_owner
->IsVirtual() )
135 void wxListItemData::Init()
143 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
149 if ( owner
->InReportView() )
155 void wxListItemData::SetItem( const wxListItem
&info
)
157 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
158 SetText(info
.m_text
);
159 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
160 m_image
= info
.m_image
;
161 if ( info
.m_mask
& wxLIST_MASK_DATA
)
162 m_data
= info
.m_data
;
164 if ( info
.HasAttributes() )
167 m_attr
->AssignFrom(*info
.GetAttributes());
169 m_attr
= new wxListItemAttr(*info
.GetAttributes());
177 m_rect
->width
= info
.m_width
;
181 void wxListItemData::SetPosition( int x
, int y
)
183 wxCHECK_RET( m_rect
, wxT("unexpected SetPosition() call") );
189 void wxListItemData::SetSize( int width
, int height
)
191 wxCHECK_RET( m_rect
, wxT("unexpected SetSize() call") );
194 m_rect
->width
= width
;
196 m_rect
->height
= height
;
199 bool wxListItemData::IsHit( int x
, int y
) const
201 wxCHECK_MSG( m_rect
, false, wxT("can't be called in this mode") );
203 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Contains(x
, y
);
206 int wxListItemData::GetX() const
208 wxCHECK_MSG( m_rect
, 0, wxT("can't be called in this mode") );
213 int wxListItemData::GetY() const
215 wxCHECK_MSG( m_rect
, 0, wxT("can't be called in this mode") );
220 int wxListItemData::GetWidth() const
222 wxCHECK_MSG( m_rect
, 0, wxT("can't be called in this mode") );
224 return m_rect
->width
;
227 int wxListItemData::GetHeight() const
229 wxCHECK_MSG( m_rect
, 0, wxT("can't be called in this mode") );
231 return m_rect
->height
;
234 void wxListItemData::GetItem( wxListItem
&info
) const
236 long mask
= info
.m_mask
;
238 // by default, get everything for backwards compatibility
241 if ( mask
& wxLIST_MASK_TEXT
)
242 info
.m_text
= m_text
;
243 if ( mask
& wxLIST_MASK_IMAGE
)
244 info
.m_image
= m_image
;
245 if ( mask
& wxLIST_MASK_DATA
)
246 info
.m_data
= m_data
;
250 if ( m_attr
->HasTextColour() )
251 info
.SetTextColour(m_attr
->GetTextColour());
252 if ( m_attr
->HasBackgroundColour() )
253 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
254 if ( m_attr
->HasFont() )
255 info
.SetFont(m_attr
->GetFont());
259 //-----------------------------------------------------------------------------
261 //-----------------------------------------------------------------------------
263 void wxListHeaderData::Init()
275 wxListHeaderData::wxListHeaderData()
280 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
287 void wxListHeaderData::SetItem( const wxListItem
&item
)
289 m_mask
= item
.m_mask
;
291 if ( m_mask
& wxLIST_MASK_TEXT
)
292 m_text
= item
.m_text
;
294 if ( m_mask
& wxLIST_MASK_IMAGE
)
295 m_image
= item
.m_image
;
297 if ( m_mask
& wxLIST_MASK_FORMAT
)
298 m_format
= item
.m_format
;
300 if ( m_mask
& wxLIST_MASK_WIDTH
)
301 SetWidth(item
.m_width
);
303 if ( m_mask
& wxLIST_MASK_STATE
)
304 SetState(item
.m_state
);
307 void wxListHeaderData::SetPosition( int x
, int y
)
313 void wxListHeaderData::SetHeight( int h
)
318 void wxListHeaderData::SetWidth( int w
)
320 m_width
= w
< 0 ? WIDTH_COL_DEFAULT
: w
;
323 void wxListHeaderData::SetState( int flag
)
328 void wxListHeaderData::SetFormat( int format
)
333 bool wxListHeaderData::HasImage() const
335 return m_image
!= -1;
338 bool wxListHeaderData::IsHit( int x
, int y
) const
340 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
343 void wxListHeaderData::GetItem( wxListItem
& item
)
345 long mask
= item
.m_mask
;
348 // by default, get everything for backwards compatibility
352 if ( mask
& wxLIST_MASK_STATE
)
353 item
.m_state
= m_state
;
354 if ( mask
& wxLIST_MASK_TEXT
)
355 item
.m_text
= m_text
;
356 if ( mask
& wxLIST_MASK_IMAGE
)
357 item
.m_image
= m_image
;
358 if ( mask
& wxLIST_MASK_WIDTH
)
359 item
.m_width
= m_width
;
360 if ( mask
& wxLIST_MASK_FORMAT
)
361 item
.m_format
= m_format
;
364 int wxListHeaderData::GetImage() const
369 int wxListHeaderData::GetWidth() const
374 int wxListHeaderData::GetFormat() const
379 int wxListHeaderData::GetState() const
384 //-----------------------------------------------------------------------------
386 //-----------------------------------------------------------------------------
388 inline int wxListLineData::GetMode() const
390 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
393 inline bool wxListLineData::InReportView() const
395 return m_owner
->HasFlag(wxLC_REPORT
);
398 inline bool wxListLineData::IsVirtual() const
400 return m_owner
->IsVirtual();
403 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
407 if ( InReportView() )
410 m_gi
= new GeometryInfo
;
412 m_highlighted
= false;
414 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
417 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
419 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
420 wxCHECK_RET( node
, wxT("no subitems at all??") );
422 wxListItemData
*item
= node
->GetData();
430 case wxLC_SMALL_ICON
:
431 m_gi
->m_rectAll
.width
= spacing
;
438 m_gi
->m_rectLabel
.width
=
439 m_gi
->m_rectLabel
.height
= 0;
443 dc
->GetTextExtent( s
, &lw
, &lh
);
447 m_gi
->m_rectAll
.height
= spacing
+ lh
;
449 m_gi
->m_rectAll
.width
= lw
;
451 m_gi
->m_rectLabel
.width
= lw
;
452 m_gi
->m_rectLabel
.height
= lh
;
455 if (item
->HasImage())
458 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
459 m_gi
->m_rectIcon
.width
= w
+ 8;
460 m_gi
->m_rectIcon
.height
= h
+ 8;
462 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
463 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
464 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
465 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
468 if ( item
->HasText() )
470 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
471 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
473 else // no text, highlight the icon
475 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
476 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
481 s
= item
->GetTextForMeasuring();
483 dc
->GetTextExtent( s
, &lw
, &lh
);
487 m_gi
->m_rectLabel
.width
= lw
;
488 m_gi
->m_rectLabel
.height
= lh
;
490 m_gi
->m_rectAll
.width
= lw
;
491 m_gi
->m_rectAll
.height
= lh
;
493 if (item
->HasImage())
496 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
497 m_gi
->m_rectIcon
.width
= w
;
498 m_gi
->m_rectIcon
.height
= h
;
500 m_gi
->m_rectAll
.width
+= 4 + w
;
501 if (h
> m_gi
->m_rectAll
.height
)
502 m_gi
->m_rectAll
.height
= h
;
505 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
506 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
510 wxFAIL_MSG( wxT("unexpected call to SetSize") );
514 wxFAIL_MSG( wxT("unknown mode") );
519 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
521 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
522 wxCHECK_RET( node
, wxT("no subitems at all??") );
524 wxListItemData
*item
= node
->GetData();
529 case wxLC_SMALL_ICON
:
530 m_gi
->m_rectAll
.x
= x
;
531 m_gi
->m_rectAll
.y
= y
;
533 if ( item
->HasImage() )
535 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
536 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
537 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
540 if ( item
->HasText() )
542 if (m_gi
->m_rectAll
.width
> spacing
)
543 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
545 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2) + (spacing
/ 2) - (m_gi
->m_rectLabel
.width
/ 2);
546 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
547 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
548 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
550 else // no text, highlight the icon
552 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
553 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
558 m_gi
->m_rectAll
.x
= x
;
559 m_gi
->m_rectAll
.y
= y
;
561 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
562 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
563 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
565 if (item
->HasImage())
567 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
568 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
569 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 4 + (EXTRA_WIDTH
/2) + m_gi
->m_rectIcon
.width
;
573 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
578 wxFAIL_MSG( wxT("unexpected call to SetPosition") );
582 wxFAIL_MSG( wxT("unknown mode") );
587 void wxListLineData::InitItems( int num
)
589 for (int i
= 0; i
< num
; i
++)
590 m_items
.Append( new wxListItemData(m_owner
) );
593 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
595 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
596 wxCHECK_RET( node
, wxT("invalid column index in SetItem") );
598 wxListItemData
*item
= node
->GetData();
599 item
->SetItem( info
);
602 void wxListLineData::GetItem( int index
, wxListItem
&info
)
604 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
607 wxListItemData
*item
= node
->GetData();
608 item
->GetItem( info
);
612 wxString
wxListLineData::GetText(int index
) const
616 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
619 wxListItemData
*item
= node
->GetData();
626 void wxListLineData::SetText( int index
, const wxString
& s
)
628 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
631 wxListItemData
*item
= node
->GetData();
636 void wxListLineData::SetImage( int index
, int image
)
638 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
639 wxCHECK_RET( node
, wxT("invalid column index in SetImage()") );
641 wxListItemData
*item
= node
->GetData();
642 item
->SetImage(image
);
645 int wxListLineData::GetImage( int index
) const
647 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
648 wxCHECK_MSG( node
, -1, wxT("invalid column index in GetImage()") );
650 wxListItemData
*item
= node
->GetData();
651 return item
->GetImage();
654 wxListItemAttr
*wxListLineData::GetAttr() const
656 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
657 wxCHECK_MSG( node
, NULL
, wxT("invalid column index in GetAttr()") );
659 wxListItemData
*item
= node
->GetData();
660 return item
->GetAttr();
663 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
665 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
666 wxCHECK_RET( node
, wxT("invalid column index in SetAttr()") );
668 wxListItemData
*item
= node
->GetData();
672 void wxListLineData::ApplyAttributes(wxDC
*dc
,
673 const wxRect
& rectHL
,
677 const wxListItemAttr
* const attr
= GetAttr();
679 wxWindow
* const listctrl
= m_owner
->GetParent();
681 const bool hasFocus
= listctrl
->HasFocus()
682 #if defined(__WXMAC__) && !defined(__WXUNIVERSAL__) && wxOSX_USE_CARBON
683 && IsControlActive( (ControlRef
)listctrl
->GetHandle() )
689 // don't use foreground colour for drawing highlighted items - this might
690 // make them completely invisible (and there is no way to do bit
691 // arithmetics on wxColour, unfortunately)
702 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
704 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOXHIGHLIGHTTEXT
);
707 else if ( attr
&& attr
->HasTextColour() )
708 colText
= attr
->GetTextColour();
710 colText
= listctrl
->GetForegroundColour();
712 dc
->SetTextForeground(colText
);
716 if ( attr
&& attr
->HasFont() )
717 font
= attr
->GetFont();
719 font
= listctrl
->GetFont();
726 // Use the renderer method to ensure that the selected items use the
728 int flags
= wxCONTROL_SELECTED
;
730 flags
|= wxCONTROL_FOCUSED
;
732 flags
|= wxCONTROL_CURRENT
;
733 wxRendererNative::Get().
734 DrawItemSelectionRect( m_owner
, *dc
, rectHL
, flags
);
736 else if ( attr
&& attr
->HasBackgroundColour() )
738 // Draw the background using the items custom background colour.
739 dc
->SetBrush(attr
->GetBackgroundColour());
740 dc
->SetPen(*wxTRANSPARENT_PEN
);
741 dc
->DrawRectangle(rectHL
);
744 // just for debugging to better see where the items are
746 dc
->SetPen(*wxRED_PEN
);
747 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
748 dc
->DrawRectangle( m_gi
->m_rectAll
);
749 dc
->SetPen(*wxGREEN_PEN
);
750 dc
->DrawRectangle( m_gi
->m_rectIcon
);
754 void wxListLineData::Draw(wxDC
*dc
, bool current
)
756 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
757 wxCHECK_RET( node
, wxT("no subitems at all??") );
759 ApplyAttributes(dc
, m_gi
->m_rectHighlight
, IsHighlighted(), current
);
761 wxListItemData
*item
= node
->GetData();
762 if (item
->HasImage())
764 // centre the image inside our rectangle, this looks nicer when items
765 // ae aligned in a row
766 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
768 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
773 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
775 wxDCClipper
clipper(*dc
, rectLabel
);
776 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
780 void wxListLineData::DrawInReportMode( wxDC
*dc
,
782 const wxRect
& rectHL
,
786 // TODO: later we should support setting different attributes for
787 // different columns - to do it, just add "col" argument to
788 // GetAttr() and move these lines into the loop below
790 ApplyAttributes(dc
, rectHL
, highlighted
, current
);
792 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
793 yMid
= rect
.y
+ rect
.height
/2;
795 // This probably needs to be done
796 // on all platforms as the icons
797 // otherwise nearly touch the border
802 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
804 node
= node
->GetNext(), col
++ )
806 wxListItemData
*item
= node
->GetData();
808 int width
= m_owner
->GetColumnWidth(col
);
813 const int wText
= width
;
814 wxDCClipper
clipper(*dc
, xOld
, rect
.y
, wText
, rect
.height
);
816 if ( item
->HasImage() )
819 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
820 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, yMid
- iy
/2 );
822 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
828 if ( item
->HasText() )
829 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, yMid
, width
);
833 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
834 const wxString
& textOrig
,
840 // we don't support displaying multiple lines currently (and neither does
841 // wxMSW FWIW) so just merge all the lines
842 wxString
text(textOrig
);
843 text
.Replace(wxT("\n"), wxT(" "));
846 dc
->GetTextExtent(text
, &w
, &h
);
848 const wxCoord y
= yMid
- (h
+ 1)/2;
850 wxDCClipper
clipper(*dc
, x
, y
, width
, h
);
852 // determine if the string can fit inside the current width
855 // it can, draw it using the items alignment
857 m_owner
->GetColumn(col
, item
);
858 switch ( item
.GetAlign() )
860 case wxLIST_FORMAT_LEFT
:
864 case wxLIST_FORMAT_RIGHT
:
868 case wxLIST_FORMAT_CENTER
:
869 x
+= (width
- w
) / 2;
873 wxFAIL_MSG( wxT("unknown list item format") );
877 dc
->DrawText(text
, x
, y
);
879 else // otherwise, truncate and add an ellipsis if possible
881 // determine the base width
882 wxString
ellipsis(wxT("..."));
884 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
886 // continue until we have enough space or only one character left
888 size_t len
= text
.length();
889 wxString drawntext
= text
.Left(len
);
892 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
893 drawntext
.RemoveLast();
896 if (w
+ base_w
<= width
)
900 // if still not enough space, remove ellipsis characters
901 while (ellipsis
.length() > 0 && w
+ base_w
> width
)
903 ellipsis
= ellipsis
.Left(ellipsis
.length() - 1);
904 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
908 dc
->DrawText(drawntext
, x
, y
);
909 dc
->DrawText(ellipsis
, x
+ w
, y
);
913 bool wxListLineData::Highlight( bool on
)
915 wxCHECK_MSG( !IsVirtual(), false, wxT("unexpected call to Highlight") );
917 if ( on
== m_highlighted
)
925 void wxListLineData::ReverseHighlight( void )
927 Highlight(!IsHighlighted());
930 //-----------------------------------------------------------------------------
931 // wxListHeaderWindow
932 //-----------------------------------------------------------------------------
934 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
935 EVT_PAINT (wxListHeaderWindow::OnPaint
)
936 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
939 void wxListHeaderWindow::Init()
941 m_currentCursor
= NULL
;
942 m_isDragging
= false;
944 m_sendSetColumnWidth
= false;
947 wxListHeaderWindow::wxListHeaderWindow()
952 m_resizeCursor
= NULL
;
955 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
957 wxListMainWindow
*owner
,
961 const wxString
&name
)
962 : wxWindow( win
, id
, pos
, size
, style
, name
)
967 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
970 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
971 SetOwnForegroundColour( attr
.colFg
);
972 SetOwnBackgroundColour( attr
.colBg
);
974 SetOwnFont( attr
.font
);
976 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
977 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
979 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
983 wxListHeaderWindow::~wxListHeaderWindow()
985 delete m_resizeCursor
;
988 #ifdef __WXUNIVERSAL__
989 #include "wx/univ/renderer.h"
990 #include "wx/univ/theme.h"
993 // shift the DC origin to match the position of the main window horz
994 // scrollbar: this allows us to always use logical coords
995 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
997 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
1000 parent
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1003 parent
->GetViewStart( &view_start
, NULL
);
1008 dc
.GetDeviceOrigin( &org_x
, &org_y
);
1010 // account for the horz scrollbar offset
1012 if (GetLayoutDirection() == wxLayout_RightToLeft
)
1014 // Maybe we just have to check for m_signX
1015 // in the DC, but I leave the #ifdef __WXGTK__
1017 dc
.SetDeviceOrigin( org_x
+ (view_start
* xpix
), org_y
);
1021 dc
.SetDeviceOrigin( org_x
- (view_start
* xpix
), org_y
);
1024 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1026 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
1028 wxPaintDC
dc( this );
1032 dc
.SetFont( GetFont() );
1034 // width and height of the entire header window
1036 GetClientSize( &w
, &h
);
1037 parent
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1039 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
1040 dc
.SetTextForeground(GetForegroundColour());
1042 int x
= HEADER_OFFSET_X
;
1043 int numColumns
= m_owner
->GetColumnCount();
1045 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1047 m_owner
->GetColumn( i
, item
);
1048 int wCol
= item
.m_width
;
1054 if (!m_parent
->IsEnabled())
1055 flags
|= wxCONTROL_DISABLED
;
1057 // NB: The code below is not really Mac-specific, but since we are close
1058 // to 2.8 release and I don't have time to test on other platforms, I
1059 // defined this only for wxMac. If this behaviour is desired on
1060 // other platforms, please go ahead and revise or remove the #ifdef.
1062 if ( !m_owner
->IsVirtual() && (item
.m_mask
& wxLIST_MASK_STATE
) &&
1063 (item
.m_state
& wxLIST_STATE_SELECTED
) )
1064 flags
|= wxCONTROL_SELECTED
;
1068 flags
|= wxCONTROL_SPECIAL
; // mark as first column
1070 wxRendererNative::Get().DrawHeaderButton
1074 wxRect(x
, HEADER_OFFSET_Y
, cw
, ch
),
1078 // see if we have enough space for the column label
1080 // for this we need the width of the text
1083 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1084 wLabel
+= 2 * EXTRA_WIDTH
;
1086 // and the width of the icon, if any
1087 int ix
= 0, iy
= 0; // init them just to suppress the compiler warnings
1088 const int image
= item
.m_image
;
1089 wxImageList
*imageList
;
1092 imageList
= m_owner
->GetSmallImageList();
1095 imageList
->GetSize(image
, ix
, iy
);
1096 wLabel
+= ix
+ HEADER_IMAGE_MARGIN_IN_REPORT_MODE
;
1104 // ignore alignment if there is not enough space anyhow
1106 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1109 wxFAIL_MSG( wxT("unknown list item format") );
1112 case wxLIST_FORMAT_LEFT
:
1116 case wxLIST_FORMAT_RIGHT
:
1117 xAligned
= x
+ cw
- wLabel
;
1120 case wxLIST_FORMAT_CENTER
:
1121 xAligned
= x
+ (cw
- wLabel
) / 2;
1125 // draw the text and image clipping them so that they
1126 // don't overwrite the column boundary
1127 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
);
1129 // if we have an image, draw it on the right of the label
1136 xAligned
+ wLabel
- ix
- HEADER_IMAGE_MARGIN_IN_REPORT_MODE
,
1137 HEADER_OFFSET_Y
+ (h
- iy
)/2,
1138 wxIMAGELIST_DRAW_TRANSPARENT
1142 dc
.DrawText( item
.GetText(),
1143 xAligned
+ EXTRA_WIDTH
, (h
- hLabel
) / 2 );
1148 // Fill in what's missing to the right of the columns, otherwise we will
1149 // leave an unpainted area when columns are removed (and it looks better)
1152 wxRendererNative::Get().DrawHeaderButton
1156 wxRect(x
, HEADER_OFFSET_Y
, w
- x
, h
),
1157 wxCONTROL_DIRTY
// mark as last column
1162 void wxListHeaderWindow::OnInternalIdle()
1164 wxWindow::OnInternalIdle();
1166 if (m_sendSetColumnWidth
)
1168 m_owner
->SetColumnWidth( m_colToSend
, m_widthToSend
);
1169 m_sendSetColumnWidth
= false;
1173 void wxListHeaderWindow::DrawCurrent()
1176 // m_owner->SetColumnWidth( m_column, m_currentX - m_minX );
1177 m_sendSetColumnWidth
= true;
1178 m_colToSend
= m_column
;
1179 m_widthToSend
= m_currentX
- m_minX
;
1181 int x1
= m_currentX
;
1183 m_owner
->ClientToScreen( &x1
, &y1
);
1185 int x2
= m_currentX
;
1187 m_owner
->GetClientSize( NULL
, &y2
);
1188 m_owner
->ClientToScreen( &x2
, &y2
);
1191 dc
.SetLogicalFunction( wxINVERT
);
1192 dc
.SetPen( wxPen(*wxBLACK
, 2) );
1193 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1197 dc
.DrawLine( x1
, y1
, x2
, y2
);
1199 dc
.SetLogicalFunction( wxCOPY
);
1201 dc
.SetPen( wxNullPen
);
1202 dc
.SetBrush( wxNullBrush
);
1206 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1208 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
1210 // we want to work with logical coords
1212 parent
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1213 int y
= event
.GetY();
1217 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1219 // we don't draw the line beyond our window, but we allow dragging it
1222 GetClientSize( &w
, NULL
);
1223 parent
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1226 // erase the line if it was drawn
1227 if ( m_currentX
< w
)
1230 if (event
.ButtonUp())
1233 m_isDragging
= false;
1235 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1236 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1243 m_currentX
= m_minX
+ 7;
1245 // draw in the new location
1246 if ( m_currentX
< w
)
1250 else // not dragging
1253 bool hit_border
= false;
1255 // end of the current column
1258 // find the column where this event occurred
1260 countCol
= m_owner
->GetColumnCount();
1261 for (col
= 0; col
< countCol
; col
++)
1263 xpos
+= m_owner
->GetColumnWidth( col
);
1266 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1268 // near the column border
1275 // inside the column
1282 if ( col
== countCol
)
1285 if (event
.LeftDown() || event
.RightUp())
1287 if (hit_border
&& event
.LeftDown())
1289 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1290 event
.GetPosition()) )
1292 m_isDragging
= true;
1297 //else: column resizing was vetoed by the user code
1299 else // click on a column
1301 // record the selected state of the columns
1302 if (event
.LeftDown())
1304 for (int i
=0; i
< m_owner
->GetColumnCount(); i
++)
1307 m_owner
->GetColumn(i
, colItem
);
1308 long state
= colItem
.GetState();
1310 colItem
.SetState(state
| wxLIST_STATE_SELECTED
);
1312 colItem
.SetState(state
& ~wxLIST_STATE_SELECTED
);
1313 m_owner
->SetColumn(i
, colItem
);
1317 SendListEvent( event
.LeftDown()
1318 ? wxEVT_COMMAND_LIST_COL_CLICK
1319 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1320 event
.GetPosition());
1323 else if (event
.Moving())
1328 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1329 m_currentCursor
= m_resizeCursor
;
1333 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1334 m_currentCursor
= wxSTANDARD_CURSOR
;
1338 SetCursor(*m_currentCursor
);
1343 bool wxListHeaderWindow::SendListEvent(wxEventType type
, const wxPoint
& pos
)
1345 wxWindow
*parent
= GetParent();
1346 wxListEvent
le( type
, parent
->GetId() );
1347 le
.SetEventObject( parent
);
1348 le
.m_pointDrag
= pos
;
1350 // the position should be relative to the parent window, not
1351 // this one for compatibility with MSW and common sense: the
1352 // user code doesn't know anything at all about this header
1353 // window, so why should it get positions relative to it?
1354 le
.m_pointDrag
.y
-= GetSize().y
;
1356 le
.m_col
= m_column
;
1357 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
1360 //-----------------------------------------------------------------------------
1361 // wxListRenameTimer (internal)
1362 //-----------------------------------------------------------------------------
1364 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
1369 void wxListRenameTimer::Notify()
1371 m_owner
->OnRenameTimer();
1374 //-----------------------------------------------------------------------------
1375 // wxListTextCtrlWrapper (internal)
1376 //-----------------------------------------------------------------------------
1378 BEGIN_EVENT_TABLE(wxListTextCtrlWrapper
, wxEvtHandler
)
1379 EVT_CHAR (wxListTextCtrlWrapper::OnChar
)
1380 EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp
)
1381 EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus
)
1384 wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow
*owner
,
1387 : m_startValue(owner
->GetItemText(itemEdit
)),
1388 m_itemEdited(itemEdit
)
1392 m_aboutToFinish
= false;
1394 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
1396 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
1398 parent
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
1399 &rectLabel
.x
, &rectLabel
.y
);
1401 m_text
->Create(owner
, wxID_ANY
, m_startValue
,
1402 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
1403 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
1406 m_text
->PushEventHandler(this);
1409 void wxListTextCtrlWrapper::EndEdit(EndReason reason
)
1411 m_aboutToFinish
= true;
1416 // Notify the owner about the changes
1419 // Even if vetoed, close the control (consistent with MSW)
1424 m_owner
->OnRenameCancelled(m_itemEdited
);
1430 // Don't generate any notifications for the control being destroyed
1431 // and don't set focus to it neither.
1437 void wxListTextCtrlWrapper::Finish( bool setfocus
)
1439 m_text
->RemoveEventHandler(this);
1440 m_owner
->ResetTextControl( m_text
);
1442 wxPendingDelete
.Append( this );
1445 m_owner
->SetFocus();
1448 bool wxListTextCtrlWrapper::AcceptChanges()
1450 const wxString value
= m_text
->GetValue();
1452 // notice that we should always call OnRenameAccept() to generate the "end
1453 // label editing" event, even if the user hasn't really changed anything
1454 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
1456 // vetoed by the user
1460 // accepted, do rename the item (unless nothing changed)
1461 if ( value
!= m_startValue
)
1462 m_owner
->SetItemText(m_itemEdited
, value
);
1467 void wxListTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
1469 if ( !CheckForEndEditKey(event
) )
1473 bool wxListTextCtrlWrapper::CheckForEndEditKey(const wxKeyEvent
& event
)
1475 switch ( event
.m_keyCode
)
1478 EndEdit( End_Accept
);
1482 EndEdit( End_Discard
);
1492 void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
1494 if (m_aboutToFinish
)
1496 // auto-grow the textctrl:
1497 wxSize parentSize
= m_owner
->GetSize();
1498 wxPoint myPos
= m_text
->GetPosition();
1499 wxSize mySize
= m_text
->GetSize();
1501 m_text
->GetTextExtent(m_text
->GetValue() + wxT("MM"), &sx
, &sy
);
1502 if (myPos
.x
+ sx
> parentSize
.x
)
1503 sx
= parentSize
.x
- myPos
.x
;
1506 m_text
->SetSize(sx
, wxDefaultCoord
);
1512 void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
1514 if ( !m_aboutToFinish
)
1516 if ( !AcceptChanges() )
1517 m_owner
->OnRenameCancelled( m_itemEdited
);
1522 // We must let the native text control handle focus
1526 //-----------------------------------------------------------------------------
1528 //-----------------------------------------------------------------------------
1530 BEGIN_EVENT_TABLE(wxListMainWindow
, wxWindow
)
1531 EVT_PAINT (wxListMainWindow::OnPaint
)
1532 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
1533 EVT_CHAR_HOOK (wxListMainWindow::OnCharHook
)
1534 EVT_CHAR (wxListMainWindow::OnChar
)
1535 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
1536 EVT_KEY_UP (wxListMainWindow::OnKeyUp
)
1537 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
1538 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
1539 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
1540 EVT_CHILD_FOCUS (wxListMainWindow::OnChildFocus
)
1543 void wxListMainWindow::Init()
1548 m_lineTo
= (size_t)-1;
1554 m_small_image_list
= NULL
;
1555 m_normal_image_list
= NULL
;
1557 m_small_spacing
= 30;
1558 m_normal_spacing
= 40;
1562 m_isCreated
= false;
1564 m_lastOnSame
= false;
1565 m_renameTimer
= new wxListRenameTimer( this );
1566 m_textctrlWrapper
= NULL
;
1570 m_lineSelectSingleOnUp
=
1571 m_lineBeforeLastClicked
= (size_t)-1;
1574 wxListMainWindow::wxListMainWindow()
1579 m_highlightUnfocusedBrush
= NULL
;
1582 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
1585 const wxSize
& size
)
1586 : wxWindow( parent
, id
, pos
, size
,
1587 wxWANTS_CHARS
| wxBORDER_NONE
)
1591 m_highlightBrush
= new wxBrush
1593 wxSystemSettings::GetColour
1595 wxSYS_COLOUR_HIGHLIGHT
1600 m_highlightUnfocusedBrush
= new wxBrush
1602 wxSystemSettings::GetColour
1604 wxSYS_COLOUR_BTNSHADOW
1609 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
1610 SetOwnForegroundColour( attr
.colFg
);
1611 SetOwnBackgroundColour( attr
.colBg
);
1613 SetOwnFont( attr
.font
);
1616 wxListMainWindow::~wxListMainWindow()
1618 if ( m_textctrlWrapper
)
1619 m_textctrlWrapper
->EndEdit(wxListTextCtrlWrapper::End_Destroy
);
1622 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
1623 WX_CLEAR_ARRAY(m_aColWidths
);
1625 delete m_highlightBrush
;
1626 delete m_highlightUnfocusedBrush
;
1627 delete m_renameTimer
;
1630 void wxListMainWindow::SetReportView(bool inReportView
)
1632 const size_t count
= m_lines
.size();
1633 for ( size_t n
= 0; n
< count
; n
++ )
1635 m_lines
[n
].SetReportView(inReportView
);
1639 void wxListMainWindow::CacheLineData(size_t line
)
1641 wxGenericListCtrl
*listctrl
= GetListCtrl();
1643 wxListLineData
*ld
= GetDummyLine();
1645 size_t countCol
= GetColumnCount();
1646 for ( size_t col
= 0; col
< countCol
; col
++ )
1648 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
1649 ld
->SetImage(col
, listctrl
->OnGetItemColumnImage(line
, col
));
1652 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
1655 wxListLineData
*wxListMainWindow::GetDummyLine() const
1657 wxASSERT_MSG( !IsEmpty(), wxT("invalid line index") );
1658 wxASSERT_MSG( IsVirtual(), wxT("GetDummyLine() shouldn't be called") );
1660 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
1662 // we need to recreate the dummy line if the number of columns in the
1663 // control changed as it would have the incorrect number of fields
1665 if ( !m_lines
.IsEmpty() &&
1666 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
1668 self
->m_lines
.Clear();
1671 if ( m_lines
.IsEmpty() )
1673 wxListLineData
*line
= new wxListLineData(self
);
1674 self
->m_lines
.Add(line
);
1676 // don't waste extra memory -- there never going to be anything
1677 // else/more in this array
1678 self
->m_lines
.Shrink();
1684 // ----------------------------------------------------------------------------
1685 // line geometry (report mode only)
1686 // ----------------------------------------------------------------------------
1688 wxCoord
wxListMainWindow::GetLineHeight() const
1690 // we cache the line height as calling GetTextExtent() is slow
1691 if ( !m_lineHeight
)
1693 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
1695 wxClientDC
dc( self
);
1696 dc
.SetFont( GetFont() );
1699 dc
.GetTextExtent(wxT("H"), NULL
, &y
);
1701 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
1704 m_small_image_list
->GetSize(0, iw
, ih
);
1709 self
->m_lineHeight
= y
+ LINE_SPACING
;
1712 return m_lineHeight
;
1715 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
1717 wxASSERT_MSG( InReportView(), wxT("only works in report mode") );
1719 return LINE_SPACING
+ line
* GetLineHeight();
1722 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
1724 if ( !InReportView() )
1725 return GetLine(line
)->m_gi
->m_rectAll
;
1728 rect
.x
= HEADER_OFFSET_X
;
1729 rect
.y
= GetLineY(line
);
1730 rect
.width
= GetHeaderWidth();
1731 rect
.height
= GetLineHeight();
1736 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
1738 if ( !InReportView() )
1739 return GetLine(line
)->m_gi
->m_rectLabel
;
1742 wxListLineData
*data
= GetLine(line
);
1743 wxListItemDataList::compatibility_iterator node
= data
->m_items
.GetFirst();
1746 wxListItemData
*item
= node
->GetData();
1747 if ( item
->HasImage() )
1750 GetImageSize( item
->GetImage(), ix
, iy
);
1751 image_x
= 3 + ix
+ IMAGE_MARGIN_IN_REPORT_MODE
;
1756 rect
.x
= image_x
+ HEADER_OFFSET_X
;
1757 rect
.y
= GetLineY(line
);
1758 rect
.width
= GetColumnWidth(0) - image_x
;
1759 rect
.height
= GetLineHeight();
1764 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
1766 if ( !InReportView() )
1767 return GetLine(line
)->m_gi
->m_rectIcon
;
1769 wxListLineData
*ld
= GetLine(line
);
1770 wxASSERT_MSG( ld
->HasImage(), wxT("should have an image") );
1773 rect
.x
= HEADER_OFFSET_X
;
1774 rect
.y
= GetLineY(line
);
1775 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
1780 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
1782 return InReportView() ? GetLineRect(line
)
1783 : GetLine(line
)->m_gi
->m_rectHighlight
;
1786 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
1788 wxASSERT_MSG( line
< GetItemCount(), wxT("invalid line in HitTestLine") );
1790 wxListLineData
*ld
= GetLine(line
);
1792 if ( ld
->HasImage() && GetLineIconRect(line
).Contains(x
, y
) )
1793 return wxLIST_HITTEST_ONITEMICON
;
1795 // VS: Testing for "ld->HasText() || InReportView()" instead of
1796 // "ld->HasText()" is needed to make empty lines in report view
1798 if ( ld
->HasText() || InReportView() )
1800 wxRect rect
= InReportView() ? GetLineRect(line
)
1801 : GetLineLabelRect(line
);
1803 if ( rect
.Contains(x
, y
) )
1804 return wxLIST_HITTEST_ONITEMLABEL
;
1810 // ----------------------------------------------------------------------------
1811 // highlight (selection) handling
1812 // ----------------------------------------------------------------------------
1814 bool wxListMainWindow::IsHighlighted(size_t line
) const
1818 return m_selStore
.IsSelected(line
);
1822 wxListLineData
*ld
= GetLine(line
);
1823 wxCHECK_MSG( ld
, false, wxT("invalid index in IsHighlighted") );
1825 return ld
->IsHighlighted();
1829 void wxListMainWindow::HighlightLines( size_t lineFrom
,
1835 wxArrayInt linesChanged
;
1836 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
1839 // meny items changed state, refresh everything
1840 RefreshLines(lineFrom
, lineTo
);
1842 else // only a few items changed state, refresh only them
1844 size_t count
= linesChanged
.GetCount();
1845 for ( size_t n
= 0; n
< count
; n
++ )
1847 RefreshLine(linesChanged
[n
]);
1851 else // iterate over all items in non report view
1853 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
1855 if ( HighlightLine(line
, highlight
) )
1861 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
1867 changed
= m_selStore
.SelectItem(line
, highlight
);
1871 wxListLineData
*ld
= GetLine(line
);
1872 wxCHECK_MSG( ld
, false, wxT("invalid index in HighlightLine") );
1874 changed
= ld
->Highlight(highlight
);
1879 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
1880 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1886 void wxListMainWindow::RefreshLine( size_t line
)
1888 if ( InReportView() )
1890 size_t visibleFrom
, visibleTo
;
1891 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1893 if ( line
< visibleFrom
|| line
> visibleTo
)
1897 wxRect rect
= GetLineRect(line
);
1899 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1900 RefreshRect( rect
);
1903 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
1905 // we suppose that they are ordered by caller
1906 wxASSERT_MSG( lineFrom
<= lineTo
, wxT("indices in disorder") );
1908 wxASSERT_MSG( lineTo
< GetItemCount(), wxT("invalid line range") );
1910 if ( InReportView() )
1912 size_t visibleFrom
, visibleTo
;
1913 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1915 if ( lineFrom
< visibleFrom
)
1916 lineFrom
= visibleFrom
;
1917 if ( lineTo
> visibleTo
)
1922 rect
.y
= GetLineY(lineFrom
);
1923 rect
.width
= GetClientSize().x
;
1924 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
1926 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1927 RefreshRect( rect
);
1931 // TODO: this should be optimized...
1932 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
1939 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
1941 if ( InReportView() )
1943 size_t visibleFrom
, visibleTo
;
1944 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1946 if ( lineFrom
< visibleFrom
)
1947 lineFrom
= visibleFrom
;
1948 else if ( lineFrom
> visibleTo
)
1953 rect
.y
= GetLineY(lineFrom
);
1954 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1956 wxSize size
= GetClientSize();
1957 rect
.width
= size
.x
;
1959 // refresh till the bottom of the window
1960 rect
.height
= size
.y
- rect
.y
;
1962 RefreshRect( rect
);
1966 // TODO: how to do it more efficiently?
1971 void wxListMainWindow::RefreshSelected()
1977 if ( InReportView() )
1979 GetVisibleLinesRange(&from
, &to
);
1984 to
= GetItemCount() - 1;
1987 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
1988 RefreshLine(m_current
);
1990 for ( size_t line
= from
; line
<= to
; line
++ )
1992 // NB: the test works as expected even if m_current == -1
1993 if ( line
!= m_current
&& IsHighlighted(line
) )
1998 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2000 // Note: a wxPaintDC must be constructed even if no drawing is
2001 // done (a Windows requirement).
2002 wxPaintDC
dc( this );
2006 // nothing to draw or not the moment to draw it
2011 RecalculatePositions( false );
2013 GetListCtrl()->PrepareDC( dc
);
2016 GetListCtrl()->CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2018 dc
.SetFont( GetFont() );
2020 if ( InReportView() )
2022 int lineHeight
= GetLineHeight();
2024 size_t visibleFrom
, visibleTo
;
2025 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2028 int xOrig
= dc
.LogicalToDeviceX( 0 );
2029 int yOrig
= dc
.LogicalToDeviceY( 0 );
2031 // tell the caller cache to cache the data
2034 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2035 GetParent()->GetId());
2036 evCache
.SetEventObject( GetParent() );
2037 evCache
.m_oldItemIndex
= visibleFrom
;
2038 evCache
.m_item
.m_itemId
=
2039 evCache
.m_itemIndex
= visibleTo
;
2040 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2043 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2045 rectLine
= GetLineRect(line
);
2048 if ( !IsExposed(rectLine
.x
+ xOrig
, rectLine
.y
+ yOrig
,
2049 rectLine
.width
, rectLine
.height
) )
2051 // don't redraw unaffected lines to avoid flicker
2055 GetLine(line
)->DrawInReportMode( &dc
,
2057 GetLineHighlightRect(line
),
2058 IsHighlighted(line
),
2059 line
== m_current
);
2062 if ( HasFlag(wxLC_HRULES
) )
2064 wxPen
pen(GetRuleColour(), 1, wxPENSTYLE_SOLID
);
2065 wxSize clientSize
= GetClientSize();
2067 size_t i
= visibleFrom
;
2068 if (i
== 0) i
= 1; // Don't draw the first one
2069 for ( ; i
<= visibleTo
; i
++ )
2072 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2073 dc
.DrawLine(0 - dev_x
, i
* lineHeight
,
2074 clientSize
.x
- dev_x
, i
* lineHeight
);
2077 // Draw last horizontal rule
2078 if ( visibleTo
== GetItemCount() - 1 )
2081 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2082 dc
.DrawLine(0 - dev_x
, (m_lineTo
+ 1) * lineHeight
,
2083 clientSize
.x
- dev_x
, (m_lineTo
+ 1) * lineHeight
);
2087 // Draw vertical rules if required
2088 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2090 wxPen
pen(GetRuleColour(), 1, wxPENSTYLE_SOLID
);
2091 wxRect firstItemRect
, lastItemRect
;
2093 GetItemRect(visibleFrom
, firstItemRect
);
2094 GetItemRect(visibleTo
, lastItemRect
);
2095 int x
= firstItemRect
.GetX();
2097 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2099 for (int col
= 0; col
< GetColumnCount(); col
++)
2101 int colWidth
= GetColumnWidth(col
);
2103 int x_pos
= x
- dev_x
;
2104 if (col
< GetColumnCount()-1) x_pos
-= 2;
2105 dc
.DrawLine(x_pos
, firstItemRect
.GetY() - 1 - dev_y
,
2106 x_pos
, lastItemRect
.GetBottom() + 1 - dev_y
);
2112 size_t count
= GetItemCount();
2113 for ( size_t i
= 0; i
< count
; i
++ )
2115 GetLine(i
)->Draw( &dc
, i
== m_current
);
2119 // DrawFocusRect() is unusable under Mac, it draws outside of the highlight
2120 // rectangle somehow and so leaves traces when the item is not selected any
2121 // more, see #12229.
2126 if ( IsHighlighted(m_current
) )
2127 flags
|= wxCONTROL_SELECTED
;
2129 wxRendererNative::Get().
2130 DrawFocusRect(this, dc
, GetLineHighlightRect(m_current
), flags
);
2132 #endif // !__WXMAC__
2135 void wxListMainWindow::HighlightAll( bool on
)
2137 if ( IsSingleSel() )
2139 wxASSERT_MSG( !on
, wxT("can't do this in a single selection control") );
2141 // we just have one item to turn off
2142 if ( HasCurrent() && IsHighlighted(m_current
) )
2144 HighlightLine(m_current
, false);
2145 RefreshLine(m_current
);
2148 else // multi selection
2151 HighlightLines(0, GetItemCount() - 1, on
);
2155 void wxListMainWindow::OnChildFocus(wxChildFocusEvent
& WXUNUSED(event
))
2157 // Do nothing here. This prevents the default handler in wxScrolledWindow
2158 // from needlessly scrolling the window when the edit control is
2159 // dismissed. See ticket #9563.
2162 void wxListMainWindow::SendNotify( size_t line
,
2163 wxEventType command
,
2164 const wxPoint
& point
)
2166 wxListEvent
le( command
, GetParent()->GetId() );
2167 le
.SetEventObject( GetParent() );
2169 le
.m_item
.m_itemId
=
2170 le
.m_itemIndex
= line
;
2172 // set only for events which have position
2173 if ( point
!= wxDefaultPosition
)
2174 le
.m_pointDrag
= point
;
2176 // don't try to get the line info for virtual list controls: the main
2177 // program has it anyhow and if we did it would result in accessing all
2178 // the lines, even those which are not visible now and this is precisely
2179 // what we're trying to avoid
2182 if ( line
!= (size_t)-1 )
2184 GetLine(line
)->GetItem( 0, le
.m_item
);
2186 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2188 //else: there may be no more such item
2190 GetParent()->GetEventHandler()->ProcessEvent( le
);
2193 void wxListMainWindow::ChangeCurrent(size_t current
)
2195 m_current
= current
;
2197 // as the current item changed, we shouldn't start editing it when the
2198 // "slow click" timer expires as the click happened on another item
2199 if ( m_renameTimer
->IsRunning() )
2200 m_renameTimer
->Stop();
2202 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2205 wxTextCtrl
*wxListMainWindow::EditLabel(long item
, wxClassInfo
* textControlClass
)
2207 wxCHECK_MSG( (item
>= 0) && ((size_t)item
< GetItemCount()), NULL
,
2208 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2210 wxASSERT_MSG( textControlClass
->IsKindOf(wxCLASSINFO(wxTextCtrl
)),
2211 wxT("EditLabel() needs a text control") );
2213 size_t itemEdit
= (size_t)item
;
2215 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2216 le
.SetEventObject( GetParent() );
2217 le
.m_item
.m_itemId
=
2218 le
.m_itemIndex
= item
;
2219 wxListLineData
*data
= GetLine(itemEdit
);
2220 wxCHECK_MSG( data
, NULL
, wxT("invalid index in EditLabel()") );
2221 data
->GetItem( 0, le
.m_item
);
2223 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2225 // vetoed by user code
2229 // We have to call this here because the label in question might just have
2230 // been added and no screen update taken place.
2233 // TODO: use wxTheApp->SafeYieldFor(NULL, wxEVT_CATEGORY_UI) instead
2234 // so that no pending events may change the item count (see below)
2235 // IMPORTANT: needs to be tested!
2238 // Pending events dispatched by wxSafeYield might have changed the item
2240 if ( (size_t)item
>= GetItemCount() )
2244 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
2245 m_textctrlWrapper
= new wxListTextCtrlWrapper(this, text
, item
);
2246 return m_textctrlWrapper
->GetText();
2249 void wxListMainWindow::OnRenameTimer()
2251 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2253 EditLabel( m_current
);
2256 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2258 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2259 le
.SetEventObject( GetParent() );
2260 le
.m_item
.m_itemId
=
2261 le
.m_itemIndex
= itemEdit
;
2263 wxListLineData
*data
= GetLine(itemEdit
);
2265 wxCHECK_MSG( data
, false, wxT("invalid index in OnRenameAccept()") );
2267 data
->GetItem( 0, le
.m_item
);
2268 le
.m_item
.m_text
= value
;
2269 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2273 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2275 // let owner know that the edit was cancelled
2276 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2278 le
.SetEditCanceled(true);
2280 le
.SetEventObject( GetParent() );
2281 le
.m_item
.m_itemId
=
2282 le
.m_itemIndex
= itemEdit
;
2284 wxListLineData
*data
= GetLine(itemEdit
);
2285 wxCHECK_RET( data
, wxT("invalid index in OnRenameCancelled()") );
2287 data
->GetItem( 0, le
.m_item
);
2288 GetEventHandler()->ProcessEvent( le
);
2291 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2294 // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly
2295 // shutdown the edit control when the mouse is clicked elsewhere on the
2296 // listctrl because the order of events is different (or something like
2297 // that), so explicitly end the edit if it is active.
2298 if ( event
.LeftDown() && m_textctrlWrapper
)
2299 m_textctrlWrapper
->EndEdit(wxListTextCtrlWrapper::End_Accept
);
2302 if ( event
.LeftDown() )
2304 // Ensure we skip the event to let the system set focus to this window.
2308 // Pretend that the event happened in wxListCtrl itself.
2309 wxMouseEvent
me(event
);
2310 me
.SetEventObject( GetParent() );
2311 me
.SetId(GetParent()->GetId());
2312 if ( GetParent()->GetEventHandler()->ProcessEvent( me
))
2315 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
2317 // let the base class handle mouse wheel events.
2322 if ( !HasCurrent() || IsEmpty() )
2324 if (event
.RightDown())
2326 SendNotify( (size_t)-1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2328 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2329 GetParent()->GetId(),
2330 ClientToScreen(event
.GetPosition()));
2331 evtCtx
.SetEventObject(GetParent());
2332 GetParent()->GetEventHandler()->ProcessEvent(evtCtx
);
2340 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2341 event
.ButtonDClick()) )
2344 int x
= event
.GetX();
2345 int y
= event
.GetY();
2346 GetListCtrl()->CalcUnscrolledPosition( x
, y
, &x
, &y
);
2348 // where did we hit it (if we did)?
2351 size_t count
= GetItemCount(),
2354 if ( InReportView() )
2356 current
= y
/ GetLineHeight();
2357 if ( current
< count
)
2358 hitResult
= HitTestLine(current
, x
, y
);
2362 // TODO: optimize it too! this is less simple than for report view but
2363 // enumerating all items is still not a way to do it!!
2364 for ( current
= 0; current
< count
; current
++ )
2366 hitResult
= HitTestLine(current
, x
, y
);
2372 // Update drag events counter first as we must do it even if the mouse is
2373 // not on any item right now as we must keep count in case we started
2374 // dragging from the empty control area but continued to do it over a valid
2375 // item -- in this situation we must not start dragging this item.
2376 if (event
.Dragging())
2381 // The only mouse event that can be generated without any valid item is
2382 // wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK as it can be useful to have a global
2383 // popup menu for the list control itself which should be shown even when
2384 // the user clicks outside of any item.
2387 // outside of any item
2388 if (event
.RightDown())
2390 SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2392 wxContextMenuEvent
evtCtx(
2394 GetParent()->GetId(),
2395 ClientToScreen(event
.GetPosition()));
2396 evtCtx
.SetEventObject(GetParent());
2397 GetParent()->GetEventHandler()->ProcessEvent(evtCtx
);
2401 // reset the selection and bail out
2402 HighlightAll(false);
2408 if ( event
.Dragging() )
2410 if (m_dragCount
== 1)
2412 // we have to report the raw, physical coords as we want to be
2413 // able to call HitTest(event.m_pointDrag) from the user code to
2414 // get the item being dragged
2415 m_dragStart
= event
.GetPosition();
2418 if (m_dragCount
!= 3)
2421 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2422 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2424 SendNotify( m_lineLastClicked
, command
, m_dragStart
);
2429 bool forceClick
= false;
2430 if (event
.ButtonDClick())
2432 if ( m_renameTimer
->IsRunning() )
2433 m_renameTimer
->Stop();
2435 m_lastOnSame
= false;
2437 if ( current
== m_lineLastClicked
)
2439 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2445 // The first click was on another item, so don't interpret this as
2446 // a double click, but as a simple click instead
2453 if (m_lineSelectSingleOnUp
!= (size_t)-1)
2455 // select single line
2456 HighlightAll( false );
2457 ReverseHighlight(m_lineSelectSingleOnUp
);
2462 if ((current
== m_current
) &&
2463 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2464 HasFlag(wxLC_EDIT_LABELS
) )
2466 if ( !InReportView() ||
2467 GetLineLabelRect(current
).Contains(x
, y
) )
2469 int dclick
= wxSystemSettings::GetMetric(wxSYS_DCLICK_MSEC
);
2470 m_renameTimer
->Start(dclick
> 0 ? dclick
: 250, true);
2475 m_lastOnSame
= false;
2476 m_lineSelectSingleOnUp
= (size_t)-1;
2480 // This is necessary, because after a DnD operation in
2481 // from and to ourself, the up event is swallowed by the
2482 // DnD code. So on next non-up event (which means here and
2483 // now) m_lineSelectSingleOnUp should be reset.
2484 m_lineSelectSingleOnUp
= (size_t)-1;
2486 if (event
.RightDown())
2488 m_lineBeforeLastClicked
= m_lineLastClicked
;
2489 m_lineLastClicked
= current
;
2491 // If the item is already selected, do not update the selection.
2492 // Multi-selections should not be cleared if a selected item is clicked.
2493 if (!IsHighlighted(current
))
2495 HighlightAll(false);
2496 ChangeCurrent(current
);
2497 ReverseHighlight(m_current
);
2500 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2502 // Allow generation of context menu event
2505 else if (event
.MiddleDown())
2507 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
2509 else if ( event
.LeftDown() || forceClick
)
2511 m_lineBeforeLastClicked
= m_lineLastClicked
;
2512 m_lineLastClicked
= current
;
2514 size_t oldCurrent
= m_current
;
2515 bool oldWasSelected
= IsHighlighted(m_current
);
2517 bool cmdModifierDown
= event
.CmdDown();
2518 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
2520 if ( IsSingleSel() || !IsHighlighted(current
) )
2522 HighlightAll( false );
2524 ChangeCurrent(current
);
2526 ReverseHighlight(m_current
);
2528 else // multi sel & current is highlighted & no mod keys
2530 m_lineSelectSingleOnUp
= current
;
2531 ChangeCurrent(current
); // change focus
2534 else // multi sel & either ctrl or shift is down
2536 if (cmdModifierDown
)
2538 ChangeCurrent(current
);
2540 ReverseHighlight(m_current
);
2542 else if (event
.ShiftDown())
2544 ChangeCurrent(current
);
2546 size_t lineFrom
= oldCurrent
,
2549 if ( lineTo
< lineFrom
)
2552 lineFrom
= m_current
;
2555 HighlightLines(lineFrom
, lineTo
);
2557 else // !ctrl, !shift
2559 // test in the enclosing if should make it impossible
2560 wxFAIL_MSG( wxT("how did we get here?") );
2564 if (m_current
!= oldCurrent
)
2565 RefreshLine( oldCurrent
);
2567 // forceClick is only set if the previous click was on another item
2568 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
) && oldWasSelected
;
2572 void wxListMainWindow::MoveToItem(size_t item
)
2574 if ( item
== (size_t)-1 )
2577 wxRect rect
= GetLineRect(item
);
2579 int client_w
, client_h
;
2580 GetClientSize( &client_w
, &client_h
);
2582 const int hLine
= GetLineHeight();
2584 int view_x
= SCROLL_UNIT_X
* GetListCtrl()->GetScrollPos( wxHORIZONTAL
);
2585 int view_y
= hLine
* GetListCtrl()->GetScrollPos( wxVERTICAL
);
2587 if ( InReportView() )
2589 // the next we need the range of lines shown it might be different,
2590 // so recalculate it
2591 ResetVisibleLinesRange();
2593 if (rect
.y
< view_y
)
2594 GetListCtrl()->Scroll( -1, rect
.y
/ hLine
);
2595 if (rect
.y
+ rect
.height
+ 5 > view_y
+ client_h
)
2596 GetListCtrl()->Scroll( -1, (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
);
2599 // At least on Mac the visible lines value will get reset inside of
2600 // Scroll *before* it actually scrolls the window because of the
2601 // Update() that happens there, so it will still have the wrong value.
2602 // So let's reset it again and wait for it to be recalculated in the
2603 // next paint event. I would expect this problem to show up in wxGTK
2604 // too but couldn't duplicate it there. Perhaps the order of events
2605 // is different... --Robin
2606 ResetVisibleLinesRange();
2614 if (rect
.x
-view_x
< 5)
2615 sx
= (rect
.x
- 5) / SCROLL_UNIT_X
;
2616 if (rect
.x
+ rect
.width
- 5 > view_x
+ client_w
)
2617 sx
= (rect
.x
+ rect
.width
- client_w
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
;
2619 if (rect
.y
-view_y
< 5)
2620 sy
= (rect
.y
- 5) / hLine
;
2621 if (rect
.y
+ rect
.height
- 5 > view_y
+ client_h
)
2622 sy
= (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
;
2624 GetListCtrl()->Scroll(sx
, sy
);
2628 bool wxListMainWindow::ScrollList(int WXUNUSED(dx
), int dy
)
2630 if ( !InReportView() )
2632 // TODO: this should work in all views but is not implemented now
2637 GetVisibleLinesRange(&top
, &bottom
);
2639 if ( bottom
== (size_t)-1 )
2642 ResetVisibleLinesRange();
2644 int hLine
= GetLineHeight();
2646 GetListCtrl()->Scroll(-1, top
+ dy
/ hLine
);
2649 // see comment in MoveToItem() for why we do this
2650 ResetVisibleLinesRange();
2656 // ----------------------------------------------------------------------------
2657 // keyboard handling
2658 // ----------------------------------------------------------------------------
2660 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
2662 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
2663 wxT("invalid item index in OnArrowChar()") );
2665 size_t oldCurrent
= m_current
;
2667 // in single selection we just ignore Shift as we can't select several
2669 if ( event
.ShiftDown() && !IsSingleSel() )
2671 ChangeCurrent(newCurrent
);
2673 // refresh the old focus to remove it
2674 RefreshLine( oldCurrent
);
2676 // select all the items between the old and the new one
2677 if ( oldCurrent
> newCurrent
)
2679 newCurrent
= oldCurrent
;
2680 oldCurrent
= m_current
;
2683 HighlightLines(oldCurrent
, newCurrent
);
2687 // all previously selected items are unselected unless ctrl is held
2688 // in a multiselection control
2689 if ( !event
.ControlDown() || IsSingleSel() )
2690 HighlightAll(false);
2692 ChangeCurrent(newCurrent
);
2694 // refresh the old focus to remove it
2695 RefreshLine( oldCurrent
);
2697 // in single selection mode we must always have a selected item
2698 if ( !event
.ControlDown() || IsSingleSel() )
2699 HighlightLine( m_current
, true );
2702 RefreshLine( m_current
);
2707 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
2709 wxWindow
*parent
= GetParent();
2711 // propagate the key event upwards
2712 wxKeyEvent
ke(event
);
2713 ke
.SetEventObject( parent
);
2714 ke
.SetId(GetParent()->GetId());
2715 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2718 // send a list event
2719 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, parent
->GetId() );
2720 le
.m_item
.m_itemId
=
2721 le
.m_itemIndex
= m_current
;
2723 GetLine(m_current
)->GetItem( 0, le
.m_item
);
2724 le
.m_code
= event
.GetKeyCode();
2725 le
.SetEventObject( parent
);
2726 if (parent
->GetEventHandler()->ProcessEvent( le
))
2732 void wxListMainWindow::OnKeyUp( wxKeyEvent
&event
)
2734 wxWindow
*parent
= GetParent();
2736 // propagate the key event upwards
2737 wxKeyEvent
ke(event
);
2738 ke
.SetEventObject( parent
);
2739 ke
.SetId(GetParent()->GetId());
2740 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2746 void wxListMainWindow::OnCharHook( wxKeyEvent
&event
)
2748 if ( m_textctrlWrapper
)
2750 // When an in-place editor is active we should ensure that it always
2751 // gets the key events that are special to it.
2752 if ( m_textctrlWrapper
->CheckForEndEditKey(event
) )
2754 // Skip the call to wxEvent::Skip() below.
2762 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
2764 wxWindow
*parent
= GetParent();
2766 // propagate the char event upwards
2767 wxKeyEvent
ke(event
);
2768 ke
.SetEventObject( parent
);
2769 ke
.SetId(GetParent()->GetId());
2770 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2773 if ( HandleAsNavigationKey(event
) )
2776 // no item -> nothing to do
2783 // don't use m_linesPerPage directly as it might not be computed yet
2784 const int pageSize
= GetCountPerPage();
2785 wxCHECK_RET( pageSize
, wxT("should have non zero page size") );
2787 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2789 if (event
.GetKeyCode() == WXK_RIGHT
)
2790 event
.m_keyCode
= WXK_LEFT
;
2791 else if (event
.GetKeyCode() == WXK_LEFT
)
2792 event
.m_keyCode
= WXK_RIGHT
;
2795 switch ( event
.GetKeyCode() )
2798 if ( m_current
> 0 )
2799 OnArrowChar( m_current
- 1, event
);
2803 if ( m_current
< (size_t)GetItemCount() - 1 )
2804 OnArrowChar( m_current
+ 1, event
);
2809 OnArrowChar( GetItemCount() - 1, event
);
2814 OnArrowChar( 0, event
);
2819 int steps
= InReportView() ? pageSize
- 1
2820 : m_current
% pageSize
;
2822 int index
= m_current
- steps
;
2826 OnArrowChar( index
, event
);
2832 int steps
= InReportView()
2834 : pageSize
- (m_current
% pageSize
) - 1;
2836 size_t index
= m_current
+ steps
;
2837 size_t count
= GetItemCount();
2838 if ( index
>= count
)
2841 OnArrowChar( index
, event
);
2846 if ( !InReportView() )
2848 int index
= m_current
- pageSize
;
2852 OnArrowChar( index
, event
);
2857 if ( !InReportView() )
2859 size_t index
= m_current
+ pageSize
;
2861 size_t count
= GetItemCount();
2862 if ( index
>= count
)
2865 OnArrowChar( index
, event
);
2870 if ( IsSingleSel() )
2872 if ( event
.ControlDown() )
2874 ReverseHighlight(m_current
);
2876 else // normal space press
2878 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2881 else // multiple selection
2883 ReverseHighlight(m_current
);
2889 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2897 // ----------------------------------------------------------------------------
2899 // ----------------------------------------------------------------------------
2901 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
2905 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
2906 event
.SetEventObject( GetParent() );
2907 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2911 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
2912 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
2913 // which are already drawn correctly resulting in horrible flicker - avoid
2923 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
2927 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
2928 event
.SetEventObject( GetParent() );
2929 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2937 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
2939 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
2941 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2943 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
2945 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2947 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
2949 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2951 else if ( InReportView() && (m_small_image_list
))
2953 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2957 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
2959 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
2961 m_normal_image_list
->GetSize( index
, width
, height
);
2963 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
2965 m_small_image_list
->GetSize( index
, width
, height
);
2967 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
2969 m_small_image_list
->GetSize( index
, width
, height
);
2971 else if ( InReportView() && m_small_image_list
)
2973 m_small_image_list
->GetSize( index
, width
, height
);
2982 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
2986 // calc the spacing from the icon size
2987 int width
= 0, height
= 0;
2989 if ((imageList
) && (imageList
->GetImageCount()) )
2990 imageList
->GetSize(0, width
, height
);
2992 if (which
== wxIMAGE_LIST_NORMAL
)
2994 m_normal_image_list
= imageList
;
2995 m_normal_spacing
= width
+ 8;
2998 if (which
== wxIMAGE_LIST_SMALL
)
3000 m_small_image_list
= imageList
;
3001 m_small_spacing
= width
+ 14;
3002 m_lineHeight
= 0; // ensure that the line height will be recalc'd
3006 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3010 m_small_spacing
= spacing
;
3012 m_normal_spacing
= spacing
;
3015 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3017 return isSmall
? m_small_spacing
: m_normal_spacing
;
3020 // ----------------------------------------------------------------------------
3022 // ----------------------------------------------------------------------------
3025 wxListMainWindow::ComputeMinHeaderWidth(const wxListHeaderData
* column
) const
3027 wxClientDC
dc(const_cast<wxListMainWindow
*>(this));
3029 int width
= dc
.GetTextExtent(column
->GetText()).x
+ AUTOSIZE_COL_MARGIN
;
3031 width
+= 2*EXTRA_WIDTH
;
3033 // check for column header's image availability
3034 const int image
= column
->GetImage();
3037 if ( m_small_image_list
)
3040 m_small_image_list
->GetSize(image
, ix
, iy
);
3041 width
+= ix
+ HEADER_IMAGE_MARGIN_IN_REPORT_MODE
;
3048 void wxListMainWindow::SetColumn( int col
, const wxListItem
&item
)
3050 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3052 wxCHECK_RET( node
, wxT("invalid column index in SetColumn") );
3054 wxListHeaderData
*column
= node
->GetData();
3055 column
->SetItem( item
);
3057 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3058 column
->SetWidth(ComputeMinHeaderWidth(column
));
3060 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3062 headerWin
->m_dirty
= true;
3066 // invalidate it as it has to be recalculated
3070 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3072 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3073 wxT("invalid column index") );
3075 wxCHECK_RET( InReportView(),
3076 wxT("SetColumnWidth() can only be called in report mode.") );
3080 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3082 headerWin
->m_dirty
= true;
3084 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3085 wxCHECK_RET( node
, wxT("no column?") );
3087 wxListHeaderData
*column
= node
->GetData();
3089 size_t count
= GetItemCount();
3091 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3093 width
= ComputeMinHeaderWidth(column
);
3095 else if ( width
== wxLIST_AUTOSIZE
)
3097 width
= ComputeMinHeaderWidth(column
);
3101 wxClientDC
dc(this);
3102 dc
.SetFont( GetFont() );
3104 int max
= AUTOSIZE_COL_MARGIN
;
3106 // if the cached column width isn't valid then recalculate it
3107 if (m_aColWidths
.Item(col
)->bNeedsUpdate
)
3109 for (size_t i
= 0; i
< count
; i
++)
3111 wxListLineData
*line
= GetLine( i
);
3112 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3114 wxCHECK_RET( n
, wxT("no subitem?") );
3116 wxListItemData
*itemData
= n
->GetData();
3119 itemData
->GetItem(item
);
3120 int itemWidth
= GetItemWidthWithImage(&item
);
3121 if (itemWidth
> max
)
3125 m_aColWidths
.Item(col
)->bNeedsUpdate
= false;
3126 m_aColWidths
.Item(col
)->nMaxWidth
= max
;
3129 max
= m_aColWidths
.Item(col
)->nMaxWidth
+ AUTOSIZE_COL_MARGIN
;
3135 column
->SetWidth( width
);
3137 // invalidate it as it has to be recalculated
3141 int wxListMainWindow::GetHeaderWidth() const
3143 if ( !m_headerWidth
)
3145 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3147 size_t count
= GetColumnCount();
3148 for ( size_t col
= 0; col
< count
; col
++ )
3150 self
->m_headerWidth
+= GetColumnWidth(col
);
3154 return m_headerWidth
;
3157 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3159 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3160 wxCHECK_RET( node
, wxT("invalid column index in GetColumn") );
3162 wxListHeaderData
*column
= node
->GetData();
3163 column
->GetItem( item
);
3166 int wxListMainWindow::GetColumnWidth( int col
) const
3168 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3169 wxCHECK_MSG( node
, 0, wxT("invalid column index") );
3171 wxListHeaderData
*column
= node
->GetData();
3172 return column
->GetWidth();
3175 // ----------------------------------------------------------------------------
3177 // ----------------------------------------------------------------------------
3179 void wxListMainWindow::SetItem( wxListItem
&item
)
3181 long id
= item
.m_itemId
;
3182 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3183 wxT("invalid item index in SetItem") );
3187 wxListLineData
*line
= GetLine((size_t)id
);
3188 line
->SetItem( item
.m_col
, item
);
3190 // Set item state if user wants
3191 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3192 SetItemState( item
.m_itemId
, item
.m_state
, item
.m_state
);
3196 // update the Max Width Cache if needed
3197 int width
= GetItemWidthWithImage(&item
);
3199 if (width
> m_aColWidths
.Item(item
.m_col
)->nMaxWidth
)
3200 m_aColWidths
.Item(item
.m_col
)->nMaxWidth
= width
;
3204 // update the item on screen unless we're going to update everything soon
3209 GetItemRect(id
, rectItem
);
3210 RefreshRect(rectItem
);
3214 void wxListMainWindow::SetItemStateAll(long state
, long stateMask
)
3219 // first deal with selection
3220 if ( stateMask
& wxLIST_STATE_SELECTED
)
3222 // set/clear select state
3225 // optimized version for virtual listctrl.
3226 m_selStore
.SelectRange(0, GetItemCount() - 1, state
== wxLIST_STATE_SELECTED
);
3229 else if ( state
& wxLIST_STATE_SELECTED
)
3231 const long count
= GetItemCount();
3232 for( long i
= 0; i
< count
; i
++ )
3234 SetItemState( i
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
3240 // clear for non virtual (somewhat optimized by using GetNextItem())
3242 while ( (i
= GetNextItem(i
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
)) != -1 )
3244 SetItemState( i
, 0, wxLIST_STATE_SELECTED
);
3249 if ( HasCurrent() && (state
== 0) && (stateMask
& wxLIST_STATE_FOCUSED
) )
3251 // unfocus all: only one item can be focussed, so clearing focus for
3252 // all items is simply clearing focus of the focussed item.
3253 SetItemState(m_current
, state
, stateMask
);
3255 //(setting focus to all items makes no sense, so it is not handled here.)
3258 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3262 SetItemStateAll(state
, stateMask
);
3266 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3267 wxT("invalid list ctrl item index in SetItem") );
3269 size_t oldCurrent
= m_current
;
3270 size_t item
= (size_t)litem
; // safe because of the check above
3272 // do we need to change the focus?
3273 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3275 if ( state
& wxLIST_STATE_FOCUSED
)
3277 // don't do anything if this item is already focused
3278 if ( item
!= m_current
)
3280 ChangeCurrent(item
);
3282 if ( oldCurrent
!= (size_t)-1 )
3284 if ( IsSingleSel() )
3286 HighlightLine(oldCurrent
, false);
3289 RefreshLine(oldCurrent
);
3292 RefreshLine( m_current
);
3297 // don't do anything if this item is not focused
3298 if ( item
== m_current
)
3302 if ( IsSingleSel() )
3304 // we must unselect the old current item as well or we
3305 // might end up with more than one selected item in a
3306 // single selection control
3307 HighlightLine(oldCurrent
, false);
3310 RefreshLine( oldCurrent
);
3315 // do we need to change the selection state?
3316 if ( stateMask
& wxLIST_STATE_SELECTED
)
3318 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3320 if ( IsSingleSel() )
3324 // selecting the item also makes it the focused one in the
3326 if ( m_current
!= item
)
3328 ChangeCurrent(item
);
3330 if ( oldCurrent
!= (size_t)-1 )
3332 HighlightLine( oldCurrent
, false );
3333 RefreshLine( oldCurrent
);
3339 // only the current item may be selected anyhow
3340 if ( item
!= m_current
)
3345 if ( HighlightLine(item
, on
) )
3352 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3354 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3355 wxT("invalid list ctrl item index in GetItemState()") );
3357 int ret
= wxLIST_STATE_DONTCARE
;
3359 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3361 if ( (size_t)item
== m_current
)
3362 ret
|= wxLIST_STATE_FOCUSED
;
3365 if ( stateMask
& wxLIST_STATE_SELECTED
)
3367 if ( IsHighlighted(item
) )
3368 ret
|= wxLIST_STATE_SELECTED
;
3374 void wxListMainWindow::GetItem( wxListItem
&item
) const
3376 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3377 wxT("invalid item index in GetItem") );
3379 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3380 line
->GetItem( item
.m_col
, item
);
3382 // Get item state if user wants it
3383 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3384 item
.m_state
= GetItemState( item
.m_itemId
, wxLIST_STATE_SELECTED
|
3385 wxLIST_STATE_FOCUSED
);
3388 // ----------------------------------------------------------------------------
3390 // ----------------------------------------------------------------------------
3392 size_t wxListMainWindow::GetItemCount() const
3394 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3397 void wxListMainWindow::SetItemCount(long count
)
3399 m_selStore
.SetItemCount(count
);
3400 m_countVirt
= count
;
3402 ResetVisibleLinesRange();
3404 // scrollbars must be reset
3408 int wxListMainWindow::GetSelectedItemCount() const
3410 // deal with the quick case first
3411 if ( IsSingleSel() )
3412 return HasCurrent() ? IsHighlighted(m_current
) : false;
3414 // virtual controls remmebers all its selections itself
3416 return m_selStore
.GetSelectedCount();
3418 // TODO: we probably should maintain the number of items selected even for
3419 // non virtual controls as enumerating all lines is really slow...
3420 size_t countSel
= 0;
3421 size_t count
= GetItemCount();
3422 for ( size_t line
= 0; line
< count
; line
++ )
3424 if ( GetLine(line
)->IsHighlighted() )
3431 // ----------------------------------------------------------------------------
3432 // item position/size
3433 // ----------------------------------------------------------------------------
3435 wxRect
wxListMainWindow::GetViewRect() const
3437 wxASSERT_MSG( !HasFlag(wxLC_LIST
), "not implemented for list view" );
3439 // we need to find the longest/tallest label
3440 wxCoord xMax
= 0, yMax
= 0;
3441 const int count
= GetItemCount();
3444 for ( int i
= 0; i
< count
; i
++ )
3446 // we need logical, not physical, coordinates here, so use
3447 // GetLineRect() instead of GetItemRect()
3448 wxRect r
= GetLineRect(i
);
3450 wxCoord x
= r
.GetRight(),
3460 // some fudge needed to make it look prettier
3461 xMax
+= 2 * EXTRA_BORDER_X
;
3462 yMax
+= 2 * EXTRA_BORDER_Y
;
3464 // account for the scrollbars if necessary
3465 const wxSize sizeAll
= GetClientSize();
3466 if ( xMax
> sizeAll
.x
)
3467 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3468 if ( yMax
> sizeAll
.y
)
3469 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3471 return wxRect(0, 0, xMax
, yMax
);
3475 wxListMainWindow::GetSubItemRect(long item
, long subItem
, wxRect
& rect
) const
3477 wxCHECK_MSG( subItem
== wxLIST_GETSUBITEMRECT_WHOLEITEM
|| InReportView(),
3479 wxT("GetSubItemRect only meaningful in report view") );
3480 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), false,
3481 wxT("invalid item in GetSubItemRect") );
3483 // ensure that we're laid out, otherwise we could return nonsense
3486 wxConstCast(this, wxListMainWindow
)->
3487 RecalculatePositions(true /* no refresh */);
3490 rect
= GetLineRect((size_t)item
);
3492 // Adjust rect to specified column
3493 if ( subItem
!= wxLIST_GETSUBITEMRECT_WHOLEITEM
)
3495 wxCHECK_MSG( subItem
>= 0 && subItem
< GetColumnCount(), false,
3496 wxT("invalid subItem in GetSubItemRect") );
3498 for (int i
= 0; i
< subItem
; i
++)
3500 rect
.x
+= GetColumnWidth(i
);
3502 rect
.width
= GetColumnWidth(subItem
);
3505 GetListCtrl()->CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3510 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3513 GetItemRect(item
, rect
);
3521 // ----------------------------------------------------------------------------
3522 // geometry calculation
3523 // ----------------------------------------------------------------------------
3525 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3527 const int lineHeight
= GetLineHeight();
3529 wxClientDC
dc( this );
3530 dc
.SetFont( GetFont() );
3532 const size_t count
= GetItemCount();
3535 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3536 iconSpacing
= m_normal_spacing
;
3537 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3538 iconSpacing
= m_small_spacing
;
3542 // Note that we do not call GetClientSize() here but
3543 // GetSize() and subtract the border size for sunken
3544 // borders manually. This is technically incorrect,
3545 // but we need to know the client area's size WITHOUT
3546 // scrollbars here. Since we don't know if there are
3547 // any scrollbars, we use GetSize() instead. Another
3548 // solution would be to call SetScrollbars() here to
3549 // remove the scrollbars and call GetClientSize() then,
3550 // but this might result in flicker and - worse - will
3551 // reset the scrollbars to 0 which is not good at all
3552 // if you resize a dialog/window, but don't want to
3553 // reset the window scrolling. RR.
3554 // Furthermore, we actually do NOT subtract the border
3555 // width as 2 pixels is just the extra space which we
3556 // need around the actual content in the window. Other-
3557 // wise the text would e.g. touch the upper border. RR.
3560 GetSize( &clientWidth
, &clientHeight
);
3562 if ( InReportView() )
3564 // all lines have the same height and we scroll one line per step
3565 int entireHeight
= count
* lineHeight
+ LINE_SPACING
;
3567 m_linesPerPage
= clientHeight
/ lineHeight
;
3569 ResetVisibleLinesRange();
3571 GetListCtrl()->SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
3572 GetHeaderWidth() / SCROLL_UNIT_X
,
3573 (entireHeight
+ lineHeight
- 1) / lineHeight
,
3574 GetListCtrl()->GetScrollPos(wxHORIZONTAL
),
3575 GetListCtrl()->GetScrollPos(wxVERTICAL
),
3580 // we have 3 different layout strategies: either layout all items
3581 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
3582 // to arrange them in top to bottom, left to right (don't ask me why
3583 // not the other way round...) order
3584 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
3586 int x
= EXTRA_BORDER_X
;
3587 int y
= EXTRA_BORDER_Y
;
3589 wxCoord widthMax
= 0;
3592 for ( i
= 0; i
< count
; i
++ )
3594 wxListLineData
*line
= GetLine(i
);
3595 line
->CalculateSize( &dc
, iconSpacing
);
3596 line
->SetPosition( x
, y
, iconSpacing
);
3598 wxSize sizeLine
= GetLineSize(i
);
3600 if ( HasFlag(wxLC_ALIGN_TOP
) )
3602 if ( sizeLine
.x
> widthMax
)
3603 widthMax
= sizeLine
.x
;
3607 else // wxLC_ALIGN_LEFT
3609 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
3613 if ( HasFlag(wxLC_ALIGN_TOP
) )
3615 // traverse the items again and tweak their sizes so that they are
3616 // all the same in a row
3617 for ( i
= 0; i
< count
; i
++ )
3619 wxListLineData
*line
= GetLine(i
);
3620 line
->m_gi
->ExtendWidth(widthMax
);
3624 GetListCtrl()->SetScrollbars
3628 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3629 (y
+ lineHeight
) / lineHeight
,
3630 GetListCtrl()->GetScrollPos( wxHORIZONTAL
),
3631 GetListCtrl()->GetScrollPos( wxVERTICAL
),
3635 else // "flowed" arrangement, the most complicated case
3637 // at first we try without any scrollbars, if the items don't fit into
3638 // the window, we recalculate after subtracting the space taken by the
3641 int entireWidth
= 0;
3643 for (int tries
= 0; tries
< 2; tries
++)
3645 entireWidth
= 2 * EXTRA_BORDER_X
;
3649 // Now we have decided that the items do not fit into the
3650 // client area, so we need a scrollbar
3651 entireWidth
+= SCROLL_UNIT_X
;
3654 int x
= EXTRA_BORDER_X
;
3655 int y
= EXTRA_BORDER_Y
;
3657 // Note that "row" here is vertical, i.e. what is called
3658 // "column" in many other places in wxWidgets.
3659 int maxWidthInThisRow
= 0;
3662 int currentlyVisibleLines
= 0;
3664 for (size_t i
= 0; i
< count
; i
++)
3666 currentlyVisibleLines
++;
3667 wxListLineData
*line
= GetLine( i
);
3668 line
->CalculateSize( &dc
, iconSpacing
);
3669 line
->SetPosition( x
, y
, iconSpacing
);
3671 wxSize sizeLine
= GetLineSize( i
);
3673 if ( maxWidthInThisRow
< sizeLine
.x
)
3674 maxWidthInThisRow
= sizeLine
.x
;
3677 if (currentlyVisibleLines
> m_linesPerPage
)
3678 m_linesPerPage
= currentlyVisibleLines
;
3680 // Have we reached the end of the row either because no
3681 // more items would fit or because there are simply no more
3683 if ( y
+ sizeLine
.y
>= clientHeight
3686 // Adjust all items in this row to have the same
3687 // width to ensure that they all align horizontally in
3689 if ( HasFlag(wxLC_ICON
) || HasFlag(wxLC_SMALL_ICON
) )
3691 size_t firstRowLine
= i
- currentlyVisibleLines
+ 1;
3692 for (size_t j
= firstRowLine
; j
<= i
; j
++)
3694 GetLine(j
)->m_gi
->ExtendWidth(maxWidthInThisRow
);
3698 currentlyVisibleLines
= 0;
3700 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
3701 x
+= maxWidthInThisRow
;
3702 entireWidth
+= maxWidthInThisRow
;
3703 maxWidthInThisRow
= 0;
3706 if ( (tries
== 0) &&
3707 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
3709 clientHeight
-= wxSystemSettings::
3710 GetMetric(wxSYS_HSCROLL_Y
);
3715 if ( i
== count
- 1 )
3716 tries
= 1; // Everything fits, no second try required.
3720 GetListCtrl()->SetScrollbars
3724 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3726 GetListCtrl()->GetScrollPos( wxHORIZONTAL
),
3735 // FIXME: why should we call it from here?
3742 void wxListMainWindow::RefreshAll()
3747 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3748 if ( headerWin
&& headerWin
->m_dirty
)
3750 headerWin
->m_dirty
= false;
3751 headerWin
->Refresh();
3755 void wxListMainWindow::UpdateCurrent()
3757 if ( !HasCurrent() && !IsEmpty() )
3761 long wxListMainWindow::GetNextItem( long item
,
3762 int WXUNUSED(geometry
),
3766 max
= GetItemCount();
3767 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
3768 wxT("invalid listctrl index in GetNextItem()") );
3770 // notice that we start with the next item (or the first one if item == -1)
3771 // and this is intentional to allow writing a simple loop to iterate over
3772 // all selected items
3775 // this is not an error because the index was OK initially,
3776 // just no such item
3783 size_t count
= GetItemCount();
3784 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
3786 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
3789 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
3796 // ----------------------------------------------------------------------------
3798 // ----------------------------------------------------------------------------
3800 void wxListMainWindow::DeleteItem( long lindex
)
3802 size_t count
= GetItemCount();
3804 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
3805 wxT("invalid item index in DeleteItem") );
3807 size_t index
= (size_t)lindex
;
3809 // we don't need to adjust the index for the previous items
3810 if ( HasCurrent() && m_current
>= index
)
3812 // if the current item is being deleted, we want the next one to
3813 // become selected - unless there is no next one - so don't adjust
3814 // m_current in this case
3815 if ( m_current
!= index
|| m_current
== count
- 1 )
3819 if ( InReportView() )
3821 // mark the Column Max Width cache as dirty if the items in the line
3822 // we're deleting contain the Max Column Width
3823 wxListLineData
* const line
= GetLine(index
);
3824 wxListItemDataList::compatibility_iterator n
;
3825 wxListItemData
*itemData
;
3829 for (size_t i
= 0; i
< m_columns
.GetCount(); i
++)
3831 n
= line
->m_items
.Item( i
);
3832 itemData
= n
->GetData();
3833 itemData
->GetItem(item
);
3835 itemWidth
= GetItemWidthWithImage(&item
);
3837 if (itemWidth
>= m_aColWidths
.Item(i
)->nMaxWidth
)
3838 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
3841 ResetVisibleLinesRange();
3844 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
, wxDefaultPosition
);
3849 m_selStore
.OnItemDelete(index
);
3853 m_lines
.RemoveAt( index
);
3856 // we need to refresh the (vert) scrollbar as the number of items changed
3859 RefreshAfter(index
);
3862 void wxListMainWindow::DeleteColumn( int col
)
3864 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3866 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
3869 delete node
->GetData();
3870 m_columns
.Erase( node
);
3874 // update all the items
3875 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
3877 wxListLineData
* const line
= GetLine(i
);
3879 // In the following atypical but possible scenario it can be
3880 // legal to call DeleteColumn() but the items may not have any
3882 // 1. In report view, insert a second column.
3883 // 2. Still in report view, add an item with 2 values.
3884 // 3. Switch to an icon (or list) view.
3885 // 4. Add an item -- necessarily with 1 value only.
3886 // 5. Switch back to report view.
3887 // 6. Call DeleteColumn().
3888 // So we need to check for this as otherwise we would simply crash
3890 if ( line
->m_items
.GetCount() <= static_cast<unsigned>(col
) )
3893 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3894 delete n
->GetData();
3895 line
->m_items
.Erase(n
);
3899 if ( InReportView() ) // we only cache max widths when in Report View
3901 delete m_aColWidths
.Item(col
);
3902 m_aColWidths
.RemoveAt(col
);
3905 // invalidate it as it has to be recalculated
3909 void wxListMainWindow::DoDeleteAllItems()
3912 // nothing to do - in particular, don't send the event
3917 // to make the deletion of all items faster, we don't send the
3918 // notifications for each item deletion in this case but only one event
3919 // for all of them: this is compatible with wxMSW and documented in
3920 // DeleteAllItems() description
3922 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
3923 event
.SetEventObject( GetParent() );
3924 GetParent()->GetEventHandler()->ProcessEvent( event
);
3932 if ( InReportView() )
3934 ResetVisibleLinesRange();
3935 for (size_t i
= 0; i
< m_aColWidths
.GetCount(); i
++)
3937 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
3944 void wxListMainWindow::DeleteAllItems()
3948 RecalculatePositions();
3951 void wxListMainWindow::DeleteEverything()
3953 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
3954 WX_CLEAR_ARRAY(m_aColWidths
);
3959 // ----------------------------------------------------------------------------
3960 // scanning for an item
3961 // ----------------------------------------------------------------------------
3963 void wxListMainWindow::EnsureVisible( long index
)
3965 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3966 wxT("invalid index in EnsureVisible") );
3968 // We have to call this here because the label in question might just have
3969 // been added and its position is not known yet
3971 RecalculatePositions(true /* no refresh */);
3973 MoveToItem((size_t)index
);
3976 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool partial
)
3982 wxString str_upper
= str
.Upper();
3986 size_t count
= GetItemCount();
3987 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
3989 wxListLineData
*line
= GetLine(i
);
3990 wxString line_upper
= line
->GetText(0).Upper();
3993 if (line_upper
== str_upper
)
3998 if (line_upper
.find(str_upper
) == 0)
4006 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4012 size_t count
= GetItemCount();
4013 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4015 wxListLineData
*line
= GetLine(i
);
4017 line
->GetItem( 0, item
);
4018 if (item
.m_data
== data
)
4025 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4028 GetVisibleLinesRange( &topItem
, NULL
);
4031 GetItemPosition( GetItemCount() - 1, p
);
4035 long id
= (long)floor( pt
.y
* double(GetItemCount() - topItem
- 1) / p
.y
+ topItem
);
4036 if ( id
>= 0 && id
< (long)GetItemCount() )
4042 long wxListMainWindow::HitTest( int x
, int y
, int &flags
) const
4044 GetListCtrl()->CalcUnscrolledPosition( x
, y
, &x
, &y
);
4046 size_t count
= GetItemCount();
4048 if ( InReportView() )
4050 size_t current
= y
/ GetLineHeight();
4051 if ( current
< count
)
4053 flags
= HitTestLine(current
, x
, y
);
4060 // TODO: optimize it too! this is less simple than for report view but
4061 // enumerating all items is still not a way to do it!!
4062 for ( size_t current
= 0; current
< count
; current
++ )
4064 flags
= HitTestLine(current
, x
, y
);
4073 // ----------------------------------------------------------------------------
4075 // ----------------------------------------------------------------------------
4077 void wxListMainWindow::InsertItem( wxListItem
&item
)
4079 wxASSERT_MSG( !IsVirtual(), wxT("can't be used with virtual control") );
4081 int count
= GetItemCount();
4082 wxCHECK_RET( item
.m_itemId
>= 0, wxT("invalid item index") );
4084 if (item
.m_itemId
> count
)
4085 item
.m_itemId
= count
;
4087 size_t id
= item
.m_itemId
;
4091 if ( InReportView() )
4093 ResetVisibleLinesRange();
4095 const unsigned col
= item
.GetColumn();
4096 wxCHECK_RET( col
< m_aColWidths
.size(), "invalid item column" );
4098 // calculate the width of the item and adjust the max column width
4099 wxColWidthInfo
*pWidthInfo
= m_aColWidths
.Item(col
);
4100 int width
= GetItemWidthWithImage(&item
);
4101 item
.SetWidth(width
);
4102 if (width
> pWidthInfo
->nMaxWidth
)
4103 pWidthInfo
->nMaxWidth
= width
;
4106 wxListLineData
*line
= new wxListLineData(this);
4108 line
->SetItem( item
.m_col
, item
);
4109 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
4111 // Reset the buffered height if it's not big enough for the new image.
4112 int image
= item
.GetImage();
4113 if ( m_small_image_list
&& image
!= -1 && InReportView() )
4115 int imageWidth
, imageHeight
;
4116 m_small_image_list
->GetSize(image
, imageWidth
, imageHeight
);
4118 if ( imageHeight
> m_lineHeight
)
4123 m_lines
.Insert( line
, id
);
4127 // If an item is selected at or below the point of insertion, we need to
4128 // increment the member variables because the current row's index has gone
4130 if ( HasCurrent() && m_current
>= id
)
4133 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4135 RefreshLines(id
, GetItemCount() - 1);
4138 long wxListMainWindow::InsertColumn( long col
, const wxListItem
&item
)
4143 if ( InReportView() )
4145 wxListHeaderData
*column
= new wxListHeaderData( item
);
4146 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4147 column
->SetWidth(ComputeMinHeaderWidth(column
));
4149 wxColWidthInfo
*colWidthInfo
= new wxColWidthInfo();
4151 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4154 wxListHeaderDataList::compatibility_iterator
4155 node
= m_columns
.Item( col
);
4156 m_columns
.Insert( node
, column
);
4157 m_aColWidths
.Insert( colWidthInfo
, col
);
4162 idx
= m_aColWidths
.GetCount();
4163 m_columns
.Append( column
);
4164 m_aColWidths
.Add( colWidthInfo
);
4169 // update all the items
4170 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4172 wxListLineData
* const line
= GetLine(i
);
4173 wxListItemData
* const data
= new wxListItemData(this);
4175 line
->m_items
.Insert(col
, data
);
4177 line
->m_items
.Append(data
);
4181 // invalidate it as it has to be recalculated
4187 int wxListMainWindow::GetItemWidthWithImage(wxListItem
* item
)
4190 wxClientDC
dc(this);
4192 dc
.SetFont( GetFont() );
4194 if (item
->GetImage() != -1)
4197 GetImageSize( item
->GetImage(), ix
, iy
);
4201 if (!item
->GetText().empty())
4204 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
4211 // ----------------------------------------------------------------------------
4213 // ----------------------------------------------------------------------------
4215 static wxListCtrlCompare list_ctrl_compare_func_2
;
4216 static wxIntPtr list_ctrl_compare_data
;
4218 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4220 wxListLineData
*line1
= *arg1
;
4221 wxListLineData
*line2
= *arg2
;
4223 line1
->GetItem( 0, item
);
4224 wxUIntPtr data1
= item
.m_data
;
4225 line2
->GetItem( 0, item
);
4226 wxUIntPtr data2
= item
.m_data
;
4227 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4230 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, wxIntPtr data
)
4232 // selections won't make sense any more after sorting the items so reset
4234 HighlightAll(false);
4237 list_ctrl_compare_func_2
= fn
;
4238 list_ctrl_compare_data
= data
;
4239 m_lines
.Sort( list_ctrl_compare_func_1
);
4243 // ----------------------------------------------------------------------------
4245 // ----------------------------------------------------------------------------
4247 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4249 // update our idea of which lines are shown when we redraw the window the
4251 ResetVisibleLinesRange();
4253 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4255 wxGenericListCtrl
* lc
= GetListCtrl();
4256 wxCHECK_RET( lc
, wxT("no listctrl window?") );
4258 if (lc
->m_headerWin
) // when we use wxLC_NO_HEADER, m_headerWin==NULL
4260 lc
->m_headerWin
->Refresh();
4261 lc
->m_headerWin
->Update();
4266 int wxListMainWindow::GetCountPerPage() const
4268 if ( !m_linesPerPage
)
4270 wxConstCast(this, wxListMainWindow
)->
4271 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4274 return m_linesPerPage
;
4277 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4279 wxASSERT_MSG( InReportView(), wxT("this is for report mode only") );
4281 if ( m_lineFrom
== (size_t)-1 )
4283 size_t count
= GetItemCount();
4286 m_lineFrom
= GetListCtrl()->GetScrollPos(wxVERTICAL
);
4288 // this may happen if SetScrollbars() hadn't been called yet
4289 if ( m_lineFrom
>= count
)
4290 m_lineFrom
= count
- 1;
4292 // we redraw one extra line but this is needed to make the redrawing
4293 // logic work when there is a fractional number of lines on screen
4294 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4295 if ( m_lineTo
>= count
)
4296 m_lineTo
= count
- 1;
4298 else // empty control
4301 m_lineTo
= (size_t)-1;
4305 wxASSERT_MSG( IsEmpty() ||
4306 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4307 wxT("GetVisibleLinesRange() returns incorrect result") );
4315 // -------------------------------------------------------------------------------------
4316 // wxGenericListCtrl
4317 // -------------------------------------------------------------------------------------
4319 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4321 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxListCtrlBase
)
4322 EVT_SIZE(wxGenericListCtrl::OnSize
)
4323 EVT_SCROLLWIN(wxGenericListCtrl::OnScroll
)
4326 void wxGenericListCtrl::Init()
4328 m_imageListNormal
= NULL
;
4329 m_imageListSmall
= NULL
;
4330 m_imageListState
= NULL
;
4332 m_ownsImageListNormal
=
4333 m_ownsImageListSmall
=
4334 m_ownsImageListState
= false;
4340 wxGenericListCtrl::~wxGenericListCtrl()
4342 if (m_ownsImageListNormal
)
4343 delete m_imageListNormal
;
4344 if (m_ownsImageListSmall
)
4345 delete m_imageListSmall
;
4346 if (m_ownsImageListState
)
4347 delete m_imageListState
;
4350 void wxGenericListCtrl::CreateOrDestroyHeaderWindowAsNeeded()
4352 bool needs_header
= HasHeader();
4353 bool has_header
= (m_headerWin
!= NULL
);
4355 if (needs_header
== has_header
)
4360 m_headerWin
= new wxListHeaderWindow
4362 this, wxID_ANY
, m_mainWin
,
4367 wxRendererNative::Get().GetHeaderButtonHeight(this)
4372 #if defined( __WXMAC__ )
4373 static wxFont
font( wxOSX_SYSTEM_FONT_SMALL
);
4374 m_headerWin
->SetFont( font
);
4377 GetSizer()->Prepend( m_headerWin
, 0, wxGROW
);
4381 GetSizer()->Detach( m_headerWin
);
4383 wxDELETE(m_headerWin
);
4387 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4392 const wxValidator
&validator
,
4393 const wxString
&name
)
4397 // just like in other ports, an assert will fail if the user doesn't give any type style:
4398 wxASSERT_MSG( (style
& wxLC_MASK_TYPE
),
4399 wxT("wxListCtrl style should have exactly one mode bit set") );
4401 if ( !wxListCtrlBase::Create( parent
, id
, pos
, size
,
4402 style
| wxVSCROLL
| wxHSCROLL
,
4406 m_mainWin
= new wxListMainWindow(this, wxID_ANY
, wxPoint(0, 0), size
);
4408 SetTargetWindow( m_mainWin
);
4410 // We use the cursor keys for moving the selection, not scrolling, so call
4411 // this method to ensure wxScrollHelperEvtHandler doesn't catch all
4412 // keyboard events forwarded to us from wxListMainWindow.
4413 DisableKeyboardScrolling();
4415 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
4416 sizer
->Add( m_mainWin
, 1, wxGROW
);
4419 CreateOrDestroyHeaderWindowAsNeeded();
4421 SetInitialSize(size
);
4426 wxBorder
wxGenericListCtrl::GetDefaultBorder() const
4428 return wxBORDER_THEME
;
4431 #if defined(__WXMSW__) && !defined(__WXWINCE__) && !defined(__WXUNIVERSAL__)
4432 WXLRESULT
wxGenericListCtrl::MSWWindowProc(WXUINT nMsg
,
4436 WXLRESULT rc
= wxListCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
4438 // we need to process arrows ourselves for scrolling
4439 if ( nMsg
== WM_GETDLGCODE
)
4441 rc
|= DLGC_WANTARROWS
;
4448 wxSize
wxGenericListCtrl::GetSizeAvailableForScrollTarget(const wxSize
& size
)
4450 wxSize newsize
= size
;
4452 newsize
.y
-= m_headerWin
->GetSize().y
;
4457 void wxGenericListCtrl::OnScroll(wxScrollWinEvent
& event
)
4459 // update our idea of which lines are shown when we redraw
4460 // the window the next time
4461 m_mainWin
->ResetVisibleLinesRange();
4463 HandleOnScroll( event
);
4465 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4467 m_headerWin
->Refresh();
4468 m_headerWin
->Update();
4472 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4474 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4475 wxT("wxLC_VIRTUAL can't be [un]set") );
4477 long flag
= GetWindowStyle();
4481 if (style
& wxLC_MASK_TYPE
)
4482 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4483 if (style
& wxLC_MASK_ALIGN
)
4484 flag
&= ~wxLC_MASK_ALIGN
;
4485 if (style
& wxLC_MASK_SORT
)
4486 flag
&= ~wxLC_MASK_SORT
;
4494 // some styles can be set without recreating everything (as happens in
4495 // SetWindowStyleFlag() which calls wxListMainWindow::DeleteEverything())
4496 if ( !(style
& ~(wxLC_HRULES
| wxLC_VRULES
)) )
4499 wxWindow::SetWindowStyleFlag(flag
);
4503 SetWindowStyleFlag( flag
);
4507 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4509 // we add wxHSCROLL and wxVSCROLL in ctor unconditionally and it never
4510 // makes sense to remove them as we'll always add scrollbars anyhow when
4512 flag
|= wxHSCROLL
| wxVSCROLL
;
4514 const bool wasInReportView
= HasFlag(wxLC_REPORT
);
4516 // update the window style first so that the header is created or destroyed
4517 // corresponding to the new style
4518 wxWindow::SetWindowStyleFlag( flag
);
4522 const bool inReportView
= (flag
& wxLC_REPORT
) != 0;
4523 if ( inReportView
!= wasInReportView
)
4525 // we need to notify the main window about this change as it must
4526 // update its data structures
4527 m_mainWin
->SetReportView(inReportView
);
4530 // m_mainWin->DeleteEverything(); wxMSW doesn't do that
4532 CreateOrDestroyHeaderWindowAsNeeded();
4534 GetSizer()->Layout();
4538 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4540 m_mainWin
->GetColumn( col
, item
);
4544 bool wxGenericListCtrl::SetColumn( int col
, const wxListItem
& item
)
4546 m_mainWin
->SetColumn( col
, item
);
4550 int wxGenericListCtrl::GetColumnWidth( int col
) const
4552 return m_mainWin
->GetColumnWidth( col
);
4555 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4557 m_mainWin
->SetColumnWidth( col
, width
);
4561 int wxGenericListCtrl::GetCountPerPage() const
4563 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4566 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4568 m_mainWin
->GetItem( info
);
4572 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4574 m_mainWin
->SetItem( info
);
4578 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4581 info
.m_text
= label
;
4582 info
.m_mask
= wxLIST_MASK_TEXT
;
4583 info
.m_itemId
= index
;
4587 info
.m_image
= imageId
;
4588 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4591 m_mainWin
->SetItem(info
);
4595 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4597 return m_mainWin
->GetItemState( item
, stateMask
);
4600 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4602 m_mainWin
->SetItemState( item
, state
, stateMask
);
4607 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4609 return SetItemColumnImage(item
, 0, image
);
4613 wxGenericListCtrl::SetItemColumnImage( long item
, long column
, int image
)
4616 info
.m_image
= image
;
4617 info
.m_mask
= wxLIST_MASK_IMAGE
;
4618 info
.m_itemId
= item
;
4619 info
.m_col
= column
;
4620 m_mainWin
->SetItem( info
);
4624 wxString
wxGenericListCtrl::GetItemText( long item
, int col
) const
4626 return m_mainWin
->GetItemText(item
, col
);
4629 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4631 m_mainWin
->SetItemText(item
, str
);
4634 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
4637 info
.m_mask
= wxLIST_MASK_DATA
;
4638 info
.m_itemId
= item
;
4639 m_mainWin
->GetItem( info
);
4643 bool wxGenericListCtrl::SetItemPtrData( long item
, wxUIntPtr data
)
4646 info
.m_mask
= wxLIST_MASK_DATA
;
4647 info
.m_itemId
= item
;
4649 m_mainWin
->SetItem( info
);
4653 wxRect
wxGenericListCtrl::GetViewRect() const
4655 return m_mainWin
->GetViewRect();
4658 bool wxGenericListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
4660 return GetSubItemRect(item
, wxLIST_GETSUBITEMRECT_WHOLEITEM
, rect
, code
);
4663 bool wxGenericListCtrl::GetSubItemRect(long item
,
4666 int WXUNUSED(code
)) const
4668 if ( !m_mainWin
->GetSubItemRect( item
, subItem
, rect
) )
4671 if ( m_mainWin
->HasHeader() )
4672 rect
.y
+= m_headerWin
->GetSize().y
+ 1;
4677 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4679 m_mainWin
->GetItemPosition( item
, pos
);
4683 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4688 int wxGenericListCtrl::GetItemCount() const
4690 return m_mainWin
->GetItemCount();
4693 int wxGenericListCtrl::GetColumnCount() const
4695 return m_mainWin
->GetColumnCount();
4698 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4700 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4703 wxSize
wxGenericListCtrl::GetItemSpacing() const
4705 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
4707 return wxSize(spacing
, spacing
);
4710 #if WXWIN_COMPATIBILITY_2_6
4711 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
4713 return m_mainWin
->GetItemSpacing( isSmall
);
4715 #endif // WXWIN_COMPATIBILITY_2_6
4717 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
4720 info
.m_itemId
= item
;
4721 info
.SetTextColour( col
);
4722 m_mainWin
->SetItem( info
);
4725 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
4728 info
.m_itemId
= item
;
4729 m_mainWin
->GetItem( info
);
4730 return info
.GetTextColour();
4733 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
4736 info
.m_itemId
= item
;
4737 info
.SetBackgroundColour( col
);
4738 m_mainWin
->SetItem( info
);
4741 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
4744 info
.m_itemId
= item
;
4745 m_mainWin
->GetItem( info
);
4746 return info
.GetBackgroundColour();
4749 void wxGenericListCtrl::SetItemFont( long item
, const wxFont
&f
)
4752 info
.m_itemId
= item
;
4754 m_mainWin
->SetItem( info
);
4757 wxFont
wxGenericListCtrl::GetItemFont( long item
) const
4760 info
.m_itemId
= item
;
4761 m_mainWin
->GetItem( info
);
4762 return info
.GetFont();
4765 int wxGenericListCtrl::GetSelectedItemCount() const
4767 return m_mainWin
->GetSelectedItemCount();
4770 wxColour
wxGenericListCtrl::GetTextColour() const
4772 return GetForegroundColour();
4775 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
4777 SetForegroundColour(col
);
4780 long wxGenericListCtrl::GetTopItem() const
4783 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
4787 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
4789 return m_mainWin
->GetNextItem( item
, geom
, state
);
4792 wxImageList
*wxGenericListCtrl::GetImageList(int which
) const
4794 if (which
== wxIMAGE_LIST_NORMAL
)
4795 return m_imageListNormal
;
4796 else if (which
== wxIMAGE_LIST_SMALL
)
4797 return m_imageListSmall
;
4798 else if (which
== wxIMAGE_LIST_STATE
)
4799 return m_imageListState
;
4804 void wxGenericListCtrl::SetImageList( wxImageList
*imageList
, int which
)
4806 if ( which
== wxIMAGE_LIST_NORMAL
)
4808 if (m_ownsImageListNormal
)
4809 delete m_imageListNormal
;
4810 m_imageListNormal
= imageList
;
4811 m_ownsImageListNormal
= false;
4813 else if ( which
== wxIMAGE_LIST_SMALL
)
4815 if (m_ownsImageListSmall
)
4816 delete m_imageListSmall
;
4817 m_imageListSmall
= imageList
;
4818 m_ownsImageListSmall
= false;
4820 else if ( which
== wxIMAGE_LIST_STATE
)
4822 if (m_ownsImageListState
)
4823 delete m_imageListState
;
4824 m_imageListState
= imageList
;
4825 m_ownsImageListState
= false;
4828 m_mainWin
->SetImageList( imageList
, which
);
4831 void wxGenericListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
4833 SetImageList(imageList
, which
);
4834 if ( which
== wxIMAGE_LIST_NORMAL
)
4835 m_ownsImageListNormal
= true;
4836 else if ( which
== wxIMAGE_LIST_SMALL
)
4837 m_ownsImageListSmall
= true;
4838 else if ( which
== wxIMAGE_LIST_STATE
)
4839 m_ownsImageListState
= true;
4842 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
4847 bool wxGenericListCtrl::DeleteItem( long item
)
4849 m_mainWin
->DeleteItem( item
);
4853 bool wxGenericListCtrl::DeleteAllItems()
4855 m_mainWin
->DeleteAllItems();
4859 bool wxGenericListCtrl::DeleteAllColumns()
4861 size_t count
= m_mainWin
->m_columns
.GetCount();
4862 for ( size_t n
= 0; n
< count
; n
++ )
4867 void wxGenericListCtrl::ClearAll()
4869 m_mainWin
->DeleteEverything();
4872 bool wxGenericListCtrl::DeleteColumn( int col
)
4874 m_mainWin
->DeleteColumn( col
);
4876 // if we don't have the header any longer, we need to relayout the window
4877 // if ( !GetColumnCount() )
4880 // Ensure that the non-existent columns are really removed from display.
4886 wxTextCtrl
*wxGenericListCtrl::EditLabel(long item
,
4887 wxClassInfo
* textControlClass
)
4889 return m_mainWin
->EditLabel( item
, textControlClass
);
4892 wxTextCtrl
*wxGenericListCtrl::GetEditControl() const
4894 return m_mainWin
->GetEditControl();
4897 bool wxGenericListCtrl::EnsureVisible( long item
)
4899 m_mainWin
->EnsureVisible( item
);
4903 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
4905 return m_mainWin
->FindItem( start
, str
, partial
);
4908 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
4910 return m_mainWin
->FindItem( start
, data
);
4913 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
4914 int WXUNUSED(direction
))
4916 return m_mainWin
->FindItem( pt
);
4919 // TODO: sub item hit testing
4920 long wxGenericListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *) const
4922 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
4925 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
4927 m_mainWin
->InsertItem( info
);
4928 return info
.m_itemId
;
4931 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
4934 info
.m_text
= label
;
4935 info
.m_mask
= wxLIST_MASK_TEXT
;
4936 info
.m_itemId
= index
;
4937 return InsertItem( info
);
4940 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
4943 info
.m_mask
= wxLIST_MASK_IMAGE
;
4944 info
.m_image
= imageIndex
;
4945 info
.m_itemId
= index
;
4946 return InsertItem( info
);
4949 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
4952 info
.m_text
= label
;
4953 info
.m_image
= imageIndex
;
4954 info
.m_mask
= wxLIST_MASK_TEXT
;
4955 if (imageIndex
> -1)
4956 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4957 info
.m_itemId
= index
;
4958 return InsertItem( info
);
4961 long wxGenericListCtrl::DoInsertColumn( long col
, const wxListItem
&item
)
4963 wxCHECK_MSG( InReportView(), -1, wxT("can't add column in non report mode") );
4965 long idx
= m_mainWin
->InsertColumn( col
, item
);
4967 // NOTE: if wxLC_NO_HEADER was given, then we are in report view mode but
4968 // still have m_headerWin==NULL
4970 m_headerWin
->Refresh();
4975 bool wxGenericListCtrl::ScrollList( int dx
, int dy
)
4977 return m_mainWin
->ScrollList(dx
, dy
);
4981 // fn is a function which takes 3 long arguments: item1, item2, data.
4982 // item1 is the long data associated with a first item (NOT the index).
4983 // item2 is the long data associated with a second item (NOT the index).
4984 // data is the same value as passed to SortItems.
4985 // The return value is a negative number if the first item should precede the second
4986 // item, a positive number of the second item should precede the first,
4987 // or zero if the two items are equivalent.
4988 // data is arbitrary data to be passed to the sort function.
4990 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, wxIntPtr data
)
4992 m_mainWin
->SortItems( fn
, data
);
4996 // ----------------------------------------------------------------------------
4998 // ----------------------------------------------------------------------------
5000 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5002 if (!m_mainWin
) return;
5004 // We need to override OnSize so that our scrolled
5005 // window a) does call Layout() to use sizers for
5006 // positioning the controls but b) does not query
5007 // the sizer for their size and use that for setting
5008 // the scrollable area as set that ourselves by
5009 // calling SetScrollbar() further down.
5013 m_mainWin
->RecalculatePositions();
5018 void wxGenericListCtrl::OnInternalIdle()
5020 wxWindow::OnInternalIdle();
5022 if (m_mainWin
->m_dirty
)
5023 m_mainWin
->RecalculatePositions();
5026 // ----------------------------------------------------------------------------
5028 // ----------------------------------------------------------------------------
5030 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5034 m_mainWin
->SetBackgroundColour( colour
);
5035 m_mainWin
->m_dirty
= true;
5041 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5043 if ( !wxWindow::SetForegroundColour( colour
) )
5048 m_mainWin
->SetForegroundColour( colour
);
5049 m_mainWin
->m_dirty
= true;
5053 m_headerWin
->SetForegroundColour( colour
);
5058 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5060 if ( !wxWindow::SetFont( font
) )
5065 m_mainWin
->SetFont( font
);
5066 m_mainWin
->m_dirty
= true;
5071 m_headerWin
->SetFont( font
);
5072 // CalculateAndSetHeaderHeight();
5082 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5085 // Use the same color scheme as wxListBox
5086 return wxListBox::GetClassDefaultAttributes(variant
);
5088 wxUnusedVar(variant
);
5089 wxVisualAttributes attr
;
5090 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOXTEXT
);
5091 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5092 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5097 // ----------------------------------------------------------------------------
5098 // methods forwarded to m_mainWin
5099 // ----------------------------------------------------------------------------
5101 #if wxUSE_DRAG_AND_DROP
5103 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5105 m_mainWin
->SetDropTarget( dropTarget
);
5108 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5110 return m_mainWin
->GetDropTarget();
5115 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5117 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5120 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5122 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5125 wxColour
wxGenericListCtrl::GetForegroundColour() const
5127 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5130 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5133 return m_mainWin
->PopupMenu( menu
, x
, y
);
5139 void wxGenericListCtrl::DoClientToScreen( int *x
, int *y
) const
5141 // It's not clear whether this can be called before m_mainWin is created
5142 // but it seems better to be on the safe side and check.
5144 m_mainWin
->DoClientToScreen(x
, y
);
5146 wxListCtrlBase::DoClientToScreen(x
, y
);
5149 void wxGenericListCtrl::DoScreenToClient( int *x
, int *y
) const
5151 // At least in wxGTK/Univ build this method can be called before m_mainWin
5152 // is created so avoid crashes in this case.
5154 m_mainWin
->DoScreenToClient(x
, y
);
5156 wxListCtrlBase::DoScreenToClient(x
, y
);
5159 wxSize
wxGenericListCtrl::DoGetBestClientSize() const
5161 // The base class version can compute the best size in report view only.
5162 wxSize sizeBest
= wxListCtrlBase::DoGetBestClientSize();
5164 if ( !InReportView() )
5166 // Ensure that our minimal width is at least big enough to show all our
5167 // items. This is important for wxListbook to size itself correctly.
5169 // Remember the offset of the first item: this corresponds to the
5170 // margins around the item so we will add it to the minimal size below
5171 // to ensure that we have equal margins on all sides.
5174 // We can iterate over all items as there shouldn't be too many of them
5175 // in non-report view. If it ever becomes a problem, we could examine
5176 // just the first few items probably, the determination of the best
5177 // size is less important if we will need scrollbars anyhow.
5178 for ( int n
= 0; n
< GetItemCount(); n
++ )
5180 const wxRect itemRect
= m_mainWin
->GetLineRect(n
);
5183 // Remember the position of the first item as all the rest are
5184 // offset by at least this number of pixels too.
5185 ofs
= itemRect
.GetPosition();
5188 sizeBest
.IncTo(itemRect
.GetSize());
5191 sizeBest
.IncBy(2*ofs
);
5194 // If we have the scrollbars we need to account for them too. And to
5195 // make sure the scrollbars status is up to date we need to call this
5196 // function to set them.
5197 m_mainWin
->RecalculatePositions(true /* no refresh */);
5199 // Unfortunately we can't use wxWindow::HasScrollbar() here as we need
5200 // to use m_mainWin client/virtual size for determination of whether we
5201 // use scrollbars and not the size of this window itself. Maybe that
5202 // function should be extended to work correctly in the case when our
5203 // scrollbars manage a different window from this one but currently it
5205 const wxSize sizeClient
= m_mainWin
->GetClientSize();
5206 const wxSize sizeVirt
= m_mainWin
->GetVirtualSize();
5208 if ( sizeVirt
.x
> sizeClient
.x
/* HasScrollbar(wxHORIZONTAL) */ )
5209 sizeBest
.y
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
5211 if ( sizeVirt
.y
> sizeClient
.y
/* HasScrollbar(wxVERTICAL) */ )
5212 sizeBest
.x
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
5218 // ----------------------------------------------------------------------------
5219 // virtual list control support
5220 // ----------------------------------------------------------------------------
5222 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5224 // this is a pure virtual function, in fact - which is not really pure
5225 // because the controls which are not virtual don't need to implement it
5226 wxFAIL_MSG( wxT("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5228 return wxEmptyString
;
5231 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5233 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5235 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
5239 int wxGenericListCtrl::OnGetItemColumnImage(long item
, long column
) const
5242 return OnGetItemImage(item
);
5248 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5250 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5251 wxT("invalid item index in OnGetItemAttr()") );
5253 // no attributes by default
5257 void wxGenericListCtrl::SetItemCount(long count
)
5259 wxASSERT_MSG( IsVirtual(), wxT("this is for virtual controls only") );
5261 m_mainWin
->SetItemCount(count
);
5264 void wxGenericListCtrl::RefreshItem(long item
)
5266 m_mainWin
->RefreshLine(item
);
5269 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5271 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5274 // Generic wxListCtrl is more or less a container for two other
5275 // windows which drawings are done upon. These are namely
5276 // 'm_headerWin' and 'm_mainWin'.
5277 // Here we override 'virtual wxWindow::Refresh()' to mimic the
5278 // behaviour wxListCtrl has under wxMSW.
5280 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5284 // The easy case, no rectangle specified.
5286 m_headerWin
->Refresh(eraseBackground
);
5289 m_mainWin
->Refresh(eraseBackground
);
5293 // Refresh the header window
5296 wxRect rectHeader
= m_headerWin
->GetRect();
5297 rectHeader
.Intersect(*rect
);
5298 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5301 m_headerWin
->GetPosition(&x
, &y
);
5302 rectHeader
.Offset(-x
, -y
);
5303 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5307 // Refresh the main window
5310 wxRect rectMain
= m_mainWin
->GetRect();
5311 rectMain
.Intersect(*rect
);
5312 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5315 m_mainWin
->GetPosition(&x
, &y
);
5316 rectMain
.Offset(-x
, -y
);
5317 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5323 void wxGenericListCtrl::Update()
5327 if ( m_mainWin
->m_dirty
)
5328 m_mainWin
->RecalculatePositions();
5330 m_mainWin
->Update();
5334 m_headerWin
->Update();
5337 #endif // wxUSE_LISTCTRL