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 size_t visibleFrom
, visibleTo
;
2421 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2423 if ( line
< visibleFrom
|| line
> visibleTo
)
2426 wxRect rect
= GetLineRect(line
);
2428 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2429 RefreshRect( rect
);
2432 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2434 // we suppose that they are ordered by caller
2435 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2437 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2439 if ( HasFlag(wxLC_REPORT
) )
2441 size_t visibleFrom
, visibleTo
;
2442 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2444 if ( lineFrom
< visibleFrom
)
2445 lineFrom
= visibleFrom
;
2446 if ( lineTo
> visibleTo
)
2451 rect
.y
= GetLineY(lineFrom
);
2452 rect
.width
= GetClientSize().x
;
2453 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2455 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2456 RefreshRect( rect
);
2460 // TODO: this should be optimized...
2461 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2468 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2470 if ( HasFlag(wxLC_REPORT
) )
2473 GetVisibleLinesRange(&visibleFrom
, NULL
);
2475 if ( lineFrom
< visibleFrom
)
2476 lineFrom
= visibleFrom
;
2480 rect
.y
= GetLineY(lineFrom
);
2482 wxSize size
= GetClientSize();
2483 rect
.width
= size
.x
;
2484 // refresh till the bottom of the window
2485 rect
.height
= size
.y
- rect
.y
;
2487 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2488 RefreshRect( rect
);
2492 // TODO: how to do it more efficiently?
2497 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2499 // Note: a wxPaintDC must be constructed even if no drawing is
2500 // done (a Windows requirement).
2501 wxPaintDC
dc( this );
2505 // empty control. nothing to draw
2511 // delay the repainting until we calculate all the items positions
2518 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2522 dc
.SetFont( GetFont() );
2524 if ( HasFlag(wxLC_REPORT
) )
2526 int lineHeight
= GetLineHeight();
2528 size_t visibleFrom
, visibleTo
;
2529 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2532 wxCoord xOrig
, yOrig
;
2533 CalcUnscrolledPosition(0, 0, &xOrig
, &yOrig
);
2535 // tell the caller cache to cache the data
2538 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2539 GetParent()->GetId());
2540 evCache
.SetEventObject( GetParent() );
2541 evCache
.m_oldItemIndex
= visibleFrom
;
2542 evCache
.m_itemIndex
= visibleTo
;
2543 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2546 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2548 rectLine
= GetLineRect(line
);
2550 if ( !IsExposed(rectLine
.x
- xOrig
, rectLine
.y
- yOrig
,
2551 rectLine
.width
, rectLine
.height
) )
2553 // don't redraw unaffected lines to avoid flicker
2557 GetLine(line
)->DrawInReportMode( &dc
,
2559 GetLineHighlightRect(line
),
2560 m_hasFocus
&& IsHighlighted(line
) );
2563 if ( HasFlag(wxLC_HRULES
) )
2565 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2566 wxSize clientSize
= GetClientSize();
2568 for ( size_t i
= visibleFrom
; i
<= visibleTo
; i
++ )
2571 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2572 dc
.DrawLine(0 - dev_x
, i
*lineHeight
,
2573 clientSize
.x
- dev_x
, i
*lineHeight
);
2576 // Draw last horizontal rule
2577 if ( visibleTo
> visibleFrom
)
2580 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2581 dc
.DrawLine(0 - dev_x
, m_lineTo
*lineHeight
,
2582 clientSize
.x
- dev_x
, m_lineTo
*lineHeight
);
2586 // Draw vertical rules if required
2587 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2589 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2592 wxRect firstItemRect
;
2593 wxRect lastItemRect
;
2594 GetItemRect(0, firstItemRect
);
2595 GetItemRect(GetItemCount() - 1, lastItemRect
);
2596 int x
= firstItemRect
.GetX();
2598 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2599 for (col
= 0; col
< GetColumnCount(); col
++)
2601 int colWidth
= GetColumnWidth(col
);
2603 dc
.DrawLine(x
- dev_x
, firstItemRect
.GetY() - 1 - dev_y
,
2604 x
- dev_x
, lastItemRect
.GetBottom() + 1 - dev_y
);
2610 size_t count
= GetItemCount();
2611 for ( size_t i
= 0; i
< count
; i
++ )
2613 GetLine(i
)->Draw( &dc
);
2619 // don't draw rect outline under Max if we already have the background
2623 #endif // !__WXMAC__
2625 dc
.SetPen( *wxBLACK_PEN
);
2626 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2627 dc
.DrawRectangle( GetLineHighlightRect(m_current
) );
2634 void wxListMainWindow::HighlightAll( bool on
)
2636 if ( IsSingleSel() )
2638 wxASSERT_MSG( !on
, _T("can't do this in a single sel control") );
2640 // we just have one item to turn off
2641 if ( HasCurrent() && IsHighlighted(m_current
) )
2643 HighlightLine(m_current
, FALSE
);
2644 RefreshLine(m_current
);
2649 HighlightLines(0, GetItemCount() - 1, on
);
2653 void wxListMainWindow::SendNotify( size_t line
,
2654 wxEventType command
,
2657 wxListEvent
le( command
, GetParent()->GetId() );
2658 le
.SetEventObject( GetParent() );
2659 le
.m_itemIndex
= line
;
2661 // set only for events which have position
2662 if ( point
!= wxDefaultPosition
)
2663 le
.m_pointDrag
= point
;
2665 // don't try to get the line info for virtual list controls: the main
2666 // program has it anyhow and if we did it would result in accessing all
2667 // the lines, even those which are not visible now and this is precisely
2668 // what we're trying to avoid
2669 if ( !IsVirtual() && (command
!= wxEVT_COMMAND_LIST_DELETE_ITEM
) )
2671 GetLine(line
)->GetItem( 0, le
.m_item
);
2673 //else: there may be no more such item
2675 GetParent()->GetEventHandler()->ProcessEvent( le
);
2678 void wxListMainWindow::OnFocusLine( size_t WXUNUSED(line
) )
2680 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED );
2683 void wxListMainWindow::OnUnfocusLine( size_t WXUNUSED(line
) )
2685 // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED );
2688 void wxListMainWindow::EditLabel( long item
)
2690 wxCHECK_RET( (item
>= 0) && ((size_t)item
< GetItemCount()),
2691 wxT("wrong index in wxListCtrl::EditLabel()") );
2693 m_currentEdit
= (size_t)item
;
2695 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2696 le
.SetEventObject( GetParent() );
2697 le
.m_itemIndex
= item
;
2698 wxListLineData
*data
= GetLine(m_currentEdit
);
2699 wxCHECK_RET( data
, _T("invalid index in EditLabel()") );
2700 data
->GetItem( 0, le
.m_item
);
2701 GetParent()->GetEventHandler()->ProcessEvent( le
);
2703 if (!le
.IsAllowed())
2706 // We have to call this here because the label in question might just have
2707 // been added and no screen update taken place.
2711 wxClientDC
dc(this);
2714 wxString s
= data
->GetText(0);
2715 wxRect rectLabel
= GetLineLabelRect(m_currentEdit
);
2717 rectLabel
.x
= dc
.LogicalToDeviceX( rectLabel
.x
);
2718 rectLabel
.y
= dc
.LogicalToDeviceY( rectLabel
.y
);
2720 wxListTextCtrl
*text
= new wxListTextCtrl
2727 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2728 wxSize(rectLabel
.width
+11,rectLabel
.height
+8)
2733 void wxListMainWindow::OnRenameTimer()
2735 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2737 EditLabel( m_current
);
2740 void wxListMainWindow::OnRenameAccept()
2742 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2743 le
.SetEventObject( GetParent() );
2744 le
.m_itemIndex
= m_currentEdit
;
2746 wxListLineData
*data
= GetLine(m_currentEdit
);
2747 wxCHECK_RET( data
, _T("invalid index in OnRenameAccept()") );
2749 data
->GetItem( 0, le
.m_item
);
2750 le
.m_item
.m_text
= m_renameRes
;
2751 GetParent()->GetEventHandler()->ProcessEvent( le
);
2753 if (!le
.IsAllowed()) return;
2756 info
.m_mask
= wxLIST_MASK_TEXT
;
2757 info
.m_itemId
= le
.m_itemIndex
;
2758 info
.m_text
= m_renameRes
;
2759 info
.SetTextColour(le
.m_item
.GetTextColour());
2763 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2765 event
.SetEventObject( GetParent() );
2766 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2769 if ( !HasCurrent() || IsEmpty() )
2775 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2776 event
.ButtonDClick()) )
2779 int x
= event
.GetX();
2780 int y
= event
.GetY();
2781 CalcUnscrolledPosition( x
, y
, &x
, &y
);
2783 // where did we hit it (if we did)?
2786 size_t count
= GetItemCount(),
2789 if ( HasFlag(wxLC_REPORT
) )
2791 current
= y
/ GetLineHeight();
2792 if ( current
< count
)
2793 hitResult
= HitTestLine(current
, x
, y
);
2797 // TODO: optimize it too! this is less simple than for report view but
2798 // enumerating all items is still not a way to do it!!
2799 for ( current
= 0; current
< count
; current
++ )
2801 hitResult
= HitTestLine(current
, x
, y
);
2807 if (event
.Dragging())
2809 if (m_dragCount
== 0)
2810 m_dragStart
= wxPoint(x
,y
);
2814 if (m_dragCount
!= 3)
2817 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2818 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2820 wxListEvent
le( command
, GetParent()->GetId() );
2821 le
.SetEventObject( GetParent() );
2822 le
.m_pointDrag
= m_dragStart
;
2823 GetParent()->GetEventHandler()->ProcessEvent( le
);
2834 // outside of any item
2838 bool forceClick
= FALSE
;
2839 if (event
.ButtonDClick())
2841 m_renameTimer
->Stop();
2842 m_lastOnSame
= FALSE
;
2844 if ( current
== m_lineBeforeLastClicked
)
2846 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2852 // the first click was on another item, so don't interpret this as
2853 // a double click, but as a simple click instead
2858 if (event
.LeftUp() && m_lastOnSame
)
2860 if ((current
== m_current
) &&
2861 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2862 HasFlag(wxLC_EDIT_LABELS
) )
2864 m_renameTimer
->Start( 100, TRUE
);
2866 m_lastOnSame
= FALSE
;
2868 else if (event
.RightDown())
2870 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
,
2871 event
.GetPosition() );
2873 else if (event
.MiddleDown())
2875 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
2877 else if ( event
.LeftDown() || forceClick
)
2879 m_lineBeforeLastClicked
= m_lineLastClicked
;
2880 m_lineLastClicked
= current
;
2882 size_t oldCurrent
= m_current
;
2884 if ( IsSingleSel() || !(event
.ControlDown() || event
.ShiftDown()) )
2886 HighlightAll( FALSE
);
2887 m_current
= current
;
2889 ReverseHighlight(m_current
);
2891 else // multi sel & either ctrl or shift is down
2893 if (event
.ControlDown())
2895 m_current
= current
;
2897 ReverseHighlight(m_current
);
2899 else if (event
.ShiftDown())
2901 m_current
= current
;
2903 size_t lineFrom
= oldCurrent
,
2906 if ( lineTo
< lineFrom
)
2909 lineFrom
= m_current
;
2912 HighlightLines(lineFrom
, lineTo
);
2914 else // !ctrl, !shift
2916 // test in the enclosing if should make it impossible
2917 wxFAIL_MSG( _T("how did we get here?") );
2921 if (m_current
!= oldCurrent
)
2923 RefreshLine( oldCurrent
);
2924 OnUnfocusLine( oldCurrent
);
2925 OnFocusLine( m_current
);
2928 // forceClick is only set if the previous click was on another item
2929 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
);
2933 void wxListMainWindow::MoveToItem(size_t item
)
2935 if ( item
== (size_t)-1 )
2938 wxRect rect
= GetLineRect(item
);
2940 int client_w
, client_h
;
2941 GetClientSize( &client_w
, &client_h
);
2943 int view_x
= m_xScroll
*GetScrollPos( wxHORIZONTAL
);
2944 int view_y
= m_yScroll
*GetScrollPos( wxVERTICAL
);
2946 if ( HasFlag(wxLC_REPORT
) )
2948 // the next we need the range of lines shown it might be different, so
2950 ResetVisibleLinesRange();
2952 if (rect
.y
< view_y
)
2953 Scroll( -1, rect
.y
/m_yScroll
);
2954 if (rect
.y
+rect
.height
+5 > view_y
+client_h
)
2955 Scroll( -1, (rect
.y
+rect
.height
-client_h
+SCROLL_UNIT_Y
)/m_yScroll
);
2959 if (rect
.x
-view_x
< 5)
2960 Scroll( (rect
.x
-5)/m_xScroll
, -1 );
2961 if (rect
.x
+rect
.width
-5 > view_x
+client_w
)
2962 Scroll( (rect
.x
+rect
.width
-client_w
+SCROLL_UNIT_X
)/m_xScroll
, -1 );
2966 // ----------------------------------------------------------------------------
2967 // keyboard handling
2968 // ----------------------------------------------------------------------------
2970 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
2972 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
2973 _T("invalid item index in OnArrowChar()") );
2975 size_t oldCurrent
= m_current
;
2977 // in single selection we just ignore Shift as we can't select several
2979 if ( event
.ShiftDown() && !IsSingleSel() )
2981 m_current
= newCurrent
;
2983 // select all the items between the old and the new one
2984 if ( oldCurrent
> newCurrent
)
2986 newCurrent
= oldCurrent
;
2987 oldCurrent
= m_current
;
2990 HighlightLines(oldCurrent
, newCurrent
);
2994 // all previously selected items are unselected unless ctrl is held
2995 if ( !event
.ControlDown() )
2996 HighlightAll(FALSE
);
2998 m_current
= newCurrent
;
3000 HighlightLine( oldCurrent
, FALSE
);
3001 RefreshLine( oldCurrent
);
3003 if ( !event
.ControlDown() )
3005 HighlightLine( m_current
, TRUE
);
3009 OnUnfocusLine( oldCurrent
);
3010 OnFocusLine( m_current
);
3011 RefreshLine( m_current
);
3016 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3018 wxWindow
*parent
= GetParent();
3020 /* we propagate the key event up */
3021 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3022 ke
.m_shiftDown
= event
.m_shiftDown
;
3023 ke
.m_controlDown
= event
.m_controlDown
;
3024 ke
.m_altDown
= event
.m_altDown
;
3025 ke
.m_metaDown
= event
.m_metaDown
;
3026 ke
.m_keyCode
= event
.m_keyCode
;
3029 ke
.SetEventObject( parent
);
3030 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3035 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3037 wxWindow
*parent
= GetParent();
3039 /* we send a list_key event up */
3042 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3043 le
.m_itemIndex
= m_current
;
3044 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3045 le
.m_code
= (int)event
.KeyCode();
3046 le
.SetEventObject( parent
);
3047 parent
->GetEventHandler()->ProcessEvent( le
);
3050 /* we propagate the char event up */
3051 wxKeyEvent
ke( wxEVT_CHAR
);
3052 ke
.m_shiftDown
= event
.m_shiftDown
;
3053 ke
.m_controlDown
= event
.m_controlDown
;
3054 ke
.m_altDown
= event
.m_altDown
;
3055 ke
.m_metaDown
= event
.m_metaDown
;
3056 ke
.m_keyCode
= event
.m_keyCode
;
3059 ke
.SetEventObject( parent
);
3060 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3062 if (event
.KeyCode() == WXK_TAB
)
3064 wxNavigationKeyEvent nevent
;
3065 nevent
.SetWindowChange( event
.ControlDown() );
3066 nevent
.SetDirection( !event
.ShiftDown() );
3067 nevent
.SetEventObject( GetParent()->GetParent() );
3068 nevent
.SetCurrentFocus( m_parent
);
3069 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
)) return;
3072 /* no item -> nothing to do */
3079 switch (event
.KeyCode())
3082 if ( m_current
> 0 )
3083 OnArrowChar( m_current
- 1, event
);
3087 if ( m_current
< (size_t)GetItemCount() - 1 )
3088 OnArrowChar( m_current
+ 1, event
);
3093 OnArrowChar( GetItemCount() - 1, event
);
3098 OnArrowChar( 0, event
);
3104 if ( HasFlag(wxLC_REPORT
) )
3106 steps
= m_linesPerPage
- 1;
3110 steps
= m_current
% m_linesPerPage
;
3113 int index
= m_current
- steps
;
3117 OnArrowChar( index
, event
);
3124 if ( HasFlag(wxLC_REPORT
) )
3126 steps
= m_linesPerPage
- 1;
3130 steps
= m_linesPerPage
- (m_current
% m_linesPerPage
) - 1;
3133 size_t index
= m_current
+ steps
;
3134 size_t count
= GetItemCount();
3135 if ( index
>= count
)
3138 OnArrowChar( index
, event
);
3143 if ( !HasFlag(wxLC_REPORT
) )
3145 int index
= m_current
- m_linesPerPage
;
3149 OnArrowChar( index
, event
);
3154 if ( !HasFlag(wxLC_REPORT
) )
3156 size_t index
= m_current
+ m_linesPerPage
;
3158 size_t count
= GetItemCount();
3159 if ( index
>= count
)
3162 OnArrowChar( index
, event
);
3167 if ( IsSingleSel() )
3169 wxListEvent
le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
,
3170 GetParent()->GetId() );
3171 le
.SetEventObject( GetParent() );
3172 le
.m_itemIndex
= m_current
;
3173 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3174 GetParent()->GetEventHandler()->ProcessEvent( le
);
3178 ReverseHighlight(m_current
);
3185 wxListEvent
le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
,
3186 GetParent()->GetId() );
3187 le
.SetEventObject( GetParent() );
3188 le
.m_itemIndex
= m_current
;
3189 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3190 GetParent()->GetEventHandler()->ProcessEvent( le
);
3199 // ----------------------------------------------------------------------------
3201 // ----------------------------------------------------------------------------
3204 extern wxWindow
*g_focusWindow
;
3207 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3212 RefreshLine( m_current
);
3218 g_focusWindow
= GetParent();
3221 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3222 event
.SetEventObject( GetParent() );
3223 GetParent()->GetEventHandler()->ProcessEvent( event
);
3226 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3231 RefreshLine( m_current
);
3234 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3236 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3238 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3240 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3242 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3244 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3246 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3248 else if ( HasFlag(wxLC_REPORT
) && (m_small_image_list
))
3250 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3254 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3256 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3258 m_normal_image_list
->GetSize( index
, width
, height
);
3260 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3262 m_small_image_list
->GetSize( index
, width
, height
);
3264 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3266 m_small_image_list
->GetSize( index
, width
, height
);
3268 else if ( HasFlag(wxLC_REPORT
) && m_small_image_list
)
3270 m_small_image_list
->GetSize( index
, width
, height
);
3279 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3281 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3282 dc
.SetFont( GetFont() );
3285 dc
.GetTextExtent( s
, &lw
, NULL
);
3287 return lw
+ AUTOSIZE_COL_MARGIN
;
3290 void wxListMainWindow::SetImageList( wxImageList
*imageList
, int which
)
3294 // calc the spacing from the icon size
3297 if ((imageList
) && (imageList
->GetImageCount()) )
3299 imageList
->GetSize(0, width
, height
);
3302 if (which
== wxIMAGE_LIST_NORMAL
)
3304 m_normal_image_list
= imageList
;
3305 m_normal_spacing
= width
+ 8;
3308 if (which
== wxIMAGE_LIST_SMALL
)
3310 m_small_image_list
= imageList
;
3311 m_small_spacing
= width
+ 14;
3315 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3320 m_small_spacing
= spacing
;
3324 m_normal_spacing
= spacing
;
3328 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3330 return isSmall
? m_small_spacing
: m_normal_spacing
;
3333 // ----------------------------------------------------------------------------
3335 // ----------------------------------------------------------------------------
3337 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3339 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3341 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3343 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3344 item
.m_width
= GetTextLength( item
.m_text
);
3346 wxListHeaderData
*column
= node
->GetData();
3347 column
->SetItem( item
);
3349 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3351 headerWin
->m_dirty
= TRUE
;
3355 // invalidate it as it has to be recalculated
3359 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3361 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3362 _T("invalid column index") );
3364 wxCHECK_RET( HasFlag(wxLC_REPORT
),
3365 _T("SetColumnWidth() can only be called in report mode.") );
3369 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3370 wxCHECK_RET( node
, _T("no column?") );
3372 wxListHeaderData
*column
= node
->GetData();
3374 size_t count
= GetItemCount();
3376 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3378 width
= GetTextLength(column
->GetText());
3380 else if ( width
== wxLIST_AUTOSIZE
)
3384 // TODO: determine the max width somehow...
3385 width
= WIDTH_COL_DEFAULT
;
3389 wxClientDC
dc(this);
3390 dc
.SetFont( GetFont() );
3392 int max
= AUTOSIZE_COL_MARGIN
;
3394 for ( size_t i
= 0; i
< count
; i
++ )
3396 wxListLineData
*line
= GetLine(i
);
3397 wxListItemDataList::Node
*n
= line
->m_items
.Item( col
);
3399 wxCHECK_RET( n
, _T("no subitem?") );
3401 wxListItemData
*item
= n
->GetData();
3404 if (item
->HasImage())
3407 GetImageSize( item
->GetImage(), ix
, iy
);
3411 if (item
->HasText())
3414 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
3422 width
= max
+ AUTOSIZE_COL_MARGIN
;
3426 column
->SetWidth( width
);
3428 // invalidate it as it has to be recalculated
3432 int wxListMainWindow::GetHeaderWidth() const
3434 if ( !m_headerWidth
)
3436 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3438 size_t count
= GetColumnCount();
3439 for ( size_t col
= 0; col
< count
; col
++ )
3441 self
->m_headerWidth
+= GetColumnWidth(col
);
3445 return m_headerWidth
;
3448 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3450 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3451 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3453 wxListHeaderData
*column
= node
->GetData();
3454 column
->GetItem( item
);
3457 int wxListMainWindow::GetColumnWidth( int col
) const
3459 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3460 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3462 wxListHeaderData
*column
= node
->GetData();
3463 return column
->GetWidth();
3466 // ----------------------------------------------------------------------------
3468 // ----------------------------------------------------------------------------
3470 void wxListMainWindow::SetItem( wxListItem
&item
)
3472 long id
= item
.m_itemId
;
3473 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3474 _T("invalid item index in SetItem") );
3478 wxListLineData
*line
= GetLine((size_t)id
);
3479 line
->SetItem( item
.m_col
, item
);
3482 if ( InReportView() )
3484 // just refresh the line to show the new value of the text/image
3485 RefreshLine((size_t)id
);
3489 // refresh everything (resulting in horrible flicker - FIXME!)
3494 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3496 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3497 _T("invalid list ctrl item index in SetItem") );
3499 size_t oldCurrent
= m_current
;
3500 size_t item
= (size_t)litem
; // safe because of the check above
3502 // do we need to change the focus?
3503 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3505 if ( state
& wxLIST_STATE_FOCUSED
)
3507 // don't do anything if this item is already focused
3508 if ( item
!= m_current
)
3510 OnUnfocusLine( m_current
);
3512 OnFocusLine( m_current
);
3514 if ( oldCurrent
!= (size_t)-1 )
3516 if ( IsSingleSel() )
3518 HighlightLine(oldCurrent
, FALSE
);
3521 RefreshLine(oldCurrent
);
3524 RefreshLine( m_current
);
3529 // don't do anything if this item is not focused
3530 if ( item
== m_current
)
3532 OnUnfocusLine( m_current
);
3533 m_current
= (size_t)-1;
3535 RefreshLine( oldCurrent
);
3540 // do we need to change the selection state?
3541 if ( stateMask
& wxLIST_STATE_SELECTED
)
3543 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3545 if ( IsSingleSel() )
3549 // selecting the item also makes it the focused one in the
3551 if ( m_current
!= item
)
3553 OnUnfocusLine( m_current
);
3555 OnFocusLine( m_current
);
3557 if ( oldCurrent
!= (size_t)-1 )
3559 HighlightLine( oldCurrent
, FALSE
);
3560 RefreshLine( oldCurrent
);
3566 // only the current item may be selected anyhow
3567 if ( item
!= m_current
)
3572 if ( HighlightLine(item
, on
) )
3579 int wxListMainWindow::GetItemState( long item
, long stateMask
)
3581 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3582 _T("invalid list ctrl item index in GetItemState()") );
3584 int ret
= wxLIST_STATE_DONTCARE
;
3586 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3588 if ( (size_t)item
== m_current
)
3589 ret
|= wxLIST_STATE_FOCUSED
;
3592 if ( stateMask
& wxLIST_STATE_SELECTED
)
3594 if ( IsHighlighted(item
) )
3595 ret
|= wxLIST_STATE_SELECTED
;
3601 void wxListMainWindow::GetItem( wxListItem
&item
)
3603 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3604 _T("invalid item index in GetItem") );
3606 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3607 line
->GetItem( item
.m_col
, item
);
3610 // ----------------------------------------------------------------------------
3612 // ----------------------------------------------------------------------------
3614 size_t wxListMainWindow::GetItemCount() const
3616 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3619 void wxListMainWindow::SetItemCount(long count
)
3621 m_selStore
.SetItemCount(count
);
3622 m_countVirt
= count
;
3624 ResetVisibleLinesRange();
3626 // scrollbars must be reset
3630 int wxListMainWindow::GetSelectedItemCount()
3632 // deal with the quick case first
3633 if ( IsSingleSel() )
3635 return HasCurrent() ? IsHighlighted(m_current
) : FALSE
;
3638 // virtual controls remmebers all its selections itself
3640 return m_selStore
.GetSelectedCount();
3642 // TODO: we probably should maintain the number of items selected even for
3643 // non virtual controls as enumerating all lines is really slow...
3644 size_t countSel
= 0;
3645 size_t count
= GetItemCount();
3646 for ( size_t line
= 0; line
< count
; line
++ )
3648 if ( GetLine(line
)->IsHighlighted() )
3655 // ----------------------------------------------------------------------------
3656 // item position/size
3657 // ----------------------------------------------------------------------------
3659 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
)
3661 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3662 _T("invalid index in GetItemRect") );
3664 rect
= GetLineRect((size_t)index
);
3666 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3669 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
)
3672 GetItemRect(item
, rect
);
3680 // ----------------------------------------------------------------------------
3681 // geometry calculation
3682 // ----------------------------------------------------------------------------
3684 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3686 wxClientDC
dc( this );
3687 dc
.SetFont( GetFont() );
3690 if ( HasFlag(wxLC_ICON
) )
3691 iconSpacing
= m_normal_spacing
;
3692 else if ( HasFlag(wxLC_SMALL_ICON
) )
3693 iconSpacing
= m_small_spacing
;
3699 GetClientSize( &clientWidth
, &clientHeight
);
3701 if ( HasFlag(wxLC_REPORT
) )
3703 // all lines have the same height
3704 int lineHeight
= GetLineHeight();
3706 // scroll one line per step
3707 m_yScroll
= lineHeight
;
3709 size_t lineCount
= GetItemCount();
3710 int entireHeight
= lineCount
*lineHeight
+ LINE_SPACING
;
3712 m_linesPerPage
= clientHeight
/ lineHeight
;
3714 ResetVisibleLinesRange();
3716 SetScrollbars( m_xScroll
, m_yScroll
,
3717 (GetHeaderWidth() + m_xScroll
- 1)/m_xScroll
,
3718 (entireHeight
+ m_yScroll
- 1)/m_yScroll
,
3719 GetScrollPos(wxHORIZONTAL
),
3720 GetScrollPos(wxVERTICAL
),
3725 // at first we try without any scrollbar. if the items don't
3726 // fit into the window, we recalculate after subtracting an
3727 // approximated 15 pt for the horizontal scrollbar
3729 clientHeight
-= 4; // sunken frame
3731 int entireWidth
= 0;
3733 for (int tries
= 0; tries
< 2; tries
++)
3740 int currentlyVisibleLines
= 0;
3742 size_t count
= GetItemCount();
3743 for (size_t i
= 0; i
< count
; i
++)
3745 currentlyVisibleLines
++;
3746 wxListLineData
*line
= GetLine(i
);
3747 line
->CalculateSize( &dc
, iconSpacing
);
3748 line
->SetPosition( x
, y
, clientWidth
, iconSpacing
);
3750 wxSize sizeLine
= GetLineSize(i
);
3752 if ( maxWidth
< sizeLine
.x
)
3753 maxWidth
= sizeLine
.x
;
3756 if (currentlyVisibleLines
> m_linesPerPage
)
3757 m_linesPerPage
= currentlyVisibleLines
;
3759 // assume that the size of the next one is the same... (FIXME)
3760 if ( y
+ sizeLine
.y
- 6 >= clientHeight
)
3762 currentlyVisibleLines
= 0;
3765 entireWidth
+= maxWidth
+6;
3768 if ( i
== count
- 1 )
3769 entireWidth
+= maxWidth
;
3770 if ((tries
== 0) && (entireWidth
> clientWidth
))
3772 clientHeight
-= 15; // scrollbar height
3774 currentlyVisibleLines
= 0;
3777 if ( i
== count
- 1 )
3778 tries
= 1; // everything fits, no second try required
3782 int scroll_pos
= GetScrollPos( wxHORIZONTAL
);
3783 SetScrollbars( m_xScroll
, m_yScroll
, (entireWidth
+SCROLL_UNIT_X
) / m_xScroll
, 0, scroll_pos
, 0, TRUE
);
3788 // FIXME: why should we call it from here?
3795 void wxListMainWindow::RefreshAll()
3800 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3803 headerWin
->m_dirty
= FALSE
;
3804 headerWin
->Refresh();
3808 void wxListMainWindow::UpdateCurrent()
3810 if ( !HasCurrent() && !IsEmpty() )
3815 if ( m_current
!= (size_t)-1 )
3817 OnFocusLine( m_current
);
3821 long wxListMainWindow::GetNextItem( long item
,
3822 int WXUNUSED(geometry
),
3826 max
= GetItemCount();
3827 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
3828 _T("invalid listctrl index in GetNextItem()") );
3830 // notice that we start with the next item (or the first one if item == -1)
3831 // and this is intentional to allow writing a simple loop to iterate over
3832 // all selected items
3836 // this is not an error because the index was ok initially, just no
3847 size_t count
= GetItemCount();
3848 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
3850 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
3853 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
3860 // ----------------------------------------------------------------------------
3862 // ----------------------------------------------------------------------------
3864 void wxListMainWindow::DeleteItem( long lindex
)
3866 size_t count
= GetItemCount();
3868 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
3869 _T("invalid item index in DeleteItem") );
3871 size_t index
= (size_t)lindex
;
3873 // we don't need to adjust the index for the previous items
3874 if ( HasCurrent() && m_current
>= index
)
3876 // if the current item is being deleted, we want the next one to
3877 // become selected - unless there is no next one - so don't adjust
3878 // m_current in this case
3879 if ( m_current
!= index
|| m_current
== count
- 1 )
3885 if ( InReportView() )
3887 ResetVisibleLinesRange();
3894 m_selStore
.OnItemDelete(index
);
3898 m_lines
.RemoveAt( index
);
3903 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
3905 RefreshAfter(index
);
3908 void wxListMainWindow::DeleteColumn( int col
)
3910 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
3912 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
3915 m_columns
.DeleteNode( node
);
3918 void wxListMainWindow::DoDeleteAllItems()
3922 // nothing to do - in particular, don't send the event
3928 // to make the deletion of all items faster, we don't send the
3929 // notifications for each item deletion in this case but only one event
3930 // for all of them: this is compatible with wxMSW and documented in
3931 // DeleteAllItems() description
3933 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
3934 event
.SetEventObject( GetParent() );
3935 GetParent()->GetEventHandler()->ProcessEvent( event
);
3944 if ( InReportView() )
3946 ResetVisibleLinesRange();
3952 void wxListMainWindow::DeleteAllItems()
3956 RecalculatePositions();
3959 void wxListMainWindow::DeleteEverything()
3966 // ----------------------------------------------------------------------------
3967 // scanning for an item
3968 // ----------------------------------------------------------------------------
3970 void wxListMainWindow::EnsureVisible( long index
)
3972 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3973 _T("invalid index in EnsureVisible") );
3975 // We have to call this here because the label in question might just have
3976 // been added and its position is not known yet
3981 RecalculatePositions(TRUE
/* no refresh */);
3984 MoveToItem((size_t)index
);
3987 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
3994 size_t count
= GetItemCount();
3995 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
3997 wxListLineData
*line
= GetLine(i
);
3998 if ( line
->GetText(0) == tmp
)
4005 long wxListMainWindow::FindItem(long start
, long data
)
4011 size_t count
= GetItemCount();
4012 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4014 wxListLineData
*line
= GetLine(i
);
4016 line
->GetItem( 0, item
);
4017 if (item
.m_data
== data
)
4024 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
4026 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4028 if ( HasFlag(wxLC_REPORT
) )
4030 size_t current
= y
/ GetLineHeight();
4031 flags
= HitTestLine(current
, x
, y
);
4037 // TODO: optimize it too! this is less simple than for report view but
4038 // enumerating all items is still not a way to do it!!
4039 size_t count
= GetItemCount();
4040 for ( size_t current
= 0; current
< count
; current
++ )
4042 flags
= HitTestLine(current
, x
, y
);
4051 // ----------------------------------------------------------------------------
4053 // ----------------------------------------------------------------------------
4055 void wxListMainWindow::InsertItem( wxListItem
&item
)
4057 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4059 size_t count
= GetItemCount();
4060 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
<= count
,
4061 _T("invalid item index") );
4063 size_t id
= item
.m_itemId
;
4068 if ( HasFlag(wxLC_REPORT
) )
4070 else if ( HasFlag(wxLC_LIST
) )
4072 else if ( HasFlag(wxLC_ICON
) )
4074 else if ( HasFlag(wxLC_SMALL_ICON
) )
4075 mode
= wxLC_ICON
; // no typo
4078 wxFAIL_MSG( _T("unknown mode") );
4081 wxListLineData
*line
= new wxListLineData(this);
4083 line
->SetItem( 0, item
);
4085 m_lines
.Insert( line
, id
);
4088 RefreshLines(id
, GetItemCount() - 1);
4091 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4094 if ( HasFlag(wxLC_REPORT
) )
4096 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4097 item
.m_width
= GetTextLength( item
.m_text
);
4098 wxListHeaderData
*column
= new wxListHeaderData( item
);
4099 if ((col
>= 0) && (col
< (int)m_columns
.GetCount()))
4101 wxListHeaderDataList::Node
*node
= m_columns
.Item( col
);
4102 m_columns
.Insert( node
, column
);
4106 m_columns
.Append( column
);
4111 // ----------------------------------------------------------------------------
4113 // ----------------------------------------------------------------------------
4115 wxListCtrlCompare list_ctrl_compare_func_2
;
4116 long list_ctrl_compare_data
;
4118 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4120 wxListLineData
*line1
= *arg1
;
4121 wxListLineData
*line2
= *arg2
;
4123 line1
->GetItem( 0, item
);
4124 long data1
= item
.m_data
;
4125 line2
->GetItem( 0, item
);
4126 long data2
= item
.m_data
;
4127 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4130 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4132 list_ctrl_compare_func_2
= fn
;
4133 list_ctrl_compare_data
= data
;
4134 m_lines
.Sort( list_ctrl_compare_func_1
);
4138 // ----------------------------------------------------------------------------
4140 // ----------------------------------------------------------------------------
4142 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4144 // update our idea of which lines are shown when we redraw the window the
4146 ResetVisibleLinesRange();
4149 #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
4150 wxScrolledWindow::OnScroll(event
);
4152 HandleOnScroll( event
);
4155 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4157 wxListCtrl
* lc
= GetListCtrl();
4158 wxCHECK_RET( lc
, _T("no listctrl window?") );
4160 lc
->m_headerWin
->Refresh() ;
4162 lc
->m_headerWin
->MacUpdateImmediately() ;
4167 int wxListMainWindow::GetCountPerPage() const
4169 if ( !m_linesPerPage
)
4171 wxConstCast(this, wxListMainWindow
)->
4172 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4175 return m_linesPerPage
;
4178 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4180 wxASSERT_MSG( HasFlag(wxLC_REPORT
), _T("this is for report mode only") );
4182 if ( m_lineFrom
== (size_t)-1 )
4184 size_t count
= GetItemCount();
4187 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4189 // this may happen if SetScrollbars() hadn't been called yet
4190 if ( m_lineFrom
>= count
)
4191 m_lineFrom
= count
- 1;
4193 // we redraw one extra line but this is needed to make the redrawing
4194 // logic work when there is a fractional number of lines on screen
4195 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4196 if ( m_lineTo
>= count
)
4197 m_lineTo
= count
- 1;
4199 else // empty control
4202 m_lineTo
= (size_t)-1;
4206 wxASSERT_MSG( IsEmpty() ||
4207 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4208 _T("GetVisibleLinesRange() returns incorrect result") );
4216 // -------------------------------------------------------------------------------------
4218 // -------------------------------------------------------------------------------------
4220 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
4222 wxListItem::wxListItem()
4231 m_format
= wxLIST_FORMAT_CENTRE
;
4237 void wxListItem::Clear()
4246 m_format
= wxLIST_FORMAT_CENTRE
;
4253 void wxListItem::ClearAttributes()
4262 // -------------------------------------------------------------------------------------
4264 // -------------------------------------------------------------------------------------
4266 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
4268 wxListEvent::wxListEvent( wxEventType commandType
, int id
)
4269 : wxNotifyEvent( commandType
, id
)
4275 m_cancelled
= FALSE
;
4280 void wxListEvent::CopyObject(wxObject
& object_dest
) const
4282 wxListEvent
*obj
= (wxListEvent
*)&object_dest
;
4284 wxNotifyEvent::CopyObject(object_dest
);
4286 obj
->m_code
= m_code
;
4287 obj
->m_itemIndex
= m_itemIndex
;
4288 obj
->m_oldItemIndex
= m_oldItemIndex
;
4290 obj
->m_cancelled
= m_cancelled
;
4291 obj
->m_pointDrag
= m_pointDrag
;
4292 obj
->m_item
.m_mask
= m_item
.m_mask
;
4293 obj
->m_item
.m_itemId
= m_item
.m_itemId
;
4294 obj
->m_item
.m_col
= m_item
.m_col
;
4295 obj
->m_item
.m_state
= m_item
.m_state
;
4296 obj
->m_item
.m_stateMask
= m_item
.m_stateMask
;
4297 obj
->m_item
.m_text
= m_item
.m_text
;
4298 obj
->m_item
.m_image
= m_item
.m_image
;
4299 obj
->m_item
.m_data
= m_item
.m_data
;
4300 obj
->m_item
.m_format
= m_item
.m_format
;
4301 obj
->m_item
.m_width
= m_item
.m_width
;
4303 if ( m_item
.HasAttributes() )
4305 obj
->m_item
.SetTextColour(m_item
.GetTextColour());
4309 // -------------------------------------------------------------------------------------
4311 // -------------------------------------------------------------------------------------
4313 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
4314 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
4316 BEGIN_EVENT_TABLE(wxListCtrl
,wxControl
)
4317 EVT_SIZE(wxListCtrl::OnSize
)
4318 EVT_IDLE(wxListCtrl::OnIdle
)
4321 wxListCtrl::wxListCtrl()
4323 m_imageListNormal
= (wxImageList
*) NULL
;
4324 m_imageListSmall
= (wxImageList
*) NULL
;
4325 m_imageListState
= (wxImageList
*) NULL
;
4327 m_ownsImageListNormal
=
4328 m_ownsImageListSmall
=
4329 m_ownsImageListState
= FALSE
;
4331 m_mainWin
= (wxListMainWindow
*) NULL
;
4332 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4335 wxListCtrl::~wxListCtrl()
4338 m_mainWin
->ResetCurrent();
4340 if (m_ownsImageListNormal
)
4341 delete m_imageListNormal
;
4342 if (m_ownsImageListSmall
)
4343 delete m_imageListSmall
;
4344 if (m_ownsImageListState
)
4345 delete m_imageListState
;
4348 void wxListCtrl::CreateHeaderWindow()
4350 m_headerWin
= new wxListHeaderWindow
4352 this, -1, m_mainWin
,
4354 wxSize(GetClientSize().x
, HEADER_HEIGHT
),
4359 bool wxListCtrl::Create(wxWindow
*parent
,
4364 const wxValidator
&validator
,
4365 const wxString
&name
)
4369 m_imageListState
= (wxImageList
*) NULL
;
4370 m_ownsImageListNormal
=
4371 m_ownsImageListSmall
=
4372 m_ownsImageListState
= FALSE
;
4374 m_mainWin
= (wxListMainWindow
*) NULL
;
4375 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4377 if ( !(style
& wxLC_MASK_TYPE
) )
4379 style
= style
| wxLC_LIST
;
4382 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4385 // don't create the inner window with the border
4386 style
&= ~wxSUNKEN_BORDER
;
4388 m_mainWin
= new wxListMainWindow( this, -1, wxPoint(0,0), size
, style
);
4390 if ( HasFlag(wxLC_REPORT
) )
4392 CreateHeaderWindow();
4394 if ( HasFlag(wxLC_NO_HEADER
) )
4396 // VZ: why do we create it at all then?
4397 m_headerWin
->Show( FALSE
);
4404 void wxListCtrl::SetSingleStyle( long style
, bool add
)
4406 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4407 _T("wxLC_VIRTUAL can't be [un]set") );
4409 long flag
= GetWindowStyle();
4413 if (style
& wxLC_MASK_TYPE
)
4414 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4415 if (style
& wxLC_MASK_ALIGN
)
4416 flag
&= ~wxLC_MASK_ALIGN
;
4417 if (style
& wxLC_MASK_SORT
)
4418 flag
&= ~wxLC_MASK_SORT
;
4430 SetWindowStyleFlag( flag
);
4433 void wxListCtrl::SetWindowStyleFlag( long flag
)
4437 m_mainWin
->DeleteEverything();
4439 // has the header visibility changed?
4440 bool hasHeader
= HasFlag(wxLC_REPORT
) && !HasFlag(wxLC_NO_HEADER
),
4441 willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4443 if ( hasHeader
!= willHaveHeader
)
4450 // don't delete, just hide, as we can reuse it later
4451 m_headerWin
->Show(FALSE
);
4453 //else: nothing to do
4455 else // must show header
4459 CreateHeaderWindow();
4461 else // already have it, just show
4463 m_headerWin
->Show( TRUE
);
4467 ResizeReportView(willHaveHeader
);
4471 wxWindow::SetWindowStyleFlag( flag
);
4474 bool wxListCtrl::GetColumn(int col
, wxListItem
&item
) const
4476 m_mainWin
->GetColumn( col
, item
);
4480 bool wxListCtrl::SetColumn( int col
, wxListItem
& item
)
4482 m_mainWin
->SetColumn( col
, item
);
4486 int wxListCtrl::GetColumnWidth( int col
) const
4488 return m_mainWin
->GetColumnWidth( col
);
4491 bool wxListCtrl::SetColumnWidth( int col
, int width
)
4493 m_mainWin
->SetColumnWidth( col
, width
);
4497 int wxListCtrl::GetCountPerPage() const
4499 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4502 bool wxListCtrl::GetItem( wxListItem
&info
) const
4504 m_mainWin
->GetItem( info
);
4508 bool wxListCtrl::SetItem( wxListItem
&info
)
4510 m_mainWin
->SetItem( info
);
4514 long wxListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4517 info
.m_text
= label
;
4518 info
.m_mask
= wxLIST_MASK_TEXT
;
4519 info
.m_itemId
= index
;
4523 info
.m_image
= imageId
;
4524 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4526 m_mainWin
->SetItem(info
);
4530 int wxListCtrl::GetItemState( long item
, long stateMask
) const
4532 return m_mainWin
->GetItemState( item
, stateMask
);
4535 bool wxListCtrl::SetItemState( long item
, long state
, long stateMask
)
4537 m_mainWin
->SetItemState( item
, state
, stateMask
);
4541 bool wxListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4544 info
.m_image
= image
;
4545 info
.m_mask
= wxLIST_MASK_IMAGE
;
4546 info
.m_itemId
= item
;
4547 m_mainWin
->SetItem( info
);
4551 wxString
wxListCtrl::GetItemText( long item
) const
4554 info
.m_itemId
= item
;
4555 m_mainWin
->GetItem( info
);
4559 void wxListCtrl::SetItemText( long item
, const wxString
&str
)
4562 info
.m_mask
= wxLIST_MASK_TEXT
;
4563 info
.m_itemId
= item
;
4565 m_mainWin
->SetItem( info
);
4568 long wxListCtrl::GetItemData( long item
) const
4571 info
.m_itemId
= item
;
4572 m_mainWin
->GetItem( info
);
4576 bool wxListCtrl::SetItemData( long item
, long data
)
4579 info
.m_mask
= wxLIST_MASK_DATA
;
4580 info
.m_itemId
= item
;
4582 m_mainWin
->SetItem( info
);
4586 bool wxListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
4588 m_mainWin
->GetItemRect( item
, rect
);
4592 bool wxListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4594 m_mainWin
->GetItemPosition( item
, pos
);
4598 bool wxListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4603 int wxListCtrl::GetItemCount() const
4605 return m_mainWin
->GetItemCount();
4608 int wxListCtrl::GetColumnCount() const
4610 return m_mainWin
->GetColumnCount();
4613 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4615 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4618 int wxListCtrl::GetItemSpacing( bool isSmall
) const
4620 return m_mainWin
->GetItemSpacing( isSmall
);
4623 int wxListCtrl::GetSelectedItemCount() const
4625 return m_mainWin
->GetSelectedItemCount();
4628 wxColour
wxListCtrl::GetTextColour() const
4630 return GetForegroundColour();
4633 void wxListCtrl::SetTextColour(const wxColour
& col
)
4635 SetForegroundColour(col
);
4638 long wxListCtrl::GetTopItem() const
4643 long wxListCtrl::GetNextItem( long item
, int geom
, int state
) const
4645 return m_mainWin
->GetNextItem( item
, geom
, state
);
4648 wxImageList
*wxListCtrl::GetImageList(int which
) const
4650 if (which
== wxIMAGE_LIST_NORMAL
)
4652 return m_imageListNormal
;
4654 else if (which
== wxIMAGE_LIST_SMALL
)
4656 return m_imageListSmall
;
4658 else if (which
== wxIMAGE_LIST_STATE
)
4660 return m_imageListState
;
4662 return (wxImageList
*) NULL
;
4665 void wxListCtrl::SetImageList( wxImageList
*imageList
, int which
)
4667 if ( which
== wxIMAGE_LIST_NORMAL
)
4669 if (m_ownsImageListNormal
) delete m_imageListNormal
;
4670 m_imageListNormal
= imageList
;
4671 m_ownsImageListNormal
= FALSE
;
4673 else if ( which
== wxIMAGE_LIST_SMALL
)
4675 if (m_ownsImageListSmall
) delete m_imageListSmall
;
4676 m_imageListSmall
= imageList
;
4677 m_ownsImageListSmall
= FALSE
;
4679 else if ( which
== wxIMAGE_LIST_STATE
)
4681 if (m_ownsImageListState
) delete m_imageListState
;
4682 m_imageListState
= imageList
;
4683 m_ownsImageListState
= FALSE
;
4686 m_mainWin
->SetImageList( imageList
, which
);
4689 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
4691 SetImageList(imageList
, which
);
4692 if ( which
== wxIMAGE_LIST_NORMAL
)
4693 m_ownsImageListNormal
= TRUE
;
4694 else if ( which
== wxIMAGE_LIST_SMALL
)
4695 m_ownsImageListSmall
= TRUE
;
4696 else if ( which
== wxIMAGE_LIST_STATE
)
4697 m_ownsImageListState
= TRUE
;
4700 bool wxListCtrl::Arrange( int WXUNUSED(flag
) )
4705 bool wxListCtrl::DeleteItem( long item
)
4707 m_mainWin
->DeleteItem( item
);
4711 bool wxListCtrl::DeleteAllItems()
4713 m_mainWin
->DeleteAllItems();
4717 bool wxListCtrl::DeleteAllColumns()
4719 size_t count
= m_mainWin
->m_columns
.GetCount();
4720 for ( size_t n
= 0; n
< count
; n
++ )
4726 void wxListCtrl::ClearAll()
4728 m_mainWin
->DeleteEverything();
4731 bool wxListCtrl::DeleteColumn( int col
)
4733 m_mainWin
->DeleteColumn( col
);
4737 void wxListCtrl::Edit( long item
)
4739 m_mainWin
->EditLabel( item
);
4742 bool wxListCtrl::EnsureVisible( long item
)
4744 m_mainWin
->EnsureVisible( item
);
4748 long wxListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
4750 return m_mainWin
->FindItem( start
, str
, partial
);
4753 long wxListCtrl::FindItem( long start
, long data
)
4755 return m_mainWin
->FindItem( start
, data
);
4758 long wxListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& WXUNUSED(pt
),
4759 int WXUNUSED(direction
))
4764 long wxListCtrl::HitTest( const wxPoint
&point
, int &flags
)
4766 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
4769 long wxListCtrl::InsertItem( wxListItem
& info
)
4771 m_mainWin
->InsertItem( info
);
4772 return info
.m_itemId
;
4775 long wxListCtrl::InsertItem( long index
, const wxString
&label
)
4778 info
.m_text
= label
;
4779 info
.m_mask
= wxLIST_MASK_TEXT
;
4780 info
.m_itemId
= index
;
4781 return InsertItem( info
);
4784 long wxListCtrl::InsertItem( long index
, int imageIndex
)
4787 info
.m_mask
= wxLIST_MASK_IMAGE
;
4788 info
.m_image
= imageIndex
;
4789 info
.m_itemId
= index
;
4790 return InsertItem( info
);
4793 long wxListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
4796 info
.m_text
= label
;
4797 info
.m_image
= imageIndex
;
4798 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
4799 info
.m_itemId
= index
;
4800 return InsertItem( info
);
4803 long wxListCtrl::InsertColumn( long col
, wxListItem
&item
)
4805 wxASSERT( m_headerWin
);
4806 m_mainWin
->InsertColumn( col
, item
);
4807 m_headerWin
->Refresh();
4812 long wxListCtrl::InsertColumn( long col
, const wxString
&heading
,
4813 int format
, int width
)
4816 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
4817 item
.m_text
= heading
;
4820 item
.m_mask
|= wxLIST_MASK_WIDTH
;
4821 item
.m_width
= width
;
4823 item
.m_format
= format
;
4825 return InsertColumn( col
, item
);
4828 bool wxListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
4834 // fn is a function which takes 3 long arguments: item1, item2, data.
4835 // item1 is the long data associated with a first item (NOT the index).
4836 // item2 is the long data associated with a second item (NOT the index).
4837 // data is the same value as passed to SortItems.
4838 // The return value is a negative number if the first item should precede the second
4839 // item, a positive number of the second item should precede the first,
4840 // or zero if the two items are equivalent.
4841 // data is arbitrary data to be passed to the sort function.
4843 bool wxListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
4845 m_mainWin
->SortItems( fn
, data
);
4849 // ----------------------------------------------------------------------------
4851 // ----------------------------------------------------------------------------
4853 void wxListCtrl::OnSize(wxSizeEvent
& event
)
4858 ResizeReportView(m_mainWin
->HasHeader());
4860 m_mainWin
->RecalculatePositions();
4863 void wxListCtrl::ResizeReportView(bool showHeader
)
4866 GetClientSize( &cw
, &ch
);
4870 m_headerWin
->SetSize( 0, 0, cw
, HEADER_HEIGHT
);
4871 m_mainWin
->SetSize( 0, HEADER_HEIGHT
+ 1, cw
, ch
- HEADER_HEIGHT
- 1 );
4873 else // no header window
4875 m_mainWin
->SetSize( 0, 0, cw
, ch
);
4879 void wxListCtrl::OnIdle( wxIdleEvent
& event
)
4883 // do it only if needed
4884 if ( !m_mainWin
->m_dirty
)
4887 m_mainWin
->RecalculatePositions();
4890 // ----------------------------------------------------------------------------
4892 // ----------------------------------------------------------------------------
4894 bool wxListCtrl::SetBackgroundColour( const wxColour
&colour
)
4898 m_mainWin
->SetBackgroundColour( colour
);
4899 m_mainWin
->m_dirty
= TRUE
;
4905 bool wxListCtrl::SetForegroundColour( const wxColour
&colour
)
4907 if ( !wxWindow::SetForegroundColour( colour
) )
4912 m_mainWin
->SetForegroundColour( colour
);
4913 m_mainWin
->m_dirty
= TRUE
;
4918 m_headerWin
->SetForegroundColour( colour
);
4924 bool wxListCtrl::SetFont( const wxFont
&font
)
4926 if ( !wxWindow::SetFont( font
) )
4931 m_mainWin
->SetFont( font
);
4932 m_mainWin
->m_dirty
= TRUE
;
4937 m_headerWin
->SetFont( font
);
4943 // ----------------------------------------------------------------------------
4944 // methods forwarded to m_mainWin
4945 // ----------------------------------------------------------------------------
4947 #if wxUSE_DRAG_AND_DROP
4949 void wxListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
4951 m_mainWin
->SetDropTarget( dropTarget
);
4954 wxDropTarget
*wxListCtrl::GetDropTarget() const
4956 return m_mainWin
->GetDropTarget();
4959 #endif // wxUSE_DRAG_AND_DROP
4961 bool wxListCtrl::SetCursor( const wxCursor
&cursor
)
4963 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : FALSE
;
4966 wxColour
wxListCtrl::GetBackgroundColour() const
4968 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
4971 wxColour
wxListCtrl::GetForegroundColour() const
4973 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
4976 bool wxListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
4979 return m_mainWin
->PopupMenu( menu
, x
, y
);
4982 #endif // wxUSE_MENUS
4985 void wxListCtrl::SetFocus()
4987 /* The test in window.cpp fails as we are a composite
4988 window, so it checks against "this", but not m_mainWin. */
4989 if ( FindFocus() != this )
4990 m_mainWin
->SetFocus();
4993 // ----------------------------------------------------------------------------
4994 // virtual list control support
4995 // ----------------------------------------------------------------------------
4997 wxString
wxListCtrl::OnGetItemText(long item
, long col
) const
4999 // this is a pure virtual function, in fact - which is not really pure
5000 // because the controls which are not virtual don't need to implement it
5001 wxFAIL_MSG( _T("not supposed to be called") );
5003 return wxEmptyString
;
5006 int wxListCtrl::OnGetItemImage(long item
) const
5009 wxFAIL_MSG( _T("not supposed to be called") );
5014 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long item
) const
5016 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5017 _T("invalid item index in OnGetItemAttr()") );
5019 // no attributes by default
5023 void wxListCtrl::SetItemCount(long count
)
5025 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5027 m_mainWin
->SetItemCount(count
);
5030 void wxListCtrl::RefreshItem(long item
)
5032 m_mainWin
->RefreshLine(item
);
5035 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5037 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5040 #endif // wxUSE_LISTCTRL