1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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"
28 #include "wx/dynarray.h"
29 #include "wx/dcscreen.h"
30 #include "wx/textctrl.h"
33 // under Win32 we always use the native version and also may use the generic
34 // one, however some things should be done only if we use only the generic
36 #if defined(__WIN32__) && !defined(__WXUNIVERSAL__)
37 #define HAVE_NATIVE_LISTCTRL
40 // if we have the native control, wx/listctrl.h declares it and not this one
41 #ifdef HAVE_NATIVE_LISTCTRL
42 #include "wx/generic/listctrl.h"
43 #else // !HAVE_NATIVE_LISTCTRL
44 #include "wx/listctrl.h"
46 // if we have a native version, its implementation file does all this
47 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
48 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
49 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
51 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxGenericListCtrl
)
52 #endif // HAVE_NATIVE_LISTCTRL/!HAVE_NATIVE_LISTCTRL
54 #include "wx/selstore.h"
55 #include "wx/renderer.h"
59 #include "wx/mac/private.h"
63 // NOTE: If using the wxListBox visual attributes works everywhere then this can
64 // be removed, as well as the #else case below.
65 #define _USE_VISATTR 0
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
)
73 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
)
74 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
)
75 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
)
76 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
)
77 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
)
78 #if WXWIN_COMPATIBILITY_2_4
79 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
)
80 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
)
82 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
)
83 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
)
84 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
)
85 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
)
86 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
)
87 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
)
88 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
)
89 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING
)
90 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG
)
91 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
)
92 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
)
93 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
)
94 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED
)
95 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
)
97 // ----------------------------------------------------------------------------
99 // ----------------------------------------------------------------------------
101 // // the height of the header window (FIXME: should depend on its font!)
102 // static const int HEADER_HEIGHT = 23;
104 static const int SCROLL_UNIT_X
= 15;
106 // the spacing between the lines (in report mode)
107 static const int LINE_SPACING
= 0;
109 // extra margins around the text label
110 static const int EXTRA_WIDTH
= 4;
111 static const int EXTRA_HEIGHT
= 4;
113 // margin between the window and the items
114 static const int EXTRA_BORDER_X
= 2;
115 static const int EXTRA_BORDER_Y
= 2;
117 // offset for the header window
118 static const int HEADER_OFFSET_X
= 1;
119 static const int HEADER_OFFSET_Y
= 1;
121 // margin between rows of icons in [small] icon view
122 static const int MARGIN_BETWEEN_ROWS
= 6;
124 // when autosizing the columns, add some slack
125 static const int AUTOSIZE_COL_MARGIN
= 10;
127 // default width for the header columns
128 static const int WIDTH_COL_DEFAULT
= 80;
130 // the space between the image and the text in the report mode
131 static const int IMAGE_MARGIN_IN_REPORT_MODE
= 5;
133 // ============================================================================
135 // ============================================================================
137 //-----------------------------------------------------------------------------
138 // wxColWidthInfo (internal)
139 //-----------------------------------------------------------------------------
141 struct wxColWidthInfo
144 bool bNeedsUpdate
; // only set to true when an item whose
145 // width == nMaxWidth is removed
147 wxColWidthInfo(int w
= 0, bool needsUpdate
= false)
150 bNeedsUpdate
= needsUpdate
;
154 WX_DEFINE_ARRAY_PTR(wxColWidthInfo
*, ColWidthArray
);
156 //-----------------------------------------------------------------------------
157 // wxListItemData (internal)
158 //-----------------------------------------------------------------------------
160 class WXDLLEXPORT wxListItemData
163 wxListItemData(wxListMainWindow
*owner
);
166 void SetItem( const wxListItem
&info
);
167 void SetImage( int image
) { m_image
= image
; }
168 void SetData( wxUIntPtr data
) { m_data
= data
; }
169 void SetPosition( int x
, int y
);
170 void SetSize( int width
, int height
);
172 bool HasText() const { return !m_text
.empty(); }
173 const wxString
& GetText() const { return m_text
; }
174 void SetText(const wxString
& text
) { m_text
= text
; }
176 // we can't use empty string for measuring the string width/height, so
177 // always return something
178 wxString
GetTextForMeasuring() const
180 wxString s
= GetText();
187 bool IsHit( int x
, int y
) const;
191 int GetWidth() const;
192 int GetHeight() const;
194 int GetImage() const { return m_image
; }
195 bool HasImage() const { return GetImage() != -1; }
197 void GetItem( wxListItem
&info
) const;
199 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
200 wxListItemAttr
*GetAttr() const { return m_attr
; }
203 // the item image or -1
206 // user data associated with the item
209 // the item coordinates are not used in report mode; instead this pointer is
210 // NULL and the owner window is used to retrieve the item position and size
213 // the list ctrl we are in
214 wxListMainWindow
*m_owner
;
216 // custom attributes or NULL
217 wxListItemAttr
*m_attr
;
220 // common part of all ctors
226 //-----------------------------------------------------------------------------
227 // wxListHeaderData (internal)
228 //-----------------------------------------------------------------------------
230 class WXDLLEXPORT wxListHeaderData
: public wxObject
234 wxListHeaderData( const wxListItem
&info
);
235 void SetItem( const wxListItem
&item
);
236 void SetPosition( int x
, int y
);
237 void SetWidth( int w
);
238 void SetFormat( int format
);
239 void SetHeight( int h
);
240 bool HasImage() const;
242 bool HasText() const { return !m_text
.empty(); }
243 const wxString
& GetText() const { return m_text
; }
244 void SetText(const wxString
& text
) { m_text
= text
; }
246 void GetItem( wxListItem
&item
);
248 bool IsHit( int x
, int y
) const;
249 int GetImage() const;
250 int GetWidth() const;
251 int GetFormat() const;
267 //-----------------------------------------------------------------------------
268 // wxListLineData (internal)
269 //-----------------------------------------------------------------------------
271 WX_DECLARE_EXPORTED_LIST(wxListItemData
, wxListItemDataList
);
272 #include "wx/listimpl.cpp"
273 WX_DEFINE_LIST(wxListItemDataList
)
278 // the list of subitems: only may have more than one item in report mode
279 wxListItemDataList m_items
;
281 // this is not used in report view
293 // the part to be highlighted
294 wxRect m_rectHighlight
;
296 // extend all our rects to be centered inside the one of given width
297 void ExtendWidth(wxCoord w
)
299 wxASSERT_MSG( m_rectAll
.width
<= w
,
300 _T("width can only be increased") );
303 m_rectLabel
.x
= m_rectAll
.x
+ (w
- m_rectLabel
.width
) / 2;
304 m_rectIcon
.x
= m_rectAll
.x
+ (w
- m_rectIcon
.width
) / 2;
305 m_rectHighlight
.x
= m_rectAll
.x
+ (w
- m_rectHighlight
.width
) / 2;
310 // is this item selected? [NB: not used in virtual mode]
313 // back pointer to the list ctrl
314 wxListMainWindow
*m_owner
;
317 wxListLineData(wxListMainWindow
*owner
);
321 WX_CLEAR_LIST(wxListItemDataList
, m_items
);
325 // are we in report mode?
326 inline bool InReportView() const;
328 // are we in virtual report mode?
329 inline bool IsVirtual() const;
331 // these 2 methods shouldn't be called for report view controls, in that
332 // case we determine our position/size ourselves
334 // calculate the size of the line
335 void CalculateSize( wxDC
*dc
, int spacing
);
337 // remember the position this line appears at
338 void SetPosition( int x
, int y
, int spacing
);
342 void SetImage( int image
) { SetImage(0, image
); }
343 int GetImage() const { return GetImage(0); }
344 void SetImage( int index
, int image
);
345 int GetImage( int index
) const;
347 bool HasImage() const { return GetImage() != -1; }
348 bool HasText() const { return !GetText(0).empty(); }
350 void SetItem( int index
, const wxListItem
&info
);
351 void GetItem( int index
, wxListItem
&info
);
353 wxString
GetText(int index
) const;
354 void SetText( int index
, const wxString
& s
);
356 wxListItemAttr
*GetAttr() const;
357 void SetAttr(wxListItemAttr
*attr
);
359 // return true if the highlighting really changed
360 bool Highlight( bool on
);
362 void ReverseHighlight();
364 bool IsHighlighted() const
366 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
368 return m_highlighted
;
371 // draw the line on the given DC in icon/list mode
372 void Draw( wxDC
*dc
);
374 // the same in report mode
375 void DrawInReportMode( wxDC
*dc
,
377 const wxRect
& rectHL
,
381 // set the line to contain num items (only can be > 1 in report mode)
382 void InitItems( int num
);
384 // get the mode (i.e. style) of the list control
385 inline int GetMode() const;
387 // prepare the DC for drawing with these item's attributes, return true if
388 // we need to draw the items background to highlight it, false otherwise
389 bool SetAttributes(wxDC
*dc
,
390 const wxListItemAttr
*attr
,
393 // draw the text on the DC with the correct justification; also add an
394 // ellipsis if the text is too large to fit in the current width
395 void DrawTextFormatted(wxDC
*dc
,
396 const wxString
&text
,
399 int yMid
, // this is middle, not top, of the text
403 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
404 #include "wx/arrimpl.cpp"
405 WX_DEFINE_OBJARRAY(wxListLineDataArray
)
407 //-----------------------------------------------------------------------------
408 // wxListHeaderWindow (internal)
409 //-----------------------------------------------------------------------------
411 class WXDLLEXPORT wxListHeaderWindow
: public wxWindow
414 wxListMainWindow
*m_owner
;
415 wxCursor
*m_currentCursor
;
416 wxCursor
*m_resizeCursor
;
419 // column being resized or -1
422 // divider line position in logical (unscrolled) coords
425 // minimal position beyond which the divider line
426 // can't be dragged in logical coords
430 wxListHeaderWindow();
432 wxListHeaderWindow( wxWindow
*win
,
434 wxListMainWindow
*owner
,
435 const wxPoint
&pos
= wxDefaultPosition
,
436 const wxSize
&size
= wxDefaultSize
,
438 const wxString
&name
= wxT("wxlistctrlcolumntitles") );
440 virtual ~wxListHeaderWindow();
443 void AdjustDC( wxDC
& dc
);
445 void OnPaint( wxPaintEvent
&event
);
446 void OnMouse( wxMouseEvent
&event
);
447 void OnSetFocus( wxFocusEvent
&event
);
453 // common part of all ctors
456 // generate and process the list event of the given type, return true if
457 // it wasn't vetoed, i.e. if we should proceed
458 bool SendListEvent(wxEventType type
, const wxPoint
& pos
);
460 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
461 DECLARE_EVENT_TABLE()
464 //-----------------------------------------------------------------------------
465 // wxListRenameTimer (internal)
466 //-----------------------------------------------------------------------------
468 class WXDLLEXPORT wxListRenameTimer
: public wxTimer
471 wxListMainWindow
*m_owner
;
474 wxListRenameTimer( wxListMainWindow
*owner
);
478 //-----------------------------------------------------------------------------
479 // wxListTextCtrlWrapper: wraps a wxTextCtrl to make it work for inline editing
480 //-----------------------------------------------------------------------------
482 class WXDLLEXPORT wxListTextCtrlWrapper
: public wxEvtHandler
485 // NB: text must be a valid object but not Create()d yet
486 wxListTextCtrlWrapper(wxListMainWindow
*owner
,
490 wxTextCtrl
*GetText() const { return m_text
; }
492 void AcceptChangesAndFinish();
495 void OnChar( wxKeyEvent
&event
);
496 void OnKeyUp( wxKeyEvent
&event
);
497 void OnKillFocus( wxFocusEvent
&event
);
499 bool AcceptChanges();
503 wxListMainWindow
*m_owner
;
505 wxString m_startValue
;
508 bool m_aboutToFinish
;
510 DECLARE_EVENT_TABLE()
513 //-----------------------------------------------------------------------------
514 // wxListMainWindow (internal)
515 //-----------------------------------------------------------------------------
517 WX_DECLARE_EXPORTED_LIST(wxListHeaderData
, wxListHeaderDataList
);
518 #include "wx/listimpl.cpp"
519 WX_DEFINE_LIST(wxListHeaderDataList
)
521 class wxListMainWindow
: public wxScrolledWindow
525 wxListMainWindow( wxWindow
*parent
,
527 const wxPoint
& pos
= wxDefaultPosition
,
528 const wxSize
& size
= wxDefaultSize
,
530 const wxString
&name
= _T("listctrlmainwindow") );
532 virtual ~wxListMainWindow();
534 bool HasFlag(int flag
) const { return m_parent
->HasFlag(flag
); }
536 // return true if this is a virtual list control
537 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
539 // return true if the control is in report mode
540 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
542 // return true if we are in single selection mode, false if multi sel
543 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL
); }
545 // do we have a header window?
546 bool HasHeader() const
547 { return InReportView() && !HasFlag(wxLC_NO_HEADER
); }
549 void HighlightAll( bool on
);
551 // all these functions only do something if the line is currently visible
553 // change the line "selected" state, return true if it really changed
554 bool HighlightLine( size_t line
, bool highlight
= true);
556 // as HighlightLine() but do it for the range of lines: this is incredibly
557 // more efficient for virtual list controls!
559 // NB: unlike HighlightLine() this one does refresh the lines on screen
560 void HighlightLines( size_t lineFrom
, size_t lineTo
, bool on
= true );
562 // toggle the line state and refresh it
563 void ReverseHighlight( size_t line
)
564 { HighlightLine(line
, !IsHighlighted(line
)); RefreshLine(line
); }
566 // return true if the line is highlighted
567 bool IsHighlighted(size_t line
) const;
569 // refresh one or several lines at once
570 void RefreshLine( size_t line
);
571 void RefreshLines( size_t lineFrom
, size_t lineTo
);
573 // refresh all selected items
574 void RefreshSelected();
576 // refresh all lines below the given one: the difference with
577 // RefreshLines() is that the index here might not be a valid one (happens
578 // when the last line is deleted)
579 void RefreshAfter( size_t lineFrom
);
581 // the methods which are forwarded to wxListLineData itself in list/icon
582 // modes but are here because the lines don't store their positions in the
585 // get the bound rect for the entire line
586 wxRect
GetLineRect(size_t line
) const;
588 // get the bound rect of the label
589 wxRect
GetLineLabelRect(size_t line
) const;
591 // get the bound rect of the items icon (only may be called if we do have
593 wxRect
GetLineIconRect(size_t line
) const;
595 // get the rect to be highlighted when the item has focus
596 wxRect
GetLineHighlightRect(size_t line
) const;
598 // get the size of the total line rect
599 wxSize
GetLineSize(size_t line
) const
600 { return GetLineRect(line
).GetSize(); }
602 // return the hit code for the corresponding position (in this line)
603 long HitTestLine(size_t line
, int x
, int y
) const;
605 // bring the selected item into view, scrolling to it if necessary
606 void MoveToItem(size_t item
);
608 // bring the current item into view
609 void MoveToFocus() { MoveToItem(m_current
); }
611 // start editing the label of the given item
612 wxTextCtrl
*EditLabel(long item
,
613 wxClassInfo
* textControlClass
= CLASSINFO(wxTextCtrl
));
614 wxTextCtrl
*GetEditControl() const
616 return m_textctrlWrapper
? m_textctrlWrapper
->GetText() : NULL
;
619 void FinishEditing(wxTextCtrl
*text
)
622 m_textctrlWrapper
= NULL
;
623 SetFocusIgnoringChildren();
626 // suspend/resume redrawing the control
630 void OnRenameTimer();
631 bool OnRenameAccept(size_t itemEdit
, const wxString
& value
);
632 void OnRenameCancelled(size_t itemEdit
);
634 void OnMouse( wxMouseEvent
&event
);
636 // called to switch the selection from the current item to newCurrent,
637 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
639 void OnChar( wxKeyEvent
&event
);
640 void OnKeyDown( wxKeyEvent
&event
);
641 void OnSetFocus( wxFocusEvent
&event
);
642 void OnKillFocus( wxFocusEvent
&event
);
643 void OnScroll( wxScrollWinEvent
& event
);
645 void OnPaint( wxPaintEvent
&event
);
647 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
648 void GetImageSize( int index
, int &width
, int &height
) const;
649 int GetTextLength( const wxString
&s
) const;
651 void SetImageList( wxImageListType
*imageList
, int which
);
652 void SetItemSpacing( int spacing
, bool isSmall
= false );
653 int GetItemSpacing( bool isSmall
= false );
655 void SetColumn( int col
, wxListItem
&item
);
656 void SetColumnWidth( int col
, int width
);
657 void GetColumn( int col
, wxListItem
&item
) const;
658 int GetColumnWidth( int col
) const;
659 int GetColumnCount() const { return m_columns
.GetCount(); }
661 // returns the sum of the heights of all columns
662 int GetHeaderWidth() const;
664 int GetCountPerPage() const;
666 void SetItem( wxListItem
&item
);
667 void GetItem( wxListItem
&item
) const;
668 void SetItemState( long item
, long state
, long stateMask
);
669 void SetItemStateAll( long state
, long stateMask
);
670 int GetItemState( long item
, long stateMask
) const;
671 void GetItemRect( long index
, wxRect
&rect
) const;
672 wxRect
GetViewRect() const;
673 bool GetItemPosition( long item
, wxPoint
& pos
) const;
674 int GetSelectedItemCount() const;
676 wxString
GetItemText(long item
) const
679 info
.m_mask
= wxLIST_MASK_TEXT
;
680 info
.m_itemId
= item
;
685 void SetItemText(long item
, const wxString
& value
)
688 info
.m_mask
= wxLIST_MASK_TEXT
;
689 info
.m_itemId
= item
;
694 // set the scrollbars and update the positions of the items
695 void RecalculatePositions(bool noRefresh
= false);
697 // refresh the window and the header
700 long GetNextItem( long item
, int geometry
, int state
) const;
701 void DeleteItem( long index
);
702 void DeleteAllItems();
703 void DeleteColumn( int col
);
704 void DeleteEverything();
705 void EnsureVisible( long index
);
706 long FindItem( long start
, const wxString
& str
, bool partial
= false );
707 long FindItem( long start
, wxUIntPtr data
);
708 long FindItem( const wxPoint
& pt
);
709 long HitTest( int x
, int y
, int &flags
);
710 void InsertItem( wxListItem
&item
);
711 void InsertColumn( long col
, wxListItem
&item
);
712 int GetItemWidthWithImage(wxListItem
* item
);
713 void SortItems( wxListCtrlCompare fn
, long data
);
715 size_t GetItemCount() const;
716 bool IsEmpty() const { return GetItemCount() == 0; }
717 void SetItemCount(long count
);
719 // change the current (== focused) item, send a notification event
720 void ChangeCurrent(size_t current
);
721 void ResetCurrent() { ChangeCurrent((size_t)-1); }
722 bool HasCurrent() const { return m_current
!= (size_t)-1; }
724 // send out a wxListEvent
725 void SendNotify( size_t line
,
727 const wxPoint
& point
= wxDefaultPosition
);
729 // override base class virtual to reset m_lineHeight when the font changes
730 virtual bool SetFont(const wxFont
& font
)
732 if ( !wxScrolledWindow::SetFont(font
) )
740 // these are for wxListLineData usage only
742 // get the backpointer to the list ctrl
743 wxGenericListCtrl
*GetListCtrl() const
745 return wxStaticCast(GetParent(), wxGenericListCtrl
);
748 // get the height of all lines (assuming they all do have the same height)
749 wxCoord
GetLineHeight() const;
751 // get the y position of the given line (only for report view)
752 wxCoord
GetLineY(size_t line
) const;
754 // get the brush to use for the item highlighting
755 wxBrush
*GetHighlightBrush() const
757 return m_hasFocus
? m_highlightBrush
: m_highlightUnfocusedBrush
;
761 // the array of all line objects for a non virtual list control (for the
762 // virtual list control we only ever use m_lines[0])
763 wxListLineDataArray m_lines
;
765 // the list of column objects
766 wxListHeaderDataList m_columns
;
768 // currently focused item or -1
771 // the number of lines per page
774 // this flag is set when something which should result in the window
775 // redrawing happens (i.e. an item was added or deleted, or its appearance
776 // changed) and OnPaint() doesn't redraw the window while it is set which
777 // allows to minimize the number of repaintings when a lot of items are
778 // being added. The real repainting occurs only after the next OnIdle()
782 wxColour
*m_highlightColour
;
783 wxImageListType
*m_small_image_list
;
784 wxImageListType
*m_normal_image_list
;
786 int m_normal_spacing
;
790 wxTimer
*m_renameTimer
;
794 ColWidthArray m_aColWidths
;
796 // for double click logic
797 size_t m_lineLastClicked
,
798 m_lineBeforeLastClicked
,
799 m_lineSelectSingleOnUp
;
802 wxWindow
*GetMainWindowOfCompositeControl() { return GetParent(); }
804 // the total count of items in a virtual list control
807 // the object maintaining the items selection state, only used in virtual
809 wxSelectionStore m_selStore
;
811 // common part of all ctors
814 // get the line data for the given index
815 wxListLineData
*GetLine(size_t n
) const
817 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
821 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
828 // get a dummy line which can be used for geometry calculations and such:
829 // you must use GetLine() if you want to really draw the line
830 wxListLineData
*GetDummyLine() const;
832 // cache the line data of the n-th line in m_lines[0]
833 void CacheLineData(size_t line
);
835 // get the range of visible lines
836 void GetVisibleLinesRange(size_t *from
, size_t *to
);
838 // force us to recalculate the range of visible lines
839 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
841 // get the colour to be used for drawing the rules
842 wxColour
GetRuleColour() const
844 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
848 // initialize the current item if needed
849 void UpdateCurrent();
851 // delete all items but don't refresh: called from dtor
852 void DoDeleteAllItems();
854 // the height of one line using the current font
855 wxCoord m_lineHeight
;
857 // the total header width or 0 if not calculated yet
858 wxCoord m_headerWidth
;
860 // the first and last lines being shown on screen right now (inclusive),
861 // both may be -1 if they must be calculated so never access them directly:
862 // use GetVisibleLinesRange() above instead
866 // the brushes to use for item highlighting when we do/don't have focus
867 wxBrush
*m_highlightBrush
,
868 *m_highlightUnfocusedBrush
;
870 // if this is > 0, the control is frozen and doesn't redraw itself
871 size_t m_freezeCount
;
873 // wrapper around the text control currently used for in place editing or
874 // NULL if no item is being edited
875 wxListTextCtrlWrapper
*m_textctrlWrapper
;
878 DECLARE_DYNAMIC_CLASS(wxListMainWindow
)
879 DECLARE_EVENT_TABLE()
881 friend class wxGenericListCtrl
;
885 wxListItemData::~wxListItemData()
887 // in the virtual list control the attributes are managed by the main
888 // program, so don't delete them
889 if ( !m_owner
->IsVirtual() )
895 void wxListItemData::Init()
903 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
909 if ( owner
->InReportView() )
915 void wxListItemData::SetItem( const wxListItem
&info
)
917 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
918 SetText(info
.m_text
);
919 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
920 m_image
= info
.m_image
;
921 if ( info
.m_mask
& wxLIST_MASK_DATA
)
922 m_data
= info
.m_data
;
924 if ( info
.HasAttributes() )
927 *m_attr
= *info
.GetAttributes();
929 m_attr
= new wxListItemAttr(*info
.GetAttributes());
937 m_rect
->width
= info
.m_width
;
941 void wxListItemData::SetPosition( int x
, int y
)
943 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
949 void wxListItemData::SetSize( int width
, int height
)
951 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
954 m_rect
->width
= width
;
956 m_rect
->height
= height
;
959 bool wxListItemData::IsHit( int x
, int y
) const
961 wxCHECK_MSG( m_rect
, false, _T("can't be called in this mode") );
963 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Inside(x
, y
);
966 int wxListItemData::GetX() const
968 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
973 int wxListItemData::GetY() const
975 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
980 int wxListItemData::GetWidth() const
982 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
984 return m_rect
->width
;
987 int wxListItemData::GetHeight() const
989 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
991 return m_rect
->height
;
994 void wxListItemData::GetItem( wxListItem
&info
) const
996 long mask
= info
.m_mask
;
998 // by default, get everything for backwards compatibility
1001 if ( mask
& wxLIST_MASK_TEXT
)
1002 info
.m_text
= m_text
;
1003 if ( mask
& wxLIST_MASK_IMAGE
)
1004 info
.m_image
= m_image
;
1005 if ( mask
& wxLIST_MASK_DATA
)
1006 info
.m_data
= m_data
;
1010 if ( m_attr
->HasTextColour() )
1011 info
.SetTextColour(m_attr
->GetTextColour());
1012 if ( m_attr
->HasBackgroundColour() )
1013 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
1014 if ( m_attr
->HasFont() )
1015 info
.SetFont(m_attr
->GetFont());
1019 //-----------------------------------------------------------------------------
1021 //-----------------------------------------------------------------------------
1023 void wxListHeaderData::Init()
1034 wxListHeaderData::wxListHeaderData()
1039 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1046 void wxListHeaderData::SetItem( const wxListItem
&item
)
1048 m_mask
= item
.m_mask
;
1050 if ( m_mask
& wxLIST_MASK_TEXT
)
1051 m_text
= item
.m_text
;
1053 if ( m_mask
& wxLIST_MASK_IMAGE
)
1054 m_image
= item
.m_image
;
1056 if ( m_mask
& wxLIST_MASK_FORMAT
)
1057 m_format
= item
.m_format
;
1059 if ( m_mask
& wxLIST_MASK_WIDTH
)
1060 SetWidth(item
.m_width
);
1063 void wxListHeaderData::SetPosition( int x
, int y
)
1069 void wxListHeaderData::SetHeight( int h
)
1074 void wxListHeaderData::SetWidth( int w
)
1076 m_width
= w
< 0 ? WIDTH_COL_DEFAULT
: w
;
1079 void wxListHeaderData::SetFormat( int format
)
1084 bool wxListHeaderData::HasImage() const
1086 return m_image
!= -1;
1089 bool wxListHeaderData::IsHit( int x
, int y
) const
1091 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1094 void wxListHeaderData::GetItem( wxListItem
& item
)
1096 item
.m_mask
= m_mask
;
1097 item
.m_text
= m_text
;
1098 item
.m_image
= m_image
;
1099 item
.m_format
= m_format
;
1100 item
.m_width
= m_width
;
1103 int wxListHeaderData::GetImage() const
1108 int wxListHeaderData::GetWidth() const
1113 int wxListHeaderData::GetFormat() const
1118 //-----------------------------------------------------------------------------
1120 //-----------------------------------------------------------------------------
1122 inline int wxListLineData::GetMode() const
1124 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1127 inline bool wxListLineData::InReportView() const
1129 return m_owner
->HasFlag(wxLC_REPORT
);
1132 inline bool wxListLineData::IsVirtual() const
1134 return m_owner
->IsVirtual();
1137 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1141 if ( InReportView() )
1144 m_gi
= new GeometryInfo
;
1146 m_highlighted
= false;
1148 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1151 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1153 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1154 wxCHECK_RET( node
, _T("no subitems at all??") );
1156 wxListItemData
*item
= node
->GetData();
1161 switch ( GetMode() )
1164 case wxLC_SMALL_ICON
:
1165 m_gi
->m_rectAll
.width
= spacing
;
1167 s
= item
->GetText();
1172 m_gi
->m_rectLabel
.width
=
1173 m_gi
->m_rectLabel
.height
= 0;
1177 dc
->GetTextExtent( s
, &lw
, &lh
);
1181 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1183 m_gi
->m_rectAll
.width
= lw
;
1185 m_gi
->m_rectLabel
.width
= lw
;
1186 m_gi
->m_rectLabel
.height
= lh
;
1189 if (item
->HasImage())
1192 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1193 m_gi
->m_rectIcon
.width
= w
+ 8;
1194 m_gi
->m_rectIcon
.height
= h
+ 8;
1196 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1197 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1198 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1199 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1202 if ( item
->HasText() )
1204 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1205 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1207 else // no text, highlight the icon
1209 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1210 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1215 s
= item
->GetTextForMeasuring();
1217 dc
->GetTextExtent( s
, &lw
, &lh
);
1221 m_gi
->m_rectLabel
.width
= lw
;
1222 m_gi
->m_rectLabel
.height
= lh
;
1224 m_gi
->m_rectAll
.width
= lw
;
1225 m_gi
->m_rectAll
.height
= lh
;
1227 if (item
->HasImage())
1230 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1231 m_gi
->m_rectIcon
.width
= w
;
1232 m_gi
->m_rectIcon
.height
= h
;
1234 m_gi
->m_rectAll
.width
+= 4 + w
;
1235 if (h
> m_gi
->m_rectAll
.height
)
1236 m_gi
->m_rectAll
.height
= h
;
1239 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1240 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1244 wxFAIL_MSG( _T("unexpected call to SetSize") );
1248 wxFAIL_MSG( _T("unknown mode") );
1253 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
1255 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1256 wxCHECK_RET( node
, _T("no subitems at all??") );
1258 wxListItemData
*item
= node
->GetData();
1260 switch ( GetMode() )
1263 case wxLC_SMALL_ICON
:
1264 m_gi
->m_rectAll
.x
= x
;
1265 m_gi
->m_rectAll
.y
= y
;
1267 if ( item
->HasImage() )
1269 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
1270 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
1271 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1274 if ( item
->HasText() )
1276 if (m_gi
->m_rectAll
.width
> spacing
)
1277 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1279 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2 + (spacing
/ 2) - (m_gi
->m_rectLabel
.width
/ 2);
1280 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1281 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1282 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1284 else // no text, highlight the icon
1286 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1287 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1292 m_gi
->m_rectAll
.x
= x
;
1293 m_gi
->m_rectAll
.y
= y
;
1295 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1296 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1297 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1299 if (item
->HasImage())
1301 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1302 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1303 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 6 + m_gi
->m_rectIcon
.width
;
1307 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1312 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1316 wxFAIL_MSG( _T("unknown mode") );
1321 void wxListLineData::InitItems( int num
)
1323 for (int i
= 0; i
< num
; i
++)
1324 m_items
.Append( new wxListItemData(m_owner
) );
1327 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1329 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1330 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1332 wxListItemData
*item
= node
->GetData();
1333 item
->SetItem( info
);
1336 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1338 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1341 wxListItemData
*item
= node
->GetData();
1342 item
->GetItem( info
);
1346 wxString
wxListLineData::GetText(int index
) const
1350 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1353 wxListItemData
*item
= node
->GetData();
1354 s
= item
->GetText();
1360 void wxListLineData::SetText( int index
, const wxString
& s
)
1362 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1365 wxListItemData
*item
= node
->GetData();
1370 void wxListLineData::SetImage( int index
, int image
)
1372 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1373 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1375 wxListItemData
*item
= node
->GetData();
1376 item
->SetImage(image
);
1379 int wxListLineData::GetImage( int index
) const
1381 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1382 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1384 wxListItemData
*item
= node
->GetData();
1385 return item
->GetImage();
1388 wxListItemAttr
*wxListLineData::GetAttr() const
1390 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1391 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1393 wxListItemData
*item
= node
->GetData();
1394 return item
->GetAttr();
1397 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1399 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1400 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1402 wxListItemData
*item
= node
->GetData();
1403 item
->SetAttr(attr
);
1406 bool wxListLineData::SetAttributes(wxDC
*dc
,
1407 const wxListItemAttr
*attr
,
1410 wxWindow
*listctrl
= m_owner
->GetParent();
1414 // don't use foreground colour for drawing highlighted items - this might
1415 // make them completely invisible (and there is no way to do bit
1416 // arithmetics on wxColour, unfortunately)
1419 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1420 else if ( attr
&& attr
->HasTextColour() )
1421 colText
= attr
->GetTextColour();
1423 colText
= listctrl
->GetForegroundColour();
1425 dc
->SetTextForeground(colText
);
1429 if ( attr
&& attr
->HasFont() )
1430 font
= attr
->GetFont();
1432 font
= listctrl
->GetFont();
1437 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1438 if ( highlighted
|| hasBgCol
)
1441 dc
->SetBrush( *m_owner
->GetHighlightBrush() );
1443 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1445 dc
->SetPen( *wxTRANSPARENT_PEN
);
1453 void wxListLineData::Draw( wxDC
*dc
)
1455 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1456 wxCHECK_RET( node
, _T("no subitems at all??") );
1458 bool highlighted
= IsHighlighted();
1460 wxListItemAttr
*attr
= GetAttr();
1462 if ( SetAttributes(dc
, attr
, highlighted
) )
1463 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1465 // just for debugging to better see where the items are
1467 dc
->SetPen(*wxRED_PEN
);
1468 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
1469 dc
->DrawRectangle( m_gi
->m_rectAll
);
1470 dc
->SetPen(*wxGREEN_PEN
);
1471 dc
->DrawRectangle( m_gi
->m_rectIcon
);
1474 wxListItemData
*item
= node
->GetData();
1475 if (item
->HasImage())
1477 // centre the image inside our rectangle, this looks nicer when items
1478 // ae aligned in a row
1479 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
1481 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
1484 if (item
->HasText())
1486 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
1488 wxDCClipper
clipper(*dc
, rectLabel
);
1489 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1493 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1495 const wxRect
& rectHL
,
1498 // TODO: later we should support setting different attributes for
1499 // different columns - to do it, just add "col" argument to
1500 // GetAttr() and move these lines into the loop below
1501 wxListItemAttr
*attr
= GetAttr();
1502 if ( SetAttributes(dc
, attr
, highlighted
) )
1503 dc
->DrawRectangle( rectHL
);
1505 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1506 yMid
= rect
.y
+ rect
.height
/2;
1509 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1511 node
= node
->GetNext(), col
++ )
1513 wxListItemData
*item
= node
->GetData();
1515 int width
= m_owner
->GetColumnWidth(col
);
1519 if ( item
->HasImage() )
1522 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1523 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, yMid
- iy
/2 );
1525 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
1531 if ( item
->HasText() )
1532 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, yMid
, width
- 8);
1536 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
1537 const wxString
&text
,
1544 dc
->GetTextExtent(text
, &w
, &h
);
1546 const wxCoord y
= yMid
- (h
+ 1)/2;
1548 wxDCClipper
clipper(*dc
, x
, y
, width
, h
);
1550 // determine if the string can fit inside the current width
1553 // it can, draw it using the items alignment
1555 m_owner
->GetColumn(col
, item
);
1556 switch ( item
.GetAlign() )
1558 case wxLIST_FORMAT_LEFT
:
1562 case wxLIST_FORMAT_RIGHT
:
1566 case wxLIST_FORMAT_CENTER
:
1567 x
+= (width
- w
) / 2;
1571 wxFAIL_MSG( _T("unknown list item format") );
1575 dc
->DrawText(text
, x
, y
);
1577 else // otherwise, truncate and add an ellipsis if possible
1579 // determine the base width
1580 wxString
ellipsis(wxT("..."));
1582 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1584 // continue until we have enough space or only one character left
1586 size_t len
= text
.Length();
1587 wxString drawntext
= text
.Left(len
);
1590 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
1591 drawntext
.RemoveLast();
1594 if (w
+ base_w
<= width
)
1598 // if still not enough space, remove ellipsis characters
1599 while (ellipsis
.Length() > 0 && w
+ base_w
> width
)
1601 ellipsis
= ellipsis
.Left(ellipsis
.Length() - 1);
1602 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1605 // now draw the text
1606 dc
->DrawText(drawntext
, x
, y
);
1607 dc
->DrawText(ellipsis
, x
+ w
, y
);
1611 bool wxListLineData::Highlight( bool on
)
1613 wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") );
1615 if ( on
== m_highlighted
)
1623 void wxListLineData::ReverseHighlight( void )
1625 Highlight(!IsHighlighted());
1628 //-----------------------------------------------------------------------------
1629 // wxListHeaderWindow
1630 //-----------------------------------------------------------------------------
1632 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
)
1634 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1635 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1636 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1637 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1640 void wxListHeaderWindow::Init()
1642 m_currentCursor
= (wxCursor
*) NULL
;
1643 m_isDragging
= false;
1647 wxListHeaderWindow::wxListHeaderWindow()
1651 m_owner
= (wxListMainWindow
*) NULL
;
1652 m_resizeCursor
= (wxCursor
*) NULL
;
1655 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
1657 wxListMainWindow
*owner
,
1661 const wxString
&name
)
1662 : wxWindow( win
, id
, pos
, size
, style
, name
)
1667 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1670 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
1671 SetOwnForegroundColour( attr
.colFg
);
1672 SetOwnBackgroundColour( attr
.colBg
);
1674 SetOwnFont( attr
.font
);
1676 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
1677 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1679 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
1683 wxListHeaderWindow::~wxListHeaderWindow()
1685 delete m_resizeCursor
;
1688 #ifdef __WXUNIVERSAL__
1689 #include "wx/univ/renderer.h"
1690 #include "wx/univ/theme.h"
1693 // shift the DC origin to match the position of the main window horz
1694 // scrollbar: this allows us to always use logical coords
1695 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1698 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1701 m_owner
->GetViewStart( &x
, NULL
);
1703 // account for the horz scrollbar offset
1704 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
1707 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1709 wxPaintDC
dc( this );
1714 dc
.SetFont( GetFont() );
1716 // width and height of the entire header window
1718 GetClientSize( &w
, &h
);
1719 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1721 dc
.SetBackgroundMode(wxTRANSPARENT
);
1722 dc
.SetTextForeground(GetForegroundColour());
1724 int x
= HEADER_OFFSET_X
;
1725 int numColumns
= m_owner
->GetColumnCount();
1727 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1729 m_owner
->GetColumn( i
, item
);
1730 int wCol
= item
.m_width
;
1732 // the width of the rect to draw: make it smaller to fit entirely
1733 // inside the column rect
1742 wxRendererNative::Get().DrawHeaderButton
1746 wxRect(x
, HEADER_OFFSET_Y
, cw
, ch
),
1747 m_parent
->IsEnabled() ? 0
1748 : (int)wxCONTROL_DISABLED
1751 // see if we have enough space for the column label
1753 // for this we need the width of the text
1756 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1757 wLabel
+= 2 * EXTRA_WIDTH
;
1759 // and the width of the icon, if any
1760 static const int MARGIN_BETWEEN_TEXT_AND_ICON
= 2;
1761 int ix
= 0, iy
= 0; // init them just to suppress the compiler warnings
1762 const int image
= item
.m_image
;
1763 wxImageListType
*imageList
;
1766 imageList
= m_owner
->m_small_image_list
;
1769 imageList
->GetSize(image
, ix
, iy
);
1770 wLabel
+= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1778 // ignore alignment if there is not enough space anyhow
1780 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1783 wxFAIL_MSG( _T("unknown list item format") );
1786 case wxLIST_FORMAT_LEFT
:
1790 case wxLIST_FORMAT_RIGHT
:
1791 xAligned
= x
+ cw
- wLabel
;
1794 case wxLIST_FORMAT_CENTER
:
1795 xAligned
= x
+ (cw
- wLabel
) / 2;
1799 // if we have an image, draw it on the right of the label
1806 xAligned
+ wLabel
- ix
- MARGIN_BETWEEN_TEXT_AND_ICON
,
1807 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1808 wxIMAGELIST_DRAW_TRANSPARENT
1811 cw
-= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1814 // draw the text clipping it so that it doesn't overwrite the column
1816 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1818 dc
.DrawText( item
.GetText(),
1819 xAligned
+ EXTRA_WIDTH
, h
/ 2 - hLabel
/ 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT );
1825 void wxListHeaderWindow::DrawCurrent()
1827 int x1
= m_currentX
;
1829 m_owner
->ClientToScreen( &x1
, &y1
);
1831 int x2
= m_currentX
;
1833 m_owner
->GetClientSize( NULL
, &y2
);
1834 m_owner
->ClientToScreen( &x2
, &y2
);
1837 dc
.SetLogicalFunction( wxINVERT
);
1838 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1839 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1843 dc
.DrawLine( x1
, y1
, x2
, y2
);
1845 dc
.SetLogicalFunction( wxCOPY
);
1847 dc
.SetPen( wxNullPen
);
1848 dc
.SetBrush( wxNullBrush
);
1851 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1853 // we want to work with logical coords
1855 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1856 int y
= event
.GetY();
1860 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1862 // we don't draw the line beyond our window, but we allow dragging it
1865 GetClientSize( &w
, NULL
);
1866 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1869 // erase the line if it was drawn
1870 if ( m_currentX
< w
)
1873 if (event
.ButtonUp())
1876 m_isDragging
= false;
1878 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1879 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1886 m_currentX
= m_minX
+ 7;
1888 // draw in the new location
1889 if ( m_currentX
< w
)
1893 else // not dragging
1896 bool hit_border
= false;
1898 // end of the current column
1901 // find the column where this event occurred
1903 countCol
= m_owner
->GetColumnCount();
1904 for (col
= 0; col
< countCol
; col
++)
1906 xpos
+= m_owner
->GetColumnWidth( col
);
1909 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1911 // near the column border
1918 // inside the column
1925 if ( col
== countCol
)
1928 if (event
.LeftDown() || event
.RightUp())
1930 if (hit_border
&& event
.LeftDown())
1932 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1933 event
.GetPosition()) )
1935 m_isDragging
= true;
1940 //else: column resizing was vetoed by the user code
1942 else // click on a column
1944 SendListEvent( event
.LeftDown()
1945 ? wxEVT_COMMAND_LIST_COL_CLICK
1946 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1947 event
.GetPosition());
1950 else if (event
.Moving())
1955 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1956 m_currentCursor
= m_resizeCursor
;
1960 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1961 m_currentCursor
= wxSTANDARD_CURSOR
;
1965 SetCursor(*m_currentCursor
);
1970 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1972 m_owner
->SetFocus();
1976 bool wxListHeaderWindow::SendListEvent(wxEventType type
, const wxPoint
& pos
)
1978 wxWindow
*parent
= GetParent();
1979 wxListEvent
le( type
, parent
->GetId() );
1980 le
.SetEventObject( parent
);
1981 le
.m_pointDrag
= pos
;
1983 // the position should be relative to the parent window, not
1984 // this one for compatibility with MSW and common sense: the
1985 // user code doesn't know anything at all about this header
1986 // window, so why should it get positions relative to it?
1987 le
.m_pointDrag
.y
-= GetSize().y
;
1989 le
.m_col
= m_column
;
1990 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
1993 //-----------------------------------------------------------------------------
1994 // wxListRenameTimer (internal)
1995 //-----------------------------------------------------------------------------
1997 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2002 void wxListRenameTimer::Notify()
2004 m_owner
->OnRenameTimer();
2007 //-----------------------------------------------------------------------------
2008 // wxListTextCtrlWrapper (internal)
2009 //-----------------------------------------------------------------------------
2011 BEGIN_EVENT_TABLE(wxListTextCtrlWrapper
, wxEvtHandler
)
2012 EVT_CHAR (wxListTextCtrlWrapper::OnChar
)
2013 EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp
)
2014 EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus
)
2017 wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow
*owner
,
2020 : m_startValue(owner
->GetItemText(itemEdit
)),
2021 m_itemEdited(itemEdit
)
2026 m_aboutToFinish
= false;
2028 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
2030 m_owner
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
2031 &rectLabel
.x
, &rectLabel
.y
);
2033 m_text
->Create(owner
, wxID_ANY
, m_startValue
,
2034 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2035 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
2036 m_text
->PushEventHandler(this);
2039 void wxListTextCtrlWrapper::Finish()
2045 m_text
->RemoveEventHandler(this);
2046 m_owner
->FinishEditing(m_text
);
2052 bool wxListTextCtrlWrapper::AcceptChanges()
2054 const wxString value
= m_text
->GetValue();
2056 if ( value
== m_startValue
)
2057 // nothing changed, always accept
2060 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
2061 // vetoed by the user
2064 // accepted, do rename the item
2065 m_owner
->SetItemText(m_itemEdited
, value
);
2070 void wxListTextCtrlWrapper::AcceptChangesAndFinish()
2072 m_aboutToFinish
= true;
2074 // Notify the owner about the changes
2077 // Even if vetoed, close the control (consistent with MSW)
2081 void wxListTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
2083 switch ( event
.m_keyCode
)
2086 AcceptChangesAndFinish();
2091 m_owner
->OnRenameCancelled( m_itemEdited
);
2099 void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
2107 // auto-grow the textctrl:
2108 wxSize parentSize
= m_owner
->GetSize();
2109 wxPoint myPos
= m_text
->GetPosition();
2110 wxSize mySize
= m_text
->GetSize();
2112 m_text
->GetTextExtent(m_text
->GetValue() + _T("MM"), &sx
, &sy
);
2113 if (myPos
.x
+ sx
> parentSize
.x
)
2114 sx
= parentSize
.x
- myPos
.x
;
2117 m_text
->SetSize(sx
, wxDefaultCoord
);
2122 void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
2124 if ( !m_finished
&& !m_aboutToFinish
)
2126 // We must finish regardless of success, otherwise we'll get
2130 if ( !AcceptChanges() )
2131 m_owner
->OnRenameCancelled( m_itemEdited
);
2134 // We must let the native text control handle focus, too, otherwise
2135 // it could have problems with the cursor (e.g., in wxGTK).
2139 //-----------------------------------------------------------------------------
2141 //-----------------------------------------------------------------------------
2143 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
)
2145 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2146 EVT_PAINT (wxListMainWindow::OnPaint
)
2147 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2148 EVT_CHAR (wxListMainWindow::OnChar
)
2149 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2150 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2151 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2152 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2155 void wxListMainWindow::Init()
2160 m_lineTo
= (size_t)-1;
2166 m_small_image_list
= (wxImageListType
*) NULL
;
2167 m_normal_image_list
= (wxImageListType
*) NULL
;
2169 m_small_spacing
= 30;
2170 m_normal_spacing
= 40;
2174 m_isCreated
= false;
2176 m_lastOnSame
= false;
2177 m_renameTimer
= new wxListRenameTimer( this );
2178 m_textctrlWrapper
= NULL
;
2182 m_lineSelectSingleOnUp
=
2183 m_lineBeforeLastClicked
= (size_t)-1;
2188 wxListMainWindow::wxListMainWindow()
2193 m_highlightUnfocusedBrush
= (wxBrush
*) NULL
;
2196 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2201 const wxString
&name
)
2202 : wxScrolledWindow( parent
, id
, pos
, size
,
2203 style
| wxHSCROLL
| wxVSCROLL
, name
)
2207 m_highlightBrush
= new wxBrush
2209 wxSystemSettings::GetColour
2211 wxSYS_COLOUR_HIGHLIGHT
2216 m_highlightUnfocusedBrush
= new wxBrush
2218 wxSystemSettings::GetColour
2220 wxSYS_COLOUR_BTNSHADOW
2225 SetScrollbars( 0, 0, 0, 0, 0, 0 );
2227 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
2228 SetOwnForegroundColour( attr
.colFg
);
2229 SetOwnBackgroundColour( attr
.colBg
);
2231 SetOwnFont( attr
.font
);
2234 wxListMainWindow::~wxListMainWindow()
2237 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
2238 WX_CLEAR_ARRAY(m_aColWidths
);
2240 delete m_highlightBrush
;
2241 delete m_highlightUnfocusedBrush
;
2242 delete m_renameTimer
;
2245 void wxListMainWindow::CacheLineData(size_t line
)
2247 wxGenericListCtrl
*listctrl
= GetListCtrl();
2249 wxListLineData
*ld
= GetDummyLine();
2251 size_t countCol
= GetColumnCount();
2252 for ( size_t col
= 0; col
< countCol
; col
++ )
2254 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2255 ld
->SetImage(col
, listctrl
->OnGetItemColumnImage(line
, col
));
2258 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2261 wxListLineData
*wxListMainWindow::GetDummyLine() const
2263 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2264 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2266 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2268 // we need to recreate the dummy line if the number of columns in the
2269 // control changed as it would have the incorrect number of fields
2271 if ( !m_lines
.IsEmpty() &&
2272 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
2274 self
->m_lines
.Clear();
2277 if ( m_lines
.IsEmpty() )
2279 wxListLineData
*line
= new wxListLineData(self
);
2280 self
->m_lines
.Add(line
);
2282 // don't waste extra memory -- there never going to be anything
2283 // else/more in this array
2284 self
->m_lines
.Shrink();
2290 // ----------------------------------------------------------------------------
2291 // line geometry (report mode only)
2292 // ----------------------------------------------------------------------------
2294 wxCoord
wxListMainWindow::GetLineHeight() const
2296 // we cache the line height as calling GetTextExtent() is slow
2297 if ( !m_lineHeight
)
2299 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2301 wxClientDC
dc( self
);
2302 dc
.SetFont( GetFont() );
2305 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2307 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
2310 m_small_image_list
->GetSize(0, iw
, ih
);
2315 self
->m_lineHeight
= y
+ LINE_SPACING
;
2318 return m_lineHeight
;
2321 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2323 wxASSERT_MSG( InReportView(), _T("only works in report mode") );
2325 return LINE_SPACING
+ line
* GetLineHeight();
2328 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2330 if ( !InReportView() )
2331 return GetLine(line
)->m_gi
->m_rectAll
;
2334 rect
.x
= HEADER_OFFSET_X
;
2335 rect
.y
= GetLineY(line
);
2336 rect
.width
= GetHeaderWidth();
2337 rect
.height
= GetLineHeight();
2342 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2344 if ( !InReportView() )
2345 return GetLine(line
)->m_gi
->m_rectLabel
;
2348 rect
.x
= HEADER_OFFSET_X
;
2349 rect
.y
= GetLineY(line
);
2350 rect
.width
= GetColumnWidth(0);
2351 rect
.height
= GetLineHeight();
2356 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2358 if ( !InReportView() )
2359 return GetLine(line
)->m_gi
->m_rectIcon
;
2361 wxListLineData
*ld
= GetLine(line
);
2362 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2365 rect
.x
= HEADER_OFFSET_X
;
2366 rect
.y
= GetLineY(line
);
2367 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2372 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2374 return InReportView() ? GetLineRect(line
)
2375 : GetLine(line
)->m_gi
->m_rectHighlight
;
2378 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2380 wxASSERT_MSG( line
< GetItemCount(), _T("invalid line in HitTestLine") );
2382 wxListLineData
*ld
= GetLine(line
);
2384 if ( ld
->HasImage() && GetLineIconRect(line
).Inside(x
, y
) )
2385 return wxLIST_HITTEST_ONITEMICON
;
2387 // VS: Testing for "ld->HasText() || InReportView()" instead of
2388 // "ld->HasText()" is needed to make empty lines in report view
2390 if ( ld
->HasText() || InReportView() )
2392 wxRect rect
= InReportView() ? GetLineRect(line
)
2393 : GetLineLabelRect(line
);
2395 if ( rect
.Inside(x
, y
) )
2396 return wxLIST_HITTEST_ONITEMLABEL
;
2402 // ----------------------------------------------------------------------------
2403 // highlight (selection) handling
2404 // ----------------------------------------------------------------------------
2406 bool wxListMainWindow::IsHighlighted(size_t line
) const
2410 return m_selStore
.IsSelected(line
);
2414 wxListLineData
*ld
= GetLine(line
);
2415 wxCHECK_MSG( ld
, false, _T("invalid index in IsHighlighted") );
2417 return ld
->IsHighlighted();
2421 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2427 wxArrayInt linesChanged
;
2428 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2431 // meny items changed state, refresh everything
2432 RefreshLines(lineFrom
, lineTo
);
2434 else // only a few items changed state, refresh only them
2436 size_t count
= linesChanged
.GetCount();
2437 for ( size_t n
= 0; n
< count
; n
++ )
2439 RefreshLine(linesChanged
[n
]);
2443 else // iterate over all items in non report view
2445 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2447 if ( HighlightLine(line
, highlight
) )
2453 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2459 changed
= m_selStore
.SelectItem(line
, highlight
);
2463 wxListLineData
*ld
= GetLine(line
);
2464 wxCHECK_MSG( ld
, false, _T("invalid index in HighlightLine") );
2466 changed
= ld
->Highlight(highlight
);
2471 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2472 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2478 void wxListMainWindow::RefreshLine( size_t line
)
2480 if ( InReportView() )
2482 size_t visibleFrom
, visibleTo
;
2483 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2485 if ( line
< visibleFrom
|| line
> visibleTo
)
2489 wxRect rect
= GetLineRect(line
);
2491 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2492 RefreshRect( rect
);
2495 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2497 // we suppose that they are ordered by caller
2498 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2500 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2502 if ( InReportView() )
2504 size_t visibleFrom
, visibleTo
;
2505 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2507 if ( lineFrom
< visibleFrom
)
2508 lineFrom
= visibleFrom
;
2509 if ( lineTo
> visibleTo
)
2514 rect
.y
= GetLineY(lineFrom
);
2515 rect
.width
= GetClientSize().x
;
2516 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2518 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2519 RefreshRect( rect
);
2523 // TODO: this should be optimized...
2524 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2531 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2533 if ( InReportView() )
2535 size_t visibleFrom
, visibleTo
;
2536 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2538 if ( lineFrom
< visibleFrom
)
2539 lineFrom
= visibleFrom
;
2540 else if ( lineFrom
> visibleTo
)
2545 rect
.y
= GetLineY(lineFrom
);
2546 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2548 wxSize size
= GetClientSize();
2549 rect
.width
= size
.x
;
2551 // refresh till the bottom of the window
2552 rect
.height
= size
.y
- rect
.y
;
2554 RefreshRect( rect
);
2558 // TODO: how to do it more efficiently?
2563 void wxListMainWindow::RefreshSelected()
2569 if ( InReportView() )
2571 GetVisibleLinesRange(&from
, &to
);
2576 to
= GetItemCount() - 1;
2579 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
2580 RefreshLine(m_current
);
2582 for ( size_t line
= from
; line
<= to
; line
++ )
2584 // NB: the test works as expected even if m_current == -1
2585 if ( line
!= m_current
&& IsHighlighted(line
) )
2590 void wxListMainWindow::Freeze()
2595 void wxListMainWindow::Thaw()
2597 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen list control?") );
2599 if ( --m_freezeCount
== 0 )
2603 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2605 // Note: a wxPaintDC must be constructed even if no drawing is
2606 // done (a Windows requirement).
2607 wxPaintDC
dc( this );
2609 if ( IsEmpty() || m_freezeCount
)
2610 // nothing to draw or not the moment to draw it
2614 // delay the repainting until we calculate all the items positions
2620 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2622 dc
.SetFont( GetFont() );
2624 if ( InReportView() )
2626 int lineHeight
= GetLineHeight();
2628 size_t visibleFrom
, visibleTo
;
2629 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2632 wxCoord xOrig
, yOrig
;
2633 CalcUnscrolledPosition(0, 0, &xOrig
, &yOrig
);
2635 // tell the caller cache to cache the data
2638 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2639 GetParent()->GetId());
2640 evCache
.SetEventObject( GetParent() );
2641 evCache
.m_oldItemIndex
= visibleFrom
;
2642 evCache
.m_itemIndex
= visibleTo
;
2643 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2646 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2648 rectLine
= GetLineRect(line
);
2650 if ( !IsExposed(rectLine
.x
- xOrig
, rectLine
.y
- yOrig
,
2651 rectLine
.width
, rectLine
.height
) )
2653 // don't redraw unaffected lines to avoid flicker
2657 GetLine(line
)->DrawInReportMode( &dc
,
2659 GetLineHighlightRect(line
),
2660 IsHighlighted(line
) );
2663 if ( HasFlag(wxLC_HRULES
) )
2665 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2666 wxSize clientSize
= GetClientSize();
2668 // Don't draw the first one
2669 for ( size_t i
= visibleFrom
+ 1; i
<= visibleTo
; i
++ )
2672 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2673 dc
.DrawLine(0 - dev_x
, i
* lineHeight
,
2674 clientSize
.x
- dev_x
, i
* lineHeight
);
2677 // Draw last horizontal rule
2678 if ( visibleTo
== GetItemCount() - 1 )
2681 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2682 dc
.DrawLine(0 - dev_x
, (m_lineTo
+ 1) * lineHeight
,
2683 clientSize
.x
- dev_x
, (m_lineTo
+ 1) * lineHeight
);
2687 // Draw vertical rules if required
2688 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2690 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2691 wxRect firstItemRect
, lastItemRect
;
2693 GetItemRect(visibleFrom
, firstItemRect
);
2694 GetItemRect(visibleTo
, lastItemRect
);
2695 int x
= firstItemRect
.GetX();
2697 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2699 for (int col
= 0; col
< GetColumnCount(); col
++)
2701 int colWidth
= GetColumnWidth(col
);
2703 dc
.DrawLine(x
- dev_x
- 2, firstItemRect
.GetY() - 1 - dev_y
,
2704 x
- dev_x
- 2, lastItemRect
.GetBottom() + 1 - dev_y
);
2710 size_t count
= GetItemCount();
2711 for ( size_t i
= 0; i
< count
; i
++ )
2713 GetLine(i
)->Draw( &dc
);
2718 // Don't draw rect outline under Mac at all.
2723 dc
.SetPen( *wxBLACK_PEN
);
2724 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2725 dc
.DrawRectangle( GetLineHighlightRect( m_current
) );
2731 void wxListMainWindow::HighlightAll( bool on
)
2733 if ( IsSingleSel() )
2735 wxASSERT_MSG( !on
, _T("can't do this in a single selection control") );
2737 // we just have one item to turn off
2738 if ( HasCurrent() && IsHighlighted(m_current
) )
2740 HighlightLine(m_current
, false);
2741 RefreshLine(m_current
);
2746 HighlightLines(0, GetItemCount() - 1, on
);
2750 void wxListMainWindow::SendNotify( size_t line
,
2751 wxEventType command
,
2752 const wxPoint
& point
)
2754 wxListEvent
le( command
, GetParent()->GetId() );
2755 le
.SetEventObject( GetParent() );
2756 le
.m_itemIndex
= line
;
2758 // set only for events which have position
2759 if ( point
!= wxDefaultPosition
)
2760 le
.m_pointDrag
= point
;
2762 // don't try to get the line info for virtual list controls: the main
2763 // program has it anyhow and if we did it would result in accessing all
2764 // the lines, even those which are not visible now and this is precisely
2765 // what we're trying to avoid
2766 if ( !IsVirtual() && (command
!= wxEVT_COMMAND_LIST_DELETE_ITEM
) )
2768 if ( line
!= (size_t)-1 )
2770 GetLine(line
)->GetItem( 0, le
.m_item
);
2772 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2774 //else: there may be no more such item
2776 GetParent()->GetEventHandler()->ProcessEvent( le
);
2779 void wxListMainWindow::ChangeCurrent(size_t current
)
2781 m_current
= current
;
2783 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2786 wxTextCtrl
*wxListMainWindow::EditLabel(long item
, wxClassInfo
* textControlClass
)
2788 wxCHECK_MSG( (item
>= 0) && ((size_t)item
< GetItemCount()), NULL
,
2789 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2791 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
2792 wxT("EditLabel() needs a text control") );
2794 size_t itemEdit
= (size_t)item
;
2796 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2797 le
.SetEventObject( GetParent() );
2798 le
.m_itemIndex
= item
;
2799 wxListLineData
*data
= GetLine(itemEdit
);
2800 wxCHECK_MSG( data
, NULL
, _T("invalid index in EditLabel()") );
2801 data
->GetItem( 0, le
.m_item
);
2803 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2805 // vetoed by user code
2809 // We have to call this here because the label in question might just have
2810 // been added and no screen update taken place.
2814 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
2815 m_textctrlWrapper
= new wxListTextCtrlWrapper(this, text
, item
);
2816 return m_textctrlWrapper
->GetText();
2819 void wxListMainWindow::OnRenameTimer()
2821 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2823 EditLabel( m_current
);
2826 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2828 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2829 le
.SetEventObject( GetParent() );
2830 le
.m_itemIndex
= itemEdit
;
2832 wxListLineData
*data
= GetLine(itemEdit
);
2834 wxCHECK_MSG( data
, false, _T("invalid index in OnRenameAccept()") );
2836 data
->GetItem( 0, le
.m_item
);
2837 le
.m_item
.m_text
= value
;
2838 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2842 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2844 // let owner know that the edit was cancelled
2845 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2847 le
.SetEditCanceled(true);
2849 le
.SetEventObject( GetParent() );
2850 le
.m_itemIndex
= itemEdit
;
2852 wxListLineData
*data
= GetLine(itemEdit
);
2853 wxCHECK_RET( data
, _T("invalid index in OnRenameCancelled()") );
2855 data
->GetItem( 0, le
.m_item
);
2856 GetEventHandler()->ProcessEvent( le
);
2859 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2862 // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly
2863 // shutdown the edit control when the mouse is clicked elsewhere on the
2864 // listctrl because the order of events is different (or something like
2865 // that), so explicitly end the edit if it is active.
2866 if ( event
.LeftDown() && m_textctrlWrapper
)
2867 m_textctrlWrapper
->AcceptChangesAndFinish();
2870 event
.SetEventObject( GetParent() );
2871 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2874 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
2876 // let the base handle mouse wheel events.
2881 if ( !HasCurrent() || IsEmpty() )
2887 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2888 event
.ButtonDClick()) )
2891 int x
= event
.GetX();
2892 int y
= event
.GetY();
2893 CalcUnscrolledPosition( x
, y
, &x
, &y
);
2895 // where did we hit it (if we did)?
2898 size_t count
= GetItemCount(),
2901 if ( InReportView() )
2903 current
= y
/ GetLineHeight();
2904 if ( current
< count
)
2905 hitResult
= HitTestLine(current
, x
, y
);
2909 // TODO: optimize it too! this is less simple than for report view but
2910 // enumerating all items is still not a way to do it!!
2911 for ( current
= 0; current
< count
; current
++ )
2913 hitResult
= HitTestLine(current
, x
, y
);
2919 if (event
.Dragging())
2921 if (m_dragCount
== 0)
2923 // we have to report the raw, physical coords as we want to be
2924 // able to call HitTest(event.m_pointDrag) from the user code to
2925 // get the item being dragged
2926 m_dragStart
= event
.GetPosition();
2931 if (m_dragCount
!= 3)
2934 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2935 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2937 wxListEvent
le( command
, GetParent()->GetId() );
2938 le
.SetEventObject( GetParent() );
2939 le
.m_itemIndex
= m_lineLastClicked
;
2940 le
.m_pointDrag
= m_dragStart
;
2941 GetParent()->GetEventHandler()->ProcessEvent( le
);
2952 // outside of any item, reset the selection and bail out
2953 HighlightAll(false);
2957 bool forceClick
= false;
2958 if (event
.ButtonDClick())
2960 m_renameTimer
->Stop();
2961 m_lastOnSame
= false;
2963 if ( current
== m_lineLastClicked
)
2965 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2971 // The first click was on another item, so don't interpret this as
2972 // a double click, but as a simple click instead
2979 if (m_lineSelectSingleOnUp
!= (size_t)-1)
2981 // select single line
2982 HighlightAll( false );
2983 ReverseHighlight(m_lineSelectSingleOnUp
);
2988 if ((current
== m_current
) &&
2989 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2990 HasFlag(wxLC_EDIT_LABELS
) )
2992 m_renameTimer
->Start( 100, true );
2996 m_lastOnSame
= false;
2997 m_lineSelectSingleOnUp
= (size_t)-1;
3001 // This is necessary, because after a DnD operation in
3002 // from and to ourself, the up event is swallowed by the
3003 // DnD code. So on next non-up event (which means here and
3004 // now) m_lineSelectSingleOnUp should be reset.
3005 m_lineSelectSingleOnUp
= (size_t)-1;
3007 if (event
.RightDown())
3009 m_lineBeforeLastClicked
= m_lineLastClicked
;
3010 m_lineLastClicked
= current
;
3012 // If the item is already selected, do not update the selection.
3013 // Multi-selections should not be cleared if a selected item is clicked.
3014 if (!IsHighlighted(current
))
3016 HighlightAll(false);
3017 ChangeCurrent(current
);
3018 ReverseHighlight(m_current
);
3021 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
3023 // Allow generation of context menu event
3026 else if (event
.MiddleDown())
3028 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
3030 else if ( event
.LeftDown() || forceClick
)
3032 m_lineBeforeLastClicked
= m_lineLastClicked
;
3033 m_lineLastClicked
= current
;
3035 size_t oldCurrent
= m_current
;
3036 bool oldWasSelected
= IsHighlighted(m_current
);
3038 bool cmdModifierDown
= event
.CmdDown();
3039 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
3041 if ( IsSingleSel() || !IsHighlighted(current
) )
3043 HighlightAll( false );
3045 ChangeCurrent(current
);
3047 ReverseHighlight(m_current
);
3049 else // multi sel & current is highlighted & no mod keys
3051 m_lineSelectSingleOnUp
= current
;
3052 ChangeCurrent(current
); // change focus
3055 else // multi sel & either ctrl or shift is down
3057 if (cmdModifierDown
)
3059 ChangeCurrent(current
);
3061 ReverseHighlight(m_current
);
3063 else if (event
.ShiftDown())
3065 ChangeCurrent(current
);
3067 size_t lineFrom
= oldCurrent
,
3070 if ( lineTo
< lineFrom
)
3073 lineFrom
= m_current
;
3076 HighlightLines(lineFrom
, lineTo
);
3078 else // !ctrl, !shift
3080 // test in the enclosing if should make it impossible
3081 wxFAIL_MSG( _T("how did we get here?") );
3085 if (m_current
!= oldCurrent
)
3086 RefreshLine( oldCurrent
);
3088 // forceClick is only set if the previous click was on another item
3089 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
) && oldWasSelected
;
3093 void wxListMainWindow::MoveToItem(size_t item
)
3095 if ( item
== (size_t)-1 )
3098 wxRect rect
= GetLineRect(item
);
3100 int client_w
, client_h
;
3101 GetClientSize( &client_w
, &client_h
);
3103 const int hLine
= GetLineHeight();
3105 int view_x
= SCROLL_UNIT_X
* GetScrollPos( wxHORIZONTAL
);
3106 int view_y
= hLine
* GetScrollPos( wxVERTICAL
);
3108 if ( InReportView() )
3110 // the next we need the range of lines shown it might be different,
3111 // so recalculate it
3112 ResetVisibleLinesRange();
3114 if (rect
.y
< view_y
)
3115 Scroll( -1, rect
.y
/ hLine
);
3116 if (rect
.y
+ rect
.height
+ 5 > view_y
+ client_h
)
3117 Scroll( -1, (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
);
3121 if (rect
.x
-view_x
< 5)
3122 Scroll( (rect
.x
- 5) / SCROLL_UNIT_X
, -1 );
3123 if (rect
.x
+ rect
.width
- 5 > view_x
+ client_w
)
3124 Scroll( (rect
.x
+ rect
.width
- client_w
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
, -1 );
3128 // ----------------------------------------------------------------------------
3129 // keyboard handling
3130 // ----------------------------------------------------------------------------
3132 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
3134 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
3135 _T("invalid item index in OnArrowChar()") );
3137 size_t oldCurrent
= m_current
;
3139 // in single selection we just ignore Shift as we can't select several
3141 if ( event
.ShiftDown() && !IsSingleSel() )
3143 ChangeCurrent(newCurrent
);
3145 // refresh the old focus to remove it
3146 RefreshLine( oldCurrent
);
3148 // select all the items between the old and the new one
3149 if ( oldCurrent
> newCurrent
)
3151 newCurrent
= oldCurrent
;
3152 oldCurrent
= m_current
;
3155 HighlightLines(oldCurrent
, newCurrent
);
3159 // all previously selected items are unselected unless ctrl is held
3160 if ( !event
.ControlDown() )
3161 HighlightAll(false);
3163 ChangeCurrent(newCurrent
);
3165 // refresh the old focus to remove it
3166 RefreshLine( oldCurrent
);
3168 if ( !event
.ControlDown() )
3170 HighlightLine( m_current
, true );
3174 RefreshLine( m_current
);
3179 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3181 wxWindow
*parent
= GetParent();
3183 // propagate the key event upwards
3184 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3185 ke
.m_shiftDown
= event
.m_shiftDown
;
3186 ke
.m_controlDown
= event
.m_controlDown
;
3187 ke
.m_altDown
= event
.m_altDown
;
3188 ke
.m_metaDown
= event
.m_metaDown
;
3189 ke
.m_keyCode
= event
.m_keyCode
;
3192 ke
.SetEventObject( parent
);
3193 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3198 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3200 wxWindow
*parent
= GetParent();
3202 // send a list_key event up
3205 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3206 le
.m_itemIndex
= m_current
;
3207 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3208 le
.m_code
= event
.GetKeyCode();
3209 le
.SetEventObject( parent
);
3210 parent
->GetEventHandler()->ProcessEvent( le
);
3213 // propagate the char event upwards
3214 wxKeyEvent
ke( wxEVT_CHAR
);
3215 ke
.m_shiftDown
= event
.m_shiftDown
;
3216 ke
.m_controlDown
= event
.m_controlDown
;
3217 ke
.m_altDown
= event
.m_altDown
;
3218 ke
.m_metaDown
= event
.m_metaDown
;
3219 ke
.m_keyCode
= event
.m_keyCode
;
3222 ke
.SetEventObject( parent
);
3223 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3225 if (event
.GetKeyCode() == WXK_TAB
)
3227 wxNavigationKeyEvent nevent
;
3228 nevent
.SetWindowChange( event
.ControlDown() );
3229 nevent
.SetDirection( !event
.ShiftDown() );
3230 nevent
.SetEventObject( GetParent()->GetParent() );
3231 nevent
.SetCurrentFocus( m_parent
);
3232 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
3236 // no item -> nothing to do
3243 switch (event
.GetKeyCode())
3246 if ( m_current
> 0 )
3247 OnArrowChar( m_current
- 1, event
);
3251 if ( m_current
< (size_t)GetItemCount() - 1 )
3252 OnArrowChar( m_current
+ 1, event
);
3257 OnArrowChar( GetItemCount() - 1, event
);
3262 OnArrowChar( 0, event
);
3267 int steps
= InReportView() ? m_linesPerPage
- 1 : m_current
% m_linesPerPage
;
3269 int index
= m_current
- steps
;
3273 OnArrowChar( index
, event
);
3279 int steps
= InReportView()
3280 ? m_linesPerPage
- 1
3281 : m_linesPerPage
- (m_current
% m_linesPerPage
) - 1;
3283 size_t index
= m_current
+ steps
;
3284 size_t count
= GetItemCount();
3285 if ( index
>= count
)
3288 OnArrowChar( index
, event
);
3293 if ( !InReportView() )
3295 int index
= m_current
- m_linesPerPage
;
3299 OnArrowChar( index
, event
);
3304 if ( !InReportView() )
3306 size_t index
= m_current
+ m_linesPerPage
;
3308 size_t count
= GetItemCount();
3309 if ( index
>= count
)
3312 OnArrowChar( index
, event
);
3317 if ( IsSingleSel() )
3319 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3321 if ( IsHighlighted(m_current
) )
3323 // don't unselect the item in single selection mode
3326 //else: select it in ReverseHighlight() below if unselected
3329 ReverseHighlight(m_current
);
3334 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3342 // ----------------------------------------------------------------------------
3344 // ----------------------------------------------------------------------------
3346 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3350 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3351 event
.SetEventObject( GetParent() );
3352 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3356 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3357 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3358 // which are already drawn correctly resulting in horrible flicker - avoid
3368 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3372 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
3373 event
.SetEventObject( GetParent() );
3374 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3382 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3384 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3386 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3388 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3390 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3392 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3394 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3396 else if ( InReportView() && (m_small_image_list
))
3398 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3402 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3404 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3406 m_normal_image_list
->GetSize( index
, width
, height
);
3408 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3410 m_small_image_list
->GetSize( index
, width
, height
);
3412 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3414 m_small_image_list
->GetSize( index
, width
, height
);
3416 else if ( InReportView() && m_small_image_list
)
3418 m_small_image_list
->GetSize( index
, width
, height
);
3427 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3429 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3430 dc
.SetFont( GetFont() );
3433 dc
.GetTextExtent( s
, &lw
, NULL
);
3435 return lw
+ AUTOSIZE_COL_MARGIN
;
3438 void wxListMainWindow::SetImageList( wxImageListType
*imageList
, int which
)
3442 // calc the spacing from the icon size
3443 int width
= 0, height
= 0;
3445 if ((imageList
) && (imageList
->GetImageCount()) )
3446 imageList
->GetSize(0, width
, height
);
3448 if (which
== wxIMAGE_LIST_NORMAL
)
3450 m_normal_image_list
= imageList
;
3451 m_normal_spacing
= width
+ 8;
3454 if (which
== wxIMAGE_LIST_SMALL
)
3456 m_small_image_list
= imageList
;
3457 m_small_spacing
= width
+ 14;
3458 m_lineHeight
= 0; // ensure that the line height will be recalc'd
3462 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3466 m_small_spacing
= spacing
;
3468 m_normal_spacing
= spacing
;
3471 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3473 return isSmall
? m_small_spacing
: m_normal_spacing
;
3476 // ----------------------------------------------------------------------------
3478 // ----------------------------------------------------------------------------
3480 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3482 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3484 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3486 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3487 item
.m_width
= GetTextLength( item
.m_text
);
3489 wxListHeaderData
*column
= node
->GetData();
3490 column
->SetItem( item
);
3492 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3494 headerWin
->m_dirty
= true;
3498 // invalidate it as it has to be recalculated
3502 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3504 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3505 _T("invalid column index") );
3507 wxCHECK_RET( InReportView(),
3508 _T("SetColumnWidth() can only be called in report mode.") );
3511 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3513 headerWin
->m_dirty
= true;
3515 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3516 wxCHECK_RET( node
, _T("no column?") );
3518 wxListHeaderData
*column
= node
->GetData();
3520 size_t count
= GetItemCount();
3522 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3524 width
= GetTextLength(column
->GetText());
3526 else if ( width
== wxLIST_AUTOSIZE
)
3530 // TODO: determine the max width somehow...
3531 width
= WIDTH_COL_DEFAULT
;
3535 wxClientDC
dc(this);
3536 dc
.SetFont( GetFont() );
3538 int max
= AUTOSIZE_COL_MARGIN
;
3540 // if the cached column width isn't valid then recalculate it
3541 if (m_aColWidths
.Item(col
)->bNeedsUpdate
)
3543 for (size_t i
= 0; i
< count
; i
++)
3545 wxListLineData
*line
= GetLine( i
);
3546 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3548 wxCHECK_RET( n
, _T("no subitem?") );
3550 wxListItemData
*itemData
= n
->GetData();
3553 itemData
->GetItem(item
);
3554 int itemWidth
= GetItemWidthWithImage(&item
);
3555 if (itemWidth
> max
)
3559 m_aColWidths
.Item(col
)->bNeedsUpdate
= false;
3560 m_aColWidths
.Item(col
)->nMaxWidth
= max
;
3563 max
= m_aColWidths
.Item(col
)->nMaxWidth
;
3564 width
= max
+ AUTOSIZE_COL_MARGIN
;
3568 column
->SetWidth( width
);
3570 // invalidate it as it has to be recalculated
3574 int wxListMainWindow::GetHeaderWidth() const
3576 if ( !m_headerWidth
)
3578 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3580 size_t count
= GetColumnCount();
3581 for ( size_t col
= 0; col
< count
; col
++ )
3583 self
->m_headerWidth
+= GetColumnWidth(col
);
3587 return m_headerWidth
;
3590 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3592 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3593 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3595 wxListHeaderData
*column
= node
->GetData();
3596 column
->GetItem( item
);
3599 int wxListMainWindow::GetColumnWidth( int col
) const
3601 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3602 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3604 wxListHeaderData
*column
= node
->GetData();
3605 return column
->GetWidth();
3608 // ----------------------------------------------------------------------------
3610 // ----------------------------------------------------------------------------
3612 void wxListMainWindow::SetItem( wxListItem
&item
)
3614 long id
= item
.m_itemId
;
3615 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3616 _T("invalid item index in SetItem") );
3620 wxListLineData
*line
= GetLine((size_t)id
);
3621 line
->SetItem( item
.m_col
, item
);
3623 // Set item state if user wants
3624 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3625 SetItemState( item
.m_itemId
, item
.m_state
, item
.m_state
);
3629 // update the Max Width Cache if needed
3630 int width
= GetItemWidthWithImage(&item
);
3632 if (width
> m_aColWidths
.Item(item
.m_col
)->nMaxWidth
)
3633 m_aColWidths
.Item(item
.m_col
)->nMaxWidth
= width
;
3637 // update the item on screen
3639 GetItemRect(id
, rectItem
);
3640 RefreshRect(rectItem
);
3643 void wxListMainWindow::SetItemStateAll(long state
, long stateMask
)
3648 // first deal with selection
3649 if ( stateMask
& wxLIST_STATE_SELECTED
)
3651 // set/clear select state
3654 // optimized version for virtual listctrl.
3655 m_selStore
.SelectRange(0, GetItemCount() - 1, state
== wxLIST_STATE_SELECTED
);
3658 else if ( state
& wxLIST_STATE_SELECTED
)
3660 const long count
= GetItemCount();
3661 for( long i
= 0; i
< count
; i
++ )
3663 SetItemState( i
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
3669 // clear for non virtual (somewhat optimized by using GetNextItem())
3671 while ( (i
= GetNextItem(i
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
)) != -1 )
3673 SetItemState( i
, 0, wxLIST_STATE_SELECTED
);
3678 if ( HasCurrent() && (state
== 0) && (stateMask
& wxLIST_STATE_FOCUSED
) )
3680 // unfocus all: only one item can be focussed, so clearing focus for
3681 // all items is simply clearing focus of the focussed item.
3682 SetItemState(m_current
, state
, stateMask
);
3684 //(setting focus to all items makes no sense, so it is not handled here.)
3687 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3691 SetItemStateAll(state
, stateMask
);
3695 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3696 _T("invalid list ctrl item index in SetItem") );
3698 size_t oldCurrent
= m_current
;
3699 size_t item
= (size_t)litem
; // safe because of the check above
3701 // do we need to change the focus?
3702 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3704 if ( state
& wxLIST_STATE_FOCUSED
)
3706 // don't do anything if this item is already focused
3707 if ( item
!= m_current
)
3709 ChangeCurrent(item
);
3711 if ( oldCurrent
!= (size_t)-1 )
3713 if ( IsSingleSel() )
3715 HighlightLine(oldCurrent
, false);
3718 RefreshLine(oldCurrent
);
3721 RefreshLine( m_current
);
3726 // don't do anything if this item is not focused
3727 if ( item
== m_current
)
3731 if ( IsSingleSel() )
3733 // we must unselect the old current item as well or we
3734 // might end up with more than one selected item in a
3735 // single selection control
3736 HighlightLine(oldCurrent
, false);
3739 RefreshLine( oldCurrent
);
3744 // do we need to change the selection state?
3745 if ( stateMask
& wxLIST_STATE_SELECTED
)
3747 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3749 if ( IsSingleSel() )
3753 // selecting the item also makes it the focused one in the
3755 if ( m_current
!= item
)
3757 ChangeCurrent(item
);
3759 if ( oldCurrent
!= (size_t)-1 )
3761 HighlightLine( oldCurrent
, false );
3762 RefreshLine( oldCurrent
);
3768 // only the current item may be selected anyhow
3769 if ( item
!= m_current
)
3774 if ( HighlightLine(item
, on
) )
3781 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3783 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3784 _T("invalid list ctrl item index in GetItemState()") );
3786 int ret
= wxLIST_STATE_DONTCARE
;
3788 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3790 if ( (size_t)item
== m_current
)
3791 ret
|= wxLIST_STATE_FOCUSED
;
3794 if ( stateMask
& wxLIST_STATE_SELECTED
)
3796 if ( IsHighlighted(item
) )
3797 ret
|= wxLIST_STATE_SELECTED
;
3803 void wxListMainWindow::GetItem( wxListItem
&item
) const
3805 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3806 _T("invalid item index in GetItem") );
3808 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3809 line
->GetItem( item
.m_col
, item
);
3811 // Get item state if user wants it
3812 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3813 item
.m_state
= GetItemState( item
.m_itemId
, wxLIST_STATE_SELECTED
|
3814 wxLIST_STATE_FOCUSED
);
3817 // ----------------------------------------------------------------------------
3819 // ----------------------------------------------------------------------------
3821 size_t wxListMainWindow::GetItemCount() const
3823 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3826 void wxListMainWindow::SetItemCount(long count
)
3828 m_selStore
.SetItemCount(count
);
3829 m_countVirt
= count
;
3831 ResetVisibleLinesRange();
3833 // scrollbars must be reset
3837 int wxListMainWindow::GetSelectedItemCount() const
3839 // deal with the quick case first
3840 if ( IsSingleSel() )
3841 return HasCurrent() ? IsHighlighted(m_current
) : false;
3843 // virtual controls remmebers all its selections itself
3845 return m_selStore
.GetSelectedCount();
3847 // TODO: we probably should maintain the number of items selected even for
3848 // non virtual controls as enumerating all lines is really slow...
3849 size_t countSel
= 0;
3850 size_t count
= GetItemCount();
3851 for ( size_t line
= 0; line
< count
; line
++ )
3853 if ( GetLine(line
)->IsHighlighted() )
3860 // ----------------------------------------------------------------------------
3861 // item position/size
3862 // ----------------------------------------------------------------------------
3864 wxRect
wxListMainWindow::GetViewRect() const
3866 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
3867 _T("wxListCtrl::GetViewRect() only works in icon mode") );
3869 // we need to find the longest/tallest label
3870 wxCoord xMax
= 0, yMax
= 0;
3871 const int count
= GetItemCount();
3874 for ( int i
= 0; i
< count
; i
++ )
3879 wxCoord x
= r
.GetRight(),
3889 // some fudge needed to make it look prettier
3890 xMax
+= 2 * EXTRA_BORDER_X
;
3891 yMax
+= 2 * EXTRA_BORDER_Y
;
3893 // account for the scrollbars if necessary
3894 const wxSize sizeAll
= GetClientSize();
3895 if ( xMax
> sizeAll
.x
)
3896 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3897 if ( yMax
> sizeAll
.y
)
3898 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3900 return wxRect(0, 0, xMax
, yMax
);
3903 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
) const
3905 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3906 _T("invalid index in GetItemRect") );
3908 // ensure that we're laid out, otherwise we could return nonsense
3911 wxConstCast(this, wxListMainWindow
)->
3912 RecalculatePositions(true /* no refresh */);
3915 rect
= GetLineRect((size_t)index
);
3917 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3920 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3923 GetItemRect(item
, rect
);
3931 // ----------------------------------------------------------------------------
3932 // geometry calculation
3933 // ----------------------------------------------------------------------------
3935 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3937 wxClientDC
dc( this );
3938 dc
.SetFont( GetFont() );
3940 const size_t count
= GetItemCount();
3943 if ( HasFlag(wxLC_ICON
) )
3944 iconSpacing
= m_normal_spacing
;
3945 else if ( HasFlag(wxLC_SMALL_ICON
) )
3946 iconSpacing
= m_small_spacing
;
3950 // Note that we do not call GetClientSize() here but
3951 // GetSize() and subtract the border size for sunken
3952 // borders manually. This is technically incorrect,
3953 // but we need to know the client area's size WITHOUT
3954 // scrollbars here. Since we don't know if there are
3955 // any scrollbars, we use GetSize() instead. Another
3956 // solution would be to call SetScrollbars() here to
3957 // remove the scrollbars and call GetClientSize() then,
3958 // but this might result in flicker and - worse - will
3959 // reset the scrollbars to 0 which is not good at all
3960 // if you resize a dialog/window, but don't want to
3961 // reset the window scrolling. RR.
3962 // Furthermore, we actually do NOT subtract the border
3963 // width as 2 pixels is just the extra space which we
3964 // need around the actual content in the window. Other-
3965 // wise the text would e.g. touch the upper border. RR.
3968 GetSize( &clientWidth
, &clientHeight
);
3970 const int lineHeight
= GetLineHeight();
3972 if ( InReportView() )
3974 // all lines have the same height and we scroll one line per step
3975 int entireHeight
= count
* lineHeight
+ LINE_SPACING
;
3977 m_linesPerPage
= clientHeight
/ lineHeight
;
3979 ResetVisibleLinesRange();
3981 SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
3982 GetHeaderWidth() / SCROLL_UNIT_X
,
3983 (entireHeight
+ lineHeight
- 1) / lineHeight
,
3984 GetScrollPos(wxHORIZONTAL
),
3985 GetScrollPos(wxVERTICAL
),
3990 // we have 3 different layout strategies: either layout all items
3991 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
3992 // to arrange them in top to bottom, left to right (don't ask me why
3993 // not the other way round...) order
3994 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
3996 int x
= EXTRA_BORDER_X
;
3997 int y
= EXTRA_BORDER_Y
;
3999 wxCoord widthMax
= 0;
4002 for ( i
= 0; i
< count
; i
++ )
4004 wxListLineData
*line
= GetLine(i
);
4005 line
->CalculateSize( &dc
, iconSpacing
);
4006 line
->SetPosition( x
, y
, iconSpacing
);
4008 wxSize sizeLine
= GetLineSize(i
);
4010 if ( HasFlag(wxLC_ALIGN_TOP
) )
4012 if ( sizeLine
.x
> widthMax
)
4013 widthMax
= sizeLine
.x
;
4017 else // wxLC_ALIGN_LEFT
4019 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
4023 if ( HasFlag(wxLC_ALIGN_TOP
) )
4025 // traverse the items again and tweak their sizes so that they are
4026 // all the same in a row
4027 for ( i
= 0; i
< count
; i
++ )
4029 wxListLineData
*line
= GetLine(i
);
4030 line
->m_gi
->ExtendWidth(widthMax
);
4038 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4039 (y
+ lineHeight
) / lineHeight
,
4040 GetScrollPos( wxHORIZONTAL
),
4041 GetScrollPos( wxVERTICAL
),
4045 else // "flowed" arrangement, the most complicated case
4047 // at first we try without any scrollbars, if the items don't fit into
4048 // the window, we recalculate after subtracting the space taken by the
4051 int entireWidth
= 0;
4053 for (int tries
= 0; tries
< 2; tries
++)
4055 entireWidth
= 2 * EXTRA_BORDER_X
;
4059 // Now we have decided that the items do not fit into the
4060 // client area, so we need a scrollbar
4061 entireWidth
+= SCROLL_UNIT_X
;
4064 int x
= EXTRA_BORDER_X
;
4065 int y
= EXTRA_BORDER_Y
;
4066 int maxWidthInThisRow
= 0;
4069 int currentlyVisibleLines
= 0;
4071 for (size_t i
= 0; i
< count
; i
++)
4073 currentlyVisibleLines
++;
4074 wxListLineData
*line
= GetLine( i
);
4075 line
->CalculateSize( &dc
, iconSpacing
);
4076 line
->SetPosition( x
, y
, iconSpacing
);
4078 wxSize sizeLine
= GetLineSize( i
);
4080 if ( maxWidthInThisRow
< sizeLine
.x
)
4081 maxWidthInThisRow
= sizeLine
.x
;
4084 if (currentlyVisibleLines
> m_linesPerPage
)
4085 m_linesPerPage
= currentlyVisibleLines
;
4087 if ( y
+ sizeLine
.y
>= clientHeight
)
4089 currentlyVisibleLines
= 0;
4091 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
4092 x
+= maxWidthInThisRow
;
4093 entireWidth
+= maxWidthInThisRow
;
4094 maxWidthInThisRow
= 0;
4097 // We have reached the last item.
4098 if ( i
== count
- 1 )
4099 entireWidth
+= maxWidthInThisRow
;
4101 if ( (tries
== 0) &&
4102 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
4104 clientHeight
-= wxSystemSettings::
4105 GetMetric(wxSYS_HSCROLL_Y
);
4110 if ( i
== count
- 1 )
4111 tries
= 1; // Everything fits, no second try required.
4119 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4121 GetScrollPos( wxHORIZONTAL
),
4130 // FIXME: why should we call it from here?
4137 void wxListMainWindow::RefreshAll()
4142 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
4143 if ( headerWin
&& headerWin
->m_dirty
)
4145 headerWin
->m_dirty
= false;
4146 headerWin
->Refresh();
4150 void wxListMainWindow::UpdateCurrent()
4152 if ( !HasCurrent() && !IsEmpty() )
4156 long wxListMainWindow::GetNextItem( long item
,
4157 int WXUNUSED(geometry
),
4161 max
= GetItemCount();
4162 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
4163 _T("invalid listctrl index in GetNextItem()") );
4165 // notice that we start with the next item (or the first one if item == -1)
4166 // and this is intentional to allow writing a simple loop to iterate over
4167 // all selected items
4170 // this is not an error because the index was OK initially,
4171 // just no such item
4178 size_t count
= GetItemCount();
4179 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
4181 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
4184 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
4191 // ----------------------------------------------------------------------------
4193 // ----------------------------------------------------------------------------
4195 void wxListMainWindow::DeleteItem( long lindex
)
4197 size_t count
= GetItemCount();
4199 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
4200 _T("invalid item index in DeleteItem") );
4202 size_t index
= (size_t)lindex
;
4204 // we don't need to adjust the index for the previous items
4205 if ( HasCurrent() && m_current
>= index
)
4207 // if the current item is being deleted, we want the next one to
4208 // become selected - unless there is no next one - so don't adjust
4209 // m_current in this case
4210 if ( m_current
!= index
|| m_current
== count
- 1 )
4214 if ( InReportView() )
4216 // mark the Column Max Width cache as dirty if the items in the line
4217 // we're deleting contain the Max Column Width
4218 wxListLineData
* const line
= GetLine(index
);
4219 wxListItemDataList::compatibility_iterator n
;
4220 wxListItemData
*itemData
;
4224 for (size_t i
= 0; i
< m_columns
.GetCount(); i
++)
4226 n
= line
->m_items
.Item( i
);
4227 itemData
= n
->GetData();
4228 itemData
->GetItem(item
);
4230 itemWidth
= GetItemWidthWithImage(&item
);
4232 if (itemWidth
>= m_aColWidths
.Item(i
)->nMaxWidth
)
4233 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4236 ResetVisibleLinesRange();
4242 m_selStore
.OnItemDelete(index
);
4246 m_lines
.RemoveAt( index
);
4249 // we need to refresh the (vert) scrollbar as the number of items changed
4252 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
4254 RefreshAfter(index
);
4257 void wxListMainWindow::DeleteColumn( int col
)
4259 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4261 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
4264 delete node
->GetData();
4265 m_columns
.Erase( node
);
4269 // update all the items
4270 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4272 wxListLineData
* const line
= GetLine(i
);
4273 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
4274 delete n
->GetData();
4275 line
->m_items
.Erase(n
);
4279 if ( InReportView() ) // we only cache max widths when in Report View
4281 delete m_aColWidths
.Item(col
);
4282 m_aColWidths
.RemoveAt(col
);
4285 // invalidate it as it has to be recalculated
4289 void wxListMainWindow::DoDeleteAllItems()
4292 // nothing to do - in particular, don't send the event
4297 // to make the deletion of all items faster, we don't send the
4298 // notifications for each item deletion in this case but only one event
4299 // for all of them: this is compatible with wxMSW and documented in
4300 // DeleteAllItems() description
4302 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
4303 event
.SetEventObject( GetParent() );
4304 GetParent()->GetEventHandler()->ProcessEvent( event
);
4312 if ( InReportView() )
4314 ResetVisibleLinesRange();
4315 for (size_t i
= 0; i
< m_aColWidths
.GetCount(); i
++)
4317 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4324 void wxListMainWindow::DeleteAllItems()
4328 RecalculatePositions();
4331 void wxListMainWindow::DeleteEverything()
4333 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
4334 WX_CLEAR_ARRAY(m_aColWidths
);
4339 // ----------------------------------------------------------------------------
4340 // scanning for an item
4341 // ----------------------------------------------------------------------------
4343 void wxListMainWindow::EnsureVisible( long index
)
4345 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4346 _T("invalid index in EnsureVisible") );
4348 // We have to call this here because the label in question might just have
4349 // been added and its position is not known yet
4351 RecalculatePositions(true /* no refresh */);
4353 MoveToItem((size_t)index
);
4356 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
4363 size_t count
= GetItemCount();
4364 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
4366 wxListLineData
*line
= GetLine(i
);
4367 if ( line
->GetText(0) == tmp
)
4374 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4380 size_t count
= GetItemCount();
4381 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4383 wxListLineData
*line
= GetLine(i
);
4385 line
->GetItem( 0, item
);
4386 if (item
.m_data
== data
)
4393 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4396 GetVisibleLinesRange( &topItem
, NULL
);
4399 GetItemPosition( GetItemCount() - 1, p
);
4403 long id
= (long)floor( pt
.y
* double(GetItemCount() - topItem
- 1) / p
.y
+ topItem
);
4404 if ( id
>= 0 && id
< (long)GetItemCount() )
4410 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
4412 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4414 size_t count
= GetItemCount();
4416 if ( InReportView() )
4418 size_t current
= y
/ GetLineHeight();
4419 if ( current
< count
)
4421 flags
= HitTestLine(current
, x
, y
);
4428 // TODO: optimize it too! this is less simple than for report view but
4429 // enumerating all items is still not a way to do it!!
4430 for ( size_t current
= 0; current
< count
; current
++ )
4432 flags
= HitTestLine(current
, x
, y
);
4441 // ----------------------------------------------------------------------------
4443 // ----------------------------------------------------------------------------
4445 void wxListMainWindow::InsertItem( wxListItem
&item
)
4447 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4449 int count
= GetItemCount();
4450 wxCHECK_RET( item
.m_itemId
>= 0, _T("invalid item index") );
4452 if (item
.m_itemId
> count
)
4453 item
.m_itemId
= count
;
4455 size_t id
= item
.m_itemId
;
4459 if ( InReportView() )
4461 ResetVisibleLinesRange();
4463 // calculate the width of the item and adjust the max column width
4464 wxColWidthInfo
*pWidthInfo
= m_aColWidths
.Item(item
.GetColumn());
4465 int width
= GetItemWidthWithImage(&item
);
4466 item
.SetWidth(width
);
4467 if (width
> pWidthInfo
->nMaxWidth
)
4468 pWidthInfo
->nMaxWidth
= width
;
4471 wxListLineData
*line
= new wxListLineData(this);
4473 line
->SetItem( item
.m_col
, item
);
4475 m_lines
.Insert( line
, id
);
4479 // If an item is selected at or below the point of insertion, we need to
4480 // increment the member variables because the current row's index has gone
4482 if ( HasCurrent() && m_current
>= id
)
4485 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4487 RefreshLines(id
, GetItemCount() - 1);
4490 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4493 if ( InReportView() )
4495 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4496 item
.m_width
= GetTextLength( item
.m_text
);
4498 wxListHeaderData
*column
= new wxListHeaderData( item
);
4499 wxColWidthInfo
*colWidthInfo
= new wxColWidthInfo();
4501 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4504 wxListHeaderDataList::compatibility_iterator
4505 node
= m_columns
.Item( col
);
4506 m_columns
.Insert( node
, column
);
4507 m_aColWidths
.Insert( colWidthInfo
, col
);
4511 m_columns
.Append( column
);
4512 m_aColWidths
.Add( colWidthInfo
);
4517 // update all the items
4518 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4520 wxListLineData
* const line
= GetLine(i
);
4521 wxListItemData
* const data
= new wxListItemData(this);
4523 line
->m_items
.Insert(col
, data
);
4525 line
->m_items
.Append(data
);
4529 // invalidate it as it has to be recalculated
4534 int wxListMainWindow::GetItemWidthWithImage(wxListItem
* item
)
4537 wxClientDC
dc(this);
4539 dc
.SetFont( GetFont() );
4541 if (item
->GetImage() != -1)
4544 GetImageSize( item
->GetImage(), ix
, iy
);
4548 if (!item
->GetText().empty())
4551 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
4558 // ----------------------------------------------------------------------------
4560 // ----------------------------------------------------------------------------
4562 wxListCtrlCompare list_ctrl_compare_func_2
;
4563 long list_ctrl_compare_data
;
4565 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4567 wxListLineData
*line1
= *arg1
;
4568 wxListLineData
*line2
= *arg2
;
4570 line1
->GetItem( 0, item
);
4571 wxUIntPtr data1
= item
.m_data
;
4572 line2
->GetItem( 0, item
);
4573 wxUIntPtr data2
= item
.m_data
;
4574 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4577 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4579 list_ctrl_compare_func_2
= fn
;
4580 list_ctrl_compare_data
= data
;
4581 m_lines
.Sort( list_ctrl_compare_func_1
);
4585 // ----------------------------------------------------------------------------
4587 // ----------------------------------------------------------------------------
4589 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4591 // update our idea of which lines are shown when we redraw the window the
4593 ResetVisibleLinesRange();
4596 #if ( defined(__WXGTK__) || defined(__WXMAC__) ) && !defined(__WXUNIVERSAL__)
4597 wxScrolledWindow::OnScroll(event
);
4599 HandleOnScroll( event
);
4602 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4604 wxGenericListCtrl
* lc
= GetListCtrl();
4605 wxCHECK_RET( lc
, _T("no listctrl window?") );
4607 lc
->m_headerWin
->Refresh();
4608 lc
->m_headerWin
->Update();
4612 int wxListMainWindow::GetCountPerPage() const
4614 if ( !m_linesPerPage
)
4616 wxConstCast(this, wxListMainWindow
)->
4617 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4620 return m_linesPerPage
;
4623 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4625 wxASSERT_MSG( InReportView(), _T("this is for report mode only") );
4627 if ( m_lineFrom
== (size_t)-1 )
4629 size_t count
= GetItemCount();
4632 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4634 // this may happen if SetScrollbars() hadn't been called yet
4635 if ( m_lineFrom
>= count
)
4636 m_lineFrom
= count
- 1;
4638 // we redraw one extra line but this is needed to make the redrawing
4639 // logic work when there is a fractional number of lines on screen
4640 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4641 if ( m_lineTo
>= count
)
4642 m_lineTo
= count
- 1;
4644 else // empty control
4647 m_lineTo
= (size_t)-1;
4651 wxASSERT_MSG( IsEmpty() ||
4652 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4653 _T("GetVisibleLinesRange() returns incorrect result") );
4661 // -------------------------------------------------------------------------------------
4662 // wxGenericListCtrl
4663 // -------------------------------------------------------------------------------------
4665 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4667 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4668 EVT_SIZE(wxGenericListCtrl::OnSize
)
4671 wxGenericListCtrl::wxGenericListCtrl()
4673 m_imageListNormal
= (wxImageListType
*) NULL
;
4674 m_imageListSmall
= (wxImageListType
*) NULL
;
4675 m_imageListState
= (wxImageListType
*) NULL
;
4677 m_ownsImageListNormal
=
4678 m_ownsImageListSmall
=
4679 m_ownsImageListState
= false;
4681 m_mainWin
= (wxListMainWindow
*) NULL
;
4682 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4686 wxGenericListCtrl::~wxGenericListCtrl()
4688 if (m_ownsImageListNormal
)
4689 delete m_imageListNormal
;
4690 if (m_ownsImageListSmall
)
4691 delete m_imageListSmall
;
4692 if (m_ownsImageListState
)
4693 delete m_imageListState
;
4696 void wxGenericListCtrl::CalculateAndSetHeaderHeight()
4702 GetThemeMetric( kThemeMetricListHeaderHeight
, &h
);
4704 // we use 'g' to get the descent, too
4706 m_headerWin
->GetTextExtent(wxT("Hg"), &w
, &h
, &d
);
4707 h
+= d
+ 2 * HEADER_OFFSET_Y
+ EXTRA_HEIGHT
;
4710 // only update if changed
4711 if ( h
!= m_headerHeight
)
4716 ResizeReportView(true);
4717 else //why is this needed if it doesn't have a header?
4718 m_headerWin
->SetSize(m_headerWin
->GetSize().x
, m_headerHeight
);
4723 void wxGenericListCtrl::CreateHeaderWindow()
4725 m_headerWin
= new wxListHeaderWindow
4727 this, wxID_ANY
, m_mainWin
,
4729 wxSize(GetClientSize().x
, m_headerHeight
),
4732 CalculateAndSetHeaderHeight();
4735 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4740 const wxValidator
&validator
,
4741 const wxString
&name
)
4745 m_imageListState
= (wxImageListType
*) NULL
;
4746 m_ownsImageListNormal
=
4747 m_ownsImageListSmall
=
4748 m_ownsImageListState
= false;
4750 m_mainWin
= (wxListMainWindow
*) NULL
;
4751 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4755 if ( !(style
& wxLC_MASK_TYPE
) )
4757 style
= style
| wxLC_LIST
;
4760 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4763 // don't create the inner window with the border
4764 style
&= ~wxBORDER_MASK
;
4766 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0, 0), size
, style
);
4768 #ifdef __WXMAC_CARBON__
4769 // Human Interface Guidelines ask us for a special font in this case
4770 if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
)
4773 font
.MacCreateThemeFont( kThemeViewsFont
);
4778 if ( InReportView() )
4780 CreateHeaderWindow();
4782 #ifdef __WXMAC_CARBON__
4786 font
.MacCreateThemeFont( kThemeSmallSystemFont
);
4787 m_headerWin
->SetFont( font
);
4788 CalculateAndSetHeaderHeight();
4792 if ( HasFlag(wxLC_NO_HEADER
) )
4793 // VZ: why do we create it at all then?
4794 m_headerWin
->Show( false );
4802 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4804 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4805 _T("wxLC_VIRTUAL can't be [un]set") );
4807 long flag
= GetWindowStyle();
4811 if (style
& wxLC_MASK_TYPE
)
4812 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4813 if (style
& wxLC_MASK_ALIGN
)
4814 flag
&= ~wxLC_MASK_ALIGN
;
4815 if (style
& wxLC_MASK_SORT
)
4816 flag
&= ~wxLC_MASK_SORT
;
4824 SetWindowStyleFlag( flag
);
4827 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4831 m_mainWin
->DeleteEverything();
4833 // has the header visibility changed?
4834 bool hasHeader
= HasHeader();
4835 bool willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4837 if ( hasHeader
!= willHaveHeader
)
4844 // don't delete, just hide, as we can reuse it later
4845 m_headerWin
->Show(false);
4847 //else: nothing to do
4849 else // must show header
4853 CreateHeaderWindow();
4855 else // already have it, just show
4857 m_headerWin
->Show( true );
4861 ResizeReportView(willHaveHeader
);
4865 wxWindow::SetWindowStyleFlag( flag
);
4868 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4870 m_mainWin
->GetColumn( col
, item
);
4874 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
4876 m_mainWin
->SetColumn( col
, item
);
4880 int wxGenericListCtrl::GetColumnWidth( int col
) const
4882 return m_mainWin
->GetColumnWidth( col
);
4885 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4887 m_mainWin
->SetColumnWidth( col
, width
);
4891 int wxGenericListCtrl::GetCountPerPage() const
4893 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4896 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4898 m_mainWin
->GetItem( info
);
4902 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4904 m_mainWin
->SetItem( info
);
4908 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4911 info
.m_text
= label
;
4912 info
.m_mask
= wxLIST_MASK_TEXT
;
4913 info
.m_itemId
= index
;
4917 info
.m_image
= imageId
;
4918 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4921 m_mainWin
->SetItem(info
);
4925 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4927 return m_mainWin
->GetItemState( item
, stateMask
);
4930 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4932 m_mainWin
->SetItemState( item
, state
, stateMask
);
4937 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4940 info
.m_image
= image
;
4941 info
.m_mask
= wxLIST_MASK_IMAGE
;
4942 info
.m_itemId
= item
;
4943 m_mainWin
->SetItem( info
);
4947 wxString
wxGenericListCtrl::GetItemText( long item
) const
4949 return m_mainWin
->GetItemText(item
);
4952 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4954 m_mainWin
->SetItemText(item
, str
);
4957 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
4960 info
.m_mask
= wxLIST_MASK_DATA
;
4961 info
.m_itemId
= item
;
4962 m_mainWin
->GetItem( info
);
4966 bool wxGenericListCtrl::SetItemData( long item
, long data
)
4969 info
.m_mask
= wxLIST_MASK_DATA
;
4970 info
.m_itemId
= item
;
4972 m_mainWin
->SetItem( info
);
4976 wxRect
wxGenericListCtrl::GetViewRect() const
4978 return m_mainWin
->GetViewRect();
4981 bool wxGenericListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
4983 m_mainWin
->GetItemRect( item
, rect
);
4984 if ( m_mainWin
->HasHeader() )
4985 rect
.y
+= m_headerHeight
+ 1;
4989 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4991 m_mainWin
->GetItemPosition( item
, pos
);
4995 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
5000 int wxGenericListCtrl::GetItemCount() const
5002 return m_mainWin
->GetItemCount();
5005 int wxGenericListCtrl::GetColumnCount() const
5007 return m_mainWin
->GetColumnCount();
5010 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
5012 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
5015 wxSize
wxGenericListCtrl::GetItemSpacing() const
5017 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
5019 return wxSize(spacing
, spacing
);
5022 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
5024 return m_mainWin
->GetItemSpacing( isSmall
);
5027 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
5030 info
.m_itemId
= item
;
5031 info
.SetTextColour( col
);
5032 m_mainWin
->SetItem( info
);
5035 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
5038 info
.m_itemId
= item
;
5039 m_mainWin
->GetItem( info
);
5040 return info
.GetTextColour();
5043 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
5046 info
.m_itemId
= item
;
5047 info
.SetBackgroundColour( col
);
5048 m_mainWin
->SetItem( info
);
5051 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
5054 info
.m_itemId
= item
;
5055 m_mainWin
->GetItem( info
);
5056 return info
.GetBackgroundColour();
5059 void wxGenericListCtrl::SetItemFont( long item
, const wxFont
&f
)
5062 info
.m_itemId
= item
;
5064 m_mainWin
->SetItem( info
);
5067 wxFont
wxGenericListCtrl::GetItemFont( long item
) const
5070 info
.m_itemId
= item
;
5071 m_mainWin
->GetItem( info
);
5072 return info
.GetFont();
5075 int wxGenericListCtrl::GetSelectedItemCount() const
5077 return m_mainWin
->GetSelectedItemCount();
5080 wxColour
wxGenericListCtrl::GetTextColour() const
5082 return GetForegroundColour();
5085 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
5087 SetForegroundColour(col
);
5090 long wxGenericListCtrl::GetTopItem() const
5093 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
5097 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
5099 return m_mainWin
->GetNextItem( item
, geom
, state
);
5102 wxImageListType
*wxGenericListCtrl::GetImageList(int which
) const
5104 if (which
== wxIMAGE_LIST_NORMAL
)
5105 return m_imageListNormal
;
5106 else if (which
== wxIMAGE_LIST_SMALL
)
5107 return m_imageListSmall
;
5108 else if (which
== wxIMAGE_LIST_STATE
)
5109 return m_imageListState
;
5111 return (wxImageListType
*) NULL
;
5114 void wxGenericListCtrl::SetImageList( wxImageListType
*imageList
, int which
)
5116 if ( which
== wxIMAGE_LIST_NORMAL
)
5118 if (m_ownsImageListNormal
)
5119 delete m_imageListNormal
;
5120 m_imageListNormal
= imageList
;
5121 m_ownsImageListNormal
= false;
5123 else if ( which
== wxIMAGE_LIST_SMALL
)
5125 if (m_ownsImageListSmall
)
5126 delete m_imageListSmall
;
5127 m_imageListSmall
= imageList
;
5128 m_ownsImageListSmall
= false;
5130 else if ( which
== wxIMAGE_LIST_STATE
)
5132 if (m_ownsImageListState
)
5133 delete m_imageListState
;
5134 m_imageListState
= imageList
;
5135 m_ownsImageListState
= false;
5138 m_mainWin
->SetImageList( imageList
, which
);
5141 void wxGenericListCtrl::AssignImageList(wxImageListType
*imageList
, int which
)
5143 SetImageList(imageList
, which
);
5144 if ( which
== wxIMAGE_LIST_NORMAL
)
5145 m_ownsImageListNormal
= true;
5146 else if ( which
== wxIMAGE_LIST_SMALL
)
5147 m_ownsImageListSmall
= true;
5148 else if ( which
== wxIMAGE_LIST_STATE
)
5149 m_ownsImageListState
= true;
5152 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
5157 bool wxGenericListCtrl::DeleteItem( long item
)
5159 m_mainWin
->DeleteItem( item
);
5163 bool wxGenericListCtrl::DeleteAllItems()
5165 m_mainWin
->DeleteAllItems();
5169 bool wxGenericListCtrl::DeleteAllColumns()
5171 size_t count
= m_mainWin
->m_columns
.GetCount();
5172 for ( size_t n
= 0; n
< count
; n
++ )
5177 void wxGenericListCtrl::ClearAll()
5179 m_mainWin
->DeleteEverything();
5182 bool wxGenericListCtrl::DeleteColumn( int col
)
5184 m_mainWin
->DeleteColumn( col
);
5186 // if we don't have the header any longer, we need to relayout the window
5187 if ( !GetColumnCount() )
5188 ResizeReportView(false /* no header */);
5192 wxTextCtrl
*wxGenericListCtrl::EditLabel(long item
,
5193 wxClassInfo
* textControlClass
)
5195 return m_mainWin
->EditLabel( item
, textControlClass
);
5198 wxTextCtrl
*wxGenericListCtrl::GetEditControl() const
5200 return m_mainWin
->GetEditControl();
5203 bool wxGenericListCtrl::EnsureVisible( long item
)
5205 m_mainWin
->EnsureVisible( item
);
5209 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
5211 return m_mainWin
->FindItem( start
, str
, partial
);
5214 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
5216 return m_mainWin
->FindItem( start
, data
);
5219 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
5220 int WXUNUSED(direction
))
5222 return m_mainWin
->FindItem( pt
);
5225 long wxGenericListCtrl::HitTest( const wxPoint
&point
, int &flags
)
5227 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
5230 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
5232 m_mainWin
->InsertItem( info
);
5233 return info
.m_itemId
;
5236 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
5239 info
.m_text
= label
;
5240 info
.m_mask
= wxLIST_MASK_TEXT
;
5241 info
.m_itemId
= index
;
5242 return InsertItem( info
);
5245 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
5248 info
.m_mask
= wxLIST_MASK_IMAGE
;
5249 info
.m_image
= imageIndex
;
5250 info
.m_itemId
= index
;
5251 return InsertItem( info
);
5254 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
5257 info
.m_text
= label
;
5258 info
.m_image
= imageIndex
;
5259 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
5260 info
.m_itemId
= index
;
5261 return InsertItem( info
);
5264 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
5266 wxCHECK_MSG( m_headerWin
, -1, _T("can't add column in non report mode") );
5268 m_mainWin
->InsertColumn( col
, item
);
5270 // if we hadn't had a header before but have one now
5271 // then we need to relayout the window
5272 if ( GetColumnCount() == 1 && m_mainWin
->HasHeader() )
5273 ResizeReportView(true /* have header */);
5275 m_headerWin
->Refresh();
5280 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
5281 int format
, int width
)
5284 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
5285 item
.m_text
= heading
;
5288 item
.m_mask
|= wxLIST_MASK_WIDTH
;
5289 item
.m_width
= width
;
5292 item
.m_format
= format
;
5294 return InsertColumn( col
, item
);
5297 bool wxGenericListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
5303 // fn is a function which takes 3 long arguments: item1, item2, data.
5304 // item1 is the long data associated with a first item (NOT the index).
5305 // item2 is the long data associated with a second item (NOT the index).
5306 // data is the same value as passed to SortItems.
5307 // The return value is a negative number if the first item should precede the second
5308 // item, a positive number of the second item should precede the first,
5309 // or zero if the two items are equivalent.
5310 // data is arbitrary data to be passed to the sort function.
5312 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
5314 m_mainWin
->SortItems( fn
, data
);
5318 // ----------------------------------------------------------------------------
5320 // ----------------------------------------------------------------------------
5322 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5327 ResizeReportView(m_mainWin
->HasHeader());
5328 m_mainWin
->RecalculatePositions();
5331 void wxGenericListCtrl::ResizeReportView(bool showHeader
)
5334 GetClientSize( &cw
, &ch
);
5338 m_headerWin
->SetSize( 0, 0, cw
, m_headerHeight
);
5339 if(ch
> m_headerHeight
)
5340 m_mainWin
->SetSize( 0, m_headerHeight
+ 1,
5341 cw
, ch
- m_headerHeight
- 1 );
5343 m_mainWin
->SetSize( 0, m_headerHeight
+ 1,
5346 else // no header window
5348 m_mainWin
->SetSize( 0, 0, cw
, ch
);
5352 void wxGenericListCtrl::OnInternalIdle()
5354 wxWindow::OnInternalIdle();
5356 // do it only if needed
5357 if ( !m_mainWin
->m_dirty
)
5360 m_mainWin
->RecalculatePositions();
5363 // ----------------------------------------------------------------------------
5365 // ----------------------------------------------------------------------------
5367 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5371 m_mainWin
->SetBackgroundColour( colour
);
5372 m_mainWin
->m_dirty
= true;
5378 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5380 if ( !wxWindow::SetForegroundColour( colour
) )
5385 m_mainWin
->SetForegroundColour( colour
);
5386 m_mainWin
->m_dirty
= true;
5390 m_headerWin
->SetForegroundColour( colour
);
5395 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5397 if ( !wxWindow::SetFont( font
) )
5402 m_mainWin
->SetFont( font
);
5403 m_mainWin
->m_dirty
= true;
5408 m_headerWin
->SetFont( font
);
5409 CalculateAndSetHeaderHeight();
5418 #include "wx/listbox.h"
5423 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5426 // Use the same color scheme as wxListBox
5427 return wxListBox::GetClassDefaultAttributes(variant
);
5429 wxUnusedVar(variant
);
5430 wxVisualAttributes attr
;
5431 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
5432 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5433 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5438 // ----------------------------------------------------------------------------
5439 // methods forwarded to m_mainWin
5440 // ----------------------------------------------------------------------------
5442 #if wxUSE_DRAG_AND_DROP
5444 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5446 m_mainWin
->SetDropTarget( dropTarget
);
5449 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5451 return m_mainWin
->GetDropTarget();
5456 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5458 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5461 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5463 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5466 wxColour
wxGenericListCtrl::GetForegroundColour() const
5468 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5471 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5474 return m_mainWin
->PopupMenu( menu
, x
, y
);
5480 void wxGenericListCtrl::DoClientToScreen( int *x
, int *y
) const
5482 return m_mainWin
->DoClientToScreen(x
, y
);
5485 void wxGenericListCtrl::DoScreenToClient( int *x
, int *y
) const
5487 return m_mainWin
->DoScreenToClient(x
, y
);
5490 void wxGenericListCtrl::SetFocus()
5492 // The test in window.cpp fails as we are a composite
5493 // window, so it checks against "this", but not m_mainWin.
5494 if ( DoFindFocus() != this )
5495 m_mainWin
->SetFocus();
5498 wxSize
wxGenericListCtrl::DoGetBestSize() const
5500 // Something is better than nothing...
5501 // 100x80 is what the MSW version will get from the default
5502 // wxControl::DoGetBestSize
5503 return wxSize(100, 80);
5506 // ----------------------------------------------------------------------------
5507 // virtual list control support
5508 // ----------------------------------------------------------------------------
5510 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5512 // this is a pure virtual function, in fact - which is not really pure
5513 // because the controls which are not virtual don't need to implement it
5514 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5516 return wxEmptyString
;
5519 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5521 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5523 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
5527 int wxGenericListCtrl::OnGetItemColumnImage(long item
, long column
) const
5530 return OnGetItemImage(item
);
5536 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5538 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5539 _T("invalid item index in OnGetItemAttr()") );
5541 // no attributes by default
5545 void wxGenericListCtrl::SetItemCount(long count
)
5547 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5549 m_mainWin
->SetItemCount(count
);
5552 void wxGenericListCtrl::RefreshItem(long item
)
5554 m_mainWin
->RefreshLine(item
);
5557 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5559 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5562 // Generic wxListCtrl is more or less a container for two other
5563 // windows which drawings are done upon. These are namely
5564 // 'm_headerWin' and 'm_mainWin'.
5565 // Here we override 'virtual wxWindow::Refresh()' to mimic the
5566 // behaviour wxListCtrl has under wxMSW.
5568 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5572 // The easy case, no rectangle specified.
5574 m_headerWin
->Refresh(eraseBackground
);
5577 m_mainWin
->Refresh(eraseBackground
);
5581 // Refresh the header window
5584 wxRect rectHeader
= m_headerWin
->GetRect();
5585 rectHeader
.Intersect(*rect
);
5586 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5589 m_headerWin
->GetPosition(&x
, &y
);
5590 rectHeader
.Offset(-x
, -y
);
5591 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5595 // Refresh the main window
5598 wxRect rectMain
= m_mainWin
->GetRect();
5599 rectMain
.Intersect(*rect
);
5600 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5603 m_mainWin
->GetPosition(&x
, &y
);
5604 rectMain
.Offset(-x
, -y
);
5605 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5611 void wxGenericListCtrl::Freeze()
5613 m_mainWin
->Freeze();
5616 void wxGenericListCtrl::Thaw()
5621 #endif // wxUSE_LISTCTRL