1 /////////////////////////////////////////////////////////////////////////////
2 // Name: generic/listctrl.cpp
3 // Purpose: generic implementation of wxListCtrl
4 // Author: Robert Roebling
5 // Vadim Zeitlin (virtual list control support)
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
14 1. we need to implement searching/sorting for virtual controls somehow
15 ?2. when changing selection the lines are refreshed twice
18 // ============================================================================
20 // ============================================================================
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
27 #pragma implementation "listctrl.h"
28 #pragma implementation "listctrlbase.h"
31 // For compilers that support precompilation, includes "wx.h".
32 #include "wx/wxprec.h"
43 #include "wx/dynarray.h"
45 #include "wx/dcscreen.h"
47 #include "wx/textctrl.h"
50 // under Win32 we always use the native version and also may use the generic
51 // one, however some things should be done only if we use only the generic
53 #if defined(__WIN32__) && !defined(__WXUNIVERSAL__)
54 #define HAVE_NATIVE_LISTCTRL
57 // if we have the native control, wx/listctrl.h declares it and not this one
58 #ifdef HAVE_NATIVE_LISTCTRL
59 #include "wx/generic/listctrl.h"
60 #else // !HAVE_NATIVE_LISTCTRL
61 #include "wx/listctrl.h"
63 // if we have a native version, its implementation file does all this
64 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
65 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
66 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
68 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxGenericListCtrl
)
69 #endif // HAVE_NATIVE_LISTCTRL/!HAVE_NATIVE_LISTCTRL
71 #include "wx/selstore.h"
72 #include "wx/renderer.h"
76 #include "wx/mac/private.h"
81 // NOTE: If using the wxListBox visual attributes works everywhere then this can
82 // be removed, as well as the #else case below.
83 #define _USE_VISATTR 0
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
90 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
)
91 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
)
92 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
)
93 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
)
94 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
)
95 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
)
96 #if WXWIN_COMPATIBILITY_2_4
97 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
)
98 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
)
100 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
)
101 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
)
102 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
)
103 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
)
104 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
)
105 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
)
106 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
)
107 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING
)
108 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG
)
109 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
)
110 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
)
111 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
)
112 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED
)
113 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
)
115 // ----------------------------------------------------------------------------
117 // ----------------------------------------------------------------------------
119 // // the height of the header window (FIXME: should depend on its font!)
120 // static const int HEADER_HEIGHT = 23;
122 static const int SCROLL_UNIT_X
= 15;
124 // the spacing between the lines (in report mode)
125 static const int LINE_SPACING
= 0;
127 // extra margins around the text label
128 static const int EXTRA_WIDTH
= 4;
129 static const int EXTRA_HEIGHT
= 4;
131 // margin between the window and the items
132 static const int EXTRA_BORDER_X
= 2;
133 static const int EXTRA_BORDER_Y
= 2;
135 // offset for the header window
136 static const int HEADER_OFFSET_X
= 1;
137 static const int HEADER_OFFSET_Y
= 1;
139 // margin between rows of icons in [small] icon view
140 static const int MARGIN_BETWEEN_ROWS
= 6;
142 // when autosizing the columns, add some slack
143 static const int AUTOSIZE_COL_MARGIN
= 10;
145 // default and minimal widths for the header columns
146 static const int WIDTH_COL_DEFAULT
= 80;
147 static const int WIDTH_COL_MIN
= 10;
149 // the space between the image and the text in the report mode
150 static const int IMAGE_MARGIN_IN_REPORT_MODE
= 5;
152 // ============================================================================
154 // ============================================================================
156 //-----------------------------------------------------------------------------
157 // wxColWidthInfo (internal)
158 //-----------------------------------------------------------------------------
160 struct wxColWidthInfo
163 bool bNeedsUpdate
; // only set to true when an item whose
164 // width == nMaxWidth is removed
166 wxColWidthInfo(int w
= 0, bool needsUpdate
= false)
169 bNeedsUpdate
= needsUpdate
;
173 WX_DEFINE_ARRAY_PTR(wxColWidthInfo
*, ColWidthArray
);
175 //-----------------------------------------------------------------------------
176 // wxListItemData (internal)
177 //-----------------------------------------------------------------------------
179 class WXDLLEXPORT wxListItemData
182 wxListItemData(wxListMainWindow
*owner
);
185 void SetItem( const wxListItem
&info
);
186 void SetImage( int image
) { m_image
= image
; }
187 void SetData( wxUIntPtr data
) { m_data
= data
; }
188 void SetPosition( int x
, int y
);
189 void SetSize( int width
, int height
);
191 bool HasText() const { return !m_text
.empty(); }
192 const wxString
& GetText() const { return m_text
; }
193 void SetText(const wxString
& text
) { m_text
= text
; }
195 // we can't use empty string for measuring the string width/height, so
196 // always return something
197 wxString
GetTextForMeasuring() const
199 wxString s
= GetText();
206 bool IsHit( int x
, int y
) const;
210 int GetWidth() const;
211 int GetHeight() const;
213 int GetImage() const { return m_image
; }
214 bool HasImage() const { return GetImage() != -1; }
216 void GetItem( wxListItem
&info
) const;
218 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
219 wxListItemAttr
*GetAttr() const { return m_attr
; }
222 // the item image or -1
225 // user data associated with the item
228 // the item coordinates are not used in report mode, instead this pointer
229 // is NULL and the owner window is used to retrieve the item position and
233 // the list ctrl we are in
234 wxListMainWindow
*m_owner
;
236 // custom attributes or NULL
237 wxListItemAttr
*m_attr
;
240 // common part of all ctors
246 //-----------------------------------------------------------------------------
247 // wxListHeaderData (internal)
248 //-----------------------------------------------------------------------------
250 class WXDLLEXPORT wxListHeaderData
: public wxObject
254 wxListHeaderData( const wxListItem
&info
);
255 void SetItem( const wxListItem
&item
);
256 void SetPosition( int x
, int y
);
257 void SetWidth( int w
);
258 void SetFormat( int format
);
259 void SetHeight( int h
);
260 bool HasImage() const;
262 bool HasText() const { return !m_text
.empty(); }
263 const wxString
& GetText() const { return m_text
; }
264 void SetText(const wxString
& text
) { m_text
= text
; }
266 void GetItem( wxListItem
&item
);
268 bool IsHit( int x
, int y
) const;
269 int GetImage() const;
270 int GetWidth() const;
271 int GetFormat() const;
287 //-----------------------------------------------------------------------------
288 // wxListLineData (internal)
289 //-----------------------------------------------------------------------------
291 WX_DECLARE_LIST(wxListItemData
, wxListItemDataList
);
292 #include "wx/listimpl.cpp"
293 WX_DEFINE_LIST(wxListItemDataList
);
298 // the list of subitems: only may have more than one item in report mode
299 wxListItemDataList m_items
;
301 // this is not used in report view
313 // the part to be highlighted
314 wxRect m_rectHighlight
;
316 // extend all our rects to be centered inside the one of given width
317 void ExtendWidth(wxCoord w
)
319 wxASSERT_MSG( m_rectAll
.width
<= w
,
320 _T("width can only be increased") );
323 m_rectLabel
.x
= m_rectAll
.x
+ (w
- m_rectLabel
.width
)/2;
324 m_rectIcon
.x
= m_rectAll
.x
+ (w
- m_rectIcon
.width
)/2;
325 m_rectHighlight
.x
= m_rectAll
.x
+ (w
- m_rectHighlight
.width
)/2;
329 // is this item selected? [NB: not used in virtual mode]
332 // back pointer to the list ctrl
333 wxListMainWindow
*m_owner
;
336 wxListLineData(wxListMainWindow
*owner
);
340 WX_CLEAR_LIST(wxListItemDataList
, m_items
);
344 // are we in report mode?
345 inline bool InReportView() const;
347 // are we in virtual report mode?
348 inline bool IsVirtual() const;
350 // these 2 methods shouldn't be called for report view controls, in that
351 // case we determine our position/size ourselves
353 // calculate the size of the line
354 void CalculateSize( wxDC
*dc
, int spacing
);
356 // remember the position this line appears at
357 void SetPosition( int x
, int y
, int spacing
);
361 void SetImage( int image
) { SetImage(0, image
); }
362 int GetImage() const { return GetImage(0); }
363 bool HasImage() const { return GetImage() != -1; }
364 bool HasText() const { return !GetText(0).empty(); }
366 void SetItem( int index
, const wxListItem
&info
);
367 void GetItem( int index
, wxListItem
&info
);
369 wxString
GetText(int index
) const;
370 void SetText( int index
, const wxString s
);
372 wxListItemAttr
*GetAttr() const;
373 void SetAttr(wxListItemAttr
*attr
);
375 // return true if the highlighting really changed
376 bool Highlight( bool on
);
378 void ReverseHighlight();
380 bool IsHighlighted() const
382 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
384 return m_highlighted
;
387 // draw the line on the given DC in icon/list mode
388 void Draw( wxDC
*dc
);
390 // the same in report mode
391 void DrawInReportMode( wxDC
*dc
,
393 const wxRect
& rectHL
,
397 // set the line to contain num items (only can be > 1 in report mode)
398 void InitItems( int num
);
400 // get the mode (i.e. style) of the list control
401 inline int GetMode() const;
403 // prepare the DC for drawing with these item's attributes, return true if
404 // we need to draw the items background to highlight it, false otherwise
405 bool SetAttributes(wxDC
*dc
,
406 const wxListItemAttr
*attr
,
409 // draw the text on the DC with the correct justification; also add an
410 // ellipsis if the text is too large to fit in the current width
411 void DrawTextFormatted(wxDC
*dc
, const wxString
&text
, int col
, int x
, int y
, int width
);
413 // these are only used by GetImage/SetImage above, we don't support images
414 // with subitems at the public API level yet
415 void SetImage( int index
, int image
);
416 int GetImage( int index
) const;
419 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
420 #include "wx/arrimpl.cpp"
421 WX_DEFINE_OBJARRAY(wxListLineDataArray
);
423 //-----------------------------------------------------------------------------
424 // wxListHeaderWindow (internal)
425 //-----------------------------------------------------------------------------
427 class WXDLLEXPORT wxListHeaderWindow
: public wxWindow
430 wxListMainWindow
*m_owner
;
431 wxCursor
*m_currentCursor
;
432 wxCursor
*m_resizeCursor
;
435 // column being resized or -1
438 // divider line position in logical (unscrolled) coords
441 // minimal position beyond which the divider line can't be dragged in
446 wxListHeaderWindow();
448 wxListHeaderWindow( wxWindow
*win
,
450 wxListMainWindow
*owner
,
451 const wxPoint
&pos
= wxDefaultPosition
,
452 const wxSize
&size
= wxDefaultSize
,
454 const wxString
&name
= wxT("wxlistctrlcolumntitles") );
456 virtual ~wxListHeaderWindow();
459 void AdjustDC(wxDC
& dc
);
461 void OnPaint( wxPaintEvent
&event
);
462 void OnMouse( wxMouseEvent
&event
);
463 void OnSetFocus( wxFocusEvent
&event
);
469 // common part of all ctors
472 // generate and process the list event of the given type, return true if
473 // it wasn't vetoed, i.e. if we should proceed
474 bool SendListEvent(wxEventType type
, wxPoint pos
);
476 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
477 DECLARE_EVENT_TABLE()
480 //-----------------------------------------------------------------------------
481 // wxListRenameTimer (internal)
482 //-----------------------------------------------------------------------------
484 class WXDLLEXPORT wxListRenameTimer
: public wxTimer
487 wxListMainWindow
*m_owner
;
490 wxListRenameTimer( wxListMainWindow
*owner
);
494 //-----------------------------------------------------------------------------
495 // wxListTextCtrl (internal)
496 //-----------------------------------------------------------------------------
498 class WXDLLEXPORT wxListTextCtrl
: public wxTextCtrl
501 wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
);
504 void OnChar( wxKeyEvent
&event
);
505 void OnKeyUp( wxKeyEvent
&event
);
506 void OnKillFocus( wxFocusEvent
&event
);
508 bool AcceptChanges();
512 wxListMainWindow
*m_owner
;
513 wxString m_startValue
;
516 bool m_aboutToFinish
;
518 DECLARE_EVENT_TABLE()
521 //-----------------------------------------------------------------------------
522 // wxListMainWindow (internal)
523 //-----------------------------------------------------------------------------
525 WX_DECLARE_LIST(wxListHeaderData
, wxListHeaderDataList
);
526 #include "wx/listimpl.cpp"
527 WX_DEFINE_LIST(wxListHeaderDataList
);
529 class wxListMainWindow
: public wxScrolledWindow
533 wxListMainWindow( wxWindow
*parent
,
535 const wxPoint
& pos
= wxDefaultPosition
,
536 const wxSize
& size
= wxDefaultSize
,
538 const wxString
&name
= _T("listctrlmainwindow") );
540 virtual ~wxListMainWindow();
542 wxWindow
*GetMainWindowOfCompositeControl() { return GetParent(); }
544 bool HasFlag(int flag
) const { return m_parent
->HasFlag(flag
); }
546 // return true if this is a virtual list control
547 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
549 // return true if the control is in report mode
550 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
552 // return true if we are in single selection mode, false if multi sel
553 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL
); }
555 // do we have a header window?
556 bool HasHeader() const
557 { return InReportView() && !HasFlag(wxLC_NO_HEADER
); }
559 void HighlightAll( bool on
);
561 // all these functions only do something if the line is currently visible
563 // change the line "selected" state, return true if it really changed
564 bool HighlightLine( size_t line
, bool highlight
= true);
566 // as HighlightLine() but do it for the range of lines: this is incredibly
567 // more efficient for virtual list controls!
569 // NB: unlike HighlightLine() this one does refresh the lines on screen
570 void HighlightLines( size_t lineFrom
, size_t lineTo
, bool on
= true );
572 // toggle the line state and refresh it
573 void ReverseHighlight( size_t line
)
574 { HighlightLine(line
, !IsHighlighted(line
)); RefreshLine(line
); }
576 // return true if the line is highlighted
577 bool IsHighlighted(size_t line
) const;
579 // refresh one or several lines at once
580 void RefreshLine( size_t line
);
581 void RefreshLines( size_t lineFrom
, size_t lineTo
);
583 // refresh all selected items
584 void RefreshSelected();
586 // refresh all lines below the given one: the difference with
587 // RefreshLines() is that the index here might not be a valid one (happens
588 // when the last line is deleted)
589 void RefreshAfter( size_t lineFrom
);
591 // the methods which are forwarded to wxListLineData itself in list/icon
592 // modes but are here because the lines don't store their positions in the
595 // get the bound rect for the entire line
596 wxRect
GetLineRect(size_t line
) const;
598 // get the bound rect of the label
599 wxRect
GetLineLabelRect(size_t line
) const;
601 // get the bound rect of the items icon (only may be called if we do have
603 wxRect
GetLineIconRect(size_t line
) const;
605 // get the rect to be highlighted when the item has focus
606 wxRect
GetLineHighlightRect(size_t line
) const;
608 // get the size of the total line rect
609 wxSize
GetLineSize(size_t line
) const
610 { return GetLineRect(line
).GetSize(); }
612 // return the hit code for the corresponding position (in this line)
613 long HitTestLine(size_t line
, int x
, int y
) const;
615 // bring the selected item into view, scrolling to it if necessary
616 void MoveToItem(size_t item
);
618 // bring the current item into view
619 void MoveToFocus() { MoveToItem(m_current
); }
621 // start editing the label of the given item
622 void EditLabel( long item
);
624 // suspend/resume redrawing the control
628 void OnRenameTimer();
629 bool OnRenameAccept(size_t itemEdit
, const wxString
& value
);
630 void OnRenameCancelled(size_t itemEdit
);
632 void OnMouse( wxMouseEvent
&event
);
634 // called to switch the selection from the current item to newCurrent,
635 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
637 void OnChar( wxKeyEvent
&event
);
638 void OnKeyDown( wxKeyEvent
&event
);
639 void OnSetFocus( wxFocusEvent
&event
);
640 void OnKillFocus( wxFocusEvent
&event
);
641 void OnScroll(wxScrollWinEvent
& event
) ;
643 void OnPaint( wxPaintEvent
&event
);
645 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
646 void GetImageSize( int index
, int &width
, int &height
) const;
647 int GetTextLength( const wxString
&s
) const;
649 void SetImageList( wxImageListType
*imageList
, int which
);
650 void SetItemSpacing( int spacing
, bool isSmall
= false );
651 int GetItemSpacing( bool isSmall
= false );
653 void SetColumn( int col
, wxListItem
&item
);
654 void SetColumnWidth( int col
, int width
);
655 void GetColumn( int col
, wxListItem
&item
) const;
656 int GetColumnWidth( int col
) const;
657 int GetColumnCount() const { return m_columns
.GetCount(); }
659 // returns the sum of the heights of all columns
660 int GetHeaderWidth() const;
662 int GetCountPerPage() const;
664 void SetItem( wxListItem
&item
);
665 void GetItem( wxListItem
&item
) const;
666 void SetItemState( long item
, long state
, long stateMask
);
667 void SetItemStateAll( long state
, long stateMask
);
668 int GetItemState( long item
, long stateMask
) const;
669 void GetItemRect( long index
, wxRect
&rect
) const;
670 wxRect
GetViewRect() const;
671 bool GetItemPosition( long item
, wxPoint
& pos
) const;
672 int GetSelectedItemCount() const;
674 wxString
GetItemText(long item
) const
677 info
.m_itemId
= item
;
682 void SetItemText(long item
, const wxString
& value
)
685 info
.m_mask
= wxLIST_MASK_TEXT
;
686 info
.m_itemId
= item
;
691 // set the scrollbars and update the positions of the items
692 void RecalculatePositions(bool noRefresh
= false);
694 // refresh the window and the header
697 long GetNextItem( long item
, int geometry
, int state
) const;
698 void DeleteItem( long index
);
699 void DeleteAllItems();
700 void DeleteColumn( int col
);
701 void DeleteEverything();
702 void EnsureVisible( long index
);
703 long FindItem( long start
, const wxString
& str
, bool partial
= false );
704 long FindItem( long start
, wxUIntPtr data
);
705 long FindItem( const wxPoint
& pt
);
706 long HitTest( int x
, int y
, int &flags
);
707 void InsertItem( wxListItem
&item
);
708 void InsertColumn( long col
, wxListItem
&item
);
709 int GetItemWidthWithImage(wxListItem
* item
);
710 void SortItems( wxListCtrlCompare fn
, long data
);
712 size_t GetItemCount() const;
713 bool IsEmpty() const { return GetItemCount() == 0; }
714 void SetItemCount(long count
);
716 // change the current (== focused) item, send a notification event
717 void ChangeCurrent(size_t current
);
718 void ResetCurrent() { ChangeCurrent((size_t)-1); }
719 bool HasCurrent() const { return m_current
!= (size_t)-1; }
721 // send out a wxListEvent
722 void SendNotify( size_t line
,
724 wxPoint point
= wxDefaultPosition
);
726 // override base class virtual to reset m_lineHeight when the font changes
727 virtual bool SetFont(const wxFont
& font
)
729 if ( !wxScrolledWindow::SetFont(font
) )
737 // these are for wxListLineData usage only
739 // get the backpointer to the list ctrl
740 wxGenericListCtrl
*GetListCtrl() const
742 return wxStaticCast(GetParent(), wxGenericListCtrl
);
745 // get the height of all lines (assuming they all do have the same height)
746 wxCoord
GetLineHeight() const;
748 // get the y position of the given line (only for report view)
749 wxCoord
GetLineY(size_t line
) const;
751 // get the brush to use for the item highlighting
752 wxBrush
*GetHighlightBrush() const
754 return m_hasFocus
? m_highlightBrush
: m_highlightUnfocusedBrush
;
758 // the array of all line objects for a non virtual list control (for the
759 // virtual list control we only ever use m_lines[0])
760 wxListLineDataArray m_lines
;
762 // the list of column objects
763 wxListHeaderDataList m_columns
;
765 // currently focused item or -1
768 // the number of lines per page
771 // this flag is set when something which should result in the window
772 // redrawing happens (i.e. an item was added or deleted, or its appearance
773 // changed) and OnPaint() doesn't redraw the window while it is set which
774 // allows to minimize the number of repaintings when a lot of items are
775 // being added. The real repainting occurs only after the next OnIdle()
779 wxColour
*m_highlightColour
;
780 wxImageListType
*m_small_image_list
;
781 wxImageListType
*m_normal_image_list
;
783 int m_normal_spacing
;
787 wxTimer
*m_renameTimer
;
791 ColWidthArray m_aColWidths
;
793 // for double click logic
794 size_t m_lineLastClicked
,
795 m_lineBeforeLastClicked
,
796 m_lineSelectSingleOnUp
;
799 // the total count of items in a virtual list control
802 // the object maintaining the items selection state, only used in virtual
804 wxSelectionStore m_selStore
;
806 // common part of all ctors
809 // get the line data for the given index
810 wxListLineData
*GetLine(size_t n
) const
812 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
816 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
824 // get a dummy line which can be used for geometry calculations and such:
825 // you must use GetLine() if you want to really draw the line
826 wxListLineData
*GetDummyLine() const;
828 // cache the line data of the n-th line in m_lines[0]
829 void CacheLineData(size_t line
);
831 // get the range of visible lines
832 void GetVisibleLinesRange(size_t *from
, size_t *to
);
834 // force us to recalculate the range of visible lines
835 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
837 // get the colour to be used for drawing the rules
838 wxColour
GetRuleColour() const
840 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
844 // initialize the current item if needed
845 void UpdateCurrent();
847 // delete all items but don't refresh: called from dtor
848 void DoDeleteAllItems();
850 // the height of one line using the current font
851 wxCoord m_lineHeight
;
853 // the total header width or 0 if not calculated yet
854 wxCoord m_headerWidth
;
856 // the first and last lines being shown on screen right now (inclusive),
857 // both may be -1 if they must be calculated so never access them directly:
858 // use GetVisibleLinesRange() above instead
862 // the brushes to use for item highlighting when we do/don't have focus
863 wxBrush
*m_highlightBrush
,
864 *m_highlightUnfocusedBrush
;
866 // if this is > 0, the control is frozen and doesn't redraw itself
867 size_t m_freezeCount
;
869 DECLARE_DYNAMIC_CLASS(wxListMainWindow
)
870 DECLARE_EVENT_TABLE()
872 friend class wxGenericListCtrl
;
875 // ============================================================================
877 // ============================================================================
879 //-----------------------------------------------------------------------------
881 //-----------------------------------------------------------------------------
883 wxListItemData::~wxListItemData()
885 // in the virtual list control the attributes are managed by the main
886 // program, so don't delete them
887 if ( !m_owner
->IsVirtual() )
895 void wxListItemData::Init()
903 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
909 if ( owner
->InReportView() )
919 void wxListItemData::SetItem( const wxListItem
&info
)
921 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
922 SetText(info
.m_text
);
923 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
924 m_image
= info
.m_image
;
925 if ( info
.m_mask
& wxLIST_MASK_DATA
)
926 m_data
= info
.m_data
;
928 if ( info
.HasAttributes() )
931 *m_attr
= *info
.GetAttributes();
933 m_attr
= new wxListItemAttr(*info
.GetAttributes());
941 m_rect
->width
= info
.m_width
;
945 void wxListItemData::SetPosition( int x
, int y
)
947 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
953 void wxListItemData::SetSize( int width
, int height
)
955 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
958 m_rect
->width
= width
;
960 m_rect
->height
= height
;
963 bool wxListItemData::IsHit( int x
, int y
) const
965 wxCHECK_MSG( m_rect
, false, _T("can't be called in this mode") );
967 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Inside(x
, y
);
970 int wxListItemData::GetX() const
972 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
977 int wxListItemData::GetY() const
979 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
984 int wxListItemData::GetWidth() const
986 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
988 return m_rect
->width
;
991 int wxListItemData::GetHeight() const
993 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
995 return m_rect
->height
;
998 void wxListItemData::GetItem( wxListItem
&info
) const
1000 info
.m_text
= m_text
;
1001 info
.m_image
= m_image
;
1002 info
.m_data
= m_data
;
1006 if ( m_attr
->HasTextColour() )
1007 info
.SetTextColour(m_attr
->GetTextColour());
1008 if ( m_attr
->HasBackgroundColour() )
1009 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
1010 if ( m_attr
->HasFont() )
1011 info
.SetFont(m_attr
->GetFont());
1015 //-----------------------------------------------------------------------------
1017 //-----------------------------------------------------------------------------
1019 void wxListHeaderData::Init()
1030 wxListHeaderData::wxListHeaderData()
1035 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1042 void wxListHeaderData::SetItem( const wxListItem
&item
)
1044 m_mask
= item
.m_mask
;
1046 if ( m_mask
& wxLIST_MASK_TEXT
)
1047 m_text
= item
.m_text
;
1049 if ( m_mask
& wxLIST_MASK_IMAGE
)
1050 m_image
= item
.m_image
;
1052 if ( m_mask
& wxLIST_MASK_FORMAT
)
1053 m_format
= item
.m_format
;
1055 if ( m_mask
& wxLIST_MASK_WIDTH
)
1056 SetWidth(item
.m_width
);
1059 void wxListHeaderData::SetPosition( int x
, int y
)
1065 void wxListHeaderData::SetHeight( int h
)
1070 void wxListHeaderData::SetWidth( int w
)
1074 m_width
= WIDTH_COL_DEFAULT
;
1075 else if (m_width
< WIDTH_COL_MIN
)
1076 m_width
= WIDTH_COL_MIN
;
1079 void wxListHeaderData::SetFormat( int format
)
1084 bool wxListHeaderData::HasImage() const
1086 return m_image
!= -1;
1089 bool wxListHeaderData::IsHit( int x
, int y
) const
1091 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1094 void wxListHeaderData::GetItem( wxListItem
& item
)
1096 item
.m_mask
= m_mask
;
1097 item
.m_text
= m_text
;
1098 item
.m_image
= m_image
;
1099 item
.m_format
= m_format
;
1100 item
.m_width
= m_width
;
1103 int wxListHeaderData::GetImage() const
1108 int wxListHeaderData::GetWidth() const
1113 int wxListHeaderData::GetFormat() const
1118 //-----------------------------------------------------------------------------
1120 //-----------------------------------------------------------------------------
1122 inline int wxListLineData::GetMode() const
1124 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1127 inline bool wxListLineData::InReportView() const
1129 return m_owner
->HasFlag(wxLC_REPORT
);
1132 inline bool wxListLineData::IsVirtual() const
1134 return m_owner
->IsVirtual();
1137 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1141 if ( InReportView() )
1147 m_gi
= new GeometryInfo
;
1150 m_highlighted
= false;
1152 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1155 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1157 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1158 wxCHECK_RET( node
, _T("no subitems at all??") );
1160 wxListItemData
*item
= node
->GetData();
1165 switch ( GetMode() )
1168 case wxLC_SMALL_ICON
:
1169 m_gi
->m_rectAll
.width
= spacing
;
1171 s
= item
->GetText();
1176 m_gi
->m_rectLabel
.width
=
1177 m_gi
->m_rectLabel
.height
= 0;
1181 dc
->GetTextExtent( s
, &lw
, &lh
);
1185 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1187 m_gi
->m_rectAll
.width
= lw
;
1189 m_gi
->m_rectLabel
.width
= lw
;
1190 m_gi
->m_rectLabel
.height
= lh
;
1193 if (item
->HasImage())
1196 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1197 m_gi
->m_rectIcon
.width
= w
+ 8;
1198 m_gi
->m_rectIcon
.height
= h
+ 8;
1200 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1201 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1202 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1203 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1206 if ( item
->HasText() )
1208 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1209 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1211 else // no text, highlight the icon
1213 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1214 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1219 s
= item
->GetTextForMeasuring();
1221 dc
->GetTextExtent( s
, &lw
, &lh
);
1225 m_gi
->m_rectLabel
.width
= lw
;
1226 m_gi
->m_rectLabel
.height
= lh
;
1228 m_gi
->m_rectAll
.width
= lw
;
1229 m_gi
->m_rectAll
.height
= lh
;
1231 if (item
->HasImage())
1234 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1235 m_gi
->m_rectIcon
.width
= w
;
1236 m_gi
->m_rectIcon
.height
= h
;
1238 m_gi
->m_rectAll
.width
+= 4 + w
;
1239 if (h
> m_gi
->m_rectAll
.height
)
1240 m_gi
->m_rectAll
.height
= h
;
1243 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1244 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1248 wxFAIL_MSG( _T("unexpected call to SetSize") );
1252 wxFAIL_MSG( _T("unknown mode") );
1256 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
1258 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1259 wxCHECK_RET( node
, _T("no subitems at all??") );
1261 wxListItemData
*item
= node
->GetData();
1263 switch ( GetMode() )
1266 case wxLC_SMALL_ICON
:
1267 m_gi
->m_rectAll
.x
= x
;
1268 m_gi
->m_rectAll
.y
= y
;
1270 if ( item
->HasImage() )
1272 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
1273 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
1274 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1277 if ( item
->HasText() )
1279 if (m_gi
->m_rectAll
.width
> spacing
)
1280 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1282 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2 + (spacing
/2) - (m_gi
->m_rectLabel
.width
/2);
1283 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1284 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1285 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1287 else // no text, highlight the icon
1289 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1290 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1295 m_gi
->m_rectAll
.x
= x
;
1296 m_gi
->m_rectAll
.y
= y
;
1298 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1299 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1300 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1302 if (item
->HasImage())
1304 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1305 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1306 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 6 + m_gi
->m_rectIcon
.width
;
1310 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1315 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1319 wxFAIL_MSG( _T("unknown mode") );
1323 void wxListLineData::InitItems( int num
)
1325 for (int i
= 0; i
< num
; i
++)
1326 m_items
.Append( new wxListItemData(m_owner
) );
1329 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1331 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1332 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1334 wxListItemData
*item
= node
->GetData();
1335 item
->SetItem( info
);
1338 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1340 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1343 wxListItemData
*item
= node
->GetData();
1344 item
->GetItem( info
);
1348 wxString
wxListLineData::GetText(int index
) const
1352 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1355 wxListItemData
*item
= node
->GetData();
1356 s
= item
->GetText();
1362 void wxListLineData::SetText( int index
, const wxString s
)
1364 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1367 wxListItemData
*item
= node
->GetData();
1372 void wxListLineData::SetImage( int index
, int image
)
1374 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1375 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1377 wxListItemData
*item
= node
->GetData();
1378 item
->SetImage(image
);
1381 int wxListLineData::GetImage( int index
) const
1383 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1384 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1386 wxListItemData
*item
= node
->GetData();
1387 return item
->GetImage();
1390 wxListItemAttr
*wxListLineData::GetAttr() const
1392 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1393 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1395 wxListItemData
*item
= node
->GetData();
1396 return item
->GetAttr();
1399 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1401 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1402 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1404 wxListItemData
*item
= node
->GetData();
1405 item
->SetAttr(attr
);
1408 bool wxListLineData::SetAttributes(wxDC
*dc
,
1409 const wxListItemAttr
*attr
,
1412 wxWindow
*listctrl
= m_owner
->GetParent();
1416 // don't use foreground colour for drawing highlighted items - this might
1417 // make them completely invisible (and there is no way to do bit
1418 // arithmetics on wxColour, unfortunately)
1422 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1426 if ( attr
&& attr
->HasTextColour() )
1428 colText
= attr
->GetTextColour();
1432 colText
= listctrl
->GetForegroundColour();
1436 dc
->SetTextForeground(colText
);
1440 if ( attr
&& attr
->HasFont() )
1442 font
= attr
->GetFont();
1446 font
= listctrl
->GetFont();
1452 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1453 if ( highlighted
|| hasBgCol
)
1457 dc
->SetBrush( *m_owner
->GetHighlightBrush() );
1461 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1464 dc
->SetPen( *wxTRANSPARENT_PEN
);
1472 void wxListLineData::Draw( wxDC
*dc
)
1474 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1475 wxCHECK_RET( node
, _T("no subitems at all??") );
1477 bool highlighted
= IsHighlighted();
1479 wxListItemAttr
*attr
= GetAttr();
1481 if ( SetAttributes(dc
, attr
, highlighted
) )
1483 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1486 // just for debugging to better see where the items are
1488 dc
->SetPen(*wxRED_PEN
);
1489 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
1490 dc
->DrawRectangle( m_gi
->m_rectAll
);
1491 dc
->SetPen(*wxGREEN_PEN
);
1492 dc
->DrawRectangle( m_gi
->m_rectIcon
);
1495 wxListItemData
*item
= node
->GetData();
1496 if (item
->HasImage())
1498 // centre the image inside our rectangle, this looks nicer when items
1499 // ae aligned in a row
1500 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
1502 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
1505 if (item
->HasText())
1507 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
1509 wxDCClipper
clipper(*dc
, rectLabel
);
1510 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1514 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1516 const wxRect
& rectHL
,
1519 // TODO: later we should support setting different attributes for
1520 // different columns - to do it, just add "col" argument to
1521 // GetAttr() and move these lines into the loop below
1522 wxListItemAttr
*attr
= GetAttr();
1523 if ( SetAttributes(dc
, attr
, highlighted
) )
1525 dc
->DrawRectangle( rectHL
);
1528 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1529 y
= rect
.y
+ (LINE_SPACING
+ EXTRA_HEIGHT
) / 2;
1532 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1534 node
= node
->GetNext(), col
++ )
1536 wxListItemData
*item
= node
->GetData();
1538 int width
= m_owner
->GetColumnWidth(col
);
1542 if ( item
->HasImage() )
1545 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, y
);
1546 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1548 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
1554 wxDCClipper
clipper(*dc
, xOld
, y
, width
- 8, rect
.height
);
1556 if ( item
->HasText() )
1558 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, y
, width
- 8);
1563 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
1564 const wxString
&text
,
1570 wxString drawntext
, ellipsis
;
1571 wxCoord w
, h
, base_w
;
1574 // determine if the string can fit inside the current width
1575 dc
->GetTextExtent(text
, &w
, &h
);
1578 // it can, draw it using the items alignment
1579 m_owner
->GetColumn(col
, item
);
1580 switch ( item
.GetAlign() )
1583 wxFAIL_MSG( _T("unknown list item format") );
1586 case wxLIST_FORMAT_LEFT
:
1590 case wxLIST_FORMAT_RIGHT
:
1594 case wxLIST_FORMAT_CENTER
:
1595 x
+= (width
- w
) / 2;
1599 dc
->DrawText(text
, x
, y
);
1601 else // otherwise, truncate and add an ellipsis if possible
1603 // determine the base width
1604 ellipsis
= wxString(wxT("..."));
1605 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1607 // continue until we have enough space or only one character left
1609 size_t len
= text
.Length();
1610 drawntext
= text
.Left(len
);
1613 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
1614 drawntext
.RemoveLast();
1617 if (w
+ base_w
<= width
)
1621 // if still not enough space, remove ellipsis characters
1622 while (ellipsis
.Length() > 0 && w
+ base_w
> width
)
1624 ellipsis
= ellipsis
.Left(ellipsis
.Length() - 1);
1625 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1628 // now draw the text
1629 dc
->DrawText(drawntext
, x
, y
);
1630 dc
->DrawText(ellipsis
, x
+ w
, y
);
1634 bool wxListLineData::Highlight( bool on
)
1636 wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") );
1638 if ( on
== m_highlighted
)
1646 void wxListLineData::ReverseHighlight( void )
1648 Highlight(!IsHighlighted());
1651 //-----------------------------------------------------------------------------
1652 // wxListHeaderWindow
1653 //-----------------------------------------------------------------------------
1655 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
)
1657 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1658 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1659 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1660 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1663 void wxListHeaderWindow::Init()
1665 m_currentCursor
= (wxCursor
*) NULL
;
1666 m_isDragging
= false;
1670 wxListHeaderWindow::wxListHeaderWindow()
1674 m_owner
= (wxListMainWindow
*) NULL
;
1675 m_resizeCursor
= (wxCursor
*) NULL
;
1678 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
1680 wxListMainWindow
*owner
,
1684 const wxString
&name
)
1685 : wxWindow( win
, id
, pos
, size
, style
, name
)
1690 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1693 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
1694 SetOwnForegroundColour( attr
.colFg
);
1695 SetOwnBackgroundColour( attr
.colBg
);
1697 SetOwnFont( attr
.font
);
1699 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
1700 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1702 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
1706 wxListHeaderWindow::~wxListHeaderWindow()
1708 delete m_resizeCursor
;
1711 #ifdef __WXUNIVERSAL__
1712 #include "wx/univ/renderer.h"
1713 #include "wx/univ/theme.h"
1716 // shift the DC origin to match the position of the main window horz
1717 // scrollbar: this allows us to always use logical coords
1718 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1721 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1724 m_owner
->GetViewStart( &x
, NULL
);
1726 // account for the horz scrollbar offset
1727 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
1730 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1732 wxPaintDC
dc( this );
1739 dc
.SetFont( GetFont() );
1741 // width and height of the entire header window
1743 GetClientSize( &w
, &h
);
1744 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1746 dc
.SetBackgroundMode(wxTRANSPARENT
);
1748 dc
.SetTextForeground(GetForegroundColour());
1750 int x
= HEADER_OFFSET_X
;
1752 int numColumns
= m_owner
->GetColumnCount();
1754 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1756 m_owner
->GetColumn( i
, item
);
1757 int wCol
= item
.m_width
;
1759 // the width of the rect to draw: make it smaller to fit entirely
1760 // inside the column rect
1768 wxRendererNative::Get().DrawHeaderButton
1772 wxRect(x
, HEADER_OFFSET_Y
, cw
, ch
),
1773 m_parent
->IsEnabled() ? 0
1774 : (int)wxCONTROL_DISABLED
1777 // see if we have enough space for the column label
1779 // for this we need the width of the text
1782 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1783 wLabel
+= 2*EXTRA_WIDTH
;
1785 // and the width of the icon, if any
1786 static const int MARGIN_BETWEEN_TEXT_AND_ICON
= 2;
1787 int ix
= 0, // init them just to suppress the compiler warnings
1789 const int image
= item
.m_image
;
1790 wxImageListType
*imageList
;
1793 imageList
= m_owner
->m_small_image_list
;
1796 imageList
->GetSize(image
, ix
, iy
);
1797 wLabel
+= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1805 // ignore alignment if there is not enough space anyhow
1807 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1810 wxFAIL_MSG( _T("unknown list item format") );
1813 case wxLIST_FORMAT_LEFT
:
1817 case wxLIST_FORMAT_RIGHT
:
1818 xAligned
= x
+ cw
- wLabel
;
1821 case wxLIST_FORMAT_CENTER
:
1822 xAligned
= x
+ (cw
- wLabel
) / 2;
1827 // if we have an image, draw it on the right of the label
1834 xAligned
+ wLabel
- ix
- MARGIN_BETWEEN_TEXT_AND_ICON
,
1835 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1836 wxIMAGELIST_DRAW_TRANSPARENT
1839 cw
-= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1842 // draw the text clipping it so that it doesn't overwrite the column
1844 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1846 dc
.DrawText( item
.GetText(),
1847 xAligned
+ EXTRA_WIDTH
, h
/ 2 - hLabel
/ 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT );
1855 void wxListHeaderWindow::DrawCurrent()
1857 int x1
= m_currentX
;
1859 m_owner
->ClientToScreen( &x1
, &y1
);
1861 int x2
= m_currentX
;
1863 m_owner
->GetClientSize( NULL
, &y2
);
1864 m_owner
->ClientToScreen( &x2
, &y2
);
1867 dc
.SetLogicalFunction( wxINVERT
);
1868 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1869 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1873 dc
.DrawLine( x1
, y1
, x2
, y2
);
1875 dc
.SetLogicalFunction( wxCOPY
);
1877 dc
.SetPen( wxNullPen
);
1878 dc
.SetBrush( wxNullBrush
);
1881 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1883 // we want to work with logical coords
1885 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1886 int y
= event
.GetY();
1890 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1892 // we don't draw the line beyond our window, but we allow dragging it
1895 GetClientSize( &w
, NULL
);
1896 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1899 // erase the line if it was drawn
1900 if ( m_currentX
< w
)
1903 if (event
.ButtonUp())
1906 m_isDragging
= false;
1908 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1909 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1916 m_currentX
= m_minX
+ 7;
1918 // draw in the new location
1919 if ( m_currentX
< w
)
1923 else // not dragging
1926 bool hit_border
= false;
1928 // end of the current column
1931 // find the column where this event occurred
1933 countCol
= m_owner
->GetColumnCount();
1934 for (col
= 0; col
< countCol
; col
++)
1936 xpos
+= m_owner
->GetColumnWidth( col
);
1939 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1941 // near the column border
1948 // inside the column
1955 if ( col
== countCol
)
1958 if (event
.LeftDown() || event
.RightUp())
1960 if (hit_border
&& event
.LeftDown())
1962 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1963 event
.GetPosition()) )
1965 m_isDragging
= true;
1970 //else: column resizing was vetoed by the user code
1972 else // click on a column
1974 SendListEvent( event
.LeftDown()
1975 ? wxEVT_COMMAND_LIST_COL_CLICK
1976 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1977 event
.GetPosition());
1980 else if (event
.Moving())
1985 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1986 m_currentCursor
= m_resizeCursor
;
1990 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1991 m_currentCursor
= wxSTANDARD_CURSOR
;
1995 SetCursor(*m_currentCursor
);
2000 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
2002 m_owner
->SetFocus();
2006 bool wxListHeaderWindow::SendListEvent(wxEventType type
, wxPoint pos
)
2008 wxWindow
*parent
= GetParent();
2009 wxListEvent
le( type
, parent
->GetId() );
2010 le
.SetEventObject( parent
);
2011 le
.m_pointDrag
= pos
;
2013 // the position should be relative to the parent window, not
2014 // this one for compatibility with MSW and common sense: the
2015 // user code doesn't know anything at all about this header
2016 // window, so why should it get positions relative to it?
2017 le
.m_pointDrag
.y
-= GetSize().y
;
2019 le
.m_col
= m_column
;
2020 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
2023 //-----------------------------------------------------------------------------
2024 // wxListRenameTimer (internal)
2025 //-----------------------------------------------------------------------------
2027 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2032 void wxListRenameTimer::Notify()
2034 m_owner
->OnRenameTimer();
2037 //-----------------------------------------------------------------------------
2038 // wxListTextCtrl (internal)
2039 //-----------------------------------------------------------------------------
2041 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
2042 EVT_CHAR (wxListTextCtrl::OnChar
)
2043 EVT_KEY_UP (wxListTextCtrl::OnKeyUp
)
2044 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
2047 wxListTextCtrl::wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
)
2048 : m_startValue(owner
->GetItemText(itemEdit
)),
2049 m_itemEdited(itemEdit
)
2053 m_aboutToFinish
= false;
2055 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
2057 m_owner
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
2058 &rectLabel
.x
, &rectLabel
.y
);
2060 (void)Create(owner
, wxID_ANY
, m_startValue
,
2061 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2062 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
2065 void wxListTextCtrl::Finish()
2069 wxPendingDelete
.Append(this);
2073 m_owner
->SetFocusIgnoringChildren();
2077 bool wxListTextCtrl::AcceptChanges()
2079 const wxString value
= GetValue();
2081 if ( value
== m_startValue
)
2083 // nothing changed, always accept
2087 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
2089 // vetoed by the user
2093 // accepted, do rename the item
2094 m_owner
->SetItemText(m_itemEdited
, value
);
2099 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
2101 switch ( event
.m_keyCode
)
2104 m_aboutToFinish
= true;
2105 // Notify the owner about the changes
2107 // Even if vetoed, close the control (consistent with MSW)
2113 m_owner
->OnRenameCancelled( m_itemEdited
);
2121 void wxListTextCtrl::OnKeyUp( wxKeyEvent
&event
)
2129 // auto-grow the textctrl:
2130 wxSize parentSize
= m_owner
->GetSize();
2131 wxPoint myPos
= GetPosition();
2132 wxSize mySize
= GetSize();
2134 GetTextExtent(GetValue() + _T("MM"), &sx
, &sy
);
2135 if (myPos
.x
+ sx
> parentSize
.x
)
2136 sx
= parentSize
.x
- myPos
.x
;
2139 SetSize(sx
, wxDefaultCoord
);
2144 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&event
)
2146 if ( !m_finished
&& !m_aboutToFinish
)
2148 // We must finish regardless of success, otherwise we'll get
2152 if ( !AcceptChanges() )
2153 m_owner
->OnRenameCancelled( m_itemEdited
);
2156 // We must let the native text control handle focus, too, otherwise
2157 // it could have problems with the cursor (e.g., in wxGTK).
2161 //-----------------------------------------------------------------------------
2163 //-----------------------------------------------------------------------------
2165 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
)
2167 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2168 EVT_PAINT (wxListMainWindow::OnPaint
)
2169 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2170 EVT_CHAR (wxListMainWindow::OnChar
)
2171 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2172 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2173 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2174 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2177 void wxListMainWindow::Init()
2182 m_lineTo
= (size_t)-1;
2188 m_small_image_list
= (wxImageListType
*) NULL
;
2189 m_normal_image_list
= (wxImageListType
*) NULL
;
2191 m_small_spacing
= 30;
2192 m_normal_spacing
= 40;
2196 m_isCreated
= false;
2198 m_lastOnSame
= false;
2199 m_renameTimer
= new wxListRenameTimer( this );
2203 m_lineSelectSingleOnUp
=
2204 m_lineBeforeLastClicked
= (size_t)-1;
2209 wxListMainWindow::wxListMainWindow()
2214 m_highlightUnfocusedBrush
= (wxBrush
*) NULL
;
2217 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2222 const wxString
&name
)
2223 : wxScrolledWindow( parent
, id
, pos
, size
,
2224 style
| wxHSCROLL
| wxVSCROLL
, name
)
2228 m_highlightBrush
= new wxBrush
2230 wxSystemSettings::GetColour
2232 wxSYS_COLOUR_HIGHLIGHT
2237 m_highlightUnfocusedBrush
= new wxBrush
2239 wxSystemSettings::GetColour
2241 wxSYS_COLOUR_BTNSHADOW
2249 SetScrollbars( 0, 0, 0, 0, 0, 0 );
2251 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
2252 SetOwnForegroundColour( attr
.colFg
);
2253 SetOwnBackgroundColour( attr
.colBg
);
2255 SetOwnFont( attr
.font
);
2258 wxListMainWindow::~wxListMainWindow()
2261 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
2262 WX_CLEAR_ARRAY(m_aColWidths
);
2264 delete m_highlightBrush
;
2265 delete m_highlightUnfocusedBrush
;
2267 delete m_renameTimer
;
2270 void wxListMainWindow::CacheLineData(size_t line
)
2272 wxGenericListCtrl
*listctrl
= GetListCtrl();
2274 wxListLineData
*ld
= GetDummyLine();
2276 size_t countCol
= GetColumnCount();
2277 for ( size_t col
= 0; col
< countCol
; col
++ )
2279 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2282 ld
->SetImage(listctrl
->OnGetItemImage(line
));
2283 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2286 wxListLineData
*wxListMainWindow::GetDummyLine() const
2288 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2290 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2292 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2294 // we need to recreate the dummy line if the number of columns in the
2295 // control changed as it would have the incorrect number of fields
2297 if ( !m_lines
.IsEmpty() &&
2298 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
2300 self
->m_lines
.Clear();
2303 if ( m_lines
.IsEmpty() )
2305 wxListLineData
*line
= new wxListLineData(self
);
2306 self
->m_lines
.Add(line
);
2308 // don't waste extra memory -- there never going to be anything
2309 // else/more in this array
2310 self
->m_lines
.Shrink();
2316 // ----------------------------------------------------------------------------
2317 // line geometry (report mode only)
2318 // ----------------------------------------------------------------------------
2320 wxCoord
wxListMainWindow::GetLineHeight() const
2322 // we cache the line height as calling GetTextExtent() is slow
2323 if ( !m_lineHeight
)
2325 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2327 wxClientDC
dc( self
);
2328 dc
.SetFont( GetFont() );
2331 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2333 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
2337 m_small_image_list
->GetSize(0, iw
, ih
);
2342 self
->m_lineHeight
= y
+ LINE_SPACING
;
2345 return m_lineHeight
;
2348 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2350 wxASSERT_MSG( InReportView(), _T("only works in report mode") );
2352 return LINE_SPACING
+ line
*GetLineHeight();
2355 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2357 if ( !InReportView() )
2358 return GetLine(line
)->m_gi
->m_rectAll
;
2361 rect
.x
= HEADER_OFFSET_X
;
2362 rect
.y
= GetLineY(line
);
2363 rect
.width
= GetHeaderWidth();
2364 rect
.height
= GetLineHeight();
2369 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2371 if ( !InReportView() )
2372 return GetLine(line
)->m_gi
->m_rectLabel
;
2375 rect
.x
= HEADER_OFFSET_X
;
2376 rect
.y
= GetLineY(line
);
2377 rect
.width
= GetColumnWidth(0);
2378 rect
.height
= GetLineHeight();
2383 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2385 if ( !InReportView() )
2386 return GetLine(line
)->m_gi
->m_rectIcon
;
2388 wxListLineData
*ld
= GetLine(line
);
2389 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2392 rect
.x
= HEADER_OFFSET_X
;
2393 rect
.y
= GetLineY(line
);
2394 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2399 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2401 return InReportView() ? GetLineRect(line
)
2402 : GetLine(line
)->m_gi
->m_rectHighlight
;
2405 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2407 wxASSERT_MSG( line
< GetItemCount(), _T("invalid line in HitTestLine") );
2409 wxListLineData
*ld
= GetLine(line
);
2411 if ( ld
->HasImage() && GetLineIconRect(line
).Inside(x
, y
) )
2412 return wxLIST_HITTEST_ONITEMICON
;
2414 // VS: Testing for "ld->HasText() || InReportView()" instead of
2415 // "ld->HasText()" is needed to make empty lines in report view
2417 if ( ld
->HasText() || InReportView() )
2419 wxRect rect
= InReportView() ? GetLineRect(line
)
2420 : GetLineLabelRect(line
);
2422 if ( rect
.Inside(x
, y
) )
2423 return wxLIST_HITTEST_ONITEMLABEL
;
2429 // ----------------------------------------------------------------------------
2430 // highlight (selection) handling
2431 // ----------------------------------------------------------------------------
2433 bool wxListMainWindow::IsHighlighted(size_t line
) const
2437 return m_selStore
.IsSelected(line
);
2441 wxListLineData
*ld
= GetLine(line
);
2442 wxCHECK_MSG( ld
, false, _T("invalid index in IsHighlighted") );
2444 return ld
->IsHighlighted();
2448 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2454 wxArrayInt linesChanged
;
2455 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2458 // meny items changed state, refresh everything
2459 RefreshLines(lineFrom
, lineTo
);
2461 else // only a few items changed state, refresh only them
2463 size_t count
= linesChanged
.GetCount();
2464 for ( size_t n
= 0; n
< count
; n
++ )
2466 RefreshLine(linesChanged
[n
]);
2470 else // iterate over all items in non report view
2472 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2474 if ( HighlightLine(line
, highlight
) )
2482 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2488 changed
= m_selStore
.SelectItem(line
, highlight
);
2492 wxListLineData
*ld
= GetLine(line
);
2493 wxCHECK_MSG( ld
, false, _T("invalid index in HighlightLine") );
2495 changed
= ld
->Highlight(highlight
);
2500 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2501 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2507 void wxListMainWindow::RefreshLine( size_t line
)
2509 if ( InReportView() )
2511 size_t visibleFrom
, visibleTo
;
2512 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2514 if ( line
< visibleFrom
|| line
> visibleTo
)
2518 wxRect rect
= GetLineRect(line
);
2520 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2521 RefreshRect( rect
);
2524 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2526 // we suppose that they are ordered by caller
2527 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2529 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2531 if ( InReportView() )
2533 size_t visibleFrom
, visibleTo
;
2534 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2536 if ( lineFrom
< visibleFrom
)
2537 lineFrom
= visibleFrom
;
2538 if ( lineTo
> visibleTo
)
2543 rect
.y
= GetLineY(lineFrom
);
2544 rect
.width
= GetClientSize().x
;
2545 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2547 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2548 RefreshRect( rect
);
2552 // TODO: this should be optimized...
2553 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2560 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2562 if ( InReportView() )
2564 size_t visibleFrom
, visibleTo
;
2565 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2567 if ( lineFrom
< visibleFrom
)
2568 lineFrom
= visibleFrom
;
2569 else if ( lineFrom
> visibleTo
)
2574 rect
.y
= GetLineY(lineFrom
);
2575 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2577 wxSize size
= GetClientSize();
2578 rect
.width
= size
.x
;
2579 // refresh till the bottom of the window
2580 rect
.height
= size
.y
- rect
.y
;
2582 RefreshRect( rect
);
2586 // TODO: how to do it more efficiently?
2591 void wxListMainWindow::RefreshSelected()
2597 if ( InReportView() )
2599 GetVisibleLinesRange(&from
, &to
);
2604 to
= GetItemCount() - 1;
2607 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
2609 RefreshLine(m_current
);
2612 for ( size_t line
= from
; line
<= to
; line
++ )
2614 // NB: the test works as expected even if m_current == -1
2615 if ( line
!= m_current
&& IsHighlighted(line
) )
2622 void wxListMainWindow::Freeze()
2627 void wxListMainWindow::Thaw()
2629 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen list control?") );
2631 if ( !--m_freezeCount
)
2637 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2639 // Note: a wxPaintDC must be constructed even if no drawing is
2640 // done (a Windows requirement).
2641 wxPaintDC
dc( this );
2643 if ( IsEmpty() || m_freezeCount
)
2645 // nothing to draw or not the moment to draw it
2651 // delay the repainting until we calculate all the items positions
2658 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2662 dc
.SetFont( GetFont() );
2664 if ( InReportView() )
2666 int lineHeight
= GetLineHeight();
2668 size_t visibleFrom
, visibleTo
;
2669 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2672 wxCoord xOrig
, yOrig
;
2673 CalcUnscrolledPosition(0, 0, &xOrig
, &yOrig
);
2675 // tell the caller cache to cache the data
2678 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2679 GetParent()->GetId());
2680 evCache
.SetEventObject( GetParent() );
2681 evCache
.m_oldItemIndex
= visibleFrom
;
2682 evCache
.m_itemIndex
= visibleTo
;
2683 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2686 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2688 rectLine
= GetLineRect(line
);
2690 if ( !IsExposed(rectLine
.x
- xOrig
, rectLine
.y
- yOrig
,
2691 rectLine
.width
, rectLine
.height
) )
2693 // don't redraw unaffected lines to avoid flicker
2697 GetLine(line
)->DrawInReportMode( &dc
,
2699 GetLineHighlightRect(line
),
2700 IsHighlighted(line
) );
2703 if ( HasFlag(wxLC_HRULES
) )
2705 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2706 wxSize clientSize
= GetClientSize();
2708 // Don't draw the first one
2709 for ( size_t i
= visibleFrom
+1; i
<= visibleTo
; i
++ )
2712 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2713 dc
.DrawLine(0 - dev_x
, i
*lineHeight
,
2714 clientSize
.x
- dev_x
, i
*lineHeight
);
2717 // Draw last horizontal rule
2718 if ( visibleTo
== GetItemCount() - 1 )
2721 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2722 dc
.DrawLine(0 - dev_x
, (m_lineTo
+1)*lineHeight
,
2723 clientSize
.x
- dev_x
, (m_lineTo
+1)*lineHeight
);
2727 // Draw vertical rules if required
2728 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2730 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2732 wxRect firstItemRect
;
2733 wxRect lastItemRect
;
2734 GetItemRect(visibleFrom
, firstItemRect
);
2735 GetItemRect(visibleTo
, lastItemRect
);
2736 int x
= firstItemRect
.GetX();
2738 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2739 for (int col
= 0; col
< GetColumnCount(); col
++)
2741 int colWidth
= GetColumnWidth(col
);
2743 dc
.DrawLine(x
- dev_x
- 2, firstItemRect
.GetY() - 1 - dev_y
,
2744 x
- dev_x
- 2, lastItemRect
.GetBottom() + 1 - dev_y
);
2750 size_t count
= GetItemCount();
2751 for ( size_t i
= 0; i
< count
; i
++ )
2753 GetLine(i
)->Draw( &dc
);
2758 // Don't draw rect outline under Mac at all.
2763 dc
.SetPen( *wxBLACK_PEN
);
2764 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2765 dc
.DrawRectangle( GetLineHighlightRect(m_current
) );
2773 void wxListMainWindow::HighlightAll( bool on
)
2775 if ( IsSingleSel() )
2777 wxASSERT_MSG( !on
, _T("can't do this in a single sel control") );
2779 // we just have one item to turn off
2780 if ( HasCurrent() && IsHighlighted(m_current
) )
2782 HighlightLine(m_current
, false);
2783 RefreshLine(m_current
);
2788 HighlightLines(0, GetItemCount() - 1, on
);
2792 void wxListMainWindow::SendNotify( size_t line
,
2793 wxEventType command
,
2796 wxListEvent
le( command
, GetParent()->GetId() );
2797 le
.SetEventObject( GetParent() );
2798 le
.m_itemIndex
= line
;
2800 // set only for events which have position
2801 if ( point
!= wxDefaultPosition
)
2802 le
.m_pointDrag
= point
;
2804 // don't try to get the line info for virtual list controls: the main
2805 // program has it anyhow and if we did it would result in accessing all
2806 // the lines, even those which are not visible now and this is precisely
2807 // what we're trying to avoid
2808 if ( !IsVirtual() && (command
!= wxEVT_COMMAND_LIST_DELETE_ITEM
) )
2810 if ( line
!= (size_t)-1 )
2812 GetLine(line
)->GetItem( 0, le
.m_item
);
2814 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2816 //else: there may be no more such item
2818 GetParent()->GetEventHandler()->ProcessEvent( le
);
2821 void wxListMainWindow::ChangeCurrent(size_t current
)
2823 m_current
= current
;
2825 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2828 void wxListMainWindow::EditLabel( long item
)
2830 wxCHECK_RET( (item
>= 0) && ((size_t)item
< GetItemCount()),
2831 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2833 size_t itemEdit
= (size_t)item
;
2835 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2836 le
.SetEventObject( GetParent() );
2837 le
.m_itemIndex
= item
;
2838 wxListLineData
*data
= GetLine(itemEdit
);
2839 wxCHECK_RET( data
, _T("invalid index in EditLabel()") );
2840 data
->GetItem( 0, le
.m_item
);
2841 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2843 // vetoed by user code
2847 // We have to call this here because the label in question might just have
2848 // been added and no screen update taken place.
2852 wxListTextCtrl
*text
= new wxListTextCtrl(this, itemEdit
);
2857 void wxListMainWindow::OnRenameTimer()
2859 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2861 EditLabel( m_current
);
2864 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2866 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2867 le
.SetEventObject( GetParent() );
2868 le
.m_itemIndex
= itemEdit
;
2870 wxListLineData
*data
= GetLine(itemEdit
);
2871 wxCHECK_MSG( data
, false, _T("invalid index in OnRenameAccept()") );
2873 data
->GetItem( 0, le
.m_item
);
2874 le
.m_item
.m_text
= value
;
2875 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2879 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2881 // let owner know that the edit was cancelled
2882 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2884 le
.SetEditCanceled(true);
2886 le
.SetEventObject( GetParent() );
2887 le
.m_itemIndex
= itemEdit
;
2889 wxListLineData
*data
= GetLine(itemEdit
);
2890 wxCHECK_RET( data
, _T("invalid index in OnRenameCancelled()") );
2892 data
->GetItem( 0, le
.m_item
);
2894 GetEventHandler()->ProcessEvent( le
);
2897 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2899 event
.SetEventObject( GetParent() );
2900 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2903 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
2905 // let the base handle mouse wheel events.
2910 if ( !HasCurrent() || IsEmpty() )
2916 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2917 event
.ButtonDClick()) )
2920 int x
= event
.GetX();
2921 int y
= event
.GetY();
2922 CalcUnscrolledPosition( x
, y
, &x
, &y
);
2924 // where did we hit it (if we did)?
2927 size_t count
= GetItemCount(),
2930 if ( InReportView() )
2932 current
= y
/ GetLineHeight();
2933 if ( current
< count
)
2934 hitResult
= HitTestLine(current
, x
, y
);
2938 // TODO: optimize it too! this is less simple than for report view but
2939 // enumerating all items is still not a way to do it!!
2940 for ( current
= 0; current
< count
; current
++ )
2942 hitResult
= HitTestLine(current
, x
, y
);
2948 if (event
.Dragging())
2950 if (m_dragCount
== 0)
2952 // we have to report the raw, physical coords as we want to be
2953 // able to call HitTest(event.m_pointDrag) from the user code to
2954 // get the item being dragged
2955 m_dragStart
= event
.GetPosition();
2960 if (m_dragCount
!= 3)
2963 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2964 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2966 wxListEvent
le( command
, GetParent()->GetId() );
2967 le
.SetEventObject( GetParent() );
2968 le
.m_itemIndex
= m_lineLastClicked
;
2969 le
.m_pointDrag
= m_dragStart
;
2970 GetParent()->GetEventHandler()->ProcessEvent( le
);
2981 // outside of any item
2985 bool forceClick
= false;
2986 if (event
.ButtonDClick())
2988 m_renameTimer
->Stop();
2989 m_lastOnSame
= false;
2991 if ( current
== m_lineLastClicked
)
2993 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2999 // The first click was on another item, so don't interpret this as
3000 // a double click, but as a simple click instead
3007 if(m_lineSelectSingleOnUp
!= (size_t) -1)
3009 // select single line
3010 HighlightAll( false );
3011 ReverseHighlight(m_lineSelectSingleOnUp
);
3015 if ((current
== m_current
) &&
3016 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
3017 HasFlag(wxLC_EDIT_LABELS
) )
3019 m_renameTimer
->Start( 100, true );
3022 m_lastOnSame
= false;
3023 m_lineSelectSingleOnUp
= (size_t) -1;
3027 // This is necessary, because after a DnD operation in
3028 // from and to ourself, the up event is swallowed by the
3029 // DnD code. So on next non-up event (which means here and
3030 // now) m_lineSelectSingleOnUp should be reset.
3031 m_lineSelectSingleOnUp
= (size_t) -1;
3033 if (event
.RightDown())
3035 m_lineBeforeLastClicked
= m_lineLastClicked
;
3036 m_lineLastClicked
= current
;
3037 // If the item is already selected, do not update the selection.
3038 // Multi-selections should not be cleared if a selected item is clicked.
3039 if (!IsHighlighted(current
))
3041 HighlightAll(false);
3042 ChangeCurrent(current
);
3043 ReverseHighlight(m_current
);
3045 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
,
3046 event
.GetPosition() );
3047 // Allow generation of context menu event
3050 else if (event
.MiddleDown())
3052 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
3054 else if ( event
.LeftDown() || forceClick
)
3056 m_lineBeforeLastClicked
= m_lineLastClicked
;
3057 m_lineLastClicked
= current
;
3059 size_t oldCurrent
= m_current
;
3060 bool oldWasSelected
= IsHighlighted(m_current
);
3062 bool cmdModifierDown
= event
.CmdDown();
3063 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
3065 if( IsSingleSel() || !IsHighlighted(current
) )
3067 HighlightAll( false );
3069 ChangeCurrent(current
);
3071 ReverseHighlight(m_current
);
3073 else // multi sel & current is highlighted & no mod keys
3075 m_lineSelectSingleOnUp
= current
;
3076 ChangeCurrent(current
); // change focus
3079 else // multi sel & either ctrl or shift is down
3081 if (cmdModifierDown
)
3083 ChangeCurrent(current
);
3085 ReverseHighlight(m_current
);
3087 else if (event
.ShiftDown())
3089 ChangeCurrent(current
);
3091 size_t lineFrom
= oldCurrent
,
3094 if ( lineTo
< lineFrom
)
3097 lineFrom
= m_current
;
3100 HighlightLines(lineFrom
, lineTo
);
3102 else // !ctrl, !shift
3104 // test in the enclosing if should make it impossible
3105 wxFAIL_MSG( _T("how did we get here?") );
3109 if (m_current
!= oldCurrent
)
3111 RefreshLine( oldCurrent
);
3114 // forceClick is only set if the previous click was on another item
3115 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
) && oldWasSelected
;
3119 void wxListMainWindow::MoveToItem(size_t item
)
3121 if ( item
== (size_t)-1 )
3124 wxRect rect
= GetLineRect(item
);
3126 int client_w
, client_h
;
3127 GetClientSize( &client_w
, &client_h
);
3129 const int hLine
= GetLineHeight();
3131 int view_x
= SCROLL_UNIT_X
*GetScrollPos( wxHORIZONTAL
);
3132 int view_y
= hLine
*GetScrollPos( wxVERTICAL
);
3134 if ( InReportView() )
3136 // the next we need the range of lines shown it might be different, so
3138 ResetVisibleLinesRange();
3140 if (rect
.y
< view_y
)
3141 Scroll( -1, rect
.y
/hLine
);
3142 if (rect
.y
+rect
.height
+5 > view_y
+client_h
)
3143 Scroll( -1, (rect
.y
+rect
.height
-client_h
+hLine
)/hLine
);
3147 if (rect
.x
-view_x
< 5)
3148 Scroll( (rect
.x
-5)/SCROLL_UNIT_X
, -1 );
3149 if (rect
.x
+rect
.width
-5 > view_x
+client_w
)
3150 Scroll( (rect
.x
+rect
.width
-client_w
+SCROLL_UNIT_X
)/SCROLL_UNIT_X
, -1 );
3154 // ----------------------------------------------------------------------------
3155 // keyboard handling
3156 // ----------------------------------------------------------------------------
3158 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
3160 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
3161 _T("invalid item index in OnArrowChar()") );
3163 size_t oldCurrent
= m_current
;
3165 // in single selection we just ignore Shift as we can't select several
3167 if ( event
.ShiftDown() && !IsSingleSel() )
3169 ChangeCurrent(newCurrent
);
3171 // refresh the old focus to remove it
3172 RefreshLine( oldCurrent
);
3174 // select all the items between the old and the new one
3175 if ( oldCurrent
> newCurrent
)
3177 newCurrent
= oldCurrent
;
3178 oldCurrent
= m_current
;
3181 HighlightLines(oldCurrent
, newCurrent
);
3185 // all previously selected items are unselected unless ctrl is held
3186 if ( !event
.ControlDown() )
3187 HighlightAll(false);
3189 ChangeCurrent(newCurrent
);
3191 // refresh the old focus to remove it
3192 RefreshLine( oldCurrent
);
3194 if ( !event
.ControlDown() )
3196 HighlightLine( m_current
, true );
3200 RefreshLine( m_current
);
3205 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3207 wxWindow
*parent
= GetParent();
3209 /* we propagate the key event up */
3210 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3211 ke
.m_shiftDown
= event
.m_shiftDown
;
3212 ke
.m_controlDown
= event
.m_controlDown
;
3213 ke
.m_altDown
= event
.m_altDown
;
3214 ke
.m_metaDown
= event
.m_metaDown
;
3215 ke
.m_keyCode
= event
.m_keyCode
;
3218 ke
.SetEventObject( parent
);
3219 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3224 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3226 wxWindow
*parent
= GetParent();
3228 /* we send a list_key event up */
3231 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3232 le
.m_itemIndex
= m_current
;
3233 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3234 le
.m_code
= event
.GetKeyCode();
3235 le
.SetEventObject( parent
);
3236 parent
->GetEventHandler()->ProcessEvent( le
);
3239 /* we propagate the char event up */
3240 wxKeyEvent
ke( wxEVT_CHAR
);
3241 ke
.m_shiftDown
= event
.m_shiftDown
;
3242 ke
.m_controlDown
= event
.m_controlDown
;
3243 ke
.m_altDown
= event
.m_altDown
;
3244 ke
.m_metaDown
= event
.m_metaDown
;
3245 ke
.m_keyCode
= event
.m_keyCode
;
3248 ke
.SetEventObject( parent
);
3249 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3251 if (event
.GetKeyCode() == WXK_TAB
)
3253 wxNavigationKeyEvent nevent
;
3254 nevent
.SetWindowChange( event
.ControlDown() );
3255 nevent
.SetDirection( !event
.ShiftDown() );
3256 nevent
.SetEventObject( GetParent()->GetParent() );
3257 nevent
.SetCurrentFocus( m_parent
);
3258 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
3262 /* no item -> nothing to do */
3269 switch (event
.GetKeyCode())
3272 if ( m_current
> 0 )
3273 OnArrowChar( m_current
- 1, event
);
3277 if ( m_current
< (size_t)GetItemCount() - 1 )
3278 OnArrowChar( m_current
+ 1, event
);
3283 OnArrowChar( GetItemCount() - 1, event
);
3288 OnArrowChar( 0, event
);
3293 int steps
= InReportView() ? m_linesPerPage
- 1 : m_current
% m_linesPerPage
;
3295 int index
= m_current
- steps
;
3299 OnArrowChar( index
, event
);
3305 int steps
= InReportView()
3306 ? m_linesPerPage
- 1
3307 : m_linesPerPage
- (m_current
% m_linesPerPage
) - 1;
3309 size_t index
= m_current
+ steps
;
3310 size_t count
= GetItemCount();
3311 if ( index
>= count
)
3314 OnArrowChar( index
, event
);
3319 if ( !InReportView() )
3321 int index
= m_current
- m_linesPerPage
;
3325 OnArrowChar( index
, event
);
3330 if ( !InReportView() )
3332 size_t index
= m_current
+ m_linesPerPage
;
3334 size_t count
= GetItemCount();
3335 if ( index
>= count
)
3338 OnArrowChar( index
, event
);
3343 if ( IsSingleSel() )
3345 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3347 if ( IsHighlighted(m_current
) )
3349 // don't unselect the item in single selection mode
3352 //else: select it in ReverseHighlight() below if unselected
3355 ReverseHighlight(m_current
);
3360 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3368 // ----------------------------------------------------------------------------
3370 // ----------------------------------------------------------------------------
3372 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3376 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3377 event
.SetEventObject( GetParent() );
3378 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3382 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3383 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3384 // which are already drawn correctly resulting in horrible flicker - avoid
3394 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3398 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
3399 event
.SetEventObject( GetParent() );
3400 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3407 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3409 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3411 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3413 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3415 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3417 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3419 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3421 else if ( InReportView() && (m_small_image_list
))
3423 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3427 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3429 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3431 m_normal_image_list
->GetSize( index
, width
, height
);
3433 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3435 m_small_image_list
->GetSize( index
, width
, height
);
3437 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3439 m_small_image_list
->GetSize( index
, width
, height
);
3441 else if ( InReportView() && m_small_image_list
)
3443 m_small_image_list
->GetSize( index
, width
, height
);
3452 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3454 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3455 dc
.SetFont( GetFont() );
3458 dc
.GetTextExtent( s
, &lw
, NULL
);
3460 return lw
+ AUTOSIZE_COL_MARGIN
;
3463 void wxListMainWindow::SetImageList( wxImageListType
*imageList
, int which
)
3467 // calc the spacing from the icon size
3470 if ((imageList
) && (imageList
->GetImageCount()) )
3472 imageList
->GetSize(0, width
, height
);
3475 if (which
== wxIMAGE_LIST_NORMAL
)
3477 m_normal_image_list
= imageList
;
3478 m_normal_spacing
= width
+ 8;
3481 if (which
== wxIMAGE_LIST_SMALL
)
3483 m_small_image_list
= imageList
;
3484 m_small_spacing
= width
+ 14;
3485 m_lineHeight
= 0; // ensure that the line height will be recalc'd
3489 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3494 m_small_spacing
= spacing
;
3498 m_normal_spacing
= spacing
;
3502 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3504 return isSmall
? m_small_spacing
: m_normal_spacing
;
3507 // ----------------------------------------------------------------------------
3509 // ----------------------------------------------------------------------------
3511 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3513 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3515 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3517 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3518 item
.m_width
= GetTextLength( item
.m_text
);
3520 wxListHeaderData
*column
= node
->GetData();
3521 column
->SetItem( item
);
3523 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3525 headerWin
->m_dirty
= true;
3529 // invalidate it as it has to be recalculated
3533 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3535 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3536 _T("invalid column index") );
3538 wxCHECK_RET( InReportView(),
3539 _T("SetColumnWidth() can only be called in report mode.") );
3542 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3544 headerWin
->m_dirty
= true;
3546 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3547 wxCHECK_RET( node
, _T("no column?") );
3549 wxListHeaderData
*column
= node
->GetData();
3551 size_t count
= GetItemCount();
3553 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3555 width
= GetTextLength(column
->GetText());
3557 else if ( width
== wxLIST_AUTOSIZE
)
3561 // TODO: determine the max width somehow...
3562 width
= WIDTH_COL_DEFAULT
;
3566 wxClientDC
dc(this);
3567 dc
.SetFont( GetFont() );
3569 int max
= AUTOSIZE_COL_MARGIN
;
3571 // if the cached column width isn't valid then recalculate it
3572 if (m_aColWidths
.Item(col
)->bNeedsUpdate
)
3574 for (size_t i
= 0; i
< count
; i
++)
3576 wxListLineData
*line
= GetLine(i
);
3577 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3579 wxCHECK_RET( n
, _T("no subitem?") );
3581 wxListItemData
*itemData
= n
->GetData();
3584 itemData
->GetItem(item
);
3585 int itemWidth
= GetItemWidthWithImage(&item
);
3586 if (itemWidth
> max
)
3590 m_aColWidths
.Item(col
)->bNeedsUpdate
= false;
3591 m_aColWidths
.Item(col
)->nMaxWidth
= max
;
3594 max
= m_aColWidths
.Item(col
)->nMaxWidth
;
3595 width
= max
+ AUTOSIZE_COL_MARGIN
;
3599 column
->SetWidth( width
);
3601 // invalidate it as it has to be recalculated
3605 int wxListMainWindow::GetHeaderWidth() const
3607 if ( !m_headerWidth
)
3609 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3611 size_t count
= GetColumnCount();
3612 for ( size_t col
= 0; col
< count
; col
++ )
3614 self
->m_headerWidth
+= GetColumnWidth(col
);
3618 return m_headerWidth
;
3621 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3623 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3624 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3626 wxListHeaderData
*column
= node
->GetData();
3627 column
->GetItem( item
);
3630 int wxListMainWindow::GetColumnWidth( int col
) const
3632 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3633 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3635 wxListHeaderData
*column
= node
->GetData();
3636 return column
->GetWidth();
3639 // ----------------------------------------------------------------------------
3641 // ----------------------------------------------------------------------------
3643 void wxListMainWindow::SetItem( wxListItem
&item
)
3645 long id
= item
.m_itemId
;
3646 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3647 _T("invalid item index in SetItem") );
3651 wxListLineData
*line
= GetLine((size_t)id
);
3652 line
->SetItem( item
.m_col
, item
);
3656 // update the Max Width Cache if needed
3657 int width
= GetItemWidthWithImage(&item
);
3659 if (width
> m_aColWidths
.Item(item
.m_col
)->nMaxWidth
)
3660 m_aColWidths
.Item(item
.m_col
)->nMaxWidth
= width
;
3664 // update the item on screen
3666 GetItemRect(id
, rectItem
);
3667 RefreshRect(rectItem
);
3670 void wxListMainWindow::SetItemStateAll(long state
, long stateMask
)
3675 // first deal with selection
3676 if ( stateMask
& wxLIST_STATE_SELECTED
)
3678 // set/clear select state
3681 // optimized version for virtual listctrl.
3682 m_selStore
.SelectRange(0, GetItemCount() - 1, state
== wxLIST_STATE_SELECTED
);
3685 else if ( state
& wxLIST_STATE_SELECTED
)
3687 const long count
= GetItemCount();
3688 for( long i
= 0; i
< count
; i
++ )
3690 SetItemState( i
, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
3696 // clear for non virtual (somewhat optimized by using GetNextItem())
3698 while ( (i
= GetNextItem(i
, wxLIST_NEXT_ALL
, wxLIST_STATE_SELECTED
)) != -1 )
3700 SetItemState( i
, 0, wxLIST_STATE_SELECTED
);
3705 if ( HasCurrent() && (state
== 0) && (stateMask
& wxLIST_STATE_FOCUSED
) )
3707 // unfocus all: only one item can be focussed, so clearing focus for
3708 // all items is simply clearing focus of the focussed item.
3709 SetItemState(m_current
, state
, stateMask
);
3711 //(setting focus to all items makes no sense, so it is not handled here.)
3714 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3718 SetItemStateAll(state
, stateMask
);
3722 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3723 _T("invalid list ctrl item index in SetItem") );
3725 size_t oldCurrent
= m_current
;
3726 size_t item
= (size_t)litem
; // safe because of the check above
3728 // do we need to change the focus?
3729 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3731 if ( state
& wxLIST_STATE_FOCUSED
)
3733 // don't do anything if this item is already focused
3734 if ( item
!= m_current
)
3736 ChangeCurrent(item
);
3738 if ( oldCurrent
!= (size_t)-1 )
3740 if ( IsSingleSel() )
3742 HighlightLine(oldCurrent
, false);
3745 RefreshLine(oldCurrent
);
3748 RefreshLine( m_current
);
3753 // don't do anything if this item is not focused
3754 if ( item
== m_current
)
3758 if ( IsSingleSel() )
3760 // we must unselect the old current item as well or we
3761 // might end up with more than one selected item in a
3762 // single selection control
3763 HighlightLine(oldCurrent
, false);
3766 RefreshLine( oldCurrent
);
3771 // do we need to change the selection state?
3772 if ( stateMask
& wxLIST_STATE_SELECTED
)
3774 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3776 if ( IsSingleSel() )
3780 // selecting the item also makes it the focused one in the
3782 if ( m_current
!= item
)
3784 ChangeCurrent(item
);
3786 if ( oldCurrent
!= (size_t)-1 )
3788 HighlightLine( oldCurrent
, false );
3789 RefreshLine( oldCurrent
);
3795 // only the current item may be selected anyhow
3796 if ( item
!= m_current
)
3801 if ( HighlightLine(item
, on
) )
3808 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3810 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3811 _T("invalid list ctrl item index in GetItemState()") );
3813 int ret
= wxLIST_STATE_DONTCARE
;
3815 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3817 if ( (size_t)item
== m_current
)
3818 ret
|= wxLIST_STATE_FOCUSED
;
3821 if ( stateMask
& wxLIST_STATE_SELECTED
)
3823 if ( IsHighlighted(item
) )
3824 ret
|= wxLIST_STATE_SELECTED
;
3830 void wxListMainWindow::GetItem( wxListItem
&item
) const
3832 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3833 _T("invalid item index in GetItem") );
3835 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3836 line
->GetItem( item
.m_col
, item
);
3839 // ----------------------------------------------------------------------------
3841 // ----------------------------------------------------------------------------
3843 size_t wxListMainWindow::GetItemCount() const
3845 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3848 void wxListMainWindow::SetItemCount(long count
)
3850 m_selStore
.SetItemCount(count
);
3851 m_countVirt
= count
;
3853 ResetVisibleLinesRange();
3855 // scrollbars must be reset
3859 int wxListMainWindow::GetSelectedItemCount() const
3861 // deal with the quick case first
3862 if ( IsSingleSel() )
3864 return HasCurrent() ? IsHighlighted(m_current
) : false;
3867 // virtual controls remmebers all its selections itself
3869 return m_selStore
.GetSelectedCount();
3871 // TODO: we probably should maintain the number of items selected even for
3872 // non virtual controls as enumerating all lines is really slow...
3873 size_t countSel
= 0;
3874 size_t count
= GetItemCount();
3875 for ( size_t line
= 0; line
< count
; line
++ )
3877 if ( GetLine(line
)->IsHighlighted() )
3884 // ----------------------------------------------------------------------------
3885 // item position/size
3886 // ----------------------------------------------------------------------------
3888 wxRect
wxListMainWindow::GetViewRect() const
3890 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
3891 _T("wxListCtrl::GetViewRect() only works in icon mode") );
3893 // we need to find the longest/tallest label
3896 const int count
= GetItemCount();
3899 for ( int i
= 0; i
< count
; i
++ )
3904 wxCoord x
= r
.GetRight(),
3914 // some fudge needed to make it look prettier
3915 xMax
+= 2*EXTRA_BORDER_X
;
3916 yMax
+= 2*EXTRA_BORDER_Y
;
3918 // account for the scrollbars if necessary
3919 const wxSize sizeAll
= GetClientSize();
3920 if ( xMax
> sizeAll
.x
)
3921 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3922 if ( yMax
> sizeAll
.y
)
3923 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3925 return wxRect(0, 0, xMax
, yMax
);
3928 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
) const
3930 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3931 _T("invalid index in GetItemRect") );
3933 // ensure that we're laid out, otherwise we could return nonsense
3936 wxConstCast(this, wxListMainWindow
)->
3937 RecalculatePositions(true /* no refresh */);
3940 rect
= GetLineRect((size_t)index
);
3942 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3945 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3948 GetItemRect(item
, rect
);
3956 // ----------------------------------------------------------------------------
3957 // geometry calculation
3958 // ----------------------------------------------------------------------------
3960 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3962 wxClientDC
dc( this );
3963 dc
.SetFont( GetFont() );
3965 const size_t count
= GetItemCount();
3968 if ( HasFlag(wxLC_ICON
) )
3969 iconSpacing
= m_normal_spacing
;
3970 else if ( HasFlag(wxLC_SMALL_ICON
) )
3971 iconSpacing
= m_small_spacing
;
3975 // Note that we do not call GetClientSize() here but
3976 // GetSize() and subtract the border size for sunken
3977 // borders manually. This is technically incorrect,
3978 // but we need to know the client area's size WITHOUT
3979 // scrollbars here. Since we don't know if there are
3980 // any scrollbars, we use GetSize() instead. Another
3981 // solution would be to call SetScrollbars() here to
3982 // remove the scrollbars and call GetClientSize() then,
3983 // but this might result in flicker and - worse - will
3984 // reset the scrollbars to 0 which is not good at all
3985 // if you resize a dialog/window, but don't want to
3986 // reset the window scrolling. RR.
3987 // Furthermore, we actually do NOT subtract the border
3988 // width as 2 pixels is just the extra space which we
3989 // need around the actual content in the window. Other-
3990 // wise the text would e.g. touch the upper border. RR.
3993 GetSize( &clientWidth
, &clientHeight
);
3995 const int lineHeight
= GetLineHeight();
3997 if ( InReportView() )
3999 // all lines have the same height and we scroll one line per step
4000 int entireHeight
= count
*lineHeight
+ LINE_SPACING
;
4002 m_linesPerPage
= clientHeight
/ lineHeight
;
4004 ResetVisibleLinesRange();
4006 SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
4007 GetHeaderWidth() / SCROLL_UNIT_X
,
4008 (entireHeight
+ lineHeight
- 1) / lineHeight
,
4009 GetScrollPos(wxHORIZONTAL
),
4010 GetScrollPos(wxVERTICAL
),
4015 // we have 3 different layout strategies: either layout all items
4016 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
4017 // to arrange them in top to bottom, left to right (don't ask me why
4018 // not the other way round...) order
4019 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
4021 int x
= EXTRA_BORDER_X
;
4022 int y
= EXTRA_BORDER_Y
;
4024 wxCoord widthMax
= 0;
4027 for ( i
= 0; i
< count
; i
++ )
4029 wxListLineData
*line
= GetLine(i
);
4030 line
->CalculateSize( &dc
, iconSpacing
);
4031 line
->SetPosition( x
, y
, iconSpacing
);
4033 wxSize sizeLine
= GetLineSize(i
);
4035 if ( HasFlag(wxLC_ALIGN_TOP
) )
4037 if ( sizeLine
.x
> widthMax
)
4038 widthMax
= sizeLine
.x
;
4042 else // wxLC_ALIGN_LEFT
4044 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
4048 if ( HasFlag(wxLC_ALIGN_TOP
) )
4050 // traverse the items again and tweak their sizes so that they are
4051 // all the same in a row
4052 for ( i
= 0; i
< count
; i
++ )
4054 wxListLineData
*line
= GetLine(i
);
4055 line
->m_gi
->ExtendWidth(widthMax
);
4064 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4065 (y
+ lineHeight
) / lineHeight
,
4066 GetScrollPos( wxHORIZONTAL
),
4067 GetScrollPos( wxVERTICAL
),
4071 else // "flowed" arrangement, the most complicated case
4073 // at first we try without any scrollbars, if the items don't fit into
4074 // the window, we recalculate after subtracting the space taken by the
4077 int entireWidth
= 0;
4079 for (int tries
= 0; tries
< 2; tries
++)
4081 entireWidth
= 2*EXTRA_BORDER_X
;
4085 // Now we have decided that the items do not fit into the
4086 // client area, so we need a scrollbar
4087 entireWidth
+= SCROLL_UNIT_X
;
4090 int x
= EXTRA_BORDER_X
;
4091 int y
= EXTRA_BORDER_Y
;
4092 int maxWidthInThisRow
= 0;
4095 int currentlyVisibleLines
= 0;
4097 for (size_t i
= 0; i
< count
; i
++)
4099 currentlyVisibleLines
++;
4100 wxListLineData
*line
= GetLine(i
);
4101 line
->CalculateSize( &dc
, iconSpacing
);
4102 line
->SetPosition( x
, y
, iconSpacing
);
4104 wxSize sizeLine
= GetLineSize(i
);
4106 if ( maxWidthInThisRow
< sizeLine
.x
)
4107 maxWidthInThisRow
= sizeLine
.x
;
4110 if (currentlyVisibleLines
> m_linesPerPage
)
4111 m_linesPerPage
= currentlyVisibleLines
;
4113 if ( y
+ sizeLine
.y
>= clientHeight
)
4115 currentlyVisibleLines
= 0;
4117 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
4118 x
+= maxWidthInThisRow
;
4119 entireWidth
+= maxWidthInThisRow
;
4120 maxWidthInThisRow
= 0;
4123 // We have reached the last item.
4124 if ( i
== count
- 1 )
4125 entireWidth
+= maxWidthInThisRow
;
4127 if ( (tries
== 0) &&
4128 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
4130 clientHeight
-= wxSystemSettings::
4131 GetMetric(wxSYS_HSCROLL_Y
);
4136 if ( i
== count
- 1 )
4137 tries
= 1; // Everything fits, no second try required.
4145 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4147 GetScrollPos( wxHORIZONTAL
),
4156 // FIXME: why should we call it from here?
4163 void wxListMainWindow::RefreshAll()
4168 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
4169 if ( headerWin
&& headerWin
->m_dirty
)
4171 headerWin
->m_dirty
= false;
4172 headerWin
->Refresh();
4176 void wxListMainWindow::UpdateCurrent()
4178 if ( !HasCurrent() && !IsEmpty() )
4184 long wxListMainWindow::GetNextItem( long item
,
4185 int WXUNUSED(geometry
),
4189 max
= GetItemCount();
4190 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
4191 _T("invalid listctrl index in GetNextItem()") );
4193 // notice that we start with the next item (or the first one if item == -1)
4194 // and this is intentional to allow writing a simple loop to iterate over
4195 // all selected items
4199 // this is not an error because the index was ok initially, just no
4210 size_t count
= GetItemCount();
4211 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
4213 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
4216 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
4223 // ----------------------------------------------------------------------------
4225 // ----------------------------------------------------------------------------
4227 void wxListMainWindow::DeleteItem( long lindex
)
4229 size_t count
= GetItemCount();
4231 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
4232 _T("invalid item index in DeleteItem") );
4234 size_t index
= (size_t)lindex
;
4236 // we don't need to adjust the index for the previous items
4237 if ( HasCurrent() && m_current
>= index
)
4239 // if the current item is being deleted, we want the next one to
4240 // become selected - unless there is no next one - so don't adjust
4241 // m_current in this case
4242 if ( m_current
!= index
|| m_current
== count
- 1 )
4248 if ( InReportView() )
4250 // mark the Column Max Width cache as dirty if the items in the line
4251 // we're deleting contain the Max Column Width
4252 wxListLineData
* const line
= GetLine(index
);
4253 wxListItemDataList::compatibility_iterator n
;
4254 wxListItemData
*itemData
;
4258 for (size_t i
= 0; i
< m_columns
.GetCount(); i
++)
4260 n
= line
->m_items
.Item( i
);
4261 itemData
= n
->GetData();
4262 itemData
->GetItem(item
);
4264 itemWidth
= GetItemWidthWithImage(&item
);
4266 if (itemWidth
>= m_aColWidths
.Item(i
)->nMaxWidth
)
4267 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4270 ResetVisibleLinesRange();
4277 m_selStore
.OnItemDelete(index
);
4281 m_lines
.RemoveAt( index
);
4284 // we need to refresh the (vert) scrollbar as the number of items changed
4287 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
4289 RefreshAfter(index
);
4292 void wxListMainWindow::DeleteColumn( int col
)
4294 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4296 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
4299 delete node
->GetData();
4300 m_columns
.Erase( node
);
4304 // update all the items
4305 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4307 wxListLineData
* const line
= GetLine(i
);
4308 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
4309 delete n
->GetData();
4310 line
->m_items
.Erase(n
);
4314 if ( InReportView() ) // we only cache max widths when in Report View
4316 delete m_aColWidths
.Item(col
);
4317 m_aColWidths
.RemoveAt(col
);
4320 // invalidate it as it has to be recalculated
4324 void wxListMainWindow::DoDeleteAllItems()
4328 // nothing to do - in particular, don't send the event
4334 // to make the deletion of all items faster, we don't send the
4335 // notifications for each item deletion in this case but only one event
4336 // for all of them: this is compatible with wxMSW and documented in
4337 // DeleteAllItems() description
4339 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
4340 event
.SetEventObject( GetParent() );
4341 GetParent()->GetEventHandler()->ProcessEvent( event
);
4350 if ( InReportView() )
4352 ResetVisibleLinesRange();
4353 for (size_t i
= 0; i
< m_aColWidths
.GetCount(); i
++)
4355 m_aColWidths
.Item(i
)->bNeedsUpdate
= true;
4362 void wxListMainWindow::DeleteAllItems()
4366 RecalculatePositions();
4369 void wxListMainWindow::DeleteEverything()
4371 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
4372 WX_CLEAR_ARRAY(m_aColWidths
);
4377 // ----------------------------------------------------------------------------
4378 // scanning for an item
4379 // ----------------------------------------------------------------------------
4381 void wxListMainWindow::EnsureVisible( long index
)
4383 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4384 _T("invalid index in EnsureVisible") );
4386 // We have to call this here because the label in question might just have
4387 // been added and its position is not known yet
4390 RecalculatePositions(true /* no refresh */);
4393 MoveToItem((size_t)index
);
4396 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
4403 size_t count
= GetItemCount();
4404 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
4406 wxListLineData
*line
= GetLine(i
);
4407 if ( line
->GetText(0) == tmp
)
4414 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4420 size_t count
= GetItemCount();
4421 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4423 wxListLineData
*line
= GetLine(i
);
4425 line
->GetItem( 0, item
);
4426 if (item
.m_data
== data
)
4433 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4436 GetVisibleLinesRange(&topItem
, NULL
);
4439 GetItemPosition( GetItemCount()-1, p
);
4442 long id
= (long) floor( pt
.y
*double(GetItemCount()-topItem
-1)/p
.y
+topItem
);
4443 if( id
>= 0 && id
< (long)GetItemCount() )
4449 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
4451 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4453 size_t count
= GetItemCount();
4455 if ( InReportView() )
4457 size_t current
= y
/ GetLineHeight();
4458 if ( current
< count
)
4460 flags
= HitTestLine(current
, x
, y
);
4467 // TODO: optimize it too! this is less simple than for report view but
4468 // enumerating all items is still not a way to do it!!
4469 for ( size_t current
= 0; current
< count
; current
++ )
4471 flags
= HitTestLine(current
, x
, y
);
4480 // ----------------------------------------------------------------------------
4482 // ----------------------------------------------------------------------------
4484 void wxListMainWindow::InsertItem( wxListItem
&item
)
4486 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4488 int count
= GetItemCount();
4489 wxCHECK_RET( item
.m_itemId
>= 0, _T("invalid item index") );
4491 if (item
.m_itemId
> count
)
4492 item
.m_itemId
= count
;
4494 size_t id
= item
.m_itemId
;
4498 if ( InReportView() )
4500 ResetVisibleLinesRange();
4502 // calculate the width of the item and adjust the max column width
4503 wxColWidthInfo
*pWidthInfo
= m_aColWidths
.Item(item
.GetColumn());
4504 int width
= GetItemWidthWithImage(&item
);
4505 item
.SetWidth(width
);
4506 if (width
> pWidthInfo
->nMaxWidth
)
4507 pWidthInfo
->nMaxWidth
= width
;
4510 wxListLineData
*line
= new wxListLineData(this);
4512 line
->SetItem( item
.m_col
, item
);
4514 m_lines
.Insert( line
, id
);
4518 // If an item is selected at or below the point of insertion, we need to
4519 // increment the member variables because the current row's index has gone
4521 if ( HasCurrent() && m_current
>= id
)
4526 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4528 RefreshLines(id
, GetItemCount() - 1);
4531 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4534 if ( InReportView() )
4536 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4537 item
.m_width
= GetTextLength( item
.m_text
);
4539 wxListHeaderData
*column
= new wxListHeaderData( item
);
4540 wxColWidthInfo
*colWidthInfo
= new wxColWidthInfo();
4542 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4545 wxListHeaderDataList::compatibility_iterator
4546 node
= m_columns
.Item( col
);
4547 m_columns
.Insert( node
, column
);
4548 m_aColWidths
.Insert( colWidthInfo
, col
);
4552 m_columns
.Append( column
);
4553 m_aColWidths
.Add( colWidthInfo
);
4558 // update all the items
4559 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4561 wxListLineData
* const line
= GetLine(i
);
4562 wxListItemData
* const data
= new wxListItemData(this);
4564 line
->m_items
.Insert(col
, data
);
4566 line
->m_items
.Append(data
);
4570 // invalidate it as it has to be recalculated
4575 int wxListMainWindow::GetItemWidthWithImage(wxListItem
* item
)
4578 wxClientDC
dc(this);
4580 dc
.SetFont( GetFont() );
4582 if (item
->GetImage() != -1)
4585 GetImageSize( item
->GetImage(), ix
, iy
);
4589 if (!item
->GetText().empty())
4592 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
4599 // ----------------------------------------------------------------------------
4601 // ----------------------------------------------------------------------------
4603 wxListCtrlCompare list_ctrl_compare_func_2
;
4604 long list_ctrl_compare_data
;
4606 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4608 wxListLineData
*line1
= *arg1
;
4609 wxListLineData
*line2
= *arg2
;
4611 line1
->GetItem( 0, item
);
4612 wxUIntPtr data1
= item
.m_data
;
4613 line2
->GetItem( 0, item
);
4614 wxUIntPtr data2
= item
.m_data
;
4615 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4618 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4620 list_ctrl_compare_func_2
= fn
;
4621 list_ctrl_compare_data
= data
;
4622 m_lines
.Sort( list_ctrl_compare_func_1
);
4626 // ----------------------------------------------------------------------------
4628 // ----------------------------------------------------------------------------
4630 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4632 // update our idea of which lines are shown when we redraw the window the
4634 ResetVisibleLinesRange();
4637 #if ( defined(__WXGTK__) || defined(__WXMAC__) ) && !defined(__WXUNIVERSAL__)
4638 wxScrolledWindow::OnScroll(event
);
4640 HandleOnScroll( event
);
4643 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4645 wxGenericListCtrl
* lc
= GetListCtrl();
4646 wxCHECK_RET( lc
, _T("no listctrl window?") );
4648 lc
->m_headerWin
->Refresh();
4649 lc
->m_headerWin
->Update();
4653 int wxListMainWindow::GetCountPerPage() const
4655 if ( !m_linesPerPage
)
4657 wxConstCast(this, wxListMainWindow
)->
4658 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4661 return m_linesPerPage
;
4664 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4666 wxASSERT_MSG( InReportView(), _T("this is for report mode only") );
4668 if ( m_lineFrom
== (size_t)-1 )
4670 size_t count
= GetItemCount();
4673 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4675 // this may happen if SetScrollbars() hadn't been called yet
4676 if ( m_lineFrom
>= count
)
4677 m_lineFrom
= count
- 1;
4679 // we redraw one extra line but this is needed to make the redrawing
4680 // logic work when there is a fractional number of lines on screen
4681 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4682 if ( m_lineTo
>= count
)
4683 m_lineTo
= count
- 1;
4685 else // empty control
4688 m_lineTo
= (size_t)-1;
4692 wxASSERT_MSG( IsEmpty() ||
4693 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4694 _T("GetVisibleLinesRange() returns incorrect result") );
4702 // -------------------------------------------------------------------------------------
4703 // wxGenericListCtrl
4704 // -------------------------------------------------------------------------------------
4706 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4708 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4709 EVT_SIZE(wxGenericListCtrl::OnSize
)
4712 wxGenericListCtrl::wxGenericListCtrl()
4714 m_imageListNormal
= (wxImageListType
*) NULL
;
4715 m_imageListSmall
= (wxImageListType
*) NULL
;
4716 m_imageListState
= (wxImageListType
*) NULL
;
4718 m_ownsImageListNormal
=
4719 m_ownsImageListSmall
=
4720 m_ownsImageListState
= false;
4722 m_mainWin
= (wxListMainWindow
*) NULL
;
4723 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4727 wxGenericListCtrl::~wxGenericListCtrl()
4729 if (m_ownsImageListNormal
)
4730 delete m_imageListNormal
;
4731 if (m_ownsImageListSmall
)
4732 delete m_imageListSmall
;
4733 if (m_ownsImageListState
)
4734 delete m_imageListState
;
4737 void wxGenericListCtrl::CalculateAndSetHeaderHeight()
4743 GetThemeMetric( kThemeMetricListHeaderHeight
, &h
);
4745 // we use 'g' to get the descent, too
4747 m_headerWin
->GetTextExtent(wxT("Hg"), &w
, &h
, &d
);
4748 h
+= d
+ 2 * HEADER_OFFSET_Y
+ EXTRA_HEIGHT
;
4750 // only update if changed
4751 if ( h
!= m_headerHeight
)
4755 m_headerWin
->SetSize(m_headerWin
->GetSize().x
, m_headerHeight
);
4758 ResizeReportView(true);
4763 void wxGenericListCtrl::CreateHeaderWindow()
4765 m_headerWin
= new wxListHeaderWindow
4767 this, wxID_ANY
, m_mainWin
,
4769 wxSize(GetClientSize().x
, m_headerHeight
),
4772 CalculateAndSetHeaderHeight();
4775 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4780 const wxValidator
&validator
,
4781 const wxString
&name
)
4785 m_imageListState
= (wxImageListType
*) NULL
;
4786 m_ownsImageListNormal
=
4787 m_ownsImageListSmall
=
4788 m_ownsImageListState
= false;
4790 m_mainWin
= (wxListMainWindow
*) NULL
;
4791 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4795 if ( !(style
& wxLC_MASK_TYPE
) )
4797 style
= style
| wxLC_LIST
;
4800 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4803 // don't create the inner window with the border
4804 style
&= ~wxBORDER_MASK
;
4806 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0,0), size
, style
);
4808 #ifdef __WXMAC_CARBON__
4809 // Human Interface Guidelines ask us for a special font in this case
4810 if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
)
4813 font
.MacCreateThemeFont( kThemeViewsFont
) ;
4817 if ( InReportView() )
4819 CreateHeaderWindow();
4820 #ifdef __WXMAC_CARBON__
4824 font
.MacCreateThemeFont( kThemeSmallSystemFont
) ;
4825 m_headerWin
->SetFont( font
);
4826 CalculateAndSetHeaderHeight();
4829 if ( HasFlag(wxLC_NO_HEADER
) )
4831 // VZ: why do we create it at all then?
4832 m_headerWin
->Show( false );
4841 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4843 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4844 _T("wxLC_VIRTUAL can't be [un]set") );
4846 long flag
= GetWindowStyle();
4850 if (style
& wxLC_MASK_TYPE
)
4851 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4852 if (style
& wxLC_MASK_ALIGN
)
4853 flag
&= ~wxLC_MASK_ALIGN
;
4854 if (style
& wxLC_MASK_SORT
)
4855 flag
&= ~wxLC_MASK_SORT
;
4867 SetWindowStyleFlag( flag
);
4870 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4874 m_mainWin
->DeleteEverything();
4876 // has the header visibility changed?
4877 bool hasHeader
= HasHeader();
4878 bool willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4880 if ( hasHeader
!= willHaveHeader
)
4887 // don't delete, just hide, as we can reuse it later
4888 m_headerWin
->Show(false);
4890 //else: nothing to do
4892 else // must show header
4896 CreateHeaderWindow();
4898 else // already have it, just show
4900 m_headerWin
->Show( true );
4904 ResizeReportView(willHaveHeader
);
4908 wxWindow::SetWindowStyleFlag( flag
);
4911 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4913 m_mainWin
->GetColumn( col
, item
);
4917 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
4919 m_mainWin
->SetColumn( col
, item
);
4923 int wxGenericListCtrl::GetColumnWidth( int col
) const
4925 return m_mainWin
->GetColumnWidth( col
);
4928 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4930 m_mainWin
->SetColumnWidth( col
, width
);
4934 int wxGenericListCtrl::GetCountPerPage() const
4936 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4939 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4941 m_mainWin
->GetItem( info
);
4945 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4947 m_mainWin
->SetItem( info
);
4951 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4954 info
.m_text
= label
;
4955 info
.m_mask
= wxLIST_MASK_TEXT
;
4956 info
.m_itemId
= index
;
4960 info
.m_image
= imageId
;
4961 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4963 m_mainWin
->SetItem(info
);
4967 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4969 return m_mainWin
->GetItemState( item
, stateMask
);
4972 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4974 m_mainWin
->SetItemState( item
, state
, stateMask
);
4979 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4982 info
.m_image
= image
;
4983 info
.m_mask
= wxLIST_MASK_IMAGE
;
4984 info
.m_itemId
= item
;
4985 m_mainWin
->SetItem( info
);
4989 wxString
wxGenericListCtrl::GetItemText( long item
) const
4991 return m_mainWin
->GetItemText(item
);
4994 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4996 m_mainWin
->SetItemText(item
, str
);
4999 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
5002 info
.m_itemId
= item
;
5003 m_mainWin
->GetItem( info
);
5007 bool wxGenericListCtrl::SetItemData( long item
, long data
)
5010 info
.m_mask
= wxLIST_MASK_DATA
;
5011 info
.m_itemId
= item
;
5013 m_mainWin
->SetItem( info
);
5017 wxRect
wxGenericListCtrl::GetViewRect() const
5019 return m_mainWin
->GetViewRect();
5022 bool wxGenericListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
5024 m_mainWin
->GetItemRect( item
, rect
);
5025 if ( m_mainWin
->HasHeader() )
5026 rect
.y
+= m_headerHeight
+ 1;
5030 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
5032 m_mainWin
->GetItemPosition( item
, pos
);
5036 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
5041 int wxGenericListCtrl::GetItemCount() const
5043 return m_mainWin
->GetItemCount();
5046 int wxGenericListCtrl::GetColumnCount() const
5048 return m_mainWin
->GetColumnCount();
5051 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
5053 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
5056 wxSize
wxGenericListCtrl::GetItemSpacing() const
5058 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
5060 return wxSize(spacing
, spacing
);
5063 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
5065 return m_mainWin
->GetItemSpacing( isSmall
);
5068 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
5071 info
.m_itemId
= item
;
5072 info
.SetTextColour( col
);
5073 m_mainWin
->SetItem( info
);
5076 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
5079 info
.m_itemId
= item
;
5080 m_mainWin
->GetItem( info
);
5081 return info
.GetTextColour();
5084 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
5087 info
.m_itemId
= item
;
5088 info
.SetBackgroundColour( col
);
5089 m_mainWin
->SetItem( info
);
5092 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
5095 info
.m_itemId
= item
;
5096 m_mainWin
->GetItem( info
);
5097 return info
.GetBackgroundColour();
5100 int wxGenericListCtrl::GetSelectedItemCount() const
5102 return m_mainWin
->GetSelectedItemCount();
5105 wxColour
wxGenericListCtrl::GetTextColour() const
5107 return GetForegroundColour();
5110 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
5112 SetForegroundColour(col
);
5115 long wxGenericListCtrl::GetTopItem() const
5118 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
5122 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
5124 return m_mainWin
->GetNextItem( item
, geom
, state
);
5127 wxImageListType
*wxGenericListCtrl::GetImageList(int which
) const
5129 if (which
== wxIMAGE_LIST_NORMAL
)
5131 return m_imageListNormal
;
5133 else if (which
== wxIMAGE_LIST_SMALL
)
5135 return m_imageListSmall
;
5137 else if (which
== wxIMAGE_LIST_STATE
)
5139 return m_imageListState
;
5141 return (wxImageListType
*) NULL
;
5144 void wxGenericListCtrl::SetImageList( wxImageListType
*imageList
, int which
)
5146 if ( which
== wxIMAGE_LIST_NORMAL
)
5148 if (m_ownsImageListNormal
) delete m_imageListNormal
;
5149 m_imageListNormal
= imageList
;
5150 m_ownsImageListNormal
= false;
5152 else if ( which
== wxIMAGE_LIST_SMALL
)
5154 if (m_ownsImageListSmall
) delete m_imageListSmall
;
5155 m_imageListSmall
= imageList
;
5156 m_ownsImageListSmall
= false;
5158 else if ( which
== wxIMAGE_LIST_STATE
)
5160 if (m_ownsImageListState
) delete m_imageListState
;
5161 m_imageListState
= imageList
;
5162 m_ownsImageListState
= false;
5165 m_mainWin
->SetImageList( imageList
, which
);
5168 void wxGenericListCtrl::AssignImageList(wxImageListType
*imageList
, int which
)
5170 SetImageList(imageList
, which
);
5171 if ( which
== wxIMAGE_LIST_NORMAL
)
5172 m_ownsImageListNormal
= true;
5173 else if ( which
== wxIMAGE_LIST_SMALL
)
5174 m_ownsImageListSmall
= true;
5175 else if ( which
== wxIMAGE_LIST_STATE
)
5176 m_ownsImageListState
= true;
5179 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
5184 bool wxGenericListCtrl::DeleteItem( long item
)
5186 m_mainWin
->DeleteItem( item
);
5190 bool wxGenericListCtrl::DeleteAllItems()
5192 m_mainWin
->DeleteAllItems();
5196 bool wxGenericListCtrl::DeleteAllColumns()
5198 size_t count
= m_mainWin
->m_columns
.GetCount();
5199 for ( size_t n
= 0; n
< count
; n
++ )
5205 void wxGenericListCtrl::ClearAll()
5207 m_mainWin
->DeleteEverything();
5210 bool wxGenericListCtrl::DeleteColumn( int col
)
5212 m_mainWin
->DeleteColumn( col
);
5214 // if we don't have the header any longer, we need to relayout the window
5215 if ( !GetColumnCount() )
5217 ResizeReportView(false /* no header */);
5223 void wxGenericListCtrl::Edit( long item
)
5225 m_mainWin
->EditLabel( item
);
5228 bool wxGenericListCtrl::EnsureVisible( long item
)
5230 m_mainWin
->EnsureVisible( item
);
5234 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
5236 return m_mainWin
->FindItem( start
, str
, partial
);
5239 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
5241 return m_mainWin
->FindItem( start
, data
);
5244 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
5245 int WXUNUSED(direction
))
5247 return m_mainWin
->FindItem( pt
);
5250 long wxGenericListCtrl::HitTest( const wxPoint
&point
, int &flags
)
5252 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
5255 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
5257 m_mainWin
->InsertItem( info
);
5258 return info
.m_itemId
;
5261 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
5264 info
.m_text
= label
;
5265 info
.m_mask
= wxLIST_MASK_TEXT
;
5266 info
.m_itemId
= index
;
5267 return InsertItem( info
);
5270 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
5273 info
.m_mask
= wxLIST_MASK_IMAGE
;
5274 info
.m_image
= imageIndex
;
5275 info
.m_itemId
= index
;
5276 return InsertItem( info
);
5279 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
5282 info
.m_text
= label
;
5283 info
.m_image
= imageIndex
;
5284 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
5285 info
.m_itemId
= index
;
5286 return InsertItem( info
);
5289 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
5291 wxCHECK_MSG( m_headerWin
, -1, _T("can't add column in non report mode") );
5293 m_mainWin
->InsertColumn( col
, item
);
5295 // if we hadn't had header before and have it now we need to relayout the
5297 if ( GetColumnCount() == 1 && m_mainWin
->HasHeader() )
5299 ResizeReportView(true /* have header */);
5302 m_headerWin
->Refresh();
5307 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
5308 int format
, int width
)
5311 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
5312 item
.m_text
= heading
;
5315 item
.m_mask
|= wxLIST_MASK_WIDTH
;
5316 item
.m_width
= width
;
5318 item
.m_format
= format
;
5320 return InsertColumn( col
, item
);
5323 bool wxGenericListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
5329 // fn is a function which takes 3 long arguments: item1, item2, data.
5330 // item1 is the long data associated with a first item (NOT the index).
5331 // item2 is the long data associated with a second item (NOT the index).
5332 // data is the same value as passed to SortItems.
5333 // The return value is a negative number if the first item should precede the second
5334 // item, a positive number of the second item should precede the first,
5335 // or zero if the two items are equivalent.
5336 // data is arbitrary data to be passed to the sort function.
5338 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
5340 m_mainWin
->SortItems( fn
, data
);
5344 // ----------------------------------------------------------------------------
5346 // ----------------------------------------------------------------------------
5348 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5353 ResizeReportView(m_mainWin
->HasHeader());
5355 m_mainWin
->RecalculatePositions();
5358 void wxGenericListCtrl::ResizeReportView(bool showHeader
)
5361 GetClientSize( &cw
, &ch
);
5365 m_headerWin
->SetSize( 0, 0, cw
, m_headerHeight
);
5366 m_mainWin
->SetSize( 0, m_headerHeight
+ 1, cw
, ch
- m_headerHeight
- 1 );
5368 else // no header window
5370 m_mainWin
->SetSize( 0, 0, cw
, ch
);
5374 void wxGenericListCtrl::OnInternalIdle()
5376 wxWindow::OnInternalIdle();
5378 // do it only if needed
5379 if ( !m_mainWin
->m_dirty
)
5382 m_mainWin
->RecalculatePositions();
5385 // ----------------------------------------------------------------------------
5387 // ----------------------------------------------------------------------------
5389 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5393 m_mainWin
->SetBackgroundColour( colour
);
5394 m_mainWin
->m_dirty
= true;
5400 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5402 if ( !wxWindow::SetForegroundColour( colour
) )
5407 m_mainWin
->SetForegroundColour( colour
);
5408 m_mainWin
->m_dirty
= true;
5413 m_headerWin
->SetForegroundColour( colour
);
5419 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5421 if ( !wxWindow::SetFont( font
) )
5426 m_mainWin
->SetFont( font
);
5427 m_mainWin
->m_dirty
= true;
5432 m_headerWin
->SetFont( font
);
5433 CalculateAndSetHeaderHeight();
5444 #include "wx/listbox.h"
5449 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5452 // Use the same color scheme as wxListBox
5453 return wxListBox::GetClassDefaultAttributes(variant
);
5455 wxUnusedVar(variant
);
5456 wxVisualAttributes attr
;
5457 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
5458 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5459 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5464 // ----------------------------------------------------------------------------
5465 // methods forwarded to m_mainWin
5466 // ----------------------------------------------------------------------------
5468 #if wxUSE_DRAG_AND_DROP
5470 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5472 m_mainWin
->SetDropTarget( dropTarget
);
5475 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5477 return m_mainWin
->GetDropTarget();
5480 #endif // wxUSE_DRAG_AND_DROP
5482 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5484 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5487 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5489 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5492 wxColour
wxGenericListCtrl::GetForegroundColour() const
5494 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5497 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5500 return m_mainWin
->PopupMenu( menu
, x
, y
);
5503 #endif // wxUSE_MENUS
5506 void wxGenericListCtrl::SetFocus()
5508 /* The test in window.cpp fails as we are a composite
5509 window, so it checks against "this", but not m_mainWin. */
5510 if ( DoFindFocus() != this )
5511 m_mainWin
->SetFocus();
5514 wxSize
wxGenericListCtrl::DoGetBestSize() const
5516 // Something is better than nothing...
5517 // 100x80 is what the MSW version will get from the default
5518 // wxControl::DoGetBestSize
5519 return wxSize(100,80);
5522 // ----------------------------------------------------------------------------
5523 // virtual list control support
5524 // ----------------------------------------------------------------------------
5526 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5528 // this is a pure virtual function, in fact - which is not really pure
5529 // because the controls which are not virtual don't need to implement it
5530 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5532 return wxEmptyString
;
5535 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5537 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5539 wxT("List control has an image list, OnGetItemImage should be overridden."));
5544 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5546 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5547 _T("invalid item index in OnGetItemAttr()") );
5549 // no attributes by default
5553 void wxGenericListCtrl::SetItemCount(long count
)
5555 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5557 m_mainWin
->SetItemCount(count
);
5560 void wxGenericListCtrl::RefreshItem(long item
)
5562 m_mainWin
->RefreshLine(item
);
5565 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5567 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5571 * Generic wxListCtrl is more or less a container for two other
5572 * windows which drawings are done upon. These are namely
5573 * 'm_headerWin' and 'm_mainWin'.
5574 * Here we override 'virtual wxWindow::Refresh()' to mimic the
5575 * behaviour wxListCtrl has under wxMSW.
5577 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5581 // The easy case, no rectangle specified.
5583 m_headerWin
->Refresh(eraseBackground
);
5586 m_mainWin
->Refresh(eraseBackground
);
5590 // Refresh the header window
5593 wxRect rectHeader
= m_headerWin
->GetRect();
5594 rectHeader
.Intersect(*rect
);
5595 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5598 m_headerWin
->GetPosition(&x
, &y
);
5599 rectHeader
.Offset(-x
, -y
);
5600 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5605 // Refresh the main window
5608 wxRect rectMain
= m_mainWin
->GetRect();
5609 rectMain
.Intersect(*rect
);
5610 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5613 m_mainWin
->GetPosition(&x
, &y
);
5614 rectMain
.Offset(-x
, -y
);
5615 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5621 void wxGenericListCtrl::Freeze()
5623 m_mainWin
->Freeze();
5626 void wxGenericListCtrl::Thaw()
5631 #endif // wxUSE_LISTCTRL