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 /////////////////////////////////////////////////////////////////////////////
12 TODO for better virtual list control support:
14 1. we need to implement searching/sorting somehow
17 // ============================================================================
19 // ============================================================================
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
26 #pragma implementation "listctrl.h"
27 #pragma implementation "listctrlbase.h"
30 // For compilers that support precompilation, includes "wx.h".
31 #include "wx/wxprec.h"
39 #include "wx/dcscreen.h"
41 #include "wx/listctrl.h"
42 #include "wx/imaglist.h"
43 #include "wx/dynarray.h"
47 #include "wx/gtk/win_gtk.h"
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
)
55 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
)
56 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
)
57 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
)
58 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
)
59 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
)
60 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
)
61 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
)
62 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
)
63 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
)
64 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
)
65 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
)
66 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
)
67 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
)
68 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
)
69 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
)
70 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
)
72 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
76 // the height of the header window (FIXME: should depend on its font!)
77 static const int HEADER_HEIGHT
= 23;
79 // the scrollbar units
80 static const int SCROLL_UNIT_X
= 15;
81 static const int SCROLL_UNIT_Y
= 15;
83 // the spacing between the lines (in report mode)
84 static const int LINE_SPACING
= 0;
86 // extra margins around the text label
87 static const int EXTRA_WIDTH
= 3;
88 static const int EXTRA_HEIGHT
= 4;
90 // offset for the header window
91 static const int HEADER_OFFSET_X
= 1;
92 static const int HEADER_OFFSET_Y
= 1;
94 // when autosizing the columns, add some slack
95 static const int AUTOSIZE_COL_MARGIN
= 10;
97 // default and minimal widths for the header columns
98 static const int WIDTH_COL_DEFAULT
= 80;
99 static const int WIDTH_COL_MIN
= 10;
101 // ============================================================================
103 // ============================================================================
105 // ----------------------------------------------------------------------------
107 // ----------------------------------------------------------------------------
109 int CMPFUNC_CONV
wxSizeTCmpFn(size_t n1
, size_t n2
) { return n1
- n2
; }
111 WX_DEFINE_SORTED_EXPORTED_ARRAY(size_t, wxIndexArray
);
113 // this class is used to store the selected items in the virtual list control
114 // (but it is not tied to list control and so can be used with other controls
115 // such as wxListBox in wxUniv)
117 // the idea is to make it really smart later (i.e. store the selections as an
118 // array of ranes + individual items) but, as I don't have time to do it now
119 // (this would require writing code to merge/break ranges and much more) keep
120 // it simple but define a clean interface to it which allows it to be made
122 class WXDLLEXPORT wxSelectionStore
125 wxSelectionStore() : m_itemsSel(wxSizeTCmpFn
) { Init(); }
127 // set the total number of items we handle
128 void SetItemCount(size_t count
) { m_count
= count
; }
130 // special case of SetItemCount(0)
131 void Clear() { m_itemsSel
.Clear(); m_count
= 0; }
133 // must be called when a new item is inserted/added
134 void OnItemAdd(size_t item
) { wxFAIL_MSG( _T("TODO") ); }
136 // must be called when an item is deleted
137 void OnItemDelete(size_t item
);
139 // select one item, use SelectRange() insted if possible!
141 // returns true if the items selection really changed
142 bool SelectItem(size_t item
, bool select
= TRUE
);
144 // select the range of items
146 // return true and fill the itemsChanged array with the indices of items
147 // which have changed state if "few" of them did, otherwise return false
148 // (meaning that too many items changed state to bother counting them
150 bool SelectRange(size_t itemFrom
, size_t itemTo
,
152 wxArrayInt
*itemsChanged
= NULL
);
154 // return true if the given item is selected
155 bool IsSelected(size_t item
) const;
157 // return the total number of selected items
158 size_t GetSelectedCount() const
160 return m_defaultState
? m_count
- m_itemsSel
.GetCount()
161 : m_itemsSel
.GetCount();
166 void Init() { m_defaultState
= FALSE
; }
168 // the total number of items we handle
171 // the default state: normally, FALSE (i.e. off) but maybe set to TRUE if
172 // there are more selected items than non selected ones - this allows to
173 // handle selection of all items efficiently
176 // the array of items whose selection state is different from default
177 wxIndexArray m_itemsSel
;
179 DECLARE_NO_COPY_CLASS(wxSelectionStore
)
182 //-----------------------------------------------------------------------------
183 // wxListItemData (internal)
184 //-----------------------------------------------------------------------------
186 class WXDLLEXPORT wxListItemData
189 wxListItemData(wxListMainWindow
*owner
);
192 void SetItem( const wxListItem
&info
);
193 void SetImage( int image
) { m_image
= image
; }
194 void SetData( long data
) { m_data
= data
; }
195 void SetPosition( int x
, int y
);
196 void SetSize( int width
, int height
);
198 bool HasText() const { return !m_text
.empty(); }
199 const wxString
& GetText() const { return m_text
; }
200 void SetText(const wxString
& text
) { m_text
= text
; }
202 // we can't use empty string for measuring the string width/height, so
203 // always return something
204 wxString
GetTextForMeasuring() const
206 wxString s
= GetText();
213 bool IsHit( int x
, int y
) const;
217 int GetWidth() const;
218 int GetHeight() const;
220 int GetImage() const { return m_image
; }
221 bool HasImage() const { return GetImage() != -1; }
223 void GetItem( wxListItem
&info
) const;
225 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
226 wxListItemAttr
*GetAttr() const { return m_attr
; }
229 // the item image or -1
232 // user data associated with the item
235 // the item coordinates are not used in report mode, instead this pointer
236 // is NULL and the owner window is used to retrieve the item position and
240 // the list ctrl we are in
241 wxListMainWindow
*m_owner
;
243 // custom attributes or NULL
244 wxListItemAttr
*m_attr
;
247 // common part of all ctors
253 //-----------------------------------------------------------------------------
254 // wxListHeaderData (internal)
255 //-----------------------------------------------------------------------------
257 class WXDLLEXPORT wxListHeaderData
: public wxObject
271 wxListHeaderData( const wxListItem
&info
);
272 void SetItem( const wxListItem
&item
);
273 void SetPosition( int x
, int y
);
274 void SetWidth( int w
);
275 void SetFormat( int format
);
276 void SetHeight( int h
);
277 bool HasImage() const;
279 bool HasText() const { return !m_text
.empty(); }
280 const wxString
& GetText() const { return m_text
; }
281 void SetText(const wxString
& text
) { m_text
= text
; }
283 void GetItem( wxListItem
&item
);
285 bool IsHit( int x
, int y
) const;
286 int GetImage() const;
287 int GetWidth() const;
288 int GetFormat() const;
291 DECLARE_DYNAMIC_CLASS(wxListHeaderData
);
294 //-----------------------------------------------------------------------------
295 // wxListLineData (internal)
296 //-----------------------------------------------------------------------------
298 WX_DECLARE_LIST(wxListItemData
, wxListItemDataList
);
299 #include "wx/listimpl.cpp"
300 WX_DEFINE_LIST(wxListItemDataList
);
302 class WXDLLEXPORT wxListLineData
305 // the list of subitems: only may have more than one item in report mode
306 wxListItemDataList m_items
;
308 // this is not used in report view
320 // the part to be highlighted
321 wxRect m_rectHighlight
;
324 // is this item selected? [NB: not used in virtual mode]
327 // back pointer to the list ctrl
328 wxListMainWindow
*m_owner
;
331 wxListLineData(wxListMainWindow
*owner
);
333 ~wxListLineData() { delete m_gi
; }
335 // are we in report mode?
336 inline bool InReportView() const;
338 // are we in virtual report mode?
339 inline bool IsVirtual() const;
341 // these 2 methods shouldn't be called for report view controls, in that
342 // case we determine our position/size ourselves
344 // calculate the size of the line
345 void CalculateSize( wxDC
*dc
, int spacing
);
347 // remember the position this line appears at
348 void SetPosition( int x
, int y
, int window_width
, int spacing
);
352 void SetImage( int image
) { SetImage(0, image
); }
353 int GetImage() const { return GetImage(0); }
354 bool HasImage() const { return GetImage() != -1; }
355 bool HasText() const { return !GetText(0).empty(); }
357 void SetItem( int index
, const wxListItem
&info
);
358 void GetItem( int index
, wxListItem
&info
);
360 wxString
GetText(int index
) const;
361 void SetText( int index
, const wxString s
);
363 wxListItemAttr
*GetAttr() const;
364 void SetAttr(wxListItemAttr
*attr
);
366 // return true if the highlighting really changed
367 bool Highlight( bool on
);
369 void ReverseHighlight();
371 bool IsHighlighted() const
373 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
375 return m_highlighted
;
378 // draw the line on the given DC in icon/list mode
379 void Draw( wxDC
*dc
);
381 // the same in report mode
382 void DrawInReportMode( wxDC
*dc
,
384 const wxRect
& rectHL
,
388 // set the line to contain num items (only can be > 1 in report mode)
389 void InitItems( int num
);
391 // get the mode (i.e. style) of the list control
392 inline int GetMode() const;
394 // prepare the DC for drawing with these item's attributes, return true if
395 // we need to draw the items background to highlight it, false otherwise
396 bool SetAttributes(wxDC
*dc
,
397 const wxListItemAttr
*attr
,
400 // these are only used by GetImage/SetImage above, we don't support images
401 // with subitems at the public API level yet
402 void SetImage( int index
, int image
);
403 int GetImage( int index
) const;
406 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
407 #include "wx/arrimpl.cpp"
408 WX_DEFINE_OBJARRAY(wxListLineDataArray
);
410 //-----------------------------------------------------------------------------
411 // wxListHeaderWindow (internal)
412 //-----------------------------------------------------------------------------
414 class WXDLLEXPORT wxListHeaderWindow
: public wxWindow
417 wxListMainWindow
*m_owner
;
418 wxCursor
*m_currentCursor
;
419 wxCursor
*m_resizeCursor
;
422 // column being resized
425 // divider line position in logical (unscrolled) coords
428 // minimal position beyond which the divider line can't be dragged in
433 wxListHeaderWindow();
434 virtual ~wxListHeaderWindow();
436 wxListHeaderWindow( wxWindow
*win
,
438 wxListMainWindow
*owner
,
439 const wxPoint
&pos
= wxDefaultPosition
,
440 const wxSize
&size
= wxDefaultSize
,
442 const wxString
&name
= "wxlistctrlcolumntitles" );
444 void DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
);
446 void AdjustDC(wxDC
& dc
);
448 void OnPaint( wxPaintEvent
&event
);
449 void OnMouse( wxMouseEvent
&event
);
450 void OnSetFocus( wxFocusEvent
&event
);
456 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
457 DECLARE_EVENT_TABLE()
460 //-----------------------------------------------------------------------------
461 // wxListRenameTimer (internal)
462 //-----------------------------------------------------------------------------
464 class WXDLLEXPORT wxListRenameTimer
: public wxTimer
467 wxListMainWindow
*m_owner
;
470 wxListRenameTimer( wxListMainWindow
*owner
);
474 //-----------------------------------------------------------------------------
475 // wxListTextCtrl (internal)
476 //-----------------------------------------------------------------------------
478 class WXDLLEXPORT wxListTextCtrl
: public wxTextCtrl
483 wxListMainWindow
*m_owner
;
484 wxString m_startValue
;
488 wxListTextCtrl( wxWindow
*parent
, const wxWindowID id
,
489 bool *accept
, wxString
*res
, wxListMainWindow
*owner
,
490 const wxString
&value
= "",
491 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
493 const wxValidator
& validator
= wxDefaultValidator
,
494 const wxString
&name
= "listctrltextctrl" );
495 void OnChar( wxKeyEvent
&event
);
496 void OnKeyUp( wxKeyEvent
&event
);
497 void OnKillFocus( wxFocusEvent
&event
);
500 DECLARE_DYNAMIC_CLASS(wxListTextCtrl
);
501 DECLARE_EVENT_TABLE()
504 //-----------------------------------------------------------------------------
505 // wxListMainWindow (internal)
506 //-----------------------------------------------------------------------------
508 WX_DECLARE_LIST(wxListHeaderData
, wxListHeaderDataList
);
509 #include "wx/listimpl.cpp"
510 WX_DEFINE_LIST(wxListHeaderDataList
);
512 class WXDLLEXPORT wxListMainWindow
: public wxScrolledWindow
516 wxListMainWindow( wxWindow
*parent
,
518 const wxPoint
& pos
= wxDefaultPosition
,
519 const wxSize
& size
= wxDefaultSize
,
521 const wxString
&name
= _T("listctrlmainwindow") );
523 virtual ~wxListMainWindow();
525 bool HasFlag(int flag
) const { return m_parent
->HasFlag(flag
); }
527 // return true if this is a virtual list control
528 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
530 // return true if the control is in report mode
531 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
533 // return true if we are in single selection mode, false if multi sel
534 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL
); }
536 // do we have a header window?
537 bool HasHeader() const
538 { return HasFlag(wxLC_REPORT
) && !HasFlag(wxLC_NO_HEADER
); }
540 void HighlightAll( bool on
);
542 // all these functions only do something if the line is currently visible
544 // change the line "selected" state, return TRUE if it really changed
545 bool HighlightLine( size_t line
, bool highlight
= TRUE
);
547 // as HighlightLine() but do it for the range of lines: this is incredibly
548 // more efficient for virtual list controls!
550 // NB: unlike HighlightLine() this one does refresh the lines on screen
551 void HighlightLines( size_t lineFrom
, size_t lineTo
, bool on
= TRUE
);
553 // toggle the line state and refresh it
554 void ReverseHighlight( size_t line
)
555 { HighlightLine(line
, !IsHighlighted(line
)); RefreshLine(line
); }
557 // return true if the line is highlighted
558 bool IsHighlighted(size_t line
) const;
560 // refresh one or several lines at once
561 void RefreshLine( size_t line
);
562 void RefreshLines( size_t lineFrom
, size_t lineTo
);
564 // refresh all lines below the given one: the difference with
565 // RefreshLines() is that the index here might not be a valid one (happens
566 // when the last line is deleted)
567 void RefreshAfter( size_t lineFrom
);
569 // the methods which are forwarded to wxListLineData itself in list/icon
570 // modes but are here because the lines don't store their positions in the
573 // get the bound rect for the entire line
574 wxRect
GetLineRect(size_t line
) const;
576 // get the bound rect of the label
577 wxRect
GetLineLabelRect(size_t line
) const;
579 // get the bound rect of the items icon (only may be called if we do have
581 wxRect
GetLineIconRect(size_t line
) const;
583 // get the rect to be highlighted when the item has focus
584 wxRect
GetLineHighlightRect(size_t line
) const;
586 // get the size of the total line rect
587 wxSize
GetLineSize(size_t line
) const
588 { return GetLineRect(line
).GetSize(); }
590 // return the hit code for the corresponding position (in this line)
591 long HitTestLine(size_t line
, int x
, int y
) const;
593 // bring the selected item into view, scrolling to it if necessary
594 void MoveToItem(size_t item
);
596 // bring the current item into view
597 void MoveToFocus() { MoveToItem(m_current
); }
599 void EditLabel( long item
);
600 void OnRenameTimer();
601 void OnRenameAccept();
603 void OnMouse( wxMouseEvent
&event
);
605 // called to switch the selection from the current item to newCurrent,
606 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
608 void OnChar( wxKeyEvent
&event
);
609 void OnKeyDown( wxKeyEvent
&event
);
610 void OnSetFocus( wxFocusEvent
&event
);
611 void OnKillFocus( wxFocusEvent
&event
);
612 void OnScroll(wxScrollWinEvent
& event
) ;
614 void OnPaint( wxPaintEvent
&event
);
616 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
617 void GetImageSize( int index
, int &width
, int &height
) const;
618 int GetTextLength( const wxString
&s
) const;
620 void SetImageList( wxImageList
*imageList
, int which
);
621 void SetItemSpacing( int spacing
, bool isSmall
= FALSE
);
622 int GetItemSpacing( bool isSmall
= FALSE
);
624 void SetColumn( int col
, wxListItem
&item
);
625 void SetColumnWidth( int col
, int width
);
626 void GetColumn( int col
, wxListItem
&item
) const;
627 int GetColumnWidth( int col
) const;
628 int GetColumnCount() const { return m_columns
.GetCount(); }
630 // returns the sum of the heights of all columns
631 int GetHeaderWidth() const;
633 int GetCountPerPage() const;
635 void SetItem( wxListItem
&item
);
636 void GetItem( wxListItem
&item
);
637 void SetItemState( long item
, long state
, long stateMask
);
638 int GetItemState( long item
, long stateMask
);
639 void GetItemRect( long index
, wxRect
&rect
);
640 bool GetItemPosition( long item
, wxPoint
& pos
);
641 int GetSelectedItemCount();
643 // set the scrollbars and update the positions of the items
644 void RecalculatePositions(bool noRefresh
= FALSE
);
646 // refresh the window and the header
649 long GetNextItem( long item
, int geometry
, int state
);
650 void DeleteItem( long index
);
651 void DeleteAllItems();
652 void DeleteColumn( int col
);
653 void DeleteEverything();
654 void EnsureVisible( long index
);
655 long FindItem( long start
, const wxString
& str
, bool partial
= FALSE
);
656 long FindItem( long start
, long data
);
657 long HitTest( int x
, int y
, int &flags
);
658 void InsertItem( wxListItem
&item
);
659 void InsertColumn( long col
, wxListItem
&item
);
660 void SortItems( wxListCtrlCompare fn
, long data
);
662 size_t GetItemCount() const;
663 bool IsEmpty() const { return GetItemCount() == 0; }
664 void SetItemCount(long count
);
666 void ResetCurrent() { m_current
= (size_t)-1; }
667 bool HasCurrent() const { return m_current
!= (size_t)-1; }
669 // send out a wxListEvent
670 void SendNotify( size_t line
,
672 wxPoint point
= wxDefaultPosition
);
674 // override base class virtual to reset m_lineHeight when the font changes
675 virtual bool SetFont(const wxFont
& font
)
677 if ( !wxScrolledWindow::SetFont(font
) )
685 // these are for wxListLineData usage only
687 // get the backpointer to the list ctrl
688 wxListCtrl
*GetListCtrl() const
690 return wxStaticCast(GetParent(), wxListCtrl
);
693 // get the height of all lines (assuming they all do have the same height)
694 wxCoord
GetLineHeight() const;
696 // get the y position of the given line (only for report view)
697 wxCoord
GetLineY(size_t line
) const;
700 // the array of all line objects for a non virtual list control
701 wxListLineDataArray m_lines
;
703 // the list of column objects
704 wxListHeaderDataList m_columns
;
706 // currently focused item or -1
709 // the item currently being edited or -1
710 size_t m_currentEdit
;
712 // the number of lines per page
715 // this flag is set when something which should result in the window
716 // redrawing happens (i.e. an item was added or deleted, or its appearance
717 // changed) and OnPaint() doesn't redraw the window while it is set which
718 // allows to minimize the number of repaintings when a lot of items are
719 // being added. The real repainting occurs only after the next OnIdle()
723 wxBrush
*m_highlightBrush
;
724 wxColour
*m_highlightColour
;
727 wxImageList
*m_small_image_list
;
728 wxImageList
*m_normal_image_list
;
730 int m_normal_spacing
;
734 wxTimer
*m_renameTimer
;
736 wxString m_renameRes
;
741 // for double click logic
742 size_t m_lineLastClicked
,
743 m_lineBeforeLastClicked
;
746 // the total count of items in a virtual list control
749 // the object maintaining the items selection state, only used in virtual
751 wxSelectionStore m_selStore
;
753 // common part of all ctors
756 // intiialize m_[xy]Scroll
757 void InitScrolling();
759 // get the line data for the given index
760 wxListLineData
*GetLine(size_t n
) const
762 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
766 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
774 // get a dummy line which can be used for geometry calculations and such:
775 // you must use GetLine() if you want to really draw the line
776 wxListLineData
*GetDummyLine() const;
778 // cache the line data of the n-th line in m_lines[0]
779 void CacheLineData(size_t line
);
781 // get the range of visible lines
782 void GetVisibleLinesRange(size_t *from
, size_t *to
);
784 // force us to recalculate the range of visible lines
785 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
787 // get the colour to be used for drawing the rules
788 wxColour
GetRuleColour() const
793 return wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DLIGHT
);
798 // initialize the current item if needed
799 void UpdateCurrent();
801 // delete all items but don't refresh: called from dtor
802 void DoDeleteAllItems();
804 // called when an item is [un]focuded, i.e. becomes [not] current
807 void OnFocusLine( size_t line
);
808 void OnUnfocusLine( size_t line
);
810 // the height of one line using the current font
811 wxCoord m_lineHeight
;
813 // the total header width or 0 if not calculated yet
814 wxCoord m_headerWidth
;
816 // the first and last lines being shown on screen right now (inclusive),
817 // both may be -1 if they must be calculated so never access them directly:
818 // use GetVisibleLinesRange() above instead
822 DECLARE_DYNAMIC_CLASS(wxListMainWindow
);
823 DECLARE_EVENT_TABLE()
826 // ============================================================================
828 // ============================================================================
830 // ----------------------------------------------------------------------------
832 // ----------------------------------------------------------------------------
834 bool wxSelectionStore::IsSelected(size_t item
) const
836 bool isSel
= m_itemsSel
.Index(item
) != wxNOT_FOUND
;
838 // if the default state is to be selected, being in m_itemsSel means that
839 // the item is not selected, so we have to inverse the logic
840 return m_defaultState
? !isSel
: isSel
;
843 bool wxSelectionStore::SelectItem(size_t item
, bool select
)
845 // search for the item ourselves as like this we get the index where to
846 // insert it later if needed, so we do only one search in the array instead
847 // of two (adding item to a sorted array requires a search)
848 size_t index
= m_itemsSel
.IndexForInsert(item
);
849 bool isSel
= index
< m_itemsSel
.GetCount() && m_itemsSel
[index
] == item
;
851 if ( select
!= m_defaultState
)
855 m_itemsSel
.AddAt(item
, index
);
860 else // reset to default state
864 m_itemsSel
.RemoveAt(index
);
872 bool wxSelectionStore::SelectRange(size_t itemFrom
, size_t itemTo
,
874 wxArrayInt
*itemsChanged
)
876 // 100 is hardcoded but it shouldn't matter much: the important thing is
877 // that we don't refresh everything when really few (e.g. 1 or 2) items
879 static const size_t MANY_ITEMS
= 100;
881 wxASSERT_MSG( itemFrom
<= itemTo
, _T("should be in order") );
883 // are we going to have more [un]selected items than the other ones?
884 if ( itemTo
- itemFrom
> m_count
/2 )
886 if ( select
!= m_defaultState
)
888 // the default state now becomes the same as 'select'
889 m_defaultState
= select
;
891 // so all the old selections (which had state select) shouldn't be
892 // selected any more, but all the other ones should
893 wxIndexArray selOld
= m_itemsSel
;
896 // TODO: it should be possible to optimize the searches a bit
897 // knowing the possible range
900 for ( item
= 0; item
< itemFrom
; item
++ )
902 if ( selOld
.Index(item
) == wxNOT_FOUND
)
903 m_itemsSel
.Add(item
);
906 for ( item
= itemTo
+ 1; item
< m_count
; item
++ )
908 if ( selOld
.Index(item
) == wxNOT_FOUND
)
909 m_itemsSel
.Add(item
);
912 // many items (> half) changed state
915 else // select == m_defaultState
917 // get the inclusive range of items between itemFrom and itemTo
918 size_t count
= m_itemsSel
.GetCount(),
919 start
= m_itemsSel
.IndexForInsert(itemFrom
),
920 end
= m_itemsSel
.IndexForInsert(itemTo
);
922 if ( start
== count
|| m_itemsSel
[start
] < itemFrom
)
927 if ( end
== count
|| m_itemsSel
[end
] > itemTo
)
934 // delete all of them (from end to avoid changing indices)
935 for ( int i
= end
; i
>= (int)start
; i
-- )
939 if ( itemsChanged
->GetCount() > MANY_ITEMS
)
941 // stop counting (see comment below)
945 itemsChanged
->Add(m_itemsSel
[i
]);
948 m_itemsSel
.RemoveAt(i
);
953 else // "few" items change state
957 itemsChanged
->Empty();
960 // just add the items to the selection
961 for ( size_t item
= itemFrom
; item
<= itemTo
; item
++ )
963 if ( SelectItem(item
, select
) && itemsChanged
)
965 itemsChanged
->Add(item
);
967 if ( itemsChanged
->GetCount() > MANY_ITEMS
)
969 // stop counting them, we'll just eat gobs of memory
970 // for nothing at all - faster to refresh everything in
978 // we set it to NULL if there are many items changing state
979 return itemsChanged
!= NULL
;
982 void wxSelectionStore::OnItemDelete(size_t item
)
984 size_t count
= m_itemsSel
.GetCount(),
985 i
= m_itemsSel
.IndexForInsert(item
);
987 if ( i
< count
&& m_itemsSel
[i
] == item
)
989 // this item itself was in m_itemsSel, remove it from there
990 m_itemsSel
.RemoveAt(i
);
995 // and adjust the index of all which follow it
998 // all following elements must be greater than the one we deleted
999 wxASSERT_MSG( m_itemsSel
[i
] > item
, _T("logic error") );
1005 //-----------------------------------------------------------------------------
1007 //-----------------------------------------------------------------------------
1009 wxListItemData::~wxListItemData()
1011 // in the virtual list control the attributes are managed by the main
1012 // program, so don't delete them
1013 if ( !m_owner
->IsVirtual() )
1021 void wxListItemData::Init()
1029 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
1035 if ( owner
->InReportView() )
1041 m_rect
= new wxRect
;
1045 void wxListItemData::SetItem( const wxListItem
&info
)
1047 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
1048 SetText(info
.m_text
);
1049 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
1050 m_image
= info
.m_image
;
1051 if ( info
.m_mask
& wxLIST_MASK_DATA
)
1052 m_data
= info
.m_data
;
1054 if ( info
.HasAttributes() )
1057 *m_attr
= *info
.GetAttributes();
1059 m_attr
= new wxListItemAttr(*info
.GetAttributes());
1067 m_rect
->width
= info
.m_width
;
1071 void wxListItemData::SetPosition( int x
, int y
)
1073 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
1079 void wxListItemData::SetSize( int width
, int height
)
1081 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
1084 m_rect
->width
= width
;
1086 m_rect
->height
= height
;
1089 bool wxListItemData::IsHit( int x
, int y
) const
1091 wxCHECK_MSG( m_rect
, FALSE
, _T("can't be called in this mode") );
1093 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Inside(x
, y
);
1096 int wxListItemData::GetX() const
1098 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1103 int wxListItemData::GetY() const
1105 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1110 int wxListItemData::GetWidth() const
1112 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1114 return m_rect
->width
;
1117 int wxListItemData::GetHeight() const
1119 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
1121 return m_rect
->height
;
1124 void wxListItemData::GetItem( wxListItem
&info
) const
1126 info
.m_text
= m_text
;
1127 info
.m_image
= m_image
;
1128 info
.m_data
= m_data
;
1132 if ( m_attr
->HasTextColour() )
1133 info
.SetTextColour(m_attr
->GetTextColour());
1134 if ( m_attr
->HasBackgroundColour() )
1135 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
1136 if ( m_attr
->HasFont() )
1137 info
.SetFont(m_attr
->GetFont());
1141 //-----------------------------------------------------------------------------
1143 //-----------------------------------------------------------------------------
1145 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData
,wxObject
);
1147 wxListHeaderData::wxListHeaderData()
1158 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1166 void wxListHeaderData::SetItem( const wxListItem
&item
)
1168 m_mask
= item
.m_mask
;
1169 m_text
= item
.m_text
;
1170 m_image
= item
.m_image
;
1171 m_format
= item
.m_format
;
1173 SetWidth(item
.m_width
);
1176 void wxListHeaderData::SetPosition( int x
, int y
)
1182 void wxListHeaderData::SetHeight( int h
)
1187 void wxListHeaderData::SetWidth( int w
)
1191 m_width
= WIDTH_COL_DEFAULT
;
1192 if (m_width
< WIDTH_COL_MIN
)
1193 m_width
= WIDTH_COL_MIN
;
1196 void wxListHeaderData::SetFormat( int format
)
1201 bool wxListHeaderData::HasImage() const
1203 return (m_image
!= 0);
1206 bool wxListHeaderData::IsHit( int x
, int y
) const
1208 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1211 void wxListHeaderData::GetItem( wxListItem
&item
)
1213 item
.m_mask
= m_mask
;
1214 item
.m_text
= m_text
;
1215 item
.m_image
= m_image
;
1216 item
.m_format
= m_format
;
1217 item
.m_width
= m_width
;
1220 int wxListHeaderData::GetImage() const
1225 int wxListHeaderData::GetWidth() const
1230 int wxListHeaderData::GetFormat() const
1235 //-----------------------------------------------------------------------------
1237 //-----------------------------------------------------------------------------
1239 inline int wxListLineData::GetMode() const
1241 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1244 inline bool wxListLineData::InReportView() const
1246 return m_owner
->HasFlag(wxLC_REPORT
);
1249 inline bool wxListLineData::IsVirtual() const
1251 return m_owner
->IsVirtual();
1254 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1257 m_items
.DeleteContents( TRUE
);
1259 if ( InReportView() )
1265 m_gi
= new GeometryInfo
;
1268 m_highlighted
= FALSE
;
1270 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1273 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1275 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1276 wxCHECK_RET( node
, _T("no subitems at all??") );
1278 wxListItemData
*item
= node
->GetData();
1280 switch ( GetMode() )
1283 case wxLC_SMALL_ICON
:
1285 m_gi
->m_rectAll
.width
= spacing
;
1287 wxString s
= item
->GetText();
1293 m_gi
->m_rectLabel
.width
=
1294 m_gi
->m_rectLabel
.height
= 0;
1298 dc
->GetTextExtent( s
, &lw
, &lh
);
1299 if (lh
< SCROLL_UNIT_Y
)
1304 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1306 m_gi
->m_rectAll
.width
= lw
;
1308 m_gi
->m_rectLabel
.width
= lw
;
1309 m_gi
->m_rectLabel
.height
= lh
;
1312 if (item
->HasImage())
1315 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1316 m_gi
->m_rectIcon
.width
= w
+ 8;
1317 m_gi
->m_rectIcon
.height
= h
+ 8;
1319 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1320 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1321 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1322 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1325 if ( item
->HasText() )
1327 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1328 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1330 else // no text, highlight the icon
1332 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1333 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1340 wxString s
= item
->GetTextForMeasuring();
1343 dc
->GetTextExtent( s
, &lw
, &lh
);
1344 if (lh
< SCROLL_UNIT_Y
)
1349 m_gi
->m_rectLabel
.width
= lw
;
1350 m_gi
->m_rectLabel
.height
= lh
;
1352 m_gi
->m_rectAll
.width
= lw
;
1353 m_gi
->m_rectAll
.height
= lh
;
1355 if (item
->HasImage())
1358 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1359 m_gi
->m_rectIcon
.width
= w
;
1360 m_gi
->m_rectIcon
.height
= h
;
1362 m_gi
->m_rectAll
.width
+= 4 + w
;
1363 if (h
> m_gi
->m_rectAll
.height
)
1364 m_gi
->m_rectAll
.height
= h
;
1367 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1368 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1373 wxFAIL_MSG( _T("unexpected call to SetSize") );
1377 wxFAIL_MSG( _T("unknown mode") );
1381 void wxListLineData::SetPosition( int x
, int y
,
1385 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1386 wxCHECK_RET( node
, _T("no subitems at all??") );
1388 wxListItemData
*item
= node
->GetData();
1390 switch ( GetMode() )
1393 case wxLC_SMALL_ICON
:
1394 m_gi
->m_rectAll
.x
= x
;
1395 m_gi
->m_rectAll
.y
= y
;
1397 if ( item
->HasImage() )
1399 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4
1400 + (spacing
- m_gi
->m_rectIcon
.width
)/2;
1401 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1404 if ( item
->HasText() )
1406 if (m_gi
->m_rectAll
.width
> spacing
)
1407 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1409 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2 + (spacing
/2) - (m_gi
->m_rectLabel
.width
/2);
1410 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1411 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1412 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1414 else // no text, highlight the icon
1416 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1417 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1422 m_gi
->m_rectAll
.x
= x
;
1423 m_gi
->m_rectAll
.y
= y
;
1425 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1426 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1427 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1429 if (item
->HasImage())
1431 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1432 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1433 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 6 + m_gi
->m_rectIcon
.width
;
1437 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1442 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1446 wxFAIL_MSG( _T("unknown mode") );
1450 void wxListLineData::InitItems( int num
)
1452 for (int i
= 0; i
< num
; i
++)
1453 m_items
.Append( new wxListItemData(m_owner
) );
1456 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1458 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1459 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1461 wxListItemData
*item
= node
->GetData();
1462 item
->SetItem( info
);
1465 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1467 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1470 wxListItemData
*item
= node
->GetData();
1471 item
->GetItem( info
);
1475 wxString
wxListLineData::GetText(int index
) const
1479 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1482 wxListItemData
*item
= node
->GetData();
1483 s
= item
->GetText();
1489 void wxListLineData::SetText( int index
, const wxString s
)
1491 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1494 wxListItemData
*item
= node
->GetData();
1499 void wxListLineData::SetImage( int index
, int image
)
1501 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1502 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1504 wxListItemData
*item
= node
->GetData();
1505 item
->SetImage(image
);
1508 int wxListLineData::GetImage( int index
) const
1510 wxListItemDataList::Node
*node
= m_items
.Item( index
);
1511 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1513 wxListItemData
*item
= node
->GetData();
1514 return item
->GetImage();
1517 wxListItemAttr
*wxListLineData::GetAttr() const
1519 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1520 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1522 wxListItemData
*item
= node
->GetData();
1523 return item
->GetAttr();
1526 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1528 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1529 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1531 wxListItemData
*item
= node
->GetData();
1532 item
->SetAttr(attr
);
1535 bool wxListLineData::SetAttributes(wxDC
*dc
,
1536 const wxListItemAttr
*attr
,
1539 wxWindow
*listctrl
= m_owner
->GetParent();
1543 // don't use foreground colour for drawing highlighted items - this might
1544 // make them completely invisible (and there is no way to do bit
1545 // arithmetics on wxColour, unfortunately)
1549 colText
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1553 if ( attr
&& attr
->HasTextColour() )
1555 colText
= attr
->GetTextColour();
1559 colText
= listctrl
->GetForegroundColour();
1563 dc
->SetTextForeground(colText
);
1567 if ( attr
&& attr
->HasFont() )
1569 font
= attr
->GetFont();
1573 font
= listctrl
->GetFont();
1579 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1580 if ( highlighted
|| hasBgCol
)
1584 dc
->SetBrush( *m_owner
->m_highlightBrush
);
1588 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1591 dc
->SetPen( *wxTRANSPARENT_PEN
);
1599 void wxListLineData::Draw( wxDC
*dc
)
1601 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1602 wxCHECK_RET( node
, _T("no subitems at all??") );
1604 bool highlighted
= IsHighlighted();
1606 wxListItemAttr
*attr
= GetAttr();
1608 if ( SetAttributes(dc
, attr
, highlighted
) )
1610 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1613 wxListItemData
*item
= node
->GetData();
1614 if (item
->HasImage())
1616 wxRect rectIcon
= m_gi
->m_rectIcon
;
1617 m_owner
->DrawImage( item
->GetImage(), dc
,
1618 rectIcon
.x
, rectIcon
.y
);
1621 if (item
->HasText())
1623 wxRect rectLabel
= m_gi
->m_rectLabel
;
1624 dc
->DrawText( item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1628 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1630 const wxRect
& rectHL
,
1633 // TODO: later we should support setting different attributes for
1634 // different columns - to do it, just add "col" argument to
1635 // GetAttr() and move these lines into the loop below
1636 wxListItemAttr
*attr
= GetAttr();
1637 if ( SetAttributes(dc
, attr
, highlighted
) )
1639 dc
->DrawRectangle( rectHL
);
1642 wxListItemDataList::Node
*node
= m_items
.GetFirst();
1643 wxCHECK_RET( node
, _T("no subitems at all??") );
1646 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1647 y
= rect
.y
+ (LINE_SPACING
+ EXTRA_HEIGHT
) / 2;
1651 wxListItemData
*item
= node
->GetData();
1655 if ( item
->HasImage() )
1658 m_owner
->DrawImage( item
->GetImage(), dc
, x
, y
);
1659 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1660 x
+= ix
+ 5; // FIXME: what is "5"?
1663 int width
= m_owner
->GetColumnWidth(col
++);
1665 wxDCClipper
clipper(*dc
, x
, y
, width
, rect
.height
);
1667 if ( item
->HasText() )
1669 dc
->DrawText( item
->GetText(), x
, y
);
1674 node
= node
->GetNext();
1678 bool wxListLineData::Highlight( bool on
)
1680 wxCHECK_MSG( !m_owner
->IsVirtual(), FALSE
, _T("unexpected call to Highlight") );
1682 if ( on
== m_highlighted
)
1690 void wxListLineData::ReverseHighlight( void )
1692 Highlight(!IsHighlighted());
1695 //-----------------------------------------------------------------------------
1696 // wxListHeaderWindow
1697 //-----------------------------------------------------------------------------
1699 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
);
1701 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1702 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1703 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1704 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1707 wxListHeaderWindow::wxListHeaderWindow( void )
1709 m_owner
= (wxListMainWindow
*) NULL
;
1710 m_currentCursor
= (wxCursor
*) NULL
;
1711 m_resizeCursor
= (wxCursor
*) NULL
;
1712 m_isDragging
= FALSE
;
1715 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
, wxWindowID id
, wxListMainWindow
*owner
,
1716 const wxPoint
&pos
, const wxSize
&size
,
1717 long style
, const wxString
&name
) :
1718 wxWindow( win
, id
, pos
, size
, style
, name
)
1721 // m_currentCursor = wxSTANDARD_CURSOR;
1722 m_currentCursor
= (wxCursor
*) NULL
;
1723 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1724 m_isDragging
= FALSE
;
1727 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
) );
1730 wxListHeaderWindow::~wxListHeaderWindow( void )
1732 delete m_resizeCursor
;
1735 void wxListHeaderWindow::DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
)
1738 GtkStateType state
= m_parent
->IsEnabled() ? GTK_STATE_NORMAL
1739 : GTK_STATE_INSENSITIVE
;
1741 x
= dc
->XLOG2DEV( x
);
1743 gtk_paint_box (m_wxwindow
->style
, GTK_PIZZA(m_wxwindow
)->bin_window
,
1744 state
, GTK_SHADOW_OUT
,
1745 (GdkRectangle
*) NULL
, m_wxwindow
, "button",
1746 x
-1, y
-1, w
+2, h
+2);
1747 #elif defined( __WXMAC__ )
1748 const int m_corner
= 1;
1750 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1752 dc
->SetPen( wxPen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW
) , 1 , wxSOLID
) );
1753 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
1754 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
1756 wxPen
pen( wxColour( 0x88 , 0x88 , 0x88 ), 1, wxSOLID
);
1759 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
1760 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
1762 dc
->SetPen( *wxWHITE_PEN
);
1763 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
1764 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
1765 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
1766 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
1768 const int m_corner
= 1;
1770 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1772 dc
->SetPen( *wxBLACK_PEN
);
1773 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
1774 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
1776 wxPen
pen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
);
1779 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
1780 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
1782 dc
->SetPen( *wxWHITE_PEN
);
1783 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
1784 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
1785 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
1786 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
1790 // shift the DC origin to match the position of the main window horz
1791 // scrollbar: this allows us to always use logical coords
1792 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1795 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1798 m_owner
->GetViewStart( &x
, NULL
);
1800 // account for the horz scrollbar offset
1801 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
1804 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1807 wxClientDC
dc( this );
1809 wxPaintDC
dc( this );
1817 dc
.SetFont( GetFont() );
1819 // width and height of the entire header window
1821 GetClientSize( &w
, &h
);
1822 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1824 dc
.SetBackgroundMode(wxTRANSPARENT
);
1826 // do *not* use the listctrl colour for headers - one day we will have a
1827 // function to set it separately
1828 //dc.SetTextForeground( *wxBLACK );
1829 dc
.SetTextForeground(wxSystemSettings::
1830 GetSystemColour( wxSYS_COLOUR_WINDOWTEXT
));
1832 int x
= HEADER_OFFSET_X
;
1834 int numColumns
= m_owner
->GetColumnCount();
1836 for (int i
= 0; i
< numColumns
; i
++)
1838 m_owner
->GetColumn( i
, item
);
1839 int wCol
= item
.m_width
;
1840 int cw
= wCol
- 2; // the width of the rect to draw
1842 int xEnd
= x
+ wCol
;
1844 dc
.SetPen( *wxWHITE_PEN
);
1846 DoDrawRect( &dc
, x
, HEADER_OFFSET_Y
, cw
, h
-2 );
1847 dc
.SetClippingRegion( x
, HEADER_OFFSET_Y
, cw
-5, h
-4 );
1848 dc
.DrawText( item
.GetText(), x
+ EXTRA_WIDTH
, HEADER_OFFSET_Y
+ EXTRA_HEIGHT
);
1849 dc
.DestroyClippingRegion();
1858 void wxListHeaderWindow::DrawCurrent()
1860 int x1
= m_currentX
;
1862 ClientToScreen( &x1
, &y1
);
1864 int x2
= m_currentX
-1;
1866 m_owner
->GetClientSize( NULL
, &y2
);
1867 m_owner
->ClientToScreen( &x2
, &y2
);
1870 dc
.SetLogicalFunction( wxINVERT
);
1871 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1872 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1876 dc
.DrawLine( x1
, y1
, x2
, y2
);
1878 dc
.SetLogicalFunction( wxCOPY
);
1880 dc
.SetPen( wxNullPen
);
1881 dc
.SetBrush( wxNullBrush
);
1884 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1886 // we want to work with logical coords
1888 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1889 int y
= event
.GetY();
1893 // we don't draw the line beyond our window, but we allow dragging it
1896 GetClientSize( &w
, NULL
);
1897 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1900 // erase the line if it was drawn
1901 if ( m_currentX
< w
)
1904 if (event
.ButtonUp())
1907 m_isDragging
= FALSE
;
1909 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1916 m_currentX
= m_minX
+ 7;
1918 // draw in the new location
1919 if ( m_currentX
< w
)
1923 else // not dragging
1926 bool hit_border
= FALSE
;
1928 // end of the current column
1931 // find the column where this event occured
1932 int countCol
= m_owner
->GetColumnCount();
1933 for (int col
= 0; col
< countCol
; col
++)
1935 xpos
+= m_owner
->GetColumnWidth( col
);
1938 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1940 // near the column border
1947 // inside the column
1954 if (event
.LeftDown())
1958 m_isDragging
= TRUE
;
1965 wxWindow
*parent
= GetParent();
1966 wxListEvent
le( wxEVT_COMMAND_LIST_COL_CLICK
, parent
->GetId() );
1967 le
.SetEventObject( parent
);
1968 le
.m_col
= m_column
;
1969 parent
->GetEventHandler()->ProcessEvent( le
);
1972 else if (event
.Moving())
1977 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1978 m_currentCursor
= m_resizeCursor
;
1982 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1983 m_currentCursor
= wxSTANDARD_CURSOR
;
1987 SetCursor(*m_currentCursor
);
1992 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1994 m_owner
->SetFocus();
1997 //-----------------------------------------------------------------------------
1998 // wxListRenameTimer (internal)
1999 //-----------------------------------------------------------------------------
2001 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2006 void wxListRenameTimer::Notify()
2008 m_owner
->OnRenameTimer();
2011 //-----------------------------------------------------------------------------
2012 // wxListTextCtrl (internal)
2013 //-----------------------------------------------------------------------------
2015 IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl
,wxTextCtrl
);
2017 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
2018 EVT_CHAR (wxListTextCtrl::OnChar
)
2019 EVT_KEY_UP (wxListTextCtrl::OnKeyUp
)
2020 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
2023 wxListTextCtrl::wxListTextCtrl( wxWindow
*parent
,
2024 const wxWindowID id
,
2027 wxListMainWindow
*owner
,
2028 const wxString
&value
,
2032 const wxValidator
& validator
,
2033 const wxString
&name
)
2034 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
2039 (*m_accept
) = FALSE
;
2041 m_startValue
= value
;
2044 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
2046 if (event
.m_keyCode
== WXK_RETURN
)
2049 (*m_res
) = GetValue();
2051 if (!wxPendingDelete
.Member(this))
2052 wxPendingDelete
.Append(this);
2054 if ((*m_accept
) && ((*m_res
) != m_startValue
))
2055 m_owner
->OnRenameAccept();
2059 if (event
.m_keyCode
== WXK_ESCAPE
)
2061 (*m_accept
) = FALSE
;
2064 if (!wxPendingDelete
.Member(this))
2065 wxPendingDelete
.Append(this);
2073 void wxListTextCtrl::OnKeyUp( wxKeyEvent
&event
)
2075 // auto-grow the textctrl:
2076 wxSize parentSize
= m_owner
->GetSize();
2077 wxPoint myPos
= GetPosition();
2078 wxSize mySize
= GetSize();
2080 GetTextExtent(GetValue() + _T("MM"), &sx
, &sy
); // FIXME: MM??
2081 if (myPos
.x
+ sx
> parentSize
.x
)
2082 sx
= parentSize
.x
- myPos
.x
;
2090 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
2092 if (!wxPendingDelete
.Member(this))
2093 wxPendingDelete
.Append(this);
2095 if ((*m_accept
) && ((*m_res
) != m_startValue
))
2096 m_owner
->OnRenameAccept();
2099 //-----------------------------------------------------------------------------
2101 //-----------------------------------------------------------------------------
2103 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
);
2105 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2106 EVT_PAINT (wxListMainWindow::OnPaint
)
2107 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2108 EVT_CHAR (wxListMainWindow::OnChar
)
2109 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2110 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2111 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2112 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2115 void wxListMainWindow::Init()
2117 m_columns
.DeleteContents( TRUE
);
2121 m_lineTo
= (size_t)-1;
2127 m_small_image_list
= (wxImageList
*) NULL
;
2128 m_normal_image_list
= (wxImageList
*) NULL
;
2130 m_small_spacing
= 30;
2131 m_normal_spacing
= 40;
2135 m_isCreated
= FALSE
;
2137 m_lastOnSame
= FALSE
;
2138 m_renameTimer
= new wxListRenameTimer( this );
2139 m_renameAccept
= FALSE
;
2144 m_lineBeforeLastClicked
= (size_t)-1;
2147 void wxListMainWindow::InitScrolling()
2149 if ( HasFlag(wxLC_REPORT
) )
2151 m_xScroll
= SCROLL_UNIT_X
;
2152 m_yScroll
= SCROLL_UNIT_Y
;
2156 m_xScroll
= SCROLL_UNIT_Y
;
2161 wxListMainWindow::wxListMainWindow()
2165 m_highlightBrush
= (wxBrush
*) NULL
;
2171 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2176 const wxString
&name
)
2177 : wxScrolledWindow( parent
, id
, pos
, size
,
2178 style
| wxHSCROLL
| wxVSCROLL
, name
)
2182 m_highlightBrush
= new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
), wxSOLID
);
2187 SetScrollbars( m_xScroll
, m_yScroll
, 0, 0, 0, 0 );
2189 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX
) );
2192 wxListMainWindow::~wxListMainWindow()
2196 delete m_highlightBrush
;
2198 delete m_renameTimer
;
2201 void wxListMainWindow::CacheLineData(size_t line
)
2203 wxListCtrl
*listctrl
= GetListCtrl();
2205 wxListLineData
*ld
= GetDummyLine();
2207 size_t countCol
= GetColumnCount();
2208 for ( size_t col
= 0; col
< countCol
; col
++ )
2210 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2213 ld
->SetImage(listctrl
->OnGetItemImage(line
));
2214 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2217 wxListLineData
*wxListMainWindow::GetDummyLine() const
2219 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2221 if ( m_lines
.IsEmpty() )
2223 // normal controls are supposed to have something in m_lines
2224 // already if it's not empty
2225 wxASSERT_MSG( IsVirtual(), _T("logic error") );
2227 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2228 wxListLineData
*line
= new wxListLineData(self
);
2229 self
->m_lines
.Add(line
);
2235 // ----------------------------------------------------------------------------
2236 // line geometry (report mode only)
2237 // ----------------------------------------------------------------------------
2239 wxCoord
wxListMainWindow::GetLineHeight() const
2241 wxASSERT_MSG( HasFlag(wxLC_REPORT
), _T("only works in report mode") );
2243 // we cache the line height as calling GetTextExtent() is slow
2244 if ( !m_lineHeight
)
2246 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2248 wxClientDC
dc( self
);
2249 dc
.SetFont( GetFont() );
2252 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2254 if ( y
< SCROLL_UNIT_Y
)
2258 self
->m_lineHeight
= y
+ LINE_SPACING
;
2261 return m_lineHeight
;
2264 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2266 wxASSERT_MSG( HasFlag(wxLC_REPORT
), _T("only works in report mode") );
2268 return LINE_SPACING
+ line
*GetLineHeight();
2271 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2273 if ( !InReportView() )
2274 return GetLine(line
)->m_gi
->m_rectAll
;
2277 rect
.x
= HEADER_OFFSET_X
;
2278 rect
.y
= GetLineY(line
);
2279 rect
.width
= GetHeaderWidth();
2280 rect
.height
= GetLineHeight();
2285 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2287 if ( !InReportView() )
2288 return GetLine(line
)->m_gi
->m_rectLabel
;
2291 rect
.x
= HEADER_OFFSET_X
;
2292 rect
.y
= GetLineY(line
);
2293 rect
.width
= GetColumnWidth(0);
2294 rect
.height
= GetLineHeight();
2299 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2301 if ( !InReportView() )
2302 return GetLine(line
)->m_gi
->m_rectIcon
;
2304 wxListLineData
*ld
= GetLine(line
);
2305 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2308 rect
.x
= HEADER_OFFSET_X
;
2309 rect
.y
= GetLineY(line
);
2310 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2315 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2317 return InReportView() ? GetLineRect(line
)
2318 : GetLine(line
)->m_gi
->m_rectHighlight
;
2321 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2323 wxListLineData
*ld
= GetLine(line
);
2325 if ( ld
->HasImage() && GetLineIconRect(line
).Inside(x
, y
) )
2326 return wxLIST_HITTEST_ONITEMICON
;
2328 if ( ld
->HasText() )
2330 wxRect rect
= InReportView() ? GetLineRect(line
)
2331 : GetLineLabelRect(line
);
2333 if ( rect
.Inside(x
, y
) )
2334 return wxLIST_HITTEST_ONITEMLABEL
;
2340 // ----------------------------------------------------------------------------
2341 // highlight (selection) handling
2342 // ----------------------------------------------------------------------------
2344 bool wxListMainWindow::IsHighlighted(size_t line
) const
2348 return m_selStore
.IsSelected(line
);
2352 wxListLineData
*ld
= GetLine(line
);
2353 wxCHECK_MSG( ld
, FALSE
, _T("invalid index in IsHighlighted") );
2355 return ld
->IsHighlighted();
2359 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2365 wxArrayInt linesChanged
;
2366 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2369 // meny items changed state, refresh everything
2370 RefreshLines(lineFrom
, lineTo
);
2372 else // only a few items changed state, refresh only them
2374 size_t count
= linesChanged
.GetCount();
2375 for ( size_t n
= 0; n
< count
; n
++ )
2377 RefreshLine(linesChanged
[n
]);
2381 else // iterate over all items in non report view
2383 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2385 if ( HighlightLine(line
, highlight
) )
2393 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2399 changed
= m_selStore
.SelectItem(line
, highlight
);
2403 wxListLineData
*ld
= GetLine(line
);
2404 wxCHECK_MSG( ld
, FALSE
, _T("invalid index in IsHighlighted") );
2406 changed
= ld
->Highlight(highlight
);
2411 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2412 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2418 void wxListMainWindow::RefreshLine( size_t line
)
2420 wxRect rect
= GetLineRect(line
);
2422 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2423 RefreshRect( rect
);
2426 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2428 // we suppose that they are ordered by caller
2429 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2431 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2433 if ( HasFlag(wxLC_REPORT
) )
2435 size_t visibleFrom
, visibleTo
;
2436 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2438 if ( lineFrom
< visibleFrom
)
2439 lineFrom
= visibleFrom
;
2440 if ( lineTo
> visibleTo
)
2445 rect
.y
= GetLineY(lineFrom
);
2446 rect
.width
= GetClientSize().x
;
2447 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2449 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2450 RefreshRect( rect
);
2454 // TODO: this should be optimized...
2455 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2462 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2464 if ( HasFlag(wxLC_REPORT
) )
2467 GetVisibleLinesRange(&visibleFrom
, NULL
);
2469 if ( lineFrom
< visibleFrom
)
2470 lineFrom
= visibleFrom
;
2474 rect
.y
= GetLineY(lineFrom
);
2476 wxSize size
= GetClientSize();
2477 rect
.width
= size
.x
;
2478 // refresh till the bottom of the window
2479 rect
.height
= size
.y
- rect
.y
;
2481 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2482 RefreshRect( rect
);
2486 // TODO: how to do it more efficiently?
2491 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2493 // Note: a wxPaintDC must be constructed even if no drawing is
2494 // done (a Windows requirement).
2495 wxPaintDC
dc( this );
2499 // empty control. nothing to draw
2505 // delay the repainting until we calculate all the items positions
2512 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2516 dc
.SetFont( GetFont() );
2518 if ( HasFlag(wxLC_REPORT
) )
2520 int lineHeight
= GetLineHeight();
2522 size_t visibleFrom
, visibleTo
;
2523 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2526 wxCoord xOrig
, yOrig
;
2527 CalcUnscrolledPosition(0, 0, &xOrig
, &yOrig
);
2529 // tell the caller cache to cache the data
2532 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2533 GetParent()->GetId());
2534 evCache
.SetEventObject( GetParent() );
2535 evCache
.m_oldItemIndex
= visibleFrom
;
2536 evCache
.m_itemIndex
= visibleTo
;
2537 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2540 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2542 rectLine
= GetLineRect(line
);
2544 if ( !IsExposed(rectLine
.x
- xOrig
, rectLine
.y
- yOrig
,
2545 rectLine
.width
, rectLine
.height
) )
2547 // don't redraw unaffected lines to avoid flicker
2551 GetLine(line
)->DrawInReportMode( &dc
,
2553 GetLineHighlightRect(line
),
2554 m_hasFocus
&& IsHighlighted(line
) );
2557 if ( HasFlag(wxLC_HRULES
) )
2559 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2560 wxSize clientSize
= GetClientSize();
2562 for ( size_t i
= visibleFrom
; i
<= visibleTo
; i
++ )
2565 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2566 dc
.DrawLine(0 - dev_x
, i
*lineHeight
,
2567 clientSize
.x
- dev_x
, i
*lineHeight
);
2570 // Draw last horizontal rule
2571 if ( visibleTo
> visibleFrom
)
2574 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2575 dc
.DrawLine(0 - dev_x
, m_lineTo
*lineHeight
,
2576 clientSize
.x
- dev_x
, m_lineTo
*lineHeight
);
2580 // Draw vertical rules if required
2581 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2583 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2586 wxRect firstItemRect
;
2587 wxRect lastItemRect
;
2588 GetItemRect(0, firstItemRect
);
2589 GetItemRect(GetItemCount() - 1, lastItemRect
);
2590 int x
= firstItemRect
.GetX();
2592 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2593 for (col
= 0; col
< GetColumnCount(); col
++)
2595 int colWidth
= GetColumnWidth(col
);
2597 dc
.DrawLine(x
- dev_x
, firstItemRect
.GetY() - 1 - dev_y
,
2598 x
- dev_x
, lastItemRect
.GetBottom() + 1 - dev_y
);
2604 size_t count
= GetItemCount();
2605 for ( size_t i
= 0; i
< count
; i
++ )
2607 GetLine(i
)->Draw( &dc
);
2613 // don't draw rect outline under Max if we already have the background
2617 #endif // !__WXMAC__
2619 dc
.SetPen( *wxBLACK_PEN
);
2620 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2621 dc
.DrawRectangle( GetLineHighlightRect(m_current
) );
2628 void wxListMainWindow::HighlightAll( bool on
)
2630 if ( IsSingleSel() )
2632 wxASSERT_MSG( !on
, _T("can't do this in a single sel control") );
2634 // we just have one item to turn off
2635 if ( HasCurrent() && IsHighlighted(m_current
) )
2637 HighlightLine(m_current
, FALSE
);
2638 RefreshLine(m_current
);
2643 HighlightLines(0, GetItemCount() - 1, on
);
2647 void wxListMainWindow::SendNotify( size_t line
,
2648 wxEventType command
,
2651 wxListEvent
le( command
, GetParent()->GetId() );
2652 le
.SetEventObject( GetParent() );
2653 le
.m_itemIndex
= line
;
2655 // set only for events which have position
2656 if ( point
!= wxDefaultPosition
)
2657 le
.m_pointDrag
= point
;
2659 if ( command
!= wxEVT_COMMAND_LIST_DELETE_ITEM
)
2661 GetLine(line
)->GetItem( 0, le
.m_item
);
2663 //else: there may be no more such item
2665 GetParent()->GetEventHandler()->ProcessEvent( le
);
2668 void wxListMainWindow::OnFocusLine( size_t WXUNUSED(line
) )
2670 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED );
2673 void wxListMainWindow::OnUnfocusLine( size_t WXUNUSED(line
) )
2675 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED );
2678 void wxListMainWindow::EditLabel( long item
)
2680 wxCHECK_RET( (item
>= 0) && ((size_t)item
< GetItemCount()),
2681 wxT("wrong index in wxListCtrl::EditLabel()") );
2683 m_currentEdit
= (size_t)item
;
2685 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2686 le
.SetEventObject( GetParent() );
2687 le
.m_itemIndex
= item
;
2688 wxListLineData
*data
= GetLine(m_currentEdit
);
2689 wxCHECK_RET( data
, _T("invalid index in EditLabel()") );
2690 data
->GetItem( 0, le
.m_item
);
2691 GetParent()->GetEventHandler()->ProcessEvent( le
);
2693 if (!le
.IsAllowed())
2696 // We have to call this here because the label in question might just have
2697 // been added and no screen update taken place.
2701 wxClientDC
dc(this);
2704 wxString s
= data
->GetText(0);
2705 wxRect rectLabel
= GetLineLabelRect(m_currentEdit
);
2707 rectLabel
.x
= dc
.LogicalToDeviceX( rectLabel
.x
);
2708 rectLabel
.y
= dc
.LogicalToDeviceY( rectLabel
.y
);
2710 wxListTextCtrl
*text
= new wxListTextCtrl
2717 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2718 wxSize(rectLabel
.width
+11,rectLabel
.height
+8)
2723 void wxListMainWindow::OnRenameTimer()
2725 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2727 EditLabel( m_current
);
2730 void wxListMainWindow::OnRenameAccept()
2732 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2733 le
.SetEventObject( GetParent() );
2734 le
.m_itemIndex
= m_currentEdit
;
2736 wxListLineData
*data
= GetLine(m_currentEdit
);
2737 wxCHECK_RET( data
, _T("invalid index in OnRenameAccept()") );
2739 data
->GetItem( 0, le
.m_item
);
2740 le
.m_item
.m_text
= m_renameRes
;
2741 GetParent()->GetEventHandler()->ProcessEvent( le
);
2743 if (!le
.IsAllowed()) return;
2746 info
.m_mask
= wxLIST_MASK_TEXT
;
2747 info
.m_itemId
= le
.m_itemIndex
;
2748 info
.m_text
= m_renameRes
;
2749 info
.SetTextColour(le
.m_item
.GetTextColour());
2753 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2755 event
.SetEventObject( GetParent() );
2756 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2759 if ( !HasCurrent() || IsEmpty() )
2765 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2766 event
.ButtonDClick()) )
2769 int x
= event
.GetX();
2770 int y
= event
.GetY();
2771 CalcUnscrolledPosition( x
, y
, &x
, &y
);
2773 // where did we hit it (if we did)?
2776 size_t count
= GetItemCount(),
2779 if ( HasFlag(wxLC_REPORT
) )
2781 current
= y
/ GetLineHeight();
2782 if ( current
< count
)
2783 hitResult
= HitTestLine(current
, x
, y
);
2787 // TODO: optimize it too! this is less simple than for report view but
2788 // enumerating all items is still not a way to do it!!
2789 for ( current
= 0; current
< count
; current
++ )
2791 hitResult
= HitTestLine(current
, x
, y
);
2797 if (event
.Dragging())
2799 if (m_dragCount
== 0)
2800 m_dragStart
= wxPoint(x
,y
);
2804 if (m_dragCount
!= 3)
2807 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2808 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2810 wxListEvent
le( command
, GetParent()->GetId() );
2811 le
.SetEventObject( GetParent() );
2812 le
.m_pointDrag
= m_dragStart
;
2813 GetParent()->GetEventHandler()->ProcessEvent( le
);
2824 // outside of any item
2828 bool forceClick
= FALSE
;
2829 if (event
.ButtonDClick())
2831 m_renameTimer
->Stop();
2832 m_lastOnSame
= FALSE
;
2834 if ( current
== m_lineBeforeLastClicked
)
2836 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2842 // the first click was on another item, so don't interpret this as
2843 // a double click, but as a simple click instead
2848 if (event
.LeftUp() && m_lastOnSame
)
2850 if ((current
== m_current
) &&
2851 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2852 HasFlag(wxLC_EDIT_LABELS
) )
2854 m_renameTimer
->Start( 100, TRUE
);
2856 m_lastOnSame
= FALSE
;
2858 else if (event
.RightDown())
2860 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
,
2861 event
.GetPosition() );
2863 else if (event
.MiddleDown())
2865 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
2867 else if ( event
.LeftDown() || forceClick
)
2869 m_lineBeforeLastClicked
= m_lineLastClicked
;
2870 m_lineLastClicked
= current
;
2872 size_t oldCurrent
= m_current
;
2874 if ( IsSingleSel() || !(event
.ControlDown() || event
.ShiftDown()) )
2876 HighlightAll( FALSE
);
2877 m_current
= current
;
2879 ReverseHighlight(m_current
);
2881 else // multi sel & either ctrl or shift is down
2883 if (event
.ControlDown())
2885 m_current
= current
;
2887 ReverseHighlight(m_current
);
2889 else if (event
.ShiftDown())
2891 m_current
= current
;
2893 size_t lineFrom
= oldCurrent
,
2896 if ( lineTo
< lineFrom
)
2899 lineFrom
= m_current
;
2902 HighlightLines(lineFrom
, lineTo
);
2904 else // !ctrl, !shift
2906 // test in the enclosing if should make it impossible
2907 wxFAIL_MSG( _T("how did we get here?") );
2911 if (m_current
!= oldCurrent
)
2913 RefreshLine( oldCurrent
);
2914 OnUnfocusLine( oldCurrent
);
2915 OnFocusLine( m_current
);
2918 // forceClick is only set if the previous click was on another item
2919 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
);
2923 void wxListMainWindow::MoveToItem(size_t item
)
2925 if ( item
== (size_t)-1 )
2928 wxRect rect
= GetLineRect(item
);
2930 int client_w
, client_h
;
2931 GetClientSize( &client_w
, &client_h
);
2933 int view_x
= m_xScroll
*GetScrollPos( wxHORIZONTAL
);
2934 int view_y
= m_yScroll
*GetScrollPos( wxVERTICAL
);
2936 if ( HasFlag(wxLC_REPORT
) )
2938 // the next we need the range of lines shown it might be different, so
2940 ResetVisibleLinesRange();
2942 if (rect
.y
< view_y
)
2943 Scroll( -1, rect
.y
/m_yScroll
);
2944 if (rect
.y
+rect
.height
+5 > view_y
+client_h
)
2945 Scroll( -1, (rect
.y
+rect
.height
-client_h
+SCROLL_UNIT_Y
)/m_yScroll
);
2949 if (rect
.x
-view_x
< 5)
2950 Scroll( (rect
.x
-5)/m_xScroll
, -1 );
2951 if (rect
.x
+rect
.width
-5 > view_x
+client_w
)
2952 Scroll( (rect
.x
+rect
.width
-client_w
+SCROLL_UNIT_X
)/m_xScroll
, -1 );
2956 // ----------------------------------------------------------------------------
2957 // keyboard handling
2958 // ----------------------------------------------------------------------------
2960 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
2962 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
2963 _T("invalid item index in OnArrowChar()") );
2965 size_t oldCurrent
= m_current
;
2967 // in single selection we just ignore Shift as we can't select several
2969 if ( event
.ShiftDown() && !IsSingleSel() )
2971 m_current
= newCurrent
;
2973 // select all the items between the old and the new one
2974 if ( oldCurrent
> newCurrent
)
2976 newCurrent
= oldCurrent
;
2977 oldCurrent
= m_current
;
2980 HighlightLines(oldCurrent
, newCurrent
);
2984 // all previously selected items are unselected unless ctrl is held
2985 if ( !event
.ControlDown() )
2986 HighlightAll(FALSE
);
2988 m_current
= newCurrent
;
2990 HighlightLine( oldCurrent
, FALSE
);
2991 RefreshLine( oldCurrent
);
2993 if ( !event
.ControlDown() )
2995 HighlightLine( m_current
, TRUE
);
2999 OnUnfocusLine( oldCurrent
);
3000 OnFocusLine( m_current
);
3001 RefreshLine( m_current
);
3006 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3008 wxWindow
*parent
= GetParent();
3010 /* we propagate the key event up */
3011 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3012 ke
.m_shiftDown
= event
.m_shiftDown
;
3013 ke
.m_controlDown
= event
.m_controlDown
;
3014 ke
.m_altDown
= event
.m_altDown
;
3015 ke
.m_metaDown
= event
.m_metaDown
;
3016 ke
.m_keyCode
= event
.m_keyCode
;
3019 ke
.SetEventObject( parent
);
3020 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3025 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3027 wxWindow
*parent
= GetParent();
3029 /* we send a list_key event up */
3032 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3033 le
.m_itemIndex
= m_current
;
3034 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3035 le
.m_code
= (int)event
.KeyCode();
3036 le
.SetEventObject( parent
);
3037 parent
->GetEventHandler()->ProcessEvent( le
);
3040 /* we propagate the char event up */
3041 wxKeyEvent
ke( wxEVT_CHAR
);
3042 ke
.m_shiftDown
= event
.m_shiftDown
;
3043 ke
.m_controlDown
= event
.m_controlDown
;
3044 ke
.m_altDown
= event
.m_altDown
;
3045 ke
.m_metaDown
= event
.m_metaDown
;
3046 ke
.m_keyCode
= event
.m_keyCode
;
3049 ke
.SetEventObject( parent
);
3050 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3052 if (event
.KeyCode() == WXK_TAB
)
3054 wxNavigationKeyEvent nevent
;
3055 nevent
.SetWindowChange( event
.ControlDown() );
3056 nevent
.SetDirection( !event
.ShiftDown() );
3057 nevent
.SetEventObject( GetParent()->GetParent() );
3058 nevent
.SetCurrentFocus( m_parent
);
3059 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
)) return;
3062 /* no item -> nothing to do */
3069 switch (event
.KeyCode())
3072 if ( m_current
> 0 )
3073 OnArrowChar( m_current
- 1, event
);
3077 if ( m_current
< (size_t)GetItemCount() - 1 )
3078 OnArrowChar( m_current
+ 1, event
);
3083 OnArrowChar( GetItemCount() - 1, event
);
3088 OnArrowChar( 0, event
);
3094 if ( HasFlag(wxLC_REPORT
) )
3096 steps
= m_linesPerPage
- 1;
3100 steps
= m_current
% m_linesPerPage
;
3103 int index
= m_current
- steps
;
3107 OnArrowChar( index
, event
);
3114 if ( HasFlag(wxLC_REPORT
) )
3116 steps
= m_linesPerPage
- 1;
3120 steps
= m_linesPerPage
- (m_current
% m_linesPerPage
) - 1;
3123 size_t index
= m_current
+ steps
;
3124 size_t count
= GetItemCount();
3125 if ( index
>= count
)
3128 OnArrowChar( index
, event
);
3133 if ( !HasFlag(wxLC_REPORT
) )
3135 int index
= m_current
- m_linesPerPage
;
3139 OnArrowChar( index
, event
);
3144 if ( !HasFlag(wxLC_REPORT
) )
3146 size_t index
= m_current
+ m_linesPerPage
;
3148 size_t count
= GetItemCount();
3149 if ( index
>= count
)
3152 OnArrowChar( index
, event
);
3157 if ( IsSingleSel() )
3159 wxListEvent
le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
,
3160 GetParent()->GetId() );
3161 le
.SetEventObject( GetParent() );
3162 le
.m_itemIndex
= m_current
;
3163 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3164 GetParent()->GetEventHandler()->ProcessEvent( le
);
3168 ReverseHighlight(m_current
);
3175 wxListEvent
le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
,
3176 GetParent()->GetId() );
3177 le
.SetEventObject( GetParent() );
3178 le
.m_itemIndex
= m_current
;
3179 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3180 GetParent()->GetEventHandler()->ProcessEvent( le
);
3189 // ----------------------------------------------------------------------------
3191 // ----------------------------------------------------------------------------
3194 extern wxWindow
*g_focusWindow
;
3197 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3202 RefreshLine( m_current
);
3208 g_focusWindow
= GetParent();
3211 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3212 event
.SetEventObject( GetParent() );
3213 GetParent()->GetEventHandler()->ProcessEvent( event
);
3216 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3221 RefreshLine( m_current
);
3224 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3226 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3228 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3230 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3232 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3234 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3236 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3238 else if ( HasFlag(wxLC_REPORT
) && (m_small_image_list
))
3240 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3244 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3246 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3248 m_normal_image_list
->GetSize( index
, width
, height
);
3250 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3252 m_small_image_list
->GetSize( index
, width
, height
);
3254 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3256 m_small_image_list
->GetSize( index
, width
, height
);
3258 else if ( HasFlag(wxLC_REPORT
) && m_small_image_list
)
3260 m_small_image_list
->GetSize( index
, width
, height
);
3269 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3271 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3272 dc
.SetFont( GetFont() );
3275 dc
.GetTextExtent( s
, &lw
, NULL
);
3277 return lw
+ AUTOSIZE_COL_MARGIN
;
3280 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
3284 // calc the spacing from the icon size
3287 if ((imageList
) && (imageList
->GetImageCount()) )
3289 imageList
->GetSize(0, width
, height
);
3292 if (which
== wxIMAGE_LIST_NORMAL
)
3294 m_normal_image_list
= imageList
;
3295 m_normal_spacing
= width
+ 8;
3298 if (which
== wxIMAGE_LIST_SMALL
)
3300 m_small_image_list
= imageList
;
3301 m_small_spacing
= width
+ 14;
3305 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3310 m_small_spacing
= spacing
;
3314 m_normal_spacing
= spacing
;
3318 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3320 return isSmall
? m_small_spacing
: m_normal_spacing
;
3323 // ----------------------------------------------------------------------------
3325 // ----------------------------------------------------------------------------
3327 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3329 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3331 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3333 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3334 item
.m_width
= GetTextLength( item
.m_text
);
3336 wxListHeaderData
*column
= node
->GetData();
3337 column
->SetItem( item
);
3339 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3341 headerWin
->m_dirty
= TRUE
;
3345 // invalidate it as it has to be recalculated
3349 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3351 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3352 _T("invalid column index") );
3354 wxCHECK_RET( HasFlag(wxLC_REPORT
),
3355 _T("SetColumnWidth() can only be called in report mode.") );
3359 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3360 wxCHECK_RET( node
, _T("no column?") );
3362 wxListHeaderData
*column
= node
->GetData();
3364 size_t count
= GetItemCount();
3366 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3368 width
= GetTextLength(column
->GetText());
3370 else if ( width
== wxLIST_AUTOSIZE
)
3374 // TODO: determine the max width somehow...
3375 width
= WIDTH_COL_DEFAULT
;
3379 wxClientDC
dc(this);
3380 dc
.SetFont( GetFont() );
3382 int max
= AUTOSIZE_COL_MARGIN
;
3384 for ( size_t i
= 0; i
< count
; i
++ )
3386 wxListLineData
*line
= GetLine(i
);
3387 wxListItemDataList::Node
*n
= line
->m_items
.Item( col
);
3389 wxCHECK_RET( n
, _T("no subitem?") );
3391 wxListItemData
*item
= n
->GetData();
3394 if (item
->HasImage())
3397 GetImageSize( item
->GetImage(), ix
, iy
);
3401 if (item
->HasText())
3404 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
3412 width
= max
+ AUTOSIZE_COL_MARGIN
;
3416 column
->SetWidth( width
);
3418 // invalidate it as it has to be recalculated
3422 int wxListMainWindow::GetHeaderWidth() const
3424 if ( !m_headerWidth
)
3426 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3428 size_t count
= GetColumnCount();
3429 for ( size_t col
= 0; col
< count
; col
++ )
3431 self
->m_headerWidth
+= GetColumnWidth(col
);
3435 return m_headerWidth
;
3438 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3440 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3441 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3443 wxListHeaderData
*column
= node
->GetData();
3444 column
->GetItem( item
);
3447 int wxListMainWindow::GetColumnWidth( int col
) const
3449 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3450 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3452 wxListHeaderData
*column
= node
->GetData();
3453 return column
->GetWidth();
3456 // ----------------------------------------------------------------------------
3458 // ----------------------------------------------------------------------------
3460 void wxListMainWindow::SetItem( wxListItem
&item
)
3462 long id
= item
.m_itemId
;
3463 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3464 _T("invalid item index in SetItem") );
3468 wxListLineData
*line
= GetLine((size_t)id
);
3469 line
->SetItem( item
.m_col
, item
);
3472 if ( InReportView() )
3474 // just refresh the line to show the new value of the text/image
3475 RefreshLine((size_t)id
);
3479 // refresh everything (resulting in horrible flicker - FIXME!)
3484 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3486 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3487 _T("invalid list ctrl item index in SetItem") );
3489 size_t oldCurrent
= m_current
;
3490 size_t item
= (size_t)litem
; // sdafe because of the check above
3492 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3494 if ( state
& wxLIST_STATE_FOCUSED
)
3496 // don't do anything if this item is already focused
3497 if ( item
!= m_current
)
3499 OnUnfocusLine( m_current
);
3501 OnFocusLine( m_current
);
3503 if ( IsSingleSel() && (oldCurrent
!= (size_t)-1) )
3505 HighlightLine(oldCurrent
, FALSE
);
3506 RefreshLine(oldCurrent
);
3509 RefreshLine( m_current
);
3514 // don't do anything if this item is not focused
3515 if ( item
== m_current
)
3517 OnUnfocusLine( m_current
);
3518 m_current
= (size_t)-1;
3523 if ( stateMask
& wxLIST_STATE_SELECTED
)
3525 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3527 if ( IsSingleSel() )
3531 // selecting the item also makes it the focused one in the
3533 if ( m_current
!= item
)
3535 OnUnfocusLine( m_current
);
3537 OnFocusLine( m_current
);
3539 if ( oldCurrent
!= (size_t)-1 )
3541 HighlightLine( oldCurrent
, FALSE
);
3542 RefreshLine( oldCurrent
);
3548 // only the current item may be selected anyhow
3549 if ( item
!= m_current
)
3554 if ( HighlightLine(item
, on
) )
3561 int wxListMainWindow::GetItemState( long item
, long stateMask
)
3563 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3564 _T("invalid list ctrl item index in GetItemState()") );
3566 int ret
= wxLIST_STATE_DONTCARE
;
3568 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3570 if ( (size_t)item
== m_current
)
3571 ret
|= wxLIST_STATE_FOCUSED
;
3574 if ( stateMask
& wxLIST_STATE_SELECTED
)
3576 if ( IsHighlighted(item
) )
3577 ret
|= wxLIST_STATE_SELECTED
;
3583 void wxListMainWindow::GetItem( wxListItem
&item
)
3585 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3586 _T("invalid item index in GetItem") );
3588 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3589 line
->GetItem( item
.m_col
, item
);
3592 // ----------------------------------------------------------------------------
3594 // ----------------------------------------------------------------------------
3596 size_t wxListMainWindow::GetItemCount() const
3598 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3601 void wxListMainWindow::SetItemCount(long count
)
3603 m_selStore
.SetItemCount(count
);
3604 m_countVirt
= count
;
3606 ResetVisibleLinesRange();
3608 // scrollbars must be reset
3612 int wxListMainWindow::GetSelectedItemCount()
3614 // deal with the quick case first
3615 if ( IsSingleSel() )
3617 return HasCurrent() ? IsHighlighted(m_current
) : FALSE
;
3620 // virtual controls remmebers all its selections itself
3622 return m_selStore
.GetSelectedCount();
3624 // TODO: we probably should maintain the number of items selected even for
3625 // non virtual controls as enumerating all lines is really slow...
3626 size_t countSel
= 0;
3627 size_t count
= GetItemCount();
3628 for ( size_t line
= 0; line
< count
; line
++ )
3630 if ( GetLine(line
)->IsHighlighted() )
3637 // ----------------------------------------------------------------------------
3638 // item position/size
3639 // ----------------------------------------------------------------------------
3641 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
)
3643 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3644 _T("invalid index in GetItemRect") );
3646 rect
= GetLineRect((size_t)index
);
3648 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3651 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
)
3654 GetItemRect(item
, rect
);
3662 // ----------------------------------------------------------------------------
3663 // geometry calculation
3664 // ----------------------------------------------------------------------------
3666 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3668 wxClientDC
dc( this );
3669 dc
.SetFont( GetFont() );
3672 if ( HasFlag(wxLC_ICON
) )
3673 iconSpacing
= m_normal_spacing
;
3674 else if ( HasFlag(wxLC_SMALL_ICON
) )
3675 iconSpacing
= m_small_spacing
;
3681 GetClientSize( &clientWidth
, &clientHeight
);
3683 if ( HasFlag(wxLC_REPORT
) )
3685 // all lines have the same height
3686 int lineHeight
= GetLineHeight();
3688 // scroll one line per step
3689 m_yScroll
= lineHeight
;
3691 size_t lineCount
= GetItemCount();
3692 int entireHeight
= lineCount
*lineHeight
+ LINE_SPACING
;
3694 m_linesPerPage
= clientHeight
/ lineHeight
;
3696 ResetVisibleLinesRange();
3698 SetScrollbars( m_xScroll
, m_yScroll
,
3699 (GetHeaderWidth() + m_xScroll
- 1)/m_xScroll
,
3700 (entireHeight
+ m_yScroll
- 1)/m_yScroll
,
3701 GetScrollPos(wxHORIZONTAL
),
3702 GetScrollPos(wxVERTICAL
),
3707 // at first we try without any scrollbar. if the items don't
3708 // fit into the window, we recalculate after subtracting an
3709 // approximated 15 pt for the horizontal scrollbar
3711 clientHeight
-= 4; // sunken frame
3713 int entireWidth
= 0;
3715 for (int tries
= 0; tries
< 2; tries
++)
3722 int currentlyVisibleLines
= 0;
3724 size_t count
= GetItemCount();
3725 for (size_t i
= 0; i
< count
; i
++)
3727 currentlyVisibleLines
++;
3728 wxListLineData
*line
= GetLine(i
);
3729 line
->CalculateSize( &dc
, iconSpacing
);
3730 line
->SetPosition( x
, y
, clientWidth
, iconSpacing
);
3732 wxSize sizeLine
= GetLineSize(i
);
3734 if ( maxWidth
< sizeLine
.x
)
3735 maxWidth
= sizeLine
.x
;
3738 if (currentlyVisibleLines
> m_linesPerPage
)
3739 m_linesPerPage
= currentlyVisibleLines
;
3741 // assume that the size of the next one is the same... (FIXME)
3742 if ( y
+ sizeLine
.y
- 6 >= clientHeight
)
3744 currentlyVisibleLines
= 0;
3747 entireWidth
+= maxWidth
+6;
3750 if ( i
== count
- 1 )
3751 entireWidth
+= maxWidth
;
3752 if ((tries
== 0) && (entireWidth
> clientWidth
))
3754 clientHeight
-= 15; // scrollbar height
3756 currentlyVisibleLines
= 0;
3759 if ( i
== count
- 1 )
3760 tries
= 1; // everything fits, no second try required
3764 int scroll_pos
= GetScrollPos( wxHORIZONTAL
);
3765 SetScrollbars( m_xScroll
, m_yScroll
, (entireWidth
+SCROLL_UNIT_X
) / m_xScroll
, 0, scroll_pos
, 0, TRUE
);
3770 // FIXME: why should we call it from here?
3777 void wxListMainWindow::RefreshAll()
3782 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3785 headerWin
->m_dirty
= FALSE
;
3786 headerWin
->Refresh();
3790 void wxListMainWindow::UpdateCurrent()
3792 if ( !HasCurrent() && !IsEmpty() )
3797 if ( m_current
!= (size_t)-1 )
3799 OnFocusLine( m_current
);
3803 long wxListMainWindow::GetNextItem( long item
,
3804 int WXUNUSED(geometry
),
3808 max
= GetItemCount();
3809 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
3810 _T("invalid listctrl index in GetNextItem()") );
3812 // notice that we start with the next item (or the first one if item == -1)
3813 // and this is intentional to allow writing a simple loop to iterate over
3814 // all selected items
3818 // this is not an error because the index was ok initially, just no
3829 size_t count
= GetItemCount();
3830 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
3832 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
3835 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
3842 // ----------------------------------------------------------------------------
3844 // ----------------------------------------------------------------------------
3846 void wxListMainWindow::DeleteItem( long lindex
)
3848 size_t count
= GetItemCount();
3850 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
3851 _T("invalid item index in DeleteItem") );
3853 size_t index
= (size_t)lindex
;
3855 // we don't need to adjust the index for the previous items
3856 if ( HasCurrent() && m_current
>= index
)
3858 // if the current item is being deleted, we want the next one to
3859 // become selected - unless there is no next one - so don't adjust
3860 // m_current in this case
3861 if ( m_current
!= index
|| m_current
== count
- 1 )
3867 if ( InReportView() )
3869 ResetVisibleLinesRange();
3876 m_selStore
.OnItemDelete(index
);
3880 m_lines
.RemoveAt( index
);
3885 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
3887 RefreshAfter(index
);
3890 void wxListMainWindow::DeleteColumn( int col
)
3892 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3894 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
3897 m_columns
.DeleteNode( node
);
3900 void wxListMainWindow::DoDeleteAllItems()
3904 // nothing to do - in particular, don't send the event
3910 // to make the deletion of all items faster, we don't send the
3911 // notifications for each item deletion in this case but only one event
3912 // for all of them: this is compatible with wxMSW and documented in
3913 // DeleteAllItems() description
3915 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
3916 event
.SetEventObject( GetParent() );
3917 GetParent()->GetEventHandler()->ProcessEvent( event
);
3926 if ( InReportView() )
3928 ResetVisibleLinesRange();
3934 void wxListMainWindow::DeleteAllItems()
3938 RecalculatePositions();
3941 void wxListMainWindow::DeleteEverything()
3948 // ----------------------------------------------------------------------------
3949 // scanning for an item
3950 // ----------------------------------------------------------------------------
3952 void wxListMainWindow::EnsureVisible( long index
)
3954 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3955 _T("invalid index in EnsureVisible") );
3957 // We have to call this here because the label in question might just have
3958 // been added and its position is not known yet
3963 RecalculatePositions(TRUE
/* no refresh */);
3966 MoveToItem((size_t)index
);
3969 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
3976 size_t count
= GetItemCount();
3977 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
3979 wxListLineData
*line
= GetLine(i
);
3980 if ( line
->GetText(0) == tmp
)
3987 long wxListMainWindow::FindItem(long start
, long data
)
3993 size_t count
= GetItemCount();
3994 for (size_t i
= (size_t)pos
; i
< count
; i
++)
3996 wxListLineData
*line
= GetLine(i
);
3998 line
->GetItem( 0, item
);
3999 if (item
.m_data
== data
)
4006 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
4008 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4010 if ( HasFlag(wxLC_REPORT
) )
4012 size_t current
= y
/ GetLineHeight();
4013 flags
= HitTestLine(current
, x
, y
);
4019 // TODO: optimize it too! this is less simple than for report view but
4020 // enumerating all items is still not a way to do it!!
4021 size_t count
= GetItemCount();
4022 for ( size_t current
= 0; current
< count
; current
++ )
4024 flags
= HitTestLine(current
, x
, y
);
4033 // ----------------------------------------------------------------------------
4035 // ----------------------------------------------------------------------------
4037 void wxListMainWindow::InsertItem( wxListItem
&item
)
4039 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4041 size_t count
= GetItemCount();
4042 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
<= count
,
4043 _T("invalid item index") );
4045 size_t id
= item
.m_itemId
;
4050 if ( HasFlag(wxLC_REPORT
) )
4052 else if ( HasFlag(wxLC_LIST
) )
4054 else if ( HasFlag(wxLC_ICON
) )
4056 else if ( HasFlag(wxLC_SMALL_ICON
) )
4057 mode
= wxLC_ICON
; // no typo
4060 wxFAIL_MSG( _T("unknown mode") );
4063 wxListLineData
*line
= new wxListLineData(this);
4065 line
->SetItem( 0, item
);
4067 m_lines
.Insert( line
, id
);
4070 RefreshLines(id
, GetItemCount() - 1);
4073 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4076 if ( HasFlag(wxLC_REPORT
) )
4078 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4079 item
.m_width
= GetTextLength( item
.m_text
);
4080 wxListHeaderData
*column
= new wxListHeaderData( item
);
4081 if ((col
>= 0) && (col
< (int)m_columns
.GetCount()))
4083 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
4084 m_columns
.Insert( node
, column
);
4088 m_columns
.Append( column
);
4093 // ----------------------------------------------------------------------------
4095 // ----------------------------------------------------------------------------
4097 wxListCtrlCompare list_ctrl_compare_func_2
;
4098 long list_ctrl_compare_data
;
4100 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4102 wxListLineData
*line1
= *arg1
;
4103 wxListLineData
*line2
= *arg2
;
4105 line1
->GetItem( 0, item
);
4106 long data1
= item
.m_data
;
4107 line2
->GetItem( 0, item
);
4108 long data2
= item
.m_data
;
4109 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4112 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4114 list_ctrl_compare_func_2
= fn
;
4115 list_ctrl_compare_data
= data
;
4116 m_lines
.Sort( list_ctrl_compare_func_1
);
4120 // ----------------------------------------------------------------------------
4122 // ----------------------------------------------------------------------------
4124 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4126 // update our idea of which lines are shown when we redraw the window the
4128 ResetVisibleLinesRange();
4131 #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
4132 wxScrolledWindow::OnScroll(event
);
4134 HandleOnScroll( event
);
4137 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4139 wxListCtrl
* lc
= GetListCtrl();
4140 wxCHECK_RET( lc
, _T("no listctrl window?") );
4142 lc
->m_headerWin
->Refresh() ;
4144 lc
->m_headerWin
->MacUpdateImmediately() ;
4149 int wxListMainWindow::GetCountPerPage() const
4151 if ( !m_linesPerPage
)
4153 wxConstCast(this, wxListMainWindow
)->
4154 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4157 return m_linesPerPage
;
4160 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4162 wxASSERT_MSG( HasFlag(wxLC_REPORT
), _T("this is for report mode only") );
4164 if ( m_lineFrom
== (size_t)-1 )
4166 size_t count
= GetItemCount();
4169 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4171 // this may happen if SetScrollbars() hadn't been called yet
4172 if ( m_lineFrom
>= count
)
4173 m_lineFrom
= count
- 1;
4175 // we redraw one extra line but this is needed to make the redrawing
4176 // logic work when there is a fractional number of lines on screen
4177 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4178 if ( m_lineTo
>= count
)
4179 m_lineTo
= count
- 1;
4181 else // empty control
4184 m_lineTo
= (size_t)-1;
4188 wxASSERT_MSG( IsEmpty() ||
4189 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4190 _T("GetVisibleLinesRange() returns incorrect result") );
4198 // -------------------------------------------------------------------------------------
4200 // -------------------------------------------------------------------------------------
4202 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
4204 wxListItem::wxListItem()
4213 m_format
= wxLIST_FORMAT_CENTRE
;
4219 void wxListItem::Clear()
4228 m_format
= wxLIST_FORMAT_CENTRE
;
4235 void wxListItem::ClearAttributes()
4244 // -------------------------------------------------------------------------------------
4246 // -------------------------------------------------------------------------------------
4248 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
4250 wxListEvent::wxListEvent( wxEventType commandType
, int id
)
4251 : wxNotifyEvent( commandType
, id
)
4257 m_cancelled
= FALSE
;
4262 void wxListEvent::CopyObject(wxObject
& object_dest
) const
4264 wxListEvent
*obj
= (wxListEvent
*)&object_dest
;
4266 wxNotifyEvent::CopyObject(object_dest
);
4268 obj
->m_code
= m_code
;
4269 obj
->m_itemIndex
= m_itemIndex
;
4270 obj
->m_oldItemIndex
= m_oldItemIndex
;
4272 obj
->m_cancelled
= m_cancelled
;
4273 obj
->m_pointDrag
= m_pointDrag
;
4274 obj
->m_item
.m_mask
= m_item
.m_mask
;
4275 obj
->m_item
.m_itemId
= m_item
.m_itemId
;
4276 obj
->m_item
.m_col
= m_item
.m_col
;
4277 obj
->m_item
.m_state
= m_item
.m_state
;
4278 obj
->m_item
.m_stateMask
= m_item
.m_stateMask
;
4279 obj
->m_item
.m_text
= m_item
.m_text
;
4280 obj
->m_item
.m_image
= m_item
.m_image
;
4281 obj
->m_item
.m_data
= m_item
.m_data
;
4282 obj
->m_item
.m_format
= m_item
.m_format
;
4283 obj
->m_item
.m_width
= m_item
.m_width
;
4285 if ( m_item
.HasAttributes() )
4287 obj
->m_item
.SetTextColour(m_item
.GetTextColour());
4291 // -------------------------------------------------------------------------------------
4293 // -------------------------------------------------------------------------------------
4295 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
4296 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
4298 BEGIN_EVENT_TABLE(wxListCtrl
,wxControl
)
4299 EVT_SIZE(wxListCtrl::OnSize
)
4300 EVT_IDLE(wxListCtrl::OnIdle
)
4303 wxListCtrl::wxListCtrl()
4305 m_imageListNormal
= (wxImageList
*) NULL
;
4306 m_imageListSmall
= (wxImageList
*) NULL
;
4307 m_imageListState
= (wxImageList
*) NULL
;
4309 m_ownsImageListNormal
=
4310 m_ownsImageListSmall
=
4311 m_ownsImageListState
= FALSE
;
4313 m_mainWin
= (wxListMainWindow
*) NULL
;
4314 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4317 wxListCtrl::~wxListCtrl()
4320 m_mainWin
->ResetCurrent();
4322 if (m_ownsImageListNormal
)
4323 delete m_imageListNormal
;
4324 if (m_ownsImageListSmall
)
4325 delete m_imageListSmall
;
4326 if (m_ownsImageListState
)
4327 delete m_imageListState
;
4330 void wxListCtrl::CreateHeaderWindow()
4332 m_headerWin
= new wxListHeaderWindow
4334 this, -1, m_mainWin
,
4336 wxSize(GetClientSize().x
, HEADER_HEIGHT
),
4341 bool wxListCtrl::Create(wxWindow
*parent
,
4346 const wxValidator
&validator
,
4347 const wxString
&name
)
4351 m_imageListState
= (wxImageList
*) NULL
;
4352 m_ownsImageListNormal
=
4353 m_ownsImageListSmall
=
4354 m_ownsImageListState
= FALSE
;
4356 m_mainWin
= (wxListMainWindow
*) NULL
;
4357 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4359 if ( !(style
& wxLC_MASK_TYPE
) )
4361 style
= style
| wxLC_LIST
;
4364 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4367 // don't create the inner window with the border
4368 style
&= ~wxSUNKEN_BORDER
;
4370 m_mainWin
= new wxListMainWindow( this, -1, wxPoint(0,0), size
, style
);
4372 if ( HasFlag(wxLC_REPORT
) )
4374 CreateHeaderWindow();
4376 if ( HasFlag(wxLC_NO_HEADER
) )
4378 // VZ: why do we create it at all then?
4379 m_headerWin
->Show( FALSE
);
4386 void wxListCtrl::SetSingleStyle( long style
, bool add
)
4388 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4389 _T("wxLC_VIRTUAL can't be [un]set") );
4391 long flag
= GetWindowStyle();
4395 if (style
& wxLC_MASK_TYPE
)
4396 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4397 if (style
& wxLC_MASK_ALIGN
)
4398 flag
&= ~wxLC_MASK_ALIGN
;
4399 if (style
& wxLC_MASK_SORT
)
4400 flag
&= ~wxLC_MASK_SORT
;
4412 SetWindowStyleFlag( flag
);
4415 void wxListCtrl::SetWindowStyleFlag( long flag
)
4419 m_mainWin
->DeleteEverything();
4421 // has the header visibility changed?
4422 bool hasHeader
= HasFlag(wxLC_REPORT
) && !HasFlag(wxLC_NO_HEADER
),
4423 willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4425 if ( hasHeader
!= willHaveHeader
)
4432 // don't delete, just hide, as we can reuse it later
4433 m_headerWin
->Show(FALSE
);
4435 //else: nothing to do
4437 else // must show header
4441 CreateHeaderWindow();
4443 else // already have it, just show
4445 m_headerWin
->Show( TRUE
);
4449 ResizeReportView(willHaveHeader
);
4453 wxWindow::SetWindowStyleFlag( flag
);
4456 bool wxListCtrl::GetColumn(int col
, wxListItem
&item
) const
4458 m_mainWin
->GetColumn( col
, item
);
4462 bool wxListCtrl::SetColumn( int col
, wxListItem
& item
)
4464 m_mainWin
->SetColumn( col
, item
);
4468 int wxListCtrl::GetColumnWidth( int col
) const
4470 return m_mainWin
->GetColumnWidth( col
);
4473 bool wxListCtrl::SetColumnWidth( int col
, int width
)
4475 m_mainWin
->SetColumnWidth( col
, width
);
4479 int wxListCtrl::GetCountPerPage() const
4481 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4484 bool wxListCtrl::GetItem( wxListItem
&info
) const
4486 m_mainWin
->GetItem( info
);
4490 bool wxListCtrl::SetItem( wxListItem
&info
)
4492 m_mainWin
->SetItem( info
);
4496 long wxListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4499 info
.m_text
= label
;
4500 info
.m_mask
= wxLIST_MASK_TEXT
;
4501 info
.m_itemId
= index
;
4505 info
.m_image
= imageId
;
4506 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4508 m_mainWin
->SetItem(info
);
4512 int wxListCtrl::GetItemState( long item
, long stateMask
) const
4514 return m_mainWin
->GetItemState( item
, stateMask
);
4517 bool wxListCtrl::SetItemState( long item
, long state
, long stateMask
)
4519 m_mainWin
->SetItemState( item
, state
, stateMask
);
4523 bool wxListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4526 info
.m_image
= image
;
4527 info
.m_mask
= wxLIST_MASK_IMAGE
;
4528 info
.m_itemId
= item
;
4529 m_mainWin
->SetItem( info
);
4533 wxString
wxListCtrl::GetItemText( long item
) const
4536 info
.m_itemId
= item
;
4537 m_mainWin
->GetItem( info
);
4541 void wxListCtrl::SetItemText( long item
, const wxString
&str
)
4544 info
.m_mask
= wxLIST_MASK_TEXT
;
4545 info
.m_itemId
= item
;
4547 m_mainWin
->SetItem( info
);
4550 long wxListCtrl::GetItemData( long item
) const
4553 info
.m_itemId
= item
;
4554 m_mainWin
->GetItem( info
);
4558 bool wxListCtrl::SetItemData( long item
, long data
)
4561 info
.m_mask
= wxLIST_MASK_DATA
;
4562 info
.m_itemId
= item
;
4564 m_mainWin
->SetItem( info
);
4568 bool wxListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
4570 m_mainWin
->GetItemRect( item
, rect
);
4574 bool wxListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4576 m_mainWin
->GetItemPosition( item
, pos
);
4580 bool wxListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4585 int wxListCtrl::GetItemCount() const
4587 return m_mainWin
->GetItemCount();
4590 int wxListCtrl::GetColumnCount() const
4592 return m_mainWin
->GetColumnCount();
4595 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4597 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4600 int wxListCtrl::GetItemSpacing( bool isSmall
) const
4602 return m_mainWin
->GetItemSpacing( isSmall
);
4605 int wxListCtrl::GetSelectedItemCount() const
4607 return m_mainWin
->GetSelectedItemCount();
4610 wxColour
wxListCtrl::GetTextColour() const
4612 return GetForegroundColour();
4615 void wxListCtrl::SetTextColour(const wxColour
& col
)
4617 SetForegroundColour(col
);
4620 long wxListCtrl::GetTopItem() const
4625 long wxListCtrl::GetNextItem( long item
, int geom
, int state
) const
4627 return m_mainWin
->GetNextItem( item
, geom
, state
);
4630 wxImageList
*wxListCtrl::GetImageList(int which
) const
4632 if (which
== wxIMAGE_LIST_NORMAL
)
4634 return m_imageListNormal
;
4636 else if (which
== wxIMAGE_LIST_SMALL
)
4638 return m_imageListSmall
;
4640 else if (which
== wxIMAGE_LIST_STATE
)
4642 return m_imageListState
;
4644 return (wxImageList
*) NULL
;
4647 void wxListCtrl::SetImageList( wxImageList
*imageList
, int which
)
4649 if ( which
== wxIMAGE_LIST_NORMAL
)
4651 if (m_ownsImageListNormal
) delete m_imageListNormal
;
4652 m_imageListNormal
= imageList
;
4653 m_ownsImageListNormal
= FALSE
;
4655 else if ( which
== wxIMAGE_LIST_SMALL
)
4657 if (m_ownsImageListSmall
) delete m_imageListSmall
;
4658 m_imageListSmall
= imageList
;
4659 m_ownsImageListSmall
= FALSE
;
4661 else if ( which
== wxIMAGE_LIST_STATE
)
4663 if (m_ownsImageListState
) delete m_imageListState
;
4664 m_imageListState
= imageList
;
4665 m_ownsImageListState
= FALSE
;
4668 m_mainWin
->SetImageList( imageList
, which
);
4671 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
4673 SetImageList(imageList
, which
);
4674 if ( which
== wxIMAGE_LIST_NORMAL
)
4675 m_ownsImageListNormal
= TRUE
;
4676 else if ( which
== wxIMAGE_LIST_SMALL
)
4677 m_ownsImageListSmall
= TRUE
;
4678 else if ( which
== wxIMAGE_LIST_STATE
)
4679 m_ownsImageListState
= TRUE
;
4682 bool wxListCtrl::Arrange( int WXUNUSED(flag
) )
4687 bool wxListCtrl::DeleteItem( long item
)
4689 m_mainWin
->DeleteItem( item
);
4693 bool wxListCtrl::DeleteAllItems()
4695 m_mainWin
->DeleteAllItems();
4699 bool wxListCtrl::DeleteAllColumns()
4701 size_t count
= m_mainWin
->m_columns
.GetCount();
4702 for ( size_t n
= 0; n
< count
; n
++ )
4708 void wxListCtrl::ClearAll()
4710 m_mainWin
->DeleteEverything();
4713 bool wxListCtrl::DeleteColumn( int col
)
4715 m_mainWin
->DeleteColumn( col
);
4719 void wxListCtrl::Edit( long item
)
4721 m_mainWin
->EditLabel( item
);
4724 bool wxListCtrl::EnsureVisible( long item
)
4726 m_mainWin
->EnsureVisible( item
);
4730 long wxListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
4732 return m_mainWin
->FindItem( start
, str
, partial
);
4735 long wxListCtrl::FindItem( long start
, long data
)
4737 return m_mainWin
->FindItem( start
, data
);
4740 long wxListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& WXUNUSED(pt
),
4741 int WXUNUSED(direction
))
4746 long wxListCtrl::HitTest( const wxPoint
&point
, int &flags
)
4748 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
4751 long wxListCtrl::InsertItem( wxListItem
& info
)
4753 m_mainWin
->InsertItem( info
);
4754 return info
.m_itemId
;
4757 long wxListCtrl::InsertItem( long index
, const wxString
&label
)
4760 info
.m_text
= label
;
4761 info
.m_mask
= wxLIST_MASK_TEXT
;
4762 info
.m_itemId
= index
;
4763 return InsertItem( info
);
4766 long wxListCtrl::InsertItem( long index
, int imageIndex
)
4769 info
.m_mask
= wxLIST_MASK_IMAGE
;
4770 info
.m_image
= imageIndex
;
4771 info
.m_itemId
= index
;
4772 return InsertItem( info
);
4775 long wxListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
4778 info
.m_text
= label
;
4779 info
.m_image
= imageIndex
;
4780 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
4781 info
.m_itemId
= index
;
4782 return InsertItem( info
);
4785 long wxListCtrl::InsertColumn( long col
, wxListItem
&item
)
4787 wxASSERT( m_headerWin
);
4788 m_mainWin
->InsertColumn( col
, item
);
4789 m_headerWin
->Refresh();
4794 long wxListCtrl::InsertColumn( long col
, const wxString
&heading
,
4795 int format
, int width
)
4798 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
4799 item
.m_text
= heading
;
4802 item
.m_mask
|= wxLIST_MASK_WIDTH
;
4803 item
.m_width
= width
;
4805 item
.m_format
= format
;
4807 return InsertColumn( col
, item
);
4810 bool wxListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
4816 // fn is a function which takes 3 long arguments: item1, item2, data.
4817 // item1 is the long data associated with a first item (NOT the index).
4818 // item2 is the long data associated with a second item (NOT the index).
4819 // data is the same value as passed to SortItems.
4820 // The return value is a negative number if the first item should precede the second
4821 // item, a positive number of the second item should precede the first,
4822 // or zero if the two items are equivalent.
4823 // data is arbitrary data to be passed to the sort function.
4825 bool wxListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
4827 m_mainWin
->SortItems( fn
, data
);
4831 // ----------------------------------------------------------------------------
4833 // ----------------------------------------------------------------------------
4835 void wxListCtrl::OnSize(wxSizeEvent
& event
)
4840 ResizeReportView(m_mainWin
->HasHeader());
4842 m_mainWin
->RecalculatePositions();
4845 void wxListCtrl::ResizeReportView(bool showHeader
)
4848 GetClientSize( &cw
, &ch
);
4852 m_headerWin
->SetSize( 0, 0, cw
, HEADER_HEIGHT
);
4853 m_mainWin
->SetSize( 0, HEADER_HEIGHT
+ 1, cw
, ch
- HEADER_HEIGHT
- 1 );
4855 else // no header window
4857 m_mainWin
->SetSize( 0, 0, cw
, ch
);
4861 void wxListCtrl::OnIdle( wxIdleEvent
& event
)
4865 // do it only if needed
4866 if ( !m_mainWin
->m_dirty
)
4869 m_mainWin
->RecalculatePositions();
4872 // ----------------------------------------------------------------------------
4874 // ----------------------------------------------------------------------------
4876 bool wxListCtrl::SetBackgroundColour( const wxColour
&colour
)
4880 m_mainWin
->SetBackgroundColour( colour
);
4881 m_mainWin
->m_dirty
= TRUE
;
4887 bool wxListCtrl::SetForegroundColour( const wxColour
&colour
)
4889 if ( !wxWindow::SetForegroundColour( colour
) )
4894 m_mainWin
->SetForegroundColour( colour
);
4895 m_mainWin
->m_dirty
= TRUE
;
4900 m_headerWin
->SetForegroundColour( colour
);
4906 bool wxListCtrl::SetFont( const wxFont
&font
)
4908 if ( !wxWindow::SetFont( font
) )
4913 m_mainWin
->SetFont( font
);
4914 m_mainWin
->m_dirty
= TRUE
;
4919 m_headerWin
->SetFont( font
);
4925 // ----------------------------------------------------------------------------
4926 // methods forwarded to m_mainWin
4927 // ----------------------------------------------------------------------------
4929 #if wxUSE_DRAG_AND_DROP
4931 void wxListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
4933 m_mainWin
->SetDropTarget( dropTarget
);
4936 wxDropTarget
*wxListCtrl::GetDropTarget() const
4938 return m_mainWin
->GetDropTarget();
4941 #endif // wxUSE_DRAG_AND_DROP
4943 bool wxListCtrl::SetCursor( const wxCursor
&cursor
)
4945 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : FALSE
;
4948 wxColour
wxListCtrl::GetBackgroundColour() const
4950 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
4953 wxColour
wxListCtrl::GetForegroundColour() const
4955 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
4958 bool wxListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
4961 return m_mainWin
->PopupMenu( menu
, x
, y
);
4964 #endif // wxUSE_MENUS
4967 void wxListCtrl::SetFocus()
4969 /* The test in window.cpp fails as we are a composite
4970 window, so it checks against "this", but not m_mainWin. */
4971 if ( FindFocus() != this )
4972 m_mainWin
->SetFocus();
4975 // ----------------------------------------------------------------------------
4976 // virtual list control support
4977 // ----------------------------------------------------------------------------
4979 wxString
wxListCtrl::OnGetItemText(long item
, long col
) const
4981 // this is a pure virtual function, in fact - which is not really pure
4982 // because the controls which are not virtual don't need to implement it
4983 wxFAIL_MSG( _T("not supposed to be called") );
4985 return wxEmptyString
;
4988 int wxListCtrl::OnGetItemImage(long item
) const
4991 wxFAIL_MSG( _T("not supposed to be called") );
4996 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long item
) const
4998 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
4999 _T("invalid item index in OnGetItemAttr()") );
5001 // no attributes by default
5005 void wxListCtrl::SetItemCount(long count
)
5007 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5009 m_mainWin
->SetItemCount(count
);
5012 void wxListCtrl::RefreshItem(long item
)
5014 m_mainWin
->RefreshLine(item
);
5017 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5019 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5022 #endif // wxUSE_LISTCTRL