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 item
.m_mask
= m_mask
;
346 item
.m_text
= m_text
;
347 item
.m_image
= m_image
;
348 item
.m_format
= m_format
;
349 item
.m_width
= m_width
;
350 item
.m_state
= m_state
;
353 int wxListHeaderData::GetImage() const
358 int wxListHeaderData::GetWidth() const
363 int wxListHeaderData::GetFormat() const
368 int wxListHeaderData::GetState() const
373 //-----------------------------------------------------------------------------
375 //-----------------------------------------------------------------------------
377 inline int wxListLineData::GetMode() const
379 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
382 inline bool wxListLineData::InReportView() const
384 return m_owner
->HasFlag(wxLC_REPORT
);
387 inline bool wxListLineData::IsVirtual() const
389 return m_owner
->IsVirtual();
392 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
396 if ( InReportView() )
399 m_gi
= new GeometryInfo
;
401 m_highlighted
= false;
403 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
406 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
408 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
409 wxCHECK_RET( node
, wxT("no subitems at all??") );
411 wxListItemData
*item
= node
->GetData();
419 case wxLC_SMALL_ICON
:
420 m_gi
->m_rectAll
.width
= spacing
;
427 m_gi
->m_rectLabel
.width
=
428 m_gi
->m_rectLabel
.height
= 0;
432 dc
->GetTextExtent( s
, &lw
, &lh
);
436 m_gi
->m_rectAll
.height
= spacing
+ lh
;
438 m_gi
->m_rectAll
.width
= lw
;
440 m_gi
->m_rectLabel
.width
= lw
;
441 m_gi
->m_rectLabel
.height
= lh
;
444 if (item
->HasImage())
447 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
448 m_gi
->m_rectIcon
.width
= w
+ 8;
449 m_gi
->m_rectIcon
.height
= h
+ 8;
451 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
452 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
453 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
454 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
457 if ( item
->HasText() )
459 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
460 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
462 else // no text, highlight the icon
464 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
465 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
470 s
= item
->GetTextForMeasuring();
472 dc
->GetTextExtent( s
, &lw
, &lh
);
476 m_gi
->m_rectLabel
.width
= lw
;
477 m_gi
->m_rectLabel
.height
= lh
;
479 m_gi
->m_rectAll
.width
= lw
;
480 m_gi
->m_rectAll
.height
= lh
;
482 if (item
->HasImage())
485 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
486 m_gi
->m_rectIcon
.width
= w
;
487 m_gi
->m_rectIcon
.height
= h
;
489 m_gi
->m_rectAll
.width
+= 4 + w
;
490 if (h
> m_gi
->m_rectAll
.height
)
491 m_gi
->m_rectAll
.height
= h
;
494 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
495 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
499 wxFAIL_MSG( wxT("unexpected call to SetSize") );
503 wxFAIL_MSG( wxT("unknown mode") );
508 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
510 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
511 wxCHECK_RET( node
, wxT("no subitems at all??") );
513 wxListItemData
*item
= node
->GetData();
518 case wxLC_SMALL_ICON
:
519 m_gi
->m_rectAll
.x
= x
;
520 m_gi
->m_rectAll
.y
= y
;
522 if ( item
->HasImage() )
524 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
525 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
526 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
529 if ( item
->HasText() )
531 if (m_gi
->m_rectAll
.width
> spacing
)
532 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
534 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2) + (spacing
/ 2) - (m_gi
->m_rectLabel
.width
/ 2);
535 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
536 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
537 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
539 else // no text, highlight the icon
541 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
542 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
547 m_gi
->m_rectAll
.x
= x
;
548 m_gi
->m_rectAll
.y
= y
;
550 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
551 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
552 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
554 if (item
->HasImage())
556 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
557 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
558 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 4 + (EXTRA_WIDTH
/2) + m_gi
->m_rectIcon
.width
;
562 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
567 wxFAIL_MSG( wxT("unexpected call to SetPosition") );
571 wxFAIL_MSG( wxT("unknown mode") );
576 void wxListLineData::InitItems( int num
)
578 for (int i
= 0; i
< num
; i
++)
579 m_items
.Append( new wxListItemData(m_owner
) );
582 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
584 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
585 wxCHECK_RET( node
, wxT("invalid column index in SetItem") );
587 wxListItemData
*item
= node
->GetData();
588 item
->SetItem( info
);
591 void wxListLineData::GetItem( int index
, wxListItem
&info
)
593 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
596 wxListItemData
*item
= node
->GetData();
597 item
->GetItem( info
);
601 wxString
wxListLineData::GetText(int index
) const
605 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
608 wxListItemData
*item
= node
->GetData();
615 void wxListLineData::SetText( int index
, const wxString
& s
)
617 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
620 wxListItemData
*item
= node
->GetData();
625 void wxListLineData::SetImage( int index
, int image
)
627 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
628 wxCHECK_RET( node
, wxT("invalid column index in SetImage()") );
630 wxListItemData
*item
= node
->GetData();
631 item
->SetImage(image
);
634 int wxListLineData::GetImage( int index
) const
636 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
637 wxCHECK_MSG( node
, -1, wxT("invalid column index in GetImage()") );
639 wxListItemData
*item
= node
->GetData();
640 return item
->GetImage();
643 wxListItemAttr
*wxListLineData::GetAttr() const
645 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
646 wxCHECK_MSG( node
, NULL
, wxT("invalid column index in GetAttr()") );
648 wxListItemData
*item
= node
->GetData();
649 return item
->GetAttr();
652 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
654 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
655 wxCHECK_RET( node
, wxT("invalid column index in SetAttr()") );
657 wxListItemData
*item
= node
->GetData();
661 void wxListLineData::ApplyAttributes(wxDC
*dc
,
662 const wxRect
& rectHL
,
666 const wxListItemAttr
* const attr
= GetAttr();
668 wxWindow
* const listctrl
= m_owner
->GetParent();
670 const bool hasFocus
= listctrl
->HasFocus()
671 #if defined(__WXMAC__) && !defined(__WXUNIVERSAL__) && wxOSX_USE_CARBON
672 && IsControlActive( (ControlRef
)listctrl
->GetHandle() )
678 // don't use foreground colour for drawing highlighted items - this might
679 // make them completely invisible (and there is no way to do bit
680 // arithmetics on wxColour, unfortunately)
691 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
693 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOXHIGHLIGHTTEXT
);
696 else if ( attr
&& attr
->HasTextColour() )
697 colText
= attr
->GetTextColour();
699 colText
= listctrl
->GetForegroundColour();
701 dc
->SetTextForeground(colText
);
705 if ( attr
&& attr
->HasFont() )
706 font
= attr
->GetFont();
708 font
= listctrl
->GetFont();
715 // Use the renderer method to ensure that the selected items use the
717 int flags
= wxCONTROL_SELECTED
;
719 flags
|= wxCONTROL_FOCUSED
;
721 flags
|= wxCONTROL_CURRENT
;
722 wxRendererNative::Get().
723 DrawItemSelectionRect( m_owner
, *dc
, rectHL
, flags
);
725 else if ( attr
&& attr
->HasBackgroundColour() )
727 // Draw the background using the items custom background colour.
728 dc
->SetBrush(attr
->GetBackgroundColour());
729 dc
->SetPen(*wxTRANSPARENT_PEN
);
730 dc
->DrawRectangle(rectHL
);
733 // just for debugging to better see where the items are
735 dc
->SetPen(*wxRED_PEN
);
736 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
737 dc
->DrawRectangle( m_gi
->m_rectAll
);
738 dc
->SetPen(*wxGREEN_PEN
);
739 dc
->DrawRectangle( m_gi
->m_rectIcon
);
743 void wxListLineData::Draw(wxDC
*dc
, bool current
)
745 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
746 wxCHECK_RET( node
, wxT("no subitems at all??") );
748 ApplyAttributes(dc
, m_gi
->m_rectHighlight
, IsHighlighted(), current
);
750 wxListItemData
*item
= node
->GetData();
751 if (item
->HasImage())
753 // centre the image inside our rectangle, this looks nicer when items
754 // ae aligned in a row
755 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
757 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
762 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
764 wxDCClipper
clipper(*dc
, rectLabel
);
765 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
769 void wxListLineData::DrawInReportMode( wxDC
*dc
,
771 const wxRect
& rectHL
,
775 // TODO: later we should support setting different attributes for
776 // different columns - to do it, just add "col" argument to
777 // GetAttr() and move these lines into the loop below
779 ApplyAttributes(dc
, rectHL
, highlighted
, current
);
781 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
782 yMid
= rect
.y
+ rect
.height
/2;
784 // This probably needs to be done
785 // on all platforms as the icons
786 // otherwise nearly touch the border
791 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
793 node
= node
->GetNext(), col
++ )
795 wxListItemData
*item
= node
->GetData();
797 int width
= m_owner
->GetColumnWidth(col
);
802 const int wText
= width
;
803 wxDCClipper
clipper(*dc
, xOld
, rect
.y
, wText
, rect
.height
);
805 if ( item
->HasImage() )
808 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
809 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, yMid
- iy
/2 );
811 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
817 if ( item
->HasText() )
818 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, yMid
, width
);
822 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
823 const wxString
& textOrig
,
829 // we don't support displaying multiple lines currently (and neither does
830 // wxMSW FWIW) so just merge all the lines
831 wxString
text(textOrig
);
832 text
.Replace(wxT("\n"), wxT(" "));
835 dc
->GetTextExtent(text
, &w
, &h
);
837 const wxCoord y
= yMid
- (h
+ 1)/2;
839 wxDCClipper
clipper(*dc
, x
, y
, width
, h
);
841 // determine if the string can fit inside the current width
844 // it can, draw it using the items alignment
846 m_owner
->GetColumn(col
, item
);
847 switch ( item
.GetAlign() )
849 case wxLIST_FORMAT_LEFT
:
853 case wxLIST_FORMAT_RIGHT
:
857 case wxLIST_FORMAT_CENTER
:
858 x
+= (width
- w
) / 2;
862 wxFAIL_MSG( wxT("unknown list item format") );
866 dc
->DrawText(text
, x
, y
);
868 else // otherwise, truncate and add an ellipsis if possible
870 // determine the base width
871 wxString
ellipsis(wxT("..."));
873 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
875 // continue until we have enough space or only one character left
877 size_t len
= text
.length();
878 wxString drawntext
= text
.Left(len
);
881 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
882 drawntext
.RemoveLast();
885 if (w
+ base_w
<= width
)
889 // if still not enough space, remove ellipsis characters
890 while (ellipsis
.length() > 0 && w
+ base_w
> width
)
892 ellipsis
= ellipsis
.Left(ellipsis
.length() - 1);
893 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
897 dc
->DrawText(drawntext
, x
, y
);
898 dc
->DrawText(ellipsis
, x
+ w
, y
);
902 bool wxListLineData::Highlight( bool on
)
904 wxCHECK_MSG( !IsVirtual(), false, wxT("unexpected call to Highlight") );
906 if ( on
== m_highlighted
)
914 void wxListLineData::ReverseHighlight( void )
916 Highlight(!IsHighlighted());
919 //-----------------------------------------------------------------------------
920 // wxListHeaderWindow
921 //-----------------------------------------------------------------------------
923 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
924 EVT_PAINT (wxListHeaderWindow::OnPaint
)
925 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
926 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
929 void wxListHeaderWindow::Init()
931 m_currentCursor
= NULL
;
932 m_isDragging
= false;
934 m_sendSetColumnWidth
= false;
937 wxListHeaderWindow::wxListHeaderWindow()
942 m_resizeCursor
= NULL
;
945 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
947 wxListMainWindow
*owner
,
951 const wxString
&name
)
952 : wxWindow( win
, id
, pos
, size
, style
, name
)
957 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
960 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
961 SetOwnForegroundColour( attr
.colFg
);
962 SetOwnBackgroundColour( attr
.colBg
);
964 SetOwnFont( attr
.font
);
966 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
967 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
969 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
973 wxListHeaderWindow::~wxListHeaderWindow()
975 delete m_resizeCursor
;
978 #ifdef __WXUNIVERSAL__
979 #include "wx/univ/renderer.h"
980 #include "wx/univ/theme.h"
983 // shift the DC origin to match the position of the main window horz
984 // scrollbar: this allows us to always use logical coords
985 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
987 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
990 parent
->GetScrollPixelsPerUnit( &xpix
, NULL
);
993 parent
->GetViewStart( &view_start
, NULL
);
998 dc
.GetDeviceOrigin( &org_x
, &org_y
);
1000 // account for the horz scrollbar offset
1002 if (GetLayoutDirection() == wxLayout_RightToLeft
)
1004 // Maybe we just have to check for m_signX
1005 // in the DC, but I leave the #ifdef __WXGTK__
1007 dc
.SetDeviceOrigin( org_x
+ (view_start
* xpix
), org_y
);
1011 dc
.SetDeviceOrigin( org_x
- (view_start
* xpix
), org_y
);
1014 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1016 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
1018 wxPaintDC
dc( this );
1022 dc
.SetFont( GetFont() );
1024 // width and height of the entire header window
1026 GetClientSize( &w
, &h
);
1027 parent
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1029 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
1030 dc
.SetTextForeground(GetForegroundColour());
1032 int x
= HEADER_OFFSET_X
;
1033 int numColumns
= m_owner
->GetColumnCount();
1035 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1037 m_owner
->GetColumn( i
, item
);
1038 int wCol
= item
.m_width
;
1044 if (!m_parent
->IsEnabled())
1045 flags
|= wxCONTROL_DISABLED
;
1047 // NB: The code below is not really Mac-specific, but since we are close
1048 // to 2.8 release and I don't have time to test on other platforms, I
1049 // defined this only for wxMac. If this behaviour is desired on
1050 // other platforms, please go ahead and revise or remove the #ifdef.
1052 if ( !m_owner
->IsVirtual() && (item
.m_mask
& wxLIST_MASK_STATE
) &&
1053 (item
.m_state
& wxLIST_STATE_SELECTED
) )
1054 flags
|= wxCONTROL_SELECTED
;
1058 flags
|= wxCONTROL_SPECIAL
; // mark as first column
1060 wxRendererNative::Get().DrawHeaderButton
1064 wxRect(x
, HEADER_OFFSET_Y
, cw
, ch
),
1068 // see if we have enough space for the column label
1070 // for this we need the width of the text
1073 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1074 wLabel
+= 2 * EXTRA_WIDTH
;
1076 // and the width of the icon, if any
1077 int ix
= 0, iy
= 0; // init them just to suppress the compiler warnings
1078 const int image
= item
.m_image
;
1079 wxImageList
*imageList
;
1082 imageList
= m_owner
->GetSmallImageList();
1085 imageList
->GetSize(image
, ix
, iy
);
1086 wLabel
+= ix
+ HEADER_IMAGE_MARGIN_IN_REPORT_MODE
;
1094 // ignore alignment if there is not enough space anyhow
1096 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1099 wxFAIL_MSG( wxT("unknown list item format") );
1102 case wxLIST_FORMAT_LEFT
:
1106 case wxLIST_FORMAT_RIGHT
:
1107 xAligned
= x
+ cw
- wLabel
;
1110 case wxLIST_FORMAT_CENTER
:
1111 xAligned
= x
+ (cw
- wLabel
) / 2;
1115 // draw the text and image clipping them so that they
1116 // don't overwrite the column boundary
1117 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
);
1119 // if we have an image, draw it on the right of the label
1126 xAligned
+ wLabel
- ix
- HEADER_IMAGE_MARGIN_IN_REPORT_MODE
,
1127 HEADER_OFFSET_Y
+ (h
- iy
)/2,
1128 wxIMAGELIST_DRAW_TRANSPARENT
1132 dc
.DrawText( item
.GetText(),
1133 xAligned
+ EXTRA_WIDTH
, (h
- hLabel
) / 2 );
1138 // Fill in what's missing to the right of the columns, otherwise we will
1139 // leave an unpainted area when columns are removed (and it looks better)
1142 wxRendererNative::Get().DrawHeaderButton
1146 wxRect(x
, HEADER_OFFSET_Y
, w
- x
, h
),
1147 wxCONTROL_DIRTY
// mark as last column
1152 void wxListHeaderWindow::OnInternalIdle()
1154 wxWindow::OnInternalIdle();
1156 if (m_sendSetColumnWidth
)
1158 m_owner
->SetColumnWidth( m_colToSend
, m_widthToSend
);
1159 m_sendSetColumnWidth
= false;
1163 void wxListHeaderWindow::DrawCurrent()
1166 // m_owner->SetColumnWidth( m_column, m_currentX - m_minX );
1167 m_sendSetColumnWidth
= true;
1168 m_colToSend
= m_column
;
1169 m_widthToSend
= m_currentX
- m_minX
;
1171 int x1
= m_currentX
;
1173 m_owner
->ClientToScreen( &x1
, &y1
);
1175 int x2
= m_currentX
;
1177 m_owner
->GetClientSize( NULL
, &y2
);
1178 m_owner
->ClientToScreen( &x2
, &y2
);
1181 dc
.SetLogicalFunction( wxINVERT
);
1182 dc
.SetPen( wxPen(*wxBLACK
, 2) );
1183 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1187 dc
.DrawLine( x1
, y1
, x2
, y2
);
1189 dc
.SetLogicalFunction( wxCOPY
);
1191 dc
.SetPen( wxNullPen
);
1192 dc
.SetBrush( wxNullBrush
);
1196 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1198 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
1200 // we want to work with logical coords
1202 parent
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1203 int y
= event
.GetY();
1207 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1209 // we don't draw the line beyond our window, but we allow dragging it
1212 GetClientSize( &w
, NULL
);
1213 parent
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1216 // erase the line if it was drawn
1217 if ( m_currentX
< w
)
1220 if (event
.ButtonUp())
1223 m_isDragging
= false;
1225 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1226 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1233 m_currentX
= m_minX
+ 7;
1235 // draw in the new location
1236 if ( m_currentX
< w
)
1240 else // not dragging
1243 bool hit_border
= false;
1245 // end of the current column
1248 // find the column where this event occurred
1250 countCol
= m_owner
->GetColumnCount();
1251 for (col
= 0; col
< countCol
; col
++)
1253 xpos
+= m_owner
->GetColumnWidth( col
);
1256 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1258 // near the column border
1265 // inside the column
1272 if ( col
== countCol
)
1275 if (event
.LeftDown() || event
.RightUp())
1277 if (hit_border
&& event
.LeftDown())
1279 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1280 event
.GetPosition()) )
1282 m_isDragging
= true;
1287 //else: column resizing was vetoed by the user code
1289 else // click on a column
1291 // record the selected state of the columns
1292 if (event
.LeftDown())
1294 for (int i
=0; i
< m_owner
->GetColumnCount(); i
++)
1297 m_owner
->GetColumn(i
, colItem
);
1298 long state
= colItem
.GetState();
1300 colItem
.SetState(state
| wxLIST_STATE_SELECTED
);
1302 colItem
.SetState(state
& ~wxLIST_STATE_SELECTED
);
1303 m_owner
->SetColumn(i
, colItem
);
1307 SendListEvent( event
.LeftDown()
1308 ? wxEVT_COMMAND_LIST_COL_CLICK
1309 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1310 event
.GetPosition());
1313 else if (event
.Moving())
1318 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1319 m_currentCursor
= m_resizeCursor
;
1323 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1324 m_currentCursor
= wxSTANDARD_CURSOR
;
1328 SetCursor(*m_currentCursor
);
1333 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1335 m_owner
->SetFocus();
1339 bool wxListHeaderWindow::SendListEvent(wxEventType type
, const wxPoint
& pos
)
1341 wxWindow
*parent
= GetParent();
1342 wxListEvent
le( type
, parent
->GetId() );
1343 le
.SetEventObject( parent
);
1344 le
.m_pointDrag
= pos
;
1346 // the position should be relative to the parent window, not
1347 // this one for compatibility with MSW and common sense: the
1348 // user code doesn't know anything at all about this header
1349 // window, so why should it get positions relative to it?
1350 le
.m_pointDrag
.y
-= GetSize().y
;
1352 le
.m_col
= m_column
;
1353 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
1356 //-----------------------------------------------------------------------------
1357 // wxListRenameTimer (internal)
1358 //-----------------------------------------------------------------------------
1360 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
1365 void wxListRenameTimer::Notify()
1367 m_owner
->OnRenameTimer();
1370 //-----------------------------------------------------------------------------
1371 // wxListTextCtrlWrapper (internal)
1372 //-----------------------------------------------------------------------------
1374 BEGIN_EVENT_TABLE(wxListTextCtrlWrapper
, wxEvtHandler
)
1375 EVT_CHAR (wxListTextCtrlWrapper::OnChar
)
1376 EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp
)
1377 EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus
)
1380 wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow
*owner
,
1383 : m_startValue(owner
->GetItemText(itemEdit
)),
1384 m_itemEdited(itemEdit
)
1388 m_aboutToFinish
= false;
1390 wxGenericListCtrl
*parent
= m_owner
->GetListCtrl();
1392 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
1394 parent
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
1395 &rectLabel
.x
, &rectLabel
.y
);
1397 m_text
->Create(owner
, wxID_ANY
, m_startValue
,
1398 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
1399 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
1402 m_text
->PushEventHandler(this);
1405 void wxListTextCtrlWrapper::EndEdit(EndReason reason
)
1407 m_aboutToFinish
= true;
1412 // Notify the owner about the changes
1415 // Even if vetoed, close the control (consistent with MSW)
1420 m_owner
->OnRenameCancelled(m_itemEdited
);
1426 // Don't generate any notifications for the control being destroyed
1427 // and don't set focus to it neither.
1433 void wxListTextCtrlWrapper::Finish( bool setfocus
)
1435 m_text
->RemoveEventHandler(this);
1436 m_owner
->ResetTextControl( m_text
);
1438 wxPendingDelete
.Append( this );
1441 m_owner
->SetFocus();
1444 bool wxListTextCtrlWrapper::AcceptChanges()
1446 const wxString value
= m_text
->GetValue();
1448 // notice that we should always call OnRenameAccept() to generate the "end
1449 // label editing" event, even if the user hasn't really changed anything
1450 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
1452 // vetoed by the user
1456 // accepted, do rename the item (unless nothing changed)
1457 if ( value
!= m_startValue
)
1458 m_owner
->SetItemText(m_itemEdited
, value
);
1463 void wxListTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
1465 if ( !CheckForEndEditKey(event
) )
1469 bool wxListTextCtrlWrapper::CheckForEndEditKey(const wxKeyEvent
& event
)
1471 switch ( event
.m_keyCode
)
1474 EndEdit( End_Accept
);
1478 EndEdit( End_Discard
);
1488 void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
1490 if (m_aboutToFinish
)
1492 // auto-grow the textctrl:
1493 wxSize parentSize
= m_owner
->GetSize();
1494 wxPoint myPos
= m_text
->GetPosition();
1495 wxSize mySize
= m_text
->GetSize();
1497 m_text
->GetTextExtent(m_text
->GetValue() + wxT("MM"), &sx
, &sy
);
1498 if (myPos
.x
+ sx
> parentSize
.x
)
1499 sx
= parentSize
.x
- myPos
.x
;
1502 m_text
->SetSize(sx
, wxDefaultCoord
);
1508 void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
1510 if ( !m_aboutToFinish
)
1512 if ( !AcceptChanges() )
1513 m_owner
->OnRenameCancelled( m_itemEdited
);
1518 // We must let the native text control handle focus
1522 //-----------------------------------------------------------------------------
1524 //-----------------------------------------------------------------------------
1526 BEGIN_EVENT_TABLE(wxListMainWindow
, wxWindow
)
1527 EVT_PAINT (wxListMainWindow::OnPaint
)
1528 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
1529 EVT_CHAR_HOOK (wxListMainWindow::OnCharHook
)
1530 EVT_CHAR (wxListMainWindow::OnChar
)
1531 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
1532 EVT_KEY_UP (wxListMainWindow::OnKeyUp
)
1533 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
1534 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
1535 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
1536 EVT_CHILD_FOCUS (wxListMainWindow::OnChildFocus
)
1539 void wxListMainWindow::Init()
1544 m_lineTo
= (size_t)-1;
1550 m_small_image_list
= NULL
;
1551 m_normal_image_list
= NULL
;
1553 m_small_spacing
= 30;
1554 m_normal_spacing
= 40;
1558 m_isCreated
= false;
1560 m_lastOnSame
= false;
1561 m_renameTimer
= new wxListRenameTimer( this );
1562 m_textctrlWrapper
= NULL
;
1566 m_lineSelectSingleOnUp
=
1567 m_lineBeforeLastClicked
= (size_t)-1;
1570 wxListMainWindow::wxListMainWindow()
1575 m_highlightUnfocusedBrush
= NULL
;
1578 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
1583 const wxString
&name
)
1584 : wxWindow( parent
, id
, pos
, size
, style
, name
)
1588 m_highlightBrush
= new wxBrush
1590 wxSystemSettings::GetColour
1592 wxSYS_COLOUR_HIGHLIGHT
1597 m_highlightUnfocusedBrush
= new wxBrush
1599 wxSystemSettings::GetColour
1601 wxSYS_COLOUR_BTNSHADOW
1606 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
1607 SetOwnForegroundColour( attr
.colFg
);
1608 SetOwnBackgroundColour( attr
.colBg
);
1610 SetOwnFont( attr
.font
);
1613 wxListMainWindow::~wxListMainWindow()
1615 if ( m_textctrlWrapper
)
1616 m_textctrlWrapper
->EndEdit(wxListTextCtrlWrapper::End_Destroy
);
1619 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
1620 WX_CLEAR_ARRAY(m_aColWidths
);
1622 delete m_highlightBrush
;
1623 delete m_highlightUnfocusedBrush
;
1624 delete m_renameTimer
;
1627 void wxListMainWindow::SetReportView(bool inReportView
)
1629 const size_t count
= m_lines
.size();
1630 for ( size_t n
= 0; n
< count
; n
++ )
1632 m_lines
[n
].SetReportView(inReportView
);
1636 void wxListMainWindow::CacheLineData(size_t line
)
1638 wxGenericListCtrl
*listctrl
= GetListCtrl();
1640 wxListLineData
*ld
= GetDummyLine();
1642 size_t countCol
= GetColumnCount();
1643 for ( size_t col
= 0; col
< countCol
; col
++ )
1645 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
1646 ld
->SetImage(col
, listctrl
->OnGetItemColumnImage(line
, col
));
1649 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
1652 wxListLineData
*wxListMainWindow::GetDummyLine() const
1654 wxASSERT_MSG( !IsEmpty(), wxT("invalid line index") );
1655 wxASSERT_MSG( IsVirtual(), wxT("GetDummyLine() shouldn't be called") );
1657 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
1659 // we need to recreate the dummy line if the number of columns in the
1660 // control changed as it would have the incorrect number of fields
1662 if ( !m_lines
.IsEmpty() &&
1663 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
1665 self
->m_lines
.Clear();
1668 if ( m_lines
.IsEmpty() )
1670 wxListLineData
*line
= new wxListLineData(self
);
1671 self
->m_lines
.Add(line
);
1673 // don't waste extra memory -- there never going to be anything
1674 // else/more in this array
1675 self
->m_lines
.Shrink();
1681 // ----------------------------------------------------------------------------
1682 // line geometry (report mode only)
1683 // ----------------------------------------------------------------------------
1685 wxCoord
wxListMainWindow::GetLineHeight() const
1687 // we cache the line height as calling GetTextExtent() is slow
1688 if ( !m_lineHeight
)
1690 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
1692 wxClientDC
dc( self
);
1693 dc
.SetFont( GetFont() );
1696 dc
.GetTextExtent(wxT("H"), NULL
, &y
);
1698 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
1701 m_small_image_list
->GetSize(0, iw
, ih
);
1706 self
->m_lineHeight
= y
+ LINE_SPACING
;
1709 return m_lineHeight
;
1712 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
1714 wxASSERT_MSG( InReportView(), wxT("only works in report mode") );
1716 return LINE_SPACING
+ line
* GetLineHeight();
1719 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
1721 if ( !InReportView() )
1722 return GetLine(line
)->m_gi
->m_rectAll
;
1725 rect
.x
= HEADER_OFFSET_X
;
1726 rect
.y
= GetLineY(line
);
1727 rect
.width
= GetHeaderWidth();
1728 rect
.height
= GetLineHeight();
1733 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
1735 if ( !InReportView() )
1736 return GetLine(line
)->m_gi
->m_rectLabel
;
1739 wxListLineData
*data
= GetLine(line
);
1740 wxListItemDataList::compatibility_iterator node
= data
->m_items
.GetFirst();
1743 wxListItemData
*item
= node
->GetData();
1744 if ( item
->HasImage() )
1747 GetImageSize( item
->GetImage(), ix
, iy
);
1748 image_x
= 3 + ix
+ IMAGE_MARGIN_IN_REPORT_MODE
;
1753 rect
.x
= image_x
+ HEADER_OFFSET_X
;
1754 rect
.y
= GetLineY(line
);
1755 rect
.width
= GetColumnWidth(0) - image_x
;
1756 rect
.height
= GetLineHeight();
1761 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
1763 if ( !InReportView() )
1764 return GetLine(line
)->m_gi
->m_rectIcon
;
1766 wxListLineData
*ld
= GetLine(line
);
1767 wxASSERT_MSG( ld
->HasImage(), wxT("should have an image") );
1770 rect
.x
= HEADER_OFFSET_X
;
1771 rect
.y
= GetLineY(line
);
1772 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
1777 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
1779 return InReportView() ? GetLineRect(line
)
1780 : GetLine(line
)->m_gi
->m_rectHighlight
;
1783 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
1785 wxASSERT_MSG( line
< GetItemCount(), wxT("invalid line in HitTestLine") );
1787 wxListLineData
*ld
= GetLine(line
);
1789 if ( ld
->HasImage() && GetLineIconRect(line
).Contains(x
, y
) )
1790 return wxLIST_HITTEST_ONITEMICON
;
1792 // VS: Testing for "ld->HasText() || InReportView()" instead of
1793 // "ld->HasText()" is needed to make empty lines in report view
1795 if ( ld
->HasText() || InReportView() )
1797 wxRect rect
= InReportView() ? GetLineRect(line
)
1798 : GetLineLabelRect(line
);
1800 if ( rect
.Contains(x
, y
) )
1801 return wxLIST_HITTEST_ONITEMLABEL
;
1807 // ----------------------------------------------------------------------------
1808 // highlight (selection) handling
1809 // ----------------------------------------------------------------------------
1811 bool wxListMainWindow::IsHighlighted(size_t line
) const
1815 return m_selStore
.IsSelected(line
);
1819 wxListLineData
*ld
= GetLine(line
);
1820 wxCHECK_MSG( ld
, false, wxT("invalid index in IsHighlighted") );
1822 return ld
->IsHighlighted();
1826 void wxListMainWindow::HighlightLines( size_t lineFrom
,
1832 wxArrayInt linesChanged
;
1833 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
1836 // meny items changed state, refresh everything
1837 RefreshLines(lineFrom
, lineTo
);
1839 else // only a few items changed state, refresh only them
1841 size_t count
= linesChanged
.GetCount();
1842 for ( size_t n
= 0; n
< count
; n
++ )
1844 RefreshLine(linesChanged
[n
]);
1848 else // iterate over all items in non report view
1850 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
1852 if ( HighlightLine(line
, highlight
) )
1858 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
1864 changed
= m_selStore
.SelectItem(line
, highlight
);
1868 wxListLineData
*ld
= GetLine(line
);
1869 wxCHECK_MSG( ld
, false, wxT("invalid index in HighlightLine") );
1871 changed
= ld
->Highlight(highlight
);
1876 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
1877 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1883 void wxListMainWindow::RefreshLine( size_t line
)
1885 if ( InReportView() )
1887 size_t visibleFrom
, visibleTo
;
1888 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1890 if ( line
< visibleFrom
|| line
> visibleTo
)
1894 wxRect rect
= GetLineRect(line
);
1896 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1897 RefreshRect( rect
);
1900 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
1902 // we suppose that they are ordered by caller
1903 wxASSERT_MSG( lineFrom
<= lineTo
, wxT("indices in disorder") );
1905 wxASSERT_MSG( lineTo
< GetItemCount(), wxT("invalid line range") );
1907 if ( InReportView() )
1909 size_t visibleFrom
, visibleTo
;
1910 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1912 if ( lineFrom
< visibleFrom
)
1913 lineFrom
= visibleFrom
;
1914 if ( lineTo
> visibleTo
)
1919 rect
.y
= GetLineY(lineFrom
);
1920 rect
.width
= GetClientSize().x
;
1921 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
1923 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1924 RefreshRect( rect
);
1928 // TODO: this should be optimized...
1929 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
1936 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
1938 if ( InReportView() )
1940 size_t visibleFrom
, visibleTo
;
1941 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1943 if ( lineFrom
< visibleFrom
)
1944 lineFrom
= visibleFrom
;
1945 else if ( lineFrom
> visibleTo
)
1950 rect
.y
= GetLineY(lineFrom
);
1951 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1953 wxSize size
= GetClientSize();
1954 rect
.width
= size
.x
;
1956 // refresh till the bottom of the window
1957 rect
.height
= size
.y
- rect
.y
;
1959 RefreshRect( rect
);
1963 // TODO: how to do it more efficiently?
1968 void wxListMainWindow::RefreshSelected()
1974 if ( InReportView() )
1976 GetVisibleLinesRange(&from
, &to
);
1981 to
= GetItemCount() - 1;
1984 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
1985 RefreshLine(m_current
);
1987 for ( size_t line
= from
; line
<= to
; line
++ )
1989 // NB: the test works as expected even if m_current == -1
1990 if ( line
!= m_current
&& IsHighlighted(line
) )
1995 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1997 // Note: a wxPaintDC must be constructed even if no drawing is
1998 // done (a Windows requirement).
1999 wxPaintDC
dc( this );
2003 // nothing to draw or not the moment to draw it
2008 RecalculatePositions( false );
2010 GetListCtrl()->PrepareDC( dc
);
2013 GetListCtrl()->CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2015 dc
.SetFont( GetFont() );
2017 if ( InReportView() )
2019 int lineHeight
= GetLineHeight();
2021 size_t visibleFrom
, visibleTo
;
2022 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2025 int xOrig
= dc
.LogicalToDeviceX( 0 );
2026 int yOrig
= dc
.LogicalToDeviceY( 0 );
2028 // tell the caller cache to cache the data
2031 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2032 GetParent()->GetId());
2033 evCache
.SetEventObject( GetParent() );
2034 evCache
.m_oldItemIndex
= visibleFrom
;
2035 evCache
.m_item
.m_itemId
=
2036 evCache
.m_itemIndex
= visibleTo
;
2037 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2040 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2042 rectLine
= GetLineRect(line
);
2045 if ( !IsExposed(rectLine
.x
+ xOrig
, rectLine
.y
+ yOrig
,
2046 rectLine
.width
, rectLine
.height
) )
2048 // don't redraw unaffected lines to avoid flicker
2052 GetLine(line
)->DrawInReportMode( &dc
,
2054 GetLineHighlightRect(line
),
2055 IsHighlighted(line
),
2056 line
== m_current
);
2059 if ( HasFlag(wxLC_HRULES
) )
2061 wxPen
pen(GetRuleColour(), 1, wxPENSTYLE_SOLID
);
2062 wxSize clientSize
= GetClientSize();
2064 size_t i
= visibleFrom
;
2065 if (i
== 0) i
= 1; // Don't draw the first one
2066 for ( ; i
<= visibleTo
; i
++ )
2069 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2070 dc
.DrawLine(0 - dev_x
, i
* lineHeight
,
2071 clientSize
.x
- dev_x
, i
* lineHeight
);
2074 // Draw last horizontal rule
2075 if ( visibleTo
== GetItemCount() - 1 )
2078 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2079 dc
.DrawLine(0 - dev_x
, (m_lineTo
+ 1) * lineHeight
,
2080 clientSize
.x
- dev_x
, (m_lineTo
+ 1) * lineHeight
);
2084 // Draw vertical rules if required
2085 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2087 wxPen
pen(GetRuleColour(), 1, wxPENSTYLE_SOLID
);
2088 wxRect firstItemRect
, lastItemRect
;
2090 GetItemRect(visibleFrom
, firstItemRect
);
2091 GetItemRect(visibleTo
, lastItemRect
);
2092 int x
= firstItemRect
.GetX();
2094 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2096 for (int col
= 0; col
< GetColumnCount(); col
++)
2098 int colWidth
= GetColumnWidth(col
);
2100 int x_pos
= x
- dev_x
;
2101 if (col
< GetColumnCount()-1) x_pos
-= 2;
2102 dc
.DrawLine(x_pos
, firstItemRect
.GetY() - 1 - dev_y
,
2103 x_pos
, lastItemRect
.GetBottom() + 1 - dev_y
);
2109 size_t count
= GetItemCount();
2110 for ( size_t i
= 0; i
< count
; i
++ )
2112 GetLine(i
)->Draw( &dc
, i
== m_current
);
2116 // DrawFocusRect() is unusable under Mac, it draws outside of the highlight
2117 // rectangle somehow and so leaves traces when the item is not selected any
2118 // more, see #12229.
2123 if ( IsHighlighted(m_current
) )
2124 flags
|= wxCONTROL_SELECTED
;
2126 wxRendererNative::Get().
2127 DrawFocusRect(this, dc
, GetLineHighlightRect(m_current
), flags
);
2129 #endif // !__WXMAC__
2132 void wxListMainWindow::HighlightAll( bool on
)
2134 if ( IsSingleSel() )
2136 wxASSERT_MSG( !on
, wxT("can't do this in a single selection control") );
2138 // we just have one item to turn off
2139 if ( HasCurrent() && IsHighlighted(m_current
) )
2141 HighlightLine(m_current
, false);
2142 RefreshLine(m_current
);
2145 else // multi selection
2148 HighlightLines(0, GetItemCount() - 1, on
);
2152 void wxListMainWindow::OnChildFocus(wxChildFocusEvent
& WXUNUSED(event
))
2154 // Do nothing here. This prevents the default handler in wxScrolledWindow
2155 // from needlessly scrolling the window when the edit control is
2156 // dismissed. See ticket #9563.
2159 void wxListMainWindow::SendNotify( size_t line
,
2160 wxEventType command
,
2161 const wxPoint
& point
)
2163 wxListEvent
le( command
, GetParent()->GetId() );
2164 le
.SetEventObject( GetParent() );
2166 le
.m_item
.m_itemId
=
2167 le
.m_itemIndex
= line
;
2169 // set only for events which have position
2170 if ( point
!= wxDefaultPosition
)
2171 le
.m_pointDrag
= point
;
2173 // don't try to get the line info for virtual list controls: the main
2174 // program has it anyhow and if we did it would result in accessing all
2175 // the lines, even those which are not visible now and this is precisely
2176 // what we're trying to avoid
2179 if ( line
!= (size_t)-1 )
2181 GetLine(line
)->GetItem( 0, le
.m_item
);
2183 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2185 //else: there may be no more such item
2187 GetParent()->GetEventHandler()->ProcessEvent( le
);
2190 void wxListMainWindow::ChangeCurrent(size_t current
)
2192 m_current
= current
;
2194 // as the current item changed, we shouldn't start editing it when the
2195 // "slow click" timer expires as the click happened on another item
2196 if ( m_renameTimer
->IsRunning() )
2197 m_renameTimer
->Stop();
2199 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2202 wxTextCtrl
*wxListMainWindow::EditLabel(long item
, wxClassInfo
* textControlClass
)
2204 wxCHECK_MSG( (item
>= 0) && ((size_t)item
< GetItemCount()), NULL
,
2205 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2207 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
2208 wxT("EditLabel() needs a text control") );
2210 size_t itemEdit
= (size_t)item
;
2212 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2213 le
.SetEventObject( GetParent() );
2214 le
.m_item
.m_itemId
=
2215 le
.m_itemIndex
= item
;
2216 wxListLineData
*data
= GetLine(itemEdit
);
2217 wxCHECK_MSG( data
, NULL
, wxT("invalid index in EditLabel()") );
2218 data
->GetItem( 0, le
.m_item
);
2220 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2222 // vetoed by user code
2226 // We have to call this here because the label in question might just have
2227 // been added and no screen update taken place.
2230 // TODO: use wxTheApp->SafeYieldFor(NULL, wxEVT_CATEGORY_UI) instead
2231 // so that no pending events may change the item count (see below)
2232 // IMPORTANT: needs to be tested!
2235 // Pending events dispatched by wxSafeYield might have changed the item
2237 if ( (size_t)item
>= GetItemCount() )
2241 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
2242 m_textctrlWrapper
= new wxListTextCtrlWrapper(this, text
, item
);
2243 return m_textctrlWrapper
->GetText();
2246 void wxListMainWindow::OnRenameTimer()
2248 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2250 EditLabel( m_current
);
2253 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2255 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2256 le
.SetEventObject( GetParent() );
2257 le
.m_item
.m_itemId
=
2258 le
.m_itemIndex
= itemEdit
;
2260 wxListLineData
*data
= GetLine(itemEdit
);
2262 wxCHECK_MSG( data
, false, wxT("invalid index in OnRenameAccept()") );
2264 data
->GetItem( 0, le
.m_item
);
2265 le
.m_item
.m_text
= value
;
2266 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2270 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2272 // let owner know that the edit was cancelled
2273 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2275 le
.SetEditCanceled(true);
2277 le
.SetEventObject( GetParent() );
2278 le
.m_item
.m_itemId
=
2279 le
.m_itemIndex
= itemEdit
;
2281 wxListLineData
*data
= GetLine(itemEdit
);
2282 wxCHECK_RET( data
, wxT("invalid index in OnRenameCancelled()") );
2284 data
->GetItem( 0, le
.m_item
);
2285 GetEventHandler()->ProcessEvent( le
);
2288 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2291 // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly
2292 // shutdown the edit control when the mouse is clicked elsewhere on the
2293 // listctrl because the order of events is different (or something like
2294 // that), so explicitly end the edit if it is active.
2295 if ( event
.LeftDown() && m_textctrlWrapper
)
2296 m_textctrlWrapper
->EndEdit(wxListTextCtrlWrapper::End_Accept
);
2299 if ( event
.LeftDown() )
2302 event
.SetEventObject( GetParent() );
2303 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2306 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
2308 // let the base class handle mouse wheel events.
2313 if ( !HasCurrent() || IsEmpty() )
2315 if (event
.RightDown())
2317 SendNotify( (size_t)-1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2319 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2320 GetParent()->GetId(),
2321 ClientToScreen(event
.GetPosition()));
2322 evtCtx
.SetEventObject(GetParent());
2323 GetParent()->GetEventHandler()->ProcessEvent(evtCtx
);
2331 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2332 event
.ButtonDClick()) )
2335 int x
= event
.GetX();
2336 int y
= event
.GetY();
2337 GetListCtrl()->CalcUnscrolledPosition( x
, y
, &x
, &y
);
2339 // where did we hit it (if we did)?
2342 size_t count
= GetItemCount(),
2345 if ( InReportView() )
2347 current
= y
/ GetLineHeight();
2348 if ( current
< count
)
2349 hitResult
= HitTestLine(current
, x
, y
);
2353 // TODO: optimize it too! this is less simple than for report view but
2354 // enumerating all items is still not a way to do it!!
2355 for ( current
= 0; current
< count
; current
++ )
2357 hitResult
= HitTestLine(current
, x
, y
);
2363 // Update drag events counter first as we must do it even if the mouse is
2364 // not on any item right now as we must keep count in case we started
2365 // dragging from the empty control area but continued to do it over a valid
2366 // item -- in this situation we must not start dragging this item.
2367 if (event
.Dragging())
2372 // The only mouse event that can be generated without any valid item is
2373 // wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK as it can be useful to have a global
2374 // popup menu for the list control itself which should be shown even when
2375 // the user clicks outside of any item.
2378 // outside of any item
2379 if (event
.RightDown())
2381 SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2383 wxContextMenuEvent
evtCtx(
2385 GetParent()->GetId(),
2386 ClientToScreen(event
.GetPosition()));
2387 evtCtx
.SetEventObject(GetParent());
2388 GetParent()->GetEventHandler()->ProcessEvent(evtCtx
);
2392 // reset the selection and bail out
2393 HighlightAll(false);
2399 if ( event
.Dragging() )
2401 if (m_dragCount
== 1)
2403 // we have to report the raw, physical coords as we want to be
2404 // able to call HitTest(event.m_pointDrag) from the user code to
2405 // get the item being dragged
2406 m_dragStart
= event
.GetPosition();
2409 if (m_dragCount
!= 3)
2412 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2413 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2415 wxListEvent
le( command
, GetParent()->GetId() );
2416 le
.SetEventObject( GetParent() );
2417 le
.m_item
.m_itemId
=
2418 le
.m_itemIndex
= m_lineLastClicked
;
2419 le
.m_pointDrag
= m_dragStart
;
2420 GetParent()->GetEventHandler()->ProcessEvent( le
);
2425 bool forceClick
= false;
2426 if (event
.ButtonDClick())
2428 if ( m_renameTimer
->IsRunning() )
2429 m_renameTimer
->Stop();
2431 m_lastOnSame
= false;
2433 if ( current
== m_lineLastClicked
)
2435 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2441 // The first click was on another item, so don't interpret this as
2442 // a double click, but as a simple click instead
2449 if (m_lineSelectSingleOnUp
!= (size_t)-1)
2451 // select single line
2452 HighlightAll( false );
2453 ReverseHighlight(m_lineSelectSingleOnUp
);
2458 if ((current
== m_current
) &&
2459 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2460 HasFlag(wxLC_EDIT_LABELS
) )
2462 if ( !InReportView() ||
2463 GetLineLabelRect(current
).Contains(x
, y
) )
2465 int dclick
= wxSystemSettings::GetMetric(wxSYS_DCLICK_MSEC
);
2466 m_renameTimer
->Start(dclick
> 0 ? dclick
: 250, true);
2471 m_lastOnSame
= false;
2472 m_lineSelectSingleOnUp
= (size_t)-1;
2476 // This is necessary, because after a DnD operation in
2477 // from and to ourself, the up event is swallowed by the
2478 // DnD code. So on next non-up event (which means here and
2479 // now) m_lineSelectSingleOnUp should be reset.
2480 m_lineSelectSingleOnUp
= (size_t)-1;
2482 if (event
.RightDown())
2484 m_lineBeforeLastClicked
= m_lineLastClicked
;
2485 m_lineLastClicked
= current
;
2487 // If the item is already selected, do not update the selection.
2488 // Multi-selections should not be cleared if a selected item is clicked.
2489 if (!IsHighlighted(current
))
2491 HighlightAll(false);
2492 ChangeCurrent(current
);
2493 ReverseHighlight(m_current
);
2496 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2498 // Allow generation of context menu event
2501 else if (event
.MiddleDown())
2503 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
2505 else if ( event
.LeftDown() || forceClick
)
2507 m_lineBeforeLastClicked
= m_lineLastClicked
;
2508 m_lineLastClicked
= current
;
2510 size_t oldCurrent
= m_current
;
2511 bool oldWasSelected
= IsHighlighted(m_current
);
2513 bool cmdModifierDown
= event
.CmdDown();
2514 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
2516 if ( IsSingleSel() || !IsHighlighted(current
) )
2518 HighlightAll( false );
2520 ChangeCurrent(current
);
2522 ReverseHighlight(m_current
);
2524 else // multi sel & current is highlighted & no mod keys
2526 m_lineSelectSingleOnUp
= current
;
2527 ChangeCurrent(current
); // change focus
2530 else // multi sel & either ctrl or shift is down
2532 if (cmdModifierDown
)
2534 ChangeCurrent(current
);
2536 ReverseHighlight(m_current
);
2538 else if (event
.ShiftDown())
2540 ChangeCurrent(current
);
2542 size_t lineFrom
= oldCurrent
,
2545 if ( lineTo
< lineFrom
)
2548 lineFrom
= m_current
;
2551 HighlightLines(lineFrom
, lineTo
);
2553 else // !ctrl, !shift
2555 // test in the enclosing if should make it impossible
2556 wxFAIL_MSG( wxT("how did we get here?") );
2560 if (m_current
!= oldCurrent
)
2561 RefreshLine( oldCurrent
);
2563 // forceClick is only set if the previous click was on another item
2564 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
) && oldWasSelected
;
2568 void wxListMainWindow::MoveToItem(size_t item
)
2570 if ( item
== (size_t)-1 )
2573 wxRect rect
= GetLineRect(item
);
2575 int client_w
, client_h
;
2576 GetClientSize( &client_w
, &client_h
);
2578 const int hLine
= GetLineHeight();
2580 int view_x
= SCROLL_UNIT_X
* GetListCtrl()->GetScrollPos( wxHORIZONTAL
);
2581 int view_y
= hLine
* GetListCtrl()->GetScrollPos( wxVERTICAL
);
2583 if ( InReportView() )
2585 // the next we need the range of lines shown it might be different,
2586 // so recalculate it
2587 ResetVisibleLinesRange();
2589 if (rect
.y
< view_y
)
2590 GetListCtrl()->Scroll( -1, rect
.y
/ hLine
);
2591 if (rect
.y
+ rect
.height
+ 5 > view_y
+ client_h
)
2592 GetListCtrl()->Scroll( -1, (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
);
2595 // At least on Mac the visible lines value will get reset inside of
2596 // Scroll *before* it actually scrolls the window because of the
2597 // Update() that happens there, so it will still have the wrong value.
2598 // So let's reset it again and wait for it to be recalculated in the
2599 // next paint event. I would expect this problem to show up in wxGTK
2600 // too but couldn't duplicate it there. Perhaps the order of events
2601 // is different... --Robin
2602 ResetVisibleLinesRange();
2610 if (rect
.x
-view_x
< 5)
2611 sx
= (rect
.x
- 5) / SCROLL_UNIT_X
;
2612 if (rect
.x
+ rect
.width
- 5 > view_x
+ client_w
)
2613 sx
= (rect
.x
+ rect
.width
- client_w
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
;
2615 if (rect
.y
-view_y
< 5)
2616 sy
= (rect
.y
- 5) / hLine
;
2617 if (rect
.y
+ rect
.height
- 5 > view_y
+ client_h
)
2618 sy
= (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
;
2620 GetListCtrl()->Scroll(sx
, sy
);
2624 bool wxListMainWindow::ScrollList(int WXUNUSED(dx
), int dy
)
2626 if ( !InReportView() )
2628 // TODO: this should work in all views but is not implemented now
2633 GetVisibleLinesRange(&top
, &bottom
);
2635 if ( bottom
== (size_t)-1 )
2638 ResetVisibleLinesRange();
2640 int hLine
= GetLineHeight();
2642 GetListCtrl()->Scroll(-1, top
+ dy
/ hLine
);
2645 // see comment in MoveToItem() for why we do this
2646 ResetVisibleLinesRange();
2652 // ----------------------------------------------------------------------------
2653 // keyboard handling
2654 // ----------------------------------------------------------------------------
2656 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
2658 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
2659 wxT("invalid item index in OnArrowChar()") );
2661 size_t oldCurrent
= m_current
;
2663 // in single selection we just ignore Shift as we can't select several
2665 if ( event
.ShiftDown() && !IsSingleSel() )
2667 ChangeCurrent(newCurrent
);
2669 // refresh the old focus to remove it
2670 RefreshLine( oldCurrent
);
2672 // select all the items between the old and the new one
2673 if ( oldCurrent
> newCurrent
)
2675 newCurrent
= oldCurrent
;
2676 oldCurrent
= m_current
;
2679 HighlightLines(oldCurrent
, newCurrent
);
2683 // all previously selected items are unselected unless ctrl is held
2684 // in a multiselection control
2685 if ( !event
.ControlDown() || IsSingleSel() )
2686 HighlightAll(false);
2688 ChangeCurrent(newCurrent
);
2690 // refresh the old focus to remove it
2691 RefreshLine( oldCurrent
);
2693 // in single selection mode we must always have a selected item
2694 if ( !event
.ControlDown() || IsSingleSel() )
2695 HighlightLine( m_current
, true );
2698 RefreshLine( m_current
);
2703 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
2705 wxWindow
*parent
= GetParent();
2707 // propagate the key event upwards
2708 wxKeyEvent
ke(event
);
2709 ke
.SetEventObject( parent
);
2710 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2713 // send a list event
2714 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, parent
->GetId() );
2715 le
.m_item
.m_itemId
=
2716 le
.m_itemIndex
= m_current
;
2718 GetLine(m_current
)->GetItem( 0, le
.m_item
);
2719 le
.m_code
= event
.GetKeyCode();
2720 le
.SetEventObject( parent
);
2721 if (parent
->GetEventHandler()->ProcessEvent( le
))
2727 void wxListMainWindow::OnKeyUp( wxKeyEvent
&event
)
2729 wxWindow
*parent
= GetParent();
2731 // propagate the key event upwards
2732 wxKeyEvent
ke(event
);
2733 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2739 void wxListMainWindow::OnCharHook( wxKeyEvent
&event
)
2741 if ( m_textctrlWrapper
)
2743 // When an in-place editor is active we should ensure that it always
2744 // gets the key events that are special to it.
2745 if ( m_textctrlWrapper
->CheckForEndEditKey(event
) )
2747 // Skip the call to wxEvent::Skip() below.
2755 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
2757 wxWindow
*parent
= GetParent();
2759 // propagate the char event upwards
2760 wxKeyEvent
ke(event
);
2761 ke
.SetEventObject( parent
);
2762 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2765 if ( HandleAsNavigationKey(event
) )
2768 // no item -> nothing to do
2775 // don't use m_linesPerPage directly as it might not be computed yet
2776 const int pageSize
= GetCountPerPage();
2777 wxCHECK_RET( pageSize
, wxT("should have non zero page size") );
2779 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2781 if (event
.GetKeyCode() == WXK_RIGHT
)
2782 event
.m_keyCode
= WXK_LEFT
;
2783 else if (event
.GetKeyCode() == WXK_LEFT
)
2784 event
.m_keyCode
= WXK_RIGHT
;
2787 switch ( event
.GetKeyCode() )
2790 if ( m_current
> 0 )
2791 OnArrowChar( m_current
- 1, event
);
2795 if ( m_current
< (size_t)GetItemCount() - 1 )
2796 OnArrowChar( m_current
+ 1, event
);
2801 OnArrowChar( GetItemCount() - 1, event
);
2806 OnArrowChar( 0, event
);
2811 int steps
= InReportView() ? pageSize
- 1
2812 : m_current
% pageSize
;
2814 int index
= m_current
- steps
;
2818 OnArrowChar( index
, event
);
2824 int steps
= InReportView()
2826 : pageSize
- (m_current
% pageSize
) - 1;
2828 size_t index
= m_current
+ steps
;
2829 size_t count
= GetItemCount();
2830 if ( index
>= count
)
2833 OnArrowChar( index
, event
);
2838 if ( !InReportView() )
2840 int index
= m_current
- pageSize
;
2844 OnArrowChar( index
, event
);
2849 if ( !InReportView() )
2851 size_t index
= m_current
+ pageSize
;
2853 size_t count
= GetItemCount();
2854 if ( index
>= count
)
2857 OnArrowChar( index
, event
);
2862 if ( IsSingleSel() )
2864 if ( event
.ControlDown() )
2866 ReverseHighlight(m_current
);
2868 else // normal space press
2870 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2873 else // multiple selection
2875 ReverseHighlight(m_current
);
2881 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2889 // ----------------------------------------------------------------------------
2891 // ----------------------------------------------------------------------------
2893 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
2897 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
2898 event
.SetEventObject( GetParent() );
2899 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2903 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
2904 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
2905 // which are already drawn correctly resulting in horrible flicker - avoid
2915 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
2919 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
2920 event
.SetEventObject( GetParent() );
2921 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2929 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
2931 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
2933 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2935 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
2937 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2939 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
2941 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2943 else if ( InReportView() && (m_small_image_list
))
2945 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2949 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
2951 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
2953 m_normal_image_list
->GetSize( index
, width
, height
);
2955 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
2957 m_small_image_list
->GetSize( index
, width
, height
);
2959 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
2961 m_small_image_list
->GetSize( index
, width
, height
);
2963 else if ( InReportView() && m_small_image_list
)
2965 m_small_image_list
->GetSize( index
, width
, height
);
2974 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
2978 // calc the spacing from the icon size
2979 int width
= 0, height
= 0;
2981 if ((imageList
) && (imageList
->GetImageCount()) )
2982 imageList
->GetSize(0, width
, height
);
2984 if (which
== wxIMAGE_LIST_NORMAL
)
2986 m_normal_image_list
= imageList
;
2987 m_normal_spacing
= width
+ 8;
2990 if (which
== wxIMAGE_LIST_SMALL
)
2992 m_small_image_list
= imageList
;
2993 m_small_spacing
= width
+ 14;
2994 m_lineHeight
= 0; // ensure that the line height will be recalc'd
2998 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3002 m_small_spacing
= spacing
;
3004 m_normal_spacing
= spacing
;
3007 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3009 return isSmall
? m_small_spacing
: m_normal_spacing
;
3012 // ----------------------------------------------------------------------------
3014 // ----------------------------------------------------------------------------
3017 wxListMainWindow::ComputeMinHeaderWidth(const wxListHeaderData
* column
) const
3019 wxClientDC
dc(const_cast<wxListMainWindow
*>(this));
3021 int width
= dc
.GetTextExtent(column
->GetText()).x
+ AUTOSIZE_COL_MARGIN
;
3023 width
+= 2*EXTRA_WIDTH
;
3025 // check for column header's image availability
3026 const int image
= column
->GetImage();
3029 if ( m_small_image_list
)
3032 m_small_image_list
->GetSize(image
, ix
, iy
);
3033 width
+= ix
+ HEADER_IMAGE_MARGIN_IN_REPORT_MODE
;
3040 void wxListMainWindow::SetColumn( int col
, const wxListItem
&item
)
3042 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3044 wxCHECK_RET( node
, wxT("invalid column index in SetColumn") );
3046 wxListHeaderData
*column
= node
->GetData();
3047 column
->SetItem( item
);
3049 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3050 column
->SetWidth(ComputeMinHeaderWidth(column
));
3052 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3054 headerWin
->m_dirty
= true;
3058 // invalidate it as it has to be recalculated
3062 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3064 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3065 wxT("invalid column index") );
3067 wxCHECK_RET( InReportView(),
3068 wxT("SetColumnWidth() can only be called in report mode.") );
3072 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3074 headerWin
->m_dirty
= true;
3076 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3077 wxCHECK_RET( node
, wxT("no column?") );
3079 wxListHeaderData
*column
= node
->GetData();
3081 size_t count
= GetItemCount();
3083 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3085 width
= ComputeMinHeaderWidth(column
);
3087 else if ( width
== wxLIST_AUTOSIZE
)
3089 width
= ComputeMinHeaderWidth(column
);
3093 wxClientDC
dc(this);
3094 dc
.SetFont( GetFont() );
3096 int max
= AUTOSIZE_COL_MARGIN
;
3098 // if the cached column width isn't valid then recalculate it
3099 if (m_aColWidths
.Item(col
)->bNeedsUpdate
)
3101 for (size_t i
= 0; i
< count
; i
++)
3103 wxListLineData
*line
= GetLine( i
);
3104 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3106 wxCHECK_RET( n
, wxT("no subitem?") );
3108 wxListItemData
*itemData
= n
->GetData();
3111 itemData
->GetItem(item
);
3112 int itemWidth
= GetItemWidthWithImage(&item
);
3113 if (itemWidth
> max
)
3117 m_aColWidths
.Item(col
)->bNeedsUpdate
= false;
3118 m_aColWidths
.Item(col
)->nMaxWidth
= max
;
3121 max
= m_aColWidths
.Item(col
)->nMaxWidth
+ AUTOSIZE_COL_MARGIN
;
3127 column
->SetWidth( width
);
3129 // invalidate it as it has to be recalculated
3133 int wxListMainWindow::GetHeaderWidth() const
3135 if ( !m_headerWidth
)
3137 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3139 size_t count
= GetColumnCount();
3140 for ( size_t col
= 0; col
< count
; col
++ )
3142 self
->m_headerWidth
+= GetColumnWidth(col
);
3146 return m_headerWidth
;
3149 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3151 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3152 wxCHECK_RET( node
, wxT("invalid column index in GetColumn") );
3154 wxListHeaderData
*column
= node
->GetData();
3155 column
->GetItem( item
);
3158 int wxListMainWindow::GetColumnWidth( int col
) const
3160 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3161 wxCHECK_MSG( node
, 0, wxT("invalid column index") );
3163 wxListHeaderData
*column
= node
->GetData();
3164 return column
->GetWidth();
3167 // ----------------------------------------------------------------------------
3169 // ----------------------------------------------------------------------------
3171 void wxListMainWindow::SetItem( wxListItem
&item
)
3173 long id
= item
.m_itemId
;
3174 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3175 wxT("invalid item index in SetItem") );
3179 wxListLineData
*line
= GetLine((size_t)id
);
3180 line
->SetItem( item
.m_col
, item
);
3182 // Set item state if user wants
3183 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3184 SetItemState( item
.m_itemId
, item
.m_state
, item
.m_state
);
3188 // update the Max Width Cache if needed
3189 int width
= GetItemWidthWithImage(&item
);
3191 if (width
> m_aColWidths
.Item(item
.m_col
)->nMaxWidth
)
3192 m_aColWidths
.Item(item
.m_col
)->nMaxWidth
= width
;
3196 // update the item on screen unless we're going to update everything soon
3201 GetItemRect(id
, rectItem
);
3202 RefreshRect(rectItem
);
3206 void wxListMainWindow::SetItemStateAll(long state
, long stateMask
)
3211 // first deal with selection
3212 if ( stateMask
& wxLIST_STATE_SELECTED
)
3214 // set/clear select state
3217 // optimized version for virtual listctrl.
3218 m_selStore
.SelectRange(0, GetItemCount() - 1, state
== wxLIST_STATE_SELECTED
);
3221 else if ( state
& wxLIST_STATE_SELECTED
)
3223 const long count
= GetItemCount();
3224 for( long i
= 0; i
< count
; i
++ )
3226 SetItemState( i
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
3232 // clear for non virtual (somewhat optimized by using GetNextItem())
3234 while ( (i
= GetNextItem(i
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
)) != -1 )
3236 SetItemState( i
, 0, wxLIST_STATE_SELECTED
);
3241 if ( HasCurrent() && (state
== 0) && (stateMask
& wxLIST_STATE_FOCUSED
) )
3243 // unfocus all: only one item can be focussed, so clearing focus for
3244 // all items is simply clearing focus of the focussed item.
3245 SetItemState(m_current
, state
, stateMask
);
3247 //(setting focus to all items makes no sense, so it is not handled here.)
3250 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3254 SetItemStateAll(state
, stateMask
);
3258 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3259 wxT("invalid list ctrl item index in SetItem") );
3261 size_t oldCurrent
= m_current
;
3262 size_t item
= (size_t)litem
; // safe because of the check above
3264 // do we need to change the focus?
3265 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3267 if ( state
& wxLIST_STATE_FOCUSED
)
3269 // don't do anything if this item is already focused
3270 if ( item
!= m_current
)
3272 ChangeCurrent(item
);
3274 if ( oldCurrent
!= (size_t)-1 )
3276 if ( IsSingleSel() )
3278 HighlightLine(oldCurrent
, false);
3281 RefreshLine(oldCurrent
);
3284 RefreshLine( m_current
);
3289 // don't do anything if this item is not focused
3290 if ( item
== m_current
)
3294 if ( IsSingleSel() )
3296 // we must unselect the old current item as well or we
3297 // might end up with more than one selected item in a
3298 // single selection control
3299 HighlightLine(oldCurrent
, false);
3302 RefreshLine( oldCurrent
);
3307 // do we need to change the selection state?
3308 if ( stateMask
& wxLIST_STATE_SELECTED
)
3310 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3312 if ( IsSingleSel() )
3316 // selecting the item also makes it the focused one in the
3318 if ( m_current
!= item
)
3320 ChangeCurrent(item
);
3322 if ( oldCurrent
!= (size_t)-1 )
3324 HighlightLine( oldCurrent
, false );
3325 RefreshLine( oldCurrent
);
3331 // only the current item may be selected anyhow
3332 if ( item
!= m_current
)
3337 if ( HighlightLine(item
, on
) )
3344 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3346 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3347 wxT("invalid list ctrl item index in GetItemState()") );
3349 int ret
= wxLIST_STATE_DONTCARE
;
3351 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3353 if ( (size_t)item
== m_current
)
3354 ret
|= wxLIST_STATE_FOCUSED
;
3357 if ( stateMask
& wxLIST_STATE_SELECTED
)
3359 if ( IsHighlighted(item
) )
3360 ret
|= wxLIST_STATE_SELECTED
;
3366 void wxListMainWindow::GetItem( wxListItem
&item
) const
3368 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3369 wxT("invalid item index in GetItem") );
3371 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3372 line
->GetItem( item
.m_col
, item
);
3374 // Get item state if user wants it
3375 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3376 item
.m_state
= GetItemState( item
.m_itemId
, wxLIST_STATE_SELECTED
|
3377 wxLIST_STATE_FOCUSED
);
3380 // ----------------------------------------------------------------------------
3382 // ----------------------------------------------------------------------------
3384 size_t wxListMainWindow::GetItemCount() const
3386 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3389 void wxListMainWindow::SetItemCount(long count
)
3391 m_selStore
.SetItemCount(count
);
3392 m_countVirt
= count
;
3394 ResetVisibleLinesRange();
3396 // scrollbars must be reset
3400 int wxListMainWindow::GetSelectedItemCount() const
3402 // deal with the quick case first
3403 if ( IsSingleSel() )
3404 return HasCurrent() ? IsHighlighted(m_current
) : false;
3406 // virtual controls remmebers all its selections itself
3408 return m_selStore
.GetSelectedCount();
3410 // TODO: we probably should maintain the number of items selected even for
3411 // non virtual controls as enumerating all lines is really slow...
3412 size_t countSel
= 0;
3413 size_t count
= GetItemCount();
3414 for ( size_t line
= 0; line
< count
; line
++ )
3416 if ( GetLine(line
)->IsHighlighted() )
3423 // ----------------------------------------------------------------------------
3424 // item position/size
3425 // ----------------------------------------------------------------------------
3427 wxRect
wxListMainWindow::GetViewRect() const
3429 wxASSERT_MSG( !HasFlag(wxLC_LIST
), "not implemented for list view" );
3431 // we need to find the longest/tallest label
3432 wxCoord xMax
= 0, yMax
= 0;
3433 const int count
= GetItemCount();
3436 for ( int i
= 0; i
< count
; i
++ )
3438 // we need logical, not physical, coordinates here, so use
3439 // GetLineRect() instead of GetItemRect()
3440 wxRect r
= GetLineRect(i
);
3442 wxCoord x
= r
.GetRight(),
3452 // some fudge needed to make it look prettier
3453 xMax
+= 2 * EXTRA_BORDER_X
;
3454 yMax
+= 2 * EXTRA_BORDER_Y
;
3456 // account for the scrollbars if necessary
3457 const wxSize sizeAll
= GetClientSize();
3458 if ( xMax
> sizeAll
.x
)
3459 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3460 if ( yMax
> sizeAll
.y
)
3461 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3463 return wxRect(0, 0, xMax
, yMax
);
3467 wxListMainWindow::GetSubItemRect(long item
, long subItem
, wxRect
& rect
) const
3469 wxCHECK_MSG( subItem
== wxLIST_GETSUBITEMRECT_WHOLEITEM
|| InReportView(),
3471 wxT("GetSubItemRect only meaningful in report view") );
3472 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), false,
3473 wxT("invalid item in GetSubItemRect") );
3475 // ensure that we're laid out, otherwise we could return nonsense
3478 wxConstCast(this, wxListMainWindow
)->
3479 RecalculatePositions(true /* no refresh */);
3482 rect
= GetLineRect((size_t)item
);
3484 // Adjust rect to specified column
3485 if ( subItem
!= wxLIST_GETSUBITEMRECT_WHOLEITEM
)
3487 wxCHECK_MSG( subItem
>= 0 && subItem
< GetColumnCount(), false,
3488 wxT("invalid subItem in GetSubItemRect") );
3490 for (int i
= 0; i
< subItem
; i
++)
3492 rect
.x
+= GetColumnWidth(i
);
3494 rect
.width
= GetColumnWidth(subItem
);
3497 GetListCtrl()->CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3502 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3505 GetItemRect(item
, rect
);
3513 // ----------------------------------------------------------------------------
3514 // geometry calculation
3515 // ----------------------------------------------------------------------------
3517 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3519 const int lineHeight
= GetLineHeight();
3521 wxClientDC
dc( this );
3522 dc
.SetFont( GetFont() );
3524 const size_t count
= GetItemCount();
3527 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3528 iconSpacing
= m_normal_spacing
;
3529 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3530 iconSpacing
= m_small_spacing
;
3534 // Note that we do not call GetClientSize() here but
3535 // GetSize() and subtract the border size for sunken
3536 // borders manually. This is technically incorrect,
3537 // but we need to know the client area's size WITHOUT
3538 // scrollbars here. Since we don't know if there are
3539 // any scrollbars, we use GetSize() instead. Another
3540 // solution would be to call SetScrollbars() here to
3541 // remove the scrollbars and call GetClientSize() then,
3542 // but this might result in flicker and - worse - will
3543 // reset the scrollbars to 0 which is not good at all
3544 // if you resize a dialog/window, but don't want to
3545 // reset the window scrolling. RR.
3546 // Furthermore, we actually do NOT subtract the border
3547 // width as 2 pixels is just the extra space which we
3548 // need around the actual content in the window. Other-
3549 // wise the text would e.g. touch the upper border. RR.
3552 GetSize( &clientWidth
, &clientHeight
);
3554 if ( InReportView() )
3556 // all lines have the same height and we scroll one line per step
3557 int entireHeight
= count
* lineHeight
+ LINE_SPACING
;
3559 m_linesPerPage
= clientHeight
/ lineHeight
;
3561 ResetVisibleLinesRange();
3563 GetListCtrl()->SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
3564 GetHeaderWidth() / SCROLL_UNIT_X
,
3565 (entireHeight
+ lineHeight
- 1) / lineHeight
,
3566 GetListCtrl()->GetScrollPos(wxHORIZONTAL
),
3567 GetListCtrl()->GetScrollPos(wxVERTICAL
),
3572 // we have 3 different layout strategies: either layout all items
3573 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
3574 // to arrange them in top to bottom, left to right (don't ask me why
3575 // not the other way round...) order
3576 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
3578 int x
= EXTRA_BORDER_X
;
3579 int y
= EXTRA_BORDER_Y
;
3581 wxCoord widthMax
= 0;
3584 for ( i
= 0; i
< count
; i
++ )
3586 wxListLineData
*line
= GetLine(i
);
3587 line
->CalculateSize( &dc
, iconSpacing
);
3588 line
->SetPosition( x
, y
, iconSpacing
);
3590 wxSize sizeLine
= GetLineSize(i
);
3592 if ( HasFlag(wxLC_ALIGN_TOP
) )
3594 if ( sizeLine
.x
> widthMax
)
3595 widthMax
= sizeLine
.x
;
3599 else // wxLC_ALIGN_LEFT
3601 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
3605 if ( HasFlag(wxLC_ALIGN_TOP
) )
3607 // traverse the items again and tweak their sizes so that they are
3608 // all the same in a row
3609 for ( i
= 0; i
< count
; i
++ )
3611 wxListLineData
*line
= GetLine(i
);
3612 line
->m_gi
->ExtendWidth(widthMax
);
3616 GetListCtrl()->SetScrollbars
3620 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3621 (y
+ lineHeight
) / lineHeight
,
3622 GetListCtrl()->GetScrollPos( wxHORIZONTAL
),
3623 GetListCtrl()->GetScrollPos( wxVERTICAL
),
3627 else // "flowed" arrangement, the most complicated case
3629 // at first we try without any scrollbars, if the items don't fit into
3630 // the window, we recalculate after subtracting the space taken by the
3633 int entireWidth
= 0;
3635 for (int tries
= 0; tries
< 2; tries
++)
3637 entireWidth
= 2 * EXTRA_BORDER_X
;
3641 // Now we have decided that the items do not fit into the
3642 // client area, so we need a scrollbar
3643 entireWidth
+= SCROLL_UNIT_X
;
3646 int x
= EXTRA_BORDER_X
;
3647 int y
= EXTRA_BORDER_Y
;
3649 // Note that "row" here is vertical, i.e. what is called
3650 // "column" in many other places in wxWidgets.
3651 int maxWidthInThisRow
= 0;
3654 int currentlyVisibleLines
= 0;
3656 for (size_t i
= 0; i
< count
; i
++)
3658 currentlyVisibleLines
++;
3659 wxListLineData
*line
= GetLine( i
);
3660 line
->CalculateSize( &dc
, iconSpacing
);
3661 line
->SetPosition( x
, y
, iconSpacing
);
3663 wxSize sizeLine
= GetLineSize( i
);
3665 if ( maxWidthInThisRow
< sizeLine
.x
)
3666 maxWidthInThisRow
= sizeLine
.x
;
3669 if (currentlyVisibleLines
> m_linesPerPage
)
3670 m_linesPerPage
= currentlyVisibleLines
;
3672 // Have we reached the end of the row either because no
3673 // more items would fit or because there are simply no more
3675 if ( y
+ sizeLine
.y
>= clientHeight
3678 // Adjust all items in this row to have the same
3679 // width to ensure that they all align horizontally in
3681 if ( HasFlag(wxLC_ICON
) || HasFlag(wxLC_SMALL_ICON
) )
3683 size_t firstRowLine
= i
- currentlyVisibleLines
+ 1;
3684 for (size_t j
= firstRowLine
; j
<= i
; j
++)
3686 GetLine(j
)->m_gi
->ExtendWidth(maxWidthInThisRow
);
3690 currentlyVisibleLines
= 0;
3692 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
3693 x
+= maxWidthInThisRow
;
3694 entireWidth
+= maxWidthInThisRow
;
3695 maxWidthInThisRow
= 0;
3698 if ( (tries
== 0) &&
3699 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
3701 clientHeight
-= wxSystemSettings::
3702 GetMetric(wxSYS_HSCROLL_Y
);
3707 if ( i
== count
- 1 )
3708 tries
= 1; // Everything fits, no second try required.
3712 GetListCtrl()->SetScrollbars
3716 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3718 GetListCtrl()->GetScrollPos( wxHORIZONTAL
),
3727 // FIXME: why should we call it from here?
3734 void wxListMainWindow::RefreshAll()
3739 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3740 if ( headerWin
&& headerWin
->m_dirty
)
3742 headerWin
->m_dirty
= false;
3743 headerWin
->Refresh();
3747 void wxListMainWindow::UpdateCurrent()
3749 if ( !HasCurrent() && !IsEmpty() )
3753 long wxListMainWindow::GetNextItem( long item
,
3754 int WXUNUSED(geometry
),
3758 max
= GetItemCount();
3759 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
3760 wxT("invalid listctrl index in GetNextItem()") );
3762 // notice that we start with the next item (or the first one if item == -1)
3763 // and this is intentional to allow writing a simple loop to iterate over
3764 // all selected items
3767 // this is not an error because the index was OK initially,
3768 // just no such item
3775 size_t count
= GetItemCount();
3776 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
3778 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
3781 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
3788 // ----------------------------------------------------------------------------
3790 // ----------------------------------------------------------------------------
3792 void wxListMainWindow::DeleteItem( long lindex
)
3794 size_t count
= GetItemCount();
3796 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
3797 wxT("invalid item index in DeleteItem") );
3799 size_t index
= (size_t)lindex
;
3801 // we don't need to adjust the index for the previous items
3802 if ( HasCurrent() && m_current
>= index
)
3804 // if the current item is being deleted, we want the next one to
3805 // become selected - unless there is no next one - so don't adjust
3806 // m_current in this case
3807 if ( m_current
!= index
|| m_current
== count
- 1 )
3811 if ( InReportView() )
3813 // mark the Column Max Width cache as dirty if the items in the line
3814 // we're deleting contain the Max Column Width
3815 wxListLineData
* const line
= GetLine(index
);
3816 wxListItemDataList::compatibility_iterator n
;
3817 wxListItemData
*itemData
;
3821 for (size_t i
= 0; i
< m_columns
.GetCount(); i
++)
3823 n
= line
->m_items
.Item( i
);
3824 itemData
= n
->GetData();
3825 itemData
->GetItem(item
);
3827 itemWidth
= GetItemWidthWithImage(&item
);
3829 if (itemWidth
>= m_aColWidths
.Item(i
)->nMaxWidth
)
3830 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
3833 ResetVisibleLinesRange();
3836 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
, wxDefaultPosition
);
3841 m_selStore
.OnItemDelete(index
);
3845 m_lines
.RemoveAt( index
);
3848 // we need to refresh the (vert) scrollbar as the number of items changed
3851 RefreshAfter(index
);
3854 void wxListMainWindow::DeleteColumn( int col
)
3856 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3858 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
3861 delete node
->GetData();
3862 m_columns
.Erase( node
);
3866 // update all the items
3867 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
3869 wxListLineData
* const line
= GetLine(i
);
3871 // In the following atypical but possible scenario it can be
3872 // legal to call DeleteColumn() but the items may not have any
3874 // 1. In report view, insert a second column.
3875 // 2. Still in report view, add an item with 2 values.
3876 // 3. Switch to an icon (or list) view.
3877 // 4. Add an item -- necessarily with 1 value only.
3878 // 5. Switch back to report view.
3879 // 6. Call DeleteColumn().
3880 // So we need to check for this as otherwise we would simply crash
3882 if ( line
->m_items
.GetCount() <= static_cast<unsigned>(col
) )
3885 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3886 delete n
->GetData();
3887 line
->m_items
.Erase(n
);
3891 if ( InReportView() ) // we only cache max widths when in Report View
3893 delete m_aColWidths
.Item(col
);
3894 m_aColWidths
.RemoveAt(col
);
3897 // invalidate it as it has to be recalculated
3901 void wxListMainWindow::DoDeleteAllItems()
3904 // nothing to do - in particular, don't send the event
3909 // to make the deletion of all items faster, we don't send the
3910 // notifications for each item deletion in this case but only one event
3911 // for all of them: this is compatible with wxMSW and documented in
3912 // DeleteAllItems() description
3914 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
3915 event
.SetEventObject( GetParent() );
3916 GetParent()->GetEventHandler()->ProcessEvent( event
);
3924 if ( InReportView() )
3926 ResetVisibleLinesRange();
3927 for (size_t i
= 0; i
< m_aColWidths
.GetCount(); i
++)
3929 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
3936 void wxListMainWindow::DeleteAllItems()
3940 RecalculatePositions();
3943 void wxListMainWindow::DeleteEverything()
3945 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
3946 WX_CLEAR_ARRAY(m_aColWidths
);
3951 // ----------------------------------------------------------------------------
3952 // scanning for an item
3953 // ----------------------------------------------------------------------------
3955 void wxListMainWindow::EnsureVisible( long index
)
3957 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3958 wxT("invalid index in EnsureVisible") );
3960 // We have to call this here because the label in question might just have
3961 // been added and its position is not known yet
3963 RecalculatePositions(true /* no refresh */);
3965 MoveToItem((size_t)index
);
3968 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool partial
)
3974 wxString str_upper
= str
.Upper();
3978 size_t count
= GetItemCount();
3979 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
3981 wxListLineData
*line
= GetLine(i
);
3982 wxString line_upper
= line
->GetText(0).Upper();
3985 if (line_upper
== str_upper
)
3990 if (line_upper
.find(str_upper
) == 0)
3998 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4004 size_t count
= GetItemCount();
4005 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4007 wxListLineData
*line
= GetLine(i
);
4009 line
->GetItem( 0, item
);
4010 if (item
.m_data
== data
)
4017 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4020 GetVisibleLinesRange( &topItem
, NULL
);
4023 GetItemPosition( GetItemCount() - 1, p
);
4027 long id
= (long)floor( pt
.y
* double(GetItemCount() - topItem
- 1) / p
.y
+ topItem
);
4028 if ( id
>= 0 && id
< (long)GetItemCount() )
4034 long wxListMainWindow::HitTest( int x
, int y
, int &flags
) const
4036 GetListCtrl()->CalcUnscrolledPosition( x
, y
, &x
, &y
);
4038 size_t count
= GetItemCount();
4040 if ( InReportView() )
4042 size_t current
= y
/ GetLineHeight();
4043 if ( current
< count
)
4045 flags
= HitTestLine(current
, x
, y
);
4052 // TODO: optimize it too! this is less simple than for report view but
4053 // enumerating all items is still not a way to do it!!
4054 for ( size_t current
= 0; current
< count
; current
++ )
4056 flags
= HitTestLine(current
, x
, y
);
4065 // ----------------------------------------------------------------------------
4067 // ----------------------------------------------------------------------------
4069 void wxListMainWindow::InsertItem( wxListItem
&item
)
4071 wxASSERT_MSG( !IsVirtual(), wxT("can't be used with virtual control") );
4073 int count
= GetItemCount();
4074 wxCHECK_RET( item
.m_itemId
>= 0, wxT("invalid item index") );
4076 if (item
.m_itemId
> count
)
4077 item
.m_itemId
= count
;
4079 size_t id
= item
.m_itemId
;
4083 if ( InReportView() )
4085 ResetVisibleLinesRange();
4087 const unsigned col
= item
.GetColumn();
4088 wxCHECK_RET( col
< m_aColWidths
.size(), "invalid item column" );
4090 // calculate the width of the item and adjust the max column width
4091 wxColWidthInfo
*pWidthInfo
= m_aColWidths
.Item(col
);
4092 int width
= GetItemWidthWithImage(&item
);
4093 item
.SetWidth(width
);
4094 if (width
> pWidthInfo
->nMaxWidth
)
4095 pWidthInfo
->nMaxWidth
= width
;
4098 wxListLineData
*line
= new wxListLineData(this);
4100 line
->SetItem( item
.m_col
, item
);
4101 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
4103 // Reset the buffered height if it's not big enough for the new image.
4104 int image
= item
.GetImage();
4105 if ( m_small_image_list
&& image
!= -1 && InReportView() )
4107 int imageWidth
, imageHeight
;
4108 m_small_image_list
->GetSize(image
, imageWidth
, imageHeight
);
4110 if ( imageHeight
> m_lineHeight
)
4115 m_lines
.Insert( line
, id
);
4119 // If an item is selected at or below the point of insertion, we need to
4120 // increment the member variables because the current row's index has gone
4122 if ( HasCurrent() && m_current
>= id
)
4125 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4127 RefreshLines(id
, GetItemCount() - 1);
4130 void wxListMainWindow::InsertColumn( long col
, const wxListItem
&item
)
4133 if ( InReportView() )
4135 wxListHeaderData
*column
= new wxListHeaderData( item
);
4136 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4137 column
->SetWidth(ComputeMinHeaderWidth(column
));
4139 wxColWidthInfo
*colWidthInfo
= new wxColWidthInfo();
4141 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4144 wxListHeaderDataList::compatibility_iterator
4145 node
= m_columns
.Item( col
);
4146 m_columns
.Insert( node
, column
);
4147 m_aColWidths
.Insert( colWidthInfo
, col
);
4151 m_columns
.Append( column
);
4152 m_aColWidths
.Add( colWidthInfo
);
4157 // update all the items
4158 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4160 wxListLineData
* const line
= GetLine(i
);
4161 wxListItemData
* const data
= new wxListItemData(this);
4163 line
->m_items
.Insert(col
, data
);
4165 line
->m_items
.Append(data
);
4169 // invalidate it as it has to be recalculated
4174 int wxListMainWindow::GetItemWidthWithImage(wxListItem
* item
)
4177 wxClientDC
dc(this);
4179 dc
.SetFont( GetFont() );
4181 if (item
->GetImage() != -1)
4184 GetImageSize( item
->GetImage(), ix
, iy
);
4188 if (!item
->GetText().empty())
4191 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
4198 // ----------------------------------------------------------------------------
4200 // ----------------------------------------------------------------------------
4202 static wxListCtrlCompare list_ctrl_compare_func_2
;
4203 static wxIntPtr list_ctrl_compare_data
;
4205 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4207 wxListLineData
*line1
= *arg1
;
4208 wxListLineData
*line2
= *arg2
;
4210 line1
->GetItem( 0, item
);
4211 wxUIntPtr data1
= item
.m_data
;
4212 line2
->GetItem( 0, item
);
4213 wxUIntPtr data2
= item
.m_data
;
4214 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4217 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, wxIntPtr data
)
4219 // selections won't make sense any more after sorting the items so reset
4221 HighlightAll(false);
4224 list_ctrl_compare_func_2
= fn
;
4225 list_ctrl_compare_data
= data
;
4226 m_lines
.Sort( list_ctrl_compare_func_1
);
4230 // ----------------------------------------------------------------------------
4232 // ----------------------------------------------------------------------------
4234 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4236 // update our idea of which lines are shown when we redraw the window the
4238 ResetVisibleLinesRange();
4240 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4242 wxGenericListCtrl
* lc
= GetListCtrl();
4243 wxCHECK_RET( lc
, wxT("no listctrl window?") );
4245 if (lc
->m_headerWin
) // when we use wxLC_NO_HEADER, m_headerWin==NULL
4247 lc
->m_headerWin
->Refresh();
4248 lc
->m_headerWin
->Update();
4253 int wxListMainWindow::GetCountPerPage() const
4255 if ( !m_linesPerPage
)
4257 wxConstCast(this, wxListMainWindow
)->
4258 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4261 return m_linesPerPage
;
4264 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4266 wxASSERT_MSG( InReportView(), wxT("this is for report mode only") );
4268 if ( m_lineFrom
== (size_t)-1 )
4270 size_t count
= GetItemCount();
4273 m_lineFrom
= GetListCtrl()->GetScrollPos(wxVERTICAL
);
4275 // this may happen if SetScrollbars() hadn't been called yet
4276 if ( m_lineFrom
>= count
)
4277 m_lineFrom
= count
- 1;
4279 // we redraw one extra line but this is needed to make the redrawing
4280 // logic work when there is a fractional number of lines on screen
4281 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4282 if ( m_lineTo
>= count
)
4283 m_lineTo
= count
- 1;
4285 else // empty control
4288 m_lineTo
= (size_t)-1;
4292 wxASSERT_MSG( IsEmpty() ||
4293 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4294 wxT("GetVisibleLinesRange() returns incorrect result") );
4302 // -------------------------------------------------------------------------------------
4303 // wxGenericListCtrl
4304 // -------------------------------------------------------------------------------------
4306 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4308 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxListCtrlBase
)
4309 EVT_SIZE(wxGenericListCtrl::OnSize
)
4310 EVT_SCROLLWIN(wxGenericListCtrl::OnScroll
)
4313 void wxGenericListCtrl::Init()
4315 m_imageListNormal
= NULL
;
4316 m_imageListSmall
= NULL
;
4317 m_imageListState
= NULL
;
4319 m_ownsImageListNormal
=
4320 m_ownsImageListSmall
=
4321 m_ownsImageListState
= false;
4327 wxGenericListCtrl::~wxGenericListCtrl()
4329 if (m_ownsImageListNormal
)
4330 delete m_imageListNormal
;
4331 if (m_ownsImageListSmall
)
4332 delete m_imageListSmall
;
4333 if (m_ownsImageListState
)
4334 delete m_imageListState
;
4337 void wxGenericListCtrl::CreateOrDestroyHeaderWindowAsNeeded()
4339 bool needs_header
= HasHeader();
4340 bool has_header
= (m_headerWin
!= NULL
);
4342 if (needs_header
== has_header
)
4347 m_headerWin
= new wxListHeaderWindow
4349 this, wxID_ANY
, m_mainWin
,
4354 wxRendererNative::Get().GetHeaderButtonHeight(this)
4359 #if defined( __WXMAC__ )
4360 static wxFont
font( wxOSX_SYSTEM_FONT_SMALL
);
4361 m_headerWin
->SetFont( font
);
4364 GetSizer()->Prepend( m_headerWin
, 0, wxGROW
);
4368 GetSizer()->Detach( m_headerWin
);
4370 wxDELETE(m_headerWin
);
4374 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4379 const wxValidator
&validator
,
4380 const wxString
&name
)
4384 // just like in other ports, an assert will fail if the user doesn't give any type style:
4385 wxASSERT_MSG( (style
& wxLC_MASK_TYPE
),
4386 wxT("wxListCtrl style should have exactly one mode bit set") );
4388 if ( !wxListCtrlBase::Create( parent
, id
, pos
, size
,
4389 style
| wxVSCROLL
| wxHSCROLL
,
4394 style
&= ~wxBORDER_MASK
;
4395 style
|= wxBORDER_THEME
;
4398 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0, 0), size
, style
);
4400 SetTargetWindow( m_mainWin
);
4402 // We use the cursor keys for moving the selection, not scrolling, so call
4403 // this method to ensure wxScrollHelperEvtHandler doesn't catch all
4404 // keyboard events forwarded to us from wxListMainWindow.
4405 DisableKeyboardScrolling();
4407 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
4408 sizer
->Add( m_mainWin
, 1, wxGROW
);
4411 CreateOrDestroyHeaderWindowAsNeeded();
4413 SetInitialSize(size
);
4418 wxBorder
wxGenericListCtrl::GetDefaultBorder() const
4420 return wxBORDER_THEME
;
4423 #if defined(__WXMSW__) && !defined(__WXWINCE__) && !defined(__WXUNIVERSAL__)
4424 WXLRESULT
wxGenericListCtrl::MSWWindowProc(WXUINT nMsg
,
4428 WXLRESULT rc
= wxListCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
4430 // we need to process arrows ourselves for scrolling
4431 if ( nMsg
== WM_GETDLGCODE
)
4433 rc
|= DLGC_WANTARROWS
;
4440 wxSize
wxGenericListCtrl::GetSizeAvailableForScrollTarget(const wxSize
& size
)
4442 wxSize newsize
= size
;
4444 newsize
.y
-= m_headerWin
->GetSize().y
;
4449 void wxGenericListCtrl::OnScroll(wxScrollWinEvent
& event
)
4451 // update our idea of which lines are shown when we redraw
4452 // the window the next time
4453 m_mainWin
->ResetVisibleLinesRange();
4455 HandleOnScroll( event
);
4457 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4459 m_headerWin
->Refresh();
4460 m_headerWin
->Update();
4464 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4466 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4467 wxT("wxLC_VIRTUAL can't be [un]set") );
4469 long flag
= GetWindowStyle();
4473 if (style
& wxLC_MASK_TYPE
)
4474 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4475 if (style
& wxLC_MASK_ALIGN
)
4476 flag
&= ~wxLC_MASK_ALIGN
;
4477 if (style
& wxLC_MASK_SORT
)
4478 flag
&= ~wxLC_MASK_SORT
;
4486 // some styles can be set without recreating everything (as happens in
4487 // SetWindowStyleFlag() which calls wxListMainWindow::DeleteEverything())
4488 if ( !(style
& ~(wxLC_HRULES
| wxLC_VRULES
)) )
4491 wxWindow::SetWindowStyleFlag(flag
);
4495 SetWindowStyleFlag( flag
);
4499 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4501 // we add wxHSCROLL and wxVSCROLL in ctor unconditionally and it never
4502 // makes sense to remove them as we'll always add scrollbars anyhow when
4504 flag
|= wxHSCROLL
| wxVSCROLL
;
4506 const bool wasInReportView
= HasFlag(wxLC_REPORT
);
4508 // update the window style first so that the header is created or destroyed
4509 // corresponding to the new style
4510 wxWindow::SetWindowStyleFlag( flag
);
4514 const bool inReportView
= (flag
& wxLC_REPORT
) != 0;
4515 if ( inReportView
!= wasInReportView
)
4517 // we need to notify the main window about this change as it must
4518 // update its data structures
4519 m_mainWin
->SetReportView(inReportView
);
4522 // m_mainWin->DeleteEverything(); wxMSW doesn't do that
4524 CreateOrDestroyHeaderWindowAsNeeded();
4526 GetSizer()->Layout();
4530 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4532 m_mainWin
->GetColumn( col
, item
);
4536 bool wxGenericListCtrl::SetColumn( int col
, const wxListItem
& item
)
4538 m_mainWin
->SetColumn( col
, item
);
4542 int wxGenericListCtrl::GetColumnWidth( int col
) const
4544 return m_mainWin
->GetColumnWidth( col
);
4547 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4549 m_mainWin
->SetColumnWidth( col
, width
);
4553 int wxGenericListCtrl::GetCountPerPage() const
4555 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4558 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4560 m_mainWin
->GetItem( info
);
4564 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4566 m_mainWin
->SetItem( info
);
4570 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4573 info
.m_text
= label
;
4574 info
.m_mask
= wxLIST_MASK_TEXT
;
4575 info
.m_itemId
= index
;
4579 info
.m_image
= imageId
;
4580 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4583 m_mainWin
->SetItem(info
);
4587 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4589 return m_mainWin
->GetItemState( item
, stateMask
);
4592 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4594 m_mainWin
->SetItemState( item
, state
, stateMask
);
4599 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4601 return SetItemColumnImage(item
, 0, image
);
4605 wxGenericListCtrl::SetItemColumnImage( long item
, long column
, int image
)
4608 info
.m_image
= image
;
4609 info
.m_mask
= wxLIST_MASK_IMAGE
;
4610 info
.m_itemId
= item
;
4611 info
.m_col
= column
;
4612 m_mainWin
->SetItem( info
);
4616 wxString
wxGenericListCtrl::GetItemText( long item
, int col
) const
4618 return m_mainWin
->GetItemText(item
, col
);
4621 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4623 m_mainWin
->SetItemText(item
, str
);
4626 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
4629 info
.m_mask
= wxLIST_MASK_DATA
;
4630 info
.m_itemId
= item
;
4631 m_mainWin
->GetItem( info
);
4635 bool wxGenericListCtrl::SetItemPtrData( long item
, wxUIntPtr data
)
4638 info
.m_mask
= wxLIST_MASK_DATA
;
4639 info
.m_itemId
= item
;
4641 m_mainWin
->SetItem( info
);
4645 wxRect
wxGenericListCtrl::GetViewRect() const
4647 return m_mainWin
->GetViewRect();
4650 bool wxGenericListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
4652 return GetSubItemRect(item
, wxLIST_GETSUBITEMRECT_WHOLEITEM
, rect
, code
);
4655 bool wxGenericListCtrl::GetSubItemRect(long item
,
4658 int WXUNUSED(code
)) const
4660 if ( !m_mainWin
->GetSubItemRect( item
, subItem
, rect
) )
4663 if ( m_mainWin
->HasHeader() )
4664 rect
.y
+= m_headerWin
->GetSize().y
+ 1;
4669 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4671 m_mainWin
->GetItemPosition( item
, pos
);
4675 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4680 int wxGenericListCtrl::GetItemCount() const
4682 return m_mainWin
->GetItemCount();
4685 int wxGenericListCtrl::GetColumnCount() const
4687 return m_mainWin
->GetColumnCount();
4690 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4692 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4695 wxSize
wxGenericListCtrl::GetItemSpacing() const
4697 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
4699 return wxSize(spacing
, spacing
);
4702 #if WXWIN_COMPATIBILITY_2_6
4703 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
4705 return m_mainWin
->GetItemSpacing( isSmall
);
4707 #endif // WXWIN_COMPATIBILITY_2_6
4709 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
4712 info
.m_itemId
= item
;
4713 info
.SetTextColour( col
);
4714 m_mainWin
->SetItem( info
);
4717 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
4720 info
.m_itemId
= item
;
4721 m_mainWin
->GetItem( info
);
4722 return info
.GetTextColour();
4725 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
4728 info
.m_itemId
= item
;
4729 info
.SetBackgroundColour( col
);
4730 m_mainWin
->SetItem( info
);
4733 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
4736 info
.m_itemId
= item
;
4737 m_mainWin
->GetItem( info
);
4738 return info
.GetBackgroundColour();
4741 void wxGenericListCtrl::SetItemFont( long item
, const wxFont
&f
)
4744 info
.m_itemId
= item
;
4746 m_mainWin
->SetItem( info
);
4749 wxFont
wxGenericListCtrl::GetItemFont( long item
) const
4752 info
.m_itemId
= item
;
4753 m_mainWin
->GetItem( info
);
4754 return info
.GetFont();
4757 int wxGenericListCtrl::GetSelectedItemCount() const
4759 return m_mainWin
->GetSelectedItemCount();
4762 wxColour
wxGenericListCtrl::GetTextColour() const
4764 return GetForegroundColour();
4767 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
4769 SetForegroundColour(col
);
4772 long wxGenericListCtrl::GetTopItem() const
4775 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
4779 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
4781 return m_mainWin
->GetNextItem( item
, geom
, state
);
4784 wxImageList
*wxGenericListCtrl::GetImageList(int which
) const
4786 if (which
== wxIMAGE_LIST_NORMAL
)
4787 return m_imageListNormal
;
4788 else if (which
== wxIMAGE_LIST_SMALL
)
4789 return m_imageListSmall
;
4790 else if (which
== wxIMAGE_LIST_STATE
)
4791 return m_imageListState
;
4796 void wxGenericListCtrl::SetImageList( wxImageList
*imageList
, int which
)
4798 if ( which
== wxIMAGE_LIST_NORMAL
)
4800 if (m_ownsImageListNormal
)
4801 delete m_imageListNormal
;
4802 m_imageListNormal
= imageList
;
4803 m_ownsImageListNormal
= false;
4805 else if ( which
== wxIMAGE_LIST_SMALL
)
4807 if (m_ownsImageListSmall
)
4808 delete m_imageListSmall
;
4809 m_imageListSmall
= imageList
;
4810 m_ownsImageListSmall
= false;
4812 else if ( which
== wxIMAGE_LIST_STATE
)
4814 if (m_ownsImageListState
)
4815 delete m_imageListState
;
4816 m_imageListState
= imageList
;
4817 m_ownsImageListState
= false;
4820 m_mainWin
->SetImageList( imageList
, which
);
4823 void wxGenericListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
4825 SetImageList(imageList
, which
);
4826 if ( which
== wxIMAGE_LIST_NORMAL
)
4827 m_ownsImageListNormal
= true;
4828 else if ( which
== wxIMAGE_LIST_SMALL
)
4829 m_ownsImageListSmall
= true;
4830 else if ( which
== wxIMAGE_LIST_STATE
)
4831 m_ownsImageListState
= true;
4834 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
4839 bool wxGenericListCtrl::DeleteItem( long item
)
4841 m_mainWin
->DeleteItem( item
);
4845 bool wxGenericListCtrl::DeleteAllItems()
4847 m_mainWin
->DeleteAllItems();
4851 bool wxGenericListCtrl::DeleteAllColumns()
4853 size_t count
= m_mainWin
->m_columns
.GetCount();
4854 for ( size_t n
= 0; n
< count
; n
++ )
4859 void wxGenericListCtrl::ClearAll()
4861 m_mainWin
->DeleteEverything();
4864 bool wxGenericListCtrl::DeleteColumn( int col
)
4866 m_mainWin
->DeleteColumn( col
);
4868 // if we don't have the header any longer, we need to relayout the window
4869 // if ( !GetColumnCount() )
4872 // Ensure that the non-existent columns are really removed from display.
4878 wxTextCtrl
*wxGenericListCtrl::EditLabel(long item
,
4879 wxClassInfo
* textControlClass
)
4881 return m_mainWin
->EditLabel( item
, textControlClass
);
4884 wxTextCtrl
*wxGenericListCtrl::GetEditControl() const
4886 return m_mainWin
->GetEditControl();
4889 bool wxGenericListCtrl::EnsureVisible( long item
)
4891 m_mainWin
->EnsureVisible( item
);
4895 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
4897 return m_mainWin
->FindItem( start
, str
, partial
);
4900 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
4902 return m_mainWin
->FindItem( start
, data
);
4905 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
4906 int WXUNUSED(direction
))
4908 return m_mainWin
->FindItem( pt
);
4911 // TODO: sub item hit testing
4912 long wxGenericListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *) const
4914 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
4917 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
4919 m_mainWin
->InsertItem( info
);
4920 return info
.m_itemId
;
4923 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
4926 info
.m_text
= label
;
4927 info
.m_mask
= wxLIST_MASK_TEXT
;
4928 info
.m_itemId
= index
;
4929 return InsertItem( info
);
4932 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
4935 info
.m_mask
= wxLIST_MASK_IMAGE
;
4936 info
.m_image
= imageIndex
;
4937 info
.m_itemId
= index
;
4938 return InsertItem( info
);
4941 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
4944 info
.m_text
= label
;
4945 info
.m_image
= imageIndex
;
4946 info
.m_mask
= wxLIST_MASK_TEXT
;
4947 if (imageIndex
> -1)
4948 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4949 info
.m_itemId
= index
;
4950 return InsertItem( info
);
4953 long wxGenericListCtrl::DoInsertColumn( long col
, const wxListItem
&item
)
4955 wxCHECK_MSG( InReportView(), -1, wxT("can't add column in non report mode") );
4957 m_mainWin
->InsertColumn( col
, item
);
4959 // NOTE: if wxLC_NO_HEADER was given, then we are in report view mode but
4960 // still have m_headerWin==NULL
4962 m_headerWin
->Refresh();
4967 bool wxGenericListCtrl::ScrollList( int dx
, int dy
)
4969 return m_mainWin
->ScrollList(dx
, dy
);
4973 // fn is a function which takes 3 long arguments: item1, item2, data.
4974 // item1 is the long data associated with a first item (NOT the index).
4975 // item2 is the long data associated with a second item (NOT the index).
4976 // data is the same value as passed to SortItems.
4977 // The return value is a negative number if the first item should precede the second
4978 // item, a positive number of the second item should precede the first,
4979 // or zero if the two items are equivalent.
4980 // data is arbitrary data to be passed to the sort function.
4982 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, wxIntPtr data
)
4984 m_mainWin
->SortItems( fn
, data
);
4988 // ----------------------------------------------------------------------------
4990 // ----------------------------------------------------------------------------
4992 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
4994 if (!m_mainWin
) return;
4996 // We need to override OnSize so that our scrolled
4997 // window a) does call Layout() to use sizers for
4998 // positioning the controls but b) does not query
4999 // the sizer for their size and use that for setting
5000 // the scrollable area as set that ourselves by
5001 // calling SetScrollbar() further down.
5005 m_mainWin
->RecalculatePositions();
5010 void wxGenericListCtrl::OnInternalIdle()
5012 wxWindow::OnInternalIdle();
5014 if (m_mainWin
->m_dirty
)
5015 m_mainWin
->RecalculatePositions();
5018 // ----------------------------------------------------------------------------
5020 // ----------------------------------------------------------------------------
5022 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5026 m_mainWin
->SetBackgroundColour( colour
);
5027 m_mainWin
->m_dirty
= true;
5033 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5035 if ( !wxWindow::SetForegroundColour( colour
) )
5040 m_mainWin
->SetForegroundColour( colour
);
5041 m_mainWin
->m_dirty
= true;
5045 m_headerWin
->SetForegroundColour( colour
);
5050 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5052 if ( !wxWindow::SetFont( font
) )
5057 m_mainWin
->SetFont( font
);
5058 m_mainWin
->m_dirty
= true;
5063 m_headerWin
->SetFont( font
);
5064 // CalculateAndSetHeaderHeight();
5074 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5077 // Use the same color scheme as wxListBox
5078 return wxListBox::GetClassDefaultAttributes(variant
);
5080 wxUnusedVar(variant
);
5081 wxVisualAttributes attr
;
5082 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOXTEXT
);
5083 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5084 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5089 // ----------------------------------------------------------------------------
5090 // methods forwarded to m_mainWin
5091 // ----------------------------------------------------------------------------
5093 #if wxUSE_DRAG_AND_DROP
5095 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5097 m_mainWin
->SetDropTarget( dropTarget
);
5100 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5102 return m_mainWin
->GetDropTarget();
5107 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5109 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5112 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5114 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5117 wxColour
wxGenericListCtrl::GetForegroundColour() const
5119 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5122 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5125 return m_mainWin
->PopupMenu( menu
, x
, y
);
5131 void wxGenericListCtrl::DoClientToScreen( int *x
, int *y
) const
5133 // It's not clear whether this can be called before m_mainWin is created
5134 // but it seems better to be on the safe side and check.
5136 m_mainWin
->DoClientToScreen(x
, y
);
5138 wxListCtrlBase::DoClientToScreen(x
, y
);
5141 void wxGenericListCtrl::DoScreenToClient( int *x
, int *y
) const
5143 // At least in wxGTK/Univ build this method can be called before m_mainWin
5144 // is created so avoid crashes in this case.
5146 m_mainWin
->DoScreenToClient(x
, y
);
5148 wxListCtrlBase::DoScreenToClient(x
, y
);
5151 void wxGenericListCtrl::SetFocus()
5153 // The test in window.cpp fails as we are a composite
5154 // window, so it checks against "this", but not m_mainWin.
5155 if ( DoFindFocus() != this )
5156 m_mainWin
->SetFocus();
5159 wxSize
wxGenericListCtrl::DoGetBestClientSize() const
5161 // Something is better than nothing even if this is completely arbitrary.
5162 wxSize
sizeBest(100, 80);
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