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 // wxListItemData (internal)
158 //-----------------------------------------------------------------------------
160 class WXDLLEXPORT wxListItemData
163 wxListItemData(wxListMainWindow
*owner
);
166 void SetItem( const wxListItem
&info
);
167 void SetImage( int image
) { m_image
= image
; }
168 void SetData( wxUIntPtr data
) { m_data
= data
; }
169 void SetPosition( int x
, int y
);
170 void SetSize( int width
, int height
);
172 bool HasText() const { return !m_text
.empty(); }
173 const wxString
& GetText() const { return m_text
; }
174 void SetText(const wxString
& text
) { m_text
= text
; }
176 // we can't use empty string for measuring the string width/height, so
177 // always return something
178 wxString
GetTextForMeasuring() const
180 wxString s
= GetText();
187 bool IsHit( int x
, int y
) const;
191 int GetWidth() const;
192 int GetHeight() const;
194 int GetImage() const { return m_image
; }
195 bool HasImage() const { return GetImage() != -1; }
197 void GetItem( wxListItem
&info
) const;
199 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
200 wxListItemAttr
*GetAttr() const { return m_attr
; }
203 // the item image or -1
206 // user data associated with the item
209 // the item coordinates are not used in report mode, instead this pointer
210 // is NULL and the owner window is used to retrieve the item position and
214 // the list ctrl we are in
215 wxListMainWindow
*m_owner
;
217 // custom attributes or NULL
218 wxListItemAttr
*m_attr
;
221 // common part of all ctors
227 //-----------------------------------------------------------------------------
228 // wxListHeaderData (internal)
229 //-----------------------------------------------------------------------------
231 class WXDLLEXPORT wxListHeaderData
: public wxObject
235 wxListHeaderData( const wxListItem
&info
);
236 void SetItem( const wxListItem
&item
);
237 void SetPosition( int x
, int y
);
238 void SetWidth( int w
);
239 void SetFormat( int format
);
240 void SetHeight( int h
);
241 bool HasImage() const;
243 bool HasText() const { return !m_text
.empty(); }
244 const wxString
& GetText() const { return m_text
; }
245 void SetText(const wxString
& text
) { m_text
= text
; }
247 void GetItem( wxListItem
&item
);
249 bool IsHit( int x
, int y
) const;
250 int GetImage() const;
251 int GetWidth() const;
252 int GetFormat() const;
268 //-----------------------------------------------------------------------------
269 // wxListLineData (internal)
270 //-----------------------------------------------------------------------------
272 WX_DECLARE_LIST(wxListItemData
, wxListItemDataList
);
273 #include "wx/listimpl.cpp"
274 WX_DEFINE_LIST(wxListItemDataList
);
279 // the list of subitems: only may have more than one item in report mode
280 wxListItemDataList m_items
;
282 // this is not used in report view
294 // the part to be highlighted
295 wxRect m_rectHighlight
;
297 // extend all our rects to be centered inside theo ne of given width
298 void ExtendWidth(wxCoord w
)
300 wxASSERT_MSG( m_rectAll
.width
<= w
,
301 _T("width can only be increased") );
304 m_rectLabel
.x
= m_rectAll
.x
+ (w
- m_rectLabel
.width
)/2;
305 m_rectIcon
.x
= m_rectAll
.x
+ (w
- m_rectIcon
.width
)/2;
306 m_rectHighlight
.x
= m_rectAll
.x
+ (w
- m_rectHighlight
.width
)/2;
310 // is this item selected? [NB: not used in virtual mode]
313 // back pointer to the list ctrl
314 wxListMainWindow
*m_owner
;
317 wxListLineData(wxListMainWindow
*owner
);
321 WX_CLEAR_LIST(wxListItemDataList
, m_items
);
325 // are we in report mode?
326 inline bool InReportView() const;
328 // are we in virtual report mode?
329 inline bool IsVirtual() const;
331 // these 2 methods shouldn't be called for report view controls, in that
332 // case we determine our position/size ourselves
334 // calculate the size of the line
335 void CalculateSize( wxDC
*dc
, int spacing
);
337 // remember the position this line appears at
338 void SetPosition( int x
, int y
, int spacing
);
342 void SetImage( int image
) { SetImage(0, image
); }
343 int GetImage() const { return GetImage(0); }
344 bool HasImage() const { return GetImage() != -1; }
345 bool HasText() const { return !GetText(0).empty(); }
347 void SetItem( int index
, const wxListItem
&info
);
348 void GetItem( int index
, wxListItem
&info
);
350 wxString
GetText(int index
) const;
351 void SetText( int index
, const wxString s
);
353 wxListItemAttr
*GetAttr() const;
354 void SetAttr(wxListItemAttr
*attr
);
356 // return true if the highlighting really changed
357 bool Highlight( bool on
);
359 void ReverseHighlight();
361 bool IsHighlighted() const
363 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
365 return m_highlighted
;
368 // draw the line on the given DC in icon/list mode
369 void Draw( wxDC
*dc
);
371 // the same in report mode
372 void DrawInReportMode( wxDC
*dc
,
374 const wxRect
& rectHL
,
378 // set the line to contain num items (only can be > 1 in report mode)
379 void InitItems( int num
);
381 // get the mode (i.e. style) of the list control
382 inline int GetMode() const;
384 // prepare the DC for drawing with these item's attributes, return true if
385 // we need to draw the items background to highlight it, false otherwise
386 bool SetAttributes(wxDC
*dc
,
387 const wxListItemAttr
*attr
,
390 // draw the text on the DC with the correct justification; also add an
391 // ellipsis if the text is too large to fit in the current width
392 void DrawTextFormatted(wxDC
*dc
, const wxString
&text
, int col
, int x
, int y
, int width
);
394 // these are only used by GetImage/SetImage above, we don't support images
395 // with subitems at the public API level yet
396 void SetImage( int index
, int image
);
397 int GetImage( int index
) const;
400 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
401 #include "wx/arrimpl.cpp"
402 WX_DEFINE_OBJARRAY(wxListLineDataArray
);
404 //-----------------------------------------------------------------------------
405 // wxListHeaderWindow (internal)
406 //-----------------------------------------------------------------------------
408 class WXDLLEXPORT wxListHeaderWindow
: public wxWindow
411 wxListMainWindow
*m_owner
;
412 wxCursor
*m_currentCursor
;
413 wxCursor
*m_resizeCursor
;
416 // column being resized or -1
419 // divider line position in logical (unscrolled) coords
422 // minimal position beyond which the divider line can't be dragged in
427 wxListHeaderWindow();
429 wxListHeaderWindow( wxWindow
*win
,
431 wxListMainWindow
*owner
,
432 const wxPoint
&pos
= wxDefaultPosition
,
433 const wxSize
&size
= wxDefaultSize
,
435 const wxString
&name
= wxT("wxlistctrlcolumntitles") );
437 virtual ~wxListHeaderWindow();
440 void AdjustDC(wxDC
& dc
);
442 void OnPaint( wxPaintEvent
&event
);
443 void OnMouse( wxMouseEvent
&event
);
444 void OnSetFocus( wxFocusEvent
&event
);
450 // common part of all ctors
453 // generate and process the list event of the given type, return true if
454 // it wasn't vetoed, i.e. if we should proceed
455 bool SendListEvent(wxEventType type
, wxPoint pos
);
457 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
458 DECLARE_EVENT_TABLE()
461 //-----------------------------------------------------------------------------
462 // wxListRenameTimer (internal)
463 //-----------------------------------------------------------------------------
465 class WXDLLEXPORT wxListRenameTimer
: public wxTimer
468 wxListMainWindow
*m_owner
;
471 wxListRenameTimer( wxListMainWindow
*owner
);
475 //-----------------------------------------------------------------------------
476 // wxListTextCtrl (internal)
477 //-----------------------------------------------------------------------------
479 class WXDLLEXPORT wxListTextCtrl
: public wxTextCtrl
482 wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
);
485 void OnChar( wxKeyEvent
&event
);
486 void OnKeyUp( wxKeyEvent
&event
);
487 void OnKillFocus( wxFocusEvent
&event
);
489 bool AcceptChanges();
493 wxListMainWindow
*m_owner
;
494 wxString m_startValue
;
498 DECLARE_EVENT_TABLE()
501 //-----------------------------------------------------------------------------
502 // wxListMainWindow (internal)
503 //-----------------------------------------------------------------------------
505 WX_DECLARE_LIST(wxListHeaderData
, wxListHeaderDataList
);
506 #include "wx/listimpl.cpp"
507 WX_DEFINE_LIST(wxListHeaderDataList
);
509 class wxListMainWindow
: public wxScrolledWindow
513 wxListMainWindow( wxWindow
*parent
,
515 const wxPoint
& pos
= wxDefaultPosition
,
516 const wxSize
& size
= wxDefaultSize
,
518 const wxString
&name
= _T("listctrlmainwindow") );
520 virtual ~wxListMainWindow();
522 wxWindow
*GetMainWindowOfCompositeControl() { return GetParent(); }
524 bool HasFlag(int flag
) const { return m_parent
->HasFlag(flag
); }
526 // return true if this is a virtual list control
527 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
529 // return true if the control is in report mode
530 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
532 // return true if we are in single selection mode, false if multi sel
533 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL
); }
535 // do we have a header window?
536 bool HasHeader() const
537 { return InReportView() && !HasFlag(wxLC_NO_HEADER
); }
539 void HighlightAll( bool on
);
541 // all these functions only do something if the line is currently visible
543 // change the line "selected" state, return true if it really changed
544 bool HighlightLine( size_t line
, bool highlight
= true);
546 // as HighlightLine() but do it for the range of lines: this is incredibly
547 // more efficient for virtual list controls!
549 // NB: unlike HighlightLine() this one does refresh the lines on screen
550 void HighlightLines( size_t lineFrom
, size_t lineTo
, bool on
= true );
552 // toggle the line state and refresh it
553 void ReverseHighlight( size_t line
)
554 { HighlightLine(line
, !IsHighlighted(line
)); RefreshLine(line
); }
556 // return true if the line is highlighted
557 bool IsHighlighted(size_t line
) const;
559 // refresh one or several lines at once
560 void RefreshLine( size_t line
);
561 void RefreshLines( size_t lineFrom
, size_t lineTo
);
563 // refresh all selected items
564 void RefreshSelected();
566 // refresh all lines below the given one: the difference with
567 // RefreshLines() is that the index here might not be a valid one (happens
568 // when the last line is deleted)
569 void RefreshAfter( size_t lineFrom
);
571 // the methods which are forwarded to wxListLineData itself in list/icon
572 // modes but are here because the lines don't store their positions in the
575 // get the bound rect for the entire line
576 wxRect
GetLineRect(size_t line
) const;
578 // get the bound rect of the label
579 wxRect
GetLineLabelRect(size_t line
) const;
581 // get the bound rect of the items icon (only may be called if we do have
583 wxRect
GetLineIconRect(size_t line
) const;
585 // get the rect to be highlighted when the item has focus
586 wxRect
GetLineHighlightRect(size_t line
) const;
588 // get the size of the total line rect
589 wxSize
GetLineSize(size_t line
) const
590 { return GetLineRect(line
).GetSize(); }
592 // return the hit code for the corresponding position (in this line)
593 long HitTestLine(size_t line
, int x
, int y
) const;
595 // bring the selected item into view, scrolling to it if necessary
596 void MoveToItem(size_t item
);
598 // bring the current item into view
599 void MoveToFocus() { MoveToItem(m_current
); }
601 // start editing the label of the given item
602 void EditLabel( long item
);
604 // suspend/resume redrawing the control
608 void OnRenameTimer();
609 bool OnRenameAccept(size_t itemEdit
, const wxString
& value
);
610 void OnRenameCancelled(size_t itemEdit
);
612 void OnMouse( wxMouseEvent
&event
);
614 // called to switch the selection from the current item to newCurrent,
615 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
617 void OnChar( wxKeyEvent
&event
);
618 void OnKeyDown( wxKeyEvent
&event
);
619 void OnSetFocus( wxFocusEvent
&event
);
620 void OnKillFocus( wxFocusEvent
&event
);
621 void OnScroll(wxScrollWinEvent
& event
) ;
623 void OnPaint( wxPaintEvent
&event
);
625 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
626 void GetImageSize( int index
, int &width
, int &height
) const;
627 int GetTextLength( const wxString
&s
) const;
629 void SetImageList( wxImageListType
*imageList
, int which
);
630 void SetItemSpacing( int spacing
, bool isSmall
= false );
631 int GetItemSpacing( bool isSmall
= false );
633 void SetColumn( int col
, wxListItem
&item
);
634 void SetColumnWidth( int col
, int width
);
635 void GetColumn( int col
, wxListItem
&item
) const;
636 int GetColumnWidth( int col
) const;
637 int GetColumnCount() const { return m_columns
.GetCount(); }
639 // returns the sum of the heights of all columns
640 int GetHeaderWidth() const;
642 int GetCountPerPage() const;
644 void SetItem( wxListItem
&item
);
645 void GetItem( wxListItem
&item
) const;
646 void SetItemState( long item
, long state
, long stateMask
);
647 int GetItemState( long item
, long stateMask
) const;
648 void GetItemRect( long index
, wxRect
&rect
) const;
649 wxRect
GetViewRect() const;
650 bool GetItemPosition( long item
, wxPoint
& pos
) const;
651 int GetSelectedItemCount() const;
653 wxString
GetItemText(long item
) const
656 info
.m_itemId
= item
;
661 void SetItemText(long item
, const wxString
& value
)
664 info
.m_mask
= wxLIST_MASK_TEXT
;
665 info
.m_itemId
= item
;
670 // set the scrollbars and update the positions of the items
671 void RecalculatePositions(bool noRefresh
= false);
673 // refresh the window and the header
676 long GetNextItem( long item
, int geometry
, int state
) const;
677 void DeleteItem( long index
);
678 void DeleteAllItems();
679 void DeleteColumn( int col
);
680 void DeleteEverything();
681 void EnsureVisible( long index
);
682 long FindItem( long start
, const wxString
& str
, bool partial
= false );
683 long FindItem( long start
, wxUIntPtr data
);
684 long FindItem( const wxPoint
& pt
);
685 long HitTest( int x
, int y
, int &flags
);
686 void InsertItem( wxListItem
&item
);
687 void InsertColumn( long col
, wxListItem
&item
);
688 void SortItems( wxListCtrlCompare fn
, long data
);
690 size_t GetItemCount() const;
691 bool IsEmpty() const { return GetItemCount() == 0; }
692 void SetItemCount(long count
);
694 // change the current (== focused) item, send a notification event
695 void ChangeCurrent(size_t current
);
696 void ResetCurrent() { ChangeCurrent((size_t)-1); }
697 bool HasCurrent() const { return m_current
!= (size_t)-1; }
699 // send out a wxListEvent
700 void SendNotify( size_t line
,
702 wxPoint point
= wxDefaultPosition
);
704 // override base class virtual to reset m_lineHeight when the font changes
705 virtual bool SetFont(const wxFont
& font
)
707 if ( !wxScrolledWindow::SetFont(font
) )
715 // these are for wxListLineData usage only
717 // get the backpointer to the list ctrl
718 wxGenericListCtrl
*GetListCtrl() const
720 return wxStaticCast(GetParent(), wxGenericListCtrl
);
723 // get the height of all lines (assuming they all do have the same height)
724 wxCoord
GetLineHeight() const;
726 // get the y position of the given line (only for report view)
727 wxCoord
GetLineY(size_t line
) const;
729 // get the brush to use for the item highlighting
730 wxBrush
*GetHighlightBrush() const
732 return m_hasFocus
? m_highlightBrush
: m_highlightUnfocusedBrush
;
736 // the array of all line objects for a non virtual list control (for the
737 // virtual list control we only ever use m_lines[0])
738 wxListLineDataArray m_lines
;
740 // the list of column objects
741 wxListHeaderDataList m_columns
;
743 // currently focused item or -1
746 // the number of lines per page
749 // this flag is set when something which should result in the window
750 // redrawing happens (i.e. an item was added or deleted, or its appearance
751 // changed) and OnPaint() doesn't redraw the window while it is set which
752 // allows to minimize the number of repaintings when a lot of items are
753 // being added. The real repainting occurs only after the next OnIdle()
757 wxColour
*m_highlightColour
;
758 wxImageListType
*m_small_image_list
;
759 wxImageListType
*m_normal_image_list
;
761 int m_normal_spacing
;
765 wxTimer
*m_renameTimer
;
770 // for double click logic
771 size_t m_lineLastClicked
,
772 m_lineBeforeLastClicked
;
775 // the total count of items in a virtual list control
778 // the object maintaining the items selection state, only used in virtual
780 wxSelectionStore m_selStore
;
782 // common part of all ctors
785 // get the line data for the given index
786 wxListLineData
*GetLine(size_t n
) const
788 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
792 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
800 // get a dummy line which can be used for geometry calculations and such:
801 // you must use GetLine() if you want to really draw the line
802 wxListLineData
*GetDummyLine() const;
804 // cache the line data of the n-th line in m_lines[0]
805 void CacheLineData(size_t line
);
807 // get the range of visible lines
808 void GetVisibleLinesRange(size_t *from
, size_t *to
);
810 // force us to recalculate the range of visible lines
811 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
813 // get the colour to be used for drawing the rules
814 wxColour
GetRuleColour() const
819 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
824 // initialize the current item if needed
825 void UpdateCurrent();
827 // delete all items but don't refresh: called from dtor
828 void DoDeleteAllItems();
830 // the height of one line using the current font
831 wxCoord m_lineHeight
;
833 // the total header width or 0 if not calculated yet
834 wxCoord m_headerWidth
;
836 // the first and last lines being shown on screen right now (inclusive),
837 // both may be -1 if they must be calculated so never access them directly:
838 // use GetVisibleLinesRange() above instead
842 // the brushes to use for item highlighting when we do/don't have focus
843 wxBrush
*m_highlightBrush
,
844 *m_highlightUnfocusedBrush
;
846 // if this is > 0, the control is frozen and doesn't redraw itself
847 size_t m_freezeCount
;
849 DECLARE_DYNAMIC_CLASS(wxListMainWindow
)
850 DECLARE_EVENT_TABLE()
852 friend class wxGenericListCtrl
;
855 // ============================================================================
857 // ============================================================================
859 //-----------------------------------------------------------------------------
861 //-----------------------------------------------------------------------------
863 wxListItemData::~wxListItemData()
865 // in the virtual list control the attributes are managed by the main
866 // program, so don't delete them
867 if ( !m_owner
->IsVirtual() )
875 void wxListItemData::Init()
883 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
889 if ( owner
->InReportView() )
899 void wxListItemData::SetItem( const wxListItem
&info
)
901 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
902 SetText(info
.m_text
);
903 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
904 m_image
= info
.m_image
;
905 if ( info
.m_mask
& wxLIST_MASK_DATA
)
906 m_data
= info
.m_data
;
908 if ( info
.HasAttributes() )
911 *m_attr
= *info
.GetAttributes();
913 m_attr
= new wxListItemAttr(*info
.GetAttributes());
921 m_rect
->width
= info
.m_width
;
925 void wxListItemData::SetPosition( int x
, int y
)
927 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
933 void wxListItemData::SetSize( int width
, int height
)
935 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
938 m_rect
->width
= width
;
940 m_rect
->height
= height
;
943 bool wxListItemData::IsHit( int x
, int y
) const
945 wxCHECK_MSG( m_rect
, false, _T("can't be called in this mode") );
947 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Inside(x
, y
);
950 int wxListItemData::GetX() const
952 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
957 int wxListItemData::GetY() const
959 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
964 int wxListItemData::GetWidth() const
966 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
968 return m_rect
->width
;
971 int wxListItemData::GetHeight() const
973 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
975 return m_rect
->height
;
978 void wxListItemData::GetItem( wxListItem
&info
) const
980 info
.m_text
= m_text
;
981 info
.m_image
= m_image
;
982 info
.m_data
= m_data
;
986 if ( m_attr
->HasTextColour() )
987 info
.SetTextColour(m_attr
->GetTextColour());
988 if ( m_attr
->HasBackgroundColour() )
989 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
990 if ( m_attr
->HasFont() )
991 info
.SetFont(m_attr
->GetFont());
995 //-----------------------------------------------------------------------------
997 //-----------------------------------------------------------------------------
999 void wxListHeaderData::Init()
1010 wxListHeaderData::wxListHeaderData()
1015 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1022 void wxListHeaderData::SetItem( const wxListItem
&item
)
1024 m_mask
= item
.m_mask
;
1026 if ( m_mask
& wxLIST_MASK_TEXT
)
1027 m_text
= item
.m_text
;
1029 if ( m_mask
& wxLIST_MASK_IMAGE
)
1030 m_image
= item
.m_image
;
1032 if ( m_mask
& wxLIST_MASK_FORMAT
)
1033 m_format
= item
.m_format
;
1035 if ( m_mask
& wxLIST_MASK_WIDTH
)
1036 SetWidth(item
.m_width
);
1039 void wxListHeaderData::SetPosition( int x
, int y
)
1045 void wxListHeaderData::SetHeight( int h
)
1050 void wxListHeaderData::SetWidth( int w
)
1054 m_width
= WIDTH_COL_DEFAULT
;
1055 else if (m_width
< WIDTH_COL_MIN
)
1056 m_width
= WIDTH_COL_MIN
;
1059 void wxListHeaderData::SetFormat( int format
)
1064 bool wxListHeaderData::HasImage() const
1066 return m_image
!= -1;
1069 bool wxListHeaderData::IsHit( int x
, int y
) const
1071 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1074 void wxListHeaderData::GetItem( wxListItem
& item
)
1076 item
.m_mask
= m_mask
;
1077 item
.m_text
= m_text
;
1078 item
.m_image
= m_image
;
1079 item
.m_format
= m_format
;
1080 item
.m_width
= m_width
;
1083 int wxListHeaderData::GetImage() const
1088 int wxListHeaderData::GetWidth() const
1093 int wxListHeaderData::GetFormat() const
1098 //-----------------------------------------------------------------------------
1100 //-----------------------------------------------------------------------------
1102 inline int wxListLineData::GetMode() const
1104 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1107 inline bool wxListLineData::InReportView() const
1109 return m_owner
->HasFlag(wxLC_REPORT
);
1112 inline bool wxListLineData::IsVirtual() const
1114 return m_owner
->IsVirtual();
1117 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1121 if ( InReportView() )
1127 m_gi
= new GeometryInfo
;
1130 m_highlighted
= false;
1132 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1135 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1137 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1138 wxCHECK_RET( node
, _T("no subitems at all??") );
1140 wxListItemData
*item
= node
->GetData();
1145 switch ( GetMode() )
1148 case wxLC_SMALL_ICON
:
1149 m_gi
->m_rectAll
.width
= spacing
;
1151 s
= item
->GetText();
1156 m_gi
->m_rectLabel
.width
=
1157 m_gi
->m_rectLabel
.height
= 0;
1161 dc
->GetTextExtent( s
, &lw
, &lh
);
1165 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1167 m_gi
->m_rectAll
.width
= lw
;
1169 m_gi
->m_rectLabel
.width
= lw
;
1170 m_gi
->m_rectLabel
.height
= lh
;
1173 if (item
->HasImage())
1176 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1177 m_gi
->m_rectIcon
.width
= w
+ 8;
1178 m_gi
->m_rectIcon
.height
= h
+ 8;
1180 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1181 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1182 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1183 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1186 if ( item
->HasText() )
1188 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1189 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1191 else // no text, highlight the icon
1193 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1194 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1199 s
= item
->GetTextForMeasuring();
1201 dc
->GetTextExtent( s
, &lw
, &lh
);
1205 m_gi
->m_rectLabel
.width
= lw
;
1206 m_gi
->m_rectLabel
.height
= lh
;
1208 m_gi
->m_rectAll
.width
= lw
;
1209 m_gi
->m_rectAll
.height
= lh
;
1211 if (item
->HasImage())
1214 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1215 m_gi
->m_rectIcon
.width
= w
;
1216 m_gi
->m_rectIcon
.height
= h
;
1218 m_gi
->m_rectAll
.width
+= 4 + w
;
1219 if (h
> m_gi
->m_rectAll
.height
)
1220 m_gi
->m_rectAll
.height
= h
;
1223 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1224 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1228 wxFAIL_MSG( _T("unexpected call to SetSize") );
1232 wxFAIL_MSG( _T("unknown mode") );
1236 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
1238 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1239 wxCHECK_RET( node
, _T("no subitems at all??") );
1241 wxListItemData
*item
= node
->GetData();
1243 switch ( GetMode() )
1246 case wxLC_SMALL_ICON
:
1247 m_gi
->m_rectAll
.x
= x
;
1248 m_gi
->m_rectAll
.y
= y
;
1250 if ( item
->HasImage() )
1252 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
1253 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
1254 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1257 if ( item
->HasText() )
1259 if (m_gi
->m_rectAll
.width
> spacing
)
1260 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1262 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2 + (spacing
/2) - (m_gi
->m_rectLabel
.width
/2);
1263 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1264 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1265 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1267 else // no text, highlight the icon
1269 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1270 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1275 m_gi
->m_rectAll
.x
= x
;
1276 m_gi
->m_rectAll
.y
= y
;
1278 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1279 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1280 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1282 if (item
->HasImage())
1284 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1285 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1286 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 6 + m_gi
->m_rectIcon
.width
;
1290 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1295 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1299 wxFAIL_MSG( _T("unknown mode") );
1303 void wxListLineData::InitItems( int num
)
1305 for (int i
= 0; i
< num
; i
++)
1306 m_items
.Append( new wxListItemData(m_owner
) );
1309 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1311 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1312 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1314 wxListItemData
*item
= node
->GetData();
1315 item
->SetItem( info
);
1318 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1320 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1323 wxListItemData
*item
= node
->GetData();
1324 item
->GetItem( info
);
1328 wxString
wxListLineData::GetText(int index
) const
1332 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1335 wxListItemData
*item
= node
->GetData();
1336 s
= item
->GetText();
1342 void wxListLineData::SetText( int index
, const wxString s
)
1344 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1347 wxListItemData
*item
= node
->GetData();
1352 void wxListLineData::SetImage( int index
, int image
)
1354 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1355 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1357 wxListItemData
*item
= node
->GetData();
1358 item
->SetImage(image
);
1361 int wxListLineData::GetImage( int index
) const
1363 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1364 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1366 wxListItemData
*item
= node
->GetData();
1367 return item
->GetImage();
1370 wxListItemAttr
*wxListLineData::GetAttr() const
1372 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1373 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1375 wxListItemData
*item
= node
->GetData();
1376 return item
->GetAttr();
1379 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1381 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1382 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1384 wxListItemData
*item
= node
->GetData();
1385 item
->SetAttr(attr
);
1388 bool wxListLineData::SetAttributes(wxDC
*dc
,
1389 const wxListItemAttr
*attr
,
1392 wxWindow
*listctrl
= m_owner
->GetParent();
1396 // don't use foreground colour for drawing highlighted items - this might
1397 // make them completely invisible (and there is no way to do bit
1398 // arithmetics on wxColour, unfortunately)
1402 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1406 if ( attr
&& attr
->HasTextColour() )
1408 colText
= attr
->GetTextColour();
1412 colText
= listctrl
->GetForegroundColour();
1416 dc
->SetTextForeground(colText
);
1420 if ( attr
&& attr
->HasFont() )
1422 font
= attr
->GetFont();
1426 font
= listctrl
->GetFont();
1432 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1433 if ( highlighted
|| hasBgCol
)
1437 dc
->SetBrush( *m_owner
->GetHighlightBrush() );
1441 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1444 dc
->SetPen( *wxTRANSPARENT_PEN
);
1452 void wxListLineData::Draw( wxDC
*dc
)
1454 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1455 wxCHECK_RET( node
, _T("no subitems at all??") );
1457 bool highlighted
= IsHighlighted();
1459 wxListItemAttr
*attr
= GetAttr();
1461 if ( SetAttributes(dc
, attr
, highlighted
) )
1463 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1466 // just for debugging to better see where the items are
1468 dc
->SetPen(*wxRED_PEN
);
1469 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
1470 dc
->DrawRectangle( m_gi
->m_rectAll
);
1471 dc
->SetPen(*wxGREEN_PEN
);
1472 dc
->DrawRectangle( m_gi
->m_rectIcon
);
1475 wxListItemData
*item
= node
->GetData();
1476 if (item
->HasImage())
1478 // centre the image inside our rectangle, this looks nicer when items
1479 // ae aligned in a row
1480 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
1482 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
1485 if (item
->HasText())
1487 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
1489 wxDCClipper
clipper(*dc
, rectLabel
);
1490 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1494 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1496 const wxRect
& rectHL
,
1499 // TODO: later we should support setting different attributes for
1500 // different columns - to do it, just add "col" argument to
1501 // GetAttr() and move these lines into the loop below
1502 wxListItemAttr
*attr
= GetAttr();
1503 if ( SetAttributes(dc
, attr
, highlighted
) )
1505 dc
->DrawRectangle( rectHL
);
1508 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1509 y
= rect
.y
+ (LINE_SPACING
+ EXTRA_HEIGHT
) / 2;
1512 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1514 node
= node
->GetNext(), col
++ )
1516 wxListItemData
*item
= node
->GetData();
1518 int width
= m_owner
->GetColumnWidth(col
);
1522 if ( item
->HasImage() )
1525 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, y
);
1526 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1528 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
1534 wxDCClipper
clipper(*dc
, xOld
, y
, width
- 8, rect
.height
);
1536 if ( item
->HasText() )
1538 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, y
, width
- 8);
1543 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
1544 const wxString
&text
,
1550 wxString drawntext
, ellipsis
;
1551 wxCoord w
, h
, base_w
;
1554 // determine if the string can fit inside the current width
1555 dc
->GetTextExtent(text
, &w
, &h
);
1558 // it can, draw it using the items alignment
1559 m_owner
->GetColumn(col
, item
);
1560 switch ( item
.GetAlign() )
1563 wxFAIL_MSG( _T("unknown list item format") );
1566 case wxLIST_FORMAT_LEFT
:
1570 case wxLIST_FORMAT_RIGHT
:
1574 case wxLIST_FORMAT_CENTER
:
1575 x
+= (width
- w
) / 2;
1579 dc
->DrawText(text
, x
, y
);
1581 else // otherwise, truncate and add an ellipsis if possible
1583 // determine the base width
1584 ellipsis
= wxString(wxT("..."));
1585 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1587 // continue until we have enough space or only one character left
1589 size_t len
= text
.Length();
1590 drawntext
= text
.Left(len
);
1593 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
1594 drawntext
.RemoveLast();
1597 if (w
+ base_w
<= width
)
1601 // if still not enough space, remove ellipsis characters
1602 while (ellipsis
.Length() > 0 && w
+ base_w
> width
)
1604 ellipsis
= ellipsis
.Left(ellipsis
.Length() - 1);
1605 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1608 // now draw the text
1609 dc
->DrawText(drawntext
, x
, y
);
1610 dc
->DrawText(ellipsis
, x
+ w
, y
);
1614 bool wxListLineData::Highlight( bool on
)
1616 wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") );
1618 if ( on
== m_highlighted
)
1626 void wxListLineData::ReverseHighlight( void )
1628 Highlight(!IsHighlighted());
1631 //-----------------------------------------------------------------------------
1632 // wxListHeaderWindow
1633 //-----------------------------------------------------------------------------
1635 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
)
1637 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1638 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1639 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1640 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1643 void wxListHeaderWindow::Init()
1645 m_currentCursor
= (wxCursor
*) NULL
;
1646 m_isDragging
= false;
1650 wxListHeaderWindow::wxListHeaderWindow()
1654 m_owner
= (wxListMainWindow
*) NULL
;
1655 m_resizeCursor
= (wxCursor
*) NULL
;
1658 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
1660 wxListMainWindow
*owner
,
1664 const wxString
&name
)
1665 : wxWindow( win
, id
, pos
, size
, style
, name
)
1670 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1673 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
1674 SetOwnForegroundColour( attr
.colFg
);
1675 SetOwnBackgroundColour( attr
.colBg
);
1677 SetOwnFont( attr
.font
);
1679 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
1680 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1682 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
1686 wxListHeaderWindow::~wxListHeaderWindow()
1688 delete m_resizeCursor
;
1691 #ifdef __WXUNIVERSAL__
1692 #include "wx/univ/renderer.h"
1693 #include "wx/univ/theme.h"
1696 // shift the DC origin to match the position of the main window horz
1697 // scrollbar: this allows us to always use logical coords
1698 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1701 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1704 m_owner
->GetViewStart( &x
, NULL
);
1706 // account for the horz scrollbar offset
1707 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
1710 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1712 wxPaintDC
dc( this );
1719 dc
.SetFont( GetFont() );
1721 // width and height of the entire header window
1723 GetClientSize( &w
, &h
);
1724 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1726 dc
.SetBackgroundMode(wxTRANSPARENT
);
1728 dc
.SetTextForeground(GetForegroundColour());
1730 int x
= HEADER_OFFSET_X
;
1732 int numColumns
= m_owner
->GetColumnCount();
1734 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1736 m_owner
->GetColumn( i
, item
);
1737 int wCol
= item
.m_width
;
1739 // the width of the rect to draw: make it smaller to fit entirely
1740 // inside the column rect
1743 wxRendererNative::Get().DrawHeaderButton
1747 wxRect(x
, HEADER_OFFSET_Y
, cw
, h
- 2),
1748 m_parent
->IsEnabled() ? 0
1749 : (int)wxCONTROL_DISABLED
1752 // see if we have enough space for the column label
1754 // for this we need the width of the text
1757 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1758 wLabel
+= 2*EXTRA_WIDTH
;
1760 // and the width of the icon, if any
1761 static const int MARGIN_BETWEEN_TEXT_AND_ICON
= 2;
1762 int ix
= 0, // init them just to suppress the compiler warnings
1764 const int image
= item
.m_image
;
1765 wxImageListType
*imageList
;
1768 imageList
= m_owner
->m_small_image_list
;
1771 imageList
->GetSize(image
, ix
, iy
);
1772 wLabel
+= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1780 // ignore alignment if there is not enough space anyhow
1782 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1785 wxFAIL_MSG( _T("unknown list item format") );
1788 case wxLIST_FORMAT_LEFT
:
1792 case wxLIST_FORMAT_RIGHT
:
1793 xAligned
= x
+ cw
- wLabel
;
1796 case wxLIST_FORMAT_CENTER
:
1797 xAligned
= x
+ (cw
- wLabel
) / 2;
1802 // if we have an image, draw it on the right of the label
1809 xAligned
+ wLabel
- ix
- MARGIN_BETWEEN_TEXT_AND_ICON
,
1810 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1811 wxIMAGELIST_DRAW_TRANSPARENT
1814 cw
-= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1817 // draw the text clipping it so that it doesn't overwrite the column
1819 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1821 dc
.DrawText( item
.GetText(),
1822 xAligned
+ EXTRA_WIDTH
, h
/ 2 - hLabel
/ 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT );
1830 void wxListHeaderWindow::DrawCurrent()
1832 int x1
= m_currentX
;
1834 m_owner
->ClientToScreen( &x1
, &y1
);
1836 int x2
= m_currentX
;
1838 m_owner
->GetClientSize( NULL
, &y2
);
1839 m_owner
->ClientToScreen( &x2
, &y2
);
1842 dc
.SetLogicalFunction( wxINVERT
);
1843 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1844 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1848 dc
.DrawLine( x1
, y1
, x2
, y2
);
1850 dc
.SetLogicalFunction( wxCOPY
);
1852 dc
.SetPen( wxNullPen
);
1853 dc
.SetBrush( wxNullBrush
);
1856 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1858 // we want to work with logical coords
1860 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1861 int y
= event
.GetY();
1865 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1867 // we don't draw the line beyond our window, but we allow dragging it
1870 GetClientSize( &w
, NULL
);
1871 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1874 // erase the line if it was drawn
1875 if ( m_currentX
< w
)
1878 if (event
.ButtonUp())
1881 m_isDragging
= false;
1883 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1884 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1891 m_currentX
= m_minX
+ 7;
1893 // draw in the new location
1894 if ( m_currentX
< w
)
1898 else // not dragging
1901 bool hit_border
= false;
1903 // end of the current column
1906 // find the column where this event occured
1908 countCol
= m_owner
->GetColumnCount();
1909 for (col
= 0; col
< countCol
; col
++)
1911 xpos
+= m_owner
->GetColumnWidth( col
);
1914 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1916 // near the column border
1923 // inside the column
1930 if ( col
== countCol
)
1933 if (event
.LeftDown() || event
.RightUp())
1935 if (hit_border
&& event
.LeftDown())
1937 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1938 event
.GetPosition()) )
1940 m_isDragging
= true;
1945 //else: column resizing was vetoed by the user code
1947 else // click on a column
1949 SendListEvent( event
.LeftDown()
1950 ? wxEVT_COMMAND_LIST_COL_CLICK
1951 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1952 event
.GetPosition());
1955 else if (event
.Moving())
1960 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1961 m_currentCursor
= m_resizeCursor
;
1965 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1966 m_currentCursor
= wxSTANDARD_CURSOR
;
1970 SetCursor(*m_currentCursor
);
1975 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1977 m_owner
->SetFocus();
1981 bool wxListHeaderWindow::SendListEvent(wxEventType type
, wxPoint pos
)
1983 wxWindow
*parent
= GetParent();
1984 wxListEvent
le( type
, parent
->GetId() );
1985 le
.SetEventObject( parent
);
1986 le
.m_pointDrag
= pos
;
1988 // the position should be relative to the parent window, not
1989 // this one for compatibility with MSW and common sense: the
1990 // user code doesn't know anything at all about this header
1991 // window, so why should it get positions relative to it?
1992 le
.m_pointDrag
.y
-= GetSize().y
;
1994 le
.m_col
= m_column
;
1995 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
1998 //-----------------------------------------------------------------------------
1999 // wxListRenameTimer (internal)
2000 //-----------------------------------------------------------------------------
2002 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2007 void wxListRenameTimer::Notify()
2009 m_owner
->OnRenameTimer();
2012 //-----------------------------------------------------------------------------
2013 // wxListTextCtrl (internal)
2014 //-----------------------------------------------------------------------------
2016 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
2017 EVT_CHAR (wxListTextCtrl::OnChar
)
2018 EVT_KEY_UP (wxListTextCtrl::OnKeyUp
)
2019 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
2022 wxListTextCtrl::wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
)
2023 : m_startValue(owner
->GetItemText(itemEdit
)),
2024 m_itemEdited(itemEdit
)
2029 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
2031 m_owner
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
2032 &rectLabel
.x
, &rectLabel
.y
);
2034 (void)Create(owner
, wxID_ANY
, m_startValue
,
2035 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2036 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
2039 void wxListTextCtrl::Finish()
2043 wxPendingDelete
.Append(this);
2047 m_owner
->SetFocusIgnoringChildren();
2051 bool wxListTextCtrl::AcceptChanges()
2053 const wxString value
= GetValue();
2055 if ( value
== m_startValue
)
2057 // nothing changed, always accept
2061 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
2063 // vetoed by the user
2067 // accepted, do rename the item
2068 m_owner
->SetItemText(m_itemEdited
, value
);
2073 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
2075 switch ( event
.m_keyCode
)
2078 // Notify the owner about the changes
2081 // Even if vetoed, close the control (consistent with MSW)
2088 m_owner
->OnRenameCancelled( m_itemEdited
);
2096 void wxListTextCtrl::OnKeyUp( wxKeyEvent
&event
)
2104 // auto-grow the textctrl:
2105 wxSize parentSize
= m_owner
->GetSize();
2106 wxPoint myPos
= GetPosition();
2107 wxSize mySize
= GetSize();
2109 GetTextExtent(GetValue() + _T("MM"), &sx
, &sy
);
2110 if (myPos
.x
+ sx
> parentSize
.x
)
2111 sx
= parentSize
.x
- myPos
.x
;
2114 SetSize(sx
, wxDefaultCoord
);
2119 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&event
)
2123 // We must finish regardless of success, otherwise we'll get
2127 if ( !AcceptChanges() )
2128 m_owner
->OnRenameCancelled( m_itemEdited
);
2131 // We must let the native text control handle focus, too, otherwise
2132 // it could have problems with the cursor (e.g., in wxGTK):
2136 //-----------------------------------------------------------------------------
2138 //-----------------------------------------------------------------------------
2140 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
)
2142 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2143 EVT_PAINT (wxListMainWindow::OnPaint
)
2144 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2145 EVT_CHAR (wxListMainWindow::OnChar
)
2146 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2147 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2148 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2149 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2152 void wxListMainWindow::Init()
2157 m_lineTo
= (size_t)-1;
2163 m_small_image_list
= (wxImageListType
*) NULL
;
2164 m_normal_image_list
= (wxImageListType
*) NULL
;
2166 m_small_spacing
= 30;
2167 m_normal_spacing
= 40;
2171 m_isCreated
= false;
2173 m_lastOnSame
= false;
2174 m_renameTimer
= new wxListRenameTimer( this );
2178 m_lineBeforeLastClicked
= (size_t)-1;
2183 wxListMainWindow::wxListMainWindow()
2188 m_highlightUnfocusedBrush
= (wxBrush
*) NULL
;
2191 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2196 const wxString
&name
)
2197 : wxScrolledWindow( parent
, id
, pos
, size
,
2198 style
| wxHSCROLL
| wxVSCROLL
, name
)
2202 m_highlightBrush
= new wxBrush
2204 wxSystemSettings::GetColour
2206 wxSYS_COLOUR_HIGHLIGHT
2211 m_highlightUnfocusedBrush
= new wxBrush
2213 wxSystemSettings::GetColour
2215 wxSYS_COLOUR_BTNSHADOW
2223 SetScrollbars( 0, 0, 0, 0, 0, 0 );
2225 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
2226 SetOwnForegroundColour( attr
.colFg
);
2227 SetOwnBackgroundColour( attr
.colBg
);
2229 SetOwnFont( attr
.font
);
2232 wxListMainWindow::~wxListMainWindow()
2235 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
2237 delete m_highlightBrush
;
2238 delete m_highlightUnfocusedBrush
;
2240 delete m_renameTimer
;
2243 void wxListMainWindow::CacheLineData(size_t line
)
2245 wxGenericListCtrl
*listctrl
= GetListCtrl();
2247 wxListLineData
*ld
= GetDummyLine();
2249 size_t countCol
= GetColumnCount();
2250 for ( size_t col
= 0; col
< countCol
; col
++ )
2252 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2255 ld
->SetImage(listctrl
->OnGetItemImage(line
));
2256 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2259 wxListLineData
*wxListMainWindow::GetDummyLine() const
2261 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2263 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2265 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2267 // we need to recreate the dummy line if the number of columns in the
2268 // control changed as it would have the incorrect number of fields
2270 if ( !m_lines
.IsEmpty() &&
2271 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
2273 self
->m_lines
.Clear();
2276 if ( m_lines
.IsEmpty() )
2278 wxListLineData
*line
= new wxListLineData(self
);
2279 self
->m_lines
.Add(line
);
2281 // don't waste extra memory -- there never going to be anything
2282 // else/more in this array
2283 self
->m_lines
.Shrink();
2289 // ----------------------------------------------------------------------------
2290 // line geometry (report mode only)
2291 // ----------------------------------------------------------------------------
2293 wxCoord
wxListMainWindow::GetLineHeight() const
2295 // we cache the line height as calling GetTextExtent() is slow
2296 if ( !m_lineHeight
)
2298 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2300 wxClientDC
dc( self
);
2301 dc
.SetFont( GetFont() );
2304 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2306 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
2310 m_small_image_list
->GetSize(0, iw
, ih
);
2315 self
->m_lineHeight
= y
+ LINE_SPACING
;
2318 return m_lineHeight
;
2321 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2323 wxASSERT_MSG( InReportView(), _T("only works in report mode") );
2325 return LINE_SPACING
+ line
*GetLineHeight();
2328 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2330 if ( !InReportView() )
2331 return GetLine(line
)->m_gi
->m_rectAll
;
2334 rect
.x
= HEADER_OFFSET_X
;
2335 rect
.y
= GetLineY(line
);
2336 rect
.width
= GetHeaderWidth();
2337 rect
.height
= GetLineHeight();
2342 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2344 if ( !InReportView() )
2345 return GetLine(line
)->m_gi
->m_rectLabel
;
2348 rect
.x
= HEADER_OFFSET_X
;
2349 rect
.y
= GetLineY(line
);
2350 rect
.width
= GetColumnWidth(0);
2351 rect
.height
= GetLineHeight();
2356 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2358 if ( !InReportView() )
2359 return GetLine(line
)->m_gi
->m_rectIcon
;
2361 wxListLineData
*ld
= GetLine(line
);
2362 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2365 rect
.x
= HEADER_OFFSET_X
;
2366 rect
.y
= GetLineY(line
);
2367 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2372 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2374 return InReportView() ? GetLineRect(line
)
2375 : GetLine(line
)->m_gi
->m_rectHighlight
;
2378 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2380 wxASSERT_MSG( line
< GetItemCount(), _T("invalid line in HitTestLine") );
2382 wxListLineData
*ld
= GetLine(line
);
2384 if ( ld
->HasImage() && GetLineIconRect(line
).Inside(x
, y
) )
2385 return wxLIST_HITTEST_ONITEMICON
;
2387 // VS: Testing for "ld->HasText() || InReportView()" instead of
2388 // "ld->HasText()" is needed to make empty lines in report view
2390 if ( ld
->HasText() || InReportView() )
2392 wxRect rect
= InReportView() ? GetLineRect(line
)
2393 : GetLineLabelRect(line
);
2395 if ( rect
.Inside(x
, y
) )
2396 return wxLIST_HITTEST_ONITEMLABEL
;
2402 // ----------------------------------------------------------------------------
2403 // highlight (selection) handling
2404 // ----------------------------------------------------------------------------
2406 bool wxListMainWindow::IsHighlighted(size_t line
) const
2410 return m_selStore
.IsSelected(line
);
2414 wxListLineData
*ld
= GetLine(line
);
2415 wxCHECK_MSG( ld
, false, _T("invalid index in IsHighlighted") );
2417 return ld
->IsHighlighted();
2421 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2427 wxArrayInt linesChanged
;
2428 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2431 // meny items changed state, refresh everything
2432 RefreshLines(lineFrom
, lineTo
);
2434 else // only a few items changed state, refresh only them
2436 size_t count
= linesChanged
.GetCount();
2437 for ( size_t n
= 0; n
< count
; n
++ )
2439 RefreshLine(linesChanged
[n
]);
2443 else // iterate over all items in non report view
2445 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2447 if ( HighlightLine(line
, highlight
) )
2455 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2461 changed
= m_selStore
.SelectItem(line
, highlight
);
2465 wxListLineData
*ld
= GetLine(line
);
2466 wxCHECK_MSG( ld
, false, _T("invalid index in HighlightLine") );
2468 changed
= ld
->Highlight(highlight
);
2473 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2474 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2480 void wxListMainWindow::RefreshLine( size_t line
)
2482 if ( InReportView() )
2484 size_t visibleFrom
, visibleTo
;
2485 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2487 if ( line
< visibleFrom
|| line
> visibleTo
)
2491 wxRect rect
= GetLineRect(line
);
2493 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2494 RefreshRect( rect
);
2497 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2499 // we suppose that they are ordered by caller
2500 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2502 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2504 if ( InReportView() )
2506 size_t visibleFrom
, visibleTo
;
2507 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2509 if ( lineFrom
< visibleFrom
)
2510 lineFrom
= visibleFrom
;
2511 if ( lineTo
> visibleTo
)
2516 rect
.y
= GetLineY(lineFrom
);
2517 rect
.width
= GetClientSize().x
;
2518 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2520 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2521 RefreshRect( rect
);
2525 // TODO: this should be optimized...
2526 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2533 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2535 if ( InReportView() )
2537 size_t visibleFrom
, visibleTo
;
2538 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2540 if ( lineFrom
< visibleFrom
)
2541 lineFrom
= visibleFrom
;
2542 else if ( lineFrom
> visibleTo
)
2547 rect
.y
= GetLineY(lineFrom
);
2548 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2550 wxSize size
= GetClientSize();
2551 rect
.width
= size
.x
;
2552 // refresh till the bottom of the window
2553 rect
.height
= size
.y
- rect
.y
;
2555 RefreshRect( rect
);
2559 // TODO: how to do it more efficiently?
2564 void wxListMainWindow::RefreshSelected()
2570 if ( InReportView() )
2572 GetVisibleLinesRange(&from
, &to
);
2577 to
= GetItemCount() - 1;
2580 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
2582 RefreshLine(m_current
);
2585 for ( size_t line
= from
; line
<= to
; line
++ )
2587 // NB: the test works as expected even if m_current == -1
2588 if ( line
!= m_current
&& IsHighlighted(line
) )
2595 void wxListMainWindow::Freeze()
2600 void wxListMainWindow::Thaw()
2602 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen list control?") );
2604 if ( !--m_freezeCount
)
2610 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2612 // Note: a wxPaintDC must be constructed even if no drawing is
2613 // done (a Windows requirement).
2614 wxPaintDC
dc( this );
2616 if ( IsEmpty() || m_freezeCount
)
2618 // nothing to draw or not the moment to draw it
2624 // delay the repainting until we calculate all the items positions
2631 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2635 dc
.SetFont( GetFont() );
2637 if ( InReportView() )
2639 int lineHeight
= GetLineHeight();
2641 size_t visibleFrom
, visibleTo
;
2642 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2645 wxCoord xOrig
, yOrig
;
2646 CalcUnscrolledPosition(0, 0, &xOrig
, &yOrig
);
2648 // tell the caller cache to cache the data
2651 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2652 GetParent()->GetId());
2653 evCache
.SetEventObject( GetParent() );
2654 evCache
.m_oldItemIndex
= visibleFrom
;
2655 evCache
.m_itemIndex
= visibleTo
;
2656 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2659 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2661 rectLine
= GetLineRect(line
);
2663 if ( !IsExposed(rectLine
.x
- xOrig
, rectLine
.y
- yOrig
,
2664 rectLine
.width
, rectLine
.height
) )
2666 // don't redraw unaffected lines to avoid flicker
2670 GetLine(line
)->DrawInReportMode( &dc
,
2672 GetLineHighlightRect(line
),
2673 IsHighlighted(line
) );
2676 if ( HasFlag(wxLC_HRULES
) )
2678 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2679 wxSize clientSize
= GetClientSize();
2681 // Don't draw the first one
2682 for ( size_t i
= visibleFrom
+1; i
<= visibleTo
; i
++ )
2685 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2686 dc
.DrawLine(0 - dev_x
, i
*lineHeight
,
2687 clientSize
.x
- dev_x
, i
*lineHeight
);
2690 // Draw last horizontal rule
2691 if ( visibleTo
== GetItemCount() - 1 )
2694 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2695 dc
.DrawLine(0 - dev_x
, (m_lineTo
+1)*lineHeight
,
2696 clientSize
.x
- dev_x
, (m_lineTo
+1)*lineHeight
);
2700 // Draw vertical rules if required
2701 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2703 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2705 wxRect firstItemRect
;
2706 wxRect lastItemRect
;
2707 GetItemRect(visibleFrom
, firstItemRect
);
2708 GetItemRect(visibleTo
, lastItemRect
);
2709 int x
= firstItemRect
.GetX();
2711 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2712 for (int col
= 0; col
< GetColumnCount(); col
++)
2714 int colWidth
= GetColumnWidth(col
);
2716 dc
.DrawLine(x
- dev_x
- 2, firstItemRect
.GetY() - 1 - dev_y
,
2717 x
- dev_x
- 2, lastItemRect
.GetBottom() + 1 - dev_y
);
2723 size_t count
= GetItemCount();
2724 for ( size_t i
= 0; i
< count
; i
++ )
2726 GetLine(i
)->Draw( &dc
);
2731 // Don't draw rect outline under Mac at all.
2736 dc
.SetPen( *wxBLACK_PEN
);
2737 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2738 dc
.DrawRectangle( GetLineHighlightRect(m_current
) );
2746 void wxListMainWindow::HighlightAll( bool on
)
2748 if ( IsSingleSel() )
2750 wxASSERT_MSG( !on
, _T("can't do this in a single sel control") );
2752 // we just have one item to turn off
2753 if ( HasCurrent() && IsHighlighted(m_current
) )
2755 HighlightLine(m_current
, false);
2756 RefreshLine(m_current
);
2761 HighlightLines(0, GetItemCount() - 1, on
);
2765 void wxListMainWindow::SendNotify( size_t line
,
2766 wxEventType command
,
2769 wxListEvent
le( command
, GetParent()->GetId() );
2770 le
.SetEventObject( GetParent() );
2771 le
.m_itemIndex
= line
;
2773 // set only for events which have position
2774 if ( point
!= wxDefaultPosition
)
2775 le
.m_pointDrag
= point
;
2777 // don't try to get the line info for virtual list controls: the main
2778 // program has it anyhow and if we did it would result in accessing all
2779 // the lines, even those which are not visible now and this is precisely
2780 // what we're trying to avoid
2781 if ( !IsVirtual() && (command
!= wxEVT_COMMAND_LIST_DELETE_ITEM
) )
2783 if ( line
!= (size_t)-1 )
2785 GetLine(line
)->GetItem( 0, le
.m_item
);
2787 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2789 //else: there may be no more such item
2791 GetParent()->GetEventHandler()->ProcessEvent( le
);
2794 void wxListMainWindow::ChangeCurrent(size_t current
)
2796 m_current
= current
;
2798 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2801 void wxListMainWindow::EditLabel( long item
)
2803 wxCHECK_RET( (item
>= 0) && ((size_t)item
< GetItemCount()),
2804 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2806 size_t itemEdit
= (size_t)item
;
2808 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2809 le
.SetEventObject( GetParent() );
2810 le
.m_itemIndex
= item
;
2811 wxListLineData
*data
= GetLine(itemEdit
);
2812 wxCHECK_RET( data
, _T("invalid index in EditLabel()") );
2813 data
->GetItem( 0, le
.m_item
);
2814 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2816 // vetoed by user code
2820 // We have to call this here because the label in question might just have
2821 // been added and no screen update taken place.
2825 wxListTextCtrl
*text
= new wxListTextCtrl(this, itemEdit
);
2830 void wxListMainWindow::OnRenameTimer()
2832 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2834 EditLabel( m_current
);
2837 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2839 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2840 le
.SetEventObject( GetParent() );
2841 le
.m_itemIndex
= itemEdit
;
2843 wxListLineData
*data
= GetLine(itemEdit
);
2844 wxCHECK_MSG( data
, false, _T("invalid index in OnRenameAccept()") );
2846 data
->GetItem( 0, le
.m_item
);
2847 le
.m_item
.m_text
= value
;
2848 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2852 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2854 // let owner know that the edit was cancelled
2855 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2857 le
.SetEditCanceled(true);
2859 le
.SetEventObject( GetParent() );
2860 le
.m_itemIndex
= itemEdit
;
2862 wxListLineData
*data
= GetLine(itemEdit
);
2863 wxCHECK_RET( data
, _T("invalid index in OnRenameCancelled()") );
2865 data
->GetItem( 0, le
.m_item
);
2867 GetEventHandler()->ProcessEvent( le
);
2870 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2872 event
.SetEventObject( GetParent() );
2873 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2876 if (event
.GetEventType() == wxEVT_MOUSEWHEEL
)
2878 // let the base handle mouse wheel events.
2883 if ( !HasCurrent() || IsEmpty() )
2889 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2890 event
.ButtonDClick()) )
2893 int x
= event
.GetX();
2894 int y
= event
.GetY();
2895 CalcUnscrolledPosition( x
, y
, &x
, &y
);
2897 // where did we hit it (if we did)?
2900 size_t count
= GetItemCount(),
2903 if ( InReportView() )
2905 current
= y
/ GetLineHeight();
2906 if ( current
< count
)
2907 hitResult
= HitTestLine(current
, x
, y
);
2911 // TODO: optimize it too! this is less simple than for report view but
2912 // enumerating all items is still not a way to do it!!
2913 for ( current
= 0; current
< count
; current
++ )
2915 hitResult
= HitTestLine(current
, x
, y
);
2921 if (event
.Dragging())
2923 if (m_dragCount
== 0)
2925 // we have to report the raw, physical coords as we want to be
2926 // able to call HitTest(event.m_pointDrag) from the user code to
2927 // get the item being dragged
2928 m_dragStart
= event
.GetPosition();
2933 if (m_dragCount
!= 3)
2936 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2937 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2939 wxListEvent
le( command
, GetParent()->GetId() );
2940 le
.SetEventObject( GetParent() );
2941 le
.m_itemIndex
= current
;
2942 le
.m_pointDrag
= m_dragStart
;
2943 GetParent()->GetEventHandler()->ProcessEvent( le
);
2954 // outside of any item
2958 bool forceClick
= false;
2959 if (event
.ButtonDClick())
2961 m_renameTimer
->Stop();
2962 m_lastOnSame
= false;
2964 if ( current
== m_lineLastClicked
)
2966 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2972 // the first click was on another item, so don't interpret this as
2973 // a double click, but as a simple click instead
2978 if (event
.LeftUp() && m_lastOnSame
)
2980 if ((current
== m_current
) &&
2981 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2982 HasFlag(wxLC_EDIT_LABELS
) )
2984 m_renameTimer
->Start( 100, true );
2986 m_lastOnSame
= false;
2988 else if (event
.RightDown())
2990 // If the item is already selected, do not update the selection.
2991 // Multi-selections should not be cleared if a selected item is clicked.
2992 if (!IsHighlighted(current
))
2994 HighlightAll(false);
2995 ChangeCurrent(current
);
2996 ReverseHighlight(m_current
);
2999 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
,
3000 event
.GetPosition() );
3002 else if (event
.MiddleDown())
3004 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
3006 else if ( event
.LeftDown() || forceClick
)
3008 m_lineBeforeLastClicked
= m_lineLastClicked
;
3009 m_lineLastClicked
= current
;
3011 size_t oldCurrent
= m_current
;
3012 bool cmdModifierDown
= event
.CmdDown();
3013 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
3015 HighlightAll( false );
3017 ChangeCurrent(current
);
3019 ReverseHighlight(m_current
);
3021 else // multi sel & either ctrl or shift is down
3023 if (cmdModifierDown
)
3025 ChangeCurrent(current
);
3027 ReverseHighlight(m_current
);
3029 else if (event
.ShiftDown())
3031 ChangeCurrent(current
);
3033 size_t lineFrom
= oldCurrent
,
3036 if ( lineTo
< lineFrom
)
3039 lineFrom
= m_current
;
3042 HighlightLines(lineFrom
, lineTo
);
3044 else // !ctrl, !shift
3046 // test in the enclosing if should make it impossible
3047 wxFAIL_MSG( _T("how did we get here?") );
3051 if (m_current
!= oldCurrent
)
3053 RefreshLine( oldCurrent
);
3056 // forceClick is only set if the previous click was on another item
3057 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
);
3061 void wxListMainWindow::MoveToItem(size_t item
)
3063 if ( item
== (size_t)-1 )
3066 wxRect rect
= GetLineRect(item
);
3068 int client_w
, client_h
;
3069 GetClientSize( &client_w
, &client_h
);
3071 const int hLine
= GetLineHeight();
3073 int view_x
= SCROLL_UNIT_X
*GetScrollPos( wxHORIZONTAL
);
3074 int view_y
= hLine
*GetScrollPos( wxVERTICAL
);
3076 if ( InReportView() )
3078 // the next we need the range of lines shown it might be different, so
3080 ResetVisibleLinesRange();
3082 if (rect
.y
< view_y
)
3083 Scroll( -1, rect
.y
/hLine
);
3084 if (rect
.y
+rect
.height
+5 > view_y
+client_h
)
3085 Scroll( -1, (rect
.y
+rect
.height
-client_h
+hLine
)/hLine
);
3089 if (rect
.x
-view_x
< 5)
3090 Scroll( (rect
.x
-5)/SCROLL_UNIT_X
, -1 );
3091 if (rect
.x
+rect
.width
-5 > view_x
+client_w
)
3092 Scroll( (rect
.x
+rect
.width
-client_w
+SCROLL_UNIT_X
)/SCROLL_UNIT_X
, -1 );
3096 // ----------------------------------------------------------------------------
3097 // keyboard handling
3098 // ----------------------------------------------------------------------------
3100 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
3102 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
3103 _T("invalid item index in OnArrowChar()") );
3105 size_t oldCurrent
= m_current
;
3107 // in single selection we just ignore Shift as we can't select several
3109 if ( event
.ShiftDown() && !IsSingleSel() )
3111 ChangeCurrent(newCurrent
);
3113 // refresh the old focus to remove it
3114 RefreshLine( oldCurrent
);
3116 // select all the items between the old and the new one
3117 if ( oldCurrent
> newCurrent
)
3119 newCurrent
= oldCurrent
;
3120 oldCurrent
= m_current
;
3123 HighlightLines(oldCurrent
, newCurrent
);
3127 // all previously selected items are unselected unless ctrl is held
3128 if ( !event
.ControlDown() )
3129 HighlightAll(false);
3131 ChangeCurrent(newCurrent
);
3133 // refresh the old focus to remove it
3134 RefreshLine( oldCurrent
);
3136 if ( !event
.ControlDown() )
3138 HighlightLine( m_current
, true );
3142 RefreshLine( m_current
);
3147 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3149 wxWindow
*parent
= GetParent();
3151 /* we propagate the key event up */
3152 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3153 ke
.m_shiftDown
= event
.m_shiftDown
;
3154 ke
.m_controlDown
= event
.m_controlDown
;
3155 ke
.m_altDown
= event
.m_altDown
;
3156 ke
.m_metaDown
= event
.m_metaDown
;
3157 ke
.m_keyCode
= event
.m_keyCode
;
3160 ke
.SetEventObject( parent
);
3161 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3166 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3168 wxWindow
*parent
= GetParent();
3170 /* we send a list_key event up */
3173 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3174 le
.m_itemIndex
= m_current
;
3175 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3176 le
.m_code
= event
.GetKeyCode();
3177 le
.SetEventObject( parent
);
3178 parent
->GetEventHandler()->ProcessEvent( le
);
3181 /* we propagate the char event up */
3182 wxKeyEvent
ke( wxEVT_CHAR
);
3183 ke
.m_shiftDown
= event
.m_shiftDown
;
3184 ke
.m_controlDown
= event
.m_controlDown
;
3185 ke
.m_altDown
= event
.m_altDown
;
3186 ke
.m_metaDown
= event
.m_metaDown
;
3187 ke
.m_keyCode
= event
.m_keyCode
;
3190 ke
.SetEventObject( parent
);
3191 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3193 if (event
.GetKeyCode() == WXK_TAB
)
3195 wxNavigationKeyEvent nevent
;
3196 nevent
.SetWindowChange( event
.ControlDown() );
3197 nevent
.SetDirection( !event
.ShiftDown() );
3198 nevent
.SetEventObject( GetParent()->GetParent() );
3199 nevent
.SetCurrentFocus( m_parent
);
3200 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
3204 /* no item -> nothing to do */
3211 switch (event
.GetKeyCode())
3214 if ( m_current
> 0 )
3215 OnArrowChar( m_current
- 1, event
);
3219 if ( m_current
< (size_t)GetItemCount() - 1 )
3220 OnArrowChar( m_current
+ 1, event
);
3225 OnArrowChar( GetItemCount() - 1, event
);
3230 OnArrowChar( 0, event
);
3235 int steps
= InReportView() ? m_linesPerPage
- 1 : m_current
% m_linesPerPage
;
3237 int index
= m_current
- steps
;
3241 OnArrowChar( index
, event
);
3247 int steps
= InReportView()
3248 ? m_linesPerPage
- 1
3249 : m_linesPerPage
- (m_current
% m_linesPerPage
) - 1;
3251 size_t index
= m_current
+ steps
;
3252 size_t count
= GetItemCount();
3253 if ( index
>= count
)
3256 OnArrowChar( index
, event
);
3261 if ( !InReportView() )
3263 int index
= m_current
- m_linesPerPage
;
3267 OnArrowChar( index
, event
);
3272 if ( !InReportView() )
3274 size_t index
= m_current
+ m_linesPerPage
;
3276 size_t count
= GetItemCount();
3277 if ( index
>= count
)
3280 OnArrowChar( index
, event
);
3285 if ( IsSingleSel() )
3287 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3289 if ( IsHighlighted(m_current
) )
3291 // don't unselect the item in single selection mode
3294 //else: select it in ReverseHighlight() below if unselected
3297 ReverseHighlight(m_current
);
3302 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3310 // ----------------------------------------------------------------------------
3312 // ----------------------------------------------------------------------------
3314 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3318 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3319 event
.SetEventObject( GetParent() );
3320 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3324 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3325 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3326 // which are already drawn correctly resulting in horrible flicker - avoid
3336 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3340 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
3341 event
.SetEventObject( GetParent() );
3342 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3349 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3351 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3353 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3355 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3357 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3359 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3361 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3363 else if ( InReportView() && (m_small_image_list
))
3365 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3369 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3371 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3373 m_normal_image_list
->GetSize( index
, width
, height
);
3375 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3377 m_small_image_list
->GetSize( index
, width
, height
);
3379 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3381 m_small_image_list
->GetSize( index
, width
, height
);
3383 else if ( InReportView() && m_small_image_list
)
3385 m_small_image_list
->GetSize( index
, width
, height
);
3394 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3396 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3397 dc
.SetFont( GetFont() );
3400 dc
.GetTextExtent( s
, &lw
, NULL
);
3402 return lw
+ AUTOSIZE_COL_MARGIN
;
3405 void wxListMainWindow::SetImageList( wxImageListType
*imageList
, int which
)
3409 // calc the spacing from the icon size
3412 if ((imageList
) && (imageList
->GetImageCount()) )
3414 imageList
->GetSize(0, width
, height
);
3417 if (which
== wxIMAGE_LIST_NORMAL
)
3419 m_normal_image_list
= imageList
;
3420 m_normal_spacing
= width
+ 8;
3423 if (which
== wxIMAGE_LIST_SMALL
)
3425 m_small_image_list
= imageList
;
3426 m_small_spacing
= width
+ 14;
3427 m_lineHeight
= 0; // ensure that the line height will be recalc'd
3431 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3436 m_small_spacing
= spacing
;
3440 m_normal_spacing
= spacing
;
3444 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3446 return isSmall
? m_small_spacing
: m_normal_spacing
;
3449 // ----------------------------------------------------------------------------
3451 // ----------------------------------------------------------------------------
3453 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3455 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3457 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3459 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3460 item
.m_width
= GetTextLength( item
.m_text
);
3462 wxListHeaderData
*column
= node
->GetData();
3463 column
->SetItem( item
);
3465 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3467 headerWin
->m_dirty
= true;
3471 // invalidate it as it has to be recalculated
3475 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3477 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3478 _T("invalid column index") );
3480 wxCHECK_RET( InReportView(),
3481 _T("SetColumnWidth() can only be called in report mode.") );
3484 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3486 headerWin
->m_dirty
= true;
3488 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3489 wxCHECK_RET( node
, _T("no column?") );
3491 wxListHeaderData
*column
= node
->GetData();
3493 size_t count
= GetItemCount();
3495 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3497 width
= GetTextLength(column
->GetText());
3499 else if ( width
== wxLIST_AUTOSIZE
)
3503 // TODO: determine the max width somehow...
3504 width
= WIDTH_COL_DEFAULT
;
3508 wxClientDC
dc(this);
3509 dc
.SetFont( GetFont() );
3511 int max
= AUTOSIZE_COL_MARGIN
;
3513 for ( size_t i
= 0; i
< count
; i
++ )
3515 wxListLineData
*line
= GetLine(i
);
3516 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3518 wxCHECK_RET( n
, _T("no subitem?") );
3520 wxListItemData
*item
= n
->GetData();
3523 if (item
->HasImage())
3526 GetImageSize( item
->GetImage(), ix
, iy
);
3530 if (item
->HasText())
3533 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
3541 width
= max
+ AUTOSIZE_COL_MARGIN
;
3545 column
->SetWidth( width
);
3547 // invalidate it as it has to be recalculated
3551 int wxListMainWindow::GetHeaderWidth() const
3553 if ( !m_headerWidth
)
3555 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3557 size_t count
= GetColumnCount();
3558 for ( size_t col
= 0; col
< count
; col
++ )
3560 self
->m_headerWidth
+= GetColumnWidth(col
);
3564 return m_headerWidth
;
3567 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3569 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3570 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3572 wxListHeaderData
*column
= node
->GetData();
3573 column
->GetItem( item
);
3576 int wxListMainWindow::GetColumnWidth( int col
) const
3578 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3579 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3581 wxListHeaderData
*column
= node
->GetData();
3582 return column
->GetWidth();
3585 // ----------------------------------------------------------------------------
3587 // ----------------------------------------------------------------------------
3589 void wxListMainWindow::SetItem( wxListItem
&item
)
3591 long id
= item
.m_itemId
;
3592 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3593 _T("invalid item index in SetItem") );
3597 wxListLineData
*line
= GetLine((size_t)id
);
3598 line
->SetItem( item
.m_col
, item
);
3601 // update the item on screen
3603 GetItemRect(id
, rectItem
);
3604 RefreshRect(rectItem
);
3607 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3609 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3610 _T("invalid list ctrl item index in SetItem") );
3612 size_t oldCurrent
= m_current
;
3613 size_t item
= (size_t)litem
; // safe because of the check above
3615 // do we need to change the focus?
3616 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3618 if ( state
& wxLIST_STATE_FOCUSED
)
3620 // don't do anything if this item is already focused
3621 if ( item
!= m_current
)
3623 ChangeCurrent(item
);
3625 if ( oldCurrent
!= (size_t)-1 )
3627 if ( IsSingleSel() )
3629 HighlightLine(oldCurrent
, false);
3632 RefreshLine(oldCurrent
);
3635 RefreshLine( m_current
);
3640 // don't do anything if this item is not focused
3641 if ( item
== m_current
)
3645 if ( IsSingleSel() )
3647 // we must unselect the old current item as well or we
3648 // might end up with more than one selected item in a
3649 // single selection control
3650 HighlightLine(oldCurrent
, false);
3653 RefreshLine( oldCurrent
);
3658 // do we need to change the selection state?
3659 if ( stateMask
& wxLIST_STATE_SELECTED
)
3661 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3663 if ( IsSingleSel() )
3667 // selecting the item also makes it the focused one in the
3669 if ( m_current
!= item
)
3671 ChangeCurrent(item
);
3673 if ( oldCurrent
!= (size_t)-1 )
3675 HighlightLine( oldCurrent
, false );
3676 RefreshLine( oldCurrent
);
3682 // only the current item may be selected anyhow
3683 if ( item
!= m_current
)
3688 if ( HighlightLine(item
, on
) )
3695 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3697 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3698 _T("invalid list ctrl item index in GetItemState()") );
3700 int ret
= wxLIST_STATE_DONTCARE
;
3702 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3704 if ( (size_t)item
== m_current
)
3705 ret
|= wxLIST_STATE_FOCUSED
;
3708 if ( stateMask
& wxLIST_STATE_SELECTED
)
3710 if ( IsHighlighted(item
) )
3711 ret
|= wxLIST_STATE_SELECTED
;
3717 void wxListMainWindow::GetItem( wxListItem
&item
) const
3719 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3720 _T("invalid item index in GetItem") );
3722 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3723 line
->GetItem( item
.m_col
, item
);
3726 // ----------------------------------------------------------------------------
3728 // ----------------------------------------------------------------------------
3730 size_t wxListMainWindow::GetItemCount() const
3732 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3735 void wxListMainWindow::SetItemCount(long count
)
3737 m_selStore
.SetItemCount(count
);
3738 m_countVirt
= count
;
3740 ResetVisibleLinesRange();
3742 // scrollbars must be reset
3746 int wxListMainWindow::GetSelectedItemCount() const
3748 // deal with the quick case first
3749 if ( IsSingleSel() )
3751 return HasCurrent() ? IsHighlighted(m_current
) : false;
3754 // virtual controls remmebers all its selections itself
3756 return m_selStore
.GetSelectedCount();
3758 // TODO: we probably should maintain the number of items selected even for
3759 // non virtual controls as enumerating all lines is really slow...
3760 size_t countSel
= 0;
3761 size_t count
= GetItemCount();
3762 for ( size_t line
= 0; line
< count
; line
++ )
3764 if ( GetLine(line
)->IsHighlighted() )
3771 // ----------------------------------------------------------------------------
3772 // item position/size
3773 // ----------------------------------------------------------------------------
3775 wxRect
wxListMainWindow::GetViewRect() const
3777 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
3778 _T("wxListCtrl::GetViewRect() only works in icon mode") );
3780 // we need to find the longest/tallest label
3783 const int count
= GetItemCount();
3786 for ( int i
= 0; i
< count
; i
++ )
3791 wxCoord x
= r
.GetRight(),
3801 // some fudge needed to make it look prettier
3802 xMax
+= 2*EXTRA_BORDER_X
;
3803 yMax
+= 2*EXTRA_BORDER_Y
;
3805 // account for the scrollbars if necessary
3806 const wxSize sizeAll
= GetClientSize();
3807 if ( xMax
> sizeAll
.x
)
3808 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3809 if ( yMax
> sizeAll
.y
)
3810 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3812 return wxRect(0, 0, xMax
, yMax
);
3815 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
) const
3817 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3818 _T("invalid index in GetItemRect") );
3820 // ensure that we're laid out, otherwise we could return nonsense
3823 wxConstCast(this, wxListMainWindow
)->
3824 RecalculatePositions(true /* no refresh */);
3827 rect
= GetLineRect((size_t)index
);
3829 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3832 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3835 GetItemRect(item
, rect
);
3843 // ----------------------------------------------------------------------------
3844 // geometry calculation
3845 // ----------------------------------------------------------------------------
3847 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3849 wxClientDC
dc( this );
3850 dc
.SetFont( GetFont() );
3852 const size_t count
= GetItemCount();
3855 if ( HasFlag(wxLC_ICON
) )
3856 iconSpacing
= m_normal_spacing
;
3857 else if ( HasFlag(wxLC_SMALL_ICON
) )
3858 iconSpacing
= m_small_spacing
;
3862 // Note that we do not call GetClientSize() here but
3863 // GetSize() and subtract the border size for sunken
3864 // borders manually. This is technically incorrect,
3865 // but we need to know the client area's size WITHOUT
3866 // scrollbars here. Since we don't know if there are
3867 // any scrollbars, we use GetSize() instead. Another
3868 // solution would be to call SetScrollbars() here to
3869 // remove the scrollbars and call GetClientSize() then,
3870 // but this might result in flicker and - worse - will
3871 // reset the scrollbars to 0 which is not good at all
3872 // if you resize a dialog/window, but don't want to
3873 // reset the window scrolling. RR.
3874 // Furthermore, we actually do NOT subtract the border
3875 // width as 2 pixels is just the extra space which we
3876 // need around the actual content in the window. Other-
3877 // wise the text would e.g. touch the upper border. RR.
3880 GetSize( &clientWidth
, &clientHeight
);
3882 const int lineHeight
= GetLineHeight();
3884 if ( InReportView() )
3886 // all lines have the same height and we scroll one line per step
3887 int entireHeight
= count
*lineHeight
+ LINE_SPACING
;
3889 m_linesPerPage
= clientHeight
/ lineHeight
;
3891 ResetVisibleLinesRange();
3893 SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
3894 GetHeaderWidth() / SCROLL_UNIT_X
,
3895 (entireHeight
+ lineHeight
- 1) / lineHeight
,
3896 GetScrollPos(wxHORIZONTAL
),
3897 GetScrollPos(wxVERTICAL
),
3902 // we have 3 different layout strategies: either layout all items
3903 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
3904 // to arrange them in top to bottom, left to right (don't ask me why
3905 // not the other way round...) order
3906 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
3908 int x
= EXTRA_BORDER_X
;
3909 int y
= EXTRA_BORDER_Y
;
3911 wxCoord widthMax
= 0;
3914 for ( i
= 0; i
< count
; i
++ )
3916 wxListLineData
*line
= GetLine(i
);
3917 line
->CalculateSize( &dc
, iconSpacing
);
3918 line
->SetPosition( x
, y
, iconSpacing
);
3920 wxSize sizeLine
= GetLineSize(i
);
3922 if ( HasFlag(wxLC_ALIGN_TOP
) )
3924 if ( sizeLine
.x
> widthMax
)
3925 widthMax
= sizeLine
.x
;
3929 else // wxLC_ALIGN_LEFT
3931 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
3935 if ( HasFlag(wxLC_ALIGN_TOP
) )
3937 // traverse the items again and tweak their sizes so that they are
3938 // all the same in a row
3939 for ( i
= 0; i
< count
; i
++ )
3941 wxListLineData
*line
= GetLine(i
);
3942 line
->m_gi
->ExtendWidth(widthMax
);
3951 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3952 (y
+ lineHeight
) / lineHeight
,
3953 GetScrollPos( wxHORIZONTAL
),
3954 GetScrollPos( wxVERTICAL
),
3958 else // "flowed" arrangement, the most complicated case
3960 // at first we try without any scrollbars, if the items don't fit into
3961 // the window, we recalculate after subtracting the space taken by the
3964 int entireWidth
= 0;
3966 for (int tries
= 0; tries
< 2; tries
++)
3968 entireWidth
= 2*EXTRA_BORDER_X
;
3972 // Now we have decided that the items do not fit into the
3973 // client area, so we need a scrollbar
3974 entireWidth
+= SCROLL_UNIT_X
;
3977 int x
= EXTRA_BORDER_X
;
3978 int y
= EXTRA_BORDER_Y
;
3979 int maxWidthInThisRow
= 0;
3982 int currentlyVisibleLines
= 0;
3984 for (size_t i
= 0; i
< count
; i
++)
3986 currentlyVisibleLines
++;
3987 wxListLineData
*line
= GetLine(i
);
3988 line
->CalculateSize( &dc
, iconSpacing
);
3989 line
->SetPosition( x
, y
, iconSpacing
);
3991 wxSize sizeLine
= GetLineSize(i
);
3993 if ( maxWidthInThisRow
< sizeLine
.x
)
3994 maxWidthInThisRow
= sizeLine
.x
;
3997 if (currentlyVisibleLines
> m_linesPerPage
)
3998 m_linesPerPage
= currentlyVisibleLines
;
4000 if ( y
+ sizeLine
.y
>= clientHeight
)
4002 currentlyVisibleLines
= 0;
4004 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
4005 x
+= maxWidthInThisRow
;
4006 entireWidth
+= maxWidthInThisRow
;
4007 maxWidthInThisRow
= 0;
4010 // We have reached the last item.
4011 if ( i
== count
- 1 )
4012 entireWidth
+= maxWidthInThisRow
;
4014 if ( (tries
== 0) &&
4015 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
4017 clientHeight
-= wxSystemSettings::
4018 GetMetric(wxSYS_HSCROLL_Y
);
4023 if ( i
== count
- 1 )
4024 tries
= 1; // Everything fits, no second try required.
4032 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4034 GetScrollPos( wxHORIZONTAL
),
4043 // FIXME: why should we call it from here?
4050 void wxListMainWindow::RefreshAll()
4055 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
4056 if ( headerWin
&& headerWin
->m_dirty
)
4058 headerWin
->m_dirty
= false;
4059 headerWin
->Refresh();
4063 void wxListMainWindow::UpdateCurrent()
4065 if ( !HasCurrent() && !IsEmpty() )
4071 long wxListMainWindow::GetNextItem( long item
,
4072 int WXUNUSED(geometry
),
4076 max
= GetItemCount();
4077 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
4078 _T("invalid listctrl index in GetNextItem()") );
4080 // notice that we start with the next item (or the first one if item == -1)
4081 // and this is intentional to allow writing a simple loop to iterate over
4082 // all selected items
4086 // this is not an error because the index was ok initially, just no
4097 size_t count
= GetItemCount();
4098 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
4100 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
4103 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
4110 // ----------------------------------------------------------------------------
4112 // ----------------------------------------------------------------------------
4114 void wxListMainWindow::DeleteItem( long lindex
)
4116 size_t count
= GetItemCount();
4118 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
4119 _T("invalid item index in DeleteItem") );
4121 size_t index
= (size_t)lindex
;
4123 // we don't need to adjust the index for the previous items
4124 if ( HasCurrent() && m_current
>= index
)
4126 // if the current item is being deleted, we want the next one to
4127 // become selected - unless there is no next one - so don't adjust
4128 // m_current in this case
4129 if ( m_current
!= index
|| m_current
== count
- 1 )
4135 if ( InReportView() )
4137 ResetVisibleLinesRange();
4144 m_selStore
.OnItemDelete(index
);
4148 m_lines
.RemoveAt( index
);
4151 // we need to refresh the (vert) scrollbar as the number of items changed
4154 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
4156 RefreshAfter(index
);
4159 void wxListMainWindow::DeleteColumn( int col
)
4161 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4163 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
4166 delete node
->GetData();
4167 m_columns
.Erase( node
);
4171 // update all the items
4172 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4174 wxListLineData
* const line
= GetLine(i
);
4175 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
4176 delete n
->GetData();
4177 line
->m_items
.Erase(n
);
4181 // invalidate it as it has to be recalculated
4185 void wxListMainWindow::DoDeleteAllItems()
4189 // nothing to do - in particular, don't send the event
4195 // to make the deletion of all items faster, we don't send the
4196 // notifications for each item deletion in this case but only one event
4197 // for all of them: this is compatible with wxMSW and documented in
4198 // DeleteAllItems() description
4200 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
4201 event
.SetEventObject( GetParent() );
4202 GetParent()->GetEventHandler()->ProcessEvent( event
);
4211 if ( InReportView() )
4213 ResetVisibleLinesRange();
4219 void wxListMainWindow::DeleteAllItems()
4223 RecalculatePositions();
4226 void wxListMainWindow::DeleteEverything()
4228 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
4233 // ----------------------------------------------------------------------------
4234 // scanning for an item
4235 // ----------------------------------------------------------------------------
4237 void wxListMainWindow::EnsureVisible( long index
)
4239 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4240 _T("invalid index in EnsureVisible") );
4242 // We have to call this here because the label in question might just have
4243 // been added and its position is not known yet
4246 RecalculatePositions(true /* no refresh */);
4249 MoveToItem((size_t)index
);
4252 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
4259 size_t count
= GetItemCount();
4260 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
4262 wxListLineData
*line
= GetLine(i
);
4263 if ( line
->GetText(0) == tmp
)
4270 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4276 size_t count
= GetItemCount();
4277 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4279 wxListLineData
*line
= GetLine(i
);
4281 line
->GetItem( 0, item
);
4282 if (item
.m_data
== data
)
4289 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4292 GetVisibleLinesRange(&topItem
, NULL
);
4295 GetItemPosition( GetItemCount()-1, p
);
4298 long id
= (long) floor( pt
.y
*double(GetItemCount()-topItem
-1)/p
.y
+topItem
);
4299 if( id
>= 0 && id
< (long)GetItemCount() )
4305 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
4307 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4309 size_t count
= GetItemCount();
4311 if ( InReportView() )
4313 size_t current
= y
/ GetLineHeight();
4314 if ( current
< count
)
4316 flags
= HitTestLine(current
, x
, y
);
4323 // TODO: optimize it too! this is less simple than for report view but
4324 // enumerating all items is still not a way to do it!!
4325 for ( size_t current
= 0; current
< count
; current
++ )
4327 flags
= HitTestLine(current
, x
, y
);
4336 // ----------------------------------------------------------------------------
4338 // ----------------------------------------------------------------------------
4340 void wxListMainWindow::InsertItem( wxListItem
&item
)
4342 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4344 int count
= GetItemCount();
4345 wxCHECK_RET( item
.m_itemId
>= 0, _T("invalid item index") );
4347 if (item
.m_itemId
> count
)
4348 item
.m_itemId
= count
;
4350 size_t id
= item
.m_itemId
;
4355 // this is unused variable
4358 if ( InReportView() )
4361 // this is unused variable
4364 ResetVisibleLinesRange();
4366 else if ( HasFlag(wxLC_LIST
) )
4368 // this is unused variable
4373 else if ( HasFlag(wxLC_ICON
) )
4375 // this is unused variable
4380 else if ( HasFlag(wxLC_SMALL_ICON
) )
4382 // this is unused variable
4383 mode
= wxLC_ICON
; // no typo
4389 wxFAIL_MSG( _T("unknown mode") );
4392 wxListLineData
*line
= new wxListLineData(this);
4394 line
->SetItem( item
.m_col
, item
);
4396 m_lines
.Insert( line
, id
);
4400 // If an item is selected at or below the point of insertion, we need to
4401 // increment the member variables because the current row's index has gone
4403 if ( HasCurrent() && m_current
>= id
)
4408 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4410 RefreshLines(id
, GetItemCount() - 1);
4413 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4416 if ( InReportView() )
4418 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4419 item
.m_width
= GetTextLength( item
.m_text
);
4421 wxListHeaderData
*column
= new wxListHeaderData( item
);
4422 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4425 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4426 m_columns
.Insert( node
, column
);
4430 m_columns
.Append( column
);
4435 // update all the items
4436 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4438 wxListLineData
* const line
= GetLine(i
);
4439 wxListItemData
* const data
= new wxListItemData(this);
4441 line
->m_items
.Insert(col
, data
);
4443 line
->m_items
.Append(data
);
4447 // invalidate it as it has to be recalculated
4452 // ----------------------------------------------------------------------------
4454 // ----------------------------------------------------------------------------
4456 wxListCtrlCompare list_ctrl_compare_func_2
;
4457 long list_ctrl_compare_data
;
4459 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4461 wxListLineData
*line1
= *arg1
;
4462 wxListLineData
*line2
= *arg2
;
4464 line1
->GetItem( 0, item
);
4465 wxUIntPtr data1
= item
.m_data
;
4466 line2
->GetItem( 0, item
);
4467 wxUIntPtr data2
= item
.m_data
;
4468 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4471 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4473 list_ctrl_compare_func_2
= fn
;
4474 list_ctrl_compare_data
= data
;
4475 m_lines
.Sort( list_ctrl_compare_func_1
);
4479 // ----------------------------------------------------------------------------
4481 // ----------------------------------------------------------------------------
4483 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4485 // update our idea of which lines are shown when we redraw the window the
4487 ResetVisibleLinesRange();
4490 #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
4491 wxScrolledWindow::OnScroll(event
);
4493 HandleOnScroll( event
);
4496 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4498 wxGenericListCtrl
* lc
= GetListCtrl();
4499 wxCHECK_RET( lc
, _T("no listctrl window?") );
4501 lc
->m_headerWin
->Refresh();
4502 lc
->m_headerWin
->Update();
4506 int wxListMainWindow::GetCountPerPage() const
4508 if ( !m_linesPerPage
)
4510 wxConstCast(this, wxListMainWindow
)->
4511 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4514 return m_linesPerPage
;
4517 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4519 wxASSERT_MSG( InReportView(), _T("this is for report mode only") );
4521 if ( m_lineFrom
== (size_t)-1 )
4523 size_t count
= GetItemCount();
4526 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4528 // this may happen if SetScrollbars() hadn't been called yet
4529 if ( m_lineFrom
>= count
)
4530 m_lineFrom
= count
- 1;
4532 // we redraw one extra line but this is needed to make the redrawing
4533 // logic work when there is a fractional number of lines on screen
4534 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4535 if ( m_lineTo
>= count
)
4536 m_lineTo
= count
- 1;
4538 else // empty control
4541 m_lineTo
= (size_t)-1;
4545 wxASSERT_MSG( IsEmpty() ||
4546 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4547 _T("GetVisibleLinesRange() returns incorrect result") );
4555 // -------------------------------------------------------------------------------------
4556 // wxGenericListCtrl
4557 // -------------------------------------------------------------------------------------
4559 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4561 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4562 EVT_SIZE(wxGenericListCtrl::OnSize
)
4565 wxGenericListCtrl::wxGenericListCtrl()
4567 m_imageListNormal
= (wxImageListType
*) NULL
;
4568 m_imageListSmall
= (wxImageListType
*) NULL
;
4569 m_imageListState
= (wxImageListType
*) NULL
;
4571 m_ownsImageListNormal
=
4572 m_ownsImageListSmall
=
4573 m_ownsImageListState
= false;
4575 m_mainWin
= (wxListMainWindow
*) NULL
;
4576 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4580 wxGenericListCtrl::~wxGenericListCtrl()
4582 if (m_ownsImageListNormal
)
4583 delete m_imageListNormal
;
4584 if (m_ownsImageListSmall
)
4585 delete m_imageListSmall
;
4586 if (m_ownsImageListState
)
4587 delete m_imageListState
;
4590 void wxGenericListCtrl::CalculateAndSetHeaderHeight()
4594 // we use 'g' to get the descent, too
4596 m_headerWin
->GetTextExtent(wxT("Hg"), &w
, &h
, &d
);
4597 h
+= d
+ 2 * HEADER_OFFSET_Y
+ EXTRA_HEIGHT
;
4599 // only update if changed
4600 if ( h
!= m_headerHeight
)
4604 m_headerWin
->SetSize(m_headerWin
->GetSize().x
, m_headerHeight
);
4607 ResizeReportView(true);
4612 void wxGenericListCtrl::CreateHeaderWindow()
4614 m_headerWin
= new wxListHeaderWindow
4616 this, wxID_ANY
, m_mainWin
,
4618 wxSize(GetClientSize().x
, m_headerHeight
),
4621 CalculateAndSetHeaderHeight();
4624 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4629 const wxValidator
&validator
,
4630 const wxString
&name
)
4634 m_imageListState
= (wxImageListType
*) NULL
;
4635 m_ownsImageListNormal
=
4636 m_ownsImageListSmall
=
4637 m_ownsImageListState
= false;
4639 m_mainWin
= (wxListMainWindow
*) NULL
;
4640 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4644 if ( !(style
& wxLC_MASK_TYPE
) )
4646 style
= style
| wxLC_LIST
;
4649 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4652 // don't create the inner window with the border
4653 style
&= ~wxBORDER_MASK
;
4655 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0,0), size
, style
);
4657 #ifdef __WXMAC_CARBON__
4658 // Human Interface Guidelines ask us for a special font in this case
4659 if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
)
4662 font
.MacCreateThemeFont( kThemeViewsFont
) ;
4666 if ( InReportView() )
4668 CreateHeaderWindow();
4670 if ( HasFlag(wxLC_NO_HEADER
) )
4672 // VZ: why do we create it at all then?
4673 m_headerWin
->Show( false );
4682 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4684 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4685 _T("wxLC_VIRTUAL can't be [un]set") );
4687 long flag
= GetWindowStyle();
4691 if (style
& wxLC_MASK_TYPE
)
4692 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4693 if (style
& wxLC_MASK_ALIGN
)
4694 flag
&= ~wxLC_MASK_ALIGN
;
4695 if (style
& wxLC_MASK_SORT
)
4696 flag
&= ~wxLC_MASK_SORT
;
4708 SetWindowStyleFlag( flag
);
4711 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4715 m_mainWin
->DeleteEverything();
4717 // has the header visibility changed?
4718 bool hasHeader
= HasHeader();
4719 bool willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4721 if ( hasHeader
!= willHaveHeader
)
4728 // don't delete, just hide, as we can reuse it later
4729 m_headerWin
->Show(false);
4731 //else: nothing to do
4733 else // must show header
4737 CreateHeaderWindow();
4739 else // already have it, just show
4741 m_headerWin
->Show( true );
4745 ResizeReportView(willHaveHeader
);
4749 wxWindow::SetWindowStyleFlag( flag
);
4752 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4754 m_mainWin
->GetColumn( col
, item
);
4758 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
4760 m_mainWin
->SetColumn( col
, item
);
4764 int wxGenericListCtrl::GetColumnWidth( int col
) const
4766 return m_mainWin
->GetColumnWidth( col
);
4769 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4771 m_mainWin
->SetColumnWidth( col
, width
);
4775 int wxGenericListCtrl::GetCountPerPage() const
4777 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4780 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4782 m_mainWin
->GetItem( info
);
4786 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4788 m_mainWin
->SetItem( info
);
4792 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4795 info
.m_text
= label
;
4796 info
.m_mask
= wxLIST_MASK_TEXT
;
4797 info
.m_itemId
= index
;
4801 info
.m_image
= imageId
;
4802 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4804 m_mainWin
->SetItem(info
);
4808 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4810 return m_mainWin
->GetItemState( item
, stateMask
);
4813 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4815 m_mainWin
->SetItemState( item
, state
, stateMask
);
4820 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4823 info
.m_image
= image
;
4824 info
.m_mask
= wxLIST_MASK_IMAGE
;
4825 info
.m_itemId
= item
;
4826 m_mainWin
->SetItem( info
);
4830 wxString
wxGenericListCtrl::GetItemText( long item
) const
4832 return m_mainWin
->GetItemText(item
);
4835 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4837 m_mainWin
->SetItemText(item
, str
);
4840 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
4843 info
.m_itemId
= item
;
4844 m_mainWin
->GetItem( info
);
4848 bool wxGenericListCtrl::SetItemData( long item
, long data
)
4851 info
.m_mask
= wxLIST_MASK_DATA
;
4852 info
.m_itemId
= item
;
4854 m_mainWin
->SetItem( info
);
4858 wxRect
wxGenericListCtrl::GetViewRect() const
4860 return m_mainWin
->GetViewRect();
4863 bool wxGenericListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
4865 m_mainWin
->GetItemRect( item
, rect
);
4866 if ( m_mainWin
->HasHeader() )
4867 rect
.y
+= m_headerHeight
+ 1;
4871 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4873 m_mainWin
->GetItemPosition( item
, pos
);
4877 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4882 int wxGenericListCtrl::GetItemCount() const
4884 return m_mainWin
->GetItemCount();
4887 int wxGenericListCtrl::GetColumnCount() const
4889 return m_mainWin
->GetColumnCount();
4892 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4894 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4897 wxSize
wxGenericListCtrl::GetItemSpacing() const
4899 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
4901 return wxSize(spacing
, spacing
);
4904 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
4906 return m_mainWin
->GetItemSpacing( isSmall
);
4909 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
4912 info
.m_itemId
= item
;
4913 info
.SetTextColour( col
);
4914 m_mainWin
->SetItem( info
);
4917 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
4920 info
.m_itemId
= item
;
4921 m_mainWin
->GetItem( info
);
4922 return info
.GetTextColour();
4925 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
4928 info
.m_itemId
= item
;
4929 info
.SetBackgroundColour( col
);
4930 m_mainWin
->SetItem( info
);
4933 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
4936 info
.m_itemId
= item
;
4937 m_mainWin
->GetItem( info
);
4938 return info
.GetBackgroundColour();
4941 int wxGenericListCtrl::GetSelectedItemCount() const
4943 return m_mainWin
->GetSelectedItemCount();
4946 wxColour
wxGenericListCtrl::GetTextColour() const
4948 return GetForegroundColour();
4951 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
4953 SetForegroundColour(col
);
4956 long wxGenericListCtrl::GetTopItem() const
4959 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
4963 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
4965 return m_mainWin
->GetNextItem( item
, geom
, state
);
4968 wxImageListType
*wxGenericListCtrl::GetImageList(int which
) const
4970 if (which
== wxIMAGE_LIST_NORMAL
)
4972 return m_imageListNormal
;
4974 else if (which
== wxIMAGE_LIST_SMALL
)
4976 return m_imageListSmall
;
4978 else if (which
== wxIMAGE_LIST_STATE
)
4980 return m_imageListState
;
4982 return (wxImageListType
*) NULL
;
4985 void wxGenericListCtrl::SetImageList( wxImageListType
*imageList
, int which
)
4987 if ( which
== wxIMAGE_LIST_NORMAL
)
4989 if (m_ownsImageListNormal
) delete m_imageListNormal
;
4990 m_imageListNormal
= imageList
;
4991 m_ownsImageListNormal
= false;
4993 else if ( which
== wxIMAGE_LIST_SMALL
)
4995 if (m_ownsImageListSmall
) delete m_imageListSmall
;
4996 m_imageListSmall
= imageList
;
4997 m_ownsImageListSmall
= false;
4999 else if ( which
== wxIMAGE_LIST_STATE
)
5001 if (m_ownsImageListState
) delete m_imageListState
;
5002 m_imageListState
= imageList
;
5003 m_ownsImageListState
= false;
5006 m_mainWin
->SetImageList( imageList
, which
);
5009 void wxGenericListCtrl::AssignImageList(wxImageListType
*imageList
, int which
)
5011 SetImageList(imageList
, which
);
5012 if ( which
== wxIMAGE_LIST_NORMAL
)
5013 m_ownsImageListNormal
= true;
5014 else if ( which
== wxIMAGE_LIST_SMALL
)
5015 m_ownsImageListSmall
= true;
5016 else if ( which
== wxIMAGE_LIST_STATE
)
5017 m_ownsImageListState
= true;
5020 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
5025 bool wxGenericListCtrl::DeleteItem( long item
)
5027 m_mainWin
->DeleteItem( item
);
5031 bool wxGenericListCtrl::DeleteAllItems()
5033 m_mainWin
->DeleteAllItems();
5037 bool wxGenericListCtrl::DeleteAllColumns()
5039 size_t count
= m_mainWin
->m_columns
.GetCount();
5040 for ( size_t n
= 0; n
< count
; n
++ )
5046 void wxGenericListCtrl::ClearAll()
5048 m_mainWin
->DeleteEverything();
5051 bool wxGenericListCtrl::DeleteColumn( int col
)
5053 m_mainWin
->DeleteColumn( col
);
5055 // if we don't have the header any longer, we need to relayout the window
5056 if ( !GetColumnCount() )
5058 ResizeReportView(false /* no header */);
5064 void wxGenericListCtrl::Edit( long item
)
5066 m_mainWin
->EditLabel( item
);
5069 bool wxGenericListCtrl::EnsureVisible( long item
)
5071 m_mainWin
->EnsureVisible( item
);
5075 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
5077 return m_mainWin
->FindItem( start
, str
, partial
);
5080 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
5082 return m_mainWin
->FindItem( start
, data
);
5085 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
5086 int WXUNUSED(direction
))
5088 return m_mainWin
->FindItem( pt
);
5091 long wxGenericListCtrl::HitTest( const wxPoint
&point
, int &flags
)
5093 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
5096 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
5098 m_mainWin
->InsertItem( info
);
5099 return info
.m_itemId
;
5102 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
5105 info
.m_text
= label
;
5106 info
.m_mask
= wxLIST_MASK_TEXT
;
5107 info
.m_itemId
= index
;
5108 return InsertItem( info
);
5111 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
5114 info
.m_mask
= wxLIST_MASK_IMAGE
;
5115 info
.m_image
= imageIndex
;
5116 info
.m_itemId
= index
;
5117 return InsertItem( info
);
5120 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
5123 info
.m_text
= label
;
5124 info
.m_image
= imageIndex
;
5125 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
5126 info
.m_itemId
= index
;
5127 return InsertItem( info
);
5130 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
5132 wxCHECK_MSG( m_headerWin
, -1, _T("can't add column in non report mode") );
5134 m_mainWin
->InsertColumn( col
, item
);
5136 // if we hadn't had header before and have it now we need to relayout the
5138 if ( GetColumnCount() == 1 && m_mainWin
->HasHeader() )
5140 ResizeReportView(true /* have header */);
5143 m_headerWin
->Refresh();
5148 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
5149 int format
, int width
)
5152 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
5153 item
.m_text
= heading
;
5156 item
.m_mask
|= wxLIST_MASK_WIDTH
;
5157 item
.m_width
= width
;
5159 item
.m_format
= format
;
5161 return InsertColumn( col
, item
);
5164 bool wxGenericListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
5170 // fn is a function which takes 3 long arguments: item1, item2, data.
5171 // item1 is the long data associated with a first item (NOT the index).
5172 // item2 is the long data associated with a second item (NOT the index).
5173 // data is the same value as passed to SortItems.
5174 // The return value is a negative number if the first item should precede the second
5175 // item, a positive number of the second item should precede the first,
5176 // or zero if the two items are equivalent.
5177 // data is arbitrary data to be passed to the sort function.
5179 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
5181 m_mainWin
->SortItems( fn
, data
);
5185 // ----------------------------------------------------------------------------
5187 // ----------------------------------------------------------------------------
5189 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5194 ResizeReportView(m_mainWin
->HasHeader());
5196 m_mainWin
->RecalculatePositions();
5199 void wxGenericListCtrl::ResizeReportView(bool showHeader
)
5202 GetClientSize( &cw
, &ch
);
5206 m_headerWin
->SetSize( 0, 0, cw
, m_headerHeight
);
5207 m_mainWin
->SetSize( 0, m_headerHeight
+ 1, cw
, ch
- m_headerHeight
- 1 );
5209 else // no header window
5211 m_mainWin
->SetSize( 0, 0, cw
, ch
);
5215 void wxGenericListCtrl::OnInternalIdle()
5217 wxWindow::OnInternalIdle();
5219 // do it only if needed
5220 if ( !m_mainWin
->m_dirty
)
5223 m_mainWin
->RecalculatePositions();
5226 // ----------------------------------------------------------------------------
5228 // ----------------------------------------------------------------------------
5230 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5234 m_mainWin
->SetBackgroundColour( colour
);
5235 m_mainWin
->m_dirty
= true;
5241 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5243 if ( !wxWindow::SetForegroundColour( colour
) )
5248 m_mainWin
->SetForegroundColour( colour
);
5249 m_mainWin
->m_dirty
= true;
5254 m_headerWin
->SetForegroundColour( colour
);
5260 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5262 if ( !wxWindow::SetFont( font
) )
5267 m_mainWin
->SetFont( font
);
5268 m_mainWin
->m_dirty
= true;
5273 m_headerWin
->SetFont( font
);
5274 CalculateAndSetHeaderHeight();
5285 #include "wx/listbox.h"
5290 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5293 // Use the same color scheme as wxListBox
5294 return wxListBox::GetClassDefaultAttributes(variant
);
5296 wxUnusedVar(variant
);
5297 wxVisualAttributes attr
;
5298 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
5299 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5300 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5305 // ----------------------------------------------------------------------------
5306 // methods forwarded to m_mainWin
5307 // ----------------------------------------------------------------------------
5309 #if wxUSE_DRAG_AND_DROP
5311 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5313 m_mainWin
->SetDropTarget( dropTarget
);
5316 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5318 return m_mainWin
->GetDropTarget();
5321 #endif // wxUSE_DRAG_AND_DROP
5323 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5325 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5328 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5330 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5333 wxColour
wxGenericListCtrl::GetForegroundColour() const
5335 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5338 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5341 return m_mainWin
->PopupMenu( menu
, x
, y
);
5344 #endif // wxUSE_MENUS
5347 void wxGenericListCtrl::SetFocus()
5349 /* The test in window.cpp fails as we are a composite
5350 window, so it checks against "this", but not m_mainWin. */
5351 if ( DoFindFocus() != this )
5352 m_mainWin
->SetFocus();
5355 wxSize
wxGenericListCtrl::DoGetBestSize() const
5357 // Something is better than nothing...
5358 // 100x80 is what the MSW version will get from the default
5359 // wxControl::DoGetBestSize
5360 return wxSize(100,80);
5363 // ----------------------------------------------------------------------------
5364 // virtual list control support
5365 // ----------------------------------------------------------------------------
5367 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5369 // this is a pure virtual function, in fact - which is not really pure
5370 // because the controls which are not virtual don't need to implement it
5371 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5373 return wxEmptyString
;
5376 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5378 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5380 wxT("List control has an image list, OnGetItemImage should be overridden."));
5385 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5387 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5388 _T("invalid item index in OnGetItemAttr()") );
5390 // no attributes by default
5394 void wxGenericListCtrl::SetItemCount(long count
)
5396 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5398 m_mainWin
->SetItemCount(count
);
5401 void wxGenericListCtrl::RefreshItem(long item
)
5403 m_mainWin
->RefreshLine(item
);
5406 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5408 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5412 * Generic wxListCtrl is more or less a container for two other
5413 * windows which drawings are done upon. These are namely
5414 * 'm_headerWin' and 'm_mainWin'.
5415 * Here we override 'virtual wxWindow::Refresh()' to mimic the
5416 * behaviour wxListCtrl has under wxMSW.
5418 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5422 // The easy case, no rectangle specified.
5424 m_headerWin
->Refresh(eraseBackground
);
5427 m_mainWin
->Refresh(eraseBackground
);
5431 // Refresh the header window
5434 wxRect rectHeader
= m_headerWin
->GetRect();
5435 rectHeader
.Intersect(*rect
);
5436 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5439 m_headerWin
->GetPosition(&x
, &y
);
5440 rectHeader
.Offset(-x
, -y
);
5441 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5446 // Refresh the main window
5449 wxRect rectMain
= m_mainWin
->GetRect();
5450 rectMain
.Intersect(*rect
);
5451 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5454 m_mainWin
->GetPosition(&x
, &y
);
5455 rectMain
.Offset(-x
, -y
);
5456 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5462 void wxGenericListCtrl::Freeze()
5464 m_mainWin
->Freeze();
5467 void wxGenericListCtrl::Thaw()
5472 #endif // wxUSE_LISTCTRL