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 // ----------------------------------------------------------------------------
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 // Include wx/listctrl.h (with wxListView declaration)
51 // only when wxGenericListCtrl is the only
52 // implementation, and therefore wxListView needs
53 // to be derived from the 'generic' version.
55 #if defined(__WIN32__) && !defined(__WXUNIVERSAL__)
56 #include "wx/generic/listctrl.h"
58 #define wxImageListType wxGenericImageList
60 #include "wx/listctrl.h"
62 #define wxImageListType wxImageList
65 #if defined(__WXGTK__)
67 #include "wx/gtk/win_gtk.h"
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
74 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
)
75 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
)
76 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
)
77 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
)
78 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
)
79 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
)
80 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
)
81 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
)
82 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
)
83 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
)
84 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
)
85 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
)
86 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
)
87 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
)
88 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
)
89 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING
)
90 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG
)
91 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
)
92 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
)
93 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
)
94 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED
)
95 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
)
97 // ----------------------------------------------------------------------------
99 // ----------------------------------------------------------------------------
101 // the height of the header window (FIXME: should depend on its font!)
102 static const int HEADER_HEIGHT
= 23;
104 // the scrollbar units
105 static const int SCROLL_UNIT_X
= 15;
106 static const int SCROLL_UNIT_Y
= 15;
108 // the spacing between the lines (in report mode)
109 static const int LINE_SPACING
= 0;
111 // extra margins around the text label
112 static const int EXTRA_WIDTH
= 3;
113 static const int EXTRA_HEIGHT
= 4;
115 // offset for the header window
116 static const int HEADER_OFFSET_X
= 1;
117 static const int HEADER_OFFSET_Y
= 1;
119 // when autosizing the columns, add some slack
120 static const int AUTOSIZE_COL_MARGIN
= 10;
122 // default and minimal widths for the header columns
123 static const int WIDTH_COL_DEFAULT
= 80;
124 static const int WIDTH_COL_MIN
= 10;
126 // the space between the image and the text in the report mode
127 static const int IMAGE_MARGIN_IN_REPORT_MODE
= 5;
129 // ============================================================================
131 // ============================================================================
133 // ----------------------------------------------------------------------------
135 // ----------------------------------------------------------------------------
137 int CMPFUNC_CONV
wxSizeTCmpFn(size_t n1
, size_t n2
) { return n1
- n2
; }
139 WX_DEFINE_SORTED_EXPORTED_ARRAY_LONG(size_t, wxIndexArray
);
141 // this class is used to store the selected items in the virtual list control
142 // (but it is not tied to list control and so can be used with other controls
143 // such as wxListBox in wxUniv)
145 // the idea is to make it really smart later (i.e. store the selections as an
146 // array of ranes + individual items) but, as I don't have time to do it now
147 // (this would require writing code to merge/break ranges and much more) keep
148 // it simple but define a clean interface to it which allows it to be made
150 class WXDLLEXPORT wxSelectionStore
153 wxSelectionStore() : m_itemsSel(wxSizeTCmpFn
) { Init(); }
155 // set the total number of items we handle
156 void SetItemCount(size_t count
) { m_count
= count
; }
158 // special case of SetItemCount(0)
159 void Clear() { m_itemsSel
.Clear(); m_count
= 0; m_defaultState
= FALSE
; }
161 // must be called when a new item is inserted/added
162 void OnItemAdd(size_t item
) { wxFAIL_MSG( _T("TODO") ); }
164 // must be called when an item is deleted
165 void OnItemDelete(size_t item
);
167 // select one item, use SelectRange() insted if possible!
169 // returns true if the items selection really changed
170 bool SelectItem(size_t item
, bool select
= TRUE
);
172 // select the range of items
174 // return true and fill the itemsChanged array with the indices of items
175 // which have changed state if "few" of them did, otherwise return false
176 // (meaning that too many items changed state to bother counting them
178 bool SelectRange(size_t itemFrom
, size_t itemTo
,
180 wxArrayInt
*itemsChanged
= NULL
);
182 // return true if the given item is selected
183 bool IsSelected(size_t item
) const;
185 // return the total number of selected items
186 size_t GetSelectedCount() const
188 return m_defaultState
? m_count
- m_itemsSel
.GetCount()
189 : m_itemsSel
.GetCount();
194 void Init() { m_defaultState
= FALSE
; }
196 // the total number of items we handle
199 // the default state: normally, FALSE (i.e. off) but maybe set to TRUE if
200 // there are more selected items than non selected ones - this allows to
201 // handle selection of all items efficiently
204 // the array of items whose selection state is different from default
205 wxIndexArray m_itemsSel
;
207 DECLARE_NO_COPY_CLASS(wxSelectionStore
)
210 //-----------------------------------------------------------------------------
211 // wxListItemData (internal)
212 //-----------------------------------------------------------------------------
214 class WXDLLEXPORT wxListItemData
217 wxListItemData(wxListMainWindow
*owner
);
220 void SetItem( const wxListItem
&info
);
221 void SetImage( int image
) { m_image
= image
; }
222 void SetData( long data
) { m_data
= data
; }
223 void SetPosition( int x
, int y
);
224 void SetSize( int width
, int height
);
226 bool HasText() const { return !m_text
.empty(); }
227 const wxString
& GetText() const { return m_text
; }
228 void SetText(const wxString
& text
) { m_text
= text
; }
230 // we can't use empty string for measuring the string width/height, so
231 // always return something
232 wxString
GetTextForMeasuring() const
234 wxString s
= GetText();
241 bool IsHit( int x
, int y
) const;
245 int GetWidth() const;
246 int GetHeight() const;
248 int GetImage() const { return m_image
; }
249 bool HasImage() const { return GetImage() != -1; }
251 void GetItem( wxListItem
&info
) const;
253 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
254 wxListItemAttr
*GetAttr() const { return m_attr
; }
257 // the item image or -1
260 // user data associated with the item
263 // the item coordinates are not used in report mode, instead this pointer
264 // is NULL and the owner window is used to retrieve the item position and
268 // the list ctrl we are in
269 wxListMainWindow
*m_owner
;
271 // custom attributes or NULL
272 wxListItemAttr
*m_attr
;
275 // common part of all ctors
281 //-----------------------------------------------------------------------------
282 // wxListHeaderData (internal)
283 //-----------------------------------------------------------------------------
285 class WXDLLEXPORT wxListHeaderData
: public wxObject
289 wxListHeaderData( const wxListItem
&info
);
290 void SetItem( const wxListItem
&item
);
291 void SetPosition( int x
, int y
);
292 void SetWidth( int w
);
293 void SetFormat( int format
);
294 void SetHeight( int h
);
295 bool HasImage() const;
297 bool HasText() const { return !m_text
.empty(); }
298 const wxString
& GetText() const { return m_text
; }
299 void SetText(const wxString
& text
) { m_text
= text
; }
301 void GetItem( wxListItem
&item
);
303 bool IsHit( int x
, int y
) const;
304 int GetImage() const;
305 int GetWidth() const;
306 int GetFormat() const;
322 //-----------------------------------------------------------------------------
323 // wxListLineData (internal)
324 //-----------------------------------------------------------------------------
326 WX_DECLARE_LIST(wxListItemData
, wxListItemDataList
);
327 #include "wx/listimpl.cpp"
328 WX_DEFINE_LIST(wxListItemDataList
);
330 class WXDLLEXPORT wxListLineData
333 // the list of subitems: only may have more than one item in report mode
334 wxListItemDataList m_items
;
336 // this is not used in report view
348 // the part to be highlighted
349 wxRect m_rectHighlight
;
352 // is this item selected? [NB: not used in virtual mode]
355 // back pointer to the list ctrl
356 wxListMainWindow
*m_owner
;
359 wxListLineData(wxListMainWindow
*owner
);
361 ~wxListLineData() { delete m_gi
; }
363 // are we in report mode?
364 inline bool InReportView() const;
366 // are we in virtual report mode?
367 inline bool IsVirtual() const;
369 // these 2 methods shouldn't be called for report view controls, in that
370 // case we determine our position/size ourselves
372 // calculate the size of the line
373 void CalculateSize( wxDC
*dc
, int spacing
);
375 // remember the position this line appears at
376 void SetPosition( int x
, int y
, int window_width
, int spacing
);
380 void SetImage( int image
) { SetImage(0, image
); }
381 int GetImage() const { return GetImage(0); }
382 bool HasImage() const { return GetImage() != -1; }
383 bool HasText() const { return !GetText(0).empty(); }
385 void SetItem( int index
, const wxListItem
&info
);
386 void GetItem( int index
, wxListItem
&info
);
388 wxString
GetText(int index
) const;
389 void SetText( int index
, const wxString s
);
391 wxListItemAttr
*GetAttr() const;
392 void SetAttr(wxListItemAttr
*attr
);
394 // return true if the highlighting really changed
395 bool Highlight( bool on
);
397 void ReverseHighlight();
399 bool IsHighlighted() const
401 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
403 return m_highlighted
;
406 // draw the line on the given DC in icon/list mode
407 void Draw( wxDC
*dc
);
409 // the same in report mode
410 void DrawInReportMode( wxDC
*dc
,
412 const wxRect
& rectHL
,
416 // set the line to contain num items (only can be > 1 in report mode)
417 void InitItems( int num
);
419 // get the mode (i.e. style) of the list control
420 inline int GetMode() const;
422 // prepare the DC for drawing with these item's attributes, return true if
423 // we need to draw the items background to highlight it, false otherwise
424 bool SetAttributes(wxDC
*dc
,
425 const wxListItemAttr
*attr
,
428 // these are only used by GetImage/SetImage above, we don't support images
429 // with subitems at the public API level yet
430 void SetImage( int index
, int image
);
431 int GetImage( int index
) const;
434 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
435 #include "wx/arrimpl.cpp"
436 WX_DEFINE_OBJARRAY(wxListLineDataArray
);
438 //-----------------------------------------------------------------------------
439 // wxListHeaderWindow (internal)
440 //-----------------------------------------------------------------------------
442 class WXDLLEXPORT wxListHeaderWindow
: public wxWindow
445 wxListMainWindow
*m_owner
;
446 wxCursor
*m_currentCursor
;
447 wxCursor
*m_resizeCursor
;
450 // column being resized or -1
453 // divider line position in logical (unscrolled) coords
456 // minimal position beyond which the divider line can't be dragged in
461 wxListHeaderWindow();
463 wxListHeaderWindow( wxWindow
*win
,
465 wxListMainWindow
*owner
,
466 const wxPoint
&pos
= wxDefaultPosition
,
467 const wxSize
&size
= wxDefaultSize
,
469 const wxString
&name
= "wxlistctrlcolumntitles" );
471 virtual ~wxListHeaderWindow();
473 void DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
);
475 void AdjustDC(wxDC
& dc
);
477 void OnPaint( wxPaintEvent
&event
);
478 void OnMouse( wxMouseEvent
&event
);
479 void OnSetFocus( wxFocusEvent
&event
);
485 // common part of all ctors
488 void SendListEvent(wxEventType type
, wxPoint pos
);
490 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
491 DECLARE_EVENT_TABLE()
494 //-----------------------------------------------------------------------------
495 // wxListRenameTimer (internal)
496 //-----------------------------------------------------------------------------
498 class WXDLLEXPORT wxListRenameTimer
: public wxTimer
501 wxListMainWindow
*m_owner
;
504 wxListRenameTimer( wxListMainWindow
*owner
);
508 //-----------------------------------------------------------------------------
509 // wxListTextCtrl (internal)
510 //-----------------------------------------------------------------------------
512 class WXDLLEXPORT wxListTextCtrl
: public wxTextCtrl
515 wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
);
518 void OnChar( wxKeyEvent
&event
);
519 void OnKeyUp( wxKeyEvent
&event
);
520 void OnKillFocus( wxFocusEvent
&event
);
522 bool AcceptChanges();
526 wxListMainWindow
*m_owner
;
527 wxString m_startValue
;
531 DECLARE_EVENT_TABLE()
534 //-----------------------------------------------------------------------------
535 // wxListMainWindow (internal)
536 //-----------------------------------------------------------------------------
538 WX_DECLARE_LIST(wxListHeaderData
, wxListHeaderDataList
);
539 #include "wx/listimpl.cpp"
540 WX_DEFINE_LIST(wxListHeaderDataList
);
542 class WXDLLEXPORT wxListMainWindow
: public wxScrolledWindow
546 wxListMainWindow( wxWindow
*parent
,
548 const wxPoint
& pos
= wxDefaultPosition
,
549 const wxSize
& size
= wxDefaultSize
,
551 const wxString
&name
= _T("listctrlmainwindow") );
553 virtual ~wxListMainWindow();
555 bool HasFlag(int flag
) const { return m_parent
->HasFlag(flag
); }
557 // return true if this is a virtual list control
558 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
560 // return true if the control is in report mode
561 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
563 // return true if we are in single selection mode, false if multi sel
564 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL
); }
566 // do we have a header window?
567 bool HasHeader() const
568 { return HasFlag(wxLC_REPORT
) && !HasFlag(wxLC_NO_HEADER
); }
570 void HighlightAll( bool on
);
572 // all these functions only do something if the line is currently visible
574 // change the line "selected" state, return TRUE if it really changed
575 bool HighlightLine( size_t line
, bool highlight
= TRUE
);
577 // as HighlightLine() but do it for the range of lines: this is incredibly
578 // more efficient for virtual list controls!
580 // NB: unlike HighlightLine() this one does refresh the lines on screen
581 void HighlightLines( size_t lineFrom
, size_t lineTo
, bool on
= TRUE
);
583 // toggle the line state and refresh it
584 void ReverseHighlight( size_t line
)
585 { HighlightLine(line
, !IsHighlighted(line
)); RefreshLine(line
); }
587 // return true if the line is highlighted
588 bool IsHighlighted(size_t line
) const;
590 // refresh one or several lines at once
591 void RefreshLine( size_t line
);
592 void RefreshLines( size_t lineFrom
, size_t lineTo
);
594 // refresh all selected items
595 void RefreshSelected();
597 // refresh all lines below the given one: the difference with
598 // RefreshLines() is that the index here might not be a valid one (happens
599 // when the last line is deleted)
600 void RefreshAfter( size_t lineFrom
);
602 // the methods which are forwarded to wxListLineData itself in list/icon
603 // modes but are here because the lines don't store their positions in the
606 // get the bound rect for the entire line
607 wxRect
GetLineRect(size_t line
) const;
609 // get the bound rect of the label
610 wxRect
GetLineLabelRect(size_t line
) const;
612 // get the bound rect of the items icon (only may be called if we do have
614 wxRect
GetLineIconRect(size_t line
) const;
616 // get the rect to be highlighted when the item has focus
617 wxRect
GetLineHighlightRect(size_t line
) const;
619 // get the size of the total line rect
620 wxSize
GetLineSize(size_t line
) const
621 { return GetLineRect(line
).GetSize(); }
623 // return the hit code for the corresponding position (in this line)
624 long HitTestLine(size_t line
, int x
, int y
) const;
626 // bring the selected item into view, scrolling to it if necessary
627 void MoveToItem(size_t item
);
629 // bring the current item into view
630 void MoveToFocus() { MoveToItem(m_current
); }
632 // start editing the label of the given item
633 void EditLabel( long item
);
635 // suspend/resume redrawing the control
641 void OnRenameTimer();
642 bool OnRenameAccept(size_t itemEdit
, const wxString
& value
);
644 void OnMouse( wxMouseEvent
&event
);
646 // called to switch the selection from the current item to newCurrent,
647 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
649 void OnChar( wxKeyEvent
&event
);
650 void OnKeyDown( wxKeyEvent
&event
);
651 void OnSetFocus( wxFocusEvent
&event
);
652 void OnKillFocus( wxFocusEvent
&event
);
653 void OnScroll(wxScrollWinEvent
& event
) ;
655 void OnPaint( wxPaintEvent
&event
);
657 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
658 void GetImageSize( int index
, int &width
, int &height
) const;
659 int GetTextLength( const wxString
&s
) const;
661 void SetImageList( wxGenericImageList
*imageList
, int which
);
662 void SetItemSpacing( int spacing
, bool isSmall
= FALSE
);
663 int GetItemSpacing( bool isSmall
= FALSE
);
665 void SetColumn( int col
, wxListItem
&item
);
666 void SetColumnWidth( int col
, int width
);
667 void GetColumn( int col
, wxListItem
&item
) const;
668 int GetColumnWidth( int col
) const;
669 int GetColumnCount() const { return m_columns
.GetCount(); }
671 // returns the sum of the heights of all columns
672 int GetHeaderWidth() const;
674 int GetCountPerPage() const;
676 void SetItem( wxListItem
&item
);
677 void GetItem( wxListItem
&item
) const;
678 void SetItemState( long item
, long state
, long stateMask
);
679 int GetItemState( long item
, long stateMask
) const;
680 void GetItemRect( long index
, wxRect
&rect
) const;
681 bool GetItemPosition( long item
, wxPoint
& pos
) const;
682 int GetSelectedItemCount() const;
684 wxString
GetItemText(long item
) const
687 info
.m_itemId
= item
;
692 void SetItemText(long item
, const wxString
& value
)
695 info
.m_mask
= wxLIST_MASK_TEXT
;
696 info
.m_itemId
= item
;
701 // set the scrollbars and update the positions of the items
702 void RecalculatePositions(bool noRefresh
= FALSE
);
704 // refresh the window and the header
707 long GetNextItem( long item
, int geometry
, int state
) const;
708 void DeleteItem( long index
);
709 void DeleteAllItems();
710 void DeleteColumn( int col
);
711 void DeleteEverything();
712 void EnsureVisible( long index
);
713 long FindItem( long start
, const wxString
& str
, bool partial
= FALSE
);
714 long FindItem( long start
, long data
);
715 long HitTest( int x
, int y
, int &flags
);
716 void InsertItem( wxListItem
&item
);
717 void InsertColumn( long col
, wxListItem
&item
);
718 void SortItems( wxListCtrlCompare fn
, long data
);
720 size_t GetItemCount() const;
721 bool IsEmpty() const { return GetItemCount() == 0; }
722 void SetItemCount(long count
);
724 // change the current (== focused) item, send a notification event
725 void ChangeCurrent(size_t current
);
726 void ResetCurrent() { ChangeCurrent((size_t)-1); }
727 bool HasCurrent() const { return m_current
!= (size_t)-1; }
729 // send out a wxListEvent
730 void SendNotify( size_t line
,
732 wxPoint point
= wxDefaultPosition
);
734 // override base class virtual to reset m_lineHeight when the font changes
735 virtual bool SetFont(const wxFont
& font
)
737 if ( !wxScrolledWindow::SetFont(font
) )
745 // these are for wxListLineData usage only
747 // get the backpointer to the list ctrl
748 wxGenericListCtrl
*GetListCtrl() const
750 return wxStaticCast(GetParent(), wxGenericListCtrl
);
753 // get the height of all lines (assuming they all do have the same height)
754 wxCoord
GetLineHeight() const;
756 // get the y position of the given line (only for report view)
757 wxCoord
GetLineY(size_t line
) const;
759 // get the brush to use for the item highlighting
760 wxBrush
*GetHighlightBrush() const
762 return m_hasFocus
? m_highlightBrush
: m_highlightUnfocusedBrush
;
766 // the array of all line objects for a non virtual list control (for the
767 // virtual list control we only ever use m_lines[0])
768 wxListLineDataArray m_lines
;
770 // the list of column objects
771 wxListHeaderDataList m_columns
;
773 // currently focused item or -1
776 // the number of lines per page
779 // this flag is set when something which should result in the window
780 // redrawing happens (i.e. an item was added or deleted, or its appearance
781 // changed) and OnPaint() doesn't redraw the window while it is set which
782 // allows to minimize the number of repaintings when a lot of items are
783 // being added. The real repainting occurs only after the next OnIdle()
787 wxColour
*m_highlightColour
;
790 wxGenericImageList
*m_small_image_list
;
791 wxGenericImageList
*m_normal_image_list
;
793 int m_normal_spacing
;
797 wxTimer
*m_renameTimer
;
802 // for double click logic
803 size_t m_lineLastClicked
,
804 m_lineBeforeLastClicked
;
807 // the total count of items in a virtual list control
810 // the object maintaining the items selection state, only used in virtual
812 wxSelectionStore m_selStore
;
814 // common part of all ctors
817 // intiialize m_[xy]Scroll
818 void InitScrolling();
820 // get the line data for the given index
821 wxListLineData
*GetLine(size_t n
) const
823 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
827 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
835 // get a dummy line which can be used for geometry calculations and such:
836 // you must use GetLine() if you want to really draw the line
837 wxListLineData
*GetDummyLine() const;
839 // cache the line data of the n-th line in m_lines[0]
840 void CacheLineData(size_t line
);
842 // get the range of visible lines
843 void GetVisibleLinesRange(size_t *from
, size_t *to
);
845 // force us to recalculate the range of visible lines
846 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
848 // get the colour to be used for drawing the rules
849 wxColour
GetRuleColour() const
854 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
859 // initialize the current item if needed
860 void UpdateCurrent();
862 // delete all items but don't refresh: called from dtor
863 void DoDeleteAllItems();
865 // the height of one line using the current font
866 wxCoord m_lineHeight
;
868 // the total header width or 0 if not calculated yet
869 wxCoord m_headerWidth
;
871 // the first and last lines being shown on screen right now (inclusive),
872 // both may be -1 if they must be calculated so never access them directly:
873 // use GetVisibleLinesRange() above instead
877 // the brushes to use for item highlighting when we do/don't have focus
878 wxBrush
*m_highlightBrush
,
879 *m_highlightUnfocusedBrush
;
881 // if this is > 0, the control is frozen and doesn't redraw itself
882 size_t m_freezeCount
;
884 DECLARE_DYNAMIC_CLASS(wxListMainWindow
)
885 DECLARE_EVENT_TABLE()
888 // ============================================================================
890 // ============================================================================
892 // ----------------------------------------------------------------------------
894 // ----------------------------------------------------------------------------
896 bool wxSelectionStore::IsSelected(size_t item
) const
898 bool isSel
= m_itemsSel
.Index(item
) != wxNOT_FOUND
;
900 // if the default state is to be selected, being in m_itemsSel means that
901 // the item is not selected, so we have to inverse the logic
902 return m_defaultState
? !isSel
: isSel
;
905 bool wxSelectionStore::SelectItem(size_t item
, bool select
)
907 // search for the item ourselves as like this we get the index where to
908 // insert it later if needed, so we do only one search in the array instead
909 // of two (adding item to a sorted array requires a search)
910 size_t index
= m_itemsSel
.IndexForInsert(item
);
911 bool isSel
= index
< m_itemsSel
.GetCount() && m_itemsSel
[index
] == item
;
913 if ( select
!= m_defaultState
)
917 m_itemsSel
.AddAt(item
, index
);
922 else // reset to default state
926 m_itemsSel
.RemoveAt(index
);
934 bool wxSelectionStore::SelectRange(size_t itemFrom
, size_t itemTo
,
936 wxArrayInt
*itemsChanged
)
938 // 100 is hardcoded but it shouldn't matter much: the important thing is
939 // that we don't refresh everything when really few (e.g. 1 or 2) items
941 static const size_t MANY_ITEMS
= 100;
943 wxASSERT_MSG( itemFrom
<= itemTo
, _T("should be in order") );
945 // are we going to have more [un]selected items than the other ones?
946 if ( itemTo
- itemFrom
> m_count
/2 )
948 if ( select
!= m_defaultState
)
950 // the default state now becomes the same as 'select'
951 m_defaultState
= select
;
953 // so all the old selections (which had state select) shouldn't be
954 // selected any more, but all the other ones should
955 wxIndexArray selOld
= m_itemsSel
;
958 // TODO: it should be possible to optimize the searches a bit
959 // knowing the possible range
962 for ( item
= 0; item
< itemFrom
; item
++ )
964 if ( selOld
.Index(item
) == wxNOT_FOUND
)
965 m_itemsSel
.Add(item
);
968 for ( item
= itemTo
+ 1; item
< m_count
; item
++ )
970 if ( selOld
.Index(item
) == wxNOT_FOUND
)
971 m_itemsSel
.Add(item
);
974 // many items (> half) changed state
977 else // select == m_defaultState
979 // get the inclusive range of items between itemFrom and itemTo
980 size_t count
= m_itemsSel
.GetCount(),
981 start
= m_itemsSel
.IndexForInsert(itemFrom
),
982 end
= m_itemsSel
.IndexForInsert(itemTo
);
984 if ( start
== count
|| m_itemsSel
[start
] < itemFrom
)
989 if ( end
== count
|| m_itemsSel
[end
] > itemTo
)
996 // delete all of them (from end to avoid changing indices)
997 for ( int i
= end
; i
>= (int)start
; i
-- )
1001 if ( itemsChanged
->GetCount() > MANY_ITEMS
)
1003 // stop counting (see comment below)
1004 itemsChanged
= NULL
;
1008 itemsChanged
->Add(m_itemsSel
[i
]);
1012 m_itemsSel
.RemoveAt(i
);
1017 else // "few" items change state
1021 itemsChanged
->Empty();
1024 // just add the items to the selection
1025 for ( size_t item
= itemFrom
; item
<= itemTo
; item
++ )
1027 if ( SelectItem(item
, select
) && itemsChanged
)
1029 itemsChanged
->Add(item
);
1031 if ( itemsChanged
->GetCount() > MANY_ITEMS
)
1033 // stop counting them, we'll just eat gobs of memory
1034 // for nothing at all - faster to refresh everything in
1036 itemsChanged
= NULL
;
1042 // we set it to NULL if there are many items changing state
1043 return itemsChanged
!= NULL
;
1046 void wxSelectionStore::OnItemDelete(size_t item
)
1048 size_t count
= m_itemsSel
.GetCount(),
1049 i
= m_itemsSel
.IndexForInsert(item
);
1051 if ( i
< count
&& m_itemsSel
[i
] == item
)
1053 // this item itself was in m_itemsSel, remove it from there
1054 m_itemsSel
.RemoveAt(i
);
1059 // and adjust the index of all which follow it
1062 // all following elements must be greater than the one we deleted
1063 wxASSERT_MSG( m_itemsSel
[i
] > item
, _T("logic error") );
1069 //-----------------------------------------------------------------------------
1071 //-----------------------------------------------------------------------------
1073 wxListItemData::~wxListItemData()
1075 // in the virtual list control the attributes are managed by the main
1076 // program, so don't delete them
1077 if ( !m_owner
->IsVirtual() )
1085 void wxListItemData::Init()
1093 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
1099 if ( owner
->InReportView() )
1105 m_rect
= new wxRect
;
1109 void wxListItemData::SetItem( const wxListItem
&info
)
1111 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
1112 SetText(info
.m_text
);
1113 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
1114 m_image
= info
.m_image
;
1115 if ( info
.m_mask
& wxLIST_MASK_DATA
)
1116 m_data
= info
.m_data
;
1118 if ( info
.HasAttributes() )
1121 *m_attr
= *info
.GetAttributes();
1123 m_attr
= new wxListItemAttr(*info
.GetAttributes());
1131 m_rect
->width
= info
.m_width
;
1135 void wxListItemData::SetPosition( int x
, int y
)
1137 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
1143 void wxListItemData::SetSize( int width
, int height
)
1145 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
1148 m_rect
->width
= width
;
1150 m_rect
->height
= height
;
1153 bool wxListItemData::IsHit( int x
, int y
) const
1155 wxCHECK_MSG( m_rect
, FALSE
, _T("can't be called in this mode") );
1157 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Inside(x
, y
);
1160 int wxListItemData::GetX() const
1162 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1167 int wxListItemData::GetY() const
1169 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1174 int wxListItemData::GetWidth() const
1176 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1178 return m_rect
->width
;
1181 int wxListItemData::GetHeight() const
1183 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1185 return m_rect
->height
;
1188 void wxListItemData::GetItem( wxListItem
&info
) const
1190 info
.m_text
= m_text
;
1191 info
.m_image
= m_image
;
1192 info
.m_data
= m_data
;
1196 if ( m_attr
->HasTextColour() )
1197 info
.SetTextColour(m_attr
->GetTextColour());
1198 if ( m_attr
->HasBackgroundColour() )
1199 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
1200 if ( m_attr
->HasFont() )
1201 info
.SetFont(m_attr
->GetFont());
1205 //-----------------------------------------------------------------------------
1207 //-----------------------------------------------------------------------------
1209 void wxListHeaderData::Init()
1220 wxListHeaderData::wxListHeaderData()
1225 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1232 void wxListHeaderData::SetItem( const wxListItem
&item
)
1234 m_mask
= item
.m_mask
;
1236 if ( m_mask
& wxLIST_MASK_TEXT
)
1237 m_text
= item
.m_text
;
1239 if ( m_mask
& wxLIST_MASK_IMAGE
)
1240 m_image
= item
.m_image
;
1242 if ( m_mask
& wxLIST_MASK_FORMAT
)
1243 m_format
= item
.m_format
;
1245 if ( m_mask
& wxLIST_MASK_WIDTH
)
1246 SetWidth(item
.m_width
);
1249 void wxListHeaderData::SetPosition( int x
, int y
)
1255 void wxListHeaderData::SetHeight( int h
)
1260 void wxListHeaderData::SetWidth( int w
)
1264 m_width
= WIDTH_COL_DEFAULT
;
1265 else if (m_width
< WIDTH_COL_MIN
)
1266 m_width
= WIDTH_COL_MIN
;
1269 void wxListHeaderData::SetFormat( int format
)
1274 bool wxListHeaderData::HasImage() const
1276 return m_image
!= -1;
1279 bool wxListHeaderData::IsHit( int x
, int y
) const
1281 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1284 void wxListHeaderData::GetItem( wxListItem
& item
)
1286 item
.m_mask
= m_mask
;
1287 item
.m_text
= m_text
;
1288 item
.m_image
= m_image
;
1289 item
.m_format
= m_format
;
1290 item
.m_width
= m_width
;
1293 int wxListHeaderData::GetImage() const
1298 int wxListHeaderData::GetWidth() const
1303 int wxListHeaderData::GetFormat() const
1308 //-----------------------------------------------------------------------------
1310 //-----------------------------------------------------------------------------
1312 inline int wxListLineData::GetMode() const
1314 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1317 inline bool wxListLineData::InReportView() const
1319 return m_owner
->HasFlag(wxLC_REPORT
);
1322 inline bool wxListLineData::IsVirtual() const
1324 return m_owner
->IsVirtual();
1327 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1330 m_items
.DeleteContents( TRUE
);
1332 if ( InReportView() )
1338 m_gi
= new GeometryInfo
;
1341 m_highlighted
= FALSE
;
1343 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1346 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1348 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1349 wxCHECK_RET( node
, _T("no subitems at all??") );
1351 wxListItemData
*item
= node
->GetData();
1353 switch ( GetMode() )
1356 case wxLC_SMALL_ICON
:
1358 m_gi
->m_rectAll
.width
= spacing
;
1360 wxString s
= item
->GetText();
1366 m_gi
->m_rectLabel
.width
=
1367 m_gi
->m_rectLabel
.height
= 0;
1371 dc
->GetTextExtent( s
, &lw
, &lh
);
1372 if (lh
< SCROLL_UNIT_Y
)
1377 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1379 m_gi
->m_rectAll
.width
= lw
;
1381 m_gi
->m_rectLabel
.width
= lw
;
1382 m_gi
->m_rectLabel
.height
= lh
;
1385 if (item
->HasImage())
1388 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1389 m_gi
->m_rectIcon
.width
= w
+ 8;
1390 m_gi
->m_rectIcon
.height
= h
+ 8;
1392 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1393 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1394 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1395 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1398 if ( item
->HasText() )
1400 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1401 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1403 else // no text, highlight the icon
1405 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1406 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1413 wxString s
= item
->GetTextForMeasuring();
1416 dc
->GetTextExtent( s
, &lw
, &lh
);
1417 if (lh
< SCROLL_UNIT_Y
)
1422 m_gi
->m_rectLabel
.width
= lw
;
1423 m_gi
->m_rectLabel
.height
= lh
;
1425 m_gi
->m_rectAll
.width
= lw
;
1426 m_gi
->m_rectAll
.height
= lh
;
1428 if (item
->HasImage())
1431 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1432 m_gi
->m_rectIcon
.width
= w
;
1433 m_gi
->m_rectIcon
.height
= h
;
1435 m_gi
->m_rectAll
.width
+= 4 + w
;
1436 if (h
> m_gi
->m_rectAll
.height
)
1437 m_gi
->m_rectAll
.height
= h
;
1440 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1441 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1446 wxFAIL_MSG( _T("unexpected call to SetSize") );
1450 wxFAIL_MSG( _T("unknown mode") );
1454 void wxListLineData::SetPosition( int x
, int y
,
1458 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1459 wxCHECK_RET( node
, _T("no subitems at all??") );
1461 wxListItemData
*item
= node
->GetData();
1463 switch ( GetMode() )
1466 case wxLC_SMALL_ICON
:
1467 m_gi
->m_rectAll
.x
= x
;
1468 m_gi
->m_rectAll
.y
= y
;
1470 if ( item
->HasImage() )
1472 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
1473 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
1474 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1477 if ( item
->HasText() )
1479 if (m_gi
->m_rectAll
.width
> spacing
)
1480 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1482 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2 + (spacing
/2) - (m_gi
->m_rectLabel
.width
/2);
1483 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1484 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1485 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1487 else // no text, highlight the icon
1489 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1490 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1495 m_gi
->m_rectAll
.x
= x
;
1496 m_gi
->m_rectAll
.y
= y
;
1498 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1499 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1500 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1502 if (item
->HasImage())
1504 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1505 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1506 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 6 + m_gi
->m_rectIcon
.width
;
1510 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1515 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1519 wxFAIL_MSG( _T("unknown mode") );
1523 void wxListLineData::InitItems( int num
)
1525 for (int i
= 0; i
< num
; i
++)
1526 m_items
.Append( new wxListItemData(m_owner
) );
1529 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1531 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1532 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1534 wxListItemData
*item
= node
->GetData();
1535 item
->SetItem( info
);
1538 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1540 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1543 wxListItemData
*item
= node
->GetData();
1544 item
->GetItem( info
);
1548 wxString
wxListLineData::GetText(int index
) const
1552 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1555 wxListItemData
*item
= node
->GetData();
1556 s
= item
->GetText();
1562 void wxListLineData::SetText( int index
, const wxString s
)
1564 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1567 wxListItemData
*item
= node
->GetData();
1572 void wxListLineData::SetImage( int index
, int image
)
1574 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1575 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1577 wxListItemData
*item
= node
->GetData();
1578 item
->SetImage(image
);
1581 int wxListLineData::GetImage( int index
) const
1583 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1584 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1586 wxListItemData
*item
= node
->GetData();
1587 return item
->GetImage();
1590 wxListItemAttr
*wxListLineData::GetAttr() const
1592 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1593 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1595 wxListItemData
*item
= node
->GetData();
1596 return item
->GetAttr();
1599 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1601 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1602 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1604 wxListItemData
*item
= node
->GetData();
1605 item
->SetAttr(attr
);
1608 bool wxListLineData::SetAttributes(wxDC
*dc
,
1609 const wxListItemAttr
*attr
,
1612 wxWindow
*listctrl
= m_owner
->GetParent();
1616 // don't use foreground colour for drawing highlighted items - this might
1617 // make them completely invisible (and there is no way to do bit
1618 // arithmetics on wxColour, unfortunately)
1622 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1626 if ( attr
&& attr
->HasTextColour() )
1628 colText
= attr
->GetTextColour();
1632 colText
= listctrl
->GetForegroundColour();
1636 dc
->SetTextForeground(colText
);
1640 if ( attr
&& attr
->HasFont() )
1642 font
= attr
->GetFont();
1646 font
= listctrl
->GetFont();
1652 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1653 if ( highlighted
|| hasBgCol
)
1657 dc
->SetBrush( *m_owner
->GetHighlightBrush() );
1661 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1664 dc
->SetPen( *wxTRANSPARENT_PEN
);
1672 void wxListLineData::Draw( wxDC
*dc
)
1674 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1675 wxCHECK_RET( node
, _T("no subitems at all??") );
1677 bool highlighted
= IsHighlighted();
1679 wxListItemAttr
*attr
= GetAttr();
1681 if ( SetAttributes(dc
, attr
, highlighted
) )
1683 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1686 wxListItemData
*item
= node
->GetData();
1687 if (item
->HasImage())
1689 wxRect rectIcon
= m_gi
->m_rectIcon
;
1690 m_owner
->DrawImage( item
->GetImage(), dc
,
1691 rectIcon
.x
, rectIcon
.y
);
1694 if (item
->HasText())
1696 wxRect rectLabel
= m_gi
->m_rectLabel
;
1698 wxDCClipper
clipper(*dc
, rectLabel
);
1699 dc
->DrawText( item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1703 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1705 const wxRect
& rectHL
,
1708 // TODO: later we should support setting different attributes for
1709 // different columns - to do it, just add "col" argument to
1710 // GetAttr() and move these lines into the loop below
1711 wxListItemAttr
*attr
= GetAttr();
1712 if ( SetAttributes(dc
, attr
, highlighted
) )
1714 dc
->DrawRectangle( rectHL
);
1717 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1718 y
= rect
.y
+ (LINE_SPACING
+ EXTRA_HEIGHT
) / 2;
1721 for ( wxListItemDataList::Node
*node
= m_items
.GetFirst();
1723 node
= node
->GetNext(), col
++ )
1725 wxListItemData
*item
= node
->GetData();
1727 int width
= m_owner
->GetColumnWidth(col
);
1731 if ( item
->HasImage() )
1734 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, y
);
1735 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1737 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
1743 wxDCClipper
clipper(*dc
, xOld
, y
, width
, rect
.height
);
1745 if ( item
->HasText() )
1747 dc
->DrawText( item
->GetText(), xOld
, y
);
1752 bool wxListLineData::Highlight( bool on
)
1754 wxCHECK_MSG( !m_owner
->IsVirtual(), FALSE
, _T("unexpected call to Highlight") );
1756 if ( on
== m_highlighted
)
1764 void wxListLineData::ReverseHighlight( void )
1766 Highlight(!IsHighlighted());
1769 //-----------------------------------------------------------------------------
1770 // wxListHeaderWindow
1771 //-----------------------------------------------------------------------------
1773 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
)
1775 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1776 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1777 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1778 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1781 void wxListHeaderWindow::Init()
1783 m_currentCursor
= (wxCursor
*) NULL
;
1784 m_isDragging
= FALSE
;
1788 wxListHeaderWindow::wxListHeaderWindow()
1792 m_owner
= (wxListMainWindow
*) NULL
;
1793 m_resizeCursor
= (wxCursor
*) NULL
;
1796 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
1798 wxListMainWindow
*owner
,
1802 const wxString
&name
)
1803 : wxWindow( win
, id
, pos
, size
, style
, name
)
1808 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1810 SetBackgroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
) );
1813 wxListHeaderWindow::~wxListHeaderWindow()
1815 delete m_resizeCursor
;
1818 void wxListHeaderWindow::DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
)
1820 #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
1821 GtkStateType state
= m_parent
->IsEnabled() ? GTK_STATE_NORMAL
1822 : GTK_STATE_INSENSITIVE
;
1824 x
= dc
->XLOG2DEV( x
);
1826 gtk_paint_box (m_wxwindow
->style
, GTK_PIZZA(m_wxwindow
)->bin_window
,
1827 state
, GTK_SHADOW_OUT
,
1828 (GdkRectangle
*) NULL
, m_wxwindow
,
1829 (char *)"button", // const_cast
1830 x
-1, y
-1, w
+2, h
+2);
1831 #elif defined( __WXMAC__ )
1832 const int m_corner
= 1;
1834 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1836 dc
->SetPen( wxPen( wxSystemSettings::GetColour( wxSYS_COLOUR_BTNSHADOW
) , 1 , wxSOLID
) );
1837 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
1838 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
1840 wxPen
pen( wxColour( 0x88 , 0x88 , 0x88 ), 1, wxSOLID
);
1843 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
1844 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
1846 dc
->SetPen( *wxWHITE_PEN
);
1847 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
1848 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
1849 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
1850 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
1852 const int m_corner
= 1;
1854 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1856 dc
->SetPen( *wxBLACK_PEN
);
1857 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
1858 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
1860 wxPen
pen( wxSystemSettings::GetColour( wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
);
1863 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
1864 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
1866 dc
->SetPen( *wxWHITE_PEN
);
1867 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
1868 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
1869 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
1870 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
1874 // shift the DC origin to match the position of the main window horz
1875 // scrollbar: this allows us to always use logical coords
1876 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1879 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1882 m_owner
->GetViewStart( &x
, NULL
);
1884 // account for the horz scrollbar offset
1885 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
1888 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1890 #if defined(__WXGTK__)
1891 wxClientDC
dc( this );
1893 wxPaintDC
dc( this );
1901 dc
.SetFont( GetFont() );
1903 // width and height of the entire header window
1905 GetClientSize( &w
, &h
);
1906 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1908 dc
.SetBackgroundMode(wxTRANSPARENT
);
1910 // do *not* use the listctrl colour for headers - one day we will have a
1911 // function to set it separately
1912 //dc.SetTextForeground( *wxBLACK );
1913 dc
.SetTextForeground(wxSystemSettings::
1914 GetSystemColour( wxSYS_COLOUR_WINDOWTEXT
));
1916 int x
= HEADER_OFFSET_X
;
1918 int numColumns
= m_owner
->GetColumnCount();
1920 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1922 m_owner
->GetColumn( i
, item
);
1923 int wCol
= item
.m_width
;
1925 // the width of the rect to draw: make it smaller to fit entirely
1926 // inside the column rect
1929 dc
.SetPen( *wxWHITE_PEN
);
1931 DoDrawRect( &dc
, x
, HEADER_OFFSET_Y
, cw
, h
-2 );
1933 // if we have an image, draw it on the right of the label
1934 int image
= item
.m_image
;
1937 wxGenericImageList
*imageList
= m_owner
->m_small_image_list
;
1941 imageList
->GetSize(image
, ix
, iy
);
1948 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1949 wxIMAGELIST_DRAW_TRANSPARENT
1954 //else: ignore the column image
1957 // draw the text clipping it so that it doesn't overwrite the column
1959 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1961 dc
.DrawText( item
.GetText(),
1962 x
+ EXTRA_WIDTH
, HEADER_OFFSET_Y
+ EXTRA_HEIGHT
);
1970 void wxListHeaderWindow::DrawCurrent()
1972 int x1
= m_currentX
;
1974 m_owner
->ClientToScreen( &x1
, &y1
);
1976 int x2
= m_currentX
;
1978 m_owner
->GetClientSize( NULL
, &y2
);
1979 m_owner
->ClientToScreen( &x2
, &y2
);
1982 dc
.SetLogicalFunction( wxINVERT
);
1983 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1984 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1988 dc
.DrawLine( x1
, y1
, x2
, y2
);
1990 dc
.SetLogicalFunction( wxCOPY
);
1992 dc
.SetPen( wxNullPen
);
1993 dc
.SetBrush( wxNullBrush
);
1996 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1998 // we want to work with logical coords
2000 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
2001 int y
= event
.GetY();
2005 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
,
2006 event
.GetPosition());
2008 // we don't draw the line beyond our window, but we allow dragging it
2011 GetClientSize( &w
, NULL
);
2012 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
2015 // erase the line if it was drawn
2016 if ( m_currentX
< w
)
2019 if (event
.ButtonUp())
2022 m_isDragging
= FALSE
;
2024 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
2025 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
,
2026 event
.GetPosition());
2033 m_currentX
= m_minX
+ 7;
2035 // draw in the new location
2036 if ( m_currentX
< w
)
2040 else // not dragging
2043 bool hit_border
= FALSE
;
2045 // end of the current column
2048 // find the column where this event occured
2050 countCol
= m_owner
->GetColumnCount();
2051 for (col
= 0; col
< countCol
; col
++)
2053 xpos
+= m_owner
->GetColumnWidth( col
);
2056 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
2058 // near the column border
2065 // inside the column
2072 if ( col
== countCol
)
2075 if (event
.LeftDown() || event
.RightUp())
2077 if (hit_border
&& event
.LeftDown())
2079 m_isDragging
= TRUE
;
2083 SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
2084 event
.GetPosition());
2086 else // click on a column
2088 SendListEvent( event
.LeftDown()
2089 ? wxEVT_COMMAND_LIST_COL_CLICK
2090 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
2091 event
.GetPosition());
2094 else if (event
.Moving())
2099 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
2100 m_currentCursor
= m_resizeCursor
;
2104 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
2105 m_currentCursor
= wxSTANDARD_CURSOR
;
2109 SetCursor(*m_currentCursor
);
2114 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
2116 m_owner
->SetFocus();
2119 void wxListHeaderWindow::SendListEvent(wxEventType type
, wxPoint pos
)
2121 wxWindow
*parent
= GetParent();
2122 wxListEvent
le( type
, parent
->GetId() );
2123 le
.SetEventObject( parent
);
2124 le
.m_pointDrag
= pos
;
2126 // the position should be relative to the parent window, not
2127 // this one for compatibility with MSW and common sense: the
2128 // user code doesn't know anything at all about this header
2129 // window, so why should it get positions relative to it?
2130 le
.m_pointDrag
.y
-= GetSize().y
;
2132 le
.m_col
= m_column
;
2133 parent
->GetEventHandler()->ProcessEvent( le
);
2136 //-----------------------------------------------------------------------------
2137 // wxListRenameTimer (internal)
2138 //-----------------------------------------------------------------------------
2140 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2145 void wxListRenameTimer::Notify()
2147 m_owner
->OnRenameTimer();
2150 //-----------------------------------------------------------------------------
2151 // wxListTextCtrl (internal)
2152 //-----------------------------------------------------------------------------
2154 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
2155 EVT_CHAR (wxListTextCtrl::OnChar
)
2156 EVT_KEY_UP (wxListTextCtrl::OnKeyUp
)
2157 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
2160 wxListTextCtrl::wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
)
2161 : m_startValue(owner
->GetItemText(itemEdit
)),
2162 m_itemEdited(itemEdit
)
2167 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
2169 m_owner
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
2170 &rectLabel
.x
, &rectLabel
.y
);
2172 (void)Create(owner
, wxID_ANY
, m_startValue
,
2173 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2174 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
2177 void wxListTextCtrl::Finish()
2181 wxPendingDelete
.Append(this);
2185 m_owner
->SetFocus();
2189 bool wxListTextCtrl::AcceptChanges()
2191 const wxString value
= GetValue();
2193 if ( value
== m_startValue
)
2195 // nothing changed, always accept
2199 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
2201 // vetoed by the user
2205 // accepted, do rename the item
2206 m_owner
->SetItemText(m_itemEdited
, value
);
2211 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
2213 switch ( event
.m_keyCode
)
2216 if ( !AcceptChanges() )
2218 // vetoed by the user code
2221 //else: fall through
2232 void wxListTextCtrl::OnKeyUp( wxKeyEvent
&event
)
2240 // auto-grow the textctrl:
2241 wxSize parentSize
= m_owner
->GetSize();
2242 wxPoint myPos
= GetPosition();
2243 wxSize mySize
= GetSize();
2245 GetTextExtent(GetValue() + _T("MM"), &sx
, &sy
);
2246 if (myPos
.x
+ sx
> parentSize
.x
)
2247 sx
= parentSize
.x
- myPos
.x
;
2255 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&event
)
2259 (void)AcceptChanges();
2267 //-----------------------------------------------------------------------------
2269 //-----------------------------------------------------------------------------
2271 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
)
2273 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2274 EVT_PAINT (wxListMainWindow::OnPaint
)
2275 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2276 EVT_CHAR (wxListMainWindow::OnChar
)
2277 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2278 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2279 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2280 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2283 void wxListMainWindow::Init()
2285 m_columns
.DeleteContents( TRUE
);
2289 m_lineTo
= (size_t)-1;
2295 m_small_image_list
= (wxGenericImageList
*) NULL
;
2296 m_normal_image_list
= (wxGenericImageList
*) NULL
;
2298 m_small_spacing
= 30;
2299 m_normal_spacing
= 40;
2303 m_isCreated
= FALSE
;
2305 m_lastOnSame
= FALSE
;
2306 m_renameTimer
= new wxListRenameTimer( this );
2310 m_lineBeforeLastClicked
= (size_t)-1;
2315 void wxListMainWindow::InitScrolling()
2317 if ( HasFlag(wxLC_REPORT
) )
2319 m_xScroll
= SCROLL_UNIT_X
;
2320 m_yScroll
= SCROLL_UNIT_Y
;
2324 m_xScroll
= SCROLL_UNIT_Y
;
2329 wxListMainWindow::wxListMainWindow()
2334 m_highlightUnfocusedBrush
= (wxBrush
*) NULL
;
2340 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2345 const wxString
&name
)
2346 : wxScrolledWindow( parent
, id
, pos
, size
,
2347 style
| wxHSCROLL
| wxVSCROLL
, name
)
2351 m_highlightBrush
= new wxBrush
2353 wxSystemSettings::GetColour
2355 wxSYS_COLOUR_HIGHLIGHT
2360 m_highlightUnfocusedBrush
= new wxBrush
2362 wxSystemSettings::GetColour
2364 wxSYS_COLOUR_BTNSHADOW
2373 SetScrollbars( m_xScroll
, m_yScroll
, 0, 0, 0, 0 );
2375 SetBackgroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_LISTBOX
) );
2378 wxListMainWindow::~wxListMainWindow()
2382 delete m_highlightBrush
;
2383 delete m_highlightUnfocusedBrush
;
2385 delete m_renameTimer
;
2388 void wxListMainWindow::CacheLineData(size_t line
)
2390 wxGenericListCtrl
*listctrl
= GetListCtrl();
2392 wxListLineData
*ld
= GetDummyLine();
2394 size_t countCol
= GetColumnCount();
2395 for ( size_t col
= 0; col
< countCol
; col
++ )
2397 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2400 ld
->SetImage(listctrl
->OnGetItemImage(line
));
2401 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2404 wxListLineData
*wxListMainWindow::GetDummyLine() const
2406 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2408 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2410 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2412 // we need to recreate the dummy line if the number of columns in the
2413 // control changed as it would have the incorrect number of fields
2415 if ( !m_lines
.IsEmpty() &&
2416 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
2418 self
->m_lines
.Clear();
2421 if ( m_lines
.IsEmpty() )
2423 wxListLineData
*line
= new wxListLineData(self
);
2424 self
->m_lines
.Add(line
);
2426 // don't waste extra memory -- there never going to be anything
2427 // else/more in this array
2428 self
->m_lines
.Shrink();
2434 // ----------------------------------------------------------------------------
2435 // line geometry (report mode only)
2436 // ----------------------------------------------------------------------------
2438 wxCoord
wxListMainWindow::GetLineHeight() const
2440 wxASSERT_MSG( HasFlag(wxLC_REPORT
), _T("only works in report mode") );
2442 // we cache the line height as calling GetTextExtent() is slow
2443 if ( !m_lineHeight
)
2445 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2447 wxClientDC
dc( self
);
2448 dc
.SetFont( GetFont() );
2451 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2453 if ( y
< SCROLL_UNIT_Y
)
2457 self
->m_lineHeight
= y
+ LINE_SPACING
;
2460 return m_lineHeight
;
2463 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2465 wxASSERT_MSG( HasFlag(wxLC_REPORT
), _T("only works in report mode") );
2467 return LINE_SPACING
+ line
*GetLineHeight();
2470 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2472 if ( !InReportView() )
2473 return GetLine(line
)->m_gi
->m_rectAll
;
2476 rect
.x
= HEADER_OFFSET_X
;
2477 rect
.y
= GetLineY(line
);
2478 rect
.width
= GetHeaderWidth();
2479 rect
.height
= GetLineHeight();
2484 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2486 if ( !InReportView() )
2487 return GetLine(line
)->m_gi
->m_rectLabel
;
2490 rect
.x
= HEADER_OFFSET_X
;
2491 rect
.y
= GetLineY(line
);
2492 rect
.width
= GetColumnWidth(0);
2493 rect
.height
= GetLineHeight();
2498 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2500 if ( !InReportView() )
2501 return GetLine(line
)->m_gi
->m_rectIcon
;
2503 wxListLineData
*ld
= GetLine(line
);
2504 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2507 rect
.x
= HEADER_OFFSET_X
;
2508 rect
.y
= GetLineY(line
);
2509 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2514 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2516 return InReportView() ? GetLineRect(line
)
2517 : GetLine(line
)->m_gi
->m_rectHighlight
;
2520 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2522 wxASSERT_MSG( line
< GetItemCount(), _T("invalid line in HitTestLine") );
2524 wxListLineData
*ld
= GetLine(line
);
2526 if ( ld
->HasImage() && GetLineIconRect(line
).Inside(x
, y
) )
2527 return wxLIST_HITTEST_ONITEMICON
;
2529 // VS: Testing for "ld->HasText() || InReportView()" instead of
2530 // "ld->HasText()" is needed to make empty lines in report view
2532 if ( ld
->HasText() || InReportView() )
2534 wxRect rect
= InReportView() ? GetLineRect(line
)
2535 : GetLineLabelRect(line
);
2537 if ( rect
.Inside(x
, y
) )
2538 return wxLIST_HITTEST_ONITEMLABEL
;
2544 // ----------------------------------------------------------------------------
2545 // highlight (selection) handling
2546 // ----------------------------------------------------------------------------
2548 bool wxListMainWindow::IsHighlighted(size_t line
) const
2552 return m_selStore
.IsSelected(line
);
2556 wxListLineData
*ld
= GetLine(line
);
2557 wxCHECK_MSG( ld
, FALSE
, _T("invalid index in IsHighlighted") );
2559 return ld
->IsHighlighted();
2563 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2569 wxArrayInt linesChanged
;
2570 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2573 // meny items changed state, refresh everything
2574 RefreshLines(lineFrom
, lineTo
);
2576 else // only a few items changed state, refresh only them
2578 size_t count
= linesChanged
.GetCount();
2579 for ( size_t n
= 0; n
< count
; n
++ )
2581 RefreshLine(linesChanged
[n
]);
2585 else // iterate over all items in non report view
2587 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2589 if ( HighlightLine(line
, highlight
) )
2597 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2603 changed
= m_selStore
.SelectItem(line
, highlight
);
2607 wxListLineData
*ld
= GetLine(line
);
2608 wxCHECK_MSG( ld
, FALSE
, _T("invalid index in HighlightLine") );
2610 changed
= ld
->Highlight(highlight
);
2615 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2616 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2622 void wxListMainWindow::RefreshLine( size_t line
)
2624 if ( HasFlag(wxLC_REPORT
) )
2626 size_t visibleFrom
, visibleTo
;
2627 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2629 if ( line
< visibleFrom
|| line
> visibleTo
)
2633 wxRect rect
= GetLineRect(line
);
2635 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2636 RefreshRect( rect
);
2639 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2641 // we suppose that they are ordered by caller
2642 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2644 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2646 if ( HasFlag(wxLC_REPORT
) )
2648 size_t visibleFrom
, visibleTo
;
2649 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2651 if ( lineFrom
< visibleFrom
)
2652 lineFrom
= visibleFrom
;
2653 if ( lineTo
> visibleTo
)
2658 rect
.y
= GetLineY(lineFrom
);
2659 rect
.width
= GetClientSize().x
;
2660 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2662 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2663 RefreshRect( rect
);
2667 // TODO: this should be optimized...
2668 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2675 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2677 if ( HasFlag(wxLC_REPORT
) )
2679 size_t visibleFrom
, visibleTo
;
2680 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2682 if ( lineFrom
< visibleFrom
)
2683 lineFrom
= visibleFrom
;
2684 else if ( lineFrom
> visibleTo
)
2689 rect
.y
= GetLineY(lineFrom
);
2690 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2692 wxSize size
= GetClientSize();
2693 rect
.width
= size
.x
;
2694 // refresh till the bottom of the window
2695 rect
.height
= size
.y
- rect
.y
;
2697 RefreshRect( rect
);
2701 // TODO: how to do it more efficiently?
2706 void wxListMainWindow::RefreshSelected()
2712 if ( InReportView() )
2714 GetVisibleLinesRange(&from
, &to
);
2719 to
= GetItemCount() - 1;
2722 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
2724 RefreshLine(m_current
);
2727 for ( size_t line
= from
; line
<= to
; line
++ )
2729 // NB: the test works as expected even if m_current == -1
2730 if ( line
!= m_current
&& IsHighlighted(line
) )
2737 void wxListMainWindow::Freeze()
2742 void wxListMainWindow::Thaw()
2744 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen list control?") );
2746 if ( !--m_freezeCount
)
2752 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2754 // Note: a wxPaintDC must be constructed even if no drawing is
2755 // done (a Windows requirement).
2756 wxPaintDC
dc( this );
2758 if ( IsEmpty() || m_freezeCount
)
2760 // nothing to draw or not the moment to draw it
2766 // delay the repainting until we calculate all the items positions
2773 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2777 dc
.SetFont( GetFont() );
2779 if ( HasFlag(wxLC_REPORT
) )
2781 int lineHeight
= GetLineHeight();
2783 size_t visibleFrom
, visibleTo
;
2784 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2787 wxCoord xOrig
, yOrig
;
2788 CalcUnscrolledPosition(0, 0, &xOrig
, &yOrig
);
2790 // tell the caller cache to cache the data
2793 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2794 GetParent()->GetId());
2795 evCache
.SetEventObject( GetParent() );
2796 evCache
.m_oldItemIndex
= visibleFrom
;
2797 evCache
.m_itemIndex
= visibleTo
;
2798 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2801 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2803 rectLine
= GetLineRect(line
);
2805 if ( !IsExposed(rectLine
.x
- xOrig
, rectLine
.y
- yOrig
,
2806 rectLine
.width
, rectLine
.height
) )
2808 // don't redraw unaffected lines to avoid flicker
2812 GetLine(line
)->DrawInReportMode( &dc
,
2814 GetLineHighlightRect(line
),
2815 IsHighlighted(line
) );
2818 if ( HasFlag(wxLC_HRULES
) )
2820 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2821 wxSize clientSize
= GetClientSize();
2823 for ( size_t i
= visibleFrom
; i
<= visibleTo
; i
++ )
2826 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2827 dc
.DrawLine(0 - dev_x
, i
*lineHeight
,
2828 clientSize
.x
- dev_x
, i
*lineHeight
);
2831 // Draw last horizontal rule
2832 if ( visibleTo
> visibleFrom
)
2835 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2836 dc
.DrawLine(0 - dev_x
, m_lineTo
*lineHeight
,
2837 clientSize
.x
- dev_x
, m_lineTo
*lineHeight
);
2841 // Draw vertical rules if required
2842 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2844 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2847 wxRect firstItemRect
;
2848 wxRect lastItemRect
;
2849 GetItemRect(0, firstItemRect
);
2850 GetItemRect(GetItemCount() - 1, lastItemRect
);
2851 int x
= firstItemRect
.GetX();
2853 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2854 for (col
= 0; col
< GetColumnCount(); col
++)
2856 int colWidth
= GetColumnWidth(col
);
2858 dc
.DrawLine(x
- dev_x
, firstItemRect
.GetY() - 1 - dev_y
,
2859 x
- dev_x
, lastItemRect
.GetBottom() + 1 - dev_y
);
2865 size_t count
= GetItemCount();
2866 for ( size_t i
= 0; i
< count
; i
++ )
2868 GetLine(i
)->Draw( &dc
);
2874 // don't draw rect outline under Max if we already have the background
2875 // color but under other platforms only draw it if we do: it is a bit
2876 // silly to draw "focus rect" if we don't have focus!
2881 #endif // __WXMAC__/!__WXMAC__
2883 dc
.SetPen( *wxBLACK_PEN
);
2884 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2885 dc
.DrawRectangle( GetLineHighlightRect(m_current
) );
2892 void wxListMainWindow::HighlightAll( bool on
)
2894 if ( IsSingleSel() )
2896 wxASSERT_MSG( !on
, _T("can't do this in a single sel control") );
2898 // we just have one item to turn off
2899 if ( HasCurrent() && IsHighlighted(m_current
) )
2901 HighlightLine(m_current
, FALSE
);
2902 RefreshLine(m_current
);
2907 HighlightLines(0, GetItemCount() - 1, on
);
2911 void wxListMainWindow::SendNotify( size_t line
,
2912 wxEventType command
,
2915 wxListEvent
le( command
, GetParent()->GetId() );
2916 le
.SetEventObject( GetParent() );
2917 le
.m_itemIndex
= line
;
2919 // set only for events which have position
2920 if ( point
!= wxDefaultPosition
)
2921 le
.m_pointDrag
= point
;
2923 // don't try to get the line info for virtual list controls: the main
2924 // program has it anyhow and if we did it would result in accessing all
2925 // the lines, even those which are not visible now and this is precisely
2926 // what we're trying to avoid
2927 if ( !IsVirtual() && (command
!= wxEVT_COMMAND_LIST_DELETE_ITEM
) )
2929 if ( line
!= (size_t)-1 )
2931 GetLine(line
)->GetItem( 0, le
.m_item
);
2933 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2935 //else: there may be no more such item
2937 GetParent()->GetEventHandler()->ProcessEvent( le
);
2940 void wxListMainWindow::ChangeCurrent(size_t current
)
2942 m_current
= current
;
2944 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2947 void wxListMainWindow::EditLabel( long item
)
2949 wxCHECK_RET( (item
>= 0) && ((size_t)item
< GetItemCount()),
2950 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2952 size_t itemEdit
= (size_t)item
;
2954 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2955 le
.SetEventObject( GetParent() );
2956 le
.m_itemIndex
= item
;
2957 wxListLineData
*data
= GetLine(itemEdit
);
2958 wxCHECK_RET( data
, _T("invalid index in EditLabel()") );
2959 data
->GetItem( 0, le
.m_item
);
2960 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2962 // vetoed by user code
2966 // We have to call this here because the label in question might just have
2967 // been added and no screen update taken place.
2971 wxListTextCtrl
*text
= new wxListTextCtrl(this, itemEdit
);
2976 void wxListMainWindow::OnRenameTimer()
2978 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2980 EditLabel( m_current
);
2983 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2985 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2986 le
.SetEventObject( GetParent() );
2987 le
.m_itemIndex
= itemEdit
;
2989 wxListLineData
*data
= GetLine(itemEdit
);
2990 wxCHECK_MSG( data
, FALSE
, _T("invalid index in OnRenameAccept()") );
2992 data
->GetItem( 0, le
.m_item
);
2993 le
.m_item
.m_text
= value
;
2994 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2998 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
3000 event
.SetEventObject( GetParent() );
3001 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3004 if ( !HasCurrent() || IsEmpty() )
3010 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
3011 event
.ButtonDClick()) )
3014 int x
= event
.GetX();
3015 int y
= event
.GetY();
3016 CalcUnscrolledPosition( x
, y
, &x
, &y
);
3018 // where did we hit it (if we did)?
3021 size_t count
= GetItemCount(),
3024 if ( HasFlag(wxLC_REPORT
) )
3026 current
= y
/ GetLineHeight();
3027 if ( current
< count
)
3028 hitResult
= HitTestLine(current
, x
, y
);
3032 // TODO: optimize it too! this is less simple than for report view but
3033 // enumerating all items is still not a way to do it!!
3034 for ( current
= 0; current
< count
; current
++ )
3036 hitResult
= HitTestLine(current
, x
, y
);
3042 if (event
.Dragging())
3044 if (m_dragCount
== 0)
3046 // we have to report the raw, physical coords as we want to be
3047 // able to call HitTest(event.m_pointDrag) from the user code to
3048 // get the item being dragged
3049 m_dragStart
= event
.GetPosition();
3054 if (m_dragCount
!= 3)
3057 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
3058 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
3060 wxListEvent
le( command
, GetParent()->GetId() );
3061 le
.SetEventObject( GetParent() );
3062 le
.m_pointDrag
= m_dragStart
;
3063 GetParent()->GetEventHandler()->ProcessEvent( le
);
3074 // outside of any item
3078 bool forceClick
= FALSE
;
3079 if (event
.ButtonDClick())
3081 m_renameTimer
->Stop();
3082 m_lastOnSame
= FALSE
;
3085 // FIXME: wxGTK generates bad sequence of events prior to doubleclick
3086 // ("down, up, down, double, up" while other ports
3087 // do "down, up, double, up"). We have to have this hack
3088 // in place till somebody fixes wxGTK...
3089 if ( current
== m_lineBeforeLastClicked
)
3091 if ( current
== m_lineLastClicked
)
3094 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3100 // the first click was on another item, so don't interpret this as
3101 // a double click, but as a simple click instead
3106 if (event
.LeftUp() && m_lastOnSame
)
3108 if ((current
== m_current
) &&
3109 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
3110 HasFlag(wxLC_EDIT_LABELS
) )
3112 m_renameTimer
->Start( 100, TRUE
);
3114 m_lastOnSame
= FALSE
;
3116 else if (event
.RightDown())
3118 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
,
3119 event
.GetPosition() );
3121 else if (event
.MiddleDown())
3123 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
3125 else if ( event
.LeftDown() || forceClick
)
3127 m_lineBeforeLastClicked
= m_lineLastClicked
;
3128 m_lineLastClicked
= current
;
3130 size_t oldCurrent
= m_current
;
3132 if ( IsSingleSel() || !(event
.ControlDown() || event
.ShiftDown()) )
3134 HighlightAll( FALSE
);
3136 ChangeCurrent(current
);
3138 ReverseHighlight(m_current
);
3140 else // multi sel & either ctrl or shift is down
3142 if (event
.ControlDown())
3144 ChangeCurrent(current
);
3146 ReverseHighlight(m_current
);
3148 else if (event
.ShiftDown())
3150 ChangeCurrent(current
);
3152 size_t lineFrom
= oldCurrent
,
3155 if ( lineTo
< lineFrom
)
3158 lineFrom
= m_current
;
3161 HighlightLines(lineFrom
, lineTo
);
3163 else // !ctrl, !shift
3165 // test in the enclosing if should make it impossible
3166 wxFAIL_MSG( _T("how did we get here?") );
3170 if (m_current
!= oldCurrent
)
3172 RefreshLine( oldCurrent
);
3175 // forceClick is only set if the previous click was on another item
3176 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
);
3180 void wxListMainWindow::MoveToItem(size_t item
)
3182 if ( item
== (size_t)-1 )
3185 wxRect rect
= GetLineRect(item
);
3187 int client_w
, client_h
;
3188 GetClientSize( &client_w
, &client_h
);
3190 int view_x
= m_xScroll
*GetScrollPos( wxHORIZONTAL
);
3191 int view_y
= m_yScroll
*GetScrollPos( wxVERTICAL
);
3193 if ( HasFlag(wxLC_REPORT
) )
3195 // the next we need the range of lines shown it might be different, so
3197 ResetVisibleLinesRange();
3199 if (rect
.y
< view_y
)
3200 Scroll( -1, rect
.y
/m_yScroll
);
3201 if (rect
.y
+rect
.height
+5 > view_y
+client_h
)
3202 Scroll( -1, (rect
.y
+rect
.height
-client_h
+SCROLL_UNIT_Y
)/m_yScroll
);
3206 if (rect
.x
-view_x
< 5)
3207 Scroll( (rect
.x
-5)/m_xScroll
, -1 );
3208 if (rect
.x
+rect
.width
-5 > view_x
+client_w
)
3209 Scroll( (rect
.x
+rect
.width
-client_w
+SCROLL_UNIT_X
)/m_xScroll
, -1 );
3213 // ----------------------------------------------------------------------------
3214 // keyboard handling
3215 // ----------------------------------------------------------------------------
3217 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
3219 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
3220 _T("invalid item index in OnArrowChar()") );
3222 size_t oldCurrent
= m_current
;
3224 // in single selection we just ignore Shift as we can't select several
3226 if ( event
.ShiftDown() && !IsSingleSel() )
3228 ChangeCurrent(newCurrent
);
3230 // select all the items between the old and the new one
3231 if ( oldCurrent
> newCurrent
)
3233 newCurrent
= oldCurrent
;
3234 oldCurrent
= m_current
;
3237 HighlightLines(oldCurrent
, newCurrent
);
3241 // all previously selected items are unselected unless ctrl is held
3242 if ( !event
.ControlDown() )
3243 HighlightAll(FALSE
);
3245 ChangeCurrent(newCurrent
);
3247 // refresh the old focus to remove it
3248 RefreshLine( oldCurrent
);
3250 if ( !event
.ControlDown() )
3252 HighlightLine( m_current
, TRUE
);
3256 RefreshLine( m_current
);
3261 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3263 wxWindow
*parent
= GetParent();
3265 /* we propagate the key event up */
3266 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3267 ke
.m_shiftDown
= event
.m_shiftDown
;
3268 ke
.m_controlDown
= event
.m_controlDown
;
3269 ke
.m_altDown
= event
.m_altDown
;
3270 ke
.m_metaDown
= event
.m_metaDown
;
3271 ke
.m_keyCode
= event
.m_keyCode
;
3274 ke
.SetEventObject( parent
);
3275 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3280 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3282 wxWindow
*parent
= GetParent();
3284 /* we send a list_key event up */
3287 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3288 le
.m_itemIndex
= m_current
;
3289 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3290 le
.m_code
= (int)event
.KeyCode();
3291 le
.SetEventObject( parent
);
3292 parent
->GetEventHandler()->ProcessEvent( le
);
3295 /* we propagate the char event up */
3296 wxKeyEvent
ke( wxEVT_CHAR
);
3297 ke
.m_shiftDown
= event
.m_shiftDown
;
3298 ke
.m_controlDown
= event
.m_controlDown
;
3299 ke
.m_altDown
= event
.m_altDown
;
3300 ke
.m_metaDown
= event
.m_metaDown
;
3301 ke
.m_keyCode
= event
.m_keyCode
;
3304 ke
.SetEventObject( parent
);
3305 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3307 if (event
.KeyCode() == WXK_TAB
)
3309 wxNavigationKeyEvent nevent
;
3310 nevent
.SetWindowChange( event
.ControlDown() );
3311 nevent
.SetDirection( !event
.ShiftDown() );
3312 nevent
.SetEventObject( GetParent()->GetParent() );
3313 nevent
.SetCurrentFocus( m_parent
);
3314 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
3318 /* no item -> nothing to do */
3325 switch (event
.KeyCode())
3328 if ( m_current
> 0 )
3329 OnArrowChar( m_current
- 1, event
);
3333 if ( m_current
< (size_t)GetItemCount() - 1 )
3334 OnArrowChar( m_current
+ 1, event
);
3339 OnArrowChar( GetItemCount() - 1, event
);
3344 OnArrowChar( 0, event
);
3350 if ( HasFlag(wxLC_REPORT
) )
3352 steps
= m_linesPerPage
- 1;
3356 steps
= m_current
% m_linesPerPage
;
3359 int index
= m_current
- steps
;
3363 OnArrowChar( index
, event
);
3370 if ( HasFlag(wxLC_REPORT
) )
3372 steps
= m_linesPerPage
- 1;
3376 steps
= m_linesPerPage
- (m_current
% m_linesPerPage
) - 1;
3379 size_t index
= m_current
+ steps
;
3380 size_t count
= GetItemCount();
3381 if ( index
>= count
)
3384 OnArrowChar( index
, event
);
3389 if ( !HasFlag(wxLC_REPORT
) )
3391 int index
= m_current
- m_linesPerPage
;
3395 OnArrowChar( index
, event
);
3400 if ( !HasFlag(wxLC_REPORT
) )
3402 size_t index
= m_current
+ m_linesPerPage
;
3404 size_t count
= GetItemCount();
3405 if ( index
>= count
)
3408 OnArrowChar( index
, event
);
3413 if ( IsSingleSel() )
3415 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3417 if ( IsHighlighted(m_current
) )
3419 // don't unselect the item in single selection mode
3422 //else: select it in ReverseHighlight() below if unselected
3425 ReverseHighlight(m_current
);
3430 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3438 // ----------------------------------------------------------------------------
3440 // ----------------------------------------------------------------------------
3442 void wxListMainWindow::SetFocus()
3444 // VS: wxListMainWindow derives from wxPanel (via wxScrolledWindow) and wxPanel
3445 // overrides SetFocus in such way that it does never change focus from
3446 // panel's child to the panel itself. Unfortunately, we must be able to change
3447 // focus to the panel from wxListTextCtrl because the text control should
3448 // disappear when the user clicks outside it.
3450 wxWindow
*oldFocus
= FindFocus();
3452 if ( oldFocus
&& oldFocus
->GetParent() == this )
3454 wxWindow::SetFocus();
3458 wxScrolledWindow::SetFocus();
3462 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3464 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3465 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3466 // which are already drawn correctly resulting in horrible flicker - avoid
3478 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3479 event
.SetEventObject( GetParent() );
3480 GetParent()->GetEventHandler()->ProcessEvent( event
);
3483 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3490 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3492 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3494 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3496 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3498 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3500 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3502 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3504 else if ( HasFlag(wxLC_REPORT
) && (m_small_image_list
))
3506 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3510 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3512 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3514 m_normal_image_list
->GetSize( index
, width
, height
);
3516 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3518 m_small_image_list
->GetSize( index
, width
, height
);
3520 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3522 m_small_image_list
->GetSize( index
, width
, height
);
3524 else if ( HasFlag(wxLC_REPORT
) && m_small_image_list
)
3526 m_small_image_list
->GetSize( index
, width
, height
);
3535 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3537 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3538 dc
.SetFont( GetFont() );
3541 dc
.GetTextExtent( s
, &lw
, NULL
);
3543 return lw
+ AUTOSIZE_COL_MARGIN
;
3546 void wxListMainWindow::SetImageList( wxGenericImageList
*imageList
, int which
)
3550 // calc the spacing from the icon size
3553 if ((imageList
) && (imageList
->GetImageCount()) )
3555 imageList
->GetSize(0, width
, height
);
3558 if (which
== wxIMAGE_LIST_NORMAL
)
3560 m_normal_image_list
= imageList
;
3561 m_normal_spacing
= width
+ 8;
3564 if (which
== wxIMAGE_LIST_SMALL
)
3566 m_small_image_list
= imageList
;
3567 m_small_spacing
= width
+ 14;
3571 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3576 m_small_spacing
= spacing
;
3580 m_normal_spacing
= spacing
;
3584 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3586 return isSmall
? m_small_spacing
: m_normal_spacing
;
3589 // ----------------------------------------------------------------------------
3591 // ----------------------------------------------------------------------------
3593 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3595 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3597 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3599 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3600 item
.m_width
= GetTextLength( item
.m_text
);
3602 wxListHeaderData
*column
= node
->GetData();
3603 column
->SetItem( item
);
3605 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3607 headerWin
->m_dirty
= TRUE
;
3611 // invalidate it as it has to be recalculated
3615 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3617 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3618 _T("invalid column index") );
3620 wxCHECK_RET( HasFlag(wxLC_REPORT
),
3621 _T("SetColumnWidth() can only be called in report mode.") );
3624 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3626 headerWin
->m_dirty
= TRUE
;
3628 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3629 wxCHECK_RET( node
, _T("no column?") );
3631 wxListHeaderData
*column
= node
->GetData();
3633 size_t count
= GetItemCount();
3635 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3637 width
= GetTextLength(column
->GetText());
3639 else if ( width
== wxLIST_AUTOSIZE
)
3643 // TODO: determine the max width somehow...
3644 width
= WIDTH_COL_DEFAULT
;
3648 wxClientDC
dc(this);
3649 dc
.SetFont( GetFont() );
3651 int max
= AUTOSIZE_COL_MARGIN
;
3653 for ( size_t i
= 0; i
< count
; i
++ )
3655 wxListLineData
*line
= GetLine(i
);
3656 wxListItemDataList::Node
*n
= line
->m_items
.Item( col
);
3658 wxCHECK_RET( n
, _T("no subitem?") );
3660 wxListItemData
*item
= n
->GetData();
3663 if (item
->HasImage())
3666 GetImageSize( item
->GetImage(), ix
, iy
);
3670 if (item
->HasText())
3673 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
3681 width
= max
+ AUTOSIZE_COL_MARGIN
;
3685 column
->SetWidth( width
);
3687 // invalidate it as it has to be recalculated
3691 int wxListMainWindow::GetHeaderWidth() const
3693 if ( !m_headerWidth
)
3695 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3697 size_t count
= GetColumnCount();
3698 for ( size_t col
= 0; col
< count
; col
++ )
3700 self
->m_headerWidth
+= GetColumnWidth(col
);
3704 return m_headerWidth
;
3707 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3709 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3710 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3712 wxListHeaderData
*column
= node
->GetData();
3713 column
->GetItem( item
);
3716 int wxListMainWindow::GetColumnWidth( int col
) const
3718 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3719 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3721 wxListHeaderData
*column
= node
->GetData();
3722 return column
->GetWidth();
3725 // ----------------------------------------------------------------------------
3727 // ----------------------------------------------------------------------------
3729 void wxListMainWindow::SetItem( wxListItem
&item
)
3731 long id
= item
.m_itemId
;
3732 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3733 _T("invalid item index in SetItem") );
3737 wxListLineData
*line
= GetLine((size_t)id
);
3738 line
->SetItem( item
.m_col
, item
);
3741 if ( InReportView() )
3743 // just refresh the line to show the new value of the text/image
3744 RefreshLine((size_t)id
);
3748 // refresh everything (resulting in horrible flicker - FIXME!)
3753 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3755 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3756 _T("invalid list ctrl item index in SetItem") );
3758 size_t oldCurrent
= m_current
;
3759 size_t item
= (size_t)litem
; // safe because of the check above
3761 // do we need to change the focus?
3762 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3764 if ( state
& wxLIST_STATE_FOCUSED
)
3766 // don't do anything if this item is already focused
3767 if ( item
!= m_current
)
3769 ChangeCurrent(item
);
3771 if ( oldCurrent
!= (size_t)-1 )
3773 if ( IsSingleSel() )
3775 HighlightLine(oldCurrent
, FALSE
);
3778 RefreshLine(oldCurrent
);
3781 RefreshLine( m_current
);
3786 // don't do anything if this item is not focused
3787 if ( item
== m_current
)
3791 if ( IsSingleSel() )
3793 // we must unselect the old current item as well or we
3794 // might end up with more than one selected item in a
3795 // single selection control
3796 HighlightLine(oldCurrent
, FALSE
);
3799 RefreshLine( oldCurrent
);
3804 // do we need to change the selection state?
3805 if ( stateMask
& wxLIST_STATE_SELECTED
)
3807 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3809 if ( IsSingleSel() )
3813 // selecting the item also makes it the focused one in the
3815 if ( m_current
!= item
)
3817 ChangeCurrent(item
);
3819 if ( oldCurrent
!= (size_t)-1 )
3821 HighlightLine( oldCurrent
, FALSE
);
3822 RefreshLine( oldCurrent
);
3828 // only the current item may be selected anyhow
3829 if ( item
!= m_current
)
3834 if ( HighlightLine(item
, on
) )
3841 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3843 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3844 _T("invalid list ctrl item index in GetItemState()") );
3846 int ret
= wxLIST_STATE_DONTCARE
;
3848 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3850 if ( (size_t)item
== m_current
)
3851 ret
|= wxLIST_STATE_FOCUSED
;
3854 if ( stateMask
& wxLIST_STATE_SELECTED
)
3856 if ( IsHighlighted(item
) )
3857 ret
|= wxLIST_STATE_SELECTED
;
3863 void wxListMainWindow::GetItem( wxListItem
&item
) const
3865 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3866 _T("invalid item index in GetItem") );
3868 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3869 line
->GetItem( item
.m_col
, item
);
3872 // ----------------------------------------------------------------------------
3874 // ----------------------------------------------------------------------------
3876 size_t wxListMainWindow::GetItemCount() const
3878 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3881 void wxListMainWindow::SetItemCount(long count
)
3883 m_selStore
.SetItemCount(count
);
3884 m_countVirt
= count
;
3886 ResetVisibleLinesRange();
3888 // scrollbars must be reset
3892 int wxListMainWindow::GetSelectedItemCount() const
3894 // deal with the quick case first
3895 if ( IsSingleSel() )
3897 return HasCurrent() ? IsHighlighted(m_current
) : FALSE
;
3900 // virtual controls remmebers all its selections itself
3902 return m_selStore
.GetSelectedCount();
3904 // TODO: we probably should maintain the number of items selected even for
3905 // non virtual controls as enumerating all lines is really slow...
3906 size_t countSel
= 0;
3907 size_t count
= GetItemCount();
3908 for ( size_t line
= 0; line
< count
; line
++ )
3910 if ( GetLine(line
)->IsHighlighted() )
3917 // ----------------------------------------------------------------------------
3918 // item position/size
3919 // ----------------------------------------------------------------------------
3921 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
) const
3923 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3924 _T("invalid index in GetItemRect") );
3926 rect
= GetLineRect((size_t)index
);
3928 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3931 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3934 GetItemRect(item
, rect
);
3942 // ----------------------------------------------------------------------------
3943 // geometry calculation
3944 // ----------------------------------------------------------------------------
3946 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3948 wxClientDC
dc( this );
3949 dc
.SetFont( GetFont() );
3952 if ( HasFlag(wxLC_ICON
) )
3953 iconSpacing
= m_normal_spacing
;
3954 else if ( HasFlag(wxLC_SMALL_ICON
) )
3955 iconSpacing
= m_small_spacing
;
3959 // Note that we do not call GetClientSize() here but
3960 // GetSize() and substract the border size for sunken
3961 // borders manually. This is technically incorrect,
3962 // but we need to know the client area's size WITHOUT
3963 // scrollbars here. Since we don't know if there are
3964 // any scrollbars, we use GetSize() instead. Another
3965 // solution would be to call SetScrollbars() here to
3966 // remove the scrollbars and call GetClientSize() then,
3967 // but this might result in flicker and - worse - will
3968 // reset the scrollbars to 0 which is not good at all
3969 // if you resize a dialog/window, but don't want to
3970 // reset the window scrolling. RR.
3971 // Furthermore, we actually do NOT subtract the border
3972 // width as 2 pixels is just the extra space which we
3973 // need around the actual content in the window. Other-
3974 // wise the text would e.g. touch the upper border. RR.
3977 GetSize( &clientWidth
, &clientHeight
);
3979 if ( HasFlag(wxLC_REPORT
) )
3981 // all lines have the same height
3982 int lineHeight
= GetLineHeight();
3984 // scroll one line per step
3985 m_yScroll
= lineHeight
;
3987 size_t lineCount
= GetItemCount();
3988 int entireHeight
= lineCount
*lineHeight
+ LINE_SPACING
;
3990 m_linesPerPage
= clientHeight
/ lineHeight
;
3992 ResetVisibleLinesRange();
3994 SetScrollbars( m_xScroll
, m_yScroll
,
3995 GetHeaderWidth() / m_xScroll
,
3996 (entireHeight
+ m_yScroll
- 1)/m_yScroll
,
3997 GetScrollPos(wxHORIZONTAL
),
3998 GetScrollPos(wxVERTICAL
),
4003 // at first we try without any scrollbar. if the items don't
4004 // fit into the window, we recalculate after subtracting an
4005 // approximated 15 pt for the horizontal scrollbar
4007 int entireWidth
= 0;
4009 for (int tries
= 0; tries
< 2; tries
++)
4011 // We start with 4 for the border around all items
4016 // Now we have decided that the items do not fit into the
4017 // client area. Unfortunately, wxWindows sometimes thinks
4018 // that it does fit and therefore NO horizontal scrollbar
4019 // is inserted. This looks ugly, so we fudge here and make
4020 // the calculated width bigger than was actually has been
4021 // calculated. This ensures that wxScrolledWindows puts
4022 // a scrollbar at the bottom of its client area.
4023 entireWidth
+= SCROLL_UNIT_X
;
4026 // Start at 2,2 so the text does not touch the border
4031 int currentlyVisibleLines
= 0;
4033 size_t count
= GetItemCount();
4034 for (size_t i
= 0; i
< count
; i
++)
4036 currentlyVisibleLines
++;
4037 wxListLineData
*line
= GetLine(i
);
4038 line
->CalculateSize( &dc
, iconSpacing
);
4039 line
->SetPosition( x
, y
, clientWidth
, iconSpacing
); // Why clientWidth? (FIXME)
4041 wxSize sizeLine
= GetLineSize(i
);
4043 if ( maxWidth
< sizeLine
.x
)
4044 maxWidth
= sizeLine
.x
;
4047 if (currentlyVisibleLines
> m_linesPerPage
)
4048 m_linesPerPage
= currentlyVisibleLines
;
4050 // Assume that the size of the next one is the same... (FIXME)
4051 if ( y
+ sizeLine
.y
>= clientHeight
)
4053 currentlyVisibleLines
= 0;
4056 entireWidth
+= maxWidth
+6;
4060 // We have reached the last item.
4061 if ( i
== count
- 1 )
4062 entireWidth
+= maxWidth
;
4064 if ( (tries
== 0) && (entireWidth
+SCROLL_UNIT_X
> clientWidth
) )
4066 clientHeight
-= 15; // We guess the scrollbar height. (FIXME)
4068 currentlyVisibleLines
= 0;
4072 if ( i
== count
- 1 )
4073 tries
= 1; // Everything fits, no second try required.
4077 int scroll_pos
= GetScrollPos( wxHORIZONTAL
);
4078 SetScrollbars( m_xScroll
, m_yScroll
, (entireWidth
+SCROLL_UNIT_X
) / m_xScroll
, 0, scroll_pos
, 0, TRUE
);
4083 // FIXME: why should we call it from here?
4090 void wxListMainWindow::RefreshAll()
4095 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
4096 if ( headerWin
&& headerWin
->m_dirty
)
4098 headerWin
->m_dirty
= FALSE
;
4099 headerWin
->Refresh();
4103 void wxListMainWindow::UpdateCurrent()
4105 if ( !HasCurrent() && !IsEmpty() )
4111 long wxListMainWindow::GetNextItem( long item
,
4112 int WXUNUSED(geometry
),
4116 max
= GetItemCount();
4117 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
4118 _T("invalid listctrl index in GetNextItem()") );
4120 // notice that we start with the next item (or the first one if item == -1)
4121 // and this is intentional to allow writing a simple loop to iterate over
4122 // all selected items
4126 // this is not an error because the index was ok initially, just no
4137 size_t count
= GetItemCount();
4138 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
4140 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
4143 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
4150 // ----------------------------------------------------------------------------
4152 // ----------------------------------------------------------------------------
4154 void wxListMainWindow::DeleteItem( long lindex
)
4156 size_t count
= GetItemCount();
4158 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
4159 _T("invalid item index in DeleteItem") );
4161 size_t index
= (size_t)lindex
;
4163 // we don't need to adjust the index for the previous items
4164 if ( HasCurrent() && m_current
>= index
)
4166 // if the current item is being deleted, we want the next one to
4167 // become selected - unless there is no next one - so don't adjust
4168 // m_current in this case
4169 if ( m_current
!= index
|| m_current
== count
- 1 )
4175 if ( InReportView() )
4177 ResetVisibleLinesRange();
4184 m_selStore
.OnItemDelete(index
);
4188 m_lines
.RemoveAt( index
);
4191 // we need to refresh the (vert) scrollbar as the number of items changed
4194 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
4196 RefreshAfter(index
);
4199 void wxListMainWindow::DeleteColumn( int col
)
4201 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
4203 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
4206 m_columns
.DeleteNode( node
);
4208 // invalidate it as it has to be recalculated
4212 void wxListMainWindow::DoDeleteAllItems()
4216 // nothing to do - in particular, don't send the event
4222 // to make the deletion of all items faster, we don't send the
4223 // notifications for each item deletion in this case but only one event
4224 // for all of them: this is compatible with wxMSW and documented in
4225 // DeleteAllItems() description
4227 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
4228 event
.SetEventObject( GetParent() );
4229 GetParent()->GetEventHandler()->ProcessEvent( event
);
4238 if ( InReportView() )
4240 ResetVisibleLinesRange();
4246 void wxListMainWindow::DeleteAllItems()
4250 RecalculatePositions();
4253 void wxListMainWindow::DeleteEverything()
4260 // ----------------------------------------------------------------------------
4261 // scanning for an item
4262 // ----------------------------------------------------------------------------
4264 void wxListMainWindow::EnsureVisible( long index
)
4266 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4267 _T("invalid index in EnsureVisible") );
4269 // We have to call this here because the label in question might just have
4270 // been added and its position is not known yet
4273 RecalculatePositions(TRUE
/* no refresh */);
4276 MoveToItem((size_t)index
);
4279 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
4286 size_t count
= GetItemCount();
4287 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
4289 wxListLineData
*line
= GetLine(i
);
4290 if ( line
->GetText(0) == tmp
)
4297 long wxListMainWindow::FindItem(long start
, long data
)
4303 size_t count
= GetItemCount();
4304 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4306 wxListLineData
*line
= GetLine(i
);
4308 line
->GetItem( 0, item
);
4309 if (item
.m_data
== data
)
4316 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
4318 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4320 size_t count
= GetItemCount();
4322 if ( HasFlag(wxLC_REPORT
) )
4324 size_t current
= y
/ GetLineHeight();
4325 if ( current
< count
)
4327 flags
= HitTestLine(current
, x
, y
);
4334 // TODO: optimize it too! this is less simple than for report view but
4335 // enumerating all items is still not a way to do it!!
4336 for ( size_t current
= 0; current
< count
; current
++ )
4338 flags
= HitTestLine(current
, x
, y
);
4347 // ----------------------------------------------------------------------------
4349 // ----------------------------------------------------------------------------
4351 void wxListMainWindow::InsertItem( wxListItem
&item
)
4353 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4355 size_t count
= GetItemCount();
4356 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
<= count
,
4357 _T("invalid item index") );
4359 size_t id
= item
.m_itemId
;
4364 if ( HasFlag(wxLC_REPORT
) )
4366 else if ( HasFlag(wxLC_LIST
) )
4368 else if ( HasFlag(wxLC_ICON
) )
4370 else if ( HasFlag(wxLC_SMALL_ICON
) )
4371 mode
= wxLC_ICON
; // no typo
4374 wxFAIL_MSG( _T("unknown mode") );
4377 wxListLineData
*line
= new wxListLineData(this);
4379 line
->SetItem( 0, item
);
4381 m_lines
.Insert( line
, id
);
4384 RefreshLines(id
, GetItemCount() - 1);
4387 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4390 if ( HasFlag(wxLC_REPORT
) )
4392 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4393 item
.m_width
= GetTextLength( item
.m_text
);
4394 wxListHeaderData
*column
= new wxListHeaderData( item
);
4395 if ((col
>= 0) && (col
< (int)m_columns
.GetCount()))
4397 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
4398 m_columns
.Insert( node
, column
);
4402 m_columns
.Append( column
);
4405 // invalidate it as it has to be recalculated
4410 // ----------------------------------------------------------------------------
4412 // ----------------------------------------------------------------------------
4414 wxListCtrlCompare list_ctrl_compare_func_2
;
4415 long list_ctrl_compare_data
;
4417 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4419 wxListLineData
*line1
= *arg1
;
4420 wxListLineData
*line2
= *arg2
;
4422 line1
->GetItem( 0, item
);
4423 long data1
= item
.m_data
;
4424 line2
->GetItem( 0, item
);
4425 long data2
= item
.m_data
;
4426 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4429 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4431 list_ctrl_compare_func_2
= fn
;
4432 list_ctrl_compare_data
= data
;
4433 m_lines
.Sort( list_ctrl_compare_func_1
);
4437 // ----------------------------------------------------------------------------
4439 // ----------------------------------------------------------------------------
4441 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4443 // update our idea of which lines are shown when we redraw the window the
4445 ResetVisibleLinesRange();
4448 #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
4449 wxScrolledWindow::OnScroll(event
);
4451 HandleOnScroll( event
);
4454 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4456 wxGenericListCtrl
* lc
= GetListCtrl();
4457 wxCHECK_RET( lc
, _T("no listctrl window?") );
4459 lc
->m_headerWin
->Refresh();
4460 lc
->m_headerWin
->Update();
4464 int wxListMainWindow::GetCountPerPage() const
4466 if ( !m_linesPerPage
)
4468 wxConstCast(this, wxListMainWindow
)->
4469 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4472 return m_linesPerPage
;
4475 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4477 wxASSERT_MSG( HasFlag(wxLC_REPORT
), _T("this is for report mode only") );
4479 if ( m_lineFrom
== (size_t)-1 )
4481 size_t count
= GetItemCount();
4484 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4486 // this may happen if SetScrollbars() hadn't been called yet
4487 if ( m_lineFrom
>= count
)
4488 m_lineFrom
= count
- 1;
4490 // we redraw one extra line but this is needed to make the redrawing
4491 // logic work when there is a fractional number of lines on screen
4492 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4493 if ( m_lineTo
>= count
)
4494 m_lineTo
= count
- 1;
4496 else // empty control
4499 m_lineTo
= (size_t)-1;
4503 wxASSERT_MSG( IsEmpty() ||
4504 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4505 _T("GetVisibleLinesRange() returns incorrect result") );
4513 // -------------------------------------------------------------------------------------
4515 // -------------------------------------------------------------------------------------
4517 #if !defined(__WIN32__)
4518 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
4521 // -------------------------------------------------------------------------------------
4522 // wxGenericListCtrl
4523 // -------------------------------------------------------------------------------------
4525 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4527 #if !defined(__WIN32__)
4528 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
4530 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
4533 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4534 EVT_SIZE(wxGenericListCtrl::OnSize
)
4535 EVT_IDLE(wxGenericListCtrl::OnIdle
)
4538 #if !defined(__WXMSW__) || defined(__WIN16__) || defined(__WXUNIVERSAL__)
4540 * wxListCtrl has to be a real class or we have problems with
4541 * the run-time information.
4544 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxGenericListCtrl
)
4547 wxGenericListCtrl::wxGenericListCtrl()
4549 m_imageListNormal
= (wxGenericImageList
*) NULL
;
4550 m_imageListSmall
= (wxGenericImageList
*) NULL
;
4551 m_imageListState
= (wxGenericImageList
*) NULL
;
4553 m_ownsImageListNormal
=
4554 m_ownsImageListSmall
=
4555 m_ownsImageListState
= FALSE
;
4557 m_mainWin
= (wxListMainWindow
*) NULL
;
4558 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4561 wxGenericListCtrl::~wxGenericListCtrl()
4563 if (m_ownsImageListNormal
)
4564 delete m_imageListNormal
;
4565 if (m_ownsImageListSmall
)
4566 delete m_imageListSmall
;
4567 if (m_ownsImageListState
)
4568 delete m_imageListState
;
4571 void wxGenericListCtrl::CreateHeaderWindow()
4573 m_headerWin
= new wxListHeaderWindow
4575 this, -1, m_mainWin
,
4577 wxSize(GetClientSize().x
, HEADER_HEIGHT
),
4582 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4587 const wxValidator
&validator
,
4588 const wxString
&name
)
4592 m_imageListState
= (wxGenericImageList
*) NULL
;
4593 m_ownsImageListNormal
=
4594 m_ownsImageListSmall
=
4595 m_ownsImageListState
= FALSE
;
4597 m_mainWin
= (wxListMainWindow
*) NULL
;
4598 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4600 if ( !(style
& wxLC_MASK_TYPE
) )
4602 style
= style
| wxLC_LIST
;
4605 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4608 // don't create the inner window with the border
4609 style
&= ~wxSUNKEN_BORDER
;
4611 m_mainWin
= new wxListMainWindow( this, -1, wxPoint(0,0), size
, style
);
4613 if ( HasFlag(wxLC_REPORT
) )
4615 CreateHeaderWindow();
4617 if ( HasFlag(wxLC_NO_HEADER
) )
4619 // VZ: why do we create it at all then?
4620 m_headerWin
->Show( FALSE
);
4627 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4629 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4630 _T("wxLC_VIRTUAL can't be [un]set") );
4632 long flag
= GetWindowStyle();
4636 if (style
& wxLC_MASK_TYPE
)
4637 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4638 if (style
& wxLC_MASK_ALIGN
)
4639 flag
&= ~wxLC_MASK_ALIGN
;
4640 if (style
& wxLC_MASK_SORT
)
4641 flag
&= ~wxLC_MASK_SORT
;
4653 SetWindowStyleFlag( flag
);
4656 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4660 m_mainWin
->DeleteEverything();
4662 // has the header visibility changed?
4663 bool hasHeader
= HasFlag(wxLC_REPORT
) && !HasFlag(wxLC_NO_HEADER
),
4664 willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4666 if ( hasHeader
!= willHaveHeader
)
4673 // don't delete, just hide, as we can reuse it later
4674 m_headerWin
->Show(FALSE
);
4676 //else: nothing to do
4678 else // must show header
4682 CreateHeaderWindow();
4684 else // already have it, just show
4686 m_headerWin
->Show( TRUE
);
4690 ResizeReportView(willHaveHeader
);
4694 wxWindow::SetWindowStyleFlag( flag
);
4697 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4699 m_mainWin
->GetColumn( col
, item
);
4703 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
4705 m_mainWin
->SetColumn( col
, item
);
4709 int wxGenericListCtrl::GetColumnWidth( int col
) const
4711 return m_mainWin
->GetColumnWidth( col
);
4714 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4716 m_mainWin
->SetColumnWidth( col
, width
);
4720 int wxGenericListCtrl::GetCountPerPage() const
4722 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4725 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4727 m_mainWin
->GetItem( info
);
4731 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4733 m_mainWin
->SetItem( info
);
4737 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4740 info
.m_text
= label
;
4741 info
.m_mask
= wxLIST_MASK_TEXT
;
4742 info
.m_itemId
= index
;
4746 info
.m_image
= imageId
;
4747 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4749 m_mainWin
->SetItem(info
);
4753 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4755 return m_mainWin
->GetItemState( item
, stateMask
);
4758 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4760 m_mainWin
->SetItemState( item
, state
, stateMask
);
4764 bool wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4767 info
.m_image
= image
;
4768 info
.m_mask
= wxLIST_MASK_IMAGE
;
4769 info
.m_itemId
= item
;
4770 m_mainWin
->SetItem( info
);
4774 wxString
wxGenericListCtrl::GetItemText( long item
) const
4776 return m_mainWin
->GetItemText(item
);
4779 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4781 m_mainWin
->SetItemText(item
, str
);
4784 long wxGenericListCtrl::GetItemData( long item
) const
4787 info
.m_itemId
= item
;
4788 m_mainWin
->GetItem( info
);
4792 bool wxGenericListCtrl::SetItemData( long item
, long data
)
4795 info
.m_mask
= wxLIST_MASK_DATA
;
4796 info
.m_itemId
= item
;
4798 m_mainWin
->SetItem( info
);
4802 bool wxGenericListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
4804 m_mainWin
->GetItemRect( item
, rect
);
4808 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4810 m_mainWin
->GetItemPosition( item
, pos
);
4814 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4819 int wxGenericListCtrl::GetItemCount() const
4821 return m_mainWin
->GetItemCount();
4824 int wxGenericListCtrl::GetColumnCount() const
4826 return m_mainWin
->GetColumnCount();
4829 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4831 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4834 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
4836 return m_mainWin
->GetItemSpacing( isSmall
);
4839 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
4842 info
.m_itemId
= item
;
4843 info
.SetTextColour( col
);
4844 m_mainWin
->SetItem( info
);
4847 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
4850 info
.m_itemId
= item
;
4851 m_mainWin
->GetItem( info
);
4852 return info
.GetTextColour();
4855 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
4858 info
.m_itemId
= item
;
4859 info
.SetBackgroundColour( col
);
4860 m_mainWin
->SetItem( info
);
4863 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
4866 info
.m_itemId
= item
;
4867 m_mainWin
->GetItem( info
);
4868 return info
.GetBackgroundColour();
4871 int wxGenericListCtrl::GetSelectedItemCount() const
4873 return m_mainWin
->GetSelectedItemCount();
4876 wxColour
wxGenericListCtrl::GetTextColour() const
4878 return GetForegroundColour();
4881 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
4883 SetForegroundColour(col
);
4886 long wxGenericListCtrl::GetTopItem() const
4891 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
4893 return m_mainWin
->GetNextItem( item
, geom
, state
);
4896 wxGenericImageList
*wxGenericListCtrl::GetImageList(int which
) const
4898 if (which
== wxIMAGE_LIST_NORMAL
)
4900 return m_imageListNormal
;
4902 else if (which
== wxIMAGE_LIST_SMALL
)
4904 return m_imageListSmall
;
4906 else if (which
== wxIMAGE_LIST_STATE
)
4908 return m_imageListState
;
4910 return (wxGenericImageList
*) NULL
;
4913 void wxGenericListCtrl::SetImageList( wxGenericImageList
*imageList
, int which
)
4915 if ( which
== wxIMAGE_LIST_NORMAL
)
4917 if (m_ownsImageListNormal
) delete m_imageListNormal
;
4918 m_imageListNormal
= imageList
;
4919 m_ownsImageListNormal
= FALSE
;
4921 else if ( which
== wxIMAGE_LIST_SMALL
)
4923 if (m_ownsImageListSmall
) delete m_imageListSmall
;
4924 m_imageListSmall
= imageList
;
4925 m_ownsImageListSmall
= FALSE
;
4927 else if ( which
== wxIMAGE_LIST_STATE
)
4929 if (m_ownsImageListState
) delete m_imageListState
;
4930 m_imageListState
= imageList
;
4931 m_ownsImageListState
= FALSE
;
4934 m_mainWin
->SetImageList( imageList
, which
);
4937 void wxGenericListCtrl::AssignImageList(wxGenericImageList
*imageList
, int which
)
4939 SetImageList(imageList
, which
);
4940 if ( which
== wxIMAGE_LIST_NORMAL
)
4941 m_ownsImageListNormal
= TRUE
;
4942 else if ( which
== wxIMAGE_LIST_SMALL
)
4943 m_ownsImageListSmall
= TRUE
;
4944 else if ( which
== wxIMAGE_LIST_STATE
)
4945 m_ownsImageListState
= TRUE
;
4948 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
4953 bool wxGenericListCtrl::DeleteItem( long item
)
4955 m_mainWin
->DeleteItem( item
);
4959 bool wxGenericListCtrl::DeleteAllItems()
4961 m_mainWin
->DeleteAllItems();
4965 bool wxGenericListCtrl::DeleteAllColumns()
4967 size_t count
= m_mainWin
->m_columns
.GetCount();
4968 for ( size_t n
= 0; n
< count
; n
++ )
4974 void wxGenericListCtrl::ClearAll()
4976 m_mainWin
->DeleteEverything();
4979 bool wxGenericListCtrl::DeleteColumn( int col
)
4981 m_mainWin
->DeleteColumn( col
);
4983 // if we don't have the header any longer, we need to relayout the window
4984 if ( !GetColumnCount() )
4986 ResizeReportView(FALSE
/* no header */);
4992 void wxGenericListCtrl::Edit( long item
)
4994 m_mainWin
->EditLabel( item
);
4997 bool wxGenericListCtrl::EnsureVisible( long item
)
4999 m_mainWin
->EnsureVisible( item
);
5003 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
5005 return m_mainWin
->FindItem( start
, str
, partial
);
5008 long wxGenericListCtrl::FindItem( long start
, long data
)
5010 return m_mainWin
->FindItem( start
, data
);
5013 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& WXUNUSED(pt
),
5014 int WXUNUSED(direction
))
5019 long wxGenericListCtrl::HitTest( const wxPoint
&point
, int &flags
)
5021 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
5024 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
5026 m_mainWin
->InsertItem( info
);
5027 return info
.m_itemId
;
5030 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
5033 info
.m_text
= label
;
5034 info
.m_mask
= wxLIST_MASK_TEXT
;
5035 info
.m_itemId
= index
;
5036 return InsertItem( info
);
5039 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
5042 info
.m_mask
= wxLIST_MASK_IMAGE
;
5043 info
.m_image
= imageIndex
;
5044 info
.m_itemId
= index
;
5045 return InsertItem( info
);
5048 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
5051 info
.m_text
= label
;
5052 info
.m_image
= imageIndex
;
5053 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
5054 info
.m_itemId
= index
;
5055 return InsertItem( info
);
5058 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
5060 wxCHECK_MSG( m_headerWin
, -1, _T("can't add column in non report mode") );
5062 m_mainWin
->InsertColumn( col
, item
);
5064 // if we hadn't had header before and have it now we need to relayout the
5066 if ( GetColumnCount() == 1 )
5068 ResizeReportView(TRUE
/* have header */);
5071 m_headerWin
->Refresh();
5076 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
5077 int format
, int width
)
5080 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
5081 item
.m_text
= heading
;
5084 item
.m_mask
|= wxLIST_MASK_WIDTH
;
5085 item
.m_width
= width
;
5087 item
.m_format
= format
;
5089 return InsertColumn( col
, item
);
5092 bool wxGenericListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
5098 // fn is a function which takes 3 long arguments: item1, item2, data.
5099 // item1 is the long data associated with a first item (NOT the index).
5100 // item2 is the long data associated with a second item (NOT the index).
5101 // data is the same value as passed to SortItems.
5102 // The return value is a negative number if the first item should precede the second
5103 // item, a positive number of the second item should precede the first,
5104 // or zero if the two items are equivalent.
5105 // data is arbitrary data to be passed to the sort function.
5107 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
5109 m_mainWin
->SortItems( fn
, data
);
5113 // ----------------------------------------------------------------------------
5115 // ----------------------------------------------------------------------------
5117 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5122 ResizeReportView(m_mainWin
->HasHeader());
5124 m_mainWin
->RecalculatePositions();
5127 void wxGenericListCtrl::ResizeReportView(bool showHeader
)
5130 GetClientSize( &cw
, &ch
);
5134 m_headerWin
->SetSize( 0, 0, cw
, HEADER_HEIGHT
);
5135 m_mainWin
->SetSize( 0, HEADER_HEIGHT
+ 1, cw
, ch
- HEADER_HEIGHT
- 1 );
5137 else // no header window
5139 m_mainWin
->SetSize( 0, 0, cw
, ch
);
5143 void wxGenericListCtrl::OnIdle( wxIdleEvent
& event
)
5147 // do it only if needed
5148 if ( !m_mainWin
->m_dirty
)
5151 m_mainWin
->RecalculatePositions();
5154 // ----------------------------------------------------------------------------
5156 // ----------------------------------------------------------------------------
5158 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5162 m_mainWin
->SetBackgroundColour( colour
);
5163 m_mainWin
->m_dirty
= TRUE
;
5169 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5171 if ( !wxWindow::SetForegroundColour( colour
) )
5176 m_mainWin
->SetForegroundColour( colour
);
5177 m_mainWin
->m_dirty
= TRUE
;
5182 m_headerWin
->SetForegroundColour( colour
);
5188 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5190 if ( !wxWindow::SetFont( font
) )
5195 m_mainWin
->SetFont( font
);
5196 m_mainWin
->m_dirty
= TRUE
;
5201 m_headerWin
->SetFont( font
);
5207 // ----------------------------------------------------------------------------
5208 // methods forwarded to m_mainWin
5209 // ----------------------------------------------------------------------------
5211 #if wxUSE_DRAG_AND_DROP
5213 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5215 m_mainWin
->SetDropTarget( dropTarget
);
5218 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5220 return m_mainWin
->GetDropTarget();
5223 #endif // wxUSE_DRAG_AND_DROP
5225 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5227 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : FALSE
;
5230 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5232 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5235 wxColour
wxGenericListCtrl::GetForegroundColour() const
5237 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5240 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5243 return m_mainWin
->PopupMenu( menu
, x
, y
);
5246 #endif // wxUSE_MENUS
5249 void wxGenericListCtrl::SetFocus()
5251 /* The test in window.cpp fails as we are a composite
5252 window, so it checks against "this", but not m_mainWin. */
5253 if ( FindFocus() != this )
5254 m_mainWin
->SetFocus();
5257 // ----------------------------------------------------------------------------
5258 // virtual list control support
5259 // ----------------------------------------------------------------------------
5261 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5263 // this is a pure virtual function, in fact - which is not really pure
5264 // because the controls which are not virtual don't need to implement it
5265 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5267 return wxEmptyString
;
5270 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5273 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemImage not supposed to be called") );
5278 wxListItemAttr
*wxGenericListCtrl::OnGetItemAttr(long item
) const
5280 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5281 _T("invalid item index in OnGetItemAttr()") );
5283 // no attributes by default
5287 void wxGenericListCtrl::SetItemCount(long count
)
5289 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5291 m_mainWin
->SetItemCount(count
);
5294 void wxGenericListCtrl::RefreshItem(long item
)
5296 m_mainWin
->RefreshLine(item
);
5299 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5301 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5304 void wxGenericListCtrl::Freeze()
5306 m_mainWin
->Freeze();
5309 void wxGenericListCtrl::Thaw()
5314 #endif // wxUSE_LISTCTRL