1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/listctrl.cpp
3 // Purpose: generic implementation of wxListCtrl
4 // Author: Robert Roebling
5 // Vadim Zeitlin (virtual list control support)
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 // 1. we need to implement searching/sorting for virtual controls somehow
14 // 2. when changing selection the lines are refreshed twice
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
26 #include "wx/listctrl.h"
28 #if (!defined(__WXMSW__) || defined(__WXUNIVERSAL__)) && !defined(__WXMAC__)
29 // if we have a native version, its implementation file does all this
30 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
31 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
32 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
34 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxGenericListCtrl
)
38 #include "wx/scrolwin.h"
40 #include "wx/settings.h"
41 #include "wx/dynarray.h"
42 #include "wx/dcclient.h"
43 #include "wx/dcscreen.h"
47 #include "wx/imaglist.h"
48 #include "wx/selstore.h"
49 #include "wx/renderer.h"
52 #include "wx/mac/private.h"
56 // NOTE: If using the wxListBox visual attributes works everywhere then this can
57 // be removed, as well as the #else case below.
58 #define _USE_VISATTR 0
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 // // the height of the header window (FIXME: should depend on its font!)
66 // static const int HEADER_HEIGHT = 23;
68 static const int SCROLL_UNIT_X
= 15;
70 // the spacing between the lines (in report mode)
71 static const int LINE_SPACING
= 0;
73 // extra margins around the text label
75 static const int EXTRA_WIDTH
= 6;
77 static const int EXTRA_WIDTH
= 4;
79 static const int EXTRA_HEIGHT
= 4;
81 // margin between the window and the items
82 static const int EXTRA_BORDER_X
= 2;
83 static const int EXTRA_BORDER_Y
= 2;
85 // offset for the header window
86 static const int HEADER_OFFSET_X
= 0;
87 static const int HEADER_OFFSET_Y
= 0;
89 // margin between rows of icons in [small] icon view
90 static const int MARGIN_BETWEEN_ROWS
= 6;
92 // when autosizing the columns, add some slack
93 static const int AUTOSIZE_COL_MARGIN
= 10;
95 // default width for the header columns
96 static const int WIDTH_COL_DEFAULT
= 80;
98 // the space between the image and the text in the report mode
99 static const int IMAGE_MARGIN_IN_REPORT_MODE
= 5;
101 // the space between the image and the text in the report mode in header
102 static const int HEADER_IMAGE_MARGIN_IN_REPORT_MODE
= 2;
104 // ============================================================================
106 // ============================================================================
108 //-----------------------------------------------------------------------------
109 // wxColWidthInfo (internal)
110 //-----------------------------------------------------------------------------
112 struct wxColWidthInfo
115 bool bNeedsUpdate
; // only set to true when an item whose
116 // width == nMaxWidth is removed
118 wxColWidthInfo(int w
= 0, bool needsUpdate
= false)
121 bNeedsUpdate
= needsUpdate
;
125 WX_DEFINE_ARRAY_PTR(wxColWidthInfo
*, ColWidthArray
);
127 //-----------------------------------------------------------------------------
128 // wxListItemData (internal)
129 //-----------------------------------------------------------------------------
134 wxListItemData(wxListMainWindow
*owner
);
137 void SetItem( const wxListItem
&info
);
138 void SetImage( int image
) { m_image
= image
; }
139 void SetData( wxUIntPtr data
) { m_data
= data
; }
140 void SetPosition( int x
, int y
);
141 void SetSize( int width
, int height
);
143 bool HasText() const { return !m_text
.empty(); }
144 const wxString
& GetText() const { return m_text
; }
145 void SetText(const wxString
& text
) { m_text
= text
; }
147 // we can't use empty string for measuring the string width/height, so
148 // always return something
149 wxString
GetTextForMeasuring() const
151 wxString s
= GetText();
158 bool IsHit( int x
, int y
) const;
162 int GetWidth() const;
163 int GetHeight() const;
165 int GetImage() const { return m_image
; }
166 bool HasImage() const { return GetImage() != -1; }
168 void GetItem( wxListItem
&info
) const;
170 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
171 wxListItemAttr
*GetAttr() const { return m_attr
; }
174 // the item image or -1
177 // user data associated with the item
180 // the item coordinates are not used in report mode; instead this pointer is
181 // NULL and the owner window is used to retrieve the item position and size
184 // the list ctrl we are in
185 wxListMainWindow
*m_owner
;
187 // custom attributes or NULL
188 wxListItemAttr
*m_attr
;
191 // common part of all ctors
197 //-----------------------------------------------------------------------------
198 // wxListHeaderData (internal)
199 //-----------------------------------------------------------------------------
201 class wxListHeaderData
: public wxObject
205 wxListHeaderData( const wxListItem
&info
);
206 void SetItem( const wxListItem
&item
);
207 void SetPosition( int x
, int y
);
208 void SetWidth( int w
);
209 void SetState( int state
);
210 void SetFormat( int format
);
211 void SetHeight( int h
);
212 bool HasImage() const;
214 bool HasText() const { return !m_text
.empty(); }
215 const wxString
& GetText() const { return m_text
; }
216 void SetText(const wxString
& text
) { m_text
= text
; }
218 void GetItem( wxListItem
&item
);
220 bool IsHit( int x
, int y
) const;
221 int GetImage() const;
222 int GetWidth() const;
223 int GetFormat() const;
224 int GetState() const;
241 //-----------------------------------------------------------------------------
242 // wxListLineData (internal)
243 //-----------------------------------------------------------------------------
245 WX_DECLARE_EXPORTED_LIST(wxListItemData
, wxListItemDataList
);
246 #include "wx/listimpl.cpp"
247 WX_DEFINE_LIST(wxListItemDataList
)
252 // the list of subitems: only may have more than one item in report mode
253 wxListItemDataList m_items
;
255 // this is not used in report view
267 // the part to be highlighted
268 wxRect m_rectHighlight
;
270 // extend all our rects to be centered inside the one of given width
271 void ExtendWidth(wxCoord w
)
273 wxASSERT_MSG( m_rectAll
.width
<= w
,
274 _T("width can only be increased") );
277 m_rectLabel
.x
= m_rectAll
.x
+ (w
- m_rectLabel
.width
) / 2;
278 m_rectIcon
.x
= m_rectAll
.x
+ (w
- m_rectIcon
.width
) / 2;
279 m_rectHighlight
.x
= m_rectAll
.x
+ (w
- m_rectHighlight
.width
) / 2;
284 // is this item selected? [NB: not used in virtual mode]
287 // back pointer to the list ctrl
288 wxListMainWindow
*m_owner
;
291 wxListLineData(wxListMainWindow
*owner
);
295 WX_CLEAR_LIST(wxListItemDataList
, m_items
);
299 // are we in report mode?
300 inline bool InReportView() const;
302 // are we in virtual report mode?
303 inline bool IsVirtual() const;
305 // these 2 methods shouldn't be called for report view controls, in that
306 // case we determine our position/size ourselves
308 // calculate the size of the line
309 void CalculateSize( wxDC
*dc
, int spacing
);
311 // remember the position this line appears at
312 void SetPosition( int x
, int y
, int spacing
);
316 void SetImage( int image
) { SetImage(0, image
); }
317 int GetImage() const { return GetImage(0); }
318 void SetImage( int index
, int image
);
319 int GetImage( int index
) const;
321 bool HasImage() const { return GetImage() != -1; }
322 bool HasText() const { return !GetText(0).empty(); }
324 void SetItem( int index
, const wxListItem
&info
);
325 void GetItem( int index
, wxListItem
&info
);
327 wxString
GetText(int index
) const;
328 void SetText( int index
, const wxString
& s
);
330 wxListItemAttr
*GetAttr() const;
331 void SetAttr(wxListItemAttr
*attr
);
333 // return true if the highlighting really changed
334 bool Highlight( bool on
);
336 void ReverseHighlight();
338 bool IsHighlighted() const
340 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
342 return m_highlighted
;
345 // draw the line on the given DC in icon/list mode
346 void Draw( wxDC
*dc
);
348 // the same in report mode
349 void DrawInReportMode( wxDC
*dc
,
351 const wxRect
& rectHL
,
355 // set the line to contain num items (only can be > 1 in report mode)
356 void InitItems( int num
);
358 // get the mode (i.e. style) of the list control
359 inline int GetMode() const;
361 // prepare the DC for drawing with these item's attributes, return true if
362 // we need to draw the items background to highlight it, false otherwise
363 bool SetAttributes(wxDC
*dc
,
364 const wxListItemAttr
*attr
,
367 // draw the text on the DC with the correct justification; also add an
368 // ellipsis if the text is too large to fit in the current width
369 void DrawTextFormatted(wxDC
*dc
,
370 const wxString
&text
,
373 int yMid
, // this is middle, not top, of the text
377 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
378 #include "wx/arrimpl.cpp"
379 WX_DEFINE_OBJARRAY(wxListLineDataArray
)
381 //-----------------------------------------------------------------------------
382 // wxListHeaderWindow (internal)
383 //-----------------------------------------------------------------------------
385 class wxListHeaderWindow
: public wxWindow
388 wxListMainWindow
*m_owner
;
389 const wxCursor
*m_currentCursor
;
390 wxCursor
*m_resizeCursor
;
393 // column being resized or -1
396 // divider line position in logical (unscrolled) coords
399 // minimal position beyond which the divider line
400 // can't be dragged in logical coords
404 wxListHeaderWindow();
406 wxListHeaderWindow( wxWindow
*win
,
408 wxListMainWindow
*owner
,
409 const wxPoint
&pos
= wxDefaultPosition
,
410 const wxSize
&size
= wxDefaultSize
,
412 const wxString
&name
= wxT("wxlistctrlcolumntitles") );
414 virtual ~wxListHeaderWindow();
417 void AdjustDC( wxDC
& dc
);
419 void OnPaint( wxPaintEvent
&event
);
420 void OnMouse( wxMouseEvent
&event
);
421 void OnSetFocus( wxFocusEvent
&event
);
427 // common part of all ctors
430 // generate and process the list event of the given type, return true if
431 // it wasn't vetoed, i.e. if we should proceed
432 bool SendListEvent(wxEventType type
, const wxPoint
& pos
);
434 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
435 DECLARE_EVENT_TABLE()
438 //-----------------------------------------------------------------------------
439 // wxListRenameTimer (internal)
440 //-----------------------------------------------------------------------------
442 class wxListRenameTimer
: public wxTimer
445 wxListMainWindow
*m_owner
;
448 wxListRenameTimer( wxListMainWindow
*owner
);
452 //-----------------------------------------------------------------------------
453 // wxListTextCtrlWrapper: wraps a wxTextCtrl to make it work for inline editing
454 //-----------------------------------------------------------------------------
456 class wxListTextCtrlWrapper
: public wxEvtHandler
459 // NB: text must be a valid object but not Create()d yet
460 wxListTextCtrlWrapper(wxListMainWindow
*owner
,
464 wxTextCtrl
*GetText() const { return m_text
; }
466 void AcceptChangesAndFinish();
469 void OnChar( wxKeyEvent
&event
);
470 void OnKeyUp( wxKeyEvent
&event
);
471 void OnKillFocus( wxFocusEvent
&event
);
473 bool AcceptChanges();
477 wxListMainWindow
*m_owner
;
479 wxString m_startValue
;
482 bool m_aboutToFinish
;
484 DECLARE_EVENT_TABLE()
487 //-----------------------------------------------------------------------------
488 // wxListMainWindow (internal)
489 //-----------------------------------------------------------------------------
491 WX_DECLARE_EXPORTED_LIST(wxListHeaderData
, wxListHeaderDataList
);
492 #include "wx/listimpl.cpp"
493 WX_DEFINE_LIST(wxListHeaderDataList
)
495 class wxListMainWindow
: public wxScrolledWindow
499 wxListMainWindow( wxWindow
*parent
,
501 const wxPoint
& pos
= wxDefaultPosition
,
502 const wxSize
& size
= wxDefaultSize
,
504 const wxString
&name
= _T("listctrlmainwindow") );
506 virtual ~wxListMainWindow();
508 bool HasFlag(int flag
) const { return m_parent
->HasFlag(flag
); }
510 // return true if this is a virtual list control
511 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
513 // return true if the control is in report mode
514 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
516 // return true if we are in single selection mode, false if multi sel
517 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL
); }
519 // do we have a header window?
520 bool HasHeader() const
521 { return InReportView() && !HasFlag(wxLC_NO_HEADER
); }
523 void HighlightAll( bool on
);
525 // all these functions only do something if the line is currently visible
527 // change the line "selected" state, return true if it really changed
528 bool HighlightLine( size_t line
, bool highlight
= true);
530 // as HighlightLine() but do it for the range of lines: this is incredibly
531 // more efficient for virtual list controls!
533 // NB: unlike HighlightLine() this one does refresh the lines on screen
534 void HighlightLines( size_t lineFrom
, size_t lineTo
, bool on
= true );
536 // toggle the line state and refresh it
537 void ReverseHighlight( size_t line
)
538 { HighlightLine(line
, !IsHighlighted(line
)); RefreshLine(line
); }
540 // return true if the line is highlighted
541 bool IsHighlighted(size_t line
) const;
543 // refresh one or several lines at once
544 void RefreshLine( size_t line
);
545 void RefreshLines( size_t lineFrom
, size_t lineTo
);
547 // refresh all selected items
548 void RefreshSelected();
550 // refresh all lines below the given one: the difference with
551 // RefreshLines() is that the index here might not be a valid one (happens
552 // when the last line is deleted)
553 void RefreshAfter( size_t lineFrom
);
555 // the methods which are forwarded to wxListLineData itself in list/icon
556 // modes but are here because the lines don't store their positions in the
559 // get the bound rect for the entire line
560 wxRect
GetLineRect(size_t line
) const;
562 // get the bound rect of the label
563 wxRect
GetLineLabelRect(size_t line
) const;
565 // get the bound rect of the items icon (only may be called if we do have
567 wxRect
GetLineIconRect(size_t line
) const;
569 // get the rect to be highlighted when the item has focus
570 wxRect
GetLineHighlightRect(size_t line
) const;
572 // get the size of the total line rect
573 wxSize
GetLineSize(size_t line
) const
574 { return GetLineRect(line
).GetSize(); }
576 // return the hit code for the corresponding position (in this line)
577 long HitTestLine(size_t line
, int x
, int y
) const;
579 // bring the selected item into view, scrolling to it if necessary
580 void MoveToItem(size_t item
);
582 // bring the current item into view
583 void MoveToFocus() { MoveToItem(m_current
); }
585 // start editing the label of the given item
586 wxTextCtrl
*EditLabel(long item
,
587 wxClassInfo
* textControlClass
= CLASSINFO(wxTextCtrl
));
588 wxTextCtrl
*GetEditControl() const
590 return m_textctrlWrapper
? m_textctrlWrapper
->GetText() : NULL
;
593 void FinishEditing(wxTextCtrl
*text
)
596 m_textctrlWrapper
= NULL
;
597 SetFocusIgnoringChildren();
600 // suspend/resume redrawing the control
604 void OnRenameTimer();
605 bool OnRenameAccept(size_t itemEdit
, const wxString
& value
);
606 void OnRenameCancelled(size_t itemEdit
);
608 void OnMouse( wxMouseEvent
&event
);
610 // called to switch the selection from the current item to newCurrent,
611 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
613 void OnChar( wxKeyEvent
&event
);
614 void OnKeyDown( wxKeyEvent
&event
);
615 void OnKeyUp( wxKeyEvent
&event
);
616 void OnSetFocus( wxFocusEvent
&event
);
617 void OnKillFocus( wxFocusEvent
&event
);
618 void OnScroll( wxScrollWinEvent
& event
);
620 void OnPaint( wxPaintEvent
&event
);
622 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
623 void GetImageSize( int index
, int &width
, int &height
) const;
624 int GetTextLength( const wxString
&s
) const;
626 void SetImageList( wxImageList
*imageList
, int which
);
627 void SetItemSpacing( int spacing
, bool isSmall
= false );
628 int GetItemSpacing( bool isSmall
= false );
630 void SetColumn( int col
, wxListItem
&item
);
631 void SetColumnWidth( int col
, int width
);
632 void GetColumn( int col
, wxListItem
&item
) const;
633 int GetColumnWidth( int col
) const;
634 int GetColumnCount() const { return m_columns
.GetCount(); }
636 // returns the sum of the heights of all columns
637 int GetHeaderWidth() const;
639 int GetCountPerPage() const;
641 void SetItem( wxListItem
&item
);
642 void GetItem( wxListItem
&item
) const;
643 void SetItemState( long item
, long state
, long stateMask
);
644 void SetItemStateAll( long state
, long stateMask
);
645 int GetItemState( long item
, long stateMask
) const;
646 void GetItemRect( long index
, wxRect
&rect
) const;
647 wxRect
GetViewRect() const;
648 bool GetItemPosition( long item
, wxPoint
& pos
) const;
649 int GetSelectedItemCount() const;
651 wxString
GetItemText(long item
) const
654 info
.m_mask
= wxLIST_MASK_TEXT
;
655 info
.m_itemId
= item
;
660 void SetItemText(long item
, const wxString
& value
)
663 info
.m_mask
= wxLIST_MASK_TEXT
;
664 info
.m_itemId
= item
;
669 // set the scrollbars and update the positions of the items
670 void RecalculatePositions(bool noRefresh
= false);
672 // refresh the window and the header
675 long GetNextItem( long item
, int geometry
, int state
) const;
676 void DeleteItem( long index
);
677 void DeleteAllItems();
678 void DeleteColumn( int col
);
679 void DeleteEverything();
680 void EnsureVisible( long index
);
681 long FindItem( long start
, const wxString
& str
, bool partial
= false );
682 long FindItem( long start
, wxUIntPtr data
);
683 long FindItem( const wxPoint
& pt
);
684 long HitTest( int x
, int y
, int &flags
) const;
685 void InsertItem( wxListItem
&item
);
686 void InsertColumn( long col
, wxListItem
&item
);
687 int GetItemWidthWithImage(wxListItem
* item
);
688 void SortItems( wxListCtrlCompare fn
, long data
);
690 size_t GetItemCount() const;
691 bool IsEmpty() const { return GetItemCount() == 0; }
692 void SetItemCount(long count
);
694 // change the current (== focused) item, send a notification event
695 void ChangeCurrent(size_t current
);
696 void ResetCurrent() { ChangeCurrent((size_t)-1); }
697 bool HasCurrent() const { return m_current
!= (size_t)-1; }
699 // send out a wxListEvent
700 void SendNotify( size_t line
,
702 const wxPoint
& point
= wxDefaultPosition
);
704 // override base class virtual to reset m_lineHeight when the font changes
705 virtual bool SetFont(const wxFont
& font
)
707 if ( !wxScrolledWindow::SetFont(font
) )
715 // these are for wxListLineData usage only
717 // get the backpointer to the list ctrl
718 wxGenericListCtrl
*GetListCtrl() const
720 return wxStaticCast(GetParent(), wxGenericListCtrl
);
723 // get the height of all lines (assuming they all do have the same height)
724 wxCoord
GetLineHeight() const;
726 // get the y position of the given line (only for report view)
727 wxCoord
GetLineY(size_t line
) const;
729 // get the brush to use for the item highlighting
730 wxBrush
*GetHighlightBrush() const
732 return m_hasFocus
? m_highlightBrush
: m_highlightUnfocusedBrush
;
735 bool HasFocus() const
741 // the array of all line objects for a non virtual list control (for the
742 // virtual list control we only ever use m_lines[0])
743 wxListLineDataArray m_lines
;
745 // the list of column objects
746 wxListHeaderDataList m_columns
;
748 // currently focused item or -1
751 // the number of lines per page
754 // this flag is set when something which should result in the window
755 // redrawing happens (i.e. an item was added or deleted, or its appearance
756 // changed) and OnPaint() doesn't redraw the window while it is set which
757 // allows to minimize the number of repaintings when a lot of items are
758 // being added. The real repainting occurs only after the next OnIdle()
762 wxColour
*m_highlightColour
;
763 wxImageList
*m_small_image_list
;
764 wxImageList
*m_normal_image_list
;
766 int m_normal_spacing
;
770 wxTimer
*m_renameTimer
;
774 ColWidthArray m_aColWidths
;
776 // for double click logic
777 size_t m_lineLastClicked
,
778 m_lineBeforeLastClicked
,
779 m_lineSelectSingleOnUp
;
782 wxWindow
*GetMainWindowOfCompositeControl() { return GetParent(); }
784 // the total count of items in a virtual list control
787 // the object maintaining the items selection state, only used in virtual
789 wxSelectionStore m_selStore
;
791 // common part of all ctors
794 // get the line data for the given index
795 wxListLineData
*GetLine(size_t n
) const
797 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
801 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
808 // get a dummy line which can be used for geometry calculations and such:
809 // you must use GetLine() if you want to really draw the line
810 wxListLineData
*GetDummyLine() const;
812 // cache the line data of the n-th line in m_lines[0]
813 void CacheLineData(size_t line
);
815 // get the range of visible lines
816 void GetVisibleLinesRange(size_t *from
, size_t *to
);
818 // force us to recalculate the range of visible lines
819 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
821 // get the colour to be used for drawing the rules
822 wxColour
GetRuleColour() const
824 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
828 // initialize the current item if needed
829 void UpdateCurrent();
831 // delete all items but don't refresh: called from dtor
832 void DoDeleteAllItems();
834 // the height of one line using the current font
835 wxCoord m_lineHeight
;
837 // the total header width or 0 if not calculated yet
838 wxCoord m_headerWidth
;
840 // the first and last lines being shown on screen right now (inclusive),
841 // both may be -1 if they must be calculated so never access them directly:
842 // use GetVisibleLinesRange() above instead
846 // the brushes to use for item highlighting when we do/don't have focus
847 wxBrush
*m_highlightBrush
,
848 *m_highlightUnfocusedBrush
;
850 // if this is > 0, the control is frozen and doesn't redraw itself
851 size_t m_freezeCount
;
853 // wrapper around the text control currently used for in place editing or
854 // NULL if no item is being edited
855 wxListTextCtrlWrapper
*m_textctrlWrapper
;
858 DECLARE_DYNAMIC_CLASS(wxListMainWindow
)
859 DECLARE_EVENT_TABLE()
861 friend class wxGenericListCtrl
;
865 wxListItemData::~wxListItemData()
867 // in the virtual list control the attributes are managed by the main
868 // program, so don't delete them
869 if ( !m_owner
->IsVirtual() )
875 void wxListItemData::Init()
883 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
889 if ( owner
->InReportView() )
895 void wxListItemData::SetItem( const wxListItem
&info
)
897 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
898 SetText(info
.m_text
);
899 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
900 m_image
= info
.m_image
;
901 if ( info
.m_mask
& wxLIST_MASK_DATA
)
902 m_data
= info
.m_data
;
904 if ( info
.HasAttributes() )
907 m_attr
->AssignFrom(*info
.GetAttributes());
909 m_attr
= new wxListItemAttr(*info
.GetAttributes());
917 m_rect
->width
= info
.m_width
;
921 void wxListItemData::SetPosition( int x
, int y
)
923 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
929 void wxListItemData::SetSize( int width
, int height
)
931 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
934 m_rect
->width
= width
;
936 m_rect
->height
= height
;
939 bool wxListItemData::IsHit( int x
, int y
) const
941 wxCHECK_MSG( m_rect
, false, _T("can't be called in this mode") );
943 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Contains(x
, y
);
946 int wxListItemData::GetX() const
948 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
953 int wxListItemData::GetY() const
955 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
960 int wxListItemData::GetWidth() const
962 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
964 return m_rect
->width
;
967 int wxListItemData::GetHeight() const
969 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
971 return m_rect
->height
;
974 void wxListItemData::GetItem( wxListItem
&info
) const
976 long mask
= info
.m_mask
;
978 // by default, get everything for backwards compatibility
981 if ( mask
& wxLIST_MASK_TEXT
)
982 info
.m_text
= m_text
;
983 if ( mask
& wxLIST_MASK_IMAGE
)
984 info
.m_image
= m_image
;
985 if ( mask
& wxLIST_MASK_DATA
)
986 info
.m_data
= m_data
;
990 if ( m_attr
->HasTextColour() )
991 info
.SetTextColour(m_attr
->GetTextColour());
992 if ( m_attr
->HasBackgroundColour() )
993 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
994 if ( m_attr
->HasFont() )
995 info
.SetFont(m_attr
->GetFont());
999 //-----------------------------------------------------------------------------
1001 //-----------------------------------------------------------------------------
1003 void wxListHeaderData::Init()
1015 wxListHeaderData::wxListHeaderData()
1020 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1027 void wxListHeaderData::SetItem( const wxListItem
&item
)
1029 m_mask
= item
.m_mask
;
1031 if ( m_mask
& wxLIST_MASK_TEXT
)
1032 m_text
= item
.m_text
;
1034 if ( m_mask
& wxLIST_MASK_IMAGE
)
1035 m_image
= item
.m_image
;
1037 if ( m_mask
& wxLIST_MASK_FORMAT
)
1038 m_format
= item
.m_format
;
1040 if ( m_mask
& wxLIST_MASK_WIDTH
)
1041 SetWidth(item
.m_width
);
1043 if ( m_mask
& wxLIST_MASK_STATE
)
1044 SetState(item
.m_state
);
1047 void wxListHeaderData::SetPosition( int x
, int y
)
1053 void wxListHeaderData::SetHeight( int h
)
1058 void wxListHeaderData::SetWidth( int w
)
1060 m_width
= w
< 0 ? WIDTH_COL_DEFAULT
: w
;
1063 void wxListHeaderData::SetState( int flag
)
1068 void wxListHeaderData::SetFormat( int format
)
1073 bool wxListHeaderData::HasImage() const
1075 return m_image
!= -1;
1078 bool wxListHeaderData::IsHit( int x
, int y
) const
1080 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1083 void wxListHeaderData::GetItem( wxListItem
& item
)
1085 item
.m_mask
= m_mask
;
1086 item
.m_text
= m_text
;
1087 item
.m_image
= m_image
;
1088 item
.m_format
= m_format
;
1089 item
.m_width
= m_width
;
1090 item
.m_state
= m_state
;
1093 int wxListHeaderData::GetImage() const
1098 int wxListHeaderData::GetWidth() const
1103 int wxListHeaderData::GetFormat() const
1108 int wxListHeaderData::GetState() const
1113 //-----------------------------------------------------------------------------
1115 //-----------------------------------------------------------------------------
1117 inline int wxListLineData::GetMode() const
1119 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1122 inline bool wxListLineData::InReportView() const
1124 return m_owner
->HasFlag(wxLC_REPORT
);
1127 inline bool wxListLineData::IsVirtual() const
1129 return m_owner
->IsVirtual();
1132 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1136 if ( InReportView() )
1139 m_gi
= new GeometryInfo
;
1141 m_highlighted
= false;
1143 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1146 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1148 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1149 wxCHECK_RET( node
, _T("no subitems at all??") );
1151 wxListItemData
*item
= node
->GetData();
1156 switch ( GetMode() )
1159 case wxLC_SMALL_ICON
:
1160 m_gi
->m_rectAll
.width
= spacing
;
1162 s
= item
->GetText();
1167 m_gi
->m_rectLabel
.width
=
1168 m_gi
->m_rectLabel
.height
= 0;
1172 dc
->GetTextExtent( s
, &lw
, &lh
);
1176 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1178 m_gi
->m_rectAll
.width
= lw
;
1180 m_gi
->m_rectLabel
.width
= lw
;
1181 m_gi
->m_rectLabel
.height
= lh
;
1184 if (item
->HasImage())
1187 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1188 m_gi
->m_rectIcon
.width
= w
+ 8;
1189 m_gi
->m_rectIcon
.height
= h
+ 8;
1191 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1192 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1193 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1194 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1197 if ( item
->HasText() )
1199 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1200 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1202 else // no text, highlight the icon
1204 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1205 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1210 s
= item
->GetTextForMeasuring();
1212 dc
->GetTextExtent( s
, &lw
, &lh
);
1216 m_gi
->m_rectLabel
.width
= lw
;
1217 m_gi
->m_rectLabel
.height
= lh
;
1219 m_gi
->m_rectAll
.width
= lw
;
1220 m_gi
->m_rectAll
.height
= lh
;
1222 if (item
->HasImage())
1225 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1226 m_gi
->m_rectIcon
.width
= w
;
1227 m_gi
->m_rectIcon
.height
= h
;
1229 m_gi
->m_rectAll
.width
+= 4 + w
;
1230 if (h
> m_gi
->m_rectAll
.height
)
1231 m_gi
->m_rectAll
.height
= h
;
1234 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1235 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1239 wxFAIL_MSG( _T("unexpected call to SetSize") );
1243 wxFAIL_MSG( _T("unknown mode") );
1248 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
1250 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1251 wxCHECK_RET( node
, _T("no subitems at all??") );
1253 wxListItemData
*item
= node
->GetData();
1255 switch ( GetMode() )
1258 case wxLC_SMALL_ICON
:
1259 m_gi
->m_rectAll
.x
= x
;
1260 m_gi
->m_rectAll
.y
= y
;
1262 if ( item
->HasImage() )
1264 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
1265 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
1266 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1269 if ( item
->HasText() )
1271 if (m_gi
->m_rectAll
.width
> spacing
)
1272 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
1274 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2) + (spacing
/ 2) - (m_gi
->m_rectLabel
.width
/ 2);
1275 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1276 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1277 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1279 else // no text, highlight the icon
1281 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1282 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1287 m_gi
->m_rectAll
.x
= x
;
1288 m_gi
->m_rectAll
.y
= y
;
1290 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1291 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1292 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1294 if (item
->HasImage())
1296 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1297 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1298 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 4 + (EXTRA_WIDTH
/2) + m_gi
->m_rectIcon
.width
;
1302 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ (EXTRA_WIDTH
/2);
1307 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1311 wxFAIL_MSG( _T("unknown mode") );
1316 void wxListLineData::InitItems( int num
)
1318 for (int i
= 0; i
< num
; i
++)
1319 m_items
.Append( new wxListItemData(m_owner
) );
1322 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1324 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1325 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1327 wxListItemData
*item
= node
->GetData();
1328 item
->SetItem( info
);
1331 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1333 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1336 wxListItemData
*item
= node
->GetData();
1337 item
->GetItem( info
);
1341 wxString
wxListLineData::GetText(int index
) const
1345 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1348 wxListItemData
*item
= node
->GetData();
1349 s
= item
->GetText();
1355 void wxListLineData::SetText( int index
, const wxString
& s
)
1357 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1360 wxListItemData
*item
= node
->GetData();
1365 void wxListLineData::SetImage( int index
, int image
)
1367 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1368 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1370 wxListItemData
*item
= node
->GetData();
1371 item
->SetImage(image
);
1374 int wxListLineData::GetImage( int index
) const
1376 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1377 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1379 wxListItemData
*item
= node
->GetData();
1380 return item
->GetImage();
1383 wxListItemAttr
*wxListLineData::GetAttr() const
1385 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1386 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1388 wxListItemData
*item
= node
->GetData();
1389 return item
->GetAttr();
1392 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1394 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1395 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1397 wxListItemData
*item
= node
->GetData();
1398 item
->SetAttr(attr
);
1401 bool wxListLineData::SetAttributes(wxDC
*dc
,
1402 const wxListItemAttr
*attr
,
1405 wxWindow
*listctrl
= m_owner
->GetParent();
1409 // don't use foreground colour for drawing highlighted items - this might
1410 // make them completely invisible (and there is no way to do bit
1411 // arithmetics on wxColour, unfortunately)
1416 if (m_owner
->HasFocus()
1418 && IsControlActive( (ControlRef
)m_owner
->GetHandle() )
1426 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1428 else if ( attr
&& attr
->HasTextColour() )
1429 colText
= attr
->GetTextColour();
1431 colText
= listctrl
->GetForegroundColour();
1433 dc
->SetTextForeground(colText
);
1437 if ( attr
&& attr
->HasFont() )
1438 font
= attr
->GetFont();
1440 font
= listctrl
->GetFont();
1445 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1446 if ( highlighted
|| hasBgCol
)
1449 dc
->SetBrush( *m_owner
->GetHighlightBrush() );
1451 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1453 dc
->SetPen( *wxTRANSPARENT_PEN
);
1461 void wxListLineData::Draw( wxDC
*dc
)
1463 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1464 wxCHECK_RET( node
, _T("no subitems at all??") );
1466 bool highlighted
= IsHighlighted();
1468 wxListItemAttr
*attr
= GetAttr();
1470 if ( SetAttributes(dc
, attr
, highlighted
) )
1471 #if ( !defined(__WXGTK20__) && !defined(__WXMAC__) )
1473 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1479 int flags
= wxCONTROL_SELECTED
;
1480 if (m_owner
->HasFocus()
1482 && IsControlActive( (ControlRef
)m_owner
->GetHandle() )
1485 flags
|= wxCONTROL_FOCUSED
;
1486 wxRendererNative::Get().DrawItemSelectionRect( m_owner
, *dc
, m_gi
->m_rectHighlight
, flags
);
1491 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1496 // just for debugging to better see where the items are
1498 dc
->SetPen(*wxRED_PEN
);
1499 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
1500 dc
->DrawRectangle( m_gi
->m_rectAll
);
1501 dc
->SetPen(*wxGREEN_PEN
);
1502 dc
->DrawRectangle( m_gi
->m_rectIcon
);
1505 wxListItemData
*item
= node
->GetData();
1506 if (item
->HasImage())
1508 // centre the image inside our rectangle, this looks nicer when items
1509 // ae aligned in a row
1510 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
1512 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
1515 if (item
->HasText())
1517 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
1519 wxDCClipper
clipper(*dc
, rectLabel
);
1520 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1524 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1526 const wxRect
& rectHL
,
1529 // TODO: later we should support setting different attributes for
1530 // different columns - to do it, just add "col" argument to
1531 // GetAttr() and move these lines into the loop below
1532 wxListItemAttr
*attr
= GetAttr();
1533 if ( SetAttributes(dc
, attr
, highlighted
) )
1534 #if ( !defined(__WXGTK20__) && !defined(__WXMAC__) )
1536 dc
->DrawRectangle( rectHL
);
1542 int flags
= wxCONTROL_SELECTED
;
1543 if (m_owner
->HasFocus()
1545 && IsControlActive( (ControlRef
)m_owner
->GetHandle() )
1548 flags
|= wxCONTROL_FOCUSED
;
1549 wxRendererNative::Get().DrawItemSelectionRect( m_owner
, *dc
, rectHL
, flags
);
1553 dc
->DrawRectangle( rectHL
);
1558 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1559 yMid
= rect
.y
+ rect
.height
/2;
1561 // This probably needs to be done
1562 // on all platforms as the icons
1563 // otherwise nearly touch the border
1568 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1570 node
= node
->GetNext(), col
++ )
1572 wxListItemData
*item
= node
->GetData();
1574 int width
= m_owner
->GetColumnWidth(col
);
1578 if ( item
->HasImage() )
1581 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1582 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, yMid
- iy
/2 );
1584 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
1590 if ( item
->HasText() )
1591 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, yMid
, width
- 8);
1595 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
1596 const wxString
& textOrig
,
1602 // we don't support displaying multiple lines currently (and neither does
1603 // wxMSW FWIW) so just merge all the lines
1604 wxString
text(textOrig
);
1605 text
.Replace(_T("\n"), _T(" "));
1608 dc
->GetTextExtent(text
, &w
, &h
);
1610 const wxCoord y
= yMid
- (h
+ 1)/2;
1612 wxDCClipper
clipper(*dc
, x
, y
, width
, h
);
1614 // determine if the string can fit inside the current width
1617 // it can, draw it using the items alignment
1619 m_owner
->GetColumn(col
, item
);
1620 switch ( item
.GetAlign() )
1622 case wxLIST_FORMAT_LEFT
:
1626 case wxLIST_FORMAT_RIGHT
:
1630 case wxLIST_FORMAT_CENTER
:
1631 x
+= (width
- w
) / 2;
1635 wxFAIL_MSG( _T("unknown list item format") );
1639 dc
->DrawText(text
, x
, y
);
1641 else // otherwise, truncate and add an ellipsis if possible
1643 // determine the base width
1644 wxString
ellipsis(wxT("..."));
1646 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1648 // continue until we have enough space or only one character left
1650 size_t len
= text
.length();
1651 wxString drawntext
= text
.Left(len
);
1654 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
1655 drawntext
.RemoveLast();
1658 if (w
+ base_w
<= width
)
1662 // if still not enough space, remove ellipsis characters
1663 while (ellipsis
.length() > 0 && w
+ base_w
> width
)
1665 ellipsis
= ellipsis
.Left(ellipsis
.length() - 1);
1666 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1669 // now draw the text
1670 dc
->DrawText(drawntext
, x
, y
);
1671 dc
->DrawText(ellipsis
, x
+ w
, y
);
1675 bool wxListLineData::Highlight( bool on
)
1677 wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") );
1679 if ( on
== m_highlighted
)
1687 void wxListLineData::ReverseHighlight( void )
1689 Highlight(!IsHighlighted());
1692 //-----------------------------------------------------------------------------
1693 // wxListHeaderWindow
1694 //-----------------------------------------------------------------------------
1696 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
)
1698 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1699 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1700 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1701 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1704 void wxListHeaderWindow::Init()
1706 m_currentCursor
= (wxCursor
*) NULL
;
1707 m_isDragging
= false;
1711 wxListHeaderWindow::wxListHeaderWindow()
1715 m_owner
= (wxListMainWindow
*) NULL
;
1716 m_resizeCursor
= (wxCursor
*) NULL
;
1719 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
1721 wxListMainWindow
*owner
,
1725 const wxString
&name
)
1726 : wxWindow( win
, id
, pos
, size
, style
, name
)
1731 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1734 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
1735 SetOwnForegroundColour( attr
.colFg
);
1736 SetOwnBackgroundColour( attr
.colBg
);
1738 SetOwnFont( attr
.font
);
1740 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
1741 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1743 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
1747 wxListHeaderWindow::~wxListHeaderWindow()
1749 delete m_resizeCursor
;
1752 #ifdef __WXUNIVERSAL__
1753 #include "wx/univ/renderer.h"
1754 #include "wx/univ/theme.h"
1757 // shift the DC origin to match the position of the main window horz
1758 // scrollbar: this allows us to always use logical coords
1759 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1762 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1765 m_owner
->GetViewStart( &view_start
, NULL
);
1770 dc
.GetDeviceOrigin( &org_x
, &org_y
);
1772 // account for the horz scrollbar offset
1774 if (GetLayoutDirection() == wxLayout_RightToLeft
)
1776 // Maybe we just have to check for m_signX
1777 // in the DC, but I leave the #ifdef __WXGTK__
1779 dc
.SetDeviceOrigin( org_x
+ (view_start
* xpix
), org_y
);
1783 dc
.SetDeviceOrigin( org_x
- (view_start
* xpix
), org_y
);
1786 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1788 wxPaintDC
dc( this );
1793 dc
.SetFont( GetFont() );
1795 // width and height of the entire header window
1797 GetClientSize( &w
, &h
);
1798 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1800 dc
.SetBackgroundMode(wxTRANSPARENT
);
1801 dc
.SetTextForeground(GetForegroundColour());
1803 int x
= HEADER_OFFSET_X
;
1804 int numColumns
= m_owner
->GetColumnCount();
1806 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1808 m_owner
->GetColumn( i
, item
);
1809 int wCol
= item
.m_width
;
1815 if (!m_parent
->IsEnabled())
1816 flags
|= wxCONTROL_DISABLED
;
1818 // NB: The code below is not really Mac-specific, but since we are close
1819 // to 2.8 release and I don't have time to test on other platforms, I
1820 // defined this only for wxMac. If this behavior is desired on
1821 // other platforms, please go ahead and revise or remove the #ifdef.
1823 if ( !m_owner
->IsVirtual() && (item
.m_mask
& wxLIST_MASK_STATE
) &&
1824 (item
.m_state
& wxLIST_STATE_SELECTED
) )
1825 flags
|= wxCONTROL_SELECTED
;
1828 wxRendererNative::Get().DrawHeaderButton
1832 wxRect(x
, HEADER_OFFSET_Y
, cw
, ch
),
1836 // see if we have enough space for the column label
1838 // for this we need the width of the text
1841 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1842 wLabel
+= 2 * EXTRA_WIDTH
;
1844 // and the width of the icon, if any
1845 int ix
= 0, iy
= 0; // init them just to suppress the compiler warnings
1846 const int image
= item
.m_image
;
1847 wxImageList
*imageList
;
1850 imageList
= m_owner
->m_small_image_list
;
1853 imageList
->GetSize(image
, ix
, iy
);
1854 wLabel
+= ix
+ HEADER_IMAGE_MARGIN_IN_REPORT_MODE
;
1862 // ignore alignment if there is not enough space anyhow
1864 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1867 wxFAIL_MSG( _T("unknown list item format") );
1870 case wxLIST_FORMAT_LEFT
:
1874 case wxLIST_FORMAT_RIGHT
:
1875 xAligned
= x
+ cw
- wLabel
;
1878 case wxLIST_FORMAT_CENTER
:
1879 xAligned
= x
+ (cw
- wLabel
) / 2;
1883 // draw the text and image clipping them so that they
1884 // don't overwrite the column boundary
1885 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1887 // if we have an image, draw it on the right of the label
1894 xAligned
+ wLabel
- ix
- HEADER_IMAGE_MARGIN_IN_REPORT_MODE
,
1895 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1896 wxIMAGELIST_DRAW_TRANSPARENT
1900 dc
.DrawText( item
.GetText(),
1901 xAligned
+ EXTRA_WIDTH
, h
/ 2 - hLabel
/ 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT );
1907 void wxListHeaderWindow::DrawCurrent()
1910 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1912 int x1
= m_currentX
;
1914 m_owner
->ClientToScreen( &x1
, &y1
);
1916 int x2
= m_currentX
;
1918 m_owner
->GetClientSize( NULL
, &y2
);
1919 m_owner
->ClientToScreen( &x2
, &y2
);
1922 dc
.SetLogicalFunction( wxINVERT
);
1923 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1924 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1928 dc
.DrawLine( x1
, y1
, x2
, y2
);
1930 dc
.SetLogicalFunction( wxCOPY
);
1932 dc
.SetPen( wxNullPen
);
1933 dc
.SetBrush( wxNullBrush
);
1937 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1939 // we want to work with logical coords
1941 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1942 int y
= event
.GetY();
1946 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1948 // we don't draw the line beyond our window, but we allow dragging it
1951 GetClientSize( &w
, NULL
);
1952 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1955 // erase the line if it was drawn
1956 if ( m_currentX
< w
)
1959 if (event
.ButtonUp())
1962 m_isDragging
= false;
1964 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1965 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1972 m_currentX
= m_minX
+ 7;
1974 // draw in the new location
1975 if ( m_currentX
< w
)
1979 else // not dragging
1982 bool hit_border
= false;
1984 // end of the current column
1987 // find the column where this event occurred
1989 countCol
= m_owner
->GetColumnCount();
1990 for (col
= 0; col
< countCol
; col
++)
1992 xpos
+= m_owner
->GetColumnWidth( col
);
1995 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1997 // near the column border
2004 // inside the column
2011 if ( col
== countCol
)
2014 if (event
.LeftDown() || event
.RightUp())
2016 if (hit_border
&& event
.LeftDown())
2018 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
2019 event
.GetPosition()) )
2021 m_isDragging
= true;
2026 //else: column resizing was vetoed by the user code
2028 else // click on a column
2030 // record the selected state of the columns
2031 if (event
.LeftDown())
2033 for (int i
=0; i
< m_owner
->GetColumnCount(); i
++)
2036 m_owner
->GetColumn(i
, colItem
);
2037 long state
= colItem
.GetState();
2039 colItem
.SetState(state
| wxLIST_STATE_SELECTED
);
2041 colItem
.SetState(state
& ~wxLIST_STATE_SELECTED
);
2042 m_owner
->SetColumn(i
, colItem
);
2046 SendListEvent( event
.LeftDown()
2047 ? wxEVT_COMMAND_LIST_COL_CLICK
2048 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
2049 event
.GetPosition());
2052 else if (event
.Moving())
2057 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
2058 m_currentCursor
= m_resizeCursor
;
2062 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
2063 m_currentCursor
= wxSTANDARD_CURSOR
;
2067 SetCursor(*m_currentCursor
);
2072 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
2074 m_owner
->SetFocus();
2078 bool wxListHeaderWindow::SendListEvent(wxEventType type
, const wxPoint
& pos
)
2080 wxWindow
*parent
= GetParent();
2081 wxListEvent
le( type
, parent
->GetId() );
2082 le
.SetEventObject( parent
);
2083 le
.m_pointDrag
= pos
;
2085 // the position should be relative to the parent window, not
2086 // this one for compatibility with MSW and common sense: the
2087 // user code doesn't know anything at all about this header
2088 // window, so why should it get positions relative to it?
2089 le
.m_pointDrag
.y
-= GetSize().y
;
2091 le
.m_col
= m_column
;
2092 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
2095 //-----------------------------------------------------------------------------
2096 // wxListRenameTimer (internal)
2097 //-----------------------------------------------------------------------------
2099 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2104 void wxListRenameTimer::Notify()
2106 m_owner
->OnRenameTimer();
2109 //-----------------------------------------------------------------------------
2110 // wxListTextCtrlWrapper (internal)
2111 //-----------------------------------------------------------------------------
2113 BEGIN_EVENT_TABLE(wxListTextCtrlWrapper
, wxEvtHandler
)
2114 EVT_CHAR (wxListTextCtrlWrapper::OnChar
)
2115 EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp
)
2116 EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus
)
2119 wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow
*owner
,
2122 : m_startValue(owner
->GetItemText(itemEdit
)),
2123 m_itemEdited(itemEdit
)
2128 m_aboutToFinish
= false;
2130 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
2132 m_owner
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
2133 &rectLabel
.x
, &rectLabel
.y
);
2135 m_text
->Create(owner
, wxID_ANY
, m_startValue
,
2136 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2137 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
2140 m_text
->PushEventHandler(this);
2143 void wxListTextCtrlWrapper::Finish()
2149 m_text
->RemoveEventHandler(this);
2150 m_owner
->FinishEditing(m_text
);
2152 wxPendingDelete
.Append( this );
2156 bool wxListTextCtrlWrapper::AcceptChanges()
2158 const wxString value
= m_text
->GetValue();
2160 // notice that we should always call OnRenameAccept() to generate the "end
2161 // label editing" event, even if the user hasn't really changed anything
2162 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
2164 // vetoed by the user
2168 // accepted, do rename the item (unless nothing changed)
2169 if ( value
!= m_startValue
)
2170 m_owner
->SetItemText(m_itemEdited
, value
);
2175 void wxListTextCtrlWrapper::AcceptChangesAndFinish()
2177 m_aboutToFinish
= true;
2179 // Notify the owner about the changes
2182 // Even if vetoed, close the control (consistent with MSW)
2186 void wxListTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
2188 switch ( event
.m_keyCode
)
2191 AcceptChangesAndFinish();
2195 m_owner
->OnRenameCancelled( m_itemEdited
);
2204 void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
2212 // auto-grow the textctrl:
2213 wxSize parentSize
= m_owner
->GetSize();
2214 wxPoint myPos
= m_text
->GetPosition();
2215 wxSize mySize
= m_text
->GetSize();
2217 m_text
->GetTextExtent(m_text
->GetValue() + _T("MM"), &sx
, &sy
);
2218 if (myPos
.x
+ sx
> parentSize
.x
)
2219 sx
= parentSize
.x
- myPos
.x
;
2222 m_text
->SetSize(sx
, wxDefaultCoord
);
2227 void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
2229 if ( !m_finished
&& !m_aboutToFinish
)
2231 if ( !AcceptChanges() )
2232 m_owner
->OnRenameCancelled( m_itemEdited
);
2237 // We must let the native text control handle focus
2241 //-----------------------------------------------------------------------------
2243 //-----------------------------------------------------------------------------
2245 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
)
2247 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2248 EVT_PAINT (wxListMainWindow::OnPaint
)
2249 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2250 EVT_CHAR (wxListMainWindow::OnChar
)
2251 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2252 EVT_KEY_UP (wxListMainWindow::OnKeyUp
)
2253 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2254 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2255 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2258 void wxListMainWindow::Init()
2263 m_lineTo
= (size_t)-1;
2269 m_small_image_list
= (wxImageList
*) NULL
;
2270 m_normal_image_list
= (wxImageList
*) NULL
;
2272 m_small_spacing
= 30;
2273 m_normal_spacing
= 40;
2277 m_isCreated
= false;
2279 m_lastOnSame
= false;
2280 m_renameTimer
= new wxListRenameTimer( this );
2281 m_textctrlWrapper
= NULL
;
2285 m_lineSelectSingleOnUp
=
2286 m_lineBeforeLastClicked
= (size_t)-1;
2291 wxListMainWindow::wxListMainWindow()
2296 m_highlightUnfocusedBrush
= (wxBrush
*) NULL
;
2299 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2304 const wxString
&name
)
2305 : wxScrolledWindow( parent
, id
, pos
, size
,
2306 style
| wxHSCROLL
| wxVSCROLL
, name
)
2310 m_highlightBrush
= new wxBrush
2312 wxSystemSettings::GetColour
2314 wxSYS_COLOUR_HIGHLIGHT
2319 m_highlightUnfocusedBrush
= new wxBrush
2321 wxSystemSettings::GetColour
2323 wxSYS_COLOUR_BTNSHADOW
2328 SetScrollbars( 0, 0, 0, 0, 0, 0 );
2330 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
2331 SetOwnForegroundColour( attr
.colFg
);
2332 SetOwnBackgroundColour( attr
.colBg
);
2334 SetOwnFont( attr
.font
);
2337 wxListMainWindow::~wxListMainWindow()
2340 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
2341 WX_CLEAR_ARRAY(m_aColWidths
);
2343 delete m_highlightBrush
;
2344 delete m_highlightUnfocusedBrush
;
2345 delete m_renameTimer
;
2348 void wxListMainWindow::CacheLineData(size_t line
)
2350 wxGenericListCtrl
*listctrl
= GetListCtrl();
2352 wxListLineData
*ld
= GetDummyLine();
2354 size_t countCol
= GetColumnCount();
2355 for ( size_t col
= 0; col
< countCol
; col
++ )
2357 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2358 ld
->SetImage(col
, listctrl
->OnGetItemColumnImage(line
, col
));
2361 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2364 wxListLineData
*wxListMainWindow::GetDummyLine() const
2366 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2367 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2369 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2371 // we need to recreate the dummy line if the number of columns in the
2372 // control changed as it would have the incorrect number of fields
2374 if ( !m_lines
.IsEmpty() &&
2375 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
2377 self
->m_lines
.Clear();
2380 if ( m_lines
.IsEmpty() )
2382 wxListLineData
*line
= new wxListLineData(self
);
2383 self
->m_lines
.Add(line
);
2385 // don't waste extra memory -- there never going to be anything
2386 // else/more in this array
2387 self
->m_lines
.Shrink();
2393 // ----------------------------------------------------------------------------
2394 // line geometry (report mode only)
2395 // ----------------------------------------------------------------------------
2397 wxCoord
wxListMainWindow::GetLineHeight() const
2399 // we cache the line height as calling GetTextExtent() is slow
2400 if ( !m_lineHeight
)
2402 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2404 wxClientDC
dc( self
);
2405 dc
.SetFont( GetFont() );
2408 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2410 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
2413 m_small_image_list
->GetSize(0, iw
, ih
);
2418 self
->m_lineHeight
= y
+ LINE_SPACING
;
2421 return m_lineHeight
;
2424 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2426 wxASSERT_MSG( InReportView(), _T("only works in report mode") );
2428 return LINE_SPACING
+ line
* GetLineHeight();
2431 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2433 if ( !InReportView() )
2434 return GetLine(line
)->m_gi
->m_rectAll
;
2437 rect
.x
= HEADER_OFFSET_X
;
2438 rect
.y
= GetLineY(line
);
2439 rect
.width
= GetHeaderWidth();
2440 rect
.height
= GetLineHeight();
2445 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2447 if ( !InReportView() )
2448 return GetLine(line
)->m_gi
->m_rectLabel
;
2451 wxListLineData
*data
= GetLine(line
);
2452 wxListItemDataList::compatibility_iterator node
= data
->m_items
.GetFirst();
2455 wxListItemData
*item
= node
->GetData();
2456 if ( item
->HasImage() )
2459 GetImageSize( item
->GetImage(), ix
, iy
);
2460 image_x
= 3 + ix
+ IMAGE_MARGIN_IN_REPORT_MODE
;
2465 rect
.x
= HEADER_OFFSET_X
;
2466 rect
.y
= GetLineY(line
);
2467 rect
.width
= GetColumnWidth(0);
2468 rect
.height
= GetLineHeight();
2473 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2475 if ( !InReportView() )
2476 return GetLine(line
)->m_gi
->m_rectIcon
;
2478 wxListLineData
*ld
= GetLine(line
);
2479 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2482 rect
.x
= HEADER_OFFSET_X
;
2483 rect
.y
= GetLineY(line
);
2484 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2489 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2491 return InReportView() ? GetLineRect(line
)
2492 : GetLine(line
)->m_gi
->m_rectHighlight
;
2495 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2497 wxASSERT_MSG( line
< GetItemCount(), _T("invalid line in HitTestLine") );
2499 wxListLineData
*ld
= GetLine(line
);
2501 if ( ld
->HasImage() && GetLineIconRect(line
).Contains(x
, y
) )
2502 return wxLIST_HITTEST_ONITEMICON
;
2504 // VS: Testing for "ld->HasText() || InReportView()" instead of
2505 // "ld->HasText()" is needed to make empty lines in report view
2507 if ( ld
->HasText() || InReportView() )
2509 wxRect rect
= InReportView() ? GetLineRect(line
)
2510 : GetLineLabelRect(line
);
2512 if ( rect
.Contains(x
, y
) )
2513 return wxLIST_HITTEST_ONITEMLABEL
;
2519 // ----------------------------------------------------------------------------
2520 // highlight (selection) handling
2521 // ----------------------------------------------------------------------------
2523 bool wxListMainWindow::IsHighlighted(size_t line
) const
2527 return m_selStore
.IsSelected(line
);
2531 wxListLineData
*ld
= GetLine(line
);
2532 wxCHECK_MSG( ld
, false, _T("invalid index in IsHighlighted") );
2534 return ld
->IsHighlighted();
2538 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2544 wxArrayInt linesChanged
;
2545 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2548 // meny items changed state, refresh everything
2549 RefreshLines(lineFrom
, lineTo
);
2551 else // only a few items changed state, refresh only them
2553 size_t count
= linesChanged
.GetCount();
2554 for ( size_t n
= 0; n
< count
; n
++ )
2556 RefreshLine(linesChanged
[n
]);
2560 else // iterate over all items in non report view
2562 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2564 if ( HighlightLine(line
, highlight
) )
2570 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2576 changed
= m_selStore
.SelectItem(line
, highlight
);
2580 wxListLineData
*ld
= GetLine(line
);
2581 wxCHECK_MSG( ld
, false, _T("invalid index in HighlightLine") );
2583 changed
= ld
->Highlight(highlight
);
2588 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2589 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2595 void wxListMainWindow::RefreshLine( size_t line
)
2597 if ( InReportView() )
2599 size_t visibleFrom
, visibleTo
;
2600 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2602 if ( line
< visibleFrom
|| line
> visibleTo
)
2606 wxRect rect
= GetLineRect(line
);
2608 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2609 RefreshRect( rect
);
2612 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2614 // we suppose that they are ordered by caller
2615 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2617 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2619 if ( InReportView() )
2621 size_t visibleFrom
, visibleTo
;
2622 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2624 if ( lineFrom
< visibleFrom
)
2625 lineFrom
= visibleFrom
;
2626 if ( lineTo
> visibleTo
)
2631 rect
.y
= GetLineY(lineFrom
);
2632 rect
.width
= GetClientSize().x
;
2633 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2635 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2636 RefreshRect( rect
);
2640 // TODO: this should be optimized...
2641 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2648 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2650 if ( InReportView() )
2652 size_t visibleFrom
, visibleTo
;
2653 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2655 if ( lineFrom
< visibleFrom
)
2656 lineFrom
= visibleFrom
;
2657 else if ( lineFrom
> visibleTo
)
2662 rect
.y
= GetLineY(lineFrom
);
2663 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2665 wxSize size
= GetClientSize();
2666 rect
.width
= size
.x
;
2668 // refresh till the bottom of the window
2669 rect
.height
= size
.y
- rect
.y
;
2671 RefreshRect( rect
);
2675 // TODO: how to do it more efficiently?
2680 void wxListMainWindow::RefreshSelected()
2686 if ( InReportView() )
2688 GetVisibleLinesRange(&from
, &to
);
2693 to
= GetItemCount() - 1;
2696 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
2697 RefreshLine(m_current
);
2699 for ( size_t line
= from
; line
<= to
; line
++ )
2701 // NB: the test works as expected even if m_current == -1
2702 if ( line
!= m_current
&& IsHighlighted(line
) )
2707 void wxListMainWindow::Freeze()
2712 void wxListMainWindow::Thaw()
2714 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen list control?") );
2716 if ( --m_freezeCount
== 0 )
2720 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2722 // Note: a wxPaintDC must be constructed even if no drawing is
2723 // done (a Windows requirement).
2724 wxPaintDC
dc( this );
2726 if ( IsEmpty() || m_freezeCount
)
2727 // nothing to draw or not the moment to draw it
2731 // delay the repainting until we calculate all the items positions
2737 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2739 dc
.SetFont( GetFont() );
2741 if ( InReportView() )
2743 int lineHeight
= GetLineHeight();
2745 size_t visibleFrom
, visibleTo
;
2746 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2749 int xOrig
= dc
.LogicalToDeviceX( 0 );
2750 int yOrig
= dc
.LogicalToDeviceY( 0 );
2752 // tell the caller cache to cache the data
2755 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2756 GetParent()->GetId());
2757 evCache
.SetEventObject( GetParent() );
2758 evCache
.m_oldItemIndex
= visibleFrom
;
2759 evCache
.m_itemIndex
= visibleTo
;
2760 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2763 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2765 rectLine
= GetLineRect(line
);
2768 if ( !IsExposed(rectLine
.x
+ xOrig
, rectLine
.y
+ yOrig
,
2769 rectLine
.width
, rectLine
.height
) )
2771 // don't redraw unaffected lines to avoid flicker
2775 GetLine(line
)->DrawInReportMode( &dc
,
2777 GetLineHighlightRect(line
),
2778 IsHighlighted(line
) );
2781 if ( HasFlag(wxLC_HRULES
) )
2783 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2784 wxSize clientSize
= GetClientSize();
2786 size_t i
= visibleFrom
;
2787 if (i
== 0) i
= 1; // Don't draw the first one
2788 for ( ; i
<= visibleTo
; i
++ )
2791 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2792 dc
.DrawLine(0 - dev_x
, i
* lineHeight
,
2793 clientSize
.x
- dev_x
, i
* lineHeight
);
2796 // Draw last horizontal rule
2797 if ( visibleTo
== GetItemCount() - 1 )
2800 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2801 dc
.DrawLine(0 - dev_x
, (m_lineTo
+ 1) * lineHeight
,
2802 clientSize
.x
- dev_x
, (m_lineTo
+ 1) * lineHeight
);
2806 // Draw vertical rules if required
2807 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2809 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2810 wxRect firstItemRect
, lastItemRect
;
2812 GetItemRect(visibleFrom
, firstItemRect
);
2813 GetItemRect(visibleTo
, lastItemRect
);
2814 int x
= firstItemRect
.GetX();
2816 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2818 for (int col
= 0; col
< GetColumnCount(); col
++)
2820 int colWidth
= GetColumnWidth(col
);
2822 int x_pos
= x
- dev_x
;
2823 if (col
< GetColumnCount()-1) x_pos
-= 2;
2824 dc
.DrawLine(x_pos
, firstItemRect
.GetY() - 1 - dev_y
,
2825 x_pos
, lastItemRect
.GetBottom() + 1 - dev_y
);
2831 size_t count
= GetItemCount();
2832 for ( size_t i
= 0; i
< count
; i
++ )
2834 GetLine(i
)->Draw( &dc
);
2839 // Don't draw rect outline under Mac at all.
2844 wxRect
rect( GetLineHighlightRect( m_current
) );
2846 dc
.SetPen( *wxBLACK_PEN
);
2847 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2848 dc
.DrawRectangle( rect
);
2850 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, wxCONTROL_CURRENT
|wxCONTROL_FOCUSED
);
2858 void wxListMainWindow::HighlightAll( bool on
)
2860 if ( IsSingleSel() )
2862 wxASSERT_MSG( !on
, _T("can't do this in a single selection control") );
2864 // we just have one item to turn off
2865 if ( HasCurrent() && IsHighlighted(m_current
) )
2867 HighlightLine(m_current
, false);
2868 RefreshLine(m_current
);
2873 HighlightLines(0, GetItemCount() - 1, on
);
2877 void wxListMainWindow::SendNotify( size_t line
,
2878 wxEventType command
,
2879 const wxPoint
& point
)
2881 wxListEvent
le( command
, GetParent()->GetId() );
2882 le
.SetEventObject( GetParent() );
2884 le
.m_itemIndex
= line
;
2886 // set only for events which have position
2887 if ( point
!= wxDefaultPosition
)
2888 le
.m_pointDrag
= point
;
2890 // don't try to get the line info for virtual list controls: the main
2891 // program has it anyhow and if we did it would result in accessing all
2892 // the lines, even those which are not visible now and this is precisely
2893 // what we're trying to avoid
2896 if ( line
!= (size_t)-1 )
2898 GetLine(line
)->GetItem( 0, le
.m_item
);
2900 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2902 //else: there may be no more such item
2904 GetParent()->GetEventHandler()->ProcessEvent( le
);
2907 void wxListMainWindow::ChangeCurrent(size_t current
)
2909 m_current
= current
;
2911 // as the current item changed, we shouldn't start editing it when the
2912 // "slow click" timer expires as the click happened on another item
2913 if ( m_renameTimer
->IsRunning() )
2914 m_renameTimer
->Stop();
2916 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2919 wxTextCtrl
*wxListMainWindow::EditLabel(long item
, wxClassInfo
* textControlClass
)
2921 wxCHECK_MSG( (item
>= 0) && ((size_t)item
< GetItemCount()), NULL
,
2922 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2924 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
2925 wxT("EditLabel() needs a text control") );
2927 size_t itemEdit
= (size_t)item
;
2929 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2930 le
.SetEventObject( GetParent() );
2931 le
.m_itemIndex
= item
;
2932 wxListLineData
*data
= GetLine(itemEdit
);
2933 wxCHECK_MSG( data
, NULL
, _T("invalid index in EditLabel()") );
2934 data
->GetItem( 0, le
.m_item
);
2936 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2938 // vetoed by user code
2942 // We have to call this here because the label in question might just have
2943 // been added and no screen update taken place.
2948 // Pending events dispatched by wxSafeYield might have changed the item
2950 if ( (size_t)item
>= GetItemCount() )
2954 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
2955 m_textctrlWrapper
= new wxListTextCtrlWrapper(this, text
, item
);
2956 return m_textctrlWrapper
->GetText();
2959 void wxListMainWindow::OnRenameTimer()
2961 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2963 EditLabel( m_current
);
2966 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2968 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2969 le
.SetEventObject( GetParent() );
2970 le
.m_itemIndex
= itemEdit
;
2972 wxListLineData
*data
= GetLine(itemEdit
);
2974 wxCHECK_MSG( data
, false, _T("invalid index in OnRenameAccept()") );
2976 data
->GetItem( 0, le
.m_item
);
2977 le
.m_item
.m_text
= value
;
2978 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2982 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2984 // let owner know that the edit was cancelled
2985 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2987 le
.SetEditCanceled(true);
2989 le
.SetEventObject( GetParent() );
2990 le
.m_itemIndex
= itemEdit
;
2992 wxListLineData
*data
= GetLine(itemEdit
);
2993 wxCHECK_RET( data
, _T("invalid index in OnRenameCancelled()") );
2995 data
->GetItem( 0, le
.m_item
);
2996 GetEventHandler()->ProcessEvent( le
);
2999 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
3003 // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly
3004 // shutdown the edit control when the mouse is clicked elsewhere on the
3005 // listctrl because the order of events is different (or something like
3006 // that), so explicitly end the edit if it is active.
3007 if ( event
.LeftDown() && m_textctrlWrapper
)
3008 m_textctrlWrapper
->AcceptChangesAndFinish();
3011 if ( event
.LeftDown() )
3014 event
.SetEventObject( GetParent() );
3015 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3018 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
3020 // let the base handle mouse wheel events.
3025 if ( !HasCurrent() || IsEmpty() )
3027 if (event
.RightDown())
3029 SendNotify( (size_t)-1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
3030 // Allow generation of context menu event
3039 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
3040 event
.ButtonDClick()) )
3043 int x
= event
.GetX();
3044 int y
= event
.GetY();
3045 CalcUnscrolledPosition( x
, y
, &x
, &y
);
3047 // where did we hit it (if we did)?
3050 size_t count
= GetItemCount(),
3053 if ( InReportView() )
3055 current
= y
/ GetLineHeight();
3056 if ( current
< count
)
3057 hitResult
= HitTestLine(current
, x
, y
);
3061 // TODO: optimize it too! this is less simple than for report view but
3062 // enumerating all items is still not a way to do it!!
3063 for ( current
= 0; current
< count
; current
++ )
3065 hitResult
= HitTestLine(current
, x
, y
);
3071 if (event
.Dragging())
3073 if (m_dragCount
== 0)
3075 // we have to report the raw, physical coords as we want to be
3076 // able to call HitTest(event.m_pointDrag) from the user code to
3077 // get the item being dragged
3078 m_dragStart
= event
.GetPosition();
3083 if (m_dragCount
!= 3)
3086 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
3087 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
3089 wxListEvent
le( command
, GetParent()->GetId() );
3090 le
.SetEventObject( GetParent() );
3091 le
.m_itemIndex
= m_lineLastClicked
;
3092 le
.m_pointDrag
= m_dragStart
;
3093 GetParent()->GetEventHandler()->ProcessEvent( le
);
3104 // outside of any item
3105 if (event
.RightDown())
3107 SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
3108 // Allow generation of context menu event
3113 // reset the selection and bail out
3114 HighlightAll(false);
3120 bool forceClick
= false;
3121 if (event
.ButtonDClick())
3123 if ( m_renameTimer
->IsRunning() )
3124 m_renameTimer
->Stop();
3126 m_lastOnSame
= false;
3128 if ( current
== m_lineLastClicked
)
3130 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3136 // The first click was on another item, so don't interpret this as
3137 // a double click, but as a simple click instead
3144 if (m_lineSelectSingleOnUp
!= (size_t)-1)
3146 // select single line
3147 HighlightAll( false );
3148 ReverseHighlight(m_lineSelectSingleOnUp
);
3153 if ((current
== m_current
) &&
3154 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
3155 HasFlag(wxLC_EDIT_LABELS
) )
3159 wxRect label
= GetLineLabelRect( current
);
3160 if (label
.Contains( x
, y
))
3161 m_renameTimer
->Start( 250, true );
3165 m_renameTimer
->Start( 250, true );
3169 m_lastOnSame
= false;
3170 m_lineSelectSingleOnUp
= (size_t)-1;
3174 // This is necessary, because after a DnD operation in
3175 // from and to ourself, the up event is swallowed by the
3176 // DnD code. So on next non-up event (which means here and
3177 // now) m_lineSelectSingleOnUp should be reset.
3178 m_lineSelectSingleOnUp
= (size_t)-1;
3180 if (event
.RightDown())
3182 m_lineBeforeLastClicked
= m_lineLastClicked
;
3183 m_lineLastClicked
= current
;
3185 // If the item is already selected, do not update the selection.
3186 // Multi-selections should not be cleared if a selected item is clicked.
3187 if (!IsHighlighted(current
))
3189 HighlightAll(false);
3190 ChangeCurrent(current
);
3191 ReverseHighlight(m_current
);
3194 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition() );
3196 // Allow generation of context menu event
3199 else if (event
.MiddleDown())
3201 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
3203 else if ( event
.LeftDown() || forceClick
)
3205 m_lineBeforeLastClicked
= m_lineLastClicked
;
3206 m_lineLastClicked
= current
;
3208 size_t oldCurrent
= m_current
;
3209 bool oldWasSelected
= IsHighlighted(m_current
);
3211 bool cmdModifierDown
= event
.CmdDown();
3212 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
3214 if ( IsSingleSel() || !IsHighlighted(current
) )
3216 HighlightAll( false );
3218 ChangeCurrent(current
);
3220 ReverseHighlight(m_current
);
3222 else // multi sel & current is highlighted & no mod keys
3224 m_lineSelectSingleOnUp
= current
;
3225 ChangeCurrent(current
); // change focus
3228 else // multi sel & either ctrl or shift is down
3230 if (cmdModifierDown
)
3232 ChangeCurrent(current
);
3234 ReverseHighlight(m_current
);
3236 else if (event
.ShiftDown())
3238 ChangeCurrent(current
);
3240 size_t lineFrom
= oldCurrent
,
3243 if ( lineTo
< lineFrom
)
3246 lineFrom
= m_current
;
3249 HighlightLines(lineFrom
, lineTo
);
3251 else // !ctrl, !shift
3253 // test in the enclosing if should make it impossible
3254 wxFAIL_MSG( _T("how did we get here?") );
3258 if (m_current
!= oldCurrent
)
3259 RefreshLine( oldCurrent
);
3261 // forceClick is only set if the previous click was on another item
3262 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
) && oldWasSelected
;
3266 void wxListMainWindow::MoveToItem(size_t item
)
3268 if ( item
== (size_t)-1 )
3271 wxRect rect
= GetLineRect(item
);
3273 int client_w
, client_h
;
3274 GetClientSize( &client_w
, &client_h
);
3276 const int hLine
= GetLineHeight();
3278 int view_x
= SCROLL_UNIT_X
* GetScrollPos( wxHORIZONTAL
);
3279 int view_y
= hLine
* GetScrollPos( wxVERTICAL
);
3281 if ( InReportView() )
3283 // the next we need the range of lines shown it might be different,
3284 // so recalculate it
3285 ResetVisibleLinesRange();
3287 if (rect
.y
< view_y
)
3288 Scroll( -1, rect
.y
/ hLine
);
3289 if (rect
.y
+ rect
.height
+ 5 > view_y
+ client_h
)
3290 Scroll( -1, (rect
.y
+ rect
.height
- client_h
+ hLine
) / hLine
);
3294 if (rect
.x
-view_x
< 5)
3295 Scroll( (rect
.x
- 5) / SCROLL_UNIT_X
, -1 );
3296 if (rect
.x
+ rect
.width
- 5 > view_x
+ client_w
)
3297 Scroll( (rect
.x
+ rect
.width
- client_w
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
, -1 );
3301 // ----------------------------------------------------------------------------
3302 // keyboard handling
3303 // ----------------------------------------------------------------------------
3305 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
3307 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
3308 _T("invalid item index in OnArrowChar()") );
3310 size_t oldCurrent
= m_current
;
3312 // in single selection we just ignore Shift as we can't select several
3314 if ( event
.ShiftDown() && !IsSingleSel() )
3316 ChangeCurrent(newCurrent
);
3318 // refresh the old focus to remove it
3319 RefreshLine( oldCurrent
);
3321 // select all the items between the old and the new one
3322 if ( oldCurrent
> newCurrent
)
3324 newCurrent
= oldCurrent
;
3325 oldCurrent
= m_current
;
3328 HighlightLines(oldCurrent
, newCurrent
);
3332 // all previously selected items are unselected unless ctrl is held
3333 // in a multiselection control
3334 if ( !event
.ControlDown() || IsSingleSel() )
3335 HighlightAll(false);
3337 ChangeCurrent(newCurrent
);
3339 // refresh the old focus to remove it
3340 RefreshLine( oldCurrent
);
3342 // in single selection mode we must always have a selected item
3343 if ( !event
.ControlDown() || IsSingleSel() )
3344 HighlightLine( m_current
, true );
3347 RefreshLine( m_current
);
3352 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3354 wxWindow
*parent
= GetParent();
3356 // propagate the key event upwards
3357 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3358 ke
.m_shiftDown
= event
.m_shiftDown
;
3359 ke
.m_controlDown
= event
.m_controlDown
;
3360 ke
.m_altDown
= event
.m_altDown
;
3361 ke
.m_metaDown
= event
.m_metaDown
;
3362 ke
.m_keyCode
= event
.m_keyCode
;
3365 ke
.SetEventObject( parent
);
3366 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3371 void wxListMainWindow::OnKeyUp( wxKeyEvent
&event
)
3373 wxWindow
*parent
= GetParent();
3375 // propagate the key event upwards
3376 wxKeyEvent
ke( wxEVT_KEY_UP
);
3377 ke
.m_shiftDown
= event
.m_shiftDown
;
3378 ke
.m_controlDown
= event
.m_controlDown
;
3379 ke
.m_altDown
= event
.m_altDown
;
3380 ke
.m_metaDown
= event
.m_metaDown
;
3381 ke
.m_keyCode
= event
.m_keyCode
;
3384 ke
.SetEventObject( parent
);
3385 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3390 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3392 wxWindow
*parent
= GetParent();
3394 // send a list_key event up
3397 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3398 le
.m_itemIndex
= m_current
;
3399 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3400 le
.m_code
= event
.GetKeyCode();
3401 le
.SetEventObject( parent
);
3402 parent
->GetEventHandler()->ProcessEvent( le
);
3405 // propagate the char event upwards
3406 wxKeyEvent
ke( wxEVT_CHAR
);
3407 ke
.m_shiftDown
= event
.m_shiftDown
;
3408 ke
.m_controlDown
= event
.m_controlDown
;
3409 ke
.m_altDown
= event
.m_altDown
;
3410 ke
.m_metaDown
= event
.m_metaDown
;
3411 ke
.m_keyCode
= event
.m_keyCode
;
3414 ke
.SetEventObject( parent
);
3415 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3417 if (event
.GetKeyCode() == WXK_TAB
)
3419 wxNavigationKeyEvent nevent
;
3420 nevent
.SetWindowChange( event
.ControlDown() );
3421 nevent
.SetDirection( !event
.ShiftDown() );
3422 nevent
.SetEventObject( GetParent()->GetParent() );
3423 nevent
.SetCurrentFocus( m_parent
);
3424 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
3428 // no item -> nothing to do
3435 // don't use m_linesPerPage directly as it might not be computed yet
3436 const int pageSize
= GetCountPerPage();
3437 wxCHECK_RET( pageSize
, _T("should have non zero page size") );
3439 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3441 if (event
.GetKeyCode() == WXK_RIGHT
)
3442 event
.m_keyCode
= WXK_LEFT
;
3443 else if (event
.GetKeyCode() == WXK_LEFT
)
3444 event
.m_keyCode
= WXK_RIGHT
;
3447 switch ( event
.GetKeyCode() )
3450 if ( m_current
> 0 )
3451 OnArrowChar( m_current
- 1, event
);
3455 if ( m_current
< (size_t)GetItemCount() - 1 )
3456 OnArrowChar( m_current
+ 1, event
);
3461 OnArrowChar( GetItemCount() - 1, event
);
3466 OnArrowChar( 0, event
);
3471 int steps
= InReportView() ? pageSize
- 1
3472 : m_current
% pageSize
;
3474 int index
= m_current
- steps
;
3478 OnArrowChar( index
, event
);
3484 int steps
= InReportView()
3486 : pageSize
- (m_current
% pageSize
) - 1;
3488 size_t index
= m_current
+ steps
;
3489 size_t count
= GetItemCount();
3490 if ( index
>= count
)
3493 OnArrowChar( index
, event
);
3498 if ( !InReportView() )
3500 int index
= m_current
- pageSize
;
3504 OnArrowChar( index
, event
);
3509 if ( !InReportView() )
3511 size_t index
= m_current
+ pageSize
;
3513 size_t count
= GetItemCount();
3514 if ( index
>= count
)
3517 OnArrowChar( index
, event
);
3522 if ( IsSingleSel() )
3524 if ( event
.ControlDown() )
3526 ReverseHighlight(m_current
);
3528 else // normal space press
3530 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3533 else // multiple selection
3535 ReverseHighlight(m_current
);
3541 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3549 // ----------------------------------------------------------------------------
3551 // ----------------------------------------------------------------------------
3553 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3557 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3558 event
.SetEventObject( GetParent() );
3559 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3563 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3564 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3565 // which are already drawn correctly resulting in horrible flicker - avoid
3575 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3579 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
3580 event
.SetEventObject( GetParent() );
3581 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3589 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3591 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3593 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3595 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3597 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3599 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3601 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3603 else if ( InReportView() && (m_small_image_list
))
3605 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3609 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3611 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3613 m_normal_image_list
->GetSize( index
, width
, height
);
3615 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3617 m_small_image_list
->GetSize( index
, width
, height
);
3619 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3621 m_small_image_list
->GetSize( index
, width
, height
);
3623 else if ( InReportView() && m_small_image_list
)
3625 m_small_image_list
->GetSize( index
, width
, height
);
3634 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3636 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3637 dc
.SetFont( GetFont() );
3640 dc
.GetTextExtent( s
, &lw
, NULL
);
3642 return lw
+ AUTOSIZE_COL_MARGIN
;
3645 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
3649 // calc the spacing from the icon size
3650 int width
= 0, height
= 0;
3652 if ((imageList
) && (imageList
->GetImageCount()) )
3653 imageList
->GetSize(0, width
, height
);
3655 if (which
== wxIMAGE_LIST_NORMAL
)
3657 m_normal_image_list
= imageList
;
3658 m_normal_spacing
= width
+ 8;
3661 if (which
== wxIMAGE_LIST_SMALL
)
3663 m_small_image_list
= imageList
;
3664 m_small_spacing
= width
+ 14;
3665 m_lineHeight
= 0; // ensure that the line height will be recalc'd
3669 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3673 m_small_spacing
= spacing
;
3675 m_normal_spacing
= spacing
;
3678 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3680 return isSmall
? m_small_spacing
: m_normal_spacing
;
3683 // ----------------------------------------------------------------------------
3685 // ----------------------------------------------------------------------------
3687 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3689 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3691 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3693 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3694 item
.m_width
= GetTextLength( item
.m_text
);
3696 wxListHeaderData
*column
= node
->GetData();
3697 column
->SetItem( item
);
3699 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3701 headerWin
->m_dirty
= true;
3705 // invalidate it as it has to be recalculated
3709 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3711 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3712 _T("invalid column index") );
3714 wxCHECK_RET( InReportView(),
3715 _T("SetColumnWidth() can only be called in report mode.") );
3718 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3720 headerWin
->m_dirty
= true;
3722 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3723 wxCHECK_RET( node
, _T("no column?") );
3725 wxListHeaderData
*column
= node
->GetData();
3727 size_t count
= GetItemCount();
3729 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3731 width
= GetTextLength(column
->GetText());
3732 width
+= 2*EXTRA_WIDTH
;
3734 // check for column header's image availability
3735 const int image
= column
->GetImage();
3738 if ( m_small_image_list
)
3741 m_small_image_list
->GetSize(image
, ix
, iy
);
3742 width
+= ix
+ HEADER_IMAGE_MARGIN_IN_REPORT_MODE
;
3746 else if ( width
== wxLIST_AUTOSIZE
)
3750 // TODO: determine the max width somehow...
3751 width
= WIDTH_COL_DEFAULT
;
3755 wxClientDC
dc(this);
3756 dc
.SetFont( GetFont() );
3758 int max
= AUTOSIZE_COL_MARGIN
;
3760 // if the cached column width isn't valid then recalculate it
3761 if (m_aColWidths
.Item(col
)->bNeedsUpdate
)
3763 for (size_t i
= 0; i
< count
; i
++)
3765 wxListLineData
*line
= GetLine( i
);
3766 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3768 wxCHECK_RET( n
, _T("no subitem?") );
3770 wxListItemData
*itemData
= n
->GetData();
3773 itemData
->GetItem(item
);
3774 int itemWidth
= GetItemWidthWithImage(&item
);
3775 if (itemWidth
> max
)
3779 m_aColWidths
.Item(col
)->bNeedsUpdate
= false;
3780 m_aColWidths
.Item(col
)->nMaxWidth
= max
;
3783 max
= m_aColWidths
.Item(col
)->nMaxWidth
;
3784 width
= max
+ AUTOSIZE_COL_MARGIN
;
3788 column
->SetWidth( width
);
3790 // invalidate it as it has to be recalculated
3794 int wxListMainWindow::GetHeaderWidth() const
3796 if ( !m_headerWidth
)
3798 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3800 size_t count
= GetColumnCount();
3801 for ( size_t col
= 0; col
< count
; col
++ )
3803 self
->m_headerWidth
+= GetColumnWidth(col
);
3807 return m_headerWidth
;
3810 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3812 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3813 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3815 wxListHeaderData
*column
= node
->GetData();
3816 column
->GetItem( item
);
3819 int wxListMainWindow::GetColumnWidth( int col
) const
3821 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3822 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3824 wxListHeaderData
*column
= node
->GetData();
3825 return column
->GetWidth();
3828 // ----------------------------------------------------------------------------
3830 // ----------------------------------------------------------------------------
3832 void wxListMainWindow::SetItem( wxListItem
&item
)
3834 long id
= item
.m_itemId
;
3835 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3836 _T("invalid item index in SetItem") );
3840 wxListLineData
*line
= GetLine((size_t)id
);
3841 line
->SetItem( item
.m_col
, item
);
3843 // Set item state if user wants
3844 if ( item
.m_mask
& wxLIST_MASK_STATE
)
3845 SetItemState( item
.m_itemId
, item
.m_state
, item
.m_state
);
3849 // update the Max Width Cache if needed
3850 int width
= GetItemWidthWithImage(&item
);
3852 if (width
> m_aColWidths
.Item(item
.m_col
)->nMaxWidth
)
3853 m_aColWidths
.Item(item
.m_col
)->nMaxWidth
= width
;
3857 // update the item on screen
3859 GetItemRect(id
, rectItem
);
3860 RefreshRect(rectItem
);
3863 void wxListMainWindow::SetItemStateAll(long state
, long stateMask
)
3868 // first deal with selection
3869 if ( stateMask
& wxLIST_STATE_SELECTED
)
3871 // set/clear select state
3874 // optimized version for virtual listctrl.
3875 m_selStore
.SelectRange(0, GetItemCount() - 1, state
== wxLIST_STATE_SELECTED
);
3878 else if ( state
& wxLIST_STATE_SELECTED
)
3880 const long count
= GetItemCount();
3881 for( long i
= 0; i
< count
; i
++ )
3883 SetItemState( i
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
3889 // clear for non virtual (somewhat optimized by using GetNextItem())
3891 while ( (i
= GetNextItem(i
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
)) != -1 )
3893 SetItemState( i
, 0, wxLIST_STATE_SELECTED
);
3898 if ( HasCurrent() && (state
== 0) && (stateMask
& wxLIST_STATE_FOCUSED
) )
3900 // unfocus all: only one item can be focussed, so clearing focus for
3901 // all items is simply clearing focus of the focussed item.
3902 SetItemState(m_current
, state
, stateMask
);
3904 //(setting focus to all items makes no sense, so it is not handled here.)
3907 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3911 SetItemStateAll(state
, stateMask
);
3915 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3916 _T("invalid list ctrl item index in SetItem") );
3918 size_t oldCurrent
= m_current
;
3919 size_t item
= (size_t)litem
; // safe because of the check above
3921 // do we need to change the focus?
3922 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3924 if ( state
& wxLIST_STATE_FOCUSED
)
3926 // don't do anything if this item is already focused
3927 if ( item
!= m_current
)
3929 ChangeCurrent(item
);
3931 if ( oldCurrent
!= (size_t)-1 )
3933 if ( IsSingleSel() )
3935 HighlightLine(oldCurrent
, false);
3938 RefreshLine(oldCurrent
);
3941 RefreshLine( m_current
);
3946 // don't do anything if this item is not focused
3947 if ( item
== m_current
)
3951 if ( IsSingleSel() )
3953 // we must unselect the old current item as well or we
3954 // might end up with more than one selected item in a
3955 // single selection control
3956 HighlightLine(oldCurrent
, false);
3959 RefreshLine( oldCurrent
);
3964 // do we need to change the selection state?
3965 if ( stateMask
& wxLIST_STATE_SELECTED
)
3967 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3969 if ( IsSingleSel() )
3973 // selecting the item also makes it the focused one in the
3975 if ( m_current
!= item
)
3977 ChangeCurrent(item
);
3979 if ( oldCurrent
!= (size_t)-1 )
3981 HighlightLine( oldCurrent
, false );
3982 RefreshLine( oldCurrent
);
3988 // only the current item may be selected anyhow
3989 if ( item
!= m_current
)
3994 if ( HighlightLine(item
, on
) )
4001 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
4003 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
4004 _T("invalid list ctrl item index in GetItemState()") );
4006 int ret
= wxLIST_STATE_DONTCARE
;
4008 if ( stateMask
& wxLIST_STATE_FOCUSED
)
4010 if ( (size_t)item
== m_current
)
4011 ret
|= wxLIST_STATE_FOCUSED
;
4014 if ( stateMask
& wxLIST_STATE_SELECTED
)
4016 if ( IsHighlighted(item
) )
4017 ret
|= wxLIST_STATE_SELECTED
;
4023 void wxListMainWindow::GetItem( wxListItem
&item
) const
4025 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
4026 _T("invalid item index in GetItem") );
4028 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
4029 line
->GetItem( item
.m_col
, item
);
4031 // Get item state if user wants it
4032 if ( item
.m_mask
& wxLIST_MASK_STATE
)
4033 item
.m_state
= GetItemState( item
.m_itemId
, wxLIST_STATE_SELECTED
|
4034 wxLIST_STATE_FOCUSED
);
4037 // ----------------------------------------------------------------------------
4039 // ----------------------------------------------------------------------------
4041 size_t wxListMainWindow::GetItemCount() const
4043 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
4046 void wxListMainWindow::SetItemCount(long count
)
4048 m_selStore
.SetItemCount(count
);
4049 m_countVirt
= count
;
4051 ResetVisibleLinesRange();
4053 // scrollbars must be reset
4057 int wxListMainWindow::GetSelectedItemCount() const
4059 // deal with the quick case first
4060 if ( IsSingleSel() )
4061 return HasCurrent() ? IsHighlighted(m_current
) : false;
4063 // virtual controls remmebers all its selections itself
4065 return m_selStore
.GetSelectedCount();
4067 // TODO: we probably should maintain the number of items selected even for
4068 // non virtual controls as enumerating all lines is really slow...
4069 size_t countSel
= 0;
4070 size_t count
= GetItemCount();
4071 for ( size_t line
= 0; line
< count
; line
++ )
4073 if ( GetLine(line
)->IsHighlighted() )
4080 // ----------------------------------------------------------------------------
4081 // item position/size
4082 // ----------------------------------------------------------------------------
4084 wxRect
wxListMainWindow::GetViewRect() const
4086 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
4087 _T("wxListCtrl::GetViewRect() only works in icon mode") );
4089 // we need to find the longest/tallest label
4090 wxCoord xMax
= 0, yMax
= 0;
4091 const int count
= GetItemCount();
4094 for ( int i
= 0; i
< count
; i
++ )
4099 wxCoord x
= r
.GetRight(),
4109 // some fudge needed to make it look prettier
4110 xMax
+= 2 * EXTRA_BORDER_X
;
4111 yMax
+= 2 * EXTRA_BORDER_Y
;
4113 // account for the scrollbars if necessary
4114 const wxSize sizeAll
= GetClientSize();
4115 if ( xMax
> sizeAll
.x
)
4116 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
4117 if ( yMax
> sizeAll
.y
)
4118 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
4120 return wxRect(0, 0, xMax
, yMax
);
4123 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
) const
4125 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4126 _T("invalid index in GetItemRect") );
4128 // ensure that we're laid out, otherwise we could return nonsense
4131 wxConstCast(this, wxListMainWindow
)->
4132 RecalculatePositions(true /* no refresh */);
4135 rect
= GetLineRect((size_t)index
);
4137 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
4140 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
4143 GetItemRect(item
, rect
);
4151 // ----------------------------------------------------------------------------
4152 // geometry calculation
4153 // ----------------------------------------------------------------------------
4155 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
4157 const int lineHeight
= GetLineHeight();
4159 wxClientDC
dc( this );
4160 dc
.SetFont( GetFont() );
4162 const size_t count
= GetItemCount();
4165 if ( HasFlag(wxLC_ICON
) )
4166 iconSpacing
= m_normal_spacing
;
4167 else if ( HasFlag(wxLC_SMALL_ICON
) )
4168 iconSpacing
= m_small_spacing
;
4172 // Note that we do not call GetClientSize() here but
4173 // GetSize() and subtract the border size for sunken
4174 // borders manually. This is technically incorrect,
4175 // but we need to know the client area's size WITHOUT
4176 // scrollbars here. Since we don't know if there are
4177 // any scrollbars, we use GetSize() instead. Another
4178 // solution would be to call SetScrollbars() here to
4179 // remove the scrollbars and call GetClientSize() then,
4180 // but this might result in flicker and - worse - will
4181 // reset the scrollbars to 0 which is not good at all
4182 // if you resize a dialog/window, but don't want to
4183 // reset the window scrolling. RR.
4184 // Furthermore, we actually do NOT subtract the border
4185 // width as 2 pixels is just the extra space which we
4186 // need around the actual content in the window. Other-
4187 // wise the text would e.g. touch the upper border. RR.
4190 GetSize( &clientWidth
, &clientHeight
);
4192 if ( InReportView() )
4194 // all lines have the same height and we scroll one line per step
4195 int entireHeight
= count
* lineHeight
+ LINE_SPACING
;
4197 m_linesPerPage
= clientHeight
/ lineHeight
;
4199 ResetVisibleLinesRange();
4201 SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
4202 GetHeaderWidth() / SCROLL_UNIT_X
,
4203 (entireHeight
+ lineHeight
- 1) / lineHeight
,
4204 GetScrollPos(wxHORIZONTAL
),
4205 GetScrollPos(wxVERTICAL
),
4210 // we have 3 different layout strategies: either layout all items
4211 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
4212 // to arrange them in top to bottom, left to right (don't ask me why
4213 // not the other way round...) order
4214 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
4216 int x
= EXTRA_BORDER_X
;
4217 int y
= EXTRA_BORDER_Y
;
4219 wxCoord widthMax
= 0;
4222 for ( i
= 0; i
< count
; i
++ )
4224 wxListLineData
*line
= GetLine(i
);
4225 line
->CalculateSize( &dc
, iconSpacing
);
4226 line
->SetPosition( x
, y
, iconSpacing
);
4228 wxSize sizeLine
= GetLineSize(i
);
4230 if ( HasFlag(wxLC_ALIGN_TOP
) )
4232 if ( sizeLine
.x
> widthMax
)
4233 widthMax
= sizeLine
.x
;
4237 else // wxLC_ALIGN_LEFT
4239 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
4243 if ( HasFlag(wxLC_ALIGN_TOP
) )
4245 // traverse the items again and tweak their sizes so that they are
4246 // all the same in a row
4247 for ( i
= 0; i
< count
; i
++ )
4249 wxListLineData
*line
= GetLine(i
);
4250 line
->m_gi
->ExtendWidth(widthMax
);
4258 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4259 (y
+ lineHeight
) / lineHeight
,
4260 GetScrollPos( wxHORIZONTAL
),
4261 GetScrollPos( wxVERTICAL
),
4265 else // "flowed" arrangement, the most complicated case
4267 // at first we try without any scrollbars, if the items don't fit into
4268 // the window, we recalculate after subtracting the space taken by the
4271 int entireWidth
= 0;
4273 for (int tries
= 0; tries
< 2; tries
++)
4275 entireWidth
= 2 * EXTRA_BORDER_X
;
4279 // Now we have decided that the items do not fit into the
4280 // client area, so we need a scrollbar
4281 entireWidth
+= SCROLL_UNIT_X
;
4284 int x
= EXTRA_BORDER_X
;
4285 int y
= EXTRA_BORDER_Y
;
4286 int maxWidthInThisRow
= 0;
4289 int currentlyVisibleLines
= 0;
4291 for (size_t i
= 0; i
< count
; i
++)
4293 currentlyVisibleLines
++;
4294 wxListLineData
*line
= GetLine( i
);
4295 line
->CalculateSize( &dc
, iconSpacing
);
4296 line
->SetPosition( x
, y
, iconSpacing
);
4298 wxSize sizeLine
= GetLineSize( i
);
4300 if ( maxWidthInThisRow
< sizeLine
.x
)
4301 maxWidthInThisRow
= sizeLine
.x
;
4304 if (currentlyVisibleLines
> m_linesPerPage
)
4305 m_linesPerPage
= currentlyVisibleLines
;
4307 if ( y
+ sizeLine
.y
>= clientHeight
)
4309 currentlyVisibleLines
= 0;
4311 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
4312 x
+= maxWidthInThisRow
;
4313 entireWidth
+= maxWidthInThisRow
;
4314 maxWidthInThisRow
= 0;
4317 // We have reached the last item.
4318 if ( i
== count
- 1 )
4319 entireWidth
+= maxWidthInThisRow
;
4321 if ( (tries
== 0) &&
4322 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
4324 clientHeight
-= wxSystemSettings::
4325 GetMetric(wxSYS_HSCROLL_Y
);
4330 if ( i
== count
- 1 )
4331 tries
= 1; // Everything fits, no second try required.
4339 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4341 GetScrollPos( wxHORIZONTAL
),
4350 // FIXME: why should we call it from here?
4357 void wxListMainWindow::RefreshAll()
4362 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
4363 if ( headerWin
&& headerWin
->m_dirty
)
4365 headerWin
->m_dirty
= false;
4366 headerWin
->Refresh();
4370 void wxListMainWindow::UpdateCurrent()
4372 if ( !HasCurrent() && !IsEmpty() )
4376 long wxListMainWindow::GetNextItem( long item
,
4377 int WXUNUSED(geometry
),
4381 max
= GetItemCount();
4382 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
4383 _T("invalid listctrl index in GetNextItem()") );
4385 // notice that we start with the next item (or the first one if item == -1)
4386 // and this is intentional to allow writing a simple loop to iterate over
4387 // all selected items
4390 // this is not an error because the index was OK initially,
4391 // just no such item
4398 size_t count
= GetItemCount();
4399 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
4401 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
4404 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
4411 // ----------------------------------------------------------------------------
4413 // ----------------------------------------------------------------------------
4415 void wxListMainWindow::DeleteItem( long lindex
)
4417 size_t count
= GetItemCount();
4419 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
4420 _T("invalid item index in DeleteItem") );
4422 size_t index
= (size_t)lindex
;
4424 // we don't need to adjust the index for the previous items
4425 if ( HasCurrent() && m_current
>= index
)
4427 // if the current item is being deleted, we want the next one to
4428 // become selected - unless there is no next one - so don't adjust
4429 // m_current in this case
4430 if ( m_current
!= index
|| m_current
== count
- 1 )
4434 if ( InReportView() )
4436 // mark the Column Max Width cache as dirty if the items in the line
4437 // we're deleting contain the Max Column Width
4438 wxListLineData
* const line
= GetLine(index
);
4439 wxListItemDataList::compatibility_iterator n
;
4440 wxListItemData
*itemData
;
4444 for (size_t i
= 0; i
< m_columns
.GetCount(); i
++)
4446 n
= line
->m_items
.Item( i
);
4447 itemData
= n
->GetData();
4448 itemData
->GetItem(item
);
4450 itemWidth
= GetItemWidthWithImage(&item
);
4452 if (itemWidth
>= m_aColWidths
.Item(i
)->nMaxWidth
)
4453 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4456 ResetVisibleLinesRange();
4459 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
, wxDefaultPosition
);
4464 m_selStore
.OnItemDelete(index
);
4468 m_lines
.RemoveAt( index
);
4471 // we need to refresh the (vert) scrollbar as the number of items changed
4474 RefreshAfter(index
);
4477 void wxListMainWindow::DeleteColumn( int col
)
4479 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4481 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
4484 delete node
->GetData();
4485 m_columns
.Erase( node
);
4489 // update all the items
4490 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4492 wxListLineData
* const line
= GetLine(i
);
4493 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
4494 delete n
->GetData();
4495 line
->m_items
.Erase(n
);
4499 if ( InReportView() ) // we only cache max widths when in Report View
4501 delete m_aColWidths
.Item(col
);
4502 m_aColWidths
.RemoveAt(col
);
4505 // invalidate it as it has to be recalculated
4509 void wxListMainWindow::DoDeleteAllItems()
4512 // nothing to do - in particular, don't send the event
4517 // to make the deletion of all items faster, we don't send the
4518 // notifications for each item deletion in this case but only one event
4519 // for all of them: this is compatible with wxMSW and documented in
4520 // DeleteAllItems() description
4522 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
4523 event
.SetEventObject( GetParent() );
4524 GetParent()->GetEventHandler()->ProcessEvent( event
);
4532 if ( InReportView() )
4534 ResetVisibleLinesRange();
4535 for (size_t i
= 0; i
< m_aColWidths
.GetCount(); i
++)
4537 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4544 void wxListMainWindow::DeleteAllItems()
4548 RecalculatePositions();
4551 void wxListMainWindow::DeleteEverything()
4553 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
4554 WX_CLEAR_ARRAY(m_aColWidths
);
4559 // ----------------------------------------------------------------------------
4560 // scanning for an item
4561 // ----------------------------------------------------------------------------
4563 void wxListMainWindow::EnsureVisible( long index
)
4565 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4566 _T("invalid index in EnsureVisible") );
4568 // We have to call this here because the label in question might just have
4569 // been added and its position is not known yet
4571 RecalculatePositions(true /* no refresh */);
4573 MoveToItem((size_t)index
);
4576 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool partial
)
4582 wxString str_upper
= str
.Upper();
4586 size_t count
= GetItemCount();
4587 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
4589 wxListLineData
*line
= GetLine(i
);
4590 wxString line_upper
= line
->GetText(0).Upper();
4593 if (line_upper
== str_upper
)
4598 if (line_upper
.find(str_upper
) == 0)
4606 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4612 size_t count
= GetItemCount();
4613 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4615 wxListLineData
*line
= GetLine(i
);
4617 line
->GetItem( 0, item
);
4618 if (item
.m_data
== data
)
4625 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4628 GetVisibleLinesRange( &topItem
, NULL
);
4631 GetItemPosition( GetItemCount() - 1, p
);
4635 long id
= (long)floor( pt
.y
* double(GetItemCount() - topItem
- 1) / p
.y
+ topItem
);
4636 if ( id
>= 0 && id
< (long)GetItemCount() )
4642 long wxListMainWindow::HitTest( int x
, int y
, int &flags
) const
4644 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4646 size_t count
= GetItemCount();
4648 if ( InReportView() )
4650 size_t current
= y
/ GetLineHeight();
4651 if ( current
< count
)
4653 flags
= HitTestLine(current
, x
, y
);
4660 // TODO: optimize it too! this is less simple than for report view but
4661 // enumerating all items is still not a way to do it!!
4662 for ( size_t current
= 0; current
< count
; current
++ )
4664 flags
= HitTestLine(current
, x
, y
);
4673 // ----------------------------------------------------------------------------
4675 // ----------------------------------------------------------------------------
4677 void wxListMainWindow::InsertItem( wxListItem
&item
)
4679 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4681 int count
= GetItemCount();
4682 wxCHECK_RET( item
.m_itemId
>= 0, _T("invalid item index") );
4684 if (item
.m_itemId
> count
)
4685 item
.m_itemId
= count
;
4687 size_t id
= item
.m_itemId
;
4691 if ( InReportView() )
4693 ResetVisibleLinesRange();
4695 // calculate the width of the item and adjust the max column width
4696 wxColWidthInfo
*pWidthInfo
= m_aColWidths
.Item(item
.GetColumn());
4697 int width
= GetItemWidthWithImage(&item
);
4698 item
.SetWidth(width
);
4699 if (width
> pWidthInfo
->nMaxWidth
)
4700 pWidthInfo
->nMaxWidth
= width
;
4703 wxListLineData
*line
= new wxListLineData(this);
4705 line
->SetItem( item
.m_col
, item
);
4707 m_lines
.Insert( line
, id
);
4711 // If an item is selected at or below the point of insertion, we need to
4712 // increment the member variables because the current row's index has gone
4714 if ( HasCurrent() && m_current
>= id
)
4717 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4719 RefreshLines(id
, GetItemCount() - 1);
4722 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4725 if ( InReportView() )
4727 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4728 item
.m_width
= GetTextLength( item
.m_text
);
4730 wxListHeaderData
*column
= new wxListHeaderData( item
);
4731 wxColWidthInfo
*colWidthInfo
= new wxColWidthInfo();
4733 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4736 wxListHeaderDataList::compatibility_iterator
4737 node
= m_columns
.Item( col
);
4738 m_columns
.Insert( node
, column
);
4739 m_aColWidths
.Insert( colWidthInfo
, col
);
4743 m_columns
.Append( column
);
4744 m_aColWidths
.Add( colWidthInfo
);
4749 // update all the items
4750 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4752 wxListLineData
* const line
= GetLine(i
);
4753 wxListItemData
* const data
= new wxListItemData(this);
4755 line
->m_items
.Insert(col
, data
);
4757 line
->m_items
.Append(data
);
4761 // invalidate it as it has to be recalculated
4766 int wxListMainWindow::GetItemWidthWithImage(wxListItem
* item
)
4769 wxClientDC
dc(this);
4771 dc
.SetFont( GetFont() );
4773 if (item
->GetImage() != -1)
4776 GetImageSize( item
->GetImage(), ix
, iy
);
4780 if (!item
->GetText().empty())
4783 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
4790 // ----------------------------------------------------------------------------
4792 // ----------------------------------------------------------------------------
4794 wxListCtrlCompare list_ctrl_compare_func_2
;
4795 long list_ctrl_compare_data
;
4797 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4799 wxListLineData
*line1
= *arg1
;
4800 wxListLineData
*line2
= *arg2
;
4802 line1
->GetItem( 0, item
);
4803 wxUIntPtr data1
= item
.m_data
;
4804 line2
->GetItem( 0, item
);
4805 wxUIntPtr data2
= item
.m_data
;
4806 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4809 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4811 // selections won't make sense any more after sorting the items so reset
4813 HighlightAll(false);
4816 list_ctrl_compare_func_2
= fn
;
4817 list_ctrl_compare_data
= data
;
4818 m_lines
.Sort( list_ctrl_compare_func_1
);
4822 // ----------------------------------------------------------------------------
4824 // ----------------------------------------------------------------------------
4826 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4829 #if ( defined(__WXGTK__) || defined(__WXMAC__) ) && !defined(__WXUNIVERSAL__)
4830 wxScrolledWindow::OnScroll(event
);
4832 HandleOnScroll( event
);
4835 // update our idea of which lines are shown when we redraw the window the
4837 ResetVisibleLinesRange();
4839 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4841 wxGenericListCtrl
* lc
= GetListCtrl();
4842 wxCHECK_RET( lc
, _T("no listctrl window?") );
4844 lc
->m_headerWin
->Refresh();
4845 lc
->m_headerWin
->Update();
4849 int wxListMainWindow::GetCountPerPage() const
4851 if ( !m_linesPerPage
)
4853 wxConstCast(this, wxListMainWindow
)->
4854 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4857 return m_linesPerPage
;
4860 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4862 wxASSERT_MSG( InReportView(), _T("this is for report mode only") );
4864 if ( m_lineFrom
== (size_t)-1 )
4866 size_t count
= GetItemCount();
4869 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4871 // this may happen if SetScrollbars() hadn't been called yet
4872 if ( m_lineFrom
>= count
)
4873 m_lineFrom
= count
- 1;
4875 // we redraw one extra line but this is needed to make the redrawing
4876 // logic work when there is a fractional number of lines on screen
4877 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4878 if ( m_lineTo
>= count
)
4879 m_lineTo
= count
- 1;
4881 else // empty control
4884 m_lineTo
= (size_t)-1;
4888 wxASSERT_MSG( IsEmpty() ||
4889 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4890 _T("GetVisibleLinesRange() returns incorrect result") );
4898 // -------------------------------------------------------------------------------------
4899 // wxGenericListCtrl
4900 // -------------------------------------------------------------------------------------
4902 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4904 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4905 EVT_SIZE(wxGenericListCtrl::OnSize
)
4908 wxGenericListCtrl::wxGenericListCtrl()
4910 m_imageListNormal
= (wxImageList
*) NULL
;
4911 m_imageListSmall
= (wxImageList
*) NULL
;
4912 m_imageListState
= (wxImageList
*) NULL
;
4914 m_ownsImageListNormal
=
4915 m_ownsImageListSmall
=
4916 m_ownsImageListState
= false;
4918 m_mainWin
= (wxListMainWindow
*) NULL
;
4919 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4923 wxGenericListCtrl::~wxGenericListCtrl()
4925 if (m_ownsImageListNormal
)
4926 delete m_imageListNormal
;
4927 if (m_ownsImageListSmall
)
4928 delete m_imageListSmall
;
4929 if (m_ownsImageListState
)
4930 delete m_imageListState
;
4933 void wxGenericListCtrl::CalculateAndSetHeaderHeight()
4939 GetThemeMetric( kThemeMetricListHeaderHeight
, &h
);
4941 // we use 'g' to get the descent, too
4943 m_headerWin
->GetTextExtent(wxT("Hg"), &w
, &h
, &d
);
4944 h
+= d
+ 2 * HEADER_OFFSET_Y
+ EXTRA_HEIGHT
;
4947 // only update if changed
4948 if ( h
!= m_headerHeight
)
4953 ResizeReportView(true);
4954 else //why is this needed if it doesn't have a header?
4955 m_headerWin
->SetSize(m_headerWin
->GetSize().x
, m_headerHeight
);
4960 void wxGenericListCtrl::CreateHeaderWindow()
4962 m_headerWin
= new wxListHeaderWindow
4964 this, wxID_ANY
, m_mainWin
,
4966 wxSize(GetClientSize().x
, m_headerHeight
),
4969 CalculateAndSetHeaderHeight();
4972 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4977 const wxValidator
&validator
,
4978 const wxString
&name
)
4982 m_imageListState
= (wxImageList
*) NULL
;
4983 m_ownsImageListNormal
=
4984 m_ownsImageListSmall
=
4985 m_ownsImageListState
= false;
4987 m_mainWin
= (wxListMainWindow
*) NULL
;
4988 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4992 if ( !(style
& wxLC_MASK_TYPE
) )
4994 style
= style
| wxLC_LIST
;
4997 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
5000 // this window itself shouldn't get the focus, only m_mainWin should
5003 // don't create the inner window with the border
5004 style
&= ~wxBORDER_MASK
;
5006 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0, 0), size
, style
);
5008 #ifdef __WXMAC_CARBON__
5009 // Human Interface Guidelines ask us for a special font in this case
5010 if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
)
5013 font
.MacCreateThemeFont( kThemeViewsFont
);
5018 if ( InReportView() )
5020 CreateHeaderWindow();
5022 #ifdef __WXMAC_CARBON__
5026 font
.MacCreateThemeFont( kThemeSmallSystemFont
);
5027 m_headerWin
->SetFont( font
);
5028 CalculateAndSetHeaderHeight();
5032 if ( HasFlag(wxLC_NO_HEADER
) )
5033 // VZ: why do we create it at all then?
5034 m_headerWin
->Show( false );
5037 SetInitialSize(size
);
5042 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
5044 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
5045 _T("wxLC_VIRTUAL can't be [un]set") );
5047 long flag
= GetWindowStyle();
5051 if (style
& wxLC_MASK_TYPE
)
5052 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
5053 if (style
& wxLC_MASK_ALIGN
)
5054 flag
&= ~wxLC_MASK_ALIGN
;
5055 if (style
& wxLC_MASK_SORT
)
5056 flag
&= ~wxLC_MASK_SORT
;
5064 SetWindowStyleFlag( flag
);
5067 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
5071 m_mainWin
->DeleteEverything();
5073 // has the header visibility changed?
5074 bool hasHeader
= HasHeader();
5075 bool willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
5077 if ( hasHeader
!= willHaveHeader
)
5084 // don't delete, just hide, as we can reuse it later
5085 m_headerWin
->Show(false);
5087 //else: nothing to do
5089 else // must show header
5093 CreateHeaderWindow();
5095 else // already have it, just show
5097 m_headerWin
->Show( true );
5101 ResizeReportView(willHaveHeader
);
5105 wxWindow::SetWindowStyleFlag( flag
);
5108 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
5110 m_mainWin
->GetColumn( col
, item
);
5114 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
5116 m_mainWin
->SetColumn( col
, item
);
5120 int wxGenericListCtrl::GetColumnWidth( int col
) const
5122 return m_mainWin
->GetColumnWidth( col
);
5125 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
5127 m_mainWin
->SetColumnWidth( col
, width
);
5131 int wxGenericListCtrl::GetCountPerPage() const
5133 return m_mainWin
->GetCountPerPage(); // different from Windows ?
5136 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
5138 m_mainWin
->GetItem( info
);
5142 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
5144 m_mainWin
->SetItem( info
);
5148 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
5151 info
.m_text
= label
;
5152 info
.m_mask
= wxLIST_MASK_TEXT
;
5153 info
.m_itemId
= index
;
5157 info
.m_image
= imageId
;
5158 info
.m_mask
|= wxLIST_MASK_IMAGE
;
5161 m_mainWin
->SetItem(info
);
5165 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
5167 return m_mainWin
->GetItemState( item
, stateMask
);
5170 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
5172 m_mainWin
->SetItemState( item
, state
, stateMask
);
5177 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
5179 return SetItemColumnImage(item
, 0, image
);
5183 wxGenericListCtrl::SetItemColumnImage( long item
, long column
, int image
)
5186 info
.m_image
= image
;
5187 info
.m_mask
= wxLIST_MASK_IMAGE
;
5188 info
.m_itemId
= item
;
5189 info
.m_col
= column
;
5190 m_mainWin
->SetItem( info
);
5194 wxString
wxGenericListCtrl::GetItemText( long item
) const
5196 return m_mainWin
->GetItemText(item
);
5199 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
5201 m_mainWin
->SetItemText(item
, str
);
5204 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
5207 info
.m_mask
= wxLIST_MASK_DATA
;
5208 info
.m_itemId
= item
;
5209 m_mainWin
->GetItem( info
);
5213 bool wxGenericListCtrl::SetItemPtrData( long item
, wxUIntPtr data
)
5216 info
.m_mask
= wxLIST_MASK_DATA
;
5217 info
.m_itemId
= item
;
5219 m_mainWin
->SetItem( info
);
5223 wxRect
wxGenericListCtrl::GetViewRect() const
5225 return m_mainWin
->GetViewRect();
5228 bool wxGenericListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
5230 m_mainWin
->GetItemRect( item
, rect
);
5231 if ( m_mainWin
->HasHeader() )
5232 rect
.y
+= m_headerHeight
+ 1;
5236 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
5238 m_mainWin
->GetItemPosition( item
, pos
);
5242 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
5247 int wxGenericListCtrl::GetItemCount() const
5249 return m_mainWin
->GetItemCount();
5252 int wxGenericListCtrl::GetColumnCount() const
5254 return m_mainWin
->GetColumnCount();
5257 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
5259 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
5262 wxSize
wxGenericListCtrl::GetItemSpacing() const
5264 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
5266 return wxSize(spacing
, spacing
);
5269 #if WXWIN_COMPATIBILITY_2_6
5270 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
5272 return m_mainWin
->GetItemSpacing( isSmall
);
5274 #endif // WXWIN_COMPATIBILITY_2_6
5276 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
5279 info
.m_itemId
= item
;
5280 info
.SetTextColour( col
);
5281 m_mainWin
->SetItem( info
);
5284 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
5287 info
.m_itemId
= item
;
5288 m_mainWin
->GetItem( info
);
5289 return info
.GetTextColour();
5292 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
5295 info
.m_itemId
= item
;
5296 info
.SetBackgroundColour( col
);
5297 m_mainWin
->SetItem( info
);
5300 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
5303 info
.m_itemId
= item
;
5304 m_mainWin
->GetItem( info
);
5305 return info
.GetBackgroundColour();
5308 int wxGenericListCtrl::GetScrollPos( int orient
) const
5310 return m_mainWin
->GetScrollPos( orient
);
5313 void wxGenericListCtrl::SetScrollPos( int orient
, int pos
, bool refresh
)
5315 m_mainWin
->SetScrollPos( orient
, pos
, refresh
);
5318 void wxGenericListCtrl::SetItemFont( long item
, const wxFont
&f
)
5321 info
.m_itemId
= item
;
5323 m_mainWin
->SetItem( info
);
5326 wxFont
wxGenericListCtrl::GetItemFont( long item
) const
5329 info
.m_itemId
= item
;
5330 m_mainWin
->GetItem( info
);
5331 return info
.GetFont();
5334 int wxGenericListCtrl::GetSelectedItemCount() const
5336 return m_mainWin
->GetSelectedItemCount();
5339 wxColour
wxGenericListCtrl::GetTextColour() const
5341 return GetForegroundColour();
5344 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
5346 SetForegroundColour(col
);
5349 long wxGenericListCtrl::GetTopItem() const
5352 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
5356 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
5358 return m_mainWin
->GetNextItem( item
, geom
, state
);
5361 wxImageList
*wxGenericListCtrl::GetImageList(int which
) const
5363 if (which
== wxIMAGE_LIST_NORMAL
)
5364 return m_imageListNormal
;
5365 else if (which
== wxIMAGE_LIST_SMALL
)
5366 return m_imageListSmall
;
5367 else if (which
== wxIMAGE_LIST_STATE
)
5368 return m_imageListState
;
5370 return (wxImageList
*) NULL
;
5373 void wxGenericListCtrl::SetImageList( wxImageList
*imageList
, int which
)
5375 if ( which
== wxIMAGE_LIST_NORMAL
)
5377 if (m_ownsImageListNormal
)
5378 delete m_imageListNormal
;
5379 m_imageListNormal
= imageList
;
5380 m_ownsImageListNormal
= false;
5382 else if ( which
== wxIMAGE_LIST_SMALL
)
5384 if (m_ownsImageListSmall
)
5385 delete m_imageListSmall
;
5386 m_imageListSmall
= imageList
;
5387 m_ownsImageListSmall
= false;
5389 else if ( which
== wxIMAGE_LIST_STATE
)
5391 if (m_ownsImageListState
)
5392 delete m_imageListState
;
5393 m_imageListState
= imageList
;
5394 m_ownsImageListState
= false;
5397 m_mainWin
->SetImageList( imageList
, which
);
5400 void wxGenericListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
5402 SetImageList(imageList
, which
);
5403 if ( which
== wxIMAGE_LIST_NORMAL
)
5404 m_ownsImageListNormal
= true;
5405 else if ( which
== wxIMAGE_LIST_SMALL
)
5406 m_ownsImageListSmall
= true;
5407 else if ( which
== wxIMAGE_LIST_STATE
)
5408 m_ownsImageListState
= true;
5411 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
5416 bool wxGenericListCtrl::DeleteItem( long item
)
5418 m_mainWin
->DeleteItem( item
);
5422 bool wxGenericListCtrl::DeleteAllItems()
5424 m_mainWin
->DeleteAllItems();
5428 bool wxGenericListCtrl::DeleteAllColumns()
5430 size_t count
= m_mainWin
->m_columns
.GetCount();
5431 for ( size_t n
= 0; n
< count
; n
++ )
5436 void wxGenericListCtrl::ClearAll()
5438 m_mainWin
->DeleteEverything();
5441 bool wxGenericListCtrl::DeleteColumn( int col
)
5443 m_mainWin
->DeleteColumn( col
);
5445 // if we don't have the header any longer, we need to relayout the window
5446 if ( !GetColumnCount() )
5447 ResizeReportView(false /* no header */);
5451 wxTextCtrl
*wxGenericListCtrl::EditLabel(long item
,
5452 wxClassInfo
* textControlClass
)
5454 return m_mainWin
->EditLabel( item
, textControlClass
);
5457 wxTextCtrl
*wxGenericListCtrl::GetEditControl() const
5459 return m_mainWin
->GetEditControl();
5462 bool wxGenericListCtrl::EnsureVisible( long item
)
5464 m_mainWin
->EnsureVisible( item
);
5468 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
5470 return m_mainWin
->FindItem( start
, str
, partial
);
5473 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
5475 return m_mainWin
->FindItem( start
, data
);
5478 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
5479 int WXUNUSED(direction
))
5481 return m_mainWin
->FindItem( pt
);
5484 // TODO: sub item hit testing
5485 long wxGenericListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *) const
5487 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
5490 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
5492 m_mainWin
->InsertItem( info
);
5493 return info
.m_itemId
;
5496 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
5499 info
.m_text
= label
;
5500 info
.m_mask
= wxLIST_MASK_TEXT
;
5501 info
.m_itemId
= index
;
5502 return InsertItem( info
);
5505 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
5508 info
.m_mask
= wxLIST_MASK_IMAGE
;
5509 info
.m_image
= imageIndex
;
5510 info
.m_itemId
= index
;
5511 return InsertItem( info
);
5514 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
5517 info
.m_text
= label
;
5518 info
.m_image
= imageIndex
;
5519 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
5520 info
.m_itemId
= index
;
5521 return InsertItem( info
);
5524 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
5526 wxCHECK_MSG( m_headerWin
, -1, _T("can't add column in non report mode") );
5528 m_mainWin
->InsertColumn( col
, item
);
5530 // if we hadn't had a header before but have one now
5531 // then we need to relayout the window
5532 if ( GetColumnCount() == 1 && m_mainWin
->HasHeader() )
5533 ResizeReportView(true /* have header */);
5535 m_headerWin
->Refresh();
5540 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
5541 int format
, int width
)
5544 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
5545 item
.m_text
= heading
;
5548 item
.m_mask
|= wxLIST_MASK_WIDTH
;
5549 item
.m_width
= width
;
5552 item
.m_format
= format
;
5554 return InsertColumn( col
, item
);
5557 bool wxGenericListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
5563 // fn is a function which takes 3 long arguments: item1, item2, data.
5564 // item1 is the long data associated with a first item (NOT the index).
5565 // item2 is the long data associated with a second item (NOT the index).
5566 // data is the same value as passed to SortItems.
5567 // The return value is a negative number if the first item should precede the second
5568 // item, a positive number of the second item should precede the first,
5569 // or zero if the two items are equivalent.
5570 // data is arbitrary data to be passed to the sort function.
5572 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
5574 m_mainWin
->SortItems( fn
, data
);
5578 // ----------------------------------------------------------------------------
5580 // ----------------------------------------------------------------------------
5582 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5587 ResizeReportView(m_mainWin
->HasHeader());
5588 m_mainWin
->RecalculatePositions();
5591 void wxGenericListCtrl::ResizeReportView(bool showHeader
)
5594 GetClientSize( &cw
, &ch
);
5598 m_headerWin
->SetSize( 0, 0, cw
, m_headerHeight
);
5599 if(ch
> m_headerHeight
)
5600 m_mainWin
->SetSize( 0, m_headerHeight
+ 1,
5601 cw
, ch
- m_headerHeight
- 1 );
5603 m_mainWin
->SetSize( 0, m_headerHeight
+ 1,
5606 else // no header window
5608 m_mainWin
->SetSize( 0, 0, cw
, ch
);
5612 void wxGenericListCtrl::OnInternalIdle()
5614 wxWindow::OnInternalIdle();
5616 // do it only if needed
5617 if ( !m_mainWin
->m_dirty
)
5620 m_mainWin
->RecalculatePositions();
5623 // ----------------------------------------------------------------------------
5625 // ----------------------------------------------------------------------------
5627 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5631 m_mainWin
->SetBackgroundColour( colour
);
5632 m_mainWin
->m_dirty
= true;
5638 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5640 if ( !wxWindow::SetForegroundColour( colour
) )
5645 m_mainWin
->SetForegroundColour( colour
);
5646 m_mainWin
->m_dirty
= true;
5650 m_headerWin
->SetForegroundColour( colour
);
5655 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5657 if ( !wxWindow::SetFont( font
) )
5662 m_mainWin
->SetFont( font
);
5663 m_mainWin
->m_dirty
= true;
5668 m_headerWin
->SetFont( font
);
5669 CalculateAndSetHeaderHeight();
5679 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5682 // Use the same color scheme as wxListBox
5683 return wxListBox::GetClassDefaultAttributes(variant
);
5685 wxUnusedVar(variant
);
5686 wxVisualAttributes attr
;
5687 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
5688 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5689 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5694 // ----------------------------------------------------------------------------
5695 // methods forwarded to m_mainWin
5696 // ----------------------------------------------------------------------------
5698 #if wxUSE_DRAG_AND_DROP
5700 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5702 m_mainWin
->SetDropTarget( dropTarget
);
5705 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5707 return m_mainWin
->GetDropTarget();
5712 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5714 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5717 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5719 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5722 wxColour
wxGenericListCtrl::GetForegroundColour() const
5724 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5727 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5730 return m_mainWin
->PopupMenu( menu
, x
, y
);
5736 void wxGenericListCtrl::DoClientToScreen( int *x
, int *y
) const
5738 m_mainWin
->DoClientToScreen(x
, y
);
5741 void wxGenericListCtrl::DoScreenToClient( int *x
, int *y
) const
5743 m_mainWin
->DoScreenToClient(x
, y
);
5746 void wxGenericListCtrl::SetFocus()
5748 // The test in window.cpp fails as we are a composite
5749 // window, so it checks against "this", but not m_mainWin.
5750 if ( DoFindFocus() != this )
5751 m_mainWin
->SetFocus();
5754 wxSize
wxGenericListCtrl::DoGetBestSize() const
5756 // Something is better than nothing...
5757 // 100x80 is what the MSW version will get from the default
5758 // wxControl::DoGetBestSize
5759 return wxSize(100, 80);
5762 // ----------------------------------------------------------------------------
5763 // virtual list control support
5764 // ----------------------------------------------------------------------------
5766 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5768 // this is a pure virtual function, in fact - which is not really pure
5769 // because the controls which are not virtual don't need to implement it
5770 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5772 return wxEmptyString
;
5775 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5777 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5779 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
5783 int wxGenericListCtrl::OnGetItemColumnImage(long item
, long column
) const
5786 return OnGetItemImage(item
);
5792 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5794 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5795 _T("invalid item index in OnGetItemAttr()") );
5797 // no attributes by default
5801 void wxGenericListCtrl::SetItemCount(long count
)
5803 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5805 m_mainWin
->SetItemCount(count
);
5808 void wxGenericListCtrl::RefreshItem(long item
)
5810 m_mainWin
->RefreshLine(item
);
5813 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5815 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5818 // Generic wxListCtrl is more or less a container for two other
5819 // windows which drawings are done upon. These are namely
5820 // 'm_headerWin' and 'm_mainWin'.
5821 // Here we override 'virtual wxWindow::Refresh()' to mimic the
5822 // behaviour wxListCtrl has under wxMSW.
5824 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5828 // The easy case, no rectangle specified.
5830 m_headerWin
->Refresh(eraseBackground
);
5833 m_mainWin
->Refresh(eraseBackground
);
5837 // Refresh the header window
5840 wxRect rectHeader
= m_headerWin
->GetRect();
5841 rectHeader
.Intersect(*rect
);
5842 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5845 m_headerWin
->GetPosition(&x
, &y
);
5846 rectHeader
.Offset(-x
, -y
);
5847 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5851 // Refresh the main window
5854 wxRect rectMain
= m_mainWin
->GetRect();
5855 rectMain
.Intersect(*rect
);
5856 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5859 m_mainWin
->GetPosition(&x
, &y
);
5860 rectMain
.Offset(-x
, -y
);
5861 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5867 void wxGenericListCtrl::Freeze()
5869 m_mainWin
->Freeze();
5872 void wxGenericListCtrl::Thaw()
5877 #endif // wxUSE_LISTCTRL