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"
28 #if (!defined(__WXMSW__) || defined(__WXUNIVERSAL__)) && !defined(__WXMAC__)
29 // if we have a native version, its implementation file does all this
30 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
31 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
32 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
34 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxGenericListCtrl
)
38 #include "wx/scrolwin.h"
40 #include "wx/settings.h"
41 #include "wx/dynarray.h"
42 #include "wx/dcclient.h"
43 #include "wx/dcscreen.h"
47 #include "wx/imaglist.h"
48 #include "wx/selstore.h"
49 #include "wx/renderer.h"
52 #include "wx/mac/private.h"
56 // NOTE: If using the wxListBox visual attributes works everywhere then this can
57 // be removed, as well as the #else case below.
58 #define _USE_VISATTR 0
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 // // the height of the header window (FIXME: should depend on its font!)
66 // static const int HEADER_HEIGHT = 23;
68 static const int SCROLL_UNIT_X
= 15;
70 // the spacing between the lines (in report mode)
71 static const int LINE_SPACING
= 0;
73 // extra margins around the text label
75 static const int EXTRA_WIDTH
= 6;
77 static const int EXTRA_WIDTH
= 4;
79 static const int EXTRA_HEIGHT
= 4;
81 // margin between the window and the items
82 static const int EXTRA_BORDER_X
= 2;
83 static const int EXTRA_BORDER_Y
= 2;
85 // offset for the header window
86 static const int HEADER_OFFSET_X
= 1;
87 static const int HEADER_OFFSET_Y
= 1;
89 // margin between rows of icons in [small] icon view
90 static const int MARGIN_BETWEEN_ROWS
= 6;
92 // when autosizing the columns, add some slack
93 static const int AUTOSIZE_COL_MARGIN
= 10;
95 // default width for the header columns
96 static const int WIDTH_COL_DEFAULT
= 80;
98 // the space between the image and the text in the report mode
99 static const int IMAGE_MARGIN_IN_REPORT_MODE
= 5;
101 // ============================================================================
103 // ============================================================================
105 //-----------------------------------------------------------------------------
106 // wxColWidthInfo (internal)
107 //-----------------------------------------------------------------------------
109 struct wxColWidthInfo
112 bool bNeedsUpdate
; // only set to true when an item whose
113 // width == nMaxWidth is removed
115 wxColWidthInfo(int w
= 0, bool needsUpdate
= false)
118 bNeedsUpdate
= needsUpdate
;
122 WX_DEFINE_ARRAY_PTR(wxColWidthInfo
*, ColWidthArray
);
124 //-----------------------------------------------------------------------------
125 // wxListItemData (internal)
126 //-----------------------------------------------------------------------------
131 wxListItemData(wxListMainWindow
*owner
);
134 void SetItem( const wxListItem
&info
);
135 void SetImage( int image
) { m_image
= image
; }
136 void SetData( wxUIntPtr data
) { m_data
= data
; }
137 void SetPosition( int x
, int y
);
138 void SetSize( int width
, int height
);
140 bool HasText() const { return !m_text
.empty(); }
141 const wxString
& GetText() const { return m_text
; }
142 void SetText(const wxString
& text
) { m_text
= text
; }
144 // we can't use empty string for measuring the string width/height, so
145 // always return something
146 wxString
GetTextForMeasuring() const
148 wxString s
= GetText();
155 bool IsHit( int x
, int y
) const;
159 int GetWidth() const;
160 int GetHeight() const;
162 int GetImage() const { return m_image
; }
163 bool HasImage() const { return GetImage() != -1; }
165 void GetItem( wxListItem
&info
) const;
167 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
168 wxListItemAttr
*GetAttr() const { return m_attr
; }
171 // the item image or -1
174 // user data associated with the item
177 // the item coordinates are not used in report mode; instead this pointer is
178 // NULL and the owner window is used to retrieve the item position and size
181 // the list ctrl we are in
182 wxListMainWindow
*m_owner
;
184 // custom attributes or NULL
185 wxListItemAttr
*m_attr
;
188 // common part of all ctors
194 //-----------------------------------------------------------------------------
195 // wxListHeaderData (internal)
196 //-----------------------------------------------------------------------------
198 class wxListHeaderData
: public wxObject
202 wxListHeaderData( const wxListItem
&info
);
203 void SetItem( const wxListItem
&item
);
204 void SetPosition( int x
, int y
);
205 void SetWidth( int w
);
206 void SetFormat( int format
);
207 void SetHeight( int h
);
208 bool HasImage() const;
210 bool HasText() const { return !m_text
.empty(); }
211 const wxString
& GetText() const { return m_text
; }
212 void SetText(const wxString
& text
) { m_text
= text
; }
214 void GetItem( wxListItem
&item
);
216 bool IsHit( int x
, int y
) const;
217 int GetImage() const;
218 int GetWidth() const;
219 int GetFormat() const;
235 //-----------------------------------------------------------------------------
236 // wxListLineData (internal)
237 //-----------------------------------------------------------------------------
239 WX_DECLARE_EXPORTED_LIST(wxListItemData
, wxListItemDataList
);
240 #include "wx/listimpl.cpp"
241 WX_DEFINE_LIST(wxListItemDataList
)
246 // the list of subitems: only may have more than one item in report mode
247 wxListItemDataList m_items
;
249 // this is not used in report view
261 // the part to be highlighted
262 wxRect m_rectHighlight
;
264 // extend all our rects to be centered inside the one of given width
265 void ExtendWidth(wxCoord w
)
267 wxASSERT_MSG( m_rectAll
.width
<= w
,
268 _T("width can only be increased") );
271 m_rectLabel
.x
= m_rectAll
.x
+ (w
- m_rectLabel
.width
) / 2;
272 m_rectIcon
.x
= m_rectAll
.x
+ (w
- m_rectIcon
.width
) / 2;
273 m_rectHighlight
.x
= m_rectAll
.x
+ (w
- m_rectHighlight
.width
) / 2;
278 // is this item selected? [NB: not used in virtual mode]
281 // back pointer to the list ctrl
282 wxListMainWindow
*m_owner
;
285 wxListLineData(wxListMainWindow
*owner
);
289 WX_CLEAR_LIST(wxListItemDataList
, m_items
);
293 // are we in report mode?
294 inline bool InReportView() const;
296 // are we in virtual report mode?
297 inline bool IsVirtual() const;
299 // these 2 methods shouldn't be called for report view controls, in that
300 // case we determine our position/size ourselves
302 // calculate the size of the line
303 void CalculateSize( wxDC
*dc
, int spacing
);
305 // remember the position this line appears at
306 void SetPosition( int x
, int y
, int spacing
);
310 void SetImage( int image
) { SetImage(0, image
); }
311 int GetImage() const { return GetImage(0); }
312 void SetImage( int index
, int image
);
313 int GetImage( int index
) const;
315 bool HasImage() const { return GetImage() != -1; }
316 bool HasText() const { return !GetText(0).empty(); }
318 void SetItem( int index
, const wxListItem
&info
);
319 void GetItem( int index
, wxListItem
&info
);
321 wxString
GetText(int index
) const;
322 void SetText( int index
, const wxString
& s
);
324 wxListItemAttr
*GetAttr() const;
325 void SetAttr(wxListItemAttr
*attr
);
327 // return true if the highlighting really changed
328 bool Highlight( bool on
);
330 void ReverseHighlight();
332 bool IsHighlighted() const
334 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
336 return m_highlighted
;
339 // draw the line on the given DC in icon/list mode
340 void Draw( wxDC
*dc
);
342 // the same in report mode
343 void DrawInReportMode( wxDC
*dc
,
345 const wxRect
& rectHL
,
349 // set the line to contain num items (only can be > 1 in report mode)
350 void InitItems( int num
);
352 // get the mode (i.e. style) of the list control
353 inline int GetMode() const;
355 // prepare the DC for drawing with these item's attributes, return true if
356 // we need to draw the items background to highlight it, false otherwise
357 bool SetAttributes(wxDC
*dc
,
358 const wxListItemAttr
*attr
,
361 // draw the text on the DC with the correct justification; also add an
362 // ellipsis if the text is too large to fit in the current width
363 void DrawTextFormatted(wxDC
*dc
,
364 const wxString
&text
,
367 int yMid
, // this is middle, not top, of the text
371 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
372 #include "wx/arrimpl.cpp"
373 WX_DEFINE_OBJARRAY(wxListLineDataArray
)
375 //-----------------------------------------------------------------------------
376 // wxListHeaderWindow (internal)
377 //-----------------------------------------------------------------------------
379 class wxListHeaderWindow
: public wxWindow
382 wxListMainWindow
*m_owner
;
383 const wxCursor
*m_currentCursor
;
384 wxCursor
*m_resizeCursor
;
387 // column being resized or -1
390 // divider line position in logical (unscrolled) coords
393 // minimal position beyond which the divider line
394 // can't be dragged in logical coords
398 wxListHeaderWindow();
400 wxListHeaderWindow( wxWindow
*win
,
402 wxListMainWindow
*owner
,
403 const wxPoint
&pos
= wxDefaultPosition
,
404 const wxSize
&size
= wxDefaultSize
,
406 const wxString
&name
= wxT("wxlistctrlcolumntitles") );
408 virtual ~wxListHeaderWindow();
411 void AdjustDC( wxDC
& dc
);
413 void OnPaint( wxPaintEvent
&event
);
414 void OnMouse( wxMouseEvent
&event
);
415 void OnSetFocus( wxFocusEvent
&event
);
421 // common part of all ctors
424 // generate and process the list event of the given type, return true if
425 // it wasn't vetoed, i.e. if we should proceed
426 bool SendListEvent(wxEventType type
, const wxPoint
& pos
);
428 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
429 DECLARE_EVENT_TABLE()
432 //-----------------------------------------------------------------------------
433 // wxListRenameTimer (internal)
434 //-----------------------------------------------------------------------------
436 class wxListRenameTimer
: public wxTimer
439 wxListMainWindow
*m_owner
;
442 wxListRenameTimer( wxListMainWindow
*owner
);
446 //-----------------------------------------------------------------------------
447 // wxListTextCtrlWrapper: wraps a wxTextCtrl to make it work for inline editing
448 //-----------------------------------------------------------------------------
450 class wxListTextCtrlWrapper
: public wxEvtHandler
453 // NB: text must be a valid object but not Create()d yet
454 wxListTextCtrlWrapper(wxListMainWindow
*owner
,
458 wxTextCtrl
*GetText() const { return m_text
; }
460 void AcceptChangesAndFinish();
463 void OnChar( wxKeyEvent
&event
);
464 void OnKeyUp( wxKeyEvent
&event
);
465 void OnKillFocus( wxFocusEvent
&event
);
467 bool AcceptChanges();
471 wxListMainWindow
*m_owner
;
473 wxString m_startValue
;
476 bool m_aboutToFinish
;
478 DECLARE_EVENT_TABLE()
481 //-----------------------------------------------------------------------------
482 // wxListMainWindow (internal)
483 //-----------------------------------------------------------------------------
485 WX_DECLARE_EXPORTED_LIST(wxListHeaderData
, wxListHeaderDataList
);
486 #include "wx/listimpl.cpp"
487 WX_DEFINE_LIST(wxListHeaderDataList
)
489 class wxListMainWindow
: public wxScrolledWindow
493 wxListMainWindow( wxWindow
*parent
,
495 const wxPoint
& pos
= wxDefaultPosition
,
496 const wxSize
& size
= wxDefaultSize
,
498 const wxString
&name
= _T("listctrlmainwindow") );
500 virtual ~wxListMainWindow();
502 bool HasFlag(int flag
) const { return m_parent
->HasFlag(flag
); }
504 // return true if this is a virtual list control
505 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
507 // return true if the control is in report mode
508 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
510 // return true if we are in single selection mode, false if multi sel
511 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL
); }
513 // do we have a header window?
514 bool HasHeader() const
515 { return InReportView() && !HasFlag(wxLC_NO_HEADER
); }
517 void HighlightAll( bool on
);
519 // all these functions only do something if the line is currently visible
521 // change the line "selected" state, return true if it really changed
522 bool HighlightLine( size_t line
, bool highlight
= true);
524 // as HighlightLine() but do it for the range of lines: this is incredibly
525 // more efficient for virtual list controls!
527 // NB: unlike HighlightLine() this one does refresh the lines on screen
528 void HighlightLines( size_t lineFrom
, size_t lineTo
, bool on
= true );
530 // toggle the line state and refresh it
531 void ReverseHighlight( size_t line
)
532 { HighlightLine(line
, !IsHighlighted(line
)); RefreshLine(line
); }
534 // return true if the line is highlighted
535 bool IsHighlighted(size_t line
) const;
537 // refresh one or several lines at once
538 void RefreshLine( size_t line
);
539 void RefreshLines( size_t lineFrom
, size_t lineTo
);
541 // refresh all selected items
542 void RefreshSelected();
544 // refresh all lines below the given one: the difference with
545 // RefreshLines() is that the index here might not be a valid one (happens
546 // when the last line is deleted)
547 void RefreshAfter( size_t lineFrom
);
549 // the methods which are forwarded to wxListLineData itself in list/icon
550 // modes but are here because the lines don't store their positions in the
553 // get the bound rect for the entire line
554 wxRect
GetLineRect(size_t line
) const;
556 // get the bound rect of the label
557 wxRect
GetLineLabelRect(size_t line
) const;
559 // get the bound rect of the items icon (only may be called if we do have
561 wxRect
GetLineIconRect(size_t line
) const;
563 // get the rect to be highlighted when the item has focus
564 wxRect
GetLineHighlightRect(size_t line
) const;
566 // get the size of the total line rect
567 wxSize
GetLineSize(size_t line
) const
568 { return GetLineRect(line
).GetSize(); }
570 // return the hit code for the corresponding position (in this line)
571 long HitTestLine(size_t line
, int x
, int y
) const;
573 // bring the selected item into view, scrolling to it if necessary
574 void MoveToItem(size_t item
);
576 // bring the current item into view
577 void MoveToFocus() { MoveToItem(m_current
); }
579 // start editing the label of the given item
580 wxTextCtrl
*EditLabel(long item
,
581 wxClassInfo
* textControlClass
= CLASSINFO(wxTextCtrl
));
582 wxTextCtrl
*GetEditControl() const
584 return m_textctrlWrapper
? m_textctrlWrapper
->GetText() : NULL
;
587 void FinishEditing(wxTextCtrl
*text
)
590 m_textctrlWrapper
= NULL
;
591 SetFocusIgnoringChildren();
594 // suspend/resume redrawing the control
598 void OnRenameTimer();
599 bool OnRenameAccept(size_t itemEdit
, const wxString
& value
);
600 void OnRenameCancelled(size_t itemEdit
);
602 void OnMouse( wxMouseEvent
&event
);
604 // called to switch the selection from the current item to newCurrent,
605 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
607 void OnChar( wxKeyEvent
&event
);
608 void OnKeyDown( wxKeyEvent
&event
);
609 void OnSetFocus( wxFocusEvent
&event
);
610 void OnKillFocus( wxFocusEvent
&event
);
611 void OnScroll( wxScrollWinEvent
& event
);
613 void OnPaint( wxPaintEvent
&event
);
615 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
616 void GetImageSize( int index
, int &width
, int &height
) const;
617 int GetTextLength( const wxString
&s
) const;
619 void SetImageList( wxImageList
*imageList
, int which
);
620 void SetItemSpacing( int spacing
, bool isSmall
= false );
621 int GetItemSpacing( bool isSmall
= false );
623 void SetColumn( int col
, wxListItem
&item
);
624 void SetColumnWidth( int col
, int width
);
625 void GetColumn( int col
, wxListItem
&item
) const;
626 int GetColumnWidth( int col
) const;
627 int GetColumnCount() const { return m_columns
.GetCount(); }
629 // returns the sum of the heights of all columns
630 int GetHeaderWidth() const;
632 int GetCountPerPage() const;
634 void SetItem( wxListItem
&item
);
635 void GetItem( wxListItem
&item
) const;
636 void SetItemState( long item
, long state
, long stateMask
);
637 void SetItemStateAll( long state
, long stateMask
);
638 int GetItemState( long item
, long stateMask
) const;
639 void GetItemRect( long index
, wxRect
&rect
) const;
640 wxRect
GetViewRect() const;
641 bool GetItemPosition( long item
, wxPoint
& pos
) const;
642 int GetSelectedItemCount() const;
644 wxString
GetItemText(long item
) const
647 info
.m_mask
= wxLIST_MASK_TEXT
;
648 info
.m_itemId
= item
;
653 void SetItemText(long item
, const wxString
& value
)
656 info
.m_mask
= wxLIST_MASK_TEXT
;
657 info
.m_itemId
= item
;
662 // set the scrollbars and update the positions of the items
663 void RecalculatePositions(bool noRefresh
= false);
665 // refresh the window and the header
668 long GetNextItem( long item
, int geometry
, int state
) const;
669 void DeleteItem( long index
);
670 void DeleteAllItems();
671 void DeleteColumn( int col
);
672 void DeleteEverything();
673 void EnsureVisible( long index
);
674 long FindItem( long start
, const wxString
& str
, bool partial
= false );
675 long FindItem( long start
, wxUIntPtr data
);
676 long FindItem( const wxPoint
& pt
);
677 long HitTest( int x
, int y
, int &flags
) const;
678 void InsertItem( wxListItem
&item
);
679 void InsertColumn( long col
, wxListItem
&item
);
680 int GetItemWidthWithImage(wxListItem
* item
);
681 void SortItems( wxListCtrlCompare fn
, long data
);
683 size_t GetItemCount() const;
684 bool IsEmpty() const { return GetItemCount() == 0; }
685 void SetItemCount(long count
);
687 // change the current (== focused) item, send a notification event
688 void ChangeCurrent(size_t current
);
689 void ResetCurrent() { ChangeCurrent((size_t)-1); }
690 bool HasCurrent() const { return m_current
!= (size_t)-1; }
692 // send out a wxListEvent
693 void SendNotify( size_t line
,
695 const wxPoint
& point
= wxDefaultPosition
);
697 // override base class virtual to reset m_lineHeight when the font changes
698 virtual bool SetFont(const wxFont
& font
)
700 if ( !wxScrolledWindow::SetFont(font
) )
708 // these are for wxListLineData usage only
710 // get the backpointer to the list ctrl
711 wxGenericListCtrl
*GetListCtrl() const
713 return wxStaticCast(GetParent(), wxGenericListCtrl
);
716 // get the height of all lines (assuming they all do have the same height)
717 wxCoord
GetLineHeight() const;
719 // get the y position of the given line (only for report view)
720 wxCoord
GetLineY(size_t line
) const;
722 // get the brush to use for the item highlighting
723 wxBrush
*GetHighlightBrush() const
725 return m_hasFocus
? m_highlightBrush
: m_highlightUnfocusedBrush
;
728 bool HasFocus() const
734 // the array of all line objects for a non virtual list control (for the
735 // virtual list control we only ever use m_lines[0])
736 wxListLineDataArray m_lines
;
738 // the list of column objects
739 wxListHeaderDataList m_columns
;
741 // currently focused item or -1
744 // the number of lines per page
747 // this flag is set when something which should result in the window
748 // redrawing happens (i.e. an item was added or deleted, or its appearance
749 // changed) and OnPaint() doesn't redraw the window while it is set which
750 // allows to minimize the number of repaintings when a lot of items are
751 // being added. The real repainting occurs only after the next OnIdle()
755 wxColour
*m_highlightColour
;
756 wxImageList
*m_small_image_list
;
757 wxImageList
*m_normal_image_list
;
759 int m_normal_spacing
;
763 wxTimer
*m_renameTimer
;
767 ColWidthArray m_aColWidths
;
769 // for double click logic
770 size_t m_lineLastClicked
,
771 m_lineBeforeLastClicked
,
772 m_lineSelectSingleOnUp
;
775 wxWindow
*GetMainWindowOfCompositeControl() { return GetParent(); }
777 // the total count of items in a virtual list control
780 // the object maintaining the items selection state, only used in virtual
782 wxSelectionStore m_selStore
;
784 // common part of all ctors
787 // get the line data for the given index
788 wxListLineData
*GetLine(size_t n
) const
790 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
794 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
801 // get a dummy line which can be used for geometry calculations and such:
802 // you must use GetLine() if you want to really draw the line
803 wxListLineData
*GetDummyLine() const;
805 // cache the line data of the n-th line in m_lines[0]
806 void CacheLineData(size_t line
);
808 // get the range of visible lines
809 void GetVisibleLinesRange(size_t *from
, size_t *to
);
811 // force us to recalculate the range of visible lines
812 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
814 // get the colour to be used for drawing the rules
815 wxColour
GetRuleColour() const
817 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
821 // initialize the current item if needed
822 void UpdateCurrent();
824 // delete all items but don't refresh: called from dtor
825 void DoDeleteAllItems();
827 // the height of one line using the current font
828 wxCoord m_lineHeight
;
830 // the total header width or 0 if not calculated yet
831 wxCoord m_headerWidth
;
833 // the first and last lines being shown on screen right now (inclusive),
834 // both may be -1 if they must be calculated so never access them directly:
835 // use GetVisibleLinesRange() above instead
839 // the brushes to use for item highlighting when we do/don't have focus
840 wxBrush
*m_highlightBrush
,
841 *m_highlightUnfocusedBrush
;
843 // if this is > 0, the control is frozen and doesn't redraw itself
844 size_t m_freezeCount
;
846 // wrapper around the text control currently used for in place editing or
847 // NULL if no item is being edited
848 wxListTextCtrlWrapper
*m_textctrlWrapper
;
851 DECLARE_DYNAMIC_CLASS(wxListMainWindow
)
852 DECLARE_EVENT_TABLE()
854 friend class wxGenericListCtrl
;
858 wxListItemData::~wxListItemData()
860 // in the virtual list control the attributes are managed by the main
861 // program, so don't delete them
862 if ( !m_owner
->IsVirtual() )
868 void wxListItemData::Init()
876 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
882 if ( owner
->InReportView() )
888 void wxListItemData::SetItem( const wxListItem
&info
)
890 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
891 SetText(info
.m_text
);
892 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
893 m_image
= info
.m_image
;
894 if ( info
.m_mask
& wxLIST_MASK_DATA
)
895 m_data
= info
.m_data
;
897 if ( info
.HasAttributes() )
900 m_attr
->AssignFrom(*info
.GetAttributes());
902 m_attr
= new wxListItemAttr(*info
.GetAttributes());
910 m_rect
->width
= info
.m_width
;
914 void wxListItemData::SetPosition( int x
, int y
)
916 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
922 void wxListItemData::SetSize( int width
, int height
)
924 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
927 m_rect
->width
= width
;
929 m_rect
->height
= height
;
932 bool wxListItemData::IsHit( int x
, int y
) const
934 wxCHECK_MSG( m_rect
, false, _T("can't be called in this mode") );
936 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Contains(x
, y
);
939 int wxListItemData::GetX() const
941 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
946 int wxListItemData::GetY() const
948 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
953 int wxListItemData::GetWidth() const
955 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
957 return m_rect
->width
;
960 int wxListItemData::GetHeight() const
962 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
964 return m_rect
->height
;
967 void wxListItemData::GetItem( wxListItem
&info
) const
969 long mask
= info
.m_mask
;
971 // by default, get everything for backwards compatibility
974 if ( mask
& wxLIST_MASK_TEXT
)
975 info
.m_text
= m_text
;
976 if ( mask
& wxLIST_MASK_IMAGE
)
977 info
.m_image
= m_image
;
978 if ( mask
& wxLIST_MASK_DATA
)
979 info
.m_data
= m_data
;
983 if ( m_attr
->HasTextColour() )
984 info
.SetTextColour(m_attr
->GetTextColour());
985 if ( m_attr
->HasBackgroundColour() )
986 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
987 if ( m_attr
->HasFont() )
988 info
.SetFont(m_attr
->GetFont());
992 //-----------------------------------------------------------------------------
994 //-----------------------------------------------------------------------------
996 void wxListHeaderData::Init()
1007 wxListHeaderData::wxListHeaderData()
1012 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1019 void wxListHeaderData::SetItem( const wxListItem
&item
)
1021 m_mask
= item
.m_mask
;
1023 if ( m_mask
& wxLIST_MASK_TEXT
)
1024 m_text
= item
.m_text
;
1026 if ( m_mask
& wxLIST_MASK_IMAGE
)
1027 m_image
= item
.m_image
;
1029 if ( m_mask
& wxLIST_MASK_FORMAT
)
1030 m_format
= item
.m_format
;
1032 if ( m_mask
& wxLIST_MASK_WIDTH
)
1033 SetWidth(item
.m_width
);
1036 void wxListHeaderData::SetPosition( int x
, int y
)
1042 void wxListHeaderData::SetHeight( int h
)
1047 void wxListHeaderData::SetWidth( int w
)
1049 m_width
= w
< 0 ? WIDTH_COL_DEFAULT
: w
;
1052 void wxListHeaderData::SetFormat( int format
)
1057 bool wxListHeaderData::HasImage() const
1059 return m_image
!= -1;
1062 bool wxListHeaderData::IsHit( int x
, int y
) const
1064 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1067 void wxListHeaderData::GetItem( wxListItem
& item
)
1069 item
.m_mask
= m_mask
;
1070 item
.m_text
= m_text
;
1071 item
.m_image
= m_image
;
1072 item
.m_format
= m_format
;
1073 item
.m_width
= m_width
;
1076 int wxListHeaderData::GetImage() const
1081 int wxListHeaderData::GetWidth() const
1086 int wxListHeaderData::GetFormat() const
1091 //-----------------------------------------------------------------------------
1093 //-----------------------------------------------------------------------------
1095 inline int wxListLineData::GetMode() const
1097 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1100 inline bool wxListLineData::InReportView() const
1102 return m_owner
->HasFlag(wxLC_REPORT
);
1105 inline bool wxListLineData::IsVirtual() const
1107 return m_owner
->IsVirtual();
1110 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1114 if ( InReportView() )
1117 m_gi
= new GeometryInfo
;
1119 m_highlighted
= false;
1121 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1124 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1126 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1127 wxCHECK_RET( node
, _T("no subitems at all??") );
1129 wxListItemData
*item
= node
->GetData();
1134 switch ( GetMode() )
1137 case wxLC_SMALL_ICON
:
1138 m_gi
->m_rectAll
.width
= spacing
;
1140 s
= item
->GetText();
1145 m_gi
->m_rectLabel
.width
=
1146 m_gi
->m_rectLabel
.height
= 0;
1150 dc
->GetTextExtent( s
, &lw
, &lh
);
1154 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1156 m_gi
->m_rectAll
.width
= lw
;
1158 m_gi
->m_rectLabel
.width
= lw
;
1159 m_gi
->m_rectLabel
.height
= lh
;
1162 if (item
->HasImage())
1165 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1166 m_gi
->m_rectIcon
.width
= w
+ 8;
1167 m_gi
->m_rectIcon
.height
= h
+ 8;
1169 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1170 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1171 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1172 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1175 if ( item
->HasText() )
1177 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1178 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1180 else // no text, highlight the icon
1182 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1183 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1188 s
= item
->GetTextForMeasuring();
1190 dc
->GetTextExtent( s
, &lw
, &lh
);
1194 m_gi
->m_rectLabel
.width
= lw
;
1195 m_gi
->m_rectLabel
.height
= lh
;
1197 m_gi
->m_rectAll
.width
= lw
;
1198 m_gi
->m_rectAll
.height
= lh
;
1200 if (item
->HasImage())
1203 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1204 m_gi
->m_rectIcon
.width
= w
;
1205 m_gi
->m_rectIcon
.height
= h
;
1207 m_gi
->m_rectAll
.width
+= 4 + w
;
1208 if (h
> m_gi
->m_rectAll
.height
)
1209 m_gi
->m_rectAll
.height
= h
;
1212 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1213 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1217 wxFAIL_MSG( _T("unexpected call to SetSize") );
1221 wxFAIL_MSG( _T("unknown mode") );
1226 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
1228 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1229 wxCHECK_RET( node
, _T("no subitems at all??") );
1231 wxListItemData
*item
= node
->GetData();
1233 switch ( GetMode() )
1236 case wxLC_SMALL_ICON
:
1237 m_gi
->m_rectAll
.x
= x
;
1238 m_gi
->m_rectAll
.y
= y
;
1240 if ( item
->HasImage() )
1242 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
1243 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
1244 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1247 if ( item
->HasText() )
1249 if (m_gi
->m_rectAll
.width
> spacing
)
1250 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
1252 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2) + (spacing
/ 2) - (m_gi
->m_rectLabel
.width
/ 2);
1253 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1254 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1255 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1257 else // no text, highlight the icon
1259 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1260 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1265 m_gi
->m_rectAll
.x
= x
;
1266 m_gi
->m_rectAll
.y
= y
;
1268 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1269 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1270 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1272 if (item
->HasImage())
1274 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1275 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1276 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 4 + (EXTRA_WIDTH
/2) + m_gi
->m_rectIcon
.width
;
1280 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
1285 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1289 wxFAIL_MSG( _T("unknown mode") );
1294 void wxListLineData::InitItems( int num
)
1296 for (int i
= 0; i
< num
; i
++)
1297 m_items
.Append( new wxListItemData(m_owner
) );
1300 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1302 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1303 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1305 wxListItemData
*item
= node
->GetData();
1306 item
->SetItem( info
);
1309 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1311 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1314 wxListItemData
*item
= node
->GetData();
1315 item
->GetItem( info
);
1319 wxString
wxListLineData::GetText(int index
) const
1323 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1326 wxListItemData
*item
= node
->GetData();
1327 s
= item
->GetText();
1333 void wxListLineData::SetText( int index
, const wxString
& s
)
1335 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1338 wxListItemData
*item
= node
->GetData();
1343 void wxListLineData::SetImage( int index
, int image
)
1345 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1346 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1348 wxListItemData
*item
= node
->GetData();
1349 item
->SetImage(image
);
1352 int wxListLineData::GetImage( int index
) const
1354 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1355 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1357 wxListItemData
*item
= node
->GetData();
1358 return item
->GetImage();
1361 wxListItemAttr
*wxListLineData::GetAttr() const
1363 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1364 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1366 wxListItemData
*item
= node
->GetData();
1367 return item
->GetAttr();
1370 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1372 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1373 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1375 wxListItemData
*item
= node
->GetData();
1376 item
->SetAttr(attr
);
1379 bool wxListLineData::SetAttributes(wxDC
*dc
,
1380 const wxListItemAttr
*attr
,
1383 wxWindow
*listctrl
= m_owner
->GetParent();
1387 // don't use foreground colour for drawing highlighted items - this might
1388 // make them completely invisible (and there is no way to do bit
1389 // arithmetics on wxColour, unfortunately)
1394 if (m_owner
->HasFocus())
1400 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1402 else if ( attr
&& attr
->HasTextColour() )
1403 colText
= attr
->GetTextColour();
1405 colText
= listctrl
->GetForegroundColour();
1407 dc
->SetTextForeground(colText
);
1411 if ( attr
&& attr
->HasFont() )
1412 font
= attr
->GetFont();
1414 font
= listctrl
->GetFont();
1419 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1420 if ( highlighted
|| hasBgCol
)
1423 dc
->SetBrush( *m_owner
->GetHighlightBrush() );
1425 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1427 dc
->SetPen( *wxTRANSPARENT_PEN
);
1435 void wxListLineData::Draw( wxDC
*dc
)
1437 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1438 wxCHECK_RET( node
, _T("no subitems at all??") );
1440 bool highlighted
= IsHighlighted();
1442 wxListItemAttr
*attr
= GetAttr();
1444 if ( SetAttributes(dc
, attr
, highlighted
) )
1447 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1453 int flags
= wxCONTROL_SELECTED
;
1454 if (m_owner
->HasFocus())
1455 flags
|= wxCONTROL_FOCUSED
;
1456 wxRendererNative::Get().DrawItemSelectionRect( m_owner
, *dc
, m_gi
->m_rectHighlight
, flags
);
1461 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1466 // just for debugging to better see where the items are
1468 dc
->SetPen(*wxRED_PEN
);
1469 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
1470 dc
->DrawRectangle( m_gi
->m_rectAll
);
1471 dc
->SetPen(*wxGREEN_PEN
);
1472 dc
->DrawRectangle( m_gi
->m_rectIcon
);
1475 wxListItemData
*item
= node
->GetData();
1476 if (item
->HasImage())
1478 // centre the image inside our rectangle, this looks nicer when items
1479 // ae aligned in a row
1480 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
1482 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
1485 if (item
->HasText())
1487 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
1489 wxDCClipper
clipper(*dc
, rectLabel
);
1490 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1494 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1496 const wxRect
& rectHL
,
1499 // TODO: later we should support setting different attributes for
1500 // different columns - to do it, just add "col" argument to
1501 // GetAttr() and move these lines into the loop below
1502 wxListItemAttr
*attr
= GetAttr();
1503 if ( SetAttributes(dc
, attr
, highlighted
) )
1506 dc
->DrawRectangle( rectHL
);
1512 int flags
= wxCONTROL_SELECTED
;
1513 if (m_owner
->HasFocus())
1514 flags
|= wxCONTROL_FOCUSED
;
1515 wxRendererNative::Get().DrawItemSelectionRect( m_owner
, *dc
, rectHL
, flags
);
1519 dc
->DrawRectangle( rectHL
);
1524 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1525 yMid
= rect
.y
+ rect
.height
/2;
1527 // This probably needs to be done
1528 // on all platforms as the icons
1529 // otherwise nearly touch the border
1534 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1536 node
= node
->GetNext(), col
++ )
1538 wxListItemData
*item
= node
->GetData();
1540 int width
= m_owner
->GetColumnWidth(col
);
1544 if ( item
->HasImage() )
1547 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1548 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, yMid
- iy
/2 );
1550 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
1556 if ( item
->HasText() )
1557 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, yMid
, width
- 8);
1561 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
1562 const wxString
&text
,
1569 dc
->GetTextExtent(text
, &w
, &h
);
1571 const wxCoord y
= yMid
- (h
+ 1)/2;
1573 wxDCClipper
clipper(*dc
, x
, y
, width
, h
);
1575 // determine if the string can fit inside the current width
1578 // it can, draw it using the items alignment
1580 m_owner
->GetColumn(col
, item
);
1581 switch ( item
.GetAlign() )
1583 case wxLIST_FORMAT_LEFT
:
1587 case wxLIST_FORMAT_RIGHT
:
1591 case wxLIST_FORMAT_CENTER
:
1592 x
+= (width
- w
) / 2;
1596 wxFAIL_MSG( _T("unknown list item format") );
1600 dc
->DrawText(text
, x
, y
);
1602 else // otherwise, truncate and add an ellipsis if possible
1604 // determine the base width
1605 wxString
ellipsis(wxT("..."));
1607 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1609 // continue until we have enough space or only one character left
1611 size_t len
= text
.length();
1612 wxString drawntext
= text
.Left(len
);
1615 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
1616 drawntext
.RemoveLast();
1619 if (w
+ base_w
<= width
)
1623 // if still not enough space, remove ellipsis characters
1624 while (ellipsis
.length() > 0 && w
+ base_w
> width
)
1626 ellipsis
= ellipsis
.Left(ellipsis
.length() - 1);
1627 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1630 // now draw the text
1631 dc
->DrawText(drawntext
, x
, y
);
1632 dc
->DrawText(ellipsis
, x
+ w
, y
);
1636 bool wxListLineData::Highlight( bool on
)
1638 wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") );
1640 if ( on
== m_highlighted
)
1648 void wxListLineData::ReverseHighlight( void )
1650 Highlight(!IsHighlighted());
1653 //-----------------------------------------------------------------------------
1654 // wxListHeaderWindow
1655 //-----------------------------------------------------------------------------
1657 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
)
1659 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1660 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1661 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1662 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1665 void wxListHeaderWindow::Init()
1667 m_currentCursor
= (wxCursor
*) NULL
;
1668 m_isDragging
= false;
1672 wxListHeaderWindow::wxListHeaderWindow()
1676 m_owner
= (wxListMainWindow
*) NULL
;
1677 m_resizeCursor
= (wxCursor
*) NULL
;
1680 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
1682 wxListMainWindow
*owner
,
1686 const wxString
&name
)
1687 : wxWindow( win
, id
, pos
, size
, style
, name
)
1692 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1695 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
1696 SetOwnForegroundColour( attr
.colFg
);
1697 SetOwnBackgroundColour( attr
.colBg
);
1699 SetOwnFont( attr
.font
);
1701 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
1702 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1704 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
1708 wxListHeaderWindow::~wxListHeaderWindow()
1710 delete m_resizeCursor
;
1713 #ifdef __WXUNIVERSAL__
1714 #include "wx/univ/renderer.h"
1715 #include "wx/univ/theme.h"
1718 // shift the DC origin to match the position of the main window horz
1719 // scrollbar: this allows us to always use logical coords
1720 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1723 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1726 m_owner
->GetViewStart( &view_start
, NULL
);
1731 dc
.GetDeviceOrigin( &org_x
, &org_y
);
1733 // account for the horz scrollbar offset
1735 if (GetLayoutDirection() == wxLayout_RightToLeft
)
1737 // Maybe we just have to check for m_signX
1738 // in the DC, but I leave the #ifdef __WXGTK__
1740 dc
.SetDeviceOrigin( org_x
+ (view_start
* xpix
), org_y
);
1744 dc
.SetDeviceOrigin( org_x
- (view_start
* xpix
), org_y
);
1747 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1749 wxPaintDC
dc( this );
1754 dc
.SetFont( GetFont() );
1756 // width and height of the entire header window
1758 GetClientSize( &w
, &h
);
1759 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1761 dc
.SetBackgroundMode(wxTRANSPARENT
);
1762 dc
.SetTextForeground(GetForegroundColour());
1764 int x
= HEADER_OFFSET_X
;
1765 int numColumns
= m_owner
->GetColumnCount();
1767 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1769 m_owner
->GetColumn( i
, item
);
1770 int wCol
= item
.m_width
;
1772 // the width of the rect to draw: make it smaller to fit entirely
1773 // inside the column rect
1782 wxRendererNative::Get().DrawHeaderButton
1786 wxRect(x
, HEADER_OFFSET_Y
, cw
, ch
),
1787 m_parent
->IsEnabled() ? 0
1788 : (int)wxCONTROL_DISABLED
1791 // see if we have enough space for the column label
1793 // for this we need the width of the text
1796 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1797 wLabel
+= 2 * EXTRA_WIDTH
;
1799 // and the width of the icon, if any
1800 static const int MARGIN_BETWEEN_TEXT_AND_ICON
= 2;
1801 int ix
= 0, iy
= 0; // init them just to suppress the compiler warnings
1802 const int image
= item
.m_image
;
1803 wxImageList
*imageList
;
1806 imageList
= m_owner
->m_small_image_list
;
1809 imageList
->GetSize(image
, ix
, iy
);
1810 wLabel
+= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1818 // ignore alignment if there is not enough space anyhow
1820 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1823 wxFAIL_MSG( _T("unknown list item format") );
1826 case wxLIST_FORMAT_LEFT
:
1830 case wxLIST_FORMAT_RIGHT
:
1831 xAligned
= x
+ cw
- wLabel
;
1834 case wxLIST_FORMAT_CENTER
:
1835 xAligned
= x
+ (cw
- wLabel
) / 2;
1839 // if we have an image, draw it on the right of the label
1846 xAligned
+ wLabel
- ix
- MARGIN_BETWEEN_TEXT_AND_ICON
,
1847 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1848 wxIMAGELIST_DRAW_TRANSPARENT
1851 cw
-= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1854 // draw the text clipping it so that it doesn't overwrite the column
1856 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1858 dc
.DrawText( item
.GetText(),
1859 xAligned
+ EXTRA_WIDTH
, h
/ 2 - hLabel
/ 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT );
1865 void wxListHeaderWindow::DrawCurrent()
1867 int x1
= m_currentX
;
1869 m_owner
->ClientToScreen( &x1
, &y1
);
1871 int x2
= m_currentX
;
1873 m_owner
->GetClientSize( NULL
, &y2
);
1874 m_owner
->ClientToScreen( &x2
, &y2
);
1877 dc
.SetLogicalFunction( wxINVERT
);
1878 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1879 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1883 dc
.DrawLine( x1
, y1
, x2
, y2
);
1885 dc
.SetLogicalFunction( wxCOPY
);
1887 dc
.SetPen( wxNullPen
);
1888 dc
.SetBrush( wxNullBrush
);
1891 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1893 // we want to work with logical coords
1895 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1896 int y
= event
.GetY();
1900 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1902 // we don't draw the line beyond our window, but we allow dragging it
1905 GetClientSize( &w
, NULL
);
1906 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1909 // erase the line if it was drawn
1910 if ( m_currentX
< w
)
1913 if (event
.ButtonUp())
1916 m_isDragging
= false;
1918 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1919 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1926 m_currentX
= m_minX
+ 7;
1928 // draw in the new location
1929 if ( m_currentX
< w
)
1933 else // not dragging
1936 bool hit_border
= false;
1938 // end of the current column
1941 // find the column where this event occurred
1943 countCol
= m_owner
->GetColumnCount();
1944 for (col
= 0; col
< countCol
; col
++)
1946 xpos
+= m_owner
->GetColumnWidth( col
);
1949 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1951 // near the column border
1958 // inside the column
1965 if ( col
== countCol
)
1968 if (event
.LeftDown() || event
.RightUp())
1970 if (hit_border
&& event
.LeftDown())
1972 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1973 event
.GetPosition()) )
1975 m_isDragging
= true;
1980 //else: column resizing was vetoed by the user code
1982 else // click on a column
1984 SendListEvent( event
.LeftDown()
1985 ? wxEVT_COMMAND_LIST_COL_CLICK
1986 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1987 event
.GetPosition());
1990 else if (event
.Moving())
1995 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1996 m_currentCursor
= m_resizeCursor
;
2000 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
2001 m_currentCursor
= wxSTANDARD_CURSOR
;
2005 SetCursor(*m_currentCursor
);
2010 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
2012 m_owner
->SetFocus();
2016 bool wxListHeaderWindow::SendListEvent(wxEventType type
, const wxPoint
& pos
)
2018 wxWindow
*parent
= GetParent();
2019 wxListEvent
le( type
, parent
->GetId() );
2020 le
.SetEventObject( parent
);
2021 le
.m_pointDrag
= pos
;
2023 // the position should be relative to the parent window, not
2024 // this one for compatibility with MSW and common sense: the
2025 // user code doesn't know anything at all about this header
2026 // window, so why should it get positions relative to it?
2027 le
.m_pointDrag
.y
-= GetSize().y
;
2029 le
.m_col
= m_column
;
2030 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
2033 //-----------------------------------------------------------------------------
2034 // wxListRenameTimer (internal)
2035 //-----------------------------------------------------------------------------
2037 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2042 void wxListRenameTimer::Notify()
2044 m_owner
->OnRenameTimer();
2047 //-----------------------------------------------------------------------------
2048 // wxListTextCtrlWrapper (internal)
2049 //-----------------------------------------------------------------------------
2051 BEGIN_EVENT_TABLE(wxListTextCtrlWrapper
, wxEvtHandler
)
2052 EVT_CHAR (wxListTextCtrlWrapper::OnChar
)
2053 EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp
)
2054 EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus
)
2057 wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow
*owner
,
2060 : m_startValue(owner
->GetItemText(itemEdit
)),
2061 m_itemEdited(itemEdit
)
2066 m_aboutToFinish
= false;
2068 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
2070 m_owner
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
2071 &rectLabel
.x
, &rectLabel
.y
);
2073 m_text
->Create(owner
, wxID_ANY
, m_startValue
,
2074 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2075 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
2078 m_text
->PushEventHandler(this);
2081 void wxListTextCtrlWrapper::Finish()
2087 m_text
->RemoveEventHandler(this);
2088 m_owner
->FinishEditing(m_text
);
2090 wxPendingDelete
.Append( this );
2094 bool wxListTextCtrlWrapper::AcceptChanges()
2096 const wxString value
= m_text
->GetValue();
2098 if ( value
== m_startValue
)
2099 // nothing changed, always accept
2102 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
2103 // vetoed by the user
2106 // accepted, do rename the item
2107 m_owner
->SetItemText(m_itemEdited
, value
);
2112 void wxListTextCtrlWrapper::AcceptChangesAndFinish()
2114 m_aboutToFinish
= true;
2116 // Notify the owner about the changes
2119 // Even if vetoed, close the control (consistent with MSW)
2123 void wxListTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
2125 switch ( event
.m_keyCode
)
2128 AcceptChangesAndFinish();
2132 m_owner
->OnRenameCancelled( m_itemEdited
);
2141 void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
2149 // auto-grow the textctrl:
2150 wxSize parentSize
= m_owner
->GetSize();
2151 wxPoint myPos
= m_text
->GetPosition();
2152 wxSize mySize
= m_text
->GetSize();
2154 m_text
->GetTextExtent(m_text
->GetValue() + _T("MM"), &sx
, &sy
);
2155 if (myPos
.x
+ sx
> parentSize
.x
)
2156 sx
= parentSize
.x
- myPos
.x
;
2159 m_text
->SetSize(sx
, wxDefaultCoord
);
2164 void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
2166 if ( !m_finished
&& !m_aboutToFinish
)
2168 if ( !AcceptChanges() )
2169 m_owner
->OnRenameCancelled( m_itemEdited
);
2174 // We must let the native text control handle focus
2178 //-----------------------------------------------------------------------------
2180 //-----------------------------------------------------------------------------
2182 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
)
2184 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2185 EVT_PAINT (wxListMainWindow::OnPaint
)
2186 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2187 EVT_CHAR (wxListMainWindow::OnChar
)
2188 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2189 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2190 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2191 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2194 void wxListMainWindow::Init()
2199 m_lineTo
= (size_t)-1;
2205 m_small_image_list
= (wxImageList
*) NULL
;
2206 m_normal_image_list
= (wxImageList
*) NULL
;
2208 m_small_spacing
= 30;
2209 m_normal_spacing
= 40;
2213 m_isCreated
= false;
2215 m_lastOnSame
= false;
2216 m_renameTimer
= new wxListRenameTimer( this );
2217 m_textctrlWrapper
= NULL
;
2221 m_lineSelectSingleOnUp
=
2222 m_lineBeforeLastClicked
= (size_t)-1;
2227 wxListMainWindow::wxListMainWindow()
2232 m_highlightUnfocusedBrush
= (wxBrush
*) NULL
;
2235 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2240 const wxString
&name
)
2241 : wxScrolledWindow( parent
, id
, pos
, size
,
2242 style
| wxHSCROLL
| wxVSCROLL
, name
)
2248 // OS X sel item highlight color differs from text highlight color, which is
2249 // what wxSYS_COLOUR_HIGHLIGHT returns.
2251 GetThemeBrushAsColor(kThemeBrushAlternatePrimaryHighlightColor
, 32, true, &hilight
);
2252 m_highlightBrush
= new wxBrush( wxColour(hilight
.red
, hilight
.green
, hilight
.blue
), wxSOLID
);
2254 m_highlightBrush
= new wxBrush
2256 wxSystemSettings::GetColour
2258 wxSYS_COLOUR_HIGHLIGHT
2265 // on Mac, this color also differs from the wxSYS_COLOUR_BTNSHADOW, enough to be noticable.
2266 // I don't know if BTNSHADOW is appropriate in other contexts, so I'm just changing it here.
2267 GetThemeBrushAsColor(kThemeBrushSecondaryHighlightColor
, 32, true, &hilight
);
2268 m_highlightUnfocusedBrush
= new wxBrush( wxColour(hilight
.red
, hilight
.green
, hilight
.blue
), wxSOLID
);
2270 m_highlightUnfocusedBrush
= new wxBrush
2272 wxSystemSettings::GetColour
2274 wxSYS_COLOUR_BTNSHADOW
2280 SetScrollbars( 0, 0, 0, 0, 0, 0 );
2282 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
2283 SetOwnForegroundColour( attr
.colFg
);
2284 SetOwnBackgroundColour( attr
.colBg
);
2286 SetOwnFont( attr
.font
);
2289 wxListMainWindow::~wxListMainWindow()
2292 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
2293 WX_CLEAR_ARRAY(m_aColWidths
);
2295 delete m_highlightBrush
;
2296 delete m_highlightUnfocusedBrush
;
2297 delete m_renameTimer
;
2300 void wxListMainWindow::CacheLineData(size_t line
)
2302 wxGenericListCtrl
*listctrl
= GetListCtrl();
2304 wxListLineData
*ld
= GetDummyLine();
2306 size_t countCol
= GetColumnCount();
2307 for ( size_t col
= 0; col
< countCol
; col
++ )
2309 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2310 ld
->SetImage(col
, listctrl
->OnGetItemColumnImage(line
, col
));
2313 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2316 wxListLineData
*wxListMainWindow::GetDummyLine() const
2318 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2319 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2321 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2323 // we need to recreate the dummy line if the number of columns in the
2324 // control changed as it would have the incorrect number of fields
2326 if ( !m_lines
.IsEmpty() &&
2327 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
2329 self
->m_lines
.Clear();
2332 if ( m_lines
.IsEmpty() )
2334 wxListLineData
*line
= new wxListLineData(self
);
2335 self
->m_lines
.Add(line
);
2337 // don't waste extra memory -- there never going to be anything
2338 // else/more in this array
2339 self
->m_lines
.Shrink();
2345 // ----------------------------------------------------------------------------
2346 // line geometry (report mode only)
2347 // ----------------------------------------------------------------------------
2349 wxCoord
wxListMainWindow::GetLineHeight() const
2351 // we cache the line height as calling GetTextExtent() is slow
2352 if ( !m_lineHeight
)
2354 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2356 wxClientDC
dc( self
);
2357 dc
.SetFont( GetFont() );
2360 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2362 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
2365 m_small_image_list
->GetSize(0, iw
, ih
);
2370 self
->m_lineHeight
= y
+ LINE_SPACING
;
2373 return m_lineHeight
;
2376 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2378 wxASSERT_MSG( InReportView(), _T("only works in report mode") );
2380 return LINE_SPACING
+ line
* GetLineHeight();
2383 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2385 if ( !InReportView() )
2386 return GetLine(line
)->m_gi
->m_rectAll
;
2389 rect
.x
= HEADER_OFFSET_X
;
2390 rect
.y
= GetLineY(line
);
2391 rect
.width
= GetHeaderWidth();
2392 rect
.height
= GetLineHeight();
2397 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2399 if ( !InReportView() )
2400 return GetLine(line
)->m_gi
->m_rectLabel
;
2403 rect
.x
= HEADER_OFFSET_X
;
2404 rect
.y
= GetLineY(line
);
2405 rect
.width
= GetColumnWidth(0);
2406 rect
.height
= GetLineHeight();
2411 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2413 if ( !InReportView() )
2414 return GetLine(line
)->m_gi
->m_rectIcon
;
2416 wxListLineData
*ld
= GetLine(line
);
2417 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2420 rect
.x
= HEADER_OFFSET_X
;
2421 rect
.y
= GetLineY(line
);
2422 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2427 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2429 return InReportView() ? GetLineRect(line
)
2430 : GetLine(line
)->m_gi
->m_rectHighlight
;
2433 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2435 wxASSERT_MSG( line
< GetItemCount(), _T("invalid line in HitTestLine") );
2437 wxListLineData
*ld
= GetLine(line
);
2439 if ( ld
->HasImage() && GetLineIconRect(line
).Contains(x
, y
) )
2440 return wxLIST_HITTEST_ONITEMICON
;
2442 // VS: Testing for "ld->HasText() || InReportView()" instead of
2443 // "ld->HasText()" is needed to make empty lines in report view
2445 if ( ld
->HasText() || InReportView() )
2447 wxRect rect
= InReportView() ? GetLineRect(line
)
2448 : GetLineLabelRect(line
);
2450 if ( rect
.Contains(x
, y
) )
2451 return wxLIST_HITTEST_ONITEMLABEL
;
2457 // ----------------------------------------------------------------------------
2458 // highlight (selection) handling
2459 // ----------------------------------------------------------------------------
2461 bool wxListMainWindow::IsHighlighted(size_t line
) const
2465 return m_selStore
.IsSelected(line
);
2469 wxListLineData
*ld
= GetLine(line
);
2470 wxCHECK_MSG( ld
, false, _T("invalid index in IsHighlighted") );
2472 return ld
->IsHighlighted();
2476 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2482 wxArrayInt linesChanged
;
2483 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2486 // meny items changed state, refresh everything
2487 RefreshLines(lineFrom
, lineTo
);
2489 else // only a few items changed state, refresh only them
2491 size_t count
= linesChanged
.GetCount();
2492 for ( size_t n
= 0; n
< count
; n
++ )
2494 RefreshLine(linesChanged
[n
]);
2498 else // iterate over all items in non report view
2500 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2502 if ( HighlightLine(line
, highlight
) )
2508 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2514 changed
= m_selStore
.SelectItem(line
, highlight
);
2518 wxListLineData
*ld
= GetLine(line
);
2519 wxCHECK_MSG( ld
, false, _T("invalid index in HighlightLine") );
2521 changed
= ld
->Highlight(highlight
);
2526 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2527 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2533 void wxListMainWindow::RefreshLine( size_t line
)
2535 if ( InReportView() )
2537 size_t visibleFrom
, visibleTo
;
2538 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2540 if ( line
< visibleFrom
|| line
> visibleTo
)
2544 wxRect rect
= GetLineRect(line
);
2546 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2547 RefreshRect( rect
);
2550 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2552 // we suppose that they are ordered by caller
2553 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2555 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2557 if ( InReportView() )
2559 size_t visibleFrom
, visibleTo
;
2560 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2562 if ( lineFrom
< visibleFrom
)
2563 lineFrom
= visibleFrom
;
2564 if ( lineTo
> visibleTo
)
2569 rect
.y
= GetLineY(lineFrom
);
2570 rect
.width
= GetClientSize().x
;
2571 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2573 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2574 RefreshRect( rect
);
2578 // TODO: this should be optimized...
2579 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2586 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2588 if ( InReportView() )
2590 size_t visibleFrom
, visibleTo
;
2591 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2593 if ( lineFrom
< visibleFrom
)
2594 lineFrom
= visibleFrom
;
2595 else if ( lineFrom
> visibleTo
)
2600 rect
.y
= GetLineY(lineFrom
);
2601 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2603 wxSize size
= GetClientSize();
2604 rect
.width
= size
.x
;
2606 // refresh till the bottom of the window
2607 rect
.height
= size
.y
- rect
.y
;
2609 RefreshRect( rect
);
2613 // TODO: how to do it more efficiently?
2618 void wxListMainWindow::RefreshSelected()
2624 if ( InReportView() )
2626 GetVisibleLinesRange(&from
, &to
);
2631 to
= GetItemCount() - 1;
2634 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
2635 RefreshLine(m_current
);
2637 for ( size_t line
= from
; line
<= to
; line
++ )
2639 // NB: the test works as expected even if m_current == -1
2640 if ( line
!= m_current
&& IsHighlighted(line
) )
2645 void wxListMainWindow::Freeze()
2650 void wxListMainWindow::Thaw()
2652 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen list control?") );
2654 if ( --m_freezeCount
== 0 )
2658 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2660 // Note: a wxPaintDC must be constructed even if no drawing is
2661 // done (a Windows requirement).
2662 wxPaintDC
dc( this );
2664 if ( IsEmpty() || m_freezeCount
)
2665 // nothing to draw or not the moment to draw it
2669 // delay the repainting until we calculate all the items positions
2675 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2677 dc
.SetFont( GetFont() );
2679 if ( InReportView() )
2681 int lineHeight
= GetLineHeight();
2683 size_t visibleFrom
, visibleTo
;
2684 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2687 int xOrig
= dc
.LogicalToDeviceX( 0 );
2688 int yOrig
= dc
.LogicalToDeviceY( 0 );
2690 // tell the caller cache to cache the data
2693 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2694 GetParent()->GetId());
2695 evCache
.SetEventObject( GetParent() );
2696 evCache
.m_oldItemIndex
= visibleFrom
;
2697 evCache
.m_itemIndex
= visibleTo
;
2698 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2701 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2703 rectLine
= GetLineRect(line
);
2706 if ( !IsExposed(rectLine
.x
+ xOrig
, rectLine
.y
+ yOrig
,
2707 rectLine
.width
, rectLine
.height
) )
2709 // don't redraw unaffected lines to avoid flicker
2713 GetLine(line
)->DrawInReportMode( &dc
,
2715 GetLineHighlightRect(line
),
2716 IsHighlighted(line
) );
2719 if ( HasFlag(wxLC_HRULES
) )
2721 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2722 wxSize clientSize
= GetClientSize();
2724 // Don't draw the first one
2725 for ( size_t i
= visibleFrom
+ 1; i
<= visibleTo
; i
++ )
2728 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2729 dc
.DrawLine(0 - dev_x
, i
* lineHeight
,
2730 clientSize
.x
- dev_x
, i
* lineHeight
);
2733 // Draw last horizontal rule
2734 if ( visibleTo
== GetItemCount() - 1 )
2737 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2738 dc
.DrawLine(0 - dev_x
, (m_lineTo
+ 1) * lineHeight
,
2739 clientSize
.x
- dev_x
, (m_lineTo
+ 1) * lineHeight
);
2743 // Draw vertical rules if required
2744 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2746 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2747 wxRect firstItemRect
, lastItemRect
;
2749 GetItemRect(visibleFrom
, firstItemRect
);
2750 GetItemRect(visibleTo
, lastItemRect
);
2751 int x
= firstItemRect
.GetX();
2753 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2755 for (int col
= 0; col
< GetColumnCount(); col
++)
2757 int colWidth
= GetColumnWidth(col
);
2759 dc
.DrawLine(x
- dev_x
- 2, firstItemRect
.GetY() - 1 - dev_y
,
2760 x
- dev_x
- 2, lastItemRect
.GetBottom() + 1 - dev_y
);
2766 size_t count
= GetItemCount();
2767 for ( size_t i
= 0; i
< count
; i
++ )
2769 GetLine(i
)->Draw( &dc
);
2774 // Don't draw rect outline under Mac at all.
2779 wxRect
rect( GetLineHighlightRect( m_current
) );
2781 dc
.SetPen( *wxBLACK_PEN
);
2782 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2783 dc
.DrawRectangle( rect
);
2785 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, wxCONTROL_CURRENT
|wxCONTROL_FOCUSED
);
2793 void wxListMainWindow::HighlightAll( bool on
)
2795 if ( IsSingleSel() )
2797 wxASSERT_MSG( !on
, _T("can't do this in a single selection control") );
2799 // we just have one item to turn off
2800 if ( HasCurrent() && IsHighlighted(m_current
) )
2802 HighlightLine(m_current
, false);
2803 RefreshLine(m_current
);
2808 HighlightLines(0, GetItemCount() - 1, on
);
2812 void wxListMainWindow::SendNotify( size_t line
,
2813 wxEventType command
,
2814 const wxPoint
& point
)
2816 wxListEvent
le( command
, GetParent()->GetId() );
2817 le
.SetEventObject( GetParent() );
2819 le
.m_itemIndex
= line
;
2821 // set only for events which have position
2822 if ( point
!= wxDefaultPosition
)
2823 le
.m_pointDrag
= point
;
2825 // don't try to get the line info for virtual list controls: the main
2826 // program has it anyhow and if we did it would result in accessing all
2827 // the lines, even those which are not visible now and this is precisely
2828 // what we're trying to avoid
2831 if ( line
!= (size_t)-1 )
2833 GetLine(line
)->GetItem( 0, le
.m_item
);
2835 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2837 //else: there may be no more such item
2839 GetParent()->GetEventHandler()->ProcessEvent( le
);
2842 void wxListMainWindow::ChangeCurrent(size_t current
)
2844 m_current
= current
;
2846 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2849 wxTextCtrl
*wxListMainWindow::EditLabel(long item
, wxClassInfo
* textControlClass
)
2851 wxCHECK_MSG( (item
>= 0) && ((size_t)item
< GetItemCount()), NULL
,
2852 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2854 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
2855 wxT("EditLabel() needs a text control") );
2857 size_t itemEdit
= (size_t)item
;
2859 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2860 le
.SetEventObject( GetParent() );
2861 le
.m_itemIndex
= item
;
2862 wxListLineData
*data
= GetLine(itemEdit
);
2863 wxCHECK_MSG( data
, NULL
, _T("invalid index in EditLabel()") );
2864 data
->GetItem( 0, le
.m_item
);
2866 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2868 // vetoed by user code
2872 // We have to call this here because the label in question might just have
2873 // been added and no screen update taken place.
2877 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
2878 m_textctrlWrapper
= new wxListTextCtrlWrapper(this, text
, item
);
2879 return m_textctrlWrapper
->GetText();
2882 void wxListMainWindow::OnRenameTimer()
2884 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2886 EditLabel( m_current
);
2889 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2891 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2892 le
.SetEventObject( GetParent() );
2893 le
.m_itemIndex
= itemEdit
;
2895 wxListLineData
*data
= GetLine(itemEdit
);
2897 wxCHECK_MSG( data
, false, _T("invalid index in OnRenameAccept()") );
2899 data
->GetItem( 0, le
.m_item
);
2900 le
.m_item
.m_text
= value
;
2901 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2905 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2907 // let owner know that the edit was cancelled
2908 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2910 le
.SetEditCanceled(true);
2912 le
.SetEventObject( GetParent() );
2913 le
.m_itemIndex
= itemEdit
;
2915 wxListLineData
*data
= GetLine(itemEdit
);
2916 wxCHECK_RET( data
, _T("invalid index in OnRenameCancelled()") );
2918 data
->GetItem( 0, le
.m_item
);
2919 GetEventHandler()->ProcessEvent( le
);
2922 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2926 // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly
2927 // shutdown the edit control when the mouse is clicked elsewhere on the
2928 // listctrl because the order of events is different (or something like
2929 // that), so explicitly end the edit if it is active.
2930 if ( event
.LeftDown() && m_textctrlWrapper
)
2931 m_textctrlWrapper
->AcceptChangesAndFinish();
2934 event
.SetEventObject( GetParent() );
2935 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2938 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
2940 // let the base handle mouse wheel events.
2945 if ( !HasCurrent() || IsEmpty() )
2947 if (event
.RightDown())
2949 SendNotify( (size_t)-1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
2950 // Allow generation of context menu event
2959 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2960 event
.ButtonDClick()) )
2963 int x
= event
.GetX();
2964 int y
= event
.GetY();
2965 CalcUnscrolledPosition( x
, y
, &x
, &y
);
2967 // where did we hit it (if we did)?
2970 size_t count
= GetItemCount(),
2973 if ( InReportView() )
2975 current
= y
/ GetLineHeight();
2976 if ( current
< count
)
2977 hitResult
= HitTestLine(current
, x
, y
);
2981 // TODO: optimize it too! this is less simple than for report view but
2982 // enumerating all items is still not a way to do it!!
2983 for ( current
= 0; current
< count
; current
++ )
2985 hitResult
= HitTestLine(current
, x
, y
);
2991 if (event
.Dragging())
2993 if (m_dragCount
== 0)
2995 // we have to report the raw, physical coords as we want to be
2996 // able to call HitTest(event.m_pointDrag) from the user code to
2997 // get the item being dragged
2998 m_dragStart
= event
.GetPosition();
3003 if (m_dragCount
!= 3)
3006 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
3007 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
3009 wxListEvent
le( command
, GetParent()->GetId() );
3010 le
.SetEventObject( GetParent() );
3011 le
.m_itemIndex
= m_lineLastClicked
;
3012 le
.m_pointDrag
= m_dragStart
;
3013 GetParent()->GetEventHandler()->ProcessEvent( le
);
3024 // outside of any item
3025 if (event
.RightDown())
3027 SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
3028 // Allow generation of context menu event
3033 // reset the selection and bail out
3034 HighlightAll(false);
3040 bool forceClick
= false;
3041 if (event
.ButtonDClick())
3043 m_renameTimer
->Stop();
3044 m_lastOnSame
= false;
3046 if ( current
== m_lineLastClicked
)
3048 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3054 // The first click was on another item, so don't interpret this as
3055 // a double click, but as a simple click instead
3062 if (m_lineSelectSingleOnUp
!= (size_t)-1)
3064 // select single line
3065 HighlightAll( false );
3066 ReverseHighlight(m_lineSelectSingleOnUp
);
3071 if ((current
== m_current
) &&
3072 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
3073 HasFlag(wxLC_EDIT_LABELS
) )
3075 m_renameTimer
->Start( 100, true );
3079 m_lastOnSame
= false;
3080 m_lineSelectSingleOnUp
= (size_t)-1;
3084 // This is necessary, because after a DnD operation in
3085 // from and to ourself, the up event is swallowed by the
3086 // DnD code. So on next non-up event (which means here and
3087 // now) m_lineSelectSingleOnUp should be reset.
3088 m_lineSelectSingleOnUp
= (size_t)-1;
3090 if (event
.RightDown())
3092 m_lineBeforeLastClicked
= m_lineLastClicked
;
3093 m_lineLastClicked
= current
;
3095 // If the item is already selected, do not update the selection.
3096 // Multi-selections should not be cleared if a selected item is clicked.
3097 if (!IsHighlighted(current
))
3099 HighlightAll(false);
3100 ChangeCurrent(current
);
3101 ReverseHighlight(m_current
);
3104 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
3106 // Allow generation of context menu event
3109 else if (event
.MiddleDown())
3111 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
3113 else if ( event
.LeftDown() || forceClick
)
3115 m_lineBeforeLastClicked
= m_lineLastClicked
;
3116 m_lineLastClicked
= current
;
3118 size_t oldCurrent
= m_current
;
3119 bool oldWasSelected
= IsHighlighted(m_current
);
3121 bool cmdModifierDown
= event
.CmdDown();
3122 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
3124 if ( IsSingleSel() || !IsHighlighted(current
) )
3126 HighlightAll( false );
3128 ChangeCurrent(current
);
3130 ReverseHighlight(m_current
);
3132 else // multi sel & current is highlighted & no mod keys
3134 m_lineSelectSingleOnUp
= current
;
3135 ChangeCurrent(current
); // change focus
3138 else // multi sel & either ctrl or shift is down
3140 if (cmdModifierDown
)
3142 ChangeCurrent(current
);
3144 ReverseHighlight(m_current
);
3146 else if (event
.ShiftDown())
3148 ChangeCurrent(current
);
3150 size_t lineFrom
= oldCurrent
,
3153 if ( lineTo
< lineFrom
)
3156 lineFrom
= m_current
;
3159 HighlightLines(lineFrom
, lineTo
);
3161 else // !ctrl, !shift
3163 // test in the enclosing if should make it impossible
3164 wxFAIL_MSG( _T("how did we get here?") );
3168 if (m_current
!= oldCurrent
)
3169 RefreshLine( oldCurrent
);
3171 // forceClick is only set if the previous click was on another item
3172 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
) && oldWasSelected
;
3176 void wxListMainWindow::MoveToItem(size_t item
)
3178 if ( item
== (size_t)-1 )
3181 wxRect rect
= GetLineRect(item
);
3183 int client_w
, client_h
;
3184 GetClientSize( &client_w
, &client_h
);
3186 const int hLine
= GetLineHeight();
3188 int view_x
= SCROLL_UNIT_X
* GetScrollPos( wxHORIZONTAL
);
3189 int view_y
= hLine
* GetScrollPos( wxVERTICAL
);
3191 if ( InReportView() )
3193 // the next we need the range of lines shown it might be different,
3194 // so recalculate it
3195 ResetVisibleLinesRange();
3197 if (rect
.y
< view_y
)
3198 Scroll( -1, rect
.y
/ hLine
);
3199 if (rect
.y
+ rect
.height
+ 5 > view_y
+ client_h
)
3200 Scroll( -1, (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
);
3204 if (rect
.x
-view_x
< 5)
3205 Scroll( (rect
.x
- 5) / SCROLL_UNIT_X
, -1 );
3206 if (rect
.x
+ rect
.width
- 5 > view_x
+ client_w
)
3207 Scroll( (rect
.x
+ rect
.width
- client_w
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
, -1 );
3211 // ----------------------------------------------------------------------------
3212 // keyboard handling
3213 // ----------------------------------------------------------------------------
3215 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
3217 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
3218 _T("invalid item index in OnArrowChar()") );
3220 size_t oldCurrent
= m_current
;
3222 // in single selection we just ignore Shift as we can't select several
3224 if ( event
.ShiftDown() && !IsSingleSel() )
3226 ChangeCurrent(newCurrent
);
3228 // refresh the old focus to remove it
3229 RefreshLine( oldCurrent
);
3231 // select all the items between the old and the new one
3232 if ( oldCurrent
> newCurrent
)
3234 newCurrent
= oldCurrent
;
3235 oldCurrent
= m_current
;
3238 HighlightLines(oldCurrent
, newCurrent
);
3242 // all previously selected items are unselected unless ctrl is held
3243 if ( !event
.ControlDown() )
3244 HighlightAll(false);
3246 ChangeCurrent(newCurrent
);
3248 // refresh the old focus to remove it
3249 RefreshLine( oldCurrent
);
3251 if ( !event
.ControlDown() )
3253 HighlightLine( m_current
, true );
3257 RefreshLine( m_current
);
3262 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3264 wxWindow
*parent
= GetParent();
3266 // propagate the key event upwards
3267 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3268 ke
.m_shiftDown
= event
.m_shiftDown
;
3269 ke
.m_controlDown
= event
.m_controlDown
;
3270 ke
.m_altDown
= event
.m_altDown
;
3271 ke
.m_metaDown
= event
.m_metaDown
;
3272 ke
.m_keyCode
= event
.m_keyCode
;
3275 ke
.SetEventObject( parent
);
3276 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3281 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3283 wxWindow
*parent
= GetParent();
3285 // send a list_key event up
3288 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3289 le
.m_itemIndex
= m_current
;
3290 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3291 le
.m_code
= event
.GetKeyCode();
3292 le
.SetEventObject( parent
);
3293 parent
->GetEventHandler()->ProcessEvent( le
);
3296 // propagate the char event upwards
3297 wxKeyEvent
ke( wxEVT_CHAR
);
3298 ke
.m_shiftDown
= event
.m_shiftDown
;
3299 ke
.m_controlDown
= event
.m_controlDown
;
3300 ke
.m_altDown
= event
.m_altDown
;
3301 ke
.m_metaDown
= event
.m_metaDown
;
3302 ke
.m_keyCode
= event
.m_keyCode
;
3305 ke
.SetEventObject( parent
);
3306 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3308 if (event
.GetKeyCode() == WXK_TAB
)
3310 wxNavigationKeyEvent nevent
;
3311 nevent
.SetWindowChange( event
.ControlDown() );
3312 nevent
.SetDirection( !event
.ShiftDown() );
3313 nevent
.SetEventObject( GetParent()->GetParent() );
3314 nevent
.SetCurrentFocus( m_parent
);
3315 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
3319 // no item -> nothing to do
3326 // don't use m_linesPerPage directly as it might not be computed yet
3327 const int pageSize
= GetCountPerPage();
3328 wxCHECK_RET( pageSize
, _T("should have non zero page size") );
3330 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3332 if (event
.GetKeyCode() == WXK_RIGHT
)
3333 event
.m_keyCode
= WXK_LEFT
;
3334 else if (event
.GetKeyCode() == WXK_LEFT
)
3335 event
.m_keyCode
= WXK_RIGHT
;
3338 switch ( event
.GetKeyCode() )
3341 if ( m_current
> 0 )
3342 OnArrowChar( m_current
- 1, event
);
3346 if ( m_current
< (size_t)GetItemCount() - 1 )
3347 OnArrowChar( m_current
+ 1, event
);
3352 OnArrowChar( GetItemCount() - 1, event
);
3357 OnArrowChar( 0, event
);
3362 int steps
= InReportView() ? pageSize
- 1
3363 : m_current
% pageSize
;
3365 int index
= m_current
- steps
;
3369 OnArrowChar( index
, event
);
3375 int steps
= InReportView()
3377 : pageSize
- (m_current
% pageSize
) - 1;
3379 size_t index
= m_current
+ steps
;
3380 size_t count
= GetItemCount();
3381 if ( index
>= count
)
3384 OnArrowChar( index
, event
);
3389 if ( !InReportView() )
3391 int index
= m_current
- pageSize
;
3395 OnArrowChar( index
, event
);
3400 if ( !InReportView() )
3402 size_t index
= m_current
+ pageSize
;
3404 size_t count
= GetItemCount();
3405 if ( index
>= count
)
3408 OnArrowChar( index
, event
);
3413 if ( IsSingleSel() )
3415 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3417 if ( IsHighlighted(m_current
) )
3419 // don't unselect the item in single selection mode
3422 //else: select it in ReverseHighlight() below if unselected
3425 ReverseHighlight(m_current
);
3430 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3438 // ----------------------------------------------------------------------------
3440 // ----------------------------------------------------------------------------
3442 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3446 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3447 event
.SetEventObject( GetParent() );
3448 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3452 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3453 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3454 // which are already drawn correctly resulting in horrible flicker - avoid
3464 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3468 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
3469 event
.SetEventObject( GetParent() );
3470 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3478 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3480 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3482 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3484 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3486 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3488 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3490 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3492 else if ( InReportView() && (m_small_image_list
))
3494 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3498 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3500 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3502 m_normal_image_list
->GetSize( index
, width
, height
);
3504 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3506 m_small_image_list
->GetSize( index
, width
, height
);
3508 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3510 m_small_image_list
->GetSize( index
, width
, height
);
3512 else if ( InReportView() && m_small_image_list
)
3514 m_small_image_list
->GetSize( index
, width
, height
);
3523 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3525 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3526 dc
.SetFont( GetFont() );
3529 dc
.GetTextExtent( s
, &lw
, NULL
);
3531 return lw
+ AUTOSIZE_COL_MARGIN
;
3534 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
3538 // calc the spacing from the icon size
3539 int width
= 0, height
= 0;
3541 if ((imageList
) && (imageList
->GetImageCount()) )
3542 imageList
->GetSize(0, width
, height
);
3544 if (which
== wxIMAGE_LIST_NORMAL
)
3546 m_normal_image_list
= imageList
;
3547 m_normal_spacing
= width
+ 8;
3550 if (which
== wxIMAGE_LIST_SMALL
)
3552 m_small_image_list
= imageList
;
3553 m_small_spacing
= width
+ 14;
3554 m_lineHeight
= 0; // ensure that the line height will be recalc'd
3558 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3562 m_small_spacing
= spacing
;
3564 m_normal_spacing
= spacing
;
3567 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3569 return isSmall
? m_small_spacing
: m_normal_spacing
;
3572 // ----------------------------------------------------------------------------
3574 // ----------------------------------------------------------------------------
3576 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3578 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3580 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3582 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3583 item
.m_width
= GetTextLength( item
.m_text
);
3585 wxListHeaderData
*column
= node
->GetData();
3586 column
->SetItem( item
);
3588 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3590 headerWin
->m_dirty
= true;
3594 // invalidate it as it has to be recalculated
3598 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3600 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3601 _T("invalid column index") );
3603 wxCHECK_RET( InReportView(),
3604 _T("SetColumnWidth() can only be called in report mode.") );
3607 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3609 headerWin
->m_dirty
= true;
3611 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3612 wxCHECK_RET( node
, _T("no column?") );
3614 wxListHeaderData
*column
= node
->GetData();
3616 size_t count
= GetItemCount();
3618 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3620 width
= GetTextLength(column
->GetText());
3622 else if ( width
== wxLIST_AUTOSIZE
)
3626 // TODO: determine the max width somehow...
3627 width
= WIDTH_COL_DEFAULT
;
3631 wxClientDC
dc(this);
3632 dc
.SetFont( GetFont() );
3634 int max
= AUTOSIZE_COL_MARGIN
;
3636 // if the cached column width isn't valid then recalculate it
3637 if (m_aColWidths
.Item(col
)->bNeedsUpdate
)
3639 for (size_t i
= 0; i
< count
; i
++)
3641 wxListLineData
*line
= GetLine( i
);
3642 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3644 wxCHECK_RET( n
, _T("no subitem?") );
3646 wxListItemData
*itemData
= n
->GetData();
3649 itemData
->GetItem(item
);
3650 int itemWidth
= GetItemWidthWithImage(&item
);
3651 if (itemWidth
> max
)
3655 m_aColWidths
.Item(col
)->bNeedsUpdate
= false;
3656 m_aColWidths
.Item(col
)->nMaxWidth
= max
;
3659 max
= m_aColWidths
.Item(col
)->nMaxWidth
;
3660 width
= max
+ AUTOSIZE_COL_MARGIN
;
3664 column
->SetWidth( width
);
3666 // invalidate it as it has to be recalculated
3670 int wxListMainWindow::GetHeaderWidth() const
3672 if ( !m_headerWidth
)
3674 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3676 size_t count
= GetColumnCount();
3677 for ( size_t col
= 0; col
< count
; col
++ )
3679 self
->m_headerWidth
+= GetColumnWidth(col
);
3683 return m_headerWidth
;
3686 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3688 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3689 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3691 wxListHeaderData
*column
= node
->GetData();
3692 column
->GetItem( item
);
3695 int wxListMainWindow::GetColumnWidth( int col
) const
3697 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3698 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3700 wxListHeaderData
*column
= node
->GetData();
3701 return column
->GetWidth();
3704 // ----------------------------------------------------------------------------
3706 // ----------------------------------------------------------------------------
3708 void wxListMainWindow::SetItem( wxListItem
&item
)
3710 long id
= item
.m_itemId
;
3711 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3712 _T("invalid item index in SetItem") );
3716 wxListLineData
*line
= GetLine((size_t)id
);
3717 line
->SetItem( item
.m_col
, item
);
3719 // Set item state if user wants
3720 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3721 SetItemState( item
.m_itemId
, item
.m_state
, item
.m_state
);
3725 // update the Max Width Cache if needed
3726 int width
= GetItemWidthWithImage(&item
);
3728 if (width
> m_aColWidths
.Item(item
.m_col
)->nMaxWidth
)
3729 m_aColWidths
.Item(item
.m_col
)->nMaxWidth
= width
;
3733 // update the item on screen
3735 GetItemRect(id
, rectItem
);
3736 RefreshRect(rectItem
);
3739 void wxListMainWindow::SetItemStateAll(long state
, long stateMask
)
3744 // first deal with selection
3745 if ( stateMask
& wxLIST_STATE_SELECTED
)
3747 // set/clear select state
3750 // optimized version for virtual listctrl.
3751 m_selStore
.SelectRange(0, GetItemCount() - 1, state
== wxLIST_STATE_SELECTED
);
3754 else if ( state
& wxLIST_STATE_SELECTED
)
3756 const long count
= GetItemCount();
3757 for( long i
= 0; i
< count
; i
++ )
3759 SetItemState( i
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
3765 // clear for non virtual (somewhat optimized by using GetNextItem())
3767 while ( (i
= GetNextItem(i
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
)) != -1 )
3769 SetItemState( i
, 0, wxLIST_STATE_SELECTED
);
3774 if ( HasCurrent() && (state
== 0) && (stateMask
& wxLIST_STATE_FOCUSED
) )
3776 // unfocus all: only one item can be focussed, so clearing focus for
3777 // all items is simply clearing focus of the focussed item.
3778 SetItemState(m_current
, state
, stateMask
);
3780 //(setting focus to all items makes no sense, so it is not handled here.)
3783 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3787 SetItemStateAll(state
, stateMask
);
3791 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3792 _T("invalid list ctrl item index in SetItem") );
3794 size_t oldCurrent
= m_current
;
3795 size_t item
= (size_t)litem
; // safe because of the check above
3797 // do we need to change the focus?
3798 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3800 if ( state
& wxLIST_STATE_FOCUSED
)
3802 // don't do anything if this item is already focused
3803 if ( item
!= m_current
)
3805 ChangeCurrent(item
);
3807 if ( oldCurrent
!= (size_t)-1 )
3809 if ( IsSingleSel() )
3811 HighlightLine(oldCurrent
, false);
3814 RefreshLine(oldCurrent
);
3817 RefreshLine( m_current
);
3822 // don't do anything if this item is not focused
3823 if ( item
== m_current
)
3827 if ( IsSingleSel() )
3829 // we must unselect the old current item as well or we
3830 // might end up with more than one selected item in a
3831 // single selection control
3832 HighlightLine(oldCurrent
, false);
3835 RefreshLine( oldCurrent
);
3840 // do we need to change the selection state?
3841 if ( stateMask
& wxLIST_STATE_SELECTED
)
3843 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3845 if ( IsSingleSel() )
3849 // selecting the item also makes it the focused one in the
3851 if ( m_current
!= item
)
3853 ChangeCurrent(item
);
3855 if ( oldCurrent
!= (size_t)-1 )
3857 HighlightLine( oldCurrent
, false );
3858 RefreshLine( oldCurrent
);
3864 // only the current item may be selected anyhow
3865 if ( item
!= m_current
)
3870 if ( HighlightLine(item
, on
) )
3877 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3879 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3880 _T("invalid list ctrl item index in GetItemState()") );
3882 int ret
= wxLIST_STATE_DONTCARE
;
3884 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3886 if ( (size_t)item
== m_current
)
3887 ret
|= wxLIST_STATE_FOCUSED
;
3890 if ( stateMask
& wxLIST_STATE_SELECTED
)
3892 if ( IsHighlighted(item
) )
3893 ret
|= wxLIST_STATE_SELECTED
;
3899 void wxListMainWindow::GetItem( wxListItem
&item
) const
3901 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3902 _T("invalid item index in GetItem") );
3904 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3905 line
->GetItem( item
.m_col
, item
);
3907 // Get item state if user wants it
3908 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3909 item
.m_state
= GetItemState( item
.m_itemId
, wxLIST_STATE_SELECTED
|
3910 wxLIST_STATE_FOCUSED
);
3913 // ----------------------------------------------------------------------------
3915 // ----------------------------------------------------------------------------
3917 size_t wxListMainWindow::GetItemCount() const
3919 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3922 void wxListMainWindow::SetItemCount(long count
)
3924 m_selStore
.SetItemCount(count
);
3925 m_countVirt
= count
;
3927 ResetVisibleLinesRange();
3929 // scrollbars must be reset
3933 int wxListMainWindow::GetSelectedItemCount() const
3935 // deal with the quick case first
3936 if ( IsSingleSel() )
3937 return HasCurrent() ? IsHighlighted(m_current
) : false;
3939 // virtual controls remmebers all its selections itself
3941 return m_selStore
.GetSelectedCount();
3943 // TODO: we probably should maintain the number of items selected even for
3944 // non virtual controls as enumerating all lines is really slow...
3945 size_t countSel
= 0;
3946 size_t count
= GetItemCount();
3947 for ( size_t line
= 0; line
< count
; line
++ )
3949 if ( GetLine(line
)->IsHighlighted() )
3956 // ----------------------------------------------------------------------------
3957 // item position/size
3958 // ----------------------------------------------------------------------------
3960 wxRect
wxListMainWindow::GetViewRect() const
3962 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
3963 _T("wxListCtrl::GetViewRect() only works in icon mode") );
3965 // we need to find the longest/tallest label
3966 wxCoord xMax
= 0, yMax
= 0;
3967 const int count
= GetItemCount();
3970 for ( int i
= 0; i
< count
; i
++ )
3975 wxCoord x
= r
.GetRight(),
3985 // some fudge needed to make it look prettier
3986 xMax
+= 2 * EXTRA_BORDER_X
;
3987 yMax
+= 2 * EXTRA_BORDER_Y
;
3989 // account for the scrollbars if necessary
3990 const wxSize sizeAll
= GetClientSize();
3991 if ( xMax
> sizeAll
.x
)
3992 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3993 if ( yMax
> sizeAll
.y
)
3994 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3996 return wxRect(0, 0, xMax
, yMax
);
3999 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
) const
4001 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4002 _T("invalid index in GetItemRect") );
4004 // ensure that we're laid out, otherwise we could return nonsense
4007 wxConstCast(this, wxListMainWindow
)->
4008 RecalculatePositions(true /* no refresh */);
4011 rect
= GetLineRect((size_t)index
);
4013 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
4016 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
4019 GetItemRect(item
, rect
);
4027 // ----------------------------------------------------------------------------
4028 // geometry calculation
4029 // ----------------------------------------------------------------------------
4031 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
4033 const int lineHeight
= GetLineHeight();
4035 wxClientDC
dc( this );
4036 dc
.SetFont( GetFont() );
4038 const size_t count
= GetItemCount();
4041 if ( HasFlag(wxLC_ICON
) )
4042 iconSpacing
= m_normal_spacing
;
4043 else if ( HasFlag(wxLC_SMALL_ICON
) )
4044 iconSpacing
= m_small_spacing
;
4048 // Note that we do not call GetClientSize() here but
4049 // GetSize() and subtract the border size for sunken
4050 // borders manually. This is technically incorrect,
4051 // but we need to know the client area's size WITHOUT
4052 // scrollbars here. Since we don't know if there are
4053 // any scrollbars, we use GetSize() instead. Another
4054 // solution would be to call SetScrollbars() here to
4055 // remove the scrollbars and call GetClientSize() then,
4056 // but this might result in flicker and - worse - will
4057 // reset the scrollbars to 0 which is not good at all
4058 // if you resize a dialog/window, but don't want to
4059 // reset the window scrolling. RR.
4060 // Furthermore, we actually do NOT subtract the border
4061 // width as 2 pixels is just the extra space which we
4062 // need around the actual content in the window. Other-
4063 // wise the text would e.g. touch the upper border. RR.
4066 GetSize( &clientWidth
, &clientHeight
);
4068 if ( InReportView() )
4070 // all lines have the same height and we scroll one line per step
4071 int entireHeight
= count
* lineHeight
+ LINE_SPACING
;
4073 m_linesPerPage
= clientHeight
/ lineHeight
;
4075 ResetVisibleLinesRange();
4077 SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
4078 GetHeaderWidth() / SCROLL_UNIT_X
,
4079 (entireHeight
+ lineHeight
- 1) / lineHeight
,
4080 GetScrollPos(wxHORIZONTAL
),
4081 GetScrollPos(wxVERTICAL
),
4086 // we have 3 different layout strategies: either layout all items
4087 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
4088 // to arrange them in top to bottom, left to right (don't ask me why
4089 // not the other way round...) order
4090 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
4092 int x
= EXTRA_BORDER_X
;
4093 int y
= EXTRA_BORDER_Y
;
4095 wxCoord widthMax
= 0;
4098 for ( i
= 0; i
< count
; i
++ )
4100 wxListLineData
*line
= GetLine(i
);
4101 line
->CalculateSize( &dc
, iconSpacing
);
4102 line
->SetPosition( x
, y
, iconSpacing
);
4104 wxSize sizeLine
= GetLineSize(i
);
4106 if ( HasFlag(wxLC_ALIGN_TOP
) )
4108 if ( sizeLine
.x
> widthMax
)
4109 widthMax
= sizeLine
.x
;
4113 else // wxLC_ALIGN_LEFT
4115 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
4119 if ( HasFlag(wxLC_ALIGN_TOP
) )
4121 // traverse the items again and tweak their sizes so that they are
4122 // all the same in a row
4123 for ( i
= 0; i
< count
; i
++ )
4125 wxListLineData
*line
= GetLine(i
);
4126 line
->m_gi
->ExtendWidth(widthMax
);
4134 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4135 (y
+ lineHeight
) / lineHeight
,
4136 GetScrollPos( wxHORIZONTAL
),
4137 GetScrollPos( wxVERTICAL
),
4141 else // "flowed" arrangement, the most complicated case
4143 // at first we try without any scrollbars, if the items don't fit into
4144 // the window, we recalculate after subtracting the space taken by the
4147 int entireWidth
= 0;
4149 for (int tries
= 0; tries
< 2; tries
++)
4151 entireWidth
= 2 * EXTRA_BORDER_X
;
4155 // Now we have decided that the items do not fit into the
4156 // client area, so we need a scrollbar
4157 entireWidth
+= SCROLL_UNIT_X
;
4160 int x
= EXTRA_BORDER_X
;
4161 int y
= EXTRA_BORDER_Y
;
4162 int maxWidthInThisRow
= 0;
4165 int currentlyVisibleLines
= 0;
4167 for (size_t i
= 0; i
< count
; i
++)
4169 currentlyVisibleLines
++;
4170 wxListLineData
*line
= GetLine( i
);
4171 line
->CalculateSize( &dc
, iconSpacing
);
4172 line
->SetPosition( x
, y
, iconSpacing
);
4174 wxSize sizeLine
= GetLineSize( i
);
4176 if ( maxWidthInThisRow
< sizeLine
.x
)
4177 maxWidthInThisRow
= sizeLine
.x
;
4180 if (currentlyVisibleLines
> m_linesPerPage
)
4181 m_linesPerPage
= currentlyVisibleLines
;
4183 if ( y
+ sizeLine
.y
>= clientHeight
)
4185 currentlyVisibleLines
= 0;
4187 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
4188 x
+= maxWidthInThisRow
;
4189 entireWidth
+= maxWidthInThisRow
;
4190 maxWidthInThisRow
= 0;
4193 // We have reached the last item.
4194 if ( i
== count
- 1 )
4195 entireWidth
+= maxWidthInThisRow
;
4197 if ( (tries
== 0) &&
4198 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
4200 clientHeight
-= wxSystemSettings::
4201 GetMetric(wxSYS_HSCROLL_Y
);
4206 if ( i
== count
- 1 )
4207 tries
= 1; // Everything fits, no second try required.
4215 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4217 GetScrollPos( wxHORIZONTAL
),
4226 // FIXME: why should we call it from here?
4233 void wxListMainWindow::RefreshAll()
4238 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
4239 if ( headerWin
&& headerWin
->m_dirty
)
4241 headerWin
->m_dirty
= false;
4242 headerWin
->Refresh();
4246 void wxListMainWindow::UpdateCurrent()
4248 if ( !HasCurrent() && !IsEmpty() )
4252 long wxListMainWindow::GetNextItem( long item
,
4253 int WXUNUSED(geometry
),
4257 max
= GetItemCount();
4258 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
4259 _T("invalid listctrl index in GetNextItem()") );
4261 // notice that we start with the next item (or the first one if item == -1)
4262 // and this is intentional to allow writing a simple loop to iterate over
4263 // all selected items
4266 // this is not an error because the index was OK initially,
4267 // just no such item
4274 size_t count
= GetItemCount();
4275 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
4277 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
4280 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
4287 // ----------------------------------------------------------------------------
4289 // ----------------------------------------------------------------------------
4291 void wxListMainWindow::DeleteItem( long lindex
)
4293 size_t count
= GetItemCount();
4295 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
4296 _T("invalid item index in DeleteItem") );
4298 size_t index
= (size_t)lindex
;
4300 // we don't need to adjust the index for the previous items
4301 if ( HasCurrent() && m_current
>= index
)
4303 // if the current item is being deleted, we want the next one to
4304 // become selected - unless there is no next one - so don't adjust
4305 // m_current in this case
4306 if ( m_current
!= index
|| m_current
== count
- 1 )
4310 if ( InReportView() )
4312 // mark the Column Max Width cache as dirty if the items in the line
4313 // we're deleting contain the Max Column Width
4314 wxListLineData
* const line
= GetLine(index
);
4315 wxListItemDataList::compatibility_iterator n
;
4316 wxListItemData
*itemData
;
4320 for (size_t i
= 0; i
< m_columns
.GetCount(); i
++)
4322 n
= line
->m_items
.Item( i
);
4323 itemData
= n
->GetData();
4324 itemData
->GetItem(item
);
4326 itemWidth
= GetItemWidthWithImage(&item
);
4328 if (itemWidth
>= m_aColWidths
.Item(i
)->nMaxWidth
)
4329 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4332 ResetVisibleLinesRange();
4335 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
, wxDefaultPosition
);
4340 m_selStore
.OnItemDelete(index
);
4344 m_lines
.RemoveAt( index
);
4347 // we need to refresh the (vert) scrollbar as the number of items changed
4350 RefreshAfter(index
);
4353 void wxListMainWindow::DeleteColumn( int col
)
4355 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4357 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
4360 delete node
->GetData();
4361 m_columns
.Erase( node
);
4365 // update all the items
4366 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4368 wxListLineData
* const line
= GetLine(i
);
4369 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
4370 delete n
->GetData();
4371 line
->m_items
.Erase(n
);
4375 if ( InReportView() ) // we only cache max widths when in Report View
4377 delete m_aColWidths
.Item(col
);
4378 m_aColWidths
.RemoveAt(col
);
4381 // invalidate it as it has to be recalculated
4385 void wxListMainWindow::DoDeleteAllItems()
4388 // nothing to do - in particular, don't send the event
4393 // to make the deletion of all items faster, we don't send the
4394 // notifications for each item deletion in this case but only one event
4395 // for all of them: this is compatible with wxMSW and documented in
4396 // DeleteAllItems() description
4398 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
4399 event
.SetEventObject( GetParent() );
4400 GetParent()->GetEventHandler()->ProcessEvent( event
);
4408 if ( InReportView() )
4410 ResetVisibleLinesRange();
4411 for (size_t i
= 0; i
< m_aColWidths
.GetCount(); i
++)
4413 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4420 void wxListMainWindow::DeleteAllItems()
4424 RecalculatePositions();
4427 void wxListMainWindow::DeleteEverything()
4429 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
4430 WX_CLEAR_ARRAY(m_aColWidths
);
4435 // ----------------------------------------------------------------------------
4436 // scanning for an item
4437 // ----------------------------------------------------------------------------
4439 void wxListMainWindow::EnsureVisible( long index
)
4441 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4442 _T("invalid index in EnsureVisible") );
4444 // We have to call this here because the label in question might just have
4445 // been added and its position is not known yet
4447 RecalculatePositions(true /* no refresh */);
4449 MoveToItem((size_t)index
);
4452 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
4459 size_t count
= GetItemCount();
4460 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
4462 wxListLineData
*line
= GetLine(i
);
4463 if ( line
->GetText(0) == tmp
)
4470 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4476 size_t count
= GetItemCount();
4477 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4479 wxListLineData
*line
= GetLine(i
);
4481 line
->GetItem( 0, item
);
4482 if (item
.m_data
== data
)
4489 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4492 GetVisibleLinesRange( &topItem
, NULL
);
4495 GetItemPosition( GetItemCount() - 1, p
);
4499 long id
= (long)floor( pt
.y
* double(GetItemCount() - topItem
- 1) / p
.y
+ topItem
);
4500 if ( id
>= 0 && id
< (long)GetItemCount() )
4506 long wxListMainWindow::HitTest( int x
, int y
, int &flags
) const
4508 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4510 size_t count
= GetItemCount();
4512 if ( InReportView() )
4514 size_t current
= y
/ GetLineHeight();
4515 if ( current
< count
)
4517 flags
= HitTestLine(current
, x
, y
);
4524 // TODO: optimize it too! this is less simple than for report view but
4525 // enumerating all items is still not a way to do it!!
4526 for ( size_t current
= 0; current
< count
; current
++ )
4528 flags
= HitTestLine(current
, x
, y
);
4537 // ----------------------------------------------------------------------------
4539 // ----------------------------------------------------------------------------
4541 void wxListMainWindow::InsertItem( wxListItem
&item
)
4543 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4545 int count
= GetItemCount();
4546 wxCHECK_RET( item
.m_itemId
>= 0, _T("invalid item index") );
4548 if (item
.m_itemId
> count
)
4549 item
.m_itemId
= count
;
4551 size_t id
= item
.m_itemId
;
4555 if ( InReportView() )
4557 ResetVisibleLinesRange();
4559 // calculate the width of the item and adjust the max column width
4560 wxColWidthInfo
*pWidthInfo
= m_aColWidths
.Item(item
.GetColumn());
4561 int width
= GetItemWidthWithImage(&item
);
4562 item
.SetWidth(width
);
4563 if (width
> pWidthInfo
->nMaxWidth
)
4564 pWidthInfo
->nMaxWidth
= width
;
4567 wxListLineData
*line
= new wxListLineData(this);
4569 line
->SetItem( item
.m_col
, item
);
4571 m_lines
.Insert( line
, id
);
4575 // If an item is selected at or below the point of insertion, we need to
4576 // increment the member variables because the current row's index has gone
4578 if ( HasCurrent() && m_current
>= id
)
4581 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4583 RefreshLines(id
, GetItemCount() - 1);
4586 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4589 if ( InReportView() )
4591 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4592 item
.m_width
= GetTextLength( item
.m_text
);
4594 wxListHeaderData
*column
= new wxListHeaderData( item
);
4595 wxColWidthInfo
*colWidthInfo
= new wxColWidthInfo();
4597 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4600 wxListHeaderDataList::compatibility_iterator
4601 node
= m_columns
.Item( col
);
4602 m_columns
.Insert( node
, column
);
4603 m_aColWidths
.Insert( colWidthInfo
, col
);
4607 m_columns
.Append( column
);
4608 m_aColWidths
.Add( colWidthInfo
);
4613 // update all the items
4614 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4616 wxListLineData
* const line
= GetLine(i
);
4617 wxListItemData
* const data
= new wxListItemData(this);
4619 line
->m_items
.Insert(col
, data
);
4621 line
->m_items
.Append(data
);
4625 // invalidate it as it has to be recalculated
4630 int wxListMainWindow::GetItemWidthWithImage(wxListItem
* item
)
4633 wxClientDC
dc(this);
4635 dc
.SetFont( GetFont() );
4637 if (item
->GetImage() != -1)
4640 GetImageSize( item
->GetImage(), ix
, iy
);
4644 if (!item
->GetText().empty())
4647 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
4654 // ----------------------------------------------------------------------------
4656 // ----------------------------------------------------------------------------
4658 wxListCtrlCompare list_ctrl_compare_func_2
;
4659 long list_ctrl_compare_data
;
4661 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4663 wxListLineData
*line1
= *arg1
;
4664 wxListLineData
*line2
= *arg2
;
4666 line1
->GetItem( 0, item
);
4667 wxUIntPtr data1
= item
.m_data
;
4668 line2
->GetItem( 0, item
);
4669 wxUIntPtr data2
= item
.m_data
;
4670 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4673 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4675 list_ctrl_compare_func_2
= fn
;
4676 list_ctrl_compare_data
= data
;
4677 m_lines
.Sort( list_ctrl_compare_func_1
);
4681 // ----------------------------------------------------------------------------
4683 // ----------------------------------------------------------------------------
4685 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4687 // update our idea of which lines are shown when we redraw the window the
4689 ResetVisibleLinesRange();
4692 #if ( defined(__WXGTK__) || defined(__WXMAC__) ) && !defined(__WXUNIVERSAL__)
4693 wxScrolledWindow::OnScroll(event
);
4695 HandleOnScroll( event
);
4698 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4700 wxGenericListCtrl
* lc
= GetListCtrl();
4701 wxCHECK_RET( lc
, _T("no listctrl window?") );
4703 lc
->m_headerWin
->Refresh();
4704 lc
->m_headerWin
->Update();
4708 int wxListMainWindow::GetCountPerPage() const
4710 if ( !m_linesPerPage
)
4712 wxConstCast(this, wxListMainWindow
)->
4713 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4716 return m_linesPerPage
;
4719 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4721 wxASSERT_MSG( InReportView(), _T("this is for report mode only") );
4723 if ( m_lineFrom
== (size_t)-1 )
4725 size_t count
= GetItemCount();
4728 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4730 // this may happen if SetScrollbars() hadn't been called yet
4731 if ( m_lineFrom
>= count
)
4732 m_lineFrom
= count
- 1;
4734 // we redraw one extra line but this is needed to make the redrawing
4735 // logic work when there is a fractional number of lines on screen
4736 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4737 if ( m_lineTo
>= count
)
4738 m_lineTo
= count
- 1;
4740 else // empty control
4743 m_lineTo
= (size_t)-1;
4747 wxASSERT_MSG( IsEmpty() ||
4748 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4749 _T("GetVisibleLinesRange() returns incorrect result") );
4757 // -------------------------------------------------------------------------------------
4758 // wxGenericListCtrl
4759 // -------------------------------------------------------------------------------------
4761 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4763 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4764 EVT_SIZE(wxGenericListCtrl::OnSize
)
4767 wxGenericListCtrl::wxGenericListCtrl()
4769 m_imageListNormal
= (wxImageList
*) NULL
;
4770 m_imageListSmall
= (wxImageList
*) NULL
;
4771 m_imageListState
= (wxImageList
*) NULL
;
4773 m_ownsImageListNormal
=
4774 m_ownsImageListSmall
=
4775 m_ownsImageListState
= false;
4777 m_mainWin
= (wxListMainWindow
*) NULL
;
4778 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4782 wxGenericListCtrl::~wxGenericListCtrl()
4784 if (m_ownsImageListNormal
)
4785 delete m_imageListNormal
;
4786 if (m_ownsImageListSmall
)
4787 delete m_imageListSmall
;
4788 if (m_ownsImageListState
)
4789 delete m_imageListState
;
4792 void wxGenericListCtrl::CalculateAndSetHeaderHeight()
4798 GetThemeMetric( kThemeMetricListHeaderHeight
, &h
);
4800 // we use 'g' to get the descent, too
4802 m_headerWin
->GetTextExtent(wxT("Hg"), &w
, &h
, &d
);
4803 h
+= d
+ 2 * HEADER_OFFSET_Y
+ EXTRA_HEIGHT
;
4806 // only update if changed
4807 if ( h
!= m_headerHeight
)
4812 ResizeReportView(true);
4813 else //why is this needed if it doesn't have a header?
4814 m_headerWin
->SetSize(m_headerWin
->GetSize().x
, m_headerHeight
);
4819 void wxGenericListCtrl::CreateHeaderWindow()
4821 m_headerWin
= new wxListHeaderWindow
4823 this, wxID_ANY
, m_mainWin
,
4825 wxSize(GetClientSize().x
, m_headerHeight
),
4828 CalculateAndSetHeaderHeight();
4831 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4836 const wxValidator
&validator
,
4837 const wxString
&name
)
4841 m_imageListState
= (wxImageList
*) NULL
;
4842 m_ownsImageListNormal
=
4843 m_ownsImageListSmall
=
4844 m_ownsImageListState
= false;
4846 m_mainWin
= (wxListMainWindow
*) NULL
;
4847 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4851 if ( !(style
& wxLC_MASK_TYPE
) )
4853 style
= style
| wxLC_LIST
;
4856 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4859 // don't create the inner window with the border
4860 style
&= ~wxBORDER_MASK
;
4862 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0, 0), size
, style
);
4864 #ifdef __WXMAC_CARBON__
4865 // Human Interface Guidelines ask us for a special font in this case
4866 if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
)
4869 font
.MacCreateThemeFont( kThemeViewsFont
);
4874 if ( InReportView() )
4876 CreateHeaderWindow();
4878 #ifdef __WXMAC_CARBON__
4882 font
.MacCreateThemeFont( kThemeSmallSystemFont
);
4883 m_headerWin
->SetFont( font
);
4884 CalculateAndSetHeaderHeight();
4888 if ( HasFlag(wxLC_NO_HEADER
) )
4889 // VZ: why do we create it at all then?
4890 m_headerWin
->Show( false );
4893 SetInitialSize(size
);
4898 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4900 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4901 _T("wxLC_VIRTUAL can't be [un]set") );
4903 long flag
= GetWindowStyle();
4907 if (style
& wxLC_MASK_TYPE
)
4908 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4909 if (style
& wxLC_MASK_ALIGN
)
4910 flag
&= ~wxLC_MASK_ALIGN
;
4911 if (style
& wxLC_MASK_SORT
)
4912 flag
&= ~wxLC_MASK_SORT
;
4920 SetWindowStyleFlag( flag
);
4923 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4927 m_mainWin
->DeleteEverything();
4929 // has the header visibility changed?
4930 bool hasHeader
= HasHeader();
4931 bool willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4933 if ( hasHeader
!= willHaveHeader
)
4940 // don't delete, just hide, as we can reuse it later
4941 m_headerWin
->Show(false);
4943 //else: nothing to do
4945 else // must show header
4949 CreateHeaderWindow();
4951 else // already have it, just show
4953 m_headerWin
->Show( true );
4957 ResizeReportView(willHaveHeader
);
4961 wxWindow::SetWindowStyleFlag( flag
);
4964 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4966 m_mainWin
->GetColumn( col
, item
);
4970 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
4972 m_mainWin
->SetColumn( col
, item
);
4976 int wxGenericListCtrl::GetColumnWidth( int col
) const
4978 return m_mainWin
->GetColumnWidth( col
);
4981 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4983 m_mainWin
->SetColumnWidth( col
, width
);
4987 int wxGenericListCtrl::GetCountPerPage() const
4989 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4992 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4994 m_mainWin
->GetItem( info
);
4998 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
5000 m_mainWin
->SetItem( info
);
5004 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
5007 info
.m_text
= label
;
5008 info
.m_mask
= wxLIST_MASK_TEXT
;
5009 info
.m_itemId
= index
;
5013 info
.m_image
= imageId
;
5014 info
.m_mask
|= wxLIST_MASK_IMAGE
;
5017 m_mainWin
->SetItem(info
);
5021 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
5023 return m_mainWin
->GetItemState( item
, stateMask
);
5026 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
5028 m_mainWin
->SetItemState( item
, state
, stateMask
);
5033 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
5035 return SetItemColumnImage(item
, 0, image
);
5039 wxGenericListCtrl::SetItemColumnImage( long item
, long column
, int image
)
5042 info
.m_image
= image
;
5043 info
.m_mask
= wxLIST_MASK_IMAGE
;
5044 info
.m_itemId
= item
;
5045 info
.m_col
= column
;
5046 m_mainWin
->SetItem( info
);
5050 wxString
wxGenericListCtrl::GetItemText( long item
) const
5052 return m_mainWin
->GetItemText(item
);
5055 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
5057 m_mainWin
->SetItemText(item
, str
);
5060 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
5063 info
.m_mask
= wxLIST_MASK_DATA
;
5064 info
.m_itemId
= item
;
5065 m_mainWin
->GetItem( info
);
5069 bool wxGenericListCtrl::SetItemData( long item
, long data
)
5072 info
.m_mask
= wxLIST_MASK_DATA
;
5073 info
.m_itemId
= item
;
5075 m_mainWin
->SetItem( info
);
5079 wxRect
wxGenericListCtrl::GetViewRect() const
5081 return m_mainWin
->GetViewRect();
5084 bool wxGenericListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
5086 m_mainWin
->GetItemRect( item
, rect
);
5087 if ( m_mainWin
->HasHeader() )
5088 rect
.y
+= m_headerHeight
+ 1;
5092 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
5094 m_mainWin
->GetItemPosition( item
, pos
);
5098 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
5103 int wxGenericListCtrl::GetItemCount() const
5105 return m_mainWin
->GetItemCount();
5108 int wxGenericListCtrl::GetColumnCount() const
5110 return m_mainWin
->GetColumnCount();
5113 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
5115 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
5118 wxSize
wxGenericListCtrl::GetItemSpacing() const
5120 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
5122 return wxSize(spacing
, spacing
);
5125 #if WXWIN_COMPATIBILITY_2_6
5126 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
5128 return m_mainWin
->GetItemSpacing( isSmall
);
5130 #endif // WXWIN_COMPATIBILITY_2_6
5132 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
5135 info
.m_itemId
= item
;
5136 info
.SetTextColour( col
);
5137 m_mainWin
->SetItem( info
);
5140 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
5143 info
.m_itemId
= item
;
5144 m_mainWin
->GetItem( info
);
5145 return info
.GetTextColour();
5148 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
5151 info
.m_itemId
= item
;
5152 info
.SetBackgroundColour( col
);
5153 m_mainWin
->SetItem( info
);
5156 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
5159 info
.m_itemId
= item
;
5160 m_mainWin
->GetItem( info
);
5161 return info
.GetBackgroundColour();
5164 void wxGenericListCtrl::SetItemFont( long item
, const wxFont
&f
)
5167 info
.m_itemId
= item
;
5169 m_mainWin
->SetItem( info
);
5172 wxFont
wxGenericListCtrl::GetItemFont( long item
) const
5175 info
.m_itemId
= item
;
5176 m_mainWin
->GetItem( info
);
5177 return info
.GetFont();
5180 int wxGenericListCtrl::GetSelectedItemCount() const
5182 return m_mainWin
->GetSelectedItemCount();
5185 wxColour
wxGenericListCtrl::GetTextColour() const
5187 return GetForegroundColour();
5190 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
5192 SetForegroundColour(col
);
5195 long wxGenericListCtrl::GetTopItem() const
5198 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
5202 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
5204 return m_mainWin
->GetNextItem( item
, geom
, state
);
5207 wxImageList
*wxGenericListCtrl::GetImageList(int which
) const
5209 if (which
== wxIMAGE_LIST_NORMAL
)
5210 return m_imageListNormal
;
5211 else if (which
== wxIMAGE_LIST_SMALL
)
5212 return m_imageListSmall
;
5213 else if (which
== wxIMAGE_LIST_STATE
)
5214 return m_imageListState
;
5216 return (wxImageList
*) NULL
;
5219 void wxGenericListCtrl::SetImageList( wxImageList
*imageList
, int which
)
5221 if ( which
== wxIMAGE_LIST_NORMAL
)
5223 if (m_ownsImageListNormal
)
5224 delete m_imageListNormal
;
5225 m_imageListNormal
= imageList
;
5226 m_ownsImageListNormal
= false;
5228 else if ( which
== wxIMAGE_LIST_SMALL
)
5230 if (m_ownsImageListSmall
)
5231 delete m_imageListSmall
;
5232 m_imageListSmall
= imageList
;
5233 m_ownsImageListSmall
= false;
5235 else if ( which
== wxIMAGE_LIST_STATE
)
5237 if (m_ownsImageListState
)
5238 delete m_imageListState
;
5239 m_imageListState
= imageList
;
5240 m_ownsImageListState
= false;
5243 m_mainWin
->SetImageList( imageList
, which
);
5246 void wxGenericListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
5248 SetImageList(imageList
, which
);
5249 if ( which
== wxIMAGE_LIST_NORMAL
)
5250 m_ownsImageListNormal
= true;
5251 else if ( which
== wxIMAGE_LIST_SMALL
)
5252 m_ownsImageListSmall
= true;
5253 else if ( which
== wxIMAGE_LIST_STATE
)
5254 m_ownsImageListState
= true;
5257 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
5262 bool wxGenericListCtrl::DeleteItem( long item
)
5264 m_mainWin
->DeleteItem( item
);
5268 bool wxGenericListCtrl::DeleteAllItems()
5270 m_mainWin
->DeleteAllItems();
5274 bool wxGenericListCtrl::DeleteAllColumns()
5276 size_t count
= m_mainWin
->m_columns
.GetCount();
5277 for ( size_t n
= 0; n
< count
; n
++ )
5282 void wxGenericListCtrl::ClearAll()
5284 m_mainWin
->DeleteEverything();
5287 bool wxGenericListCtrl::DeleteColumn( int col
)
5289 m_mainWin
->DeleteColumn( col
);
5291 // if we don't have the header any longer, we need to relayout the window
5292 if ( !GetColumnCount() )
5293 ResizeReportView(false /* no header */);
5297 wxTextCtrl
*wxGenericListCtrl::EditLabel(long item
,
5298 wxClassInfo
* textControlClass
)
5300 return m_mainWin
->EditLabel( item
, textControlClass
);
5303 wxTextCtrl
*wxGenericListCtrl::GetEditControl() const
5305 return m_mainWin
->GetEditControl();
5308 bool wxGenericListCtrl::EnsureVisible( long item
)
5310 m_mainWin
->EnsureVisible( item
);
5314 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
5316 return m_mainWin
->FindItem( start
, str
, partial
);
5319 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
5321 return m_mainWin
->FindItem( start
, data
);
5324 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
5325 int WXUNUSED(direction
))
5327 return m_mainWin
->FindItem( pt
);
5330 // TODO: sub item hit testing
5331 long wxGenericListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *) const
5333 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
5336 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
5338 m_mainWin
->InsertItem( info
);
5339 return info
.m_itemId
;
5342 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
5345 info
.m_text
= label
;
5346 info
.m_mask
= wxLIST_MASK_TEXT
;
5347 info
.m_itemId
= index
;
5348 return InsertItem( info
);
5351 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
5354 info
.m_mask
= wxLIST_MASK_IMAGE
;
5355 info
.m_image
= imageIndex
;
5356 info
.m_itemId
= index
;
5357 return InsertItem( info
);
5360 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
5363 info
.m_text
= label
;
5364 info
.m_image
= imageIndex
;
5365 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
5366 info
.m_itemId
= index
;
5367 return InsertItem( info
);
5370 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
5372 wxCHECK_MSG( m_headerWin
, -1, _T("can't add column in non report mode") );
5374 m_mainWin
->InsertColumn( col
, item
);
5376 // if we hadn't had a header before but have one now
5377 // then we need to relayout the window
5378 if ( GetColumnCount() == 1 && m_mainWin
->HasHeader() )
5379 ResizeReportView(true /* have header */);
5381 m_headerWin
->Refresh();
5386 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
5387 int format
, int width
)
5390 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
5391 item
.m_text
= heading
;
5394 item
.m_mask
|= wxLIST_MASK_WIDTH
;
5395 item
.m_width
= width
;
5398 item
.m_format
= format
;
5400 return InsertColumn( col
, item
);
5403 bool wxGenericListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
5409 // fn is a function which takes 3 long arguments: item1, item2, data.
5410 // item1 is the long data associated with a first item (NOT the index).
5411 // item2 is the long data associated with a second item (NOT the index).
5412 // data is the same value as passed to SortItems.
5413 // The return value is a negative number if the first item should precede the second
5414 // item, a positive number of the second item should precede the first,
5415 // or zero if the two items are equivalent.
5416 // data is arbitrary data to be passed to the sort function.
5418 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
5420 m_mainWin
->SortItems( fn
, data
);
5424 // ----------------------------------------------------------------------------
5426 // ----------------------------------------------------------------------------
5428 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5433 ResizeReportView(m_mainWin
->HasHeader());
5434 m_mainWin
->RecalculatePositions();
5437 void wxGenericListCtrl::ResizeReportView(bool showHeader
)
5440 GetClientSize( &cw
, &ch
);
5444 m_headerWin
->SetSize( 0, 0, cw
, m_headerHeight
);
5445 if(ch
> m_headerHeight
)
5446 m_mainWin
->SetSize( 0, m_headerHeight
+ 1,
5447 cw
, ch
- m_headerHeight
- 1 );
5449 m_mainWin
->SetSize( 0, m_headerHeight
+ 1,
5452 else // no header window
5454 m_mainWin
->SetSize( 0, 0, cw
, ch
);
5458 void wxGenericListCtrl::OnInternalIdle()
5460 wxWindow::OnInternalIdle();
5462 // do it only if needed
5463 if ( !m_mainWin
->m_dirty
)
5466 m_mainWin
->RecalculatePositions();
5469 // ----------------------------------------------------------------------------
5471 // ----------------------------------------------------------------------------
5473 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5477 m_mainWin
->SetBackgroundColour( colour
);
5478 m_mainWin
->m_dirty
= true;
5484 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5486 if ( !wxWindow::SetForegroundColour( colour
) )
5491 m_mainWin
->SetForegroundColour( colour
);
5492 m_mainWin
->m_dirty
= true;
5496 m_headerWin
->SetForegroundColour( colour
);
5501 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5503 if ( !wxWindow::SetFont( font
) )
5508 m_mainWin
->SetFont( font
);
5509 m_mainWin
->m_dirty
= true;
5514 m_headerWin
->SetFont( font
);
5515 CalculateAndSetHeaderHeight();
5525 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5528 // Use the same color scheme as wxListBox
5529 return wxListBox::GetClassDefaultAttributes(variant
);
5531 wxUnusedVar(variant
);
5532 wxVisualAttributes attr
;
5533 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
5534 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5535 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5540 // ----------------------------------------------------------------------------
5541 // methods forwarded to m_mainWin
5542 // ----------------------------------------------------------------------------
5544 #if wxUSE_DRAG_AND_DROP
5546 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5548 m_mainWin
->SetDropTarget( dropTarget
);
5551 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5553 return m_mainWin
->GetDropTarget();
5558 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5560 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5563 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5565 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5568 wxColour
wxGenericListCtrl::GetForegroundColour() const
5570 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5573 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5576 return m_mainWin
->PopupMenu( menu
, x
, y
);
5582 void wxGenericListCtrl::DoClientToScreen( int *x
, int *y
) const
5584 m_mainWin
->DoClientToScreen(x
, y
);
5587 void wxGenericListCtrl::DoScreenToClient( int *x
, int *y
) const
5589 m_mainWin
->DoScreenToClient(x
, y
);
5592 void wxGenericListCtrl::SetFocus()
5594 // The test in window.cpp fails as we are a composite
5595 // window, so it checks against "this", but not m_mainWin.
5596 if ( DoFindFocus() != this )
5597 m_mainWin
->SetFocus();
5600 wxSize
wxGenericListCtrl::DoGetBestSize() const
5602 // Something is better than nothing...
5603 // 100x80 is what the MSW version will get from the default
5604 // wxControl::DoGetBestSize
5605 return wxSize(100, 80);
5608 // ----------------------------------------------------------------------------
5609 // virtual list control support
5610 // ----------------------------------------------------------------------------
5612 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5614 // this is a pure virtual function, in fact - which is not really pure
5615 // because the controls which are not virtual don't need to implement it
5616 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5618 return wxEmptyString
;
5621 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5623 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5625 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
5629 int wxGenericListCtrl::OnGetItemColumnImage(long item
, long column
) const
5632 return OnGetItemImage(item
);
5638 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5640 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5641 _T("invalid item index in OnGetItemAttr()") );
5643 // no attributes by default
5647 void wxGenericListCtrl::SetItemCount(long count
)
5649 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5651 m_mainWin
->SetItemCount(count
);
5654 void wxGenericListCtrl::RefreshItem(long item
)
5656 m_mainWin
->RefreshLine(item
);
5659 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5661 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5664 // Generic wxListCtrl is more or less a container for two other
5665 // windows which drawings are done upon. These are namely
5666 // 'm_headerWin' and 'm_mainWin'.
5667 // Here we override 'virtual wxWindow::Refresh()' to mimic the
5668 // behaviour wxListCtrl has under wxMSW.
5670 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5674 // The easy case, no rectangle specified.
5676 m_headerWin
->Refresh(eraseBackground
);
5679 m_mainWin
->Refresh(eraseBackground
);
5683 // Refresh the header window
5686 wxRect rectHeader
= m_headerWin
->GetRect();
5687 rectHeader
.Intersect(*rect
);
5688 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5691 m_headerWin
->GetPosition(&x
, &y
);
5692 rectHeader
.Offset(-x
, -y
);
5693 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5697 // Refresh the main window
5700 wxRect rectMain
= m_mainWin
->GetRect();
5701 rectMain
.Intersect(*rect
);
5702 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5705 m_mainWin
->GetPosition(&x
, &y
);
5706 rectMain
.Offset(-x
, -y
);
5707 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5713 void wxGenericListCtrl::Freeze()
5715 m_mainWin
->Freeze();
5718 void wxGenericListCtrl::Thaw()
5723 #endif // wxUSE_LISTCTRL