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 switch ( event
.m_keyCode
)
1468 EndEdit( End_Accept
);
1472 EndEdit( End_Discard
);
1480 void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
1482 if (m_aboutToFinish
)
1484 // auto-grow the textctrl:
1485 wxSize parentSize
= m_owner
->GetSize();
1486 wxPoint myPos
= m_text
->GetPosition();
1487 wxSize mySize
= m_text
->GetSize();
1489 m_text
->GetTextExtent(m_text
->GetValue() + wxT("MM"), &sx
, &sy
);
1490 if (myPos
.x
+ sx
> parentSize
.x
)
1491 sx
= parentSize
.x
- myPos
.x
;
1494 m_text
->SetSize(sx
, wxDefaultCoord
);
1500 void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
1502 if ( !m_aboutToFinish
)
1504 if ( !AcceptChanges() )
1505 m_owner
->OnRenameCancelled( m_itemEdited
);
1510 // We must let the native text control handle focus
1514 //-----------------------------------------------------------------------------
1516 //-----------------------------------------------------------------------------
1518 BEGIN_EVENT_TABLE(wxListMainWindow
, wxWindow
)
1519 EVT_PAINT (wxListMainWindow::OnPaint
)
1520 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
1521 EVT_CHAR (wxListMainWindow::OnChar
)
1522 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
1523 EVT_KEY_UP (wxListMainWindow::OnKeyUp
)
1524 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
1525 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
1526 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
1527 EVT_CHILD_FOCUS (wxListMainWindow::OnChildFocus
)
1530 void wxListMainWindow::Init()
1535 m_lineTo
= (size_t)-1;
1541 m_small_image_list
= NULL
;
1542 m_normal_image_list
= NULL
;
1544 m_small_spacing
= 30;
1545 m_normal_spacing
= 40;
1549 m_isCreated
= false;
1551 m_lastOnSame
= false;
1552 m_renameTimer
= new wxListRenameTimer( this );
1553 m_textctrlWrapper
= NULL
;
1557 m_lineSelectSingleOnUp
=
1558 m_lineBeforeLastClicked
= (size_t)-1;
1561 wxListMainWindow::wxListMainWindow()
1566 m_highlightUnfocusedBrush
= NULL
;
1569 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
1574 const wxString
&name
)
1575 : wxWindow( parent
, id
, pos
, size
, style
, name
)
1579 m_highlightBrush
= new wxBrush
1581 wxSystemSettings::GetColour
1583 wxSYS_COLOUR_HIGHLIGHT
1588 m_highlightUnfocusedBrush
= new wxBrush
1590 wxSystemSettings::GetColour
1592 wxSYS_COLOUR_BTNSHADOW
1597 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
1598 SetOwnForegroundColour( attr
.colFg
);
1599 SetOwnBackgroundColour( attr
.colBg
);
1601 SetOwnFont( attr
.font
);
1604 wxListMainWindow::~wxListMainWindow()
1606 if ( m_textctrlWrapper
)
1607 m_textctrlWrapper
->EndEdit(wxListTextCtrlWrapper::End_Destroy
);
1610 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
1611 WX_CLEAR_ARRAY(m_aColWidths
);
1613 delete m_highlightBrush
;
1614 delete m_highlightUnfocusedBrush
;
1615 delete m_renameTimer
;
1618 void wxListMainWindow::SetReportView(bool inReportView
)
1620 const size_t count
= m_lines
.size();
1621 for ( size_t n
= 0; n
< count
; n
++ )
1623 m_lines
[n
].SetReportView(inReportView
);
1627 void wxListMainWindow::CacheLineData(size_t line
)
1629 wxGenericListCtrl
*listctrl
= GetListCtrl();
1631 wxListLineData
*ld
= GetDummyLine();
1633 size_t countCol
= GetColumnCount();
1634 for ( size_t col
= 0; col
< countCol
; col
++ )
1636 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
1637 ld
->SetImage(col
, listctrl
->OnGetItemColumnImage(line
, col
));
1640 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
1643 wxListLineData
*wxListMainWindow::GetDummyLine() const
1645 wxASSERT_MSG( !IsEmpty(), wxT("invalid line index") );
1646 wxASSERT_MSG( IsVirtual(), wxT("GetDummyLine() shouldn't be called") );
1648 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
1650 // we need to recreate the dummy line if the number of columns in the
1651 // control changed as it would have the incorrect number of fields
1653 if ( !m_lines
.IsEmpty() &&
1654 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
1656 self
->m_lines
.Clear();
1659 if ( m_lines
.IsEmpty() )
1661 wxListLineData
*line
= new wxListLineData(self
);
1662 self
->m_lines
.Add(line
);
1664 // don't waste extra memory -- there never going to be anything
1665 // else/more in this array
1666 self
->m_lines
.Shrink();
1672 // ----------------------------------------------------------------------------
1673 // line geometry (report mode only)
1674 // ----------------------------------------------------------------------------
1676 wxCoord
wxListMainWindow::GetLineHeight() const
1678 // we cache the line height as calling GetTextExtent() is slow
1679 if ( !m_lineHeight
)
1681 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
1683 wxClientDC
dc( self
);
1684 dc
.SetFont( GetFont() );
1687 dc
.GetTextExtent(wxT("H"), NULL
, &y
);
1689 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
1692 m_small_image_list
->GetSize(0, iw
, ih
);
1697 self
->m_lineHeight
= y
+ LINE_SPACING
;
1700 return m_lineHeight
;
1703 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
1705 wxASSERT_MSG( InReportView(), wxT("only works in report mode") );
1707 return LINE_SPACING
+ line
* GetLineHeight();
1710 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
1712 if ( !InReportView() )
1713 return GetLine(line
)->m_gi
->m_rectAll
;
1716 rect
.x
= HEADER_OFFSET_X
;
1717 rect
.y
= GetLineY(line
);
1718 rect
.width
= GetHeaderWidth();
1719 rect
.height
= GetLineHeight();
1724 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
1726 if ( !InReportView() )
1727 return GetLine(line
)->m_gi
->m_rectLabel
;
1730 wxListLineData
*data
= GetLine(line
);
1731 wxListItemDataList::compatibility_iterator node
= data
->m_items
.GetFirst();
1734 wxListItemData
*item
= node
->GetData();
1735 if ( item
->HasImage() )
1738 GetImageSize( item
->GetImage(), ix
, iy
);
1739 image_x
= 3 + ix
+ IMAGE_MARGIN_IN_REPORT_MODE
;
1744 rect
.x
= image_x
+ HEADER_OFFSET_X
;
1745 rect
.y
= GetLineY(line
);
1746 rect
.width
= GetColumnWidth(0) - image_x
;
1747 rect
.height
= GetLineHeight();
1752 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
1754 if ( !InReportView() )
1755 return GetLine(line
)->m_gi
->m_rectIcon
;
1757 wxListLineData
*ld
= GetLine(line
);
1758 wxASSERT_MSG( ld
->HasImage(), wxT("should have an image") );
1761 rect
.x
= HEADER_OFFSET_X
;
1762 rect
.y
= GetLineY(line
);
1763 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
1768 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
1770 return InReportView() ? GetLineRect(line
)
1771 : GetLine(line
)->m_gi
->m_rectHighlight
;
1774 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
1776 wxASSERT_MSG( line
< GetItemCount(), wxT("invalid line in HitTestLine") );
1778 wxListLineData
*ld
= GetLine(line
);
1780 if ( ld
->HasImage() && GetLineIconRect(line
).Contains(x
, y
) )
1781 return wxLIST_HITTEST_ONITEMICON
;
1783 // VS: Testing for "ld->HasText() || InReportView()" instead of
1784 // "ld->HasText()" is needed to make empty lines in report view
1786 if ( ld
->HasText() || InReportView() )
1788 wxRect rect
= InReportView() ? GetLineRect(line
)
1789 : GetLineLabelRect(line
);
1791 if ( rect
.Contains(x
, y
) )
1792 return wxLIST_HITTEST_ONITEMLABEL
;
1798 // ----------------------------------------------------------------------------
1799 // highlight (selection) handling
1800 // ----------------------------------------------------------------------------
1802 bool wxListMainWindow::IsHighlighted(size_t line
) const
1806 return m_selStore
.IsSelected(line
);
1810 wxListLineData
*ld
= GetLine(line
);
1811 wxCHECK_MSG( ld
, false, wxT("invalid index in IsHighlighted") );
1813 return ld
->IsHighlighted();
1817 void wxListMainWindow::HighlightLines( size_t lineFrom
,
1823 wxArrayInt linesChanged
;
1824 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
1827 // meny items changed state, refresh everything
1828 RefreshLines(lineFrom
, lineTo
);
1830 else // only a few items changed state, refresh only them
1832 size_t count
= linesChanged
.GetCount();
1833 for ( size_t n
= 0; n
< count
; n
++ )
1835 RefreshLine(linesChanged
[n
]);
1839 else // iterate over all items in non report view
1841 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
1843 if ( HighlightLine(line
, highlight
) )
1849 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
1855 changed
= m_selStore
.SelectItem(line
, highlight
);
1859 wxListLineData
*ld
= GetLine(line
);
1860 wxCHECK_MSG( ld
, false, wxT("invalid index in HighlightLine") );
1862 changed
= ld
->Highlight(highlight
);
1867 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
1868 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1874 void wxListMainWindow::RefreshLine( size_t line
)
1876 if ( InReportView() )
1878 size_t visibleFrom
, visibleTo
;
1879 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1881 if ( line
< visibleFrom
|| line
> visibleTo
)
1885 wxRect rect
= GetLineRect(line
);
1887 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1888 RefreshRect( rect
);
1891 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
1893 // we suppose that they are ordered by caller
1894 wxASSERT_MSG( lineFrom
<= lineTo
, wxT("indices in disorder") );
1896 wxASSERT_MSG( lineTo
< GetItemCount(), wxT("invalid line range") );
1898 if ( InReportView() )
1900 size_t visibleFrom
, visibleTo
;
1901 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1903 if ( lineFrom
< visibleFrom
)
1904 lineFrom
= visibleFrom
;
1905 if ( lineTo
> visibleTo
)
1910 rect
.y
= GetLineY(lineFrom
);
1911 rect
.width
= GetClientSize().x
;
1912 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
1914 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1915 RefreshRect( rect
);
1919 // TODO: this should be optimized...
1920 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
1927 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
1929 if ( InReportView() )
1931 size_t visibleFrom
, visibleTo
;
1932 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
1934 if ( lineFrom
< visibleFrom
)
1935 lineFrom
= visibleFrom
;
1936 else if ( lineFrom
> visibleTo
)
1941 rect
.y
= GetLineY(lineFrom
);
1942 GetListCtrl()->CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
1944 wxSize size
= GetClientSize();
1945 rect
.width
= size
.x
;
1947 // refresh till the bottom of the window
1948 rect
.height
= size
.y
- rect
.y
;
1950 RefreshRect( rect
);
1954 // TODO: how to do it more efficiently?
1959 void wxListMainWindow::RefreshSelected()
1965 if ( InReportView() )
1967 GetVisibleLinesRange(&from
, &to
);
1972 to
= GetItemCount() - 1;
1975 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
1976 RefreshLine(m_current
);
1978 for ( size_t line
= from
; line
<= to
; line
++ )
1980 // NB: the test works as expected even if m_current == -1
1981 if ( line
!= m_current
&& IsHighlighted(line
) )
1986 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1988 // Note: a wxPaintDC must be constructed even if no drawing is
1989 // done (a Windows requirement).
1990 wxPaintDC
dc( this );
1994 // nothing to draw or not the moment to draw it
1999 RecalculatePositions( false );
2001 GetListCtrl()->PrepareDC( dc
);
2004 GetListCtrl()->CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2006 dc
.SetFont( GetFont() );
2008 if ( InReportView() )
2010 int lineHeight
= GetLineHeight();
2012 size_t visibleFrom
, visibleTo
;
2013 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2016 int xOrig
= dc
.LogicalToDeviceX( 0 );
2017 int yOrig
= dc
.LogicalToDeviceY( 0 );
2019 // tell the caller cache to cache the data
2022 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2023 GetParent()->GetId());
2024 evCache
.SetEventObject( GetParent() );
2025 evCache
.m_oldItemIndex
= visibleFrom
;
2026 evCache
.m_itemIndex
= visibleTo
;
2027 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2030 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2032 rectLine
= GetLineRect(line
);
2035 if ( !IsExposed(rectLine
.x
+ xOrig
, rectLine
.y
+ yOrig
,
2036 rectLine
.width
, rectLine
.height
) )
2038 // don't redraw unaffected lines to avoid flicker
2042 GetLine(line
)->DrawInReportMode( &dc
,
2044 GetLineHighlightRect(line
),
2045 IsHighlighted(line
),
2046 line
== m_current
);
2049 if ( HasFlag(wxLC_HRULES
) )
2051 wxPen
pen(GetRuleColour(), 1, wxPENSTYLE_SOLID
);
2052 wxSize clientSize
= GetClientSize();
2054 size_t i
= visibleFrom
;
2055 if (i
== 0) i
= 1; // Don't draw the first one
2056 for ( ; i
<= visibleTo
; i
++ )
2059 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2060 dc
.DrawLine(0 - dev_x
, i
* lineHeight
,
2061 clientSize
.x
- dev_x
, i
* lineHeight
);
2064 // Draw last horizontal rule
2065 if ( visibleTo
== GetItemCount() - 1 )
2068 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2069 dc
.DrawLine(0 - dev_x
, (m_lineTo
+ 1) * lineHeight
,
2070 clientSize
.x
- dev_x
, (m_lineTo
+ 1) * lineHeight
);
2074 // Draw vertical rules if required
2075 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2077 wxPen
pen(GetRuleColour(), 1, wxPENSTYLE_SOLID
);
2078 wxRect firstItemRect
, lastItemRect
;
2080 GetItemRect(visibleFrom
, firstItemRect
);
2081 GetItemRect(visibleTo
, lastItemRect
);
2082 int x
= firstItemRect
.GetX();
2084 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2086 for (int col
= 0; col
< GetColumnCount(); col
++)
2088 int colWidth
= GetColumnWidth(col
);
2090 int x_pos
= x
- dev_x
;
2091 if (col
< GetColumnCount()-1) x_pos
-= 2;
2092 dc
.DrawLine(x_pos
, firstItemRect
.GetY() - 1 - dev_y
,
2093 x_pos
, lastItemRect
.GetBottom() + 1 - dev_y
);
2099 size_t count
= GetItemCount();
2100 for ( size_t i
= 0; i
< count
; i
++ )
2102 GetLine(i
)->Draw( &dc
, i
== m_current
);
2106 // DrawFocusRect() is unusable under Mac, it draws outside of the highlight
2107 // rectangle somehow and so leaves traces when the item is not selected any
2108 // more, see #12229.
2113 if ( IsHighlighted(m_current
) )
2114 flags
|= wxCONTROL_SELECTED
;
2116 wxRendererNative::Get().
2117 DrawFocusRect(this, dc
, GetLineHighlightRect(m_current
), flags
);
2119 #endif // !__WXMAC__
2122 void wxListMainWindow::HighlightAll( bool on
)
2124 if ( IsSingleSel() )
2126 wxASSERT_MSG( !on
, wxT("can't do this in a single selection control") );
2128 // we just have one item to turn off
2129 if ( HasCurrent() && IsHighlighted(m_current
) )
2131 HighlightLine(m_current
, false);
2132 RefreshLine(m_current
);
2135 else // multi selection
2138 HighlightLines(0, GetItemCount() - 1, on
);
2142 void wxListMainWindow::OnChildFocus(wxChildFocusEvent
& WXUNUSED(event
))
2144 // Do nothing here. This prevents the default handler in wxScrolledWindow
2145 // from needlessly scrolling the window when the edit control is
2146 // dismissed. See ticket #9563.
2149 void wxListMainWindow::SendNotify( size_t line
,
2150 wxEventType command
,
2151 const wxPoint
& point
)
2153 wxListEvent
le( command
, GetParent()->GetId() );
2154 le
.SetEventObject( GetParent() );
2156 le
.m_itemIndex
= line
;
2158 // set only for events which have position
2159 if ( point
!= wxDefaultPosition
)
2160 le
.m_pointDrag
= point
;
2162 // don't try to get the line info for virtual list controls: the main
2163 // program has it anyhow and if we did it would result in accessing all
2164 // the lines, even those which are not visible now and this is precisely
2165 // what we're trying to avoid
2168 if ( line
!= (size_t)-1 )
2170 GetLine(line
)->GetItem( 0, le
.m_item
);
2172 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2174 //else: there may be no more such item
2176 GetParent()->GetEventHandler()->ProcessEvent( le
);
2179 void wxListMainWindow::ChangeCurrent(size_t current
)
2181 m_current
= current
;
2183 // as the current item changed, we shouldn't start editing it when the
2184 // "slow click" timer expires as the click happened on another item
2185 if ( m_renameTimer
->IsRunning() )
2186 m_renameTimer
->Stop();
2188 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2191 wxTextCtrl
*wxListMainWindow::EditLabel(long item
, wxClassInfo
* textControlClass
)
2193 wxCHECK_MSG( (item
>= 0) && ((size_t)item
< GetItemCount()), NULL
,
2194 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2196 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
2197 wxT("EditLabel() needs a text control") );
2199 size_t itemEdit
= (size_t)item
;
2201 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2202 le
.SetEventObject( GetParent() );
2203 le
.m_itemIndex
= item
;
2204 wxListLineData
*data
= GetLine(itemEdit
);
2205 wxCHECK_MSG( data
, NULL
, wxT("invalid index in EditLabel()") );
2206 data
->GetItem( 0, le
.m_item
);
2208 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2210 // vetoed by user code
2214 // We have to call this here because the label in question might just have
2215 // been added and no screen update taken place.
2218 // TODO: use wxTheApp->SafeYieldFor(NULL, wxEVT_CATEGORY_UI) instead
2219 // so that no pending events may change the item count (see below)
2220 // IMPORTANT: needs to be tested!
2223 // Pending events dispatched by wxSafeYield might have changed the item
2225 if ( (size_t)item
>= GetItemCount() )
2229 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
2230 m_textctrlWrapper
= new wxListTextCtrlWrapper(this, text
, item
);
2231 return m_textctrlWrapper
->GetText();
2234 void wxListMainWindow::OnRenameTimer()
2236 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2238 EditLabel( m_current
);
2241 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2243 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2244 le
.SetEventObject( GetParent() );
2245 le
.m_itemIndex
= itemEdit
;
2247 wxListLineData
*data
= GetLine(itemEdit
);
2249 wxCHECK_MSG( data
, false, wxT("invalid index in OnRenameAccept()") );
2251 data
->GetItem( 0, le
.m_item
);
2252 le
.m_item
.m_text
= value
;
2253 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2257 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2259 // let owner know that the edit was cancelled
2260 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2262 le
.SetEditCanceled(true);
2264 le
.SetEventObject( GetParent() );
2265 le
.m_itemIndex
= itemEdit
;
2267 wxListLineData
*data
= GetLine(itemEdit
);
2268 wxCHECK_RET( data
, wxT("invalid index in OnRenameCancelled()") );
2270 data
->GetItem( 0, le
.m_item
);
2271 GetEventHandler()->ProcessEvent( le
);
2274 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2277 // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly
2278 // shutdown the edit control when the mouse is clicked elsewhere on the
2279 // listctrl because the order of events is different (or something like
2280 // that), so explicitly end the edit if it is active.
2281 if ( event
.LeftDown() && m_textctrlWrapper
)
2282 m_textctrlWrapper
->EndEdit(wxListTextCtrlWrapper::End_Accept
);
2285 if ( event
.LeftDown() )
2288 event
.SetEventObject( GetParent() );
2289 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2292 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
2294 // let the base class handle mouse wheel events.
2299 if ( !HasCurrent() || IsEmpty() )
2301 if (event
.RightDown())
2303 SendNotify( (size_t)-1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2305 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2306 GetParent()->GetId(),
2307 ClientToScreen(event
.GetPosition()));
2308 evtCtx
.SetEventObject(GetParent());
2309 GetParent()->GetEventHandler()->ProcessEvent(evtCtx
);
2317 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2318 event
.ButtonDClick()) )
2321 int x
= event
.GetX();
2322 int y
= event
.GetY();
2323 GetListCtrl()->CalcUnscrolledPosition( x
, y
, &x
, &y
);
2325 // where did we hit it (if we did)?
2328 size_t count
= GetItemCount(),
2331 if ( InReportView() )
2333 current
= y
/ GetLineHeight();
2334 if ( current
< count
)
2335 hitResult
= HitTestLine(current
, x
, y
);
2339 // TODO: optimize it too! this is less simple than for report view but
2340 // enumerating all items is still not a way to do it!!
2341 for ( current
= 0; current
< count
; current
++ )
2343 hitResult
= HitTestLine(current
, x
, y
);
2349 if (event
.Dragging())
2351 if (m_dragCount
== 0)
2353 // we have to report the raw, physical coords as we want to be
2354 // able to call HitTest(event.m_pointDrag) from the user code to
2355 // get the item being dragged
2356 m_dragStart
= event
.GetPosition();
2361 if (m_dragCount
!= 3)
2364 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2365 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2367 wxListEvent
le( command
, GetParent()->GetId() );
2368 le
.SetEventObject( GetParent() );
2369 le
.m_itemIndex
= m_lineLastClicked
;
2370 le
.m_pointDrag
= m_dragStart
;
2371 GetParent()->GetEventHandler()->ProcessEvent( le
);
2382 // outside of any item
2383 if (event
.RightDown())
2385 SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2387 wxContextMenuEvent
evtCtx(
2389 GetParent()->GetId(),
2390 ClientToScreen(event
.GetPosition()));
2391 evtCtx
.SetEventObject(GetParent());
2392 GetParent()->GetEventHandler()->ProcessEvent(evtCtx
);
2396 // reset the selection and bail out
2397 HighlightAll(false);
2403 bool forceClick
= false;
2404 if (event
.ButtonDClick())
2406 if ( m_renameTimer
->IsRunning() )
2407 m_renameTimer
->Stop();
2409 m_lastOnSame
= false;
2411 if ( current
== m_lineLastClicked
)
2413 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2419 // The first click was on another item, so don't interpret this as
2420 // a double click, but as a simple click instead
2427 if (m_lineSelectSingleOnUp
!= (size_t)-1)
2429 // select single line
2430 HighlightAll( false );
2431 ReverseHighlight(m_lineSelectSingleOnUp
);
2436 if ((current
== m_current
) &&
2437 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2438 HasFlag(wxLC_EDIT_LABELS
) )
2440 if ( !InReportView() ||
2441 GetLineLabelRect(current
).Contains(x
, y
) )
2443 int dclick
= wxSystemSettings::GetMetric(wxSYS_DCLICK_MSEC
);
2444 m_renameTimer
->Start(dclick
> 0 ? dclick
: 250, true);
2449 m_lastOnSame
= false;
2450 m_lineSelectSingleOnUp
= (size_t)-1;
2454 // This is necessary, because after a DnD operation in
2455 // from and to ourself, the up event is swallowed by the
2456 // DnD code. So on next non-up event (which means here and
2457 // now) m_lineSelectSingleOnUp should be reset.
2458 m_lineSelectSingleOnUp
= (size_t)-1;
2460 if (event
.RightDown())
2462 m_lineBeforeLastClicked
= m_lineLastClicked
;
2463 m_lineLastClicked
= current
;
2465 // If the item is already selected, do not update the selection.
2466 // Multi-selections should not be cleared if a selected item is clicked.
2467 if (!IsHighlighted(current
))
2469 HighlightAll(false);
2470 ChangeCurrent(current
);
2471 ReverseHighlight(m_current
);
2474 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2476 // Allow generation of context menu event
2479 else if (event
.MiddleDown())
2481 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
2483 else if ( event
.LeftDown() || forceClick
)
2485 m_lineBeforeLastClicked
= m_lineLastClicked
;
2486 m_lineLastClicked
= current
;
2488 size_t oldCurrent
= m_current
;
2489 bool oldWasSelected
= IsHighlighted(m_current
);
2491 bool cmdModifierDown
= event
.CmdDown();
2492 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
2494 if ( IsSingleSel() || !IsHighlighted(current
) )
2496 HighlightAll( false );
2498 ChangeCurrent(current
);
2500 ReverseHighlight(m_current
);
2502 else // multi sel & current is highlighted & no mod keys
2504 m_lineSelectSingleOnUp
= current
;
2505 ChangeCurrent(current
); // change focus
2508 else // multi sel & either ctrl or shift is down
2510 if (cmdModifierDown
)
2512 ChangeCurrent(current
);
2514 ReverseHighlight(m_current
);
2516 else if (event
.ShiftDown())
2518 ChangeCurrent(current
);
2520 size_t lineFrom
= oldCurrent
,
2523 if ( lineTo
< lineFrom
)
2526 lineFrom
= m_current
;
2529 HighlightLines(lineFrom
, lineTo
);
2531 else // !ctrl, !shift
2533 // test in the enclosing if should make it impossible
2534 wxFAIL_MSG( wxT("how did we get here?") );
2538 if (m_current
!= oldCurrent
)
2539 RefreshLine( oldCurrent
);
2541 // forceClick is only set if the previous click was on another item
2542 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
) && oldWasSelected
;
2546 void wxListMainWindow::MoveToItem(size_t item
)
2548 if ( item
== (size_t)-1 )
2551 wxRect rect
= GetLineRect(item
);
2553 int client_w
, client_h
;
2554 GetClientSize( &client_w
, &client_h
);
2556 const int hLine
= GetLineHeight();
2558 int view_x
= SCROLL_UNIT_X
* GetListCtrl()->GetScrollPos( wxHORIZONTAL
);
2559 int view_y
= hLine
* GetListCtrl()->GetScrollPos( wxVERTICAL
);
2561 if ( InReportView() )
2563 // the next we need the range of lines shown it might be different,
2564 // so recalculate it
2565 ResetVisibleLinesRange();
2567 if (rect
.y
< view_y
)
2568 GetListCtrl()->Scroll( -1, rect
.y
/ hLine
);
2569 if (rect
.y
+ rect
.height
+ 5 > view_y
+ client_h
)
2570 GetListCtrl()->Scroll( -1, (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
);
2573 // At least on Mac the visible lines value will get reset inside of
2574 // Scroll *before* it actually scrolls the window because of the
2575 // Update() that happens there, so it will still have the wrong value.
2576 // So let's reset it again and wait for it to be recalculated in the
2577 // next paint event. I would expect this problem to show up in wxGTK
2578 // too but couldn't duplicate it there. Perhaps the order of events
2579 // is different... --Robin
2580 ResetVisibleLinesRange();
2588 if (rect
.x
-view_x
< 5)
2589 sx
= (rect
.x
- 5) / SCROLL_UNIT_X
;
2590 if (rect
.x
+ rect
.width
- 5 > view_x
+ client_w
)
2591 sx
= (rect
.x
+ rect
.width
- client_w
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
;
2593 if (rect
.y
-view_y
< 5)
2594 sy
= (rect
.y
- 5) / hLine
;
2595 if (rect
.y
+ rect
.height
- 5 > view_y
+ client_h
)
2596 sy
= (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
;
2598 GetListCtrl()->Scroll(sx
, sy
);
2602 bool wxListMainWindow::ScrollList(int WXUNUSED(dx
), int dy
)
2604 if ( !InReportView() )
2606 // TODO: this should work in all views but is not implemented now
2611 GetVisibleLinesRange(&top
, &bottom
);
2613 if ( bottom
== (size_t)-1 )
2616 ResetVisibleLinesRange();
2618 int hLine
= GetLineHeight();
2620 GetListCtrl()->Scroll(-1, top
+ dy
/ hLine
);
2623 // see comment in MoveToItem() for why we do this
2624 ResetVisibleLinesRange();
2630 // ----------------------------------------------------------------------------
2631 // keyboard handling
2632 // ----------------------------------------------------------------------------
2634 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
2636 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
2637 wxT("invalid item index in OnArrowChar()") );
2639 size_t oldCurrent
= m_current
;
2641 // in single selection we just ignore Shift as we can't select several
2643 if ( event
.ShiftDown() && !IsSingleSel() )
2645 ChangeCurrent(newCurrent
);
2647 // refresh the old focus to remove it
2648 RefreshLine( oldCurrent
);
2650 // select all the items between the old and the new one
2651 if ( oldCurrent
> newCurrent
)
2653 newCurrent
= oldCurrent
;
2654 oldCurrent
= m_current
;
2657 HighlightLines(oldCurrent
, newCurrent
);
2661 // all previously selected items are unselected unless ctrl is held
2662 // in a multiselection control
2663 if ( !event
.ControlDown() || IsSingleSel() )
2664 HighlightAll(false);
2666 ChangeCurrent(newCurrent
);
2668 // refresh the old focus to remove it
2669 RefreshLine( oldCurrent
);
2671 // in single selection mode we must always have a selected item
2672 if ( !event
.ControlDown() || IsSingleSel() )
2673 HighlightLine( m_current
, true );
2676 RefreshLine( m_current
);
2681 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
2683 wxWindow
*parent
= GetParent();
2685 // propagate the key event upwards
2686 wxKeyEvent
ke(event
);
2687 ke
.SetEventObject( parent
);
2688 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2691 // send a list event
2692 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, parent
->GetId() );
2693 le
.m_itemIndex
= m_current
;
2695 GetLine(m_current
)->GetItem( 0, le
.m_item
);
2696 le
.m_code
= event
.GetKeyCode();
2697 le
.SetEventObject( parent
);
2698 if (parent
->GetEventHandler()->ProcessEvent( le
))
2704 void wxListMainWindow::OnKeyUp( wxKeyEvent
&event
)
2706 wxWindow
*parent
= GetParent();
2708 // propagate the key event upwards
2709 wxKeyEvent
ke(event
);
2710 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2716 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
2718 wxWindow
*parent
= GetParent();
2720 // propagate the char event upwards
2721 wxKeyEvent
ke(event
);
2722 ke
.SetEventObject( parent
);
2723 if (parent
->GetEventHandler()->ProcessEvent( ke
))
2726 if ( HandleAsNavigationKey(event
) )
2729 // no item -> nothing to do
2736 // don't use m_linesPerPage directly as it might not be computed yet
2737 const int pageSize
= GetCountPerPage();
2738 wxCHECK_RET( pageSize
, wxT("should have non zero page size") );
2740 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2742 if (event
.GetKeyCode() == WXK_RIGHT
)
2743 event
.m_keyCode
= WXK_LEFT
;
2744 else if (event
.GetKeyCode() == WXK_LEFT
)
2745 event
.m_keyCode
= WXK_RIGHT
;
2748 switch ( event
.GetKeyCode() )
2751 if ( m_current
> 0 )
2752 OnArrowChar( m_current
- 1, event
);
2756 if ( m_current
< (size_t)GetItemCount() - 1 )
2757 OnArrowChar( m_current
+ 1, event
);
2762 OnArrowChar( GetItemCount() - 1, event
);
2767 OnArrowChar( 0, event
);
2772 int steps
= InReportView() ? pageSize
- 1
2773 : m_current
% pageSize
;
2775 int index
= m_current
- steps
;
2779 OnArrowChar( index
, event
);
2785 int steps
= InReportView()
2787 : pageSize
- (m_current
% pageSize
) - 1;
2789 size_t index
= m_current
+ steps
;
2790 size_t count
= GetItemCount();
2791 if ( index
>= count
)
2794 OnArrowChar( index
, event
);
2799 if ( !InReportView() )
2801 int index
= m_current
- pageSize
;
2805 OnArrowChar( index
, event
);
2810 if ( !InReportView() )
2812 size_t index
= m_current
+ pageSize
;
2814 size_t count
= GetItemCount();
2815 if ( index
>= count
)
2818 OnArrowChar( index
, event
);
2823 if ( IsSingleSel() )
2825 if ( event
.ControlDown() )
2827 ReverseHighlight(m_current
);
2829 else // normal space press
2831 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2834 else // multiple selection
2836 ReverseHighlight(m_current
);
2842 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2850 // ----------------------------------------------------------------------------
2852 // ----------------------------------------------------------------------------
2854 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
2858 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
2859 event
.SetEventObject( GetParent() );
2860 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2864 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
2865 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
2866 // which are already drawn correctly resulting in horrible flicker - avoid
2876 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
2880 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
2881 event
.SetEventObject( GetParent() );
2882 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2890 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
2892 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
2894 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2896 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
2898 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2900 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
2902 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2904 else if ( InReportView() && (m_small_image_list
))
2906 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
2910 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
2912 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
2914 m_normal_image_list
->GetSize( index
, width
, height
);
2916 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
2918 m_small_image_list
->GetSize( index
, width
, height
);
2920 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
2922 m_small_image_list
->GetSize( index
, width
, height
);
2924 else if ( InReportView() && m_small_image_list
)
2926 m_small_image_list
->GetSize( index
, width
, height
);
2935 int wxListMainWindow::GetTextLength( const wxString
&s
) const
2937 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
2938 dc
.SetFont( GetFont() );
2941 dc
.GetTextExtent( s
, &lw
, NULL
);
2943 return lw
+ AUTOSIZE_COL_MARGIN
;
2946 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
2950 // calc the spacing from the icon size
2951 int width
= 0, height
= 0;
2953 if ((imageList
) && (imageList
->GetImageCount()) )
2954 imageList
->GetSize(0, width
, height
);
2956 if (which
== wxIMAGE_LIST_NORMAL
)
2958 m_normal_image_list
= imageList
;
2959 m_normal_spacing
= width
+ 8;
2962 if (which
== wxIMAGE_LIST_SMALL
)
2964 m_small_image_list
= imageList
;
2965 m_small_spacing
= width
+ 14;
2966 m_lineHeight
= 0; // ensure that the line height will be recalc'd
2970 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
2974 m_small_spacing
= spacing
;
2976 m_normal_spacing
= spacing
;
2979 int wxListMainWindow::GetItemSpacing( bool isSmall
)
2981 return isSmall
? m_small_spacing
: m_normal_spacing
;
2984 // ----------------------------------------------------------------------------
2986 // ----------------------------------------------------------------------------
2988 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
2990 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
2992 wxCHECK_RET( node
, wxT("invalid column index in SetColumn") );
2994 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
2995 item
.m_width
= GetTextLength( item
.m_text
);
2997 wxListHeaderData
*column
= node
->GetData();
2998 column
->SetItem( item
);
3000 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3002 headerWin
->m_dirty
= true;
3006 // invalidate it as it has to be recalculated
3010 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3012 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3013 wxT("invalid column index") );
3015 wxCHECK_RET( InReportView(),
3016 wxT("SetColumnWidth() can only be called in report mode.") );
3020 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3022 headerWin
->m_dirty
= true;
3024 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3025 wxCHECK_RET( node
, wxT("no column?") );
3027 wxListHeaderData
*column
= node
->GetData();
3029 size_t count
= GetItemCount();
3031 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3033 width
= GetTextLength(column
->GetText());
3034 width
+= 2*EXTRA_WIDTH
;
3036 // check for column header's image availability
3037 const int image
= column
->GetImage();
3040 if ( m_small_image_list
)
3043 m_small_image_list
->GetSize(image
, ix
, iy
);
3044 width
+= ix
+ HEADER_IMAGE_MARGIN_IN_REPORT_MODE
;
3048 else if ( width
== wxLIST_AUTOSIZE
)
3052 // TODO: determine the max width somehow...
3053 width
= WIDTH_COL_DEFAULT
;
3057 wxClientDC
dc(this);
3058 dc
.SetFont( GetFont() );
3060 int max
= AUTOSIZE_COL_MARGIN
;
3062 // if the cached column width isn't valid then recalculate it
3063 if (m_aColWidths
.Item(col
)->bNeedsUpdate
)
3065 for (size_t i
= 0; i
< count
; i
++)
3067 wxListLineData
*line
= GetLine( i
);
3068 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3070 wxCHECK_RET( n
, wxT("no subitem?") );
3072 wxListItemData
*itemData
= n
->GetData();
3075 itemData
->GetItem(item
);
3076 int itemWidth
= GetItemWidthWithImage(&item
);
3077 if (itemWidth
> max
)
3081 m_aColWidths
.Item(col
)->bNeedsUpdate
= false;
3082 m_aColWidths
.Item(col
)->nMaxWidth
= max
;
3085 max
= m_aColWidths
.Item(col
)->nMaxWidth
;
3086 width
= max
+ AUTOSIZE_COL_MARGIN
;
3090 column
->SetWidth( width
);
3092 // invalidate it as it has to be recalculated
3096 int wxListMainWindow::GetHeaderWidth() const
3098 if ( !m_headerWidth
)
3100 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3102 size_t count
= GetColumnCount();
3103 for ( size_t col
= 0; col
< count
; col
++ )
3105 self
->m_headerWidth
+= GetColumnWidth(col
);
3109 return m_headerWidth
;
3112 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3114 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3115 wxCHECK_RET( node
, wxT("invalid column index in GetColumn") );
3117 wxListHeaderData
*column
= node
->GetData();
3118 column
->GetItem( item
);
3121 int wxListMainWindow::GetColumnWidth( int col
) const
3123 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3124 wxCHECK_MSG( node
, 0, wxT("invalid column index") );
3126 wxListHeaderData
*column
= node
->GetData();
3127 return column
->GetWidth();
3130 // ----------------------------------------------------------------------------
3132 // ----------------------------------------------------------------------------
3134 void wxListMainWindow::SetItem( wxListItem
&item
)
3136 long id
= item
.m_itemId
;
3137 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3138 wxT("invalid item index in SetItem") );
3142 wxListLineData
*line
= GetLine((size_t)id
);
3143 line
->SetItem( item
.m_col
, item
);
3145 // Set item state if user wants
3146 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3147 SetItemState( item
.m_itemId
, item
.m_state
, item
.m_state
);
3151 // update the Max Width Cache if needed
3152 int width
= GetItemWidthWithImage(&item
);
3154 if (width
> m_aColWidths
.Item(item
.m_col
)->nMaxWidth
)
3155 m_aColWidths
.Item(item
.m_col
)->nMaxWidth
= width
;
3159 // update the item on screen
3161 GetItemRect(id
, rectItem
);
3162 RefreshRect(rectItem
);
3165 void wxListMainWindow::SetItemStateAll(long state
, long stateMask
)
3170 // first deal with selection
3171 if ( stateMask
& wxLIST_STATE_SELECTED
)
3173 // set/clear select state
3176 // optimized version for virtual listctrl.
3177 m_selStore
.SelectRange(0, GetItemCount() - 1, state
== wxLIST_STATE_SELECTED
);
3180 else if ( state
& wxLIST_STATE_SELECTED
)
3182 const long count
= GetItemCount();
3183 for( long i
= 0; i
< count
; i
++ )
3185 SetItemState( i
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
3191 // clear for non virtual (somewhat optimized by using GetNextItem())
3193 while ( (i
= GetNextItem(i
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
)) != -1 )
3195 SetItemState( i
, 0, wxLIST_STATE_SELECTED
);
3200 if ( HasCurrent() && (state
== 0) && (stateMask
& wxLIST_STATE_FOCUSED
) )
3202 // unfocus all: only one item can be focussed, so clearing focus for
3203 // all items is simply clearing focus of the focussed item.
3204 SetItemState(m_current
, state
, stateMask
);
3206 //(setting focus to all items makes no sense, so it is not handled here.)
3209 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3213 SetItemStateAll(state
, stateMask
);
3217 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3218 wxT("invalid list ctrl item index in SetItem") );
3220 size_t oldCurrent
= m_current
;
3221 size_t item
= (size_t)litem
; // safe because of the check above
3223 // do we need to change the focus?
3224 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3226 if ( state
& wxLIST_STATE_FOCUSED
)
3228 // don't do anything if this item is already focused
3229 if ( item
!= m_current
)
3231 ChangeCurrent(item
);
3233 if ( oldCurrent
!= (size_t)-1 )
3235 if ( IsSingleSel() )
3237 HighlightLine(oldCurrent
, false);
3240 RefreshLine(oldCurrent
);
3243 RefreshLine( m_current
);
3248 // don't do anything if this item is not focused
3249 if ( item
== m_current
)
3253 if ( IsSingleSel() )
3255 // we must unselect the old current item as well or we
3256 // might end up with more than one selected item in a
3257 // single selection control
3258 HighlightLine(oldCurrent
, false);
3261 RefreshLine( oldCurrent
);
3266 // do we need to change the selection state?
3267 if ( stateMask
& wxLIST_STATE_SELECTED
)
3269 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3271 if ( IsSingleSel() )
3275 // selecting the item also makes it the focused one in the
3277 if ( m_current
!= item
)
3279 ChangeCurrent(item
);
3281 if ( oldCurrent
!= (size_t)-1 )
3283 HighlightLine( oldCurrent
, false );
3284 RefreshLine( oldCurrent
);
3290 // only the current item may be selected anyhow
3291 if ( item
!= m_current
)
3296 if ( HighlightLine(item
, on
) )
3303 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3305 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3306 wxT("invalid list ctrl item index in GetItemState()") );
3308 int ret
= wxLIST_STATE_DONTCARE
;
3310 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3312 if ( (size_t)item
== m_current
)
3313 ret
|= wxLIST_STATE_FOCUSED
;
3316 if ( stateMask
& wxLIST_STATE_SELECTED
)
3318 if ( IsHighlighted(item
) )
3319 ret
|= wxLIST_STATE_SELECTED
;
3325 void wxListMainWindow::GetItem( wxListItem
&item
) const
3327 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3328 wxT("invalid item index in GetItem") );
3330 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3331 line
->GetItem( item
.m_col
, item
);
3333 // Get item state if user wants it
3334 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3335 item
.m_state
= GetItemState( item
.m_itemId
, wxLIST_STATE_SELECTED
|
3336 wxLIST_STATE_FOCUSED
);
3339 // ----------------------------------------------------------------------------
3341 // ----------------------------------------------------------------------------
3343 size_t wxListMainWindow::GetItemCount() const
3345 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3348 void wxListMainWindow::SetItemCount(long count
)
3350 m_selStore
.SetItemCount(count
);
3351 m_countVirt
= count
;
3353 ResetVisibleLinesRange();
3355 // scrollbars must be reset
3359 int wxListMainWindow::GetSelectedItemCount() const
3361 // deal with the quick case first
3362 if ( IsSingleSel() )
3363 return HasCurrent() ? IsHighlighted(m_current
) : false;
3365 // virtual controls remmebers all its selections itself
3367 return m_selStore
.GetSelectedCount();
3369 // TODO: we probably should maintain the number of items selected even for
3370 // non virtual controls as enumerating all lines is really slow...
3371 size_t countSel
= 0;
3372 size_t count
= GetItemCount();
3373 for ( size_t line
= 0; line
< count
; line
++ )
3375 if ( GetLine(line
)->IsHighlighted() )
3382 // ----------------------------------------------------------------------------
3383 // item position/size
3384 // ----------------------------------------------------------------------------
3386 wxRect
wxListMainWindow::GetViewRect() const
3388 wxASSERT_MSG( !HasFlag(wxLC_LIST
), "not implemented for list view" );
3390 // we need to find the longest/tallest label
3391 wxCoord xMax
= 0, yMax
= 0;
3392 const int count
= GetItemCount();
3395 for ( int i
= 0; i
< count
; i
++ )
3397 // we need logical, not physical, coordinates here, so use
3398 // GetLineRect() instead of GetItemRect()
3399 wxRect r
= GetLineRect(i
);
3401 wxCoord x
= r
.GetRight(),
3411 // some fudge needed to make it look prettier
3412 xMax
+= 2 * EXTRA_BORDER_X
;
3413 yMax
+= 2 * EXTRA_BORDER_Y
;
3415 // account for the scrollbars if necessary
3416 const wxSize sizeAll
= GetClientSize();
3417 if ( xMax
> sizeAll
.x
)
3418 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3419 if ( yMax
> sizeAll
.y
)
3420 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3422 return wxRect(0, 0, xMax
, yMax
);
3426 wxListMainWindow::GetSubItemRect(long item
, long subItem
, wxRect
& rect
) const
3428 wxCHECK_MSG( subItem
== wxLIST_GETSUBITEMRECT_WHOLEITEM
|| InReportView(),
3430 wxT("GetSubItemRect only meaningful in report view") );
3431 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), false,
3432 wxT("invalid item in GetSubItemRect") );
3434 // ensure that we're laid out, otherwise we could return nonsense
3437 wxConstCast(this, wxListMainWindow
)->
3438 RecalculatePositions(true /* no refresh */);
3441 rect
= GetLineRect((size_t)item
);
3443 // Adjust rect to specified column
3444 if ( subItem
!= wxLIST_GETSUBITEMRECT_WHOLEITEM
)
3446 wxCHECK_MSG( subItem
>= 0 && subItem
< GetColumnCount(), false,
3447 wxT("invalid subItem in GetSubItemRect") );
3449 for (int i
= 0; i
< subItem
; i
++)
3451 rect
.x
+= GetColumnWidth(i
);
3453 rect
.width
= GetColumnWidth(subItem
);
3456 GetListCtrl()->CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3461 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3464 GetItemRect(item
, rect
);
3472 // ----------------------------------------------------------------------------
3473 // geometry calculation
3474 // ----------------------------------------------------------------------------
3476 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3478 const int lineHeight
= GetLineHeight();
3480 wxClientDC
dc( this );
3481 dc
.SetFont( GetFont() );
3483 const size_t count
= GetItemCount();
3486 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3487 iconSpacing
= m_normal_spacing
;
3488 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3489 iconSpacing
= m_small_spacing
;
3493 // Note that we do not call GetClientSize() here but
3494 // GetSize() and subtract the border size for sunken
3495 // borders manually. This is technically incorrect,
3496 // but we need to know the client area's size WITHOUT
3497 // scrollbars here. Since we don't know if there are
3498 // any scrollbars, we use GetSize() instead. Another
3499 // solution would be to call SetScrollbars() here to
3500 // remove the scrollbars and call GetClientSize() then,
3501 // but this might result in flicker and - worse - will
3502 // reset the scrollbars to 0 which is not good at all
3503 // if you resize a dialog/window, but don't want to
3504 // reset the window scrolling. RR.
3505 // Furthermore, we actually do NOT subtract the border
3506 // width as 2 pixels is just the extra space which we
3507 // need around the actual content in the window. Other-
3508 // wise the text would e.g. touch the upper border. RR.
3511 GetSize( &clientWidth
, &clientHeight
);
3513 if ( InReportView() )
3515 // all lines have the same height and we scroll one line per step
3516 int entireHeight
= count
* lineHeight
+ LINE_SPACING
;
3518 m_linesPerPage
= clientHeight
/ lineHeight
;
3520 ResetVisibleLinesRange();
3522 GetListCtrl()->SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
3523 GetHeaderWidth() / SCROLL_UNIT_X
,
3524 (entireHeight
+ lineHeight
- 1) / lineHeight
,
3525 GetListCtrl()->GetScrollPos(wxHORIZONTAL
),
3526 GetListCtrl()->GetScrollPos(wxVERTICAL
),
3531 // we have 3 different layout strategies: either layout all items
3532 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
3533 // to arrange them in top to bottom, left to right (don't ask me why
3534 // not the other way round...) order
3535 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
3537 int x
= EXTRA_BORDER_X
;
3538 int y
= EXTRA_BORDER_Y
;
3540 wxCoord widthMax
= 0;
3543 for ( i
= 0; i
< count
; i
++ )
3545 wxListLineData
*line
= GetLine(i
);
3546 line
->CalculateSize( &dc
, iconSpacing
);
3547 line
->SetPosition( x
, y
, iconSpacing
);
3549 wxSize sizeLine
= GetLineSize(i
);
3551 if ( HasFlag(wxLC_ALIGN_TOP
) )
3553 if ( sizeLine
.x
> widthMax
)
3554 widthMax
= sizeLine
.x
;
3558 else // wxLC_ALIGN_LEFT
3560 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
3564 if ( HasFlag(wxLC_ALIGN_TOP
) )
3566 // traverse the items again and tweak their sizes so that they are
3567 // all the same in a row
3568 for ( i
= 0; i
< count
; i
++ )
3570 wxListLineData
*line
= GetLine(i
);
3571 line
->m_gi
->ExtendWidth(widthMax
);
3575 GetListCtrl()->SetScrollbars
3579 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3580 (y
+ lineHeight
) / lineHeight
,
3581 GetListCtrl()->GetScrollPos( wxHORIZONTAL
),
3582 GetListCtrl()->GetScrollPos( wxVERTICAL
),
3586 else // "flowed" arrangement, the most complicated case
3588 // at first we try without any scrollbars, if the items don't fit into
3589 // the window, we recalculate after subtracting the space taken by the
3592 int entireWidth
= 0;
3594 for (int tries
= 0; tries
< 2; tries
++)
3596 entireWidth
= 2 * EXTRA_BORDER_X
;
3600 // Now we have decided that the items do not fit into the
3601 // client area, so we need a scrollbar
3602 entireWidth
+= SCROLL_UNIT_X
;
3605 int x
= EXTRA_BORDER_X
;
3606 int y
= EXTRA_BORDER_Y
;
3607 int maxWidthInThisRow
= 0;
3610 int currentlyVisibleLines
= 0;
3612 for (size_t i
= 0; i
< count
; i
++)
3614 currentlyVisibleLines
++;
3615 wxListLineData
*line
= GetLine( i
);
3616 line
->CalculateSize( &dc
, iconSpacing
);
3617 line
->SetPosition( x
, y
, iconSpacing
);
3619 wxSize sizeLine
= GetLineSize( i
);
3621 if ( maxWidthInThisRow
< sizeLine
.x
)
3622 maxWidthInThisRow
= sizeLine
.x
;
3625 if (currentlyVisibleLines
> m_linesPerPage
)
3626 m_linesPerPage
= currentlyVisibleLines
;
3628 if ( y
+ sizeLine
.y
>= clientHeight
)
3630 currentlyVisibleLines
= 0;
3632 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
3633 x
+= maxWidthInThisRow
;
3634 entireWidth
+= maxWidthInThisRow
;
3635 maxWidthInThisRow
= 0;
3638 // We have reached the last item.
3639 if ( i
== count
- 1 )
3640 entireWidth
+= maxWidthInThisRow
;
3642 if ( (tries
== 0) &&
3643 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
3645 clientHeight
-= wxSystemSettings::
3646 GetMetric(wxSYS_HSCROLL_Y
);
3651 if ( i
== count
- 1 )
3652 tries
= 1; // Everything fits, no second try required.
3656 GetListCtrl()->SetScrollbars
3660 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3662 GetListCtrl()->GetScrollPos( wxHORIZONTAL
),
3671 // FIXME: why should we call it from here?
3678 void wxListMainWindow::RefreshAll()
3683 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3684 if ( headerWin
&& headerWin
->m_dirty
)
3686 headerWin
->m_dirty
= false;
3687 headerWin
->Refresh();
3691 void wxListMainWindow::UpdateCurrent()
3693 if ( !HasCurrent() && !IsEmpty() )
3697 long wxListMainWindow::GetNextItem( long item
,
3698 int WXUNUSED(geometry
),
3702 max
= GetItemCount();
3703 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
3704 wxT("invalid listctrl index in GetNextItem()") );
3706 // notice that we start with the next item (or the first one if item == -1)
3707 // and this is intentional to allow writing a simple loop to iterate over
3708 // all selected items
3711 // this is not an error because the index was OK initially,
3712 // just no such item
3719 size_t count
= GetItemCount();
3720 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
3722 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
3725 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
3732 // ----------------------------------------------------------------------------
3734 // ----------------------------------------------------------------------------
3736 void wxListMainWindow::DeleteItem( long lindex
)
3738 size_t count
= GetItemCount();
3740 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
3741 wxT("invalid item index in DeleteItem") );
3743 size_t index
= (size_t)lindex
;
3745 // we don't need to adjust the index for the previous items
3746 if ( HasCurrent() && m_current
>= index
)
3748 // if the current item is being deleted, we want the next one to
3749 // become selected - unless there is no next one - so don't adjust
3750 // m_current in this case
3751 if ( m_current
!= index
|| m_current
== count
- 1 )
3755 if ( InReportView() )
3757 // mark the Column Max Width cache as dirty if the items in the line
3758 // we're deleting contain the Max Column Width
3759 wxListLineData
* const line
= GetLine(index
);
3760 wxListItemDataList::compatibility_iterator n
;
3761 wxListItemData
*itemData
;
3765 for (size_t i
= 0; i
< m_columns
.GetCount(); i
++)
3767 n
= line
->m_items
.Item( i
);
3768 itemData
= n
->GetData();
3769 itemData
->GetItem(item
);
3771 itemWidth
= GetItemWidthWithImage(&item
);
3773 if (itemWidth
>= m_aColWidths
.Item(i
)->nMaxWidth
)
3774 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
3777 ResetVisibleLinesRange();
3780 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
, wxDefaultPosition
);
3785 m_selStore
.OnItemDelete(index
);
3789 m_lines
.RemoveAt( index
);
3792 // we need to refresh the (vert) scrollbar as the number of items changed
3795 RefreshAfter(index
);
3798 void wxListMainWindow::DeleteColumn( int col
)
3800 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3802 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
3805 delete node
->GetData();
3806 m_columns
.Erase( node
);
3810 // update all the items
3811 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
3813 wxListLineData
* const line
= GetLine(i
);
3814 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3815 delete n
->GetData();
3816 line
->m_items
.Erase(n
);
3820 if ( InReportView() ) // we only cache max widths when in Report View
3822 delete m_aColWidths
.Item(col
);
3823 m_aColWidths
.RemoveAt(col
);
3826 // invalidate it as it has to be recalculated
3830 void wxListMainWindow::DoDeleteAllItems()
3833 // nothing to do - in particular, don't send the event
3838 // to make the deletion of all items faster, we don't send the
3839 // notifications for each item deletion in this case but only one event
3840 // for all of them: this is compatible with wxMSW and documented in
3841 // DeleteAllItems() description
3843 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
3844 event
.SetEventObject( GetParent() );
3845 GetParent()->GetEventHandler()->ProcessEvent( event
);
3853 if ( InReportView() )
3855 ResetVisibleLinesRange();
3856 for (size_t i
= 0; i
< m_aColWidths
.GetCount(); i
++)
3858 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
3865 void wxListMainWindow::DeleteAllItems()
3869 RecalculatePositions();
3872 void wxListMainWindow::DeleteEverything()
3874 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
3875 WX_CLEAR_ARRAY(m_aColWidths
);
3880 // ----------------------------------------------------------------------------
3881 // scanning for an item
3882 // ----------------------------------------------------------------------------
3884 void wxListMainWindow::EnsureVisible( long index
)
3886 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3887 wxT("invalid index in EnsureVisible") );
3889 // We have to call this here because the label in question might just have
3890 // been added and its position is not known yet
3892 RecalculatePositions(true /* no refresh */);
3894 MoveToItem((size_t)index
);
3897 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool partial
)
3903 wxString str_upper
= str
.Upper();
3907 size_t count
= GetItemCount();
3908 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
3910 wxListLineData
*line
= GetLine(i
);
3911 wxString line_upper
= line
->GetText(0).Upper();
3914 if (line_upper
== str_upper
)
3919 if (line_upper
.find(str_upper
) == 0)
3927 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
3933 size_t count
= GetItemCount();
3934 for (size_t i
= (size_t)pos
; i
< count
; i
++)
3936 wxListLineData
*line
= GetLine(i
);
3938 line
->GetItem( 0, item
);
3939 if (item
.m_data
== data
)
3946 long wxListMainWindow::FindItem( const wxPoint
& pt
)
3949 GetVisibleLinesRange( &topItem
, NULL
);
3952 GetItemPosition( GetItemCount() - 1, p
);
3956 long id
= (long)floor( pt
.y
* double(GetItemCount() - topItem
- 1) / p
.y
+ topItem
);
3957 if ( id
>= 0 && id
< (long)GetItemCount() )
3963 long wxListMainWindow::HitTest( int x
, int y
, int &flags
) const
3965 GetListCtrl()->CalcUnscrolledPosition( x
, y
, &x
, &y
);
3967 size_t count
= GetItemCount();
3969 if ( InReportView() )
3971 size_t current
= y
/ GetLineHeight();
3972 if ( current
< count
)
3974 flags
= HitTestLine(current
, x
, y
);
3981 // TODO: optimize it too! this is less simple than for report view but
3982 // enumerating all items is still not a way to do it!!
3983 for ( size_t current
= 0; current
< count
; current
++ )
3985 flags
= HitTestLine(current
, x
, y
);
3994 // ----------------------------------------------------------------------------
3996 // ----------------------------------------------------------------------------
3998 void wxListMainWindow::InsertItem( wxListItem
&item
)
4000 wxASSERT_MSG( !IsVirtual(), wxT("can't be used with virtual control") );
4002 int count
= GetItemCount();
4003 wxCHECK_RET( item
.m_itemId
>= 0, wxT("invalid item index") );
4005 if (item
.m_itemId
> count
)
4006 item
.m_itemId
= count
;
4008 size_t id
= item
.m_itemId
;
4012 if ( InReportView() )
4014 ResetVisibleLinesRange();
4016 const unsigned col
= item
.GetColumn();
4017 wxCHECK_RET( col
< m_aColWidths
.size(), "invalid item column" );
4019 // calculate the width of the item and adjust the max column width
4020 wxColWidthInfo
*pWidthInfo
= m_aColWidths
.Item(col
);
4021 int width
= GetItemWidthWithImage(&item
);
4022 item
.SetWidth(width
);
4023 if (width
> pWidthInfo
->nMaxWidth
)
4024 pWidthInfo
->nMaxWidth
= width
;
4027 wxListLineData
*line
= new wxListLineData(this);
4029 line
->SetItem( item
.m_col
, item
);
4030 if ( item
.m_mask
& wxLIST_MASK_IMAGE
&& item
.GetImage() != -1)
4032 // Reset the buffered height if it's not big enough for the new image.
4033 if (m_small_image_list
)
4035 int imageWidth
, imageHeight
;
4036 m_small_image_list
->GetSize(item
.GetImage(),
4037 imageWidth
, imageHeight
);
4039 if ( imageHeight
> m_lineHeight
)
4044 m_lines
.Insert( line
, id
);
4048 // If an item is selected at or below the point of insertion, we need to
4049 // increment the member variables because the current row's index has gone
4051 if ( HasCurrent() && m_current
>= id
)
4054 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4056 RefreshLines(id
, GetItemCount() - 1);
4059 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4062 if ( InReportView() )
4064 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4065 item
.m_width
= GetTextLength( item
.m_text
);
4067 wxListHeaderData
*column
= new wxListHeaderData( item
);
4068 wxColWidthInfo
*colWidthInfo
= new wxColWidthInfo();
4070 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4073 wxListHeaderDataList::compatibility_iterator
4074 node
= m_columns
.Item( col
);
4075 m_columns
.Insert( node
, column
);
4076 m_aColWidths
.Insert( colWidthInfo
, col
);
4080 m_columns
.Append( column
);
4081 m_aColWidths
.Add( colWidthInfo
);
4086 // update all the items
4087 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4089 wxListLineData
* const line
= GetLine(i
);
4090 wxListItemData
* const data
= new wxListItemData(this);
4092 line
->m_items
.Insert(col
, data
);
4094 line
->m_items
.Append(data
);
4098 // invalidate it as it has to be recalculated
4103 int wxListMainWindow::GetItemWidthWithImage(wxListItem
* item
)
4106 wxClientDC
dc(this);
4108 dc
.SetFont( GetFont() );
4110 if (item
->GetImage() != -1)
4113 GetImageSize( item
->GetImage(), ix
, iy
);
4117 if (!item
->GetText().empty())
4120 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
4127 // ----------------------------------------------------------------------------
4129 // ----------------------------------------------------------------------------
4131 static wxListCtrlCompare list_ctrl_compare_func_2
;
4132 static wxIntPtr list_ctrl_compare_data
;
4134 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4136 wxListLineData
*line1
= *arg1
;
4137 wxListLineData
*line2
= *arg2
;
4139 line1
->GetItem( 0, item
);
4140 wxUIntPtr data1
= item
.m_data
;
4141 line2
->GetItem( 0, item
);
4142 wxUIntPtr data2
= item
.m_data
;
4143 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4146 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, wxIntPtr data
)
4148 // selections won't make sense any more after sorting the items so reset
4150 HighlightAll(false);
4153 list_ctrl_compare_func_2
= fn
;
4154 list_ctrl_compare_data
= data
;
4155 m_lines
.Sort( list_ctrl_compare_func_1
);
4159 // ----------------------------------------------------------------------------
4161 // ----------------------------------------------------------------------------
4163 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4165 // update our idea of which lines are shown when we redraw the window the
4167 ResetVisibleLinesRange();
4169 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4171 wxGenericListCtrl
* lc
= GetListCtrl();
4172 wxCHECK_RET( lc
, wxT("no listctrl window?") );
4174 if (lc
->m_headerWin
) // when we use wxLC_NO_HEADER, m_headerWin==NULL
4176 lc
->m_headerWin
->Refresh();
4177 lc
->m_headerWin
->Update();
4182 int wxListMainWindow::GetCountPerPage() const
4184 if ( !m_linesPerPage
)
4186 wxConstCast(this, wxListMainWindow
)->
4187 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4190 return m_linesPerPage
;
4193 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4195 wxASSERT_MSG( InReportView(), wxT("this is for report mode only") );
4197 if ( m_lineFrom
== (size_t)-1 )
4199 size_t count
= GetItemCount();
4202 m_lineFrom
= GetListCtrl()->GetScrollPos(wxVERTICAL
);
4204 // this may happen if SetScrollbars() hadn't been called yet
4205 if ( m_lineFrom
>= count
)
4206 m_lineFrom
= count
- 1;
4208 // we redraw one extra line but this is needed to make the redrawing
4209 // logic work when there is a fractional number of lines on screen
4210 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4211 if ( m_lineTo
>= count
)
4212 m_lineTo
= count
- 1;
4214 else // empty control
4217 m_lineTo
= (size_t)-1;
4221 wxASSERT_MSG( IsEmpty() ||
4222 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4223 wxT("GetVisibleLinesRange() returns incorrect result") );
4231 // -------------------------------------------------------------------------------------
4232 // wxGenericListCtrl
4233 // -------------------------------------------------------------------------------------
4235 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4237 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4238 EVT_SIZE(wxGenericListCtrl::OnSize
)
4239 EVT_SCROLLWIN(wxGenericListCtrl::OnScroll
)
4242 void wxGenericListCtrl::Init()
4244 m_imageListNormal
= NULL
;
4245 m_imageListSmall
= NULL
;
4246 m_imageListState
= NULL
;
4248 m_ownsImageListNormal
=
4249 m_ownsImageListSmall
=
4250 m_ownsImageListState
= false;
4256 wxGenericListCtrl::~wxGenericListCtrl()
4258 if (m_ownsImageListNormal
)
4259 delete m_imageListNormal
;
4260 if (m_ownsImageListSmall
)
4261 delete m_imageListSmall
;
4262 if (m_ownsImageListState
)
4263 delete m_imageListState
;
4266 void wxGenericListCtrl::CreateOrDestroyHeaderWindowAsNeeded()
4268 bool needs_header
= HasHeader();
4269 bool has_header
= (m_headerWin
!= NULL
);
4271 if (needs_header
== has_header
)
4276 m_headerWin
= new wxListHeaderWindow
4278 this, wxID_ANY
, m_mainWin
,
4283 wxRendererNative::Get().GetHeaderButtonHeight(this)
4288 #if defined( __WXMAC__ )
4289 static wxFont
font( wxOSX_SYSTEM_FONT_SMALL
);
4290 m_headerWin
->SetFont( font
);
4293 GetSizer()->Prepend( m_headerWin
, 0, wxGROW
);
4297 GetSizer()->Detach( m_headerWin
);
4299 wxDELETE(m_headerWin
);
4303 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4308 const wxValidator
&validator
,
4309 const wxString
&name
)
4313 // just like in other ports, an assert will fail if the user doesn't give any type style:
4314 wxASSERT_MSG( (style
& wxLC_MASK_TYPE
),
4315 wxT("wxListCtrl style should have exactly one mode bit set") );
4317 if ( !wxControl::Create( parent
, id
, pos
, size
, style
|wxVSCROLL
|wxHSCROLL
, validator
, name
) )
4321 style
&= ~wxBORDER_MASK
;
4322 style
|= wxBORDER_THEME
;
4325 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0, 0), size
, style
);
4327 SetTargetWindow( m_mainWin
);
4329 // We use the cursor keys for moving the selection, not scrolling, so call
4330 // this method to ensure wxScrollHelperEvtHandler doesn't catch all
4331 // keyboard events forwarded to us from wxListMainWindow.
4332 DisableKeyboardScrolling();
4334 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
4335 sizer
->Add( m_mainWin
, 1, wxGROW
);
4338 CreateOrDestroyHeaderWindowAsNeeded();
4340 SetInitialSize(size
);
4345 wxBorder
wxGenericListCtrl::GetDefaultBorder() const
4347 return wxBORDER_THEME
;
4350 #if defined(__WXMSW__) && !defined(__WXWINCE__) && !defined(__WXUNIVERSAL__)
4351 WXLRESULT
wxGenericListCtrl::MSWWindowProc(WXUINT nMsg
,
4355 WXLRESULT rc
= wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
4357 // we need to process arrows ourselves for scrolling
4358 if ( nMsg
== WM_GETDLGCODE
)
4360 rc
|= DLGC_WANTARROWS
;
4367 wxSize
wxGenericListCtrl::GetSizeAvailableForScrollTarget(const wxSize
& size
)
4369 wxSize newsize
= size
;
4371 newsize
.y
-= m_headerWin
->GetSize().y
;
4376 void wxGenericListCtrl::OnScroll(wxScrollWinEvent
& event
)
4378 // update our idea of which lines are shown when we redraw
4379 // the window the next time
4380 m_mainWin
->ResetVisibleLinesRange();
4382 HandleOnScroll( event
);
4384 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4386 m_headerWin
->Refresh();
4387 m_headerWin
->Update();
4391 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4393 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4394 wxT("wxLC_VIRTUAL can't be [un]set") );
4396 long flag
= GetWindowStyle();
4400 if (style
& wxLC_MASK_TYPE
)
4401 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4402 if (style
& wxLC_MASK_ALIGN
)
4403 flag
&= ~wxLC_MASK_ALIGN
;
4404 if (style
& wxLC_MASK_SORT
)
4405 flag
&= ~wxLC_MASK_SORT
;
4413 // some styles can be set without recreating everything (as happens in
4414 // SetWindowStyleFlag() which calls wxListMainWindow::DeleteEverything())
4415 if ( !(style
& ~(wxLC_HRULES
| wxLC_VRULES
)) )
4418 wxWindow::SetWindowStyleFlag(flag
);
4422 SetWindowStyleFlag( flag
);
4426 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4428 // we add wxHSCROLL and wxVSCROLL in ctor unconditionally and it never
4429 // makes sense to remove them as we'll always add scrollbars anyhow when
4431 flag
|= wxHSCROLL
| wxVSCROLL
;
4433 const bool wasInReportView
= HasFlag(wxLC_REPORT
);
4435 // update the window style first so that the header is created or destroyed
4436 // corresponding to the new style
4437 wxWindow::SetWindowStyleFlag( flag
);
4441 const bool inReportView
= (flag
& wxLC_REPORT
) != 0;
4442 if ( inReportView
!= wasInReportView
)
4444 // we need to notify the main window about this change as it must
4445 // update its data structures
4446 m_mainWin
->SetReportView(inReportView
);
4449 // m_mainWin->DeleteEverything(); wxMSW doesn't do that
4451 CreateOrDestroyHeaderWindowAsNeeded();
4453 GetSizer()->Layout();
4457 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4459 m_mainWin
->GetColumn( col
, item
);
4463 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
4465 m_mainWin
->SetColumn( col
, item
);
4469 int wxGenericListCtrl::GetColumnWidth( int col
) const
4471 return m_mainWin
->GetColumnWidth( col
);
4474 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4476 m_mainWin
->SetColumnWidth( col
, width
);
4480 int wxGenericListCtrl::GetCountPerPage() const
4482 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4485 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4487 m_mainWin
->GetItem( info
);
4491 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4493 m_mainWin
->SetItem( info
);
4497 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4500 info
.m_text
= label
;
4501 info
.m_mask
= wxLIST_MASK_TEXT
;
4502 info
.m_itemId
= index
;
4506 info
.m_image
= imageId
;
4507 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4510 m_mainWin
->SetItem(info
);
4514 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4516 return m_mainWin
->GetItemState( item
, stateMask
);
4519 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4521 m_mainWin
->SetItemState( item
, state
, stateMask
);
4526 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4528 return SetItemColumnImage(item
, 0, image
);
4532 wxGenericListCtrl::SetItemColumnImage( long item
, long column
, int image
)
4535 info
.m_image
= image
;
4536 info
.m_mask
= wxLIST_MASK_IMAGE
;
4537 info
.m_itemId
= item
;
4538 info
.m_col
= column
;
4539 m_mainWin
->SetItem( info
);
4543 wxString
wxGenericListCtrl::GetItemText( long item
, int col
) const
4545 return m_mainWin
->GetItemText(item
, col
);
4548 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4550 m_mainWin
->SetItemText(item
, str
);
4553 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
4556 info
.m_mask
= wxLIST_MASK_DATA
;
4557 info
.m_itemId
= item
;
4558 m_mainWin
->GetItem( info
);
4562 bool wxGenericListCtrl::SetItemPtrData( long item
, wxUIntPtr data
)
4565 info
.m_mask
= wxLIST_MASK_DATA
;
4566 info
.m_itemId
= item
;
4568 m_mainWin
->SetItem( info
);
4572 wxRect
wxGenericListCtrl::GetViewRect() const
4574 return m_mainWin
->GetViewRect();
4577 bool wxGenericListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
4579 return GetSubItemRect(item
, wxLIST_GETSUBITEMRECT_WHOLEITEM
, rect
, code
);
4582 bool wxGenericListCtrl::GetSubItemRect(long item
,
4585 int WXUNUSED(code
)) const
4587 if ( !m_mainWin
->GetSubItemRect( item
, subItem
, rect
) )
4590 if ( m_mainWin
->HasHeader() )
4591 rect
.y
+= m_headerWin
->GetSize().y
+ 1;
4596 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4598 m_mainWin
->GetItemPosition( item
, pos
);
4602 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4607 int wxGenericListCtrl::GetItemCount() const
4609 return m_mainWin
->GetItemCount();
4612 int wxGenericListCtrl::GetColumnCount() const
4614 return m_mainWin
->GetColumnCount();
4617 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4619 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4622 wxSize
wxGenericListCtrl::GetItemSpacing() const
4624 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
4626 return wxSize(spacing
, spacing
);
4629 #if WXWIN_COMPATIBILITY_2_6
4630 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
4632 return m_mainWin
->GetItemSpacing( isSmall
);
4634 #endif // WXWIN_COMPATIBILITY_2_6
4636 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
4639 info
.m_itemId
= item
;
4640 info
.SetTextColour( col
);
4641 m_mainWin
->SetItem( info
);
4644 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
4647 info
.m_itemId
= item
;
4648 m_mainWin
->GetItem( info
);
4649 return info
.GetTextColour();
4652 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
4655 info
.m_itemId
= item
;
4656 info
.SetBackgroundColour( col
);
4657 m_mainWin
->SetItem( info
);
4660 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
4663 info
.m_itemId
= item
;
4664 m_mainWin
->GetItem( info
);
4665 return info
.GetBackgroundColour();
4668 void wxGenericListCtrl::SetItemFont( long item
, const wxFont
&f
)
4671 info
.m_itemId
= item
;
4673 m_mainWin
->SetItem( info
);
4676 wxFont
wxGenericListCtrl::GetItemFont( long item
) const
4679 info
.m_itemId
= item
;
4680 m_mainWin
->GetItem( info
);
4681 return info
.GetFont();
4684 int wxGenericListCtrl::GetSelectedItemCount() const
4686 return m_mainWin
->GetSelectedItemCount();
4689 wxColour
wxGenericListCtrl::GetTextColour() const
4691 return GetForegroundColour();
4694 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
4696 SetForegroundColour(col
);
4699 long wxGenericListCtrl::GetTopItem() const
4702 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
4706 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
4708 return m_mainWin
->GetNextItem( item
, geom
, state
);
4711 wxImageList
*wxGenericListCtrl::GetImageList(int which
) const
4713 if (which
== wxIMAGE_LIST_NORMAL
)
4714 return m_imageListNormal
;
4715 else if (which
== wxIMAGE_LIST_SMALL
)
4716 return m_imageListSmall
;
4717 else if (which
== wxIMAGE_LIST_STATE
)
4718 return m_imageListState
;
4723 void wxGenericListCtrl::SetImageList( wxImageList
*imageList
, int which
)
4725 if ( which
== wxIMAGE_LIST_NORMAL
)
4727 if (m_ownsImageListNormal
)
4728 delete m_imageListNormal
;
4729 m_imageListNormal
= imageList
;
4730 m_ownsImageListNormal
= false;
4732 else if ( which
== wxIMAGE_LIST_SMALL
)
4734 if (m_ownsImageListSmall
)
4735 delete m_imageListSmall
;
4736 m_imageListSmall
= imageList
;
4737 m_ownsImageListSmall
= false;
4739 else if ( which
== wxIMAGE_LIST_STATE
)
4741 if (m_ownsImageListState
)
4742 delete m_imageListState
;
4743 m_imageListState
= imageList
;
4744 m_ownsImageListState
= false;
4747 m_mainWin
->SetImageList( imageList
, which
);
4750 void wxGenericListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
4752 SetImageList(imageList
, which
);
4753 if ( which
== wxIMAGE_LIST_NORMAL
)
4754 m_ownsImageListNormal
= true;
4755 else if ( which
== wxIMAGE_LIST_SMALL
)
4756 m_ownsImageListSmall
= true;
4757 else if ( which
== wxIMAGE_LIST_STATE
)
4758 m_ownsImageListState
= true;
4761 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
4766 bool wxGenericListCtrl::DeleteItem( long item
)
4768 m_mainWin
->DeleteItem( item
);
4772 bool wxGenericListCtrl::DeleteAllItems()
4774 m_mainWin
->DeleteAllItems();
4778 bool wxGenericListCtrl::DeleteAllColumns()
4780 size_t count
= m_mainWin
->m_columns
.GetCount();
4781 for ( size_t n
= 0; n
< count
; n
++ )
4786 void wxGenericListCtrl::ClearAll()
4788 m_mainWin
->DeleteEverything();
4791 bool wxGenericListCtrl::DeleteColumn( int col
)
4793 m_mainWin
->DeleteColumn( col
);
4795 // if we don't have the header any longer, we need to relayout the window
4796 // if ( !GetColumnCount() )
4801 wxTextCtrl
*wxGenericListCtrl::EditLabel(long item
,
4802 wxClassInfo
* textControlClass
)
4804 return m_mainWin
->EditLabel( item
, textControlClass
);
4807 wxTextCtrl
*wxGenericListCtrl::GetEditControl() const
4809 return m_mainWin
->GetEditControl();
4812 bool wxGenericListCtrl::EnsureVisible( long item
)
4814 m_mainWin
->EnsureVisible( item
);
4818 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
4820 return m_mainWin
->FindItem( start
, str
, partial
);
4823 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
4825 return m_mainWin
->FindItem( start
, data
);
4828 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
4829 int WXUNUSED(direction
))
4831 return m_mainWin
->FindItem( pt
);
4834 // TODO: sub item hit testing
4835 long wxGenericListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *) const
4837 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
4840 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
4842 m_mainWin
->InsertItem( info
);
4843 return info
.m_itemId
;
4846 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
4849 info
.m_text
= label
;
4850 info
.m_mask
= wxLIST_MASK_TEXT
;
4851 info
.m_itemId
= index
;
4852 return InsertItem( info
);
4855 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
4858 info
.m_mask
= wxLIST_MASK_IMAGE
;
4859 info
.m_image
= imageIndex
;
4860 info
.m_itemId
= index
;
4861 return InsertItem( info
);
4864 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
4867 info
.m_text
= label
;
4868 info
.m_image
= imageIndex
;
4869 info
.m_mask
= wxLIST_MASK_TEXT
;
4870 if (imageIndex
> -1)
4871 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4872 info
.m_itemId
= index
;
4873 return InsertItem( info
);
4876 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
4878 wxCHECK_MSG( InReportView(), -1, wxT("can't add column in non report mode") );
4880 m_mainWin
->InsertColumn( col
, item
);
4882 // NOTE: if wxLC_NO_HEADER was given, then we are in report view mode but
4883 // still have m_headerWin==NULL
4885 m_headerWin
->Refresh();
4890 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
4891 int format
, int width
)
4894 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
4895 item
.m_text
= heading
;
4898 item
.m_mask
|= wxLIST_MASK_WIDTH
;
4899 item
.m_width
= width
;
4902 item
.m_format
= format
;
4904 return InsertColumn( col
, item
);
4907 bool wxGenericListCtrl::ScrollList( int dx
, int dy
)
4909 return m_mainWin
->ScrollList(dx
, dy
);
4913 // fn is a function which takes 3 long arguments: item1, item2, data.
4914 // item1 is the long data associated with a first item (NOT the index).
4915 // item2 is the long data associated with a second item (NOT the index).
4916 // data is the same value as passed to SortItems.
4917 // The return value is a negative number if the first item should precede the second
4918 // item, a positive number of the second item should precede the first,
4919 // or zero if the two items are equivalent.
4920 // data is arbitrary data to be passed to the sort function.
4922 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, wxIntPtr data
)
4924 m_mainWin
->SortItems( fn
, data
);
4928 // ----------------------------------------------------------------------------
4930 // ----------------------------------------------------------------------------
4932 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
4934 if (!m_mainWin
) return;
4936 // We need to override OnSize so that our scrolled
4937 // window a) does call Layout() to use sizers for
4938 // positioning the controls but b) does not query
4939 // the sizer for their size and use that for setting
4940 // the scrollable area as set that ourselves by
4941 // calling SetScrollbar() further down.
4945 m_mainWin
->RecalculatePositions();
4950 void wxGenericListCtrl::OnInternalIdle()
4952 wxWindow::OnInternalIdle();
4954 if (m_mainWin
->m_dirty
)
4955 m_mainWin
->RecalculatePositions();
4958 // ----------------------------------------------------------------------------
4960 // ----------------------------------------------------------------------------
4962 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
4966 m_mainWin
->SetBackgroundColour( colour
);
4967 m_mainWin
->m_dirty
= true;
4973 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
4975 if ( !wxWindow::SetForegroundColour( colour
) )
4980 m_mainWin
->SetForegroundColour( colour
);
4981 m_mainWin
->m_dirty
= true;
4985 m_headerWin
->SetForegroundColour( colour
);
4990 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
4992 if ( !wxWindow::SetFont( font
) )
4997 m_mainWin
->SetFont( font
);
4998 m_mainWin
->m_dirty
= true;
5003 m_headerWin
->SetFont( font
);
5004 // CalculateAndSetHeaderHeight();
5014 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5017 // Use the same color scheme as wxListBox
5018 return wxListBox::GetClassDefaultAttributes(variant
);
5020 wxUnusedVar(variant
);
5021 wxVisualAttributes attr
;
5022 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOXTEXT
);
5023 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5024 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5029 // ----------------------------------------------------------------------------
5030 // methods forwarded to m_mainWin
5031 // ----------------------------------------------------------------------------
5033 #if wxUSE_DRAG_AND_DROP
5035 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5037 m_mainWin
->SetDropTarget( dropTarget
);
5040 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5042 return m_mainWin
->GetDropTarget();
5047 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5049 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5052 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5054 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5057 wxColour
wxGenericListCtrl::GetForegroundColour() const
5059 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5062 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5065 return m_mainWin
->PopupMenu( menu
, x
, y
);
5071 void wxGenericListCtrl::DoClientToScreen( int *x
, int *y
) const
5073 // It's not clear whether this can be called before m_mainWin is created
5074 // but it seems better to be on the safe side and check.
5076 m_mainWin
->DoClientToScreen(x
, y
);
5078 wxControl::DoClientToScreen(x
, y
);
5081 void wxGenericListCtrl::DoScreenToClient( int *x
, int *y
) const
5083 // At least in wxGTK/Univ build this method can be called before m_mainWin
5084 // is created so avoid crashes in this case.
5086 m_mainWin
->DoScreenToClient(x
, y
);
5088 wxControl::DoScreenToClient(x
, y
);
5091 void wxGenericListCtrl::SetFocus()
5093 // The test in window.cpp fails as we are a composite
5094 // window, so it checks against "this", but not m_mainWin.
5095 if ( DoFindFocus() != this )
5096 m_mainWin
->SetFocus();
5099 wxSize
wxGenericListCtrl::DoGetBestClientSize() const
5101 // Something is better than nothing even if this is completely arbitrary.
5102 wxSize
sizeBest(100, 80);
5104 if ( !InReportView() )
5106 // Ensure that our minimal width is at least big enough to show all our
5107 // items. This is important for wxListbook to size itself correctly.
5109 // Remember the offset of the first item: this corresponds to the
5110 // margins around the item so we will add it to the minimal size below
5111 // to ensure that we have equal margins on all sides.
5114 // We can iterate over all items as there shouldn't be too many of them
5115 // in non-report view. If it ever becomes a problem, we could examine
5116 // just the first few items probably, the determination of the best
5117 // size is less important if we will need scrollbars anyhow.
5118 for ( int n
= 0; n
< GetItemCount(); n
++ )
5120 const wxRect itemRect
= m_mainWin
->GetLineRect(n
);
5123 // Remember the position of the first item as all the rest are
5124 // offset by at least this number of pixels too.
5125 ofs
= itemRect
.GetPosition();
5128 sizeBest
.IncTo(itemRect
.GetSize());
5131 sizeBest
.IncBy(2*ofs
);
5134 // If we have the scrollbars we need to account for them too. And to
5135 // make sure the scrollbars status is up to date we need to call this
5136 // function to set them.
5137 m_mainWin
->RecalculatePositions(true /* no refresh */);
5139 // Unfortunately we can't use wxWindow::HasScrollbar() here as we need
5140 // to use m_mainWin client/virtual size for determination of whether we
5141 // use scrollbars and not the size of this window itself. Maybe that
5142 // function should be extended to work correctly in the case when our
5143 // scrollbars manage a different window from this one but currently it
5145 const wxSize sizeClient
= m_mainWin
->GetClientSize();
5146 const wxSize sizeVirt
= m_mainWin
->GetVirtualSize();
5148 if ( sizeVirt
.x
> sizeClient
.x
/* HasScrollbar(wxHORIZONTAL) */ )
5149 sizeBest
.y
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
5151 if ( sizeVirt
.y
> sizeClient
.y
/* HasScrollbar(wxVERTICAL) */ )
5152 sizeBest
.x
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
5158 // ----------------------------------------------------------------------------
5159 // virtual list control support
5160 // ----------------------------------------------------------------------------
5162 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5164 // this is a pure virtual function, in fact - which is not really pure
5165 // because the controls which are not virtual don't need to implement it
5166 wxFAIL_MSG( wxT("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5168 return wxEmptyString
;
5171 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5173 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5175 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
5179 int wxGenericListCtrl::OnGetItemColumnImage(long item
, long column
) const
5182 return OnGetItemImage(item
);
5188 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5190 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5191 wxT("invalid item index in OnGetItemAttr()") );
5193 // no attributes by default
5197 void wxGenericListCtrl::SetItemCount(long count
)
5199 wxASSERT_MSG( IsVirtual(), wxT("this is for virtual controls only") );
5201 m_mainWin
->SetItemCount(count
);
5204 void wxGenericListCtrl::RefreshItem(long item
)
5206 m_mainWin
->RefreshLine(item
);
5209 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5211 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5214 // Generic wxListCtrl is more or less a container for two other
5215 // windows which drawings are done upon. These are namely
5216 // 'm_headerWin' and 'm_mainWin'.
5217 // Here we override 'virtual wxWindow::Refresh()' to mimic the
5218 // behaviour wxListCtrl has under wxMSW.
5220 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5224 // The easy case, no rectangle specified.
5226 m_headerWin
->Refresh(eraseBackground
);
5229 m_mainWin
->Refresh(eraseBackground
);
5233 // Refresh the header window
5236 wxRect rectHeader
= m_headerWin
->GetRect();
5237 rectHeader
.Intersect(*rect
);
5238 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5241 m_headerWin
->GetPosition(&x
, &y
);
5242 rectHeader
.Offset(-x
, -y
);
5243 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5247 // Refresh the main window
5250 wxRect rectMain
= m_mainWin
->GetRect();
5251 rectMain
.Intersect(*rect
);
5252 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5255 m_mainWin
->GetPosition(&x
, &y
);
5256 rectMain
.Offset(-x
, -y
);
5257 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5263 void wxGenericListCtrl::Update()
5267 if ( m_mainWin
->m_dirty
)
5268 m_mainWin
->RecalculatePositions();
5270 m_mainWin
->Update();
5274 m_headerWin
->Update();
5277 #endif // wxUSE_LISTCTRL