1 /////////////////////////////////////////////////////////////////////////////
2 // Name: generic/listctrl.cpp
3 // Purpose: generic implementation of wxListCtrl
4 // Author: Robert Roebling
5 // Vadim Zeitlin (virtual list control support)
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
14 1. we need to implement searching/sorting for virtual controls somehow
15 ?2. when changing selection the lines are refreshed twice
18 // ============================================================================
20 // ============================================================================
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
27 #pragma implementation "listctrl.h"
28 #pragma implementation "listctrlbase.h"
31 // For compilers that support precompilation, includes "wx.h".
32 #include "wx/wxprec.h"
43 #include "wx/dynarray.h"
45 #include "wx/dcscreen.h"
47 #include "wx/textctrl.h"
50 // under Win32 we always use the native version and also may use the generic
51 // one, however some things should be done only if we use only the generic
53 #if defined(__WIN32__) && !defined(__WXUNIVERSAL__)
54 #define HAVE_NATIVE_LISTCTRL
57 // if we have the native control, wx/listctrl.h declares it and not this one
58 #ifdef HAVE_NATIVE_LISTCTRL
59 #include "wx/generic/listctrl.h"
60 #else // !HAVE_NATIVE_LISTCTRL
61 #include "wx/listctrl.h"
63 // if we have a native version, its implementation file does all this
64 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
65 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
66 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
68 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxGenericListCtrl
)
69 #endif // HAVE_NATIVE_LISTCTRL/!HAVE_NATIVE_LISTCTRL
71 #include "wx/selstore.h"
73 #include "wx/renderer.h"
76 #include "wx/mac/private.h"
82 // NOTE: If using the wxListBox visual attributes works everywhere then this can
83 // be removed, as well as the #else case below.
84 #define _USE_VISATTR 0
87 // ----------------------------------------------------------------------------
89 // ----------------------------------------------------------------------------
91 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
)
92 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
)
93 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
)
94 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
)
95 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
)
96 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
)
97 #if WXWIN_COMPATIBILITY_2_4
98 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
)
99 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
)
101 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
)
102 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
)
103 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
)
104 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
)
105 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
)
106 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
)
107 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
)
108 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING
)
109 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG
)
110 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
)
111 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
)
112 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
)
113 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED
)
114 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
)
116 // ----------------------------------------------------------------------------
118 // ----------------------------------------------------------------------------
120 // // the height of the header window (FIXME: should depend on its font!)
121 // static const int HEADER_HEIGHT = 23;
123 static const int SCROLL_UNIT_X
= 15;
125 // the spacing between the lines (in report mode)
126 static const int LINE_SPACING
= 0;
128 // extra margins around the text label
129 static const int EXTRA_WIDTH
= 4;
130 static const int EXTRA_HEIGHT
= 4;
132 // margin between the window and the items
133 static const int EXTRA_BORDER_X
= 2;
134 static const int EXTRA_BORDER_Y
= 2;
136 // offset for the header window
137 static const int HEADER_OFFSET_X
= 1;
138 static const int HEADER_OFFSET_Y
= 1;
140 // margin between rows of icons in [small] icon view
141 static const int MARGIN_BETWEEN_ROWS
= 6;
143 // when autosizing the columns, add some slack
144 static const int AUTOSIZE_COL_MARGIN
= 10;
146 // default and minimal widths for the header columns
147 static const int WIDTH_COL_DEFAULT
= 80;
148 static const int WIDTH_COL_MIN
= 10;
150 // the space between the image and the text in the report mode
151 static const int IMAGE_MARGIN_IN_REPORT_MODE
= 5;
153 // ============================================================================
155 // ============================================================================
157 //-----------------------------------------------------------------------------
158 // wxListItemData (internal)
159 //-----------------------------------------------------------------------------
161 class WXDLLEXPORT wxListItemData
164 wxListItemData(wxListMainWindow
*owner
);
167 void SetItem( const wxListItem
&info
);
168 void SetImage( int image
) { m_image
= image
; }
169 void SetData( wxUIntPtr data
) { m_data
= data
; }
170 void SetPosition( int x
, int y
);
171 void SetSize( int width
, int height
);
173 bool HasText() const { return !m_text
.empty(); }
174 const wxString
& GetText() const { return m_text
; }
175 void SetText(const wxString
& text
) { m_text
= text
; }
177 // we can't use empty string for measuring the string width/height, so
178 // always return something
179 wxString
GetTextForMeasuring() const
181 wxString s
= GetText();
188 bool IsHit( int x
, int y
) const;
192 int GetWidth() const;
193 int GetHeight() const;
195 int GetImage() const { return m_image
; }
196 bool HasImage() const { return GetImage() != -1; }
198 void GetItem( wxListItem
&info
) const;
200 void SetAttr(wxListItemAttr
*attr
) { m_attr
= attr
; }
201 wxListItemAttr
*GetAttr() const { return m_attr
; }
204 // the item image or -1
207 // user data associated with the item
210 // the item coordinates are not used in report mode, instead this pointer
211 // is NULL and the owner window is used to retrieve the item position and
215 // the list ctrl we are in
216 wxListMainWindow
*m_owner
;
218 // custom attributes or NULL
219 wxListItemAttr
*m_attr
;
222 // common part of all ctors
228 //-----------------------------------------------------------------------------
229 // wxListHeaderData (internal)
230 //-----------------------------------------------------------------------------
232 class WXDLLEXPORT wxListHeaderData
: public wxObject
236 wxListHeaderData( const wxListItem
&info
);
237 void SetItem( const wxListItem
&item
);
238 void SetPosition( int x
, int y
);
239 void SetWidth( int w
);
240 void SetFormat( int format
);
241 void SetHeight( int h
);
242 bool HasImage() const;
244 bool HasText() const { return !m_text
.empty(); }
245 const wxString
& GetText() const { return m_text
; }
246 void SetText(const wxString
& text
) { m_text
= text
; }
248 void GetItem( wxListItem
&item
);
250 bool IsHit( int x
, int y
) const;
251 int GetImage() const;
252 int GetWidth() const;
253 int GetFormat() const;
269 //-----------------------------------------------------------------------------
270 // wxListLineData (internal)
271 //-----------------------------------------------------------------------------
273 WX_DECLARE_LIST(wxListItemData
, wxListItemDataList
);
274 #include "wx/listimpl.cpp"
275 WX_DEFINE_LIST(wxListItemDataList
);
280 // the list of subitems: only may have more than one item in report mode
281 wxListItemDataList m_items
;
283 // this is not used in report view
295 // the part to be highlighted
296 wxRect m_rectHighlight
;
298 // extend all our rects to be centered inside theo ne of given width
299 void ExtendWidth(wxCoord w
)
301 wxASSERT_MSG( m_rectAll
.width
<= w
,
302 _T("width can only be increased") );
305 m_rectLabel
.x
= m_rectAll
.x
+ (w
- m_rectLabel
.width
)/2;
306 m_rectIcon
.x
= m_rectAll
.x
+ (w
- m_rectIcon
.width
)/2;
307 m_rectHighlight
.x
= m_rectAll
.x
+ (w
- m_rectHighlight
.width
)/2;
311 // is this item selected? [NB: not used in virtual mode]
314 // back pointer to the list ctrl
315 wxListMainWindow
*m_owner
;
318 wxListLineData(wxListMainWindow
*owner
);
322 WX_CLEAR_LIST(wxListItemDataList
, m_items
);
326 // are we in report mode?
327 inline bool InReportView() const;
329 // are we in virtual report mode?
330 inline bool IsVirtual() const;
332 // these 2 methods shouldn't be called for report view controls, in that
333 // case we determine our position/size ourselves
335 // calculate the size of the line
336 void CalculateSize( wxDC
*dc
, int spacing
);
338 // remember the position this line appears at
339 void SetPosition( int x
, int y
, int spacing
);
343 void SetImage( int image
) { SetImage(0, image
); }
344 int GetImage() const { return GetImage(0); }
345 bool HasImage() const { return GetImage() != -1; }
346 bool HasText() const { return !GetText(0).empty(); }
348 void SetItem( int index
, const wxListItem
&info
);
349 void GetItem( int index
, wxListItem
&info
);
351 wxString
GetText(int index
) const;
352 void SetText( int index
, const wxString s
);
354 wxListItemAttr
*GetAttr() const;
355 void SetAttr(wxListItemAttr
*attr
);
357 // return true if the highlighting really changed
358 bool Highlight( bool on
);
360 void ReverseHighlight();
362 bool IsHighlighted() const
364 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
366 return m_highlighted
;
369 // draw the line on the given DC in icon/list mode
370 void Draw( wxDC
*dc
);
372 // the same in report mode
373 void DrawInReportMode( wxDC
*dc
,
375 const wxRect
& rectHL
,
379 // set the line to contain num items (only can be > 1 in report mode)
380 void InitItems( int num
);
382 // get the mode (i.e. style) of the list control
383 inline int GetMode() const;
385 // prepare the DC for drawing with these item's attributes, return true if
386 // we need to draw the items background to highlight it, false otherwise
387 bool SetAttributes(wxDC
*dc
,
388 const wxListItemAttr
*attr
,
391 // draw the text on the DC with the correct justification; also add an
392 // ellipsis if the text is too large to fit in the current width
393 void DrawTextFormatted(wxDC
*dc
, const wxString
&text
, int col
, int x
, int y
, int width
);
395 // these are only used by GetImage/SetImage above, we don't support images
396 // with subitems at the public API level yet
397 void SetImage( int index
, int image
);
398 int GetImage( int index
) const;
401 WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData
, wxListLineDataArray
);
402 #include "wx/arrimpl.cpp"
403 WX_DEFINE_OBJARRAY(wxListLineDataArray
);
405 //-----------------------------------------------------------------------------
406 // wxListHeaderWindow (internal)
407 //-----------------------------------------------------------------------------
409 class WXDLLEXPORT wxListHeaderWindow
: public wxWindow
412 wxListMainWindow
*m_owner
;
413 wxCursor
*m_currentCursor
;
414 wxCursor
*m_resizeCursor
;
417 // column being resized or -1
420 // divider line position in logical (unscrolled) coords
423 // minimal position beyond which the divider line can't be dragged in
428 wxListHeaderWindow();
430 wxListHeaderWindow( wxWindow
*win
,
432 wxListMainWindow
*owner
,
433 const wxPoint
&pos
= wxDefaultPosition
,
434 const wxSize
&size
= wxDefaultSize
,
436 const wxString
&name
= wxT("wxlistctrlcolumntitles") );
438 virtual ~wxListHeaderWindow();
441 void AdjustDC(wxDC
& dc
);
443 void OnPaint( wxPaintEvent
&event
);
444 void OnMouse( wxMouseEvent
&event
);
445 void OnSetFocus( wxFocusEvent
&event
);
451 // common part of all ctors
454 // generate and process the list event of the given type, return true if
455 // it wasn't vetoed, i.e. if we should proceed
456 bool SendListEvent(wxEventType type
, wxPoint pos
);
458 DECLARE_DYNAMIC_CLASS(wxListHeaderWindow
)
459 DECLARE_EVENT_TABLE()
462 //-----------------------------------------------------------------------------
463 // wxListRenameTimer (internal)
464 //-----------------------------------------------------------------------------
466 class WXDLLEXPORT wxListRenameTimer
: public wxTimer
469 wxListMainWindow
*m_owner
;
472 wxListRenameTimer( wxListMainWindow
*owner
);
476 //-----------------------------------------------------------------------------
477 // wxListTextCtrl (internal)
478 //-----------------------------------------------------------------------------
480 class WXDLLEXPORT wxListTextCtrl
: public wxTextCtrl
483 wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
);
486 void OnChar( wxKeyEvent
&event
);
487 void OnKeyUp( wxKeyEvent
&event
);
488 void OnKillFocus( wxFocusEvent
&event
);
490 bool AcceptChanges();
494 wxListMainWindow
*m_owner
;
495 wxString m_startValue
;
499 DECLARE_EVENT_TABLE()
502 //-----------------------------------------------------------------------------
503 // wxListMainWindow (internal)
504 //-----------------------------------------------------------------------------
506 WX_DECLARE_LIST(wxListHeaderData
, wxListHeaderDataList
);
507 #include "wx/listimpl.cpp"
508 WX_DEFINE_LIST(wxListHeaderDataList
);
510 class wxListMainWindow
: public wxScrolledWindow
514 wxListMainWindow( wxWindow
*parent
,
516 const wxPoint
& pos
= wxDefaultPosition
,
517 const wxSize
& size
= wxDefaultSize
,
519 const wxString
&name
= _T("listctrlmainwindow") );
521 virtual ~wxListMainWindow();
523 wxWindow
*GetMainWindowOfCompositeControl() { return GetParent(); }
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 InReportView() && !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 selected items
565 void RefreshSelected();
567 // refresh all lines below the given one: the difference with
568 // RefreshLines() is that the index here might not be a valid one (happens
569 // when the last line is deleted)
570 void RefreshAfter( size_t lineFrom
);
572 // the methods which are forwarded to wxListLineData itself in list/icon
573 // modes but are here because the lines don't store their positions in the
576 // get the bound rect for the entire line
577 wxRect
GetLineRect(size_t line
) const;
579 // get the bound rect of the label
580 wxRect
GetLineLabelRect(size_t line
) const;
582 // get the bound rect of the items icon (only may be called if we do have
584 wxRect
GetLineIconRect(size_t line
) const;
586 // get the rect to be highlighted when the item has focus
587 wxRect
GetLineHighlightRect(size_t line
) const;
589 // get the size of the total line rect
590 wxSize
GetLineSize(size_t line
) const
591 { return GetLineRect(line
).GetSize(); }
593 // return the hit code for the corresponding position (in this line)
594 long HitTestLine(size_t line
, int x
, int y
) const;
596 // bring the selected item into view, scrolling to it if necessary
597 void MoveToItem(size_t item
);
599 // bring the current item into view
600 void MoveToFocus() { MoveToItem(m_current
); }
602 // start editing the label of the given item
603 void EditLabel( long item
);
605 // suspend/resume redrawing the control
611 void OnRenameTimer();
612 bool OnRenameAccept(size_t itemEdit
, const wxString
& value
);
613 void OnRenameCancelled(size_t itemEdit
);
615 void OnMouse( wxMouseEvent
&event
);
617 // called to switch the selection from the current item to newCurrent,
618 void OnArrowChar( size_t newCurrent
, const wxKeyEvent
& event
);
620 void OnChar( wxKeyEvent
&event
);
621 void OnKeyDown( wxKeyEvent
&event
);
622 void OnSetFocus( wxFocusEvent
&event
);
623 void OnKillFocus( wxFocusEvent
&event
);
624 void OnScroll(wxScrollWinEvent
& event
) ;
626 void OnPaint( wxPaintEvent
&event
);
628 void DrawImage( int index
, wxDC
*dc
, int x
, int y
);
629 void GetImageSize( int index
, int &width
, int &height
) const;
630 int GetTextLength( const wxString
&s
) const;
632 void SetImageList( wxImageListType
*imageList
, int which
);
633 void SetItemSpacing( int spacing
, bool isSmall
= false );
634 int GetItemSpacing( bool isSmall
= false );
636 void SetColumn( int col
, wxListItem
&item
);
637 void SetColumnWidth( int col
, int width
);
638 void GetColumn( int col
, wxListItem
&item
) const;
639 int GetColumnWidth( int col
) const;
640 int GetColumnCount() const { return m_columns
.GetCount(); }
642 // returns the sum of the heights of all columns
643 int GetHeaderWidth() const;
645 int GetCountPerPage() const;
647 void SetItem( wxListItem
&item
);
648 void GetItem( wxListItem
&item
) const;
649 void SetItemState( long item
, long state
, long stateMask
);
650 int GetItemState( long item
, long stateMask
) const;
651 void GetItemRect( long index
, wxRect
&rect
) const;
652 wxRect
GetViewRect() const;
653 bool GetItemPosition( long item
, wxPoint
& pos
) const;
654 int GetSelectedItemCount() const;
656 wxString
GetItemText(long item
) const
659 info
.m_itemId
= item
;
664 void SetItemText(long item
, const wxString
& value
)
667 info
.m_mask
= wxLIST_MASK_TEXT
;
668 info
.m_itemId
= item
;
673 // set the scrollbars and update the positions of the items
674 void RecalculatePositions(bool noRefresh
= false);
676 // refresh the window and the header
679 long GetNextItem( long item
, int geometry
, int state
) const;
680 void DeleteItem( long index
);
681 void DeleteAllItems();
682 void DeleteColumn( int col
);
683 void DeleteEverything();
684 void EnsureVisible( long index
);
685 long FindItem( long start
, const wxString
& str
, bool partial
= false );
686 long FindItem( long start
, wxUIntPtr data
);
687 long FindItem( const wxPoint
& pt
);
688 long HitTest( int x
, int y
, int &flags
);
689 void InsertItem( wxListItem
&item
);
690 void InsertColumn( long col
, wxListItem
&item
);
691 void SortItems( wxListCtrlCompare fn
, long data
);
693 size_t GetItemCount() const;
694 bool IsEmpty() const { return GetItemCount() == 0; }
695 void SetItemCount(long count
);
697 // change the current (== focused) item, send a notification event
698 void ChangeCurrent(size_t current
);
699 void ResetCurrent() { ChangeCurrent((size_t)-1); }
700 bool HasCurrent() const { return m_current
!= (size_t)-1; }
702 // send out a wxListEvent
703 void SendNotify( size_t line
,
705 wxPoint point
= wxDefaultPosition
);
707 // override base class virtual to reset m_lineHeight when the font changes
708 virtual bool SetFont(const wxFont
& font
)
710 if ( !wxScrolledWindow::SetFont(font
) )
718 // these are for wxListLineData usage only
720 // get the backpointer to the list ctrl
721 wxGenericListCtrl
*GetListCtrl() const
723 return wxStaticCast(GetParent(), wxGenericListCtrl
);
726 // get the height of all lines (assuming they all do have the same height)
727 wxCoord
GetLineHeight() const;
729 // get the y position of the given line (only for report view)
730 wxCoord
GetLineY(size_t line
) const;
732 // get the brush to use for the item highlighting
733 wxBrush
*GetHighlightBrush() const
735 return m_hasFocus
? m_highlightBrush
: m_highlightUnfocusedBrush
;
739 // the array of all line objects for a non virtual list control (for the
740 // virtual list control we only ever use m_lines[0])
741 wxListLineDataArray m_lines
;
743 // the list of column objects
744 wxListHeaderDataList m_columns
;
746 // currently focused item or -1
749 // the number of lines per page
752 // this flag is set when something which should result in the window
753 // redrawing happens (i.e. an item was added or deleted, or its appearance
754 // changed) and OnPaint() doesn't redraw the window while it is set which
755 // allows to minimize the number of repaintings when a lot of items are
756 // being added. The real repainting occurs only after the next OnIdle()
760 wxColour
*m_highlightColour
;
761 wxImageListType
*m_small_image_list
;
762 wxImageListType
*m_normal_image_list
;
764 int m_normal_spacing
;
768 wxTimer
*m_renameTimer
;
773 // for double click logic
774 size_t m_lineLastClicked
,
775 m_lineBeforeLastClicked
;
778 // the total count of items in a virtual list control
781 // the object maintaining the items selection state, only used in virtual
783 wxSelectionStore m_selStore
;
785 // common part of all ctors
788 // get the line data for the given index
789 wxListLineData
*GetLine(size_t n
) const
791 wxASSERT_MSG( n
!= (size_t)-1, _T("invalid line index") );
795 wxConstCast(this, wxListMainWindow
)->CacheLineData(n
);
803 // get a dummy line which can be used for geometry calculations and such:
804 // you must use GetLine() if you want to really draw the line
805 wxListLineData
*GetDummyLine() const;
807 // cache the line data of the n-th line in m_lines[0]
808 void CacheLineData(size_t line
);
810 // get the range of visible lines
811 void GetVisibleLinesRange(size_t *from
, size_t *to
);
813 // force us to recalculate the range of visible lines
814 void ResetVisibleLinesRange() { m_lineFrom
= (size_t)-1; }
816 // get the colour to be used for drawing the rules
817 wxColour
GetRuleColour() const
822 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
);
827 // initialize the current item if needed
828 void UpdateCurrent();
830 // delete all items but don't refresh: called from dtor
831 void DoDeleteAllItems();
833 // the height of one line using the current font
834 wxCoord m_lineHeight
;
836 // the total header width or 0 if not calculated yet
837 wxCoord m_headerWidth
;
839 // the first and last lines being shown on screen right now (inclusive),
840 // both may be -1 if they must be calculated so never access them directly:
841 // use GetVisibleLinesRange() above instead
845 // the brushes to use for item highlighting when we do/don't have focus
846 wxBrush
*m_highlightBrush
,
847 *m_highlightUnfocusedBrush
;
849 // if this is > 0, the control is frozen and doesn't redraw itself
850 size_t m_freezeCount
;
852 DECLARE_DYNAMIC_CLASS(wxListMainWindow
)
853 DECLARE_EVENT_TABLE()
855 friend class wxGenericListCtrl
;
858 // ============================================================================
860 // ============================================================================
862 //-----------------------------------------------------------------------------
864 //-----------------------------------------------------------------------------
866 wxListItemData::~wxListItemData()
868 // in the virtual list control the attributes are managed by the main
869 // program, so don't delete them
870 if ( !m_owner
->IsVirtual() )
878 void wxListItemData::Init()
886 wxListItemData::wxListItemData(wxListMainWindow
*owner
)
892 if ( owner
->InReportView() )
902 void wxListItemData::SetItem( const wxListItem
&info
)
904 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
905 SetText(info
.m_text
);
906 if ( info
.m_mask
& wxLIST_MASK_IMAGE
)
907 m_image
= info
.m_image
;
908 if ( info
.m_mask
& wxLIST_MASK_DATA
)
909 m_data
= info
.m_data
;
911 if ( info
.HasAttributes() )
914 *m_attr
= *info
.GetAttributes();
916 m_attr
= new wxListItemAttr(*info
.GetAttributes());
924 m_rect
->width
= info
.m_width
;
928 void wxListItemData::SetPosition( int x
, int y
)
930 wxCHECK_RET( m_rect
, _T("unexpected SetPosition() call") );
936 void wxListItemData::SetSize( int width
, int height
)
938 wxCHECK_RET( m_rect
, _T("unexpected SetSize() call") );
941 m_rect
->width
= width
;
943 m_rect
->height
= height
;
946 bool wxListItemData::IsHit( int x
, int y
) const
948 wxCHECK_MSG( m_rect
, false, _T("can't be called in this mode") );
950 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Inside(x
, y
);
953 int wxListItemData::GetX() const
955 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
960 int wxListItemData::GetY() const
962 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
967 int wxListItemData::GetWidth() const
969 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
971 return m_rect
->width
;
974 int wxListItemData::GetHeight() const
976 wxCHECK_MSG( m_rect
, 0, _T("can't be called in this mode") );
978 return m_rect
->height
;
981 void wxListItemData::GetItem( wxListItem
&info
) const
983 info
.m_text
= m_text
;
984 info
.m_image
= m_image
;
985 info
.m_data
= m_data
;
989 if ( m_attr
->HasTextColour() )
990 info
.SetTextColour(m_attr
->GetTextColour());
991 if ( m_attr
->HasBackgroundColour() )
992 info
.SetBackgroundColour(m_attr
->GetBackgroundColour());
993 if ( m_attr
->HasFont() )
994 info
.SetFont(m_attr
->GetFont());
998 //-----------------------------------------------------------------------------
1000 //-----------------------------------------------------------------------------
1002 void wxListHeaderData::Init()
1013 wxListHeaderData::wxListHeaderData()
1018 wxListHeaderData::wxListHeaderData( const wxListItem
&item
)
1025 void wxListHeaderData::SetItem( const wxListItem
&item
)
1027 m_mask
= item
.m_mask
;
1029 if ( m_mask
& wxLIST_MASK_TEXT
)
1030 m_text
= item
.m_text
;
1032 if ( m_mask
& wxLIST_MASK_IMAGE
)
1033 m_image
= item
.m_image
;
1035 if ( m_mask
& wxLIST_MASK_FORMAT
)
1036 m_format
= item
.m_format
;
1038 if ( m_mask
& wxLIST_MASK_WIDTH
)
1039 SetWidth(item
.m_width
);
1042 void wxListHeaderData::SetPosition( int x
, int y
)
1048 void wxListHeaderData::SetHeight( int h
)
1053 void wxListHeaderData::SetWidth( int w
)
1057 m_width
= WIDTH_COL_DEFAULT
;
1058 else if (m_width
< WIDTH_COL_MIN
)
1059 m_width
= WIDTH_COL_MIN
;
1062 void wxListHeaderData::SetFormat( int format
)
1067 bool wxListHeaderData::HasImage() const
1069 return m_image
!= -1;
1072 bool wxListHeaderData::IsHit( int x
, int y
) const
1074 return ((x
>= m_xpos
) && (x
<= m_xpos
+m_width
) && (y
>= m_ypos
) && (y
<= m_ypos
+m_height
));
1077 void wxListHeaderData::GetItem( wxListItem
& item
)
1079 item
.m_mask
= m_mask
;
1080 item
.m_text
= m_text
;
1081 item
.m_image
= m_image
;
1082 item
.m_format
= m_format
;
1083 item
.m_width
= m_width
;
1086 int wxListHeaderData::GetImage() const
1091 int wxListHeaderData::GetWidth() const
1096 int wxListHeaderData::GetFormat() const
1101 //-----------------------------------------------------------------------------
1103 //-----------------------------------------------------------------------------
1105 inline int wxListLineData::GetMode() const
1107 return m_owner
->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE
;
1110 inline bool wxListLineData::InReportView() const
1112 return m_owner
->HasFlag(wxLC_REPORT
);
1115 inline bool wxListLineData::IsVirtual() const
1117 return m_owner
->IsVirtual();
1120 wxListLineData::wxListLineData( wxListMainWindow
*owner
)
1124 if ( InReportView() )
1130 m_gi
= new GeometryInfo
;
1133 m_highlighted
= false;
1135 InitItems( GetMode() == wxLC_REPORT
? m_owner
->GetColumnCount() : 1 );
1138 void wxListLineData::CalculateSize( wxDC
*dc
, int spacing
)
1140 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1141 wxCHECK_RET( node
, _T("no subitems at all??") );
1143 wxListItemData
*item
= node
->GetData();
1148 switch ( GetMode() )
1151 case wxLC_SMALL_ICON
:
1152 m_gi
->m_rectAll
.width
= spacing
;
1154 s
= item
->GetText();
1159 m_gi
->m_rectLabel
.width
=
1160 m_gi
->m_rectLabel
.height
= 0;
1164 dc
->GetTextExtent( s
, &lw
, &lh
);
1168 m_gi
->m_rectAll
.height
= spacing
+ lh
;
1170 m_gi
->m_rectAll
.width
= lw
;
1172 m_gi
->m_rectLabel
.width
= lw
;
1173 m_gi
->m_rectLabel
.height
= lh
;
1176 if (item
->HasImage())
1179 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1180 m_gi
->m_rectIcon
.width
= w
+ 8;
1181 m_gi
->m_rectIcon
.height
= h
+ 8;
1183 if ( m_gi
->m_rectIcon
.width
> m_gi
->m_rectAll
.width
)
1184 m_gi
->m_rectAll
.width
= m_gi
->m_rectIcon
.width
;
1185 if ( m_gi
->m_rectIcon
.height
+ lh
> m_gi
->m_rectAll
.height
- 4 )
1186 m_gi
->m_rectAll
.height
= m_gi
->m_rectIcon
.height
+ lh
+ 4;
1189 if ( item
->HasText() )
1191 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectLabel
.width
;
1192 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectLabel
.height
;
1194 else // no text, highlight the icon
1196 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectIcon
.width
;
1197 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectIcon
.height
;
1202 s
= item
->GetTextForMeasuring();
1204 dc
->GetTextExtent( s
, &lw
, &lh
);
1208 m_gi
->m_rectLabel
.width
= lw
;
1209 m_gi
->m_rectLabel
.height
= lh
;
1211 m_gi
->m_rectAll
.width
= lw
;
1212 m_gi
->m_rectAll
.height
= lh
;
1214 if (item
->HasImage())
1217 m_owner
->GetImageSize( item
->GetImage(), w
, h
);
1218 m_gi
->m_rectIcon
.width
= w
;
1219 m_gi
->m_rectIcon
.height
= h
;
1221 m_gi
->m_rectAll
.width
+= 4 + w
;
1222 if (h
> m_gi
->m_rectAll
.height
)
1223 m_gi
->m_rectAll
.height
= h
;
1226 m_gi
->m_rectHighlight
.width
= m_gi
->m_rectAll
.width
;
1227 m_gi
->m_rectHighlight
.height
= m_gi
->m_rectAll
.height
;
1231 wxFAIL_MSG( _T("unexpected call to SetSize") );
1235 wxFAIL_MSG( _T("unknown mode") );
1239 void wxListLineData::SetPosition( int x
, int y
, int spacing
)
1241 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1242 wxCHECK_RET( node
, _T("no subitems at all??") );
1244 wxListItemData
*item
= node
->GetData();
1246 switch ( GetMode() )
1249 case wxLC_SMALL_ICON
:
1250 m_gi
->m_rectAll
.x
= x
;
1251 m_gi
->m_rectAll
.y
= y
;
1253 if ( item
->HasImage() )
1255 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 4 +
1256 (m_gi
->m_rectAll
.width
- m_gi
->m_rectIcon
.width
) / 2;
1257 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 4;
1260 if ( item
->HasText() )
1262 if (m_gi
->m_rectAll
.width
> spacing
)
1263 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1265 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2 + (spacing
/2) - (m_gi
->m_rectLabel
.width
/2);
1266 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ m_gi
->m_rectAll
.height
+ 2 - m_gi
->m_rectLabel
.height
;
1267 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectLabel
.x
- 2;
1268 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectLabel
.y
- 2;
1270 else // no text, highlight the icon
1272 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectIcon
.x
- 4;
1273 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectIcon
.y
- 4;
1278 m_gi
->m_rectAll
.x
= x
;
1279 m_gi
->m_rectAll
.y
= y
;
1281 m_gi
->m_rectHighlight
.x
= m_gi
->m_rectAll
.x
;
1282 m_gi
->m_rectHighlight
.y
= m_gi
->m_rectAll
.y
;
1283 m_gi
->m_rectLabel
.y
= m_gi
->m_rectAll
.y
+ 2;
1285 if (item
->HasImage())
1287 m_gi
->m_rectIcon
.x
= m_gi
->m_rectAll
.x
+ 2;
1288 m_gi
->m_rectIcon
.y
= m_gi
->m_rectAll
.y
+ 2;
1289 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 6 + m_gi
->m_rectIcon
.width
;
1293 m_gi
->m_rectLabel
.x
= m_gi
->m_rectAll
.x
+ 2;
1298 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1302 wxFAIL_MSG( _T("unknown mode") );
1306 void wxListLineData::InitItems( int num
)
1308 for (int i
= 0; i
< num
; i
++)
1309 m_items
.Append( new wxListItemData(m_owner
) );
1312 void wxListLineData::SetItem( int index
, const wxListItem
&info
)
1314 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1315 wxCHECK_RET( node
, _T("invalid column index in SetItem") );
1317 wxListItemData
*item
= node
->GetData();
1318 item
->SetItem( info
);
1321 void wxListLineData::GetItem( int index
, wxListItem
&info
)
1323 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1326 wxListItemData
*item
= node
->GetData();
1327 item
->GetItem( info
);
1331 wxString
wxListLineData::GetText(int index
) const
1335 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1338 wxListItemData
*item
= node
->GetData();
1339 s
= item
->GetText();
1345 void wxListLineData::SetText( int index
, const wxString s
)
1347 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1350 wxListItemData
*item
= node
->GetData();
1355 void wxListLineData::SetImage( int index
, int image
)
1357 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1358 wxCHECK_RET( node
, _T("invalid column index in SetImage()") );
1360 wxListItemData
*item
= node
->GetData();
1361 item
->SetImage(image
);
1364 int wxListLineData::GetImage( int index
) const
1366 wxListItemDataList::compatibility_iterator node
= m_items
.Item( index
);
1367 wxCHECK_MSG( node
, -1, _T("invalid column index in GetImage()") );
1369 wxListItemData
*item
= node
->GetData();
1370 return item
->GetImage();
1373 wxListItemAttr
*wxListLineData::GetAttr() const
1375 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1376 wxCHECK_MSG( node
, NULL
, _T("invalid column index in GetAttr()") );
1378 wxListItemData
*item
= node
->GetData();
1379 return item
->GetAttr();
1382 void wxListLineData::SetAttr(wxListItemAttr
*attr
)
1384 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1385 wxCHECK_RET( node
, _T("invalid column index in SetAttr()") );
1387 wxListItemData
*item
= node
->GetData();
1388 item
->SetAttr(attr
);
1391 bool wxListLineData::SetAttributes(wxDC
*dc
,
1392 const wxListItemAttr
*attr
,
1395 wxWindow
*listctrl
= m_owner
->GetParent();
1399 // don't use foreground colour for drawing highlighted items - this might
1400 // make them completely invisible (and there is no way to do bit
1401 // arithmetics on wxColour, unfortunately)
1405 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1409 if ( attr
&& attr
->HasTextColour() )
1411 colText
= attr
->GetTextColour();
1415 colText
= listctrl
->GetForegroundColour();
1419 dc
->SetTextForeground(colText
);
1423 if ( attr
&& attr
->HasFont() )
1425 font
= attr
->GetFont();
1429 font
= listctrl
->GetFont();
1435 bool hasBgCol
= attr
&& attr
->HasBackgroundColour();
1436 if ( highlighted
|| hasBgCol
)
1440 dc
->SetBrush( *m_owner
->GetHighlightBrush() );
1444 dc
->SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
1447 dc
->SetPen( *wxTRANSPARENT_PEN
);
1455 void wxListLineData::Draw( wxDC
*dc
)
1457 wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1458 wxCHECK_RET( node
, _T("no subitems at all??") );
1460 bool highlighted
= IsHighlighted();
1462 wxListItemAttr
*attr
= GetAttr();
1464 if ( SetAttributes(dc
, attr
, highlighted
) )
1466 dc
->DrawRectangle( m_gi
->m_rectHighlight
);
1469 // just for debugging to better see where the items are
1471 dc
->SetPen(*wxRED_PEN
);
1472 dc
->SetBrush(*wxTRANSPARENT_BRUSH
);
1473 dc
->DrawRectangle( m_gi
->m_rectAll
);
1474 dc
->SetPen(*wxGREEN_PEN
);
1475 dc
->DrawRectangle( m_gi
->m_rectIcon
);
1478 wxListItemData
*item
= node
->GetData();
1479 if (item
->HasImage())
1481 // centre the image inside our rectangle, this looks nicer when items
1482 // ae aligned in a row
1483 const wxRect
& rectIcon
= m_gi
->m_rectIcon
;
1485 m_owner
->DrawImage(item
->GetImage(), dc
, rectIcon
.x
, rectIcon
.y
);
1488 if (item
->HasText())
1490 const wxRect
& rectLabel
= m_gi
->m_rectLabel
;
1492 wxDCClipper
clipper(*dc
, rectLabel
);
1493 dc
->DrawText(item
->GetText(), rectLabel
.x
, rectLabel
.y
);
1497 void wxListLineData::DrawInReportMode( wxDC
*dc
,
1499 const wxRect
& rectHL
,
1502 // TODO: later we should support setting different attributes for
1503 // different columns - to do it, just add "col" argument to
1504 // GetAttr() and move these lines into the loop below
1505 wxListItemAttr
*attr
= GetAttr();
1506 if ( SetAttributes(dc
, attr
, highlighted
) )
1508 dc
->DrawRectangle( rectHL
);
1511 wxCoord x
= rect
.x
+ HEADER_OFFSET_X
,
1512 y
= rect
.y
+ (LINE_SPACING
+ EXTRA_HEIGHT
) / 2;
1515 for ( wxListItemDataList::compatibility_iterator node
= m_items
.GetFirst();
1517 node
= node
->GetNext(), col
++ )
1519 wxListItemData
*item
= node
->GetData();
1521 int width
= m_owner
->GetColumnWidth(col
);
1525 if ( item
->HasImage() )
1528 m_owner
->DrawImage( item
->GetImage(), dc
, xOld
, y
);
1529 m_owner
->GetImageSize( item
->GetImage(), ix
, iy
);
1531 ix
+= IMAGE_MARGIN_IN_REPORT_MODE
;
1537 wxDCClipper
clipper(*dc
, xOld
, y
, width
- 8, rect
.height
);
1539 if ( item
->HasText() )
1541 DrawTextFormatted(dc
, item
->GetText(), col
, xOld
, y
, width
- 8);
1546 void wxListLineData::DrawTextFormatted(wxDC
*dc
,
1547 const wxString
&text
,
1553 wxString drawntext
, ellipsis
;
1554 wxCoord w
, h
, base_w
;
1557 // determine if the string can fit inside the current width
1558 dc
->GetTextExtent(text
, &w
, &h
);
1561 // it can, draw it using the items alignment
1562 m_owner
->GetColumn(col
, item
);
1563 switch ( item
.GetAlign() )
1566 wxFAIL_MSG( _T("unknown list item format") );
1569 case wxLIST_FORMAT_LEFT
:
1573 case wxLIST_FORMAT_RIGHT
:
1577 case wxLIST_FORMAT_CENTER
:
1578 x
+= (width
- w
) / 2;
1582 dc
->DrawText(text
, x
, y
);
1584 else // otherwise, truncate and add an ellipsis if possible
1586 // determine the base width
1587 ellipsis
= wxString(wxT("..."));
1588 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1590 // continue until we have enough space or only one character left
1592 size_t len
= text
.Length();
1593 drawntext
= text
.Left(len
);
1596 dc
->GetTextExtent(drawntext
.Last(), &w_c
, &h_c
);
1597 drawntext
.RemoveLast();
1600 if (w
+ base_w
<= width
)
1604 // if still not enough space, remove ellipsis characters
1605 while (ellipsis
.Length() > 0 && w
+ base_w
> width
)
1607 ellipsis
= ellipsis
.Left(ellipsis
.Length() - 1);
1608 dc
->GetTextExtent(ellipsis
, &base_w
, &h
);
1611 // now draw the text
1612 dc
->DrawText(drawntext
, x
, y
);
1613 dc
->DrawText(ellipsis
, x
+ w
, y
);
1617 bool wxListLineData::Highlight( bool on
)
1619 wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") );
1621 if ( on
== m_highlighted
)
1629 void wxListLineData::ReverseHighlight( void )
1631 Highlight(!IsHighlighted());
1634 //-----------------------------------------------------------------------------
1635 // wxListHeaderWindow
1636 //-----------------------------------------------------------------------------
1638 IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow
,wxWindow
)
1640 BEGIN_EVENT_TABLE(wxListHeaderWindow
,wxWindow
)
1641 EVT_PAINT (wxListHeaderWindow::OnPaint
)
1642 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse
)
1643 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus
)
1646 void wxListHeaderWindow::Init()
1648 m_currentCursor
= (wxCursor
*) NULL
;
1649 m_isDragging
= false;
1653 wxListHeaderWindow::wxListHeaderWindow()
1657 m_owner
= (wxListMainWindow
*) NULL
;
1658 m_resizeCursor
= (wxCursor
*) NULL
;
1661 wxListHeaderWindow::wxListHeaderWindow( wxWindow
*win
,
1663 wxListMainWindow
*owner
,
1667 const wxString
&name
)
1668 : wxWindow( win
, id
, pos
, size
, style
, name
)
1673 m_resizeCursor
= new wxCursor( wxCURSOR_SIZEWE
);
1676 wxVisualAttributes attr
= wxPanel::GetClassDefaultAttributes();
1677 SetOwnForegroundColour( attr
.colFg
);
1678 SetOwnBackgroundColour( attr
.colBg
);
1680 SetOwnFont( attr
.font
);
1682 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
1683 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1685 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
1689 wxListHeaderWindow::~wxListHeaderWindow()
1691 delete m_resizeCursor
;
1694 #ifdef __WXUNIVERSAL__
1695 #include "wx/univ/renderer.h"
1696 #include "wx/univ/theme.h"
1699 // shift the DC origin to match the position of the main window horz
1700 // scrollbar: this allows us to always use logical coords
1701 void wxListHeaderWindow::AdjustDC(wxDC
& dc
)
1704 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1707 m_owner
->GetViewStart( &x
, NULL
);
1709 // account for the horz scrollbar offset
1710 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
1713 void wxListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1715 wxPaintDC
dc( this );
1722 dc
.SetFont( GetFont() );
1724 // width and height of the entire header window
1726 GetClientSize( &w
, &h
);
1727 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1729 dc
.SetBackgroundMode(wxTRANSPARENT
);
1731 dc
.SetTextForeground(GetForegroundColour());
1733 int x
= HEADER_OFFSET_X
;
1735 int numColumns
= m_owner
->GetColumnCount();
1737 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1739 m_owner
->GetColumn( i
, item
);
1740 int wCol
= item
.m_width
;
1742 // the width of the rect to draw: make it smaller to fit entirely
1743 // inside the column rect
1746 wxRendererNative::Get().DrawHeaderButton
1750 wxRect(x
, HEADER_OFFSET_Y
, cw
, h
- 2),
1751 m_parent
->IsEnabled() ? 0
1752 : wxCONTROL_DISABLED
1755 // see if we have enough space for the column label
1757 // for this we need the width of the text
1760 dc
.GetTextExtent(item
.GetText(), &wLabel
, &hLabel
);
1761 wLabel
+= 2*EXTRA_WIDTH
;
1763 // and the width of the icon, if any
1764 static const int MARGIN_BETWEEN_TEXT_AND_ICON
= 2;
1765 int ix
= 0, // init them just to suppress the compiler warnings
1767 const int image
= item
.m_image
;
1768 wxImageListType
*imageList
;
1771 imageList
= m_owner
->m_small_image_list
;
1774 imageList
->GetSize(image
, ix
, iy
);
1775 wLabel
+= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1783 // ignore alignment if there is not enough space anyhow
1785 switch ( wLabel
< cw
? item
.GetAlign() : wxLIST_FORMAT_LEFT
)
1788 wxFAIL_MSG( _T("unknown list item format") );
1791 case wxLIST_FORMAT_LEFT
:
1795 case wxLIST_FORMAT_RIGHT
:
1796 xAligned
= x
+ cw
- wLabel
;
1799 case wxLIST_FORMAT_CENTER
:
1800 xAligned
= x
+ (cw
- wLabel
) / 2;
1805 // if we have an image, draw it on the right of the label
1812 xAligned
+ wLabel
- ix
- MARGIN_BETWEEN_TEXT_AND_ICON
,
1813 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1814 wxIMAGELIST_DRAW_TRANSPARENT
1817 cw
-= ix
+ MARGIN_BETWEEN_TEXT_AND_ICON
;
1820 // draw the text clipping it so that it doesn't overwrite the column
1822 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1824 dc
.DrawText( item
.GetText(),
1825 xAligned
+ EXTRA_WIDTH
, h
/ 2 - hLabel
/ 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT );
1833 void wxListHeaderWindow::DrawCurrent()
1835 int x1
= m_currentX
;
1837 m_owner
->ClientToScreen( &x1
, &y1
);
1839 int x2
= m_currentX
;
1841 m_owner
->GetClientSize( NULL
, &y2
);
1842 m_owner
->ClientToScreen( &x2
, &y2
);
1845 dc
.SetLogicalFunction( wxINVERT
);
1846 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1847 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1851 dc
.DrawLine( x1
, y1
, x2
, y2
);
1853 dc
.SetLogicalFunction( wxCOPY
);
1855 dc
.SetPen( wxNullPen
);
1856 dc
.SetBrush( wxNullBrush
);
1859 void wxListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1861 // we want to work with logical coords
1863 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1864 int y
= event
.GetY();
1868 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
, event
.GetPosition());
1870 // we don't draw the line beyond our window, but we allow dragging it
1873 GetClientSize( &w
, NULL
);
1874 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1877 // erase the line if it was drawn
1878 if ( m_currentX
< w
)
1881 if (event
.ButtonUp())
1884 m_isDragging
= false;
1886 m_owner
->SetColumnWidth( m_column
, m_currentX
- m_minX
);
1887 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
, event
.GetPosition());
1894 m_currentX
= m_minX
+ 7;
1896 // draw in the new location
1897 if ( m_currentX
< w
)
1901 else // not dragging
1904 bool hit_border
= false;
1906 // end of the current column
1909 // find the column where this event occured
1911 countCol
= m_owner
->GetColumnCount();
1912 for (col
= 0; col
< countCol
; col
++)
1914 xpos
+= m_owner
->GetColumnWidth( col
);
1917 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1919 // near the column border
1926 // inside the column
1933 if ( col
== countCol
)
1936 if (event
.LeftDown() || event
.RightUp())
1938 if (hit_border
&& event
.LeftDown())
1940 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1941 event
.GetPosition()) )
1943 m_isDragging
= true;
1948 //else: column resizing was vetoed by the user code
1950 else // click on a column
1952 SendListEvent( event
.LeftDown()
1953 ? wxEVT_COMMAND_LIST_COL_CLICK
1954 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1955 event
.GetPosition());
1958 else if (event
.Moving())
1963 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1964 m_currentCursor
= m_resizeCursor
;
1968 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1969 m_currentCursor
= wxSTANDARD_CURSOR
;
1973 SetCursor(*m_currentCursor
);
1978 void wxListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1980 m_owner
->SetFocus();
1984 bool wxListHeaderWindow::SendListEvent(wxEventType type
, wxPoint pos
)
1986 wxWindow
*parent
= GetParent();
1987 wxListEvent
le( type
, parent
->GetId() );
1988 le
.SetEventObject( parent
);
1989 le
.m_pointDrag
= pos
;
1991 // the position should be relative to the parent window, not
1992 // this one for compatibility with MSW and common sense: the
1993 // user code doesn't know anything at all about this header
1994 // window, so why should it get positions relative to it?
1995 le
.m_pointDrag
.y
-= GetSize().y
;
1997 le
.m_col
= m_column
;
1998 return !parent
->GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
2001 //-----------------------------------------------------------------------------
2002 // wxListRenameTimer (internal)
2003 //-----------------------------------------------------------------------------
2005 wxListRenameTimer::wxListRenameTimer( wxListMainWindow
*owner
)
2010 void wxListRenameTimer::Notify()
2012 m_owner
->OnRenameTimer();
2015 //-----------------------------------------------------------------------------
2016 // wxListTextCtrl (internal)
2017 //-----------------------------------------------------------------------------
2019 BEGIN_EVENT_TABLE(wxListTextCtrl
,wxTextCtrl
)
2020 EVT_CHAR (wxListTextCtrl::OnChar
)
2021 EVT_KEY_UP (wxListTextCtrl::OnKeyUp
)
2022 EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus
)
2025 wxListTextCtrl::wxListTextCtrl(wxListMainWindow
*owner
, size_t itemEdit
)
2026 : m_startValue(owner
->GetItemText(itemEdit
)),
2027 m_itemEdited(itemEdit
)
2032 wxRect rectLabel
= owner
->GetLineLabelRect(itemEdit
);
2034 m_owner
->CalcScrolledPosition(rectLabel
.x
, rectLabel
.y
,
2035 &rectLabel
.x
, &rectLabel
.y
);
2037 (void)Create(owner
, wxID_ANY
, m_startValue
,
2038 wxPoint(rectLabel
.x
-4,rectLabel
.y
-4),
2039 wxSize(rectLabel
.width
+11,rectLabel
.height
+8));
2042 void wxListTextCtrl::Finish()
2046 wxPendingDelete
.Append(this);
2050 m_owner
->SetFocus();
2054 bool wxListTextCtrl::AcceptChanges()
2056 const wxString value
= GetValue();
2058 if ( value
== m_startValue
)
2060 // nothing changed, always accept
2064 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
2066 // vetoed by the user
2070 // accepted, do rename the item
2071 m_owner
->SetItemText(m_itemEdited
, value
);
2076 void wxListTextCtrl::OnChar( wxKeyEvent
&event
)
2078 switch ( event
.m_keyCode
)
2081 if ( AcceptChanges() )
2083 // Close the text control, changes were accepted
2086 // else do nothing, do not accept and do not close
2092 m_owner
->OnRenameCancelled( m_itemEdited
);
2100 void wxListTextCtrl::OnKeyUp( wxKeyEvent
&event
)
2108 // auto-grow the textctrl:
2109 wxSize parentSize
= m_owner
->GetSize();
2110 wxPoint myPos
= GetPosition();
2111 wxSize mySize
= GetSize();
2113 GetTextExtent(GetValue() + _T("MM"), &sx
, &sy
);
2114 if (myPos
.x
+ sx
> parentSize
.x
)
2115 sx
= parentSize
.x
- myPos
.x
;
2118 SetSize(sx
, wxDefaultCoord
);
2123 void wxListTextCtrl::OnKillFocus( wxFocusEvent
&event
)
2127 // We must finish regardless of success, otherwise we'll get
2131 if ( !AcceptChanges() )
2132 m_owner
->OnRenameCancelled( m_itemEdited
);
2135 // We must let the native text control handle focus, too, otherwise
2136 // it could have problems with the cursor (e.g., in wxGTK):
2140 //-----------------------------------------------------------------------------
2142 //-----------------------------------------------------------------------------
2144 IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow
,wxScrolledWindow
)
2146 BEGIN_EVENT_TABLE(wxListMainWindow
,wxScrolledWindow
)
2147 EVT_PAINT (wxListMainWindow::OnPaint
)
2148 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse
)
2149 EVT_CHAR (wxListMainWindow::OnChar
)
2150 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown
)
2151 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus
)
2152 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus
)
2153 EVT_SCROLLWIN (wxListMainWindow::OnScroll
)
2156 void wxListMainWindow::Init()
2161 m_lineTo
= (size_t)-1;
2167 m_small_image_list
= (wxImageListType
*) NULL
;
2168 m_normal_image_list
= (wxImageListType
*) NULL
;
2170 m_small_spacing
= 30;
2171 m_normal_spacing
= 40;
2175 m_isCreated
= false;
2177 m_lastOnSame
= false;
2178 m_renameTimer
= new wxListRenameTimer( this );
2182 m_lineBeforeLastClicked
= (size_t)-1;
2187 wxListMainWindow::wxListMainWindow()
2192 m_highlightUnfocusedBrush
= (wxBrush
*) NULL
;
2195 wxListMainWindow::wxListMainWindow( wxWindow
*parent
,
2200 const wxString
&name
)
2201 : wxScrolledWindow( parent
, id
, pos
, size
,
2202 style
| wxHSCROLL
| wxVSCROLL
, name
)
2206 m_highlightBrush
= new wxBrush
2208 wxSystemSettings::GetColour
2210 wxSYS_COLOUR_HIGHLIGHT
2215 m_highlightUnfocusedBrush
= new wxBrush
2217 wxSystemSettings::GetColour
2219 wxSYS_COLOUR_BTNSHADOW
2227 SetScrollbars( 0, 0, 0, 0, 0, 0 );
2229 wxVisualAttributes attr
= wxGenericListCtrl::GetClassDefaultAttributes();
2230 SetOwnForegroundColour( attr
.colFg
);
2231 SetOwnBackgroundColour( attr
.colBg
);
2233 SetOwnFont( attr
.font
);
2236 wxListMainWindow::~wxListMainWindow()
2239 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
2241 delete m_highlightBrush
;
2242 delete m_highlightUnfocusedBrush
;
2244 delete m_renameTimer
;
2247 void wxListMainWindow::CacheLineData(size_t line
)
2249 wxGenericListCtrl
*listctrl
= GetListCtrl();
2251 wxListLineData
*ld
= GetDummyLine();
2253 size_t countCol
= GetColumnCount();
2254 for ( size_t col
= 0; col
< countCol
; col
++ )
2256 ld
->SetText(col
, listctrl
->OnGetItemText(line
, col
));
2259 ld
->SetImage(listctrl
->OnGetItemImage(line
));
2260 ld
->SetAttr(listctrl
->OnGetItemAttr(line
));
2263 wxListLineData
*wxListMainWindow::GetDummyLine() const
2265 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2267 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2269 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2271 // we need to recreate the dummy line if the number of columns in the
2272 // control changed as it would have the incorrect number of fields
2274 if ( !m_lines
.IsEmpty() &&
2275 m_lines
[0].m_items
.GetCount() != (size_t)GetColumnCount() )
2277 self
->m_lines
.Clear();
2280 if ( m_lines
.IsEmpty() )
2282 wxListLineData
*line
= new wxListLineData(self
);
2283 self
->m_lines
.Add(line
);
2285 // don't waste extra memory -- there never going to be anything
2286 // else/more in this array
2287 self
->m_lines
.Shrink();
2293 // ----------------------------------------------------------------------------
2294 // line geometry (report mode only)
2295 // ----------------------------------------------------------------------------
2297 wxCoord
wxListMainWindow::GetLineHeight() const
2299 // we cache the line height as calling GetTextExtent() is slow
2300 if ( !m_lineHeight
)
2302 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
2304 wxClientDC
dc( self
);
2305 dc
.SetFont( GetFont() );
2308 dc
.GetTextExtent(_T("H"), NULL
, &y
);
2310 if ( m_small_image_list
&& m_small_image_list
->GetImageCount() )
2314 m_small_image_list
->GetSize(0, iw
, ih
);
2319 self
->m_lineHeight
= y
+ LINE_SPACING
;
2322 return m_lineHeight
;
2325 wxCoord
wxListMainWindow::GetLineY(size_t line
) const
2327 wxASSERT_MSG( InReportView(), _T("only works in report mode") );
2329 return LINE_SPACING
+ line
*GetLineHeight();
2332 wxRect
wxListMainWindow::GetLineRect(size_t line
) const
2334 if ( !InReportView() )
2335 return GetLine(line
)->m_gi
->m_rectAll
;
2338 rect
.x
= HEADER_OFFSET_X
;
2339 rect
.y
= GetLineY(line
);
2340 rect
.width
= GetHeaderWidth();
2341 rect
.height
= GetLineHeight();
2346 wxRect
wxListMainWindow::GetLineLabelRect(size_t line
) const
2348 if ( !InReportView() )
2349 return GetLine(line
)->m_gi
->m_rectLabel
;
2352 rect
.x
= HEADER_OFFSET_X
;
2353 rect
.y
= GetLineY(line
);
2354 rect
.width
= GetColumnWidth(0);
2355 rect
.height
= GetLineHeight();
2360 wxRect
wxListMainWindow::GetLineIconRect(size_t line
) const
2362 if ( !InReportView() )
2363 return GetLine(line
)->m_gi
->m_rectIcon
;
2365 wxListLineData
*ld
= GetLine(line
);
2366 wxASSERT_MSG( ld
->HasImage(), _T("should have an image") );
2369 rect
.x
= HEADER_OFFSET_X
;
2370 rect
.y
= GetLineY(line
);
2371 GetImageSize(ld
->GetImage(), rect
.width
, rect
.height
);
2376 wxRect
wxListMainWindow::GetLineHighlightRect(size_t line
) const
2378 return InReportView() ? GetLineRect(line
)
2379 : GetLine(line
)->m_gi
->m_rectHighlight
;
2382 long wxListMainWindow::HitTestLine(size_t line
, int x
, int y
) const
2384 wxASSERT_MSG( line
< GetItemCount(), _T("invalid line in HitTestLine") );
2386 wxListLineData
*ld
= GetLine(line
);
2388 if ( ld
->HasImage() && GetLineIconRect(line
).Inside(x
, y
) )
2389 return wxLIST_HITTEST_ONITEMICON
;
2391 // VS: Testing for "ld->HasText() || InReportView()" instead of
2392 // "ld->HasText()" is needed to make empty lines in report view
2394 if ( ld
->HasText() || InReportView() )
2396 wxRect rect
= InReportView() ? GetLineRect(line
)
2397 : GetLineLabelRect(line
);
2399 if ( rect
.Inside(x
, y
) )
2400 return wxLIST_HITTEST_ONITEMLABEL
;
2406 // ----------------------------------------------------------------------------
2407 // highlight (selection) handling
2408 // ----------------------------------------------------------------------------
2410 bool wxListMainWindow::IsHighlighted(size_t line
) const
2414 return m_selStore
.IsSelected(line
);
2418 wxListLineData
*ld
= GetLine(line
);
2419 wxCHECK_MSG( ld
, false, _T("invalid index in IsHighlighted") );
2421 return ld
->IsHighlighted();
2425 void wxListMainWindow::HighlightLines( size_t lineFrom
,
2431 wxArrayInt linesChanged
;
2432 if ( !m_selStore
.SelectRange(lineFrom
, lineTo
, highlight
,
2435 // meny items changed state, refresh everything
2436 RefreshLines(lineFrom
, lineTo
);
2438 else // only a few items changed state, refresh only them
2440 size_t count
= linesChanged
.GetCount();
2441 for ( size_t n
= 0; n
< count
; n
++ )
2443 RefreshLine(linesChanged
[n
]);
2447 else // iterate over all items in non report view
2449 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2451 if ( HighlightLine(line
, highlight
) )
2459 bool wxListMainWindow::HighlightLine( size_t line
, bool highlight
)
2465 changed
= m_selStore
.SelectItem(line
, highlight
);
2469 wxListLineData
*ld
= GetLine(line
);
2470 wxCHECK_MSG( ld
, false, _T("invalid index in HighlightLine") );
2472 changed
= ld
->Highlight(highlight
);
2477 SendNotify( line
, highlight
? wxEVT_COMMAND_LIST_ITEM_SELECTED
2478 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2484 void wxListMainWindow::RefreshLine( size_t line
)
2486 if ( InReportView() )
2488 size_t visibleFrom
, visibleTo
;
2489 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2491 if ( line
< visibleFrom
|| line
> visibleTo
)
2495 wxRect rect
= GetLineRect(line
);
2497 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2498 RefreshRect( rect
);
2501 void wxListMainWindow::RefreshLines( size_t lineFrom
, size_t lineTo
)
2503 // we suppose that they are ordered by caller
2504 wxASSERT_MSG( lineFrom
<= lineTo
, _T("indices in disorder") );
2506 wxASSERT_MSG( lineTo
< GetItemCount(), _T("invalid line range") );
2508 if ( InReportView() )
2510 size_t visibleFrom
, visibleTo
;
2511 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2513 if ( lineFrom
< visibleFrom
)
2514 lineFrom
= visibleFrom
;
2515 if ( lineTo
> visibleTo
)
2520 rect
.y
= GetLineY(lineFrom
);
2521 rect
.width
= GetClientSize().x
;
2522 rect
.height
= GetLineY(lineTo
) - rect
.y
+ GetLineHeight();
2524 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2525 RefreshRect( rect
);
2529 // TODO: this should be optimized...
2530 for ( size_t line
= lineFrom
; line
<= lineTo
; line
++ )
2537 void wxListMainWindow::RefreshAfter( size_t lineFrom
)
2539 if ( InReportView() )
2541 size_t visibleFrom
, visibleTo
;
2542 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2544 if ( lineFrom
< visibleFrom
)
2545 lineFrom
= visibleFrom
;
2546 else if ( lineFrom
> visibleTo
)
2551 rect
.y
= GetLineY(lineFrom
);
2552 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
2554 wxSize size
= GetClientSize();
2555 rect
.width
= size
.x
;
2556 // refresh till the bottom of the window
2557 rect
.height
= size
.y
- rect
.y
;
2559 RefreshRect( rect
);
2563 // TODO: how to do it more efficiently?
2568 void wxListMainWindow::RefreshSelected()
2574 if ( InReportView() )
2576 GetVisibleLinesRange(&from
, &to
);
2581 to
= GetItemCount() - 1;
2584 if ( HasCurrent() && m_current
>= from
&& m_current
<= to
)
2586 RefreshLine(m_current
);
2589 for ( size_t line
= from
; line
<= to
; line
++ )
2591 // NB: the test works as expected even if m_current == -1
2592 if ( line
!= m_current
&& IsHighlighted(line
) )
2599 void wxListMainWindow::Freeze()
2604 void wxListMainWindow::Thaw()
2606 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen list control?") );
2608 if ( !--m_freezeCount
)
2614 void wxListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2616 // Note: a wxPaintDC must be constructed even if no drawing is
2617 // done (a Windows requirement).
2618 wxPaintDC
dc( this );
2620 if ( IsEmpty() || m_freezeCount
)
2622 // nothing to draw or not the moment to draw it
2628 // delay the repainting until we calculate all the items positions
2635 CalcScrolledPosition( 0, 0, &dev_x
, &dev_y
);
2639 dc
.SetFont( GetFont() );
2641 if ( InReportView() )
2643 int lineHeight
= GetLineHeight();
2645 size_t visibleFrom
, visibleTo
;
2646 GetVisibleLinesRange(&visibleFrom
, &visibleTo
);
2649 wxCoord xOrig
, yOrig
;
2650 CalcUnscrolledPosition(0, 0, &xOrig
, &yOrig
);
2652 // tell the caller cache to cache the data
2655 wxListEvent
evCache(wxEVT_COMMAND_LIST_CACHE_HINT
,
2656 GetParent()->GetId());
2657 evCache
.SetEventObject( GetParent() );
2658 evCache
.m_oldItemIndex
= visibleFrom
;
2659 evCache
.m_itemIndex
= visibleTo
;
2660 GetParent()->GetEventHandler()->ProcessEvent( evCache
);
2663 for ( size_t line
= visibleFrom
; line
<= visibleTo
; line
++ )
2665 rectLine
= GetLineRect(line
);
2667 if ( !IsExposed(rectLine
.x
- xOrig
, rectLine
.y
- yOrig
,
2668 rectLine
.width
, rectLine
.height
) )
2670 // don't redraw unaffected lines to avoid flicker
2674 GetLine(line
)->DrawInReportMode( &dc
,
2676 GetLineHighlightRect(line
),
2677 IsHighlighted(line
) );
2680 if ( HasFlag(wxLC_HRULES
) )
2682 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2683 wxSize clientSize
= GetClientSize();
2685 // Don't draw the first one
2686 for ( size_t i
= visibleFrom
+1; i
<= visibleTo
; i
++ )
2689 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2690 dc
.DrawLine(0 - dev_x
, i
*lineHeight
,
2691 clientSize
.x
- dev_x
, i
*lineHeight
);
2694 // Draw last horizontal rule
2695 if ( visibleTo
== GetItemCount() - 1 )
2698 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2699 dc
.DrawLine(0 - dev_x
, (m_lineTo
+1)*lineHeight
,
2700 clientSize
.x
- dev_x
, (m_lineTo
+1)*lineHeight
);
2704 // Draw vertical rules if required
2705 if ( HasFlag(wxLC_VRULES
) && !IsEmpty() )
2707 wxPen
pen(GetRuleColour(), 1, wxSOLID
);
2709 wxRect firstItemRect
;
2710 wxRect lastItemRect
;
2711 GetItemRect(visibleFrom
, firstItemRect
);
2712 GetItemRect(visibleTo
, lastItemRect
);
2713 int x
= firstItemRect
.GetX();
2715 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2716 for (int col
= 0; col
< GetColumnCount(); col
++)
2718 int colWidth
= GetColumnWidth(col
);
2720 dc
.DrawLine(x
- dev_x
- 2, firstItemRect
.GetY() - 1 - dev_y
,
2721 x
- dev_x
- 2, lastItemRect
.GetBottom() + 1 - dev_y
);
2727 size_t count
= GetItemCount();
2728 for ( size_t i
= 0; i
< count
; i
++ )
2730 GetLine(i
)->Draw( &dc
);
2735 // Don't draw rect outline under Mac at all.
2740 dc
.SetPen( *wxBLACK_PEN
);
2741 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
2742 dc
.DrawRectangle( GetLineHighlightRect(m_current
) );
2750 void wxListMainWindow::HighlightAll( bool on
)
2752 if ( IsSingleSel() )
2754 wxASSERT_MSG( !on
, _T("can't do this in a single sel control") );
2756 // we just have one item to turn off
2757 if ( HasCurrent() && IsHighlighted(m_current
) )
2759 HighlightLine(m_current
, false);
2760 RefreshLine(m_current
);
2765 HighlightLines(0, GetItemCount() - 1, on
);
2769 void wxListMainWindow::SendNotify( size_t line
,
2770 wxEventType command
,
2773 wxListEvent
le( command
, GetParent()->GetId() );
2774 le
.SetEventObject( GetParent() );
2775 le
.m_itemIndex
= line
;
2777 // set only for events which have position
2778 if ( point
!= wxDefaultPosition
)
2779 le
.m_pointDrag
= point
;
2781 // don't try to get the line info for virtual list controls: the main
2782 // program has it anyhow and if we did it would result in accessing all
2783 // the lines, even those which are not visible now and this is precisely
2784 // what we're trying to avoid
2785 if ( !IsVirtual() && (command
!= wxEVT_COMMAND_LIST_DELETE_ITEM
) )
2787 if ( line
!= (size_t)-1 )
2789 GetLine(line
)->GetItem( 0, le
.m_item
);
2791 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2793 //else: there may be no more such item
2795 GetParent()->GetEventHandler()->ProcessEvent( le
);
2798 void wxListMainWindow::ChangeCurrent(size_t current
)
2800 m_current
= current
;
2802 SendNotify(current
, wxEVT_COMMAND_LIST_ITEM_FOCUSED
);
2805 void wxListMainWindow::EditLabel( long item
)
2807 wxCHECK_RET( (item
>= 0) && ((size_t)item
< GetItemCount()),
2808 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2810 size_t itemEdit
= (size_t)item
;
2812 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
2813 le
.SetEventObject( GetParent() );
2814 le
.m_itemIndex
= item
;
2815 wxListLineData
*data
= GetLine(itemEdit
);
2816 wxCHECK_RET( data
, _T("invalid index in EditLabel()") );
2817 data
->GetItem( 0, le
.m_item
);
2818 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
2820 // vetoed by user code
2824 // We have to call this here because the label in question might just have
2825 // been added and no screen update taken place.
2829 wxListTextCtrl
*text
= new wxListTextCtrl(this, itemEdit
);
2834 void wxListMainWindow::OnRenameTimer()
2836 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2838 EditLabel( m_current
);
2841 bool wxListMainWindow::OnRenameAccept(size_t itemEdit
, const wxString
& value
)
2843 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2844 le
.SetEventObject( GetParent() );
2845 le
.m_itemIndex
= itemEdit
;
2847 wxListLineData
*data
= GetLine(itemEdit
);
2848 wxCHECK_MSG( data
, false, _T("invalid index in OnRenameAccept()") );
2850 data
->GetItem( 0, le
.m_item
);
2851 le
.m_item
.m_text
= value
;
2852 return !GetParent()->GetEventHandler()->ProcessEvent( le
) ||
2856 void wxListMainWindow::OnRenameCancelled(size_t itemEdit
)
2858 // let owner know that the edit was cancelled
2859 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2861 le
.SetEditCanceled(true);
2863 le
.SetEventObject( GetParent() );
2864 le
.m_itemIndex
= itemEdit
;
2866 wxListLineData
*data
= GetLine(itemEdit
);
2867 wxCHECK_RET( data
, _T("invalid index in OnRenameCancelled()") );
2869 data
->GetItem( 0, le
.m_item
);
2871 GetEventHandler()->ProcessEvent( le
);
2874 void wxListMainWindow::OnMouse( wxMouseEvent
&event
)
2876 event
.SetEventObject( GetParent() );
2877 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
2880 if ( !HasCurrent() || IsEmpty() )
2886 if ( !(event
.Dragging() || event
.ButtonDown() || event
.LeftUp() ||
2887 event
.ButtonDClick()) )
2890 int x
= event
.GetX();
2891 int y
= event
.GetY();
2892 CalcUnscrolledPosition( x
, y
, &x
, &y
);
2894 // where did we hit it (if we did)?
2897 size_t count
= GetItemCount(),
2900 if ( InReportView() )
2902 current
= y
/ GetLineHeight();
2903 if ( current
< count
)
2904 hitResult
= HitTestLine(current
, x
, y
);
2908 // TODO: optimize it too! this is less simple than for report view but
2909 // enumerating all items is still not a way to do it!!
2910 for ( current
= 0; current
< count
; current
++ )
2912 hitResult
= HitTestLine(current
, x
, y
);
2918 if (event
.Dragging())
2920 if (m_dragCount
== 0)
2922 // we have to report the raw, physical coords as we want to be
2923 // able to call HitTest(event.m_pointDrag) from the user code to
2924 // get the item being dragged
2925 m_dragStart
= event
.GetPosition();
2930 if (m_dragCount
!= 3)
2933 int command
= event
.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
2934 : wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2936 wxListEvent
le( command
, GetParent()->GetId() );
2937 le
.SetEventObject( GetParent() );
2938 le
.m_itemIndex
= current
;
2939 le
.m_pointDrag
= m_dragStart
;
2940 GetParent()->GetEventHandler()->ProcessEvent( le
);
2951 // outside of any item
2955 bool forceClick
= false;
2956 if (event
.ButtonDClick())
2958 m_renameTimer
->Stop();
2959 m_lastOnSame
= false;
2961 if ( current
== m_lineLastClicked
)
2963 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2969 // the first click was on another item, so don't interpret this as
2970 // a double click, but as a simple click instead
2975 if (event
.LeftUp() && m_lastOnSame
)
2977 if ((current
== m_current
) &&
2978 (hitResult
== wxLIST_HITTEST_ONITEMLABEL
) &&
2979 HasFlag(wxLC_EDIT_LABELS
) )
2981 m_renameTimer
->Start( 100, true );
2983 m_lastOnSame
= false;
2985 else if (event
.RightDown())
2987 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
,
2988 event
.GetPosition() );
2990 else if (event
.MiddleDown())
2992 SendNotify( current
, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
);
2994 else if ( event
.LeftDown() || forceClick
)
2996 m_lineBeforeLastClicked
= m_lineLastClicked
;
2997 m_lineLastClicked
= current
;
2999 size_t oldCurrent
= m_current
;
3000 bool cmdModifierDown
= event
.CmdDown();
3001 if ( IsSingleSel() || !(cmdModifierDown
|| event
.ShiftDown()) )
3003 HighlightAll( false );
3005 ChangeCurrent(current
);
3007 ReverseHighlight(m_current
);
3009 else // multi sel & either ctrl or shift is down
3011 if (cmdModifierDown
)
3013 ChangeCurrent(current
);
3015 ReverseHighlight(m_current
);
3017 else if (event
.ShiftDown())
3019 ChangeCurrent(current
);
3021 size_t lineFrom
= oldCurrent
,
3024 if ( lineTo
< lineFrom
)
3027 lineFrom
= m_current
;
3030 HighlightLines(lineFrom
, lineTo
);
3032 else // !ctrl, !shift
3034 // test in the enclosing if should make it impossible
3035 wxFAIL_MSG( _T("how did we get here?") );
3039 if (m_current
!= oldCurrent
)
3041 RefreshLine( oldCurrent
);
3044 // forceClick is only set if the previous click was on another item
3045 m_lastOnSame
= !forceClick
&& (m_current
== oldCurrent
);
3049 void wxListMainWindow::MoveToItem(size_t item
)
3051 if ( item
== (size_t)-1 )
3054 wxRect rect
= GetLineRect(item
);
3056 int client_w
, client_h
;
3057 GetClientSize( &client_w
, &client_h
);
3059 const int hLine
= GetLineHeight();
3061 int view_x
= SCROLL_UNIT_X
*GetScrollPos( wxHORIZONTAL
);
3062 int view_y
= hLine
*GetScrollPos( wxVERTICAL
);
3064 if ( InReportView() )
3066 // the next we need the range of lines shown it might be different, so
3068 ResetVisibleLinesRange();
3070 if (rect
.y
< view_y
)
3071 Scroll( -1, rect
.y
/hLine
);
3072 if (rect
.y
+rect
.height
+5 > view_y
+client_h
)
3073 Scroll( -1, (rect
.y
+rect
.height
-client_h
+hLine
)/hLine
);
3077 if (rect
.x
-view_x
< 5)
3078 Scroll( (rect
.x
-5)/SCROLL_UNIT_X
, -1 );
3079 if (rect
.x
+rect
.width
-5 > view_x
+client_w
)
3080 Scroll( (rect
.x
+rect
.width
-client_w
+SCROLL_UNIT_X
)/SCROLL_UNIT_X
, -1 );
3084 // ----------------------------------------------------------------------------
3085 // keyboard handling
3086 // ----------------------------------------------------------------------------
3088 void wxListMainWindow::OnArrowChar(size_t newCurrent
, const wxKeyEvent
& event
)
3090 wxCHECK_RET( newCurrent
< (size_t)GetItemCount(),
3091 _T("invalid item index in OnArrowChar()") );
3093 size_t oldCurrent
= m_current
;
3095 // in single selection we just ignore Shift as we can't select several
3097 if ( event
.ShiftDown() && !IsSingleSel() )
3099 ChangeCurrent(newCurrent
);
3101 // refresh the old focus to remove it
3102 RefreshLine( oldCurrent
);
3104 // select all the items between the old and the new one
3105 if ( oldCurrent
> newCurrent
)
3107 newCurrent
= oldCurrent
;
3108 oldCurrent
= m_current
;
3111 HighlightLines(oldCurrent
, newCurrent
);
3115 // all previously selected items are unselected unless ctrl is held
3116 if ( !event
.ControlDown() )
3117 HighlightAll(false);
3119 ChangeCurrent(newCurrent
);
3121 // refresh the old focus to remove it
3122 RefreshLine( oldCurrent
);
3124 if ( !event
.ControlDown() )
3126 HighlightLine( m_current
, true );
3130 RefreshLine( m_current
);
3135 void wxListMainWindow::OnKeyDown( wxKeyEvent
&event
)
3137 wxWindow
*parent
= GetParent();
3139 /* we propagate the key event up */
3140 wxKeyEvent
ke( wxEVT_KEY_DOWN
);
3141 ke
.m_shiftDown
= event
.m_shiftDown
;
3142 ke
.m_controlDown
= event
.m_controlDown
;
3143 ke
.m_altDown
= event
.m_altDown
;
3144 ke
.m_metaDown
= event
.m_metaDown
;
3145 ke
.m_keyCode
= event
.m_keyCode
;
3148 ke
.SetEventObject( parent
);
3149 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3154 void wxListMainWindow::OnChar( wxKeyEvent
&event
)
3156 wxWindow
*parent
= GetParent();
3158 /* we send a list_key event up */
3161 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetParent()->GetId() );
3162 le
.m_itemIndex
= m_current
;
3163 GetLine(m_current
)->GetItem( 0, le
.m_item
);
3164 le
.m_code
= event
.GetKeyCode();
3165 le
.SetEventObject( parent
);
3166 parent
->GetEventHandler()->ProcessEvent( le
);
3169 /* we propagate the char event up */
3170 wxKeyEvent
ke( wxEVT_CHAR
);
3171 ke
.m_shiftDown
= event
.m_shiftDown
;
3172 ke
.m_controlDown
= event
.m_controlDown
;
3173 ke
.m_altDown
= event
.m_altDown
;
3174 ke
.m_metaDown
= event
.m_metaDown
;
3175 ke
.m_keyCode
= event
.m_keyCode
;
3178 ke
.SetEventObject( parent
);
3179 if (parent
->GetEventHandler()->ProcessEvent( ke
)) return;
3181 if (event
.GetKeyCode() == WXK_TAB
)
3183 wxNavigationKeyEvent nevent
;
3184 nevent
.SetWindowChange( event
.ControlDown() );
3185 nevent
.SetDirection( !event
.ShiftDown() );
3186 nevent
.SetEventObject( GetParent()->GetParent() );
3187 nevent
.SetCurrentFocus( m_parent
);
3188 if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent
))
3192 /* no item -> nothing to do */
3199 switch (event
.GetKeyCode())
3202 if ( m_current
> 0 )
3203 OnArrowChar( m_current
- 1, event
);
3207 if ( m_current
< (size_t)GetItemCount() - 1 )
3208 OnArrowChar( m_current
+ 1, event
);
3213 OnArrowChar( GetItemCount() - 1, event
);
3218 OnArrowChar( 0, event
);
3223 int steps
= InReportView() ? m_linesPerPage
- 1 : m_current
% m_linesPerPage
;
3225 int index
= m_current
- steps
;
3229 OnArrowChar( index
, event
);
3235 int steps
= InReportView()
3236 ? m_linesPerPage
- 1
3237 : m_linesPerPage
- (m_current
% m_linesPerPage
) - 1;
3239 size_t index
= m_current
+ steps
;
3240 size_t count
= GetItemCount();
3241 if ( index
>= count
)
3244 OnArrowChar( index
, event
);
3249 if ( !InReportView() )
3251 int index
= m_current
- m_linesPerPage
;
3255 OnArrowChar( index
, event
);
3260 if ( !InReportView() )
3262 size_t index
= m_current
+ m_linesPerPage
;
3264 size_t count
= GetItemCount();
3265 if ( index
>= count
)
3268 OnArrowChar( index
, event
);
3273 if ( IsSingleSel() )
3275 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3277 if ( IsHighlighted(m_current
) )
3279 // don't unselect the item in single selection mode
3282 //else: select it in ReverseHighlight() below if unselected
3285 ReverseHighlight(m_current
);
3290 SendNotify( m_current
, wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3298 // ----------------------------------------------------------------------------
3300 // ----------------------------------------------------------------------------
3302 void wxListMainWindow::SetFocus()
3304 // VS: wxListMainWindow derives from wxPanel (via wxScrolledWindow) and wxPanel
3305 // overrides SetFocus in such way that it does never change focus from
3306 // panel's child to the panel itself. Unfortunately, we must be able to change
3307 // focus to the panel from wxListTextCtrl because the text control should
3308 // disappear when the user clicks outside it.
3310 wxWindow
*oldFocus
= DoFindFocus();
3312 if ( oldFocus
&& oldFocus
->GetParent() == this )
3314 wxWindow::SetFocus();
3318 wxScrolledWindow::SetFocus();
3322 void wxListMainWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
3326 wxFocusEvent
event( wxEVT_SET_FOCUS
, GetParent()->GetId() );
3327 event
.SetEventObject( GetParent() );
3328 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3332 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3333 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3334 // which are already drawn correctly resulting in horrible flicker - avoid
3344 void wxListMainWindow::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
3348 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetParent()->GetId() );
3349 event
.SetEventObject( GetParent() );
3350 if ( GetParent()->GetEventHandler()->ProcessEvent( event
) )
3357 void wxListMainWindow::DrawImage( int index
, wxDC
*dc
, int x
, int y
)
3359 if ( HasFlag(wxLC_ICON
) && (m_normal_image_list
))
3361 m_normal_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3363 else if ( HasFlag(wxLC_SMALL_ICON
) && (m_small_image_list
))
3365 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3367 else if ( HasFlag(wxLC_LIST
) && (m_small_image_list
))
3369 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3371 else if ( InReportView() && (m_small_image_list
))
3373 m_small_image_list
->Draw( index
, *dc
, x
, y
, wxIMAGELIST_DRAW_TRANSPARENT
);
3377 void wxListMainWindow::GetImageSize( int index
, int &width
, int &height
) const
3379 if ( HasFlag(wxLC_ICON
) && m_normal_image_list
)
3381 m_normal_image_list
->GetSize( index
, width
, height
);
3383 else if ( HasFlag(wxLC_SMALL_ICON
) && m_small_image_list
)
3385 m_small_image_list
->GetSize( index
, width
, height
);
3387 else if ( HasFlag(wxLC_LIST
) && m_small_image_list
)
3389 m_small_image_list
->GetSize( index
, width
, height
);
3391 else if ( InReportView() && m_small_image_list
)
3393 m_small_image_list
->GetSize( index
, width
, height
);
3402 int wxListMainWindow::GetTextLength( const wxString
&s
) const
3404 wxClientDC
dc( wxConstCast(this, wxListMainWindow
) );
3405 dc
.SetFont( GetFont() );
3408 dc
.GetTextExtent( s
, &lw
, NULL
);
3410 return lw
+ AUTOSIZE_COL_MARGIN
;
3413 void wxListMainWindow::SetImageList( wxImageListType
*imageList
, int which
)
3417 // calc the spacing from the icon size
3420 if ((imageList
) && (imageList
->GetImageCount()) )
3422 imageList
->GetSize(0, width
, height
);
3425 if (which
== wxIMAGE_LIST_NORMAL
)
3427 m_normal_image_list
= imageList
;
3428 m_normal_spacing
= width
+ 8;
3431 if (which
== wxIMAGE_LIST_SMALL
)
3433 m_small_image_list
= imageList
;
3434 m_small_spacing
= width
+ 14;
3435 m_lineHeight
= 0; // ensure that the line height will be recalc'd
3439 void wxListMainWindow::SetItemSpacing( int spacing
, bool isSmall
)
3444 m_small_spacing
= spacing
;
3448 m_normal_spacing
= spacing
;
3452 int wxListMainWindow::GetItemSpacing( bool isSmall
)
3454 return isSmall
? m_small_spacing
: m_normal_spacing
;
3457 // ----------------------------------------------------------------------------
3459 // ----------------------------------------------------------------------------
3461 void wxListMainWindow::SetColumn( int col
, wxListItem
&item
)
3463 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3465 wxCHECK_RET( node
, _T("invalid column index in SetColumn") );
3467 if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3468 item
.m_width
= GetTextLength( item
.m_text
);
3470 wxListHeaderData
*column
= node
->GetData();
3471 column
->SetItem( item
);
3473 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3475 headerWin
->m_dirty
= true;
3479 // invalidate it as it has to be recalculated
3483 void wxListMainWindow::SetColumnWidth( int col
, int width
)
3485 wxCHECK_RET( col
>= 0 && col
< GetColumnCount(),
3486 _T("invalid column index") );
3488 wxCHECK_RET( InReportView(),
3489 _T("SetColumnWidth() can only be called in report mode.") );
3492 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
3494 headerWin
->m_dirty
= true;
3496 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3497 wxCHECK_RET( node
, _T("no column?") );
3499 wxListHeaderData
*column
= node
->GetData();
3501 size_t count
= GetItemCount();
3503 if (width
== wxLIST_AUTOSIZE_USEHEADER
)
3505 width
= GetTextLength(column
->GetText());
3507 else if ( width
== wxLIST_AUTOSIZE
)
3511 // TODO: determine the max width somehow...
3512 width
= WIDTH_COL_DEFAULT
;
3516 wxClientDC
dc(this);
3517 dc
.SetFont( GetFont() );
3519 int max
= AUTOSIZE_COL_MARGIN
;
3521 for ( size_t i
= 0; i
< count
; i
++ )
3523 wxListLineData
*line
= GetLine(i
);
3524 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
3526 wxCHECK_RET( n
, _T("no subitem?") );
3528 wxListItemData
*item
= n
->GetData();
3531 if (item
->HasImage())
3534 GetImageSize( item
->GetImage(), ix
, iy
);
3538 if (item
->HasText())
3541 dc
.GetTextExtent( item
->GetText(), &w
, NULL
);
3549 width
= max
+ AUTOSIZE_COL_MARGIN
;
3553 column
->SetWidth( width
);
3555 // invalidate it as it has to be recalculated
3559 int wxListMainWindow::GetHeaderWidth() const
3561 if ( !m_headerWidth
)
3563 wxListMainWindow
*self
= wxConstCast(this, wxListMainWindow
);
3565 size_t count
= GetColumnCount();
3566 for ( size_t col
= 0; col
< count
; col
++ )
3568 self
->m_headerWidth
+= GetColumnWidth(col
);
3572 return m_headerWidth
;
3575 void wxListMainWindow::GetColumn( int col
, wxListItem
&item
) const
3577 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3578 wxCHECK_RET( node
, _T("invalid column index in GetColumn") );
3580 wxListHeaderData
*column
= node
->GetData();
3581 column
->GetItem( item
);
3584 int wxListMainWindow::GetColumnWidth( int col
) const
3586 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
3587 wxCHECK_MSG( node
, 0, _T("invalid column index") );
3589 wxListHeaderData
*column
= node
->GetData();
3590 return column
->GetWidth();
3593 // ----------------------------------------------------------------------------
3595 // ----------------------------------------------------------------------------
3597 void wxListMainWindow::SetItem( wxListItem
&item
)
3599 long id
= item
.m_itemId
;
3600 wxCHECK_RET( id
>= 0 && (size_t)id
< GetItemCount(),
3601 _T("invalid item index in SetItem") );
3605 wxListLineData
*line
= GetLine((size_t)id
);
3606 line
->SetItem( item
.m_col
, item
);
3609 // update the item on screen
3611 GetItemRect(id
, rectItem
);
3612 RefreshRect(rectItem
);
3615 void wxListMainWindow::SetItemState( long litem
, long state
, long stateMask
)
3617 wxCHECK_RET( litem
>= 0 && (size_t)litem
< GetItemCount(),
3618 _T("invalid list ctrl item index in SetItem") );
3620 size_t oldCurrent
= m_current
;
3621 size_t item
= (size_t)litem
; // safe because of the check above
3623 // do we need to change the focus?
3624 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3626 if ( state
& wxLIST_STATE_FOCUSED
)
3628 // don't do anything if this item is already focused
3629 if ( item
!= m_current
)
3631 ChangeCurrent(item
);
3633 if ( oldCurrent
!= (size_t)-1 )
3635 if ( IsSingleSel() )
3637 HighlightLine(oldCurrent
, false);
3640 RefreshLine(oldCurrent
);
3643 RefreshLine( m_current
);
3648 // don't do anything if this item is not focused
3649 if ( item
== m_current
)
3653 if ( IsSingleSel() )
3655 // we must unselect the old current item as well or we
3656 // might end up with more than one selected item in a
3657 // single selection control
3658 HighlightLine(oldCurrent
, false);
3661 RefreshLine( oldCurrent
);
3666 // do we need to change the selection state?
3667 if ( stateMask
& wxLIST_STATE_SELECTED
)
3669 bool on
= (state
& wxLIST_STATE_SELECTED
) != 0;
3671 if ( IsSingleSel() )
3675 // selecting the item also makes it the focused one in the
3677 if ( m_current
!= item
)
3679 ChangeCurrent(item
);
3681 if ( oldCurrent
!= (size_t)-1 )
3683 HighlightLine( oldCurrent
, false );
3684 RefreshLine( oldCurrent
);
3690 // only the current item may be selected anyhow
3691 if ( item
!= m_current
)
3696 if ( HighlightLine(item
, on
) )
3703 int wxListMainWindow::GetItemState( long item
, long stateMask
) const
3705 wxCHECK_MSG( item
>= 0 && (size_t)item
< GetItemCount(), 0,
3706 _T("invalid list ctrl item index in GetItemState()") );
3708 int ret
= wxLIST_STATE_DONTCARE
;
3710 if ( stateMask
& wxLIST_STATE_FOCUSED
)
3712 if ( (size_t)item
== m_current
)
3713 ret
|= wxLIST_STATE_FOCUSED
;
3716 if ( stateMask
& wxLIST_STATE_SELECTED
)
3718 if ( IsHighlighted(item
) )
3719 ret
|= wxLIST_STATE_SELECTED
;
3725 void wxListMainWindow::GetItem( wxListItem
&item
) const
3727 wxCHECK_RET( item
.m_itemId
>= 0 && (size_t)item
.m_itemId
< GetItemCount(),
3728 _T("invalid item index in GetItem") );
3730 wxListLineData
*line
= GetLine((size_t)item
.m_itemId
);
3731 line
->GetItem( item
.m_col
, item
);
3734 // ----------------------------------------------------------------------------
3736 // ----------------------------------------------------------------------------
3738 size_t wxListMainWindow::GetItemCount() const
3740 return IsVirtual() ? m_countVirt
: m_lines
.GetCount();
3743 void wxListMainWindow::SetItemCount(long count
)
3745 m_selStore
.SetItemCount(count
);
3746 m_countVirt
= count
;
3748 ResetVisibleLinesRange();
3750 // scrollbars must be reset
3754 int wxListMainWindow::GetSelectedItemCount() const
3756 // deal with the quick case first
3757 if ( IsSingleSel() )
3759 return HasCurrent() ? IsHighlighted(m_current
) : false;
3762 // virtual controls remmebers all its selections itself
3764 return m_selStore
.GetSelectedCount();
3766 // TODO: we probably should maintain the number of items selected even for
3767 // non virtual controls as enumerating all lines is really slow...
3768 size_t countSel
= 0;
3769 size_t count
= GetItemCount();
3770 for ( size_t line
= 0; line
< count
; line
++ )
3772 if ( GetLine(line
)->IsHighlighted() )
3779 // ----------------------------------------------------------------------------
3780 // item position/size
3781 // ----------------------------------------------------------------------------
3783 wxRect
wxListMainWindow::GetViewRect() const
3785 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
3786 _T("wxListCtrl::GetViewRect() only works in icon mode") );
3788 // we need to find the longest/tallest label
3791 const int count
= GetItemCount();
3794 for ( int i
= 0; i
< count
; i
++ )
3799 wxCoord x
= r
.GetRight(),
3809 // some fudge needed to make it look prettier
3810 xMax
+= 2*EXTRA_BORDER_X
;
3811 yMax
+= 2*EXTRA_BORDER_Y
;
3813 // account for the scrollbars if necessary
3814 const wxSize sizeAll
= GetClientSize();
3815 if ( xMax
> sizeAll
.x
)
3816 yMax
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
3817 if ( yMax
> sizeAll
.y
)
3818 xMax
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
3820 return wxRect(0, 0, xMax
, yMax
);
3823 void wxListMainWindow::GetItemRect( long index
, wxRect
&rect
) const
3825 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
3826 _T("invalid index in GetItemRect") );
3828 // ensure that we're laid out, otherwise we could return nonsense
3831 wxConstCast(this, wxListMainWindow
)->
3832 RecalculatePositions(true /* no refresh */);
3835 rect
= GetLineRect((size_t)index
);
3837 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
3840 bool wxListMainWindow::GetItemPosition(long item
, wxPoint
& pos
) const
3843 GetItemRect(item
, rect
);
3851 // ----------------------------------------------------------------------------
3852 // geometry calculation
3853 // ----------------------------------------------------------------------------
3855 void wxListMainWindow::RecalculatePositions(bool noRefresh
)
3857 wxClientDC
dc( this );
3858 dc
.SetFont( GetFont() );
3860 const size_t count
= GetItemCount();
3863 if ( HasFlag(wxLC_ICON
) )
3864 iconSpacing
= m_normal_spacing
;
3865 else if ( HasFlag(wxLC_SMALL_ICON
) )
3866 iconSpacing
= m_small_spacing
;
3870 // Note that we do not call GetClientSize() here but
3871 // GetSize() and subtract the border size for sunken
3872 // borders manually. This is technically incorrect,
3873 // but we need to know the client area's size WITHOUT
3874 // scrollbars here. Since we don't know if there are
3875 // any scrollbars, we use GetSize() instead. Another
3876 // solution would be to call SetScrollbars() here to
3877 // remove the scrollbars and call GetClientSize() then,
3878 // but this might result in flicker and - worse - will
3879 // reset the scrollbars to 0 which is not good at all
3880 // if you resize a dialog/window, but don't want to
3881 // reset the window scrolling. RR.
3882 // Furthermore, we actually do NOT subtract the border
3883 // width as 2 pixels is just the extra space which we
3884 // need around the actual content in the window. Other-
3885 // wise the text would e.g. touch the upper border. RR.
3888 GetSize( &clientWidth
, &clientHeight
);
3890 const int lineHeight
= GetLineHeight();
3892 if ( InReportView() )
3894 // all lines have the same height and we scroll one line per step
3895 int entireHeight
= count
*lineHeight
+ LINE_SPACING
;
3897 m_linesPerPage
= clientHeight
/ lineHeight
;
3899 ResetVisibleLinesRange();
3901 SetScrollbars( SCROLL_UNIT_X
, lineHeight
,
3902 GetHeaderWidth() / SCROLL_UNIT_X
,
3903 (entireHeight
+ lineHeight
- 1) / lineHeight
,
3904 GetScrollPos(wxHORIZONTAL
),
3905 GetScrollPos(wxVERTICAL
),
3910 // we have 3 different layout strategies: either layout all items
3911 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
3912 // to arrange them in top to bottom, left to right (don't ask me why
3913 // not the other way round...) order
3914 if ( HasFlag(wxLC_ALIGN_LEFT
| wxLC_ALIGN_TOP
) )
3916 int x
= EXTRA_BORDER_X
;
3917 int y
= EXTRA_BORDER_Y
;
3919 wxCoord widthMax
= 0;
3922 for ( i
= 0; i
< count
; i
++ )
3924 wxListLineData
*line
= GetLine(i
);
3925 line
->CalculateSize( &dc
, iconSpacing
);
3926 line
->SetPosition( x
, y
, iconSpacing
);
3928 wxSize sizeLine
= GetLineSize(i
);
3930 if ( HasFlag(wxLC_ALIGN_TOP
) )
3932 if ( sizeLine
.x
> widthMax
)
3933 widthMax
= sizeLine
.x
;
3937 else // wxLC_ALIGN_LEFT
3939 x
+= sizeLine
.x
+ MARGIN_BETWEEN_ROWS
;
3943 if ( HasFlag(wxLC_ALIGN_TOP
) )
3945 // traverse the items again and tweak their sizes so that they are
3946 // all the same in a row
3947 for ( i
= 0; i
< count
; i
++ )
3949 wxListLineData
*line
= GetLine(i
);
3950 line
->m_gi
->ExtendWidth(widthMax
);
3959 (x
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
3960 (y
+ lineHeight
) / lineHeight
,
3961 GetScrollPos( wxHORIZONTAL
),
3962 GetScrollPos( wxVERTICAL
),
3966 else // "flowed" arrangement, the most complicated case
3968 // at first we try without any scrollbars, if the items don't fit into
3969 // the window, we recalculate after subtracting the space taken by the
3972 int entireWidth
= 0;
3974 for (int tries
= 0; tries
< 2; tries
++)
3976 entireWidth
= 2*EXTRA_BORDER_X
;
3980 // Now we have decided that the items do not fit into the
3981 // client area, so we need a scrollbar
3982 entireWidth
+= SCROLL_UNIT_X
;
3985 int x
= EXTRA_BORDER_X
;
3986 int y
= EXTRA_BORDER_Y
;
3987 int maxWidthInThisRow
= 0;
3990 int currentlyVisibleLines
= 0;
3992 for (size_t i
= 0; i
< count
; i
++)
3994 currentlyVisibleLines
++;
3995 wxListLineData
*line
= GetLine(i
);
3996 line
->CalculateSize( &dc
, iconSpacing
);
3997 line
->SetPosition( x
, y
, iconSpacing
);
3999 wxSize sizeLine
= GetLineSize(i
);
4001 if ( maxWidthInThisRow
< sizeLine
.x
)
4002 maxWidthInThisRow
= sizeLine
.x
;
4005 if (currentlyVisibleLines
> m_linesPerPage
)
4006 m_linesPerPage
= currentlyVisibleLines
;
4008 if ( y
+ sizeLine
.y
>= clientHeight
)
4010 currentlyVisibleLines
= 0;
4012 maxWidthInThisRow
+= MARGIN_BETWEEN_ROWS
;
4013 x
+= maxWidthInThisRow
;
4014 entireWidth
+= maxWidthInThisRow
;
4015 maxWidthInThisRow
= 0;
4018 // We have reached the last item.
4019 if ( i
== count
- 1 )
4020 entireWidth
+= maxWidthInThisRow
;
4022 if ( (tries
== 0) &&
4023 (entireWidth
+ SCROLL_UNIT_X
> clientWidth
) )
4025 clientHeight
-= wxSystemSettings::
4026 GetMetric(wxSYS_HSCROLL_Y
);
4031 if ( i
== count
- 1 )
4032 tries
= 1; // Everything fits, no second try required.
4040 (entireWidth
+ SCROLL_UNIT_X
) / SCROLL_UNIT_X
,
4042 GetScrollPos( wxHORIZONTAL
),
4051 // FIXME: why should we call it from here?
4058 void wxListMainWindow::RefreshAll()
4063 wxListHeaderWindow
*headerWin
= GetListCtrl()->m_headerWin
;
4064 if ( headerWin
&& headerWin
->m_dirty
)
4066 headerWin
->m_dirty
= false;
4067 headerWin
->Refresh();
4071 void wxListMainWindow::UpdateCurrent()
4073 if ( !HasCurrent() && !IsEmpty() )
4079 long wxListMainWindow::GetNextItem( long item
,
4080 int WXUNUSED(geometry
),
4084 max
= GetItemCount();
4085 wxCHECK_MSG( (ret
== -1) || (ret
< max
), -1,
4086 _T("invalid listctrl index in GetNextItem()") );
4088 // notice that we start with the next item (or the first one if item == -1)
4089 // and this is intentional to allow writing a simple loop to iterate over
4090 // all selected items
4094 // this is not an error because the index was ok initially, just no
4105 size_t count
= GetItemCount();
4106 for ( size_t line
= (size_t)ret
; line
< count
; line
++ )
4108 if ( (state
& wxLIST_STATE_FOCUSED
) && (line
== m_current
) )
4111 if ( (state
& wxLIST_STATE_SELECTED
) && IsHighlighted(line
) )
4118 // ----------------------------------------------------------------------------
4120 // ----------------------------------------------------------------------------
4122 void wxListMainWindow::DeleteItem( long lindex
)
4124 size_t count
= GetItemCount();
4126 wxCHECK_RET( (lindex
>= 0) && ((size_t)lindex
< count
),
4127 _T("invalid item index in DeleteItem") );
4129 size_t index
= (size_t)lindex
;
4131 // we don't need to adjust the index for the previous items
4132 if ( HasCurrent() && m_current
>= index
)
4134 // if the current item is being deleted, we want the next one to
4135 // become selected - unless there is no next one - so don't adjust
4136 // m_current in this case
4137 if ( m_current
!= index
|| m_current
== count
- 1 )
4143 if ( InReportView() )
4145 ResetVisibleLinesRange();
4152 m_selStore
.OnItemDelete(index
);
4156 m_lines
.RemoveAt( index
);
4159 // we need to refresh the (vert) scrollbar as the number of items changed
4162 SendNotify( index
, wxEVT_COMMAND_LIST_DELETE_ITEM
);
4164 RefreshAfter(index
);
4167 void wxListMainWindow::DeleteColumn( int col
)
4169 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4171 wxCHECK_RET( node
, wxT("invalid column index in DeleteColumn()") );
4174 delete node
->GetData();
4175 m_columns
.Erase( node
);
4179 // update all the items
4180 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4182 wxListLineData
* const line
= GetLine(i
);
4183 wxListItemDataList::compatibility_iterator n
= line
->m_items
.Item( col
);
4184 delete n
->GetData();
4185 line
->m_items
.Erase(n
);
4189 // invalidate it as it has to be recalculated
4193 void wxListMainWindow::DoDeleteAllItems()
4197 // nothing to do - in particular, don't send the event
4203 // to make the deletion of all items faster, we don't send the
4204 // notifications for each item deletion in this case but only one event
4205 // for all of them: this is compatible with wxMSW and documented in
4206 // DeleteAllItems() description
4208 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetParent()->GetId() );
4209 event
.SetEventObject( GetParent() );
4210 GetParent()->GetEventHandler()->ProcessEvent( event
);
4219 if ( InReportView() )
4221 ResetVisibleLinesRange();
4227 void wxListMainWindow::DeleteAllItems()
4231 RecalculatePositions();
4234 void wxListMainWindow::DeleteEverything()
4236 WX_CLEAR_LIST(wxListHeaderDataList
, m_columns
);
4241 // ----------------------------------------------------------------------------
4242 // scanning for an item
4243 // ----------------------------------------------------------------------------
4245 void wxListMainWindow::EnsureVisible( long index
)
4247 wxCHECK_RET( index
>= 0 && (size_t)index
< GetItemCount(),
4248 _T("invalid index in EnsureVisible") );
4250 // We have to call this here because the label in question might just have
4251 // been added and its position is not known yet
4254 RecalculatePositions(true /* no refresh */);
4257 MoveToItem((size_t)index
);
4260 long wxListMainWindow::FindItem(long start
, const wxString
& str
, bool WXUNUSED(partial
) )
4267 size_t count
= GetItemCount();
4268 for ( size_t i
= (size_t)pos
; i
< count
; i
++ )
4270 wxListLineData
*line
= GetLine(i
);
4271 if ( line
->GetText(0) == tmp
)
4278 long wxListMainWindow::FindItem(long start
, wxUIntPtr data
)
4284 size_t count
= GetItemCount();
4285 for (size_t i
= (size_t)pos
; i
< count
; i
++)
4287 wxListLineData
*line
= GetLine(i
);
4289 line
->GetItem( 0, item
);
4290 if (item
.m_data
== data
)
4297 long wxListMainWindow::FindItem( const wxPoint
& pt
)
4300 GetVisibleLinesRange(&topItem
, NULL
);
4303 GetItemPosition( GetItemCount()-1, p
);
4306 long id
= (long) floor( pt
.y
*double(GetItemCount()-topItem
-1)/p
.y
+topItem
);
4307 if( id
>= 0 && id
< (long)GetItemCount() )
4313 long wxListMainWindow::HitTest( int x
, int y
, int &flags
)
4315 CalcUnscrolledPosition( x
, y
, &x
, &y
);
4317 size_t count
= GetItemCount();
4319 if ( InReportView() )
4321 size_t current
= y
/ GetLineHeight();
4322 if ( current
< count
)
4324 flags
= HitTestLine(current
, x
, y
);
4331 // TODO: optimize it too! this is less simple than for report view but
4332 // enumerating all items is still not a way to do it!!
4333 for ( size_t current
= 0; current
< count
; current
++ )
4335 flags
= HitTestLine(current
, x
, y
);
4344 // ----------------------------------------------------------------------------
4346 // ----------------------------------------------------------------------------
4348 void wxListMainWindow::InsertItem( wxListItem
&item
)
4350 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4352 int count
= GetItemCount();
4353 wxCHECK_RET( item
.m_itemId
>= 0, _T("invalid item index") );
4355 if (item
.m_itemId
> count
)
4356 item
.m_itemId
= count
;
4358 size_t id
= item
.m_itemId
;
4363 // this is unused variable
4366 if ( InReportView() )
4369 // this is unused variable
4372 ResetVisibleLinesRange();
4374 else if ( HasFlag(wxLC_LIST
) )
4376 // this is unused variable
4381 else if ( HasFlag(wxLC_ICON
) )
4383 // this is unused variable
4388 else if ( HasFlag(wxLC_SMALL_ICON
) )
4390 // this is unused variable
4391 mode
= wxLC_ICON
; // no typo
4397 wxFAIL_MSG( _T("unknown mode") );
4400 wxListLineData
*line
= new wxListLineData(this);
4402 line
->SetItem( 0, item
);
4404 m_lines
.Insert( line
, id
);
4408 // If an item is selected at or below the point of insertion, we need to
4409 // increment the member variables because the current row's index has gone
4411 if ( HasCurrent() && m_current
>= id
)
4416 SendNotify(id
, wxEVT_COMMAND_LIST_INSERT_ITEM
);
4418 RefreshLines(id
, GetItemCount() - 1);
4421 void wxListMainWindow::InsertColumn( long col
, wxListItem
&item
)
4424 if ( InReportView() )
4426 if (item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
4427 item
.m_width
= GetTextLength( item
.m_text
);
4429 wxListHeaderData
*column
= new wxListHeaderData( item
);
4430 bool insert
= (col
>= 0) && ((size_t)col
< m_columns
.GetCount());
4433 wxListHeaderDataList::compatibility_iterator node
= m_columns
.Item( col
);
4434 m_columns
.Insert( node
, column
);
4438 m_columns
.Append( column
);
4443 // update all the items
4444 for ( size_t i
= 0; i
< m_lines
.GetCount(); i
++ )
4446 wxListLineData
* const line
= GetLine(i
);
4447 wxListItemData
* const data
= new wxListItemData(this);
4449 line
->m_items
.Insert(col
, data
);
4451 line
->m_items
.Append(data
);
4455 // invalidate it as it has to be recalculated
4460 // ----------------------------------------------------------------------------
4462 // ----------------------------------------------------------------------------
4464 wxListCtrlCompare list_ctrl_compare_func_2
;
4465 long list_ctrl_compare_data
;
4467 int LINKAGEMODE
list_ctrl_compare_func_1( wxListLineData
**arg1
, wxListLineData
**arg2
)
4469 wxListLineData
*line1
= *arg1
;
4470 wxListLineData
*line2
= *arg2
;
4472 line1
->GetItem( 0, item
);
4473 wxUIntPtr data1
= item
.m_data
;
4474 line2
->GetItem( 0, item
);
4475 wxUIntPtr data2
= item
.m_data
;
4476 return list_ctrl_compare_func_2( data1
, data2
, list_ctrl_compare_data
);
4479 void wxListMainWindow::SortItems( wxListCtrlCompare fn
, long data
)
4481 list_ctrl_compare_func_2
= fn
;
4482 list_ctrl_compare_data
= data
;
4483 m_lines
.Sort( list_ctrl_compare_func_1
);
4487 // ----------------------------------------------------------------------------
4489 // ----------------------------------------------------------------------------
4491 void wxListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4493 // update our idea of which lines are shown when we redraw the window the
4495 ResetVisibleLinesRange();
4498 #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
4499 wxScrolledWindow::OnScroll(event
);
4501 HandleOnScroll( event
);
4504 if ( event
.GetOrientation() == wxHORIZONTAL
&& HasHeader() )
4506 wxGenericListCtrl
* lc
= GetListCtrl();
4507 wxCHECK_RET( lc
, _T("no listctrl window?") );
4509 lc
->m_headerWin
->Refresh();
4510 lc
->m_headerWin
->Update();
4514 int wxListMainWindow::GetCountPerPage() const
4516 if ( !m_linesPerPage
)
4518 wxConstCast(this, wxListMainWindow
)->
4519 m_linesPerPage
= GetClientSize().y
/ GetLineHeight();
4522 return m_linesPerPage
;
4525 void wxListMainWindow::GetVisibleLinesRange(size_t *from
, size_t *to
)
4527 wxASSERT_MSG( InReportView(), _T("this is for report mode only") );
4529 if ( m_lineFrom
== (size_t)-1 )
4531 size_t count
= GetItemCount();
4534 m_lineFrom
= GetScrollPos(wxVERTICAL
);
4536 // this may happen if SetScrollbars() hadn't been called yet
4537 if ( m_lineFrom
>= count
)
4538 m_lineFrom
= count
- 1;
4540 // we redraw one extra line but this is needed to make the redrawing
4541 // logic work when there is a fractional number of lines on screen
4542 m_lineTo
= m_lineFrom
+ m_linesPerPage
;
4543 if ( m_lineTo
>= count
)
4544 m_lineTo
= count
- 1;
4546 else // empty control
4549 m_lineTo
= (size_t)-1;
4553 wxASSERT_MSG( IsEmpty() ||
4554 (m_lineFrom
<= m_lineTo
&& m_lineTo
< GetItemCount()),
4555 _T("GetVisibleLinesRange() returns incorrect result") );
4563 // -------------------------------------------------------------------------------------
4564 // wxGenericListCtrl
4565 // -------------------------------------------------------------------------------------
4567 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl
, wxControl
)
4569 BEGIN_EVENT_TABLE(wxGenericListCtrl
,wxControl
)
4570 EVT_SIZE(wxGenericListCtrl::OnSize
)
4573 wxGenericListCtrl::wxGenericListCtrl()
4575 m_imageListNormal
= (wxImageListType
*) NULL
;
4576 m_imageListSmall
= (wxImageListType
*) NULL
;
4577 m_imageListState
= (wxImageListType
*) NULL
;
4579 m_ownsImageListNormal
=
4580 m_ownsImageListSmall
=
4581 m_ownsImageListState
= false;
4583 m_mainWin
= (wxListMainWindow
*) NULL
;
4584 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4588 wxGenericListCtrl::~wxGenericListCtrl()
4590 if (m_ownsImageListNormal
)
4591 delete m_imageListNormal
;
4592 if (m_ownsImageListSmall
)
4593 delete m_imageListSmall
;
4594 if (m_ownsImageListState
)
4595 delete m_imageListState
;
4598 void wxGenericListCtrl::CalculateAndSetHeaderHeight()
4602 // we use 'g' to get the descent, too
4604 m_headerWin
->GetTextExtent(wxT("Hg"), &w
, &h
, &d
);
4605 h
+= d
+ 2 * HEADER_OFFSET_Y
+ EXTRA_HEIGHT
;
4607 // only update if changed
4608 if ( h
!= m_headerHeight
)
4612 m_headerWin
->SetSize(m_headerWin
->GetSize().x
, m_headerHeight
);
4615 ResizeReportView(true);
4620 void wxGenericListCtrl::CreateHeaderWindow()
4622 m_headerWin
= new wxListHeaderWindow
4624 this, wxID_ANY
, m_mainWin
,
4626 wxSize(GetClientSize().x
, m_headerHeight
),
4629 CalculateAndSetHeaderHeight();
4632 bool wxGenericListCtrl::Create(wxWindow
*parent
,
4637 const wxValidator
&validator
,
4638 const wxString
&name
)
4642 m_imageListState
= (wxImageListType
*) NULL
;
4643 m_ownsImageListNormal
=
4644 m_ownsImageListSmall
=
4645 m_ownsImageListState
= false;
4647 m_mainWin
= (wxListMainWindow
*) NULL
;
4648 m_headerWin
= (wxListHeaderWindow
*) NULL
;
4652 if ( !(style
& wxLC_MASK_TYPE
) )
4654 style
= style
| wxLC_LIST
;
4657 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, validator
, name
) )
4660 // don't create the inner window with the border
4661 style
&= ~wxBORDER_MASK
;
4663 m_mainWin
= new wxListMainWindow( this, wxID_ANY
, wxPoint(0,0), size
, style
);
4665 #ifdef __WXMAC_CARBON__
4666 // Human Interface Guidelines ask us for a special font in this case
4667 if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL
)
4670 font
.MacCreateThemeFont( kThemeViewsFont
) ;
4674 if ( InReportView() )
4676 CreateHeaderWindow();
4678 if ( HasFlag(wxLC_NO_HEADER
) )
4680 // VZ: why do we create it at all then?
4681 m_headerWin
->Show( false );
4690 void wxGenericListCtrl::SetSingleStyle( long style
, bool add
)
4692 wxASSERT_MSG( !(style
& wxLC_VIRTUAL
),
4693 _T("wxLC_VIRTUAL can't be [un]set") );
4695 long flag
= GetWindowStyle();
4699 if (style
& wxLC_MASK_TYPE
)
4700 flag
&= ~(wxLC_MASK_TYPE
| wxLC_VIRTUAL
);
4701 if (style
& wxLC_MASK_ALIGN
)
4702 flag
&= ~wxLC_MASK_ALIGN
;
4703 if (style
& wxLC_MASK_SORT
)
4704 flag
&= ~wxLC_MASK_SORT
;
4716 SetWindowStyleFlag( flag
);
4719 void wxGenericListCtrl::SetWindowStyleFlag( long flag
)
4723 m_mainWin
->DeleteEverything();
4725 // has the header visibility changed?
4726 bool hasHeader
= HasHeader();
4727 bool willHaveHeader
= (flag
& wxLC_REPORT
) && !(flag
& wxLC_NO_HEADER
);
4729 if ( hasHeader
!= willHaveHeader
)
4736 // don't delete, just hide, as we can reuse it later
4737 m_headerWin
->Show(false);
4739 //else: nothing to do
4741 else // must show header
4745 CreateHeaderWindow();
4747 else // already have it, just show
4749 m_headerWin
->Show( true );
4753 ResizeReportView(willHaveHeader
);
4757 wxWindow::SetWindowStyleFlag( flag
);
4760 bool wxGenericListCtrl::GetColumn(int col
, wxListItem
&item
) const
4762 m_mainWin
->GetColumn( col
, item
);
4766 bool wxGenericListCtrl::SetColumn( int col
, wxListItem
& item
)
4768 m_mainWin
->SetColumn( col
, item
);
4772 int wxGenericListCtrl::GetColumnWidth( int col
) const
4774 return m_mainWin
->GetColumnWidth( col
);
4777 bool wxGenericListCtrl::SetColumnWidth( int col
, int width
)
4779 m_mainWin
->SetColumnWidth( col
, width
);
4783 int wxGenericListCtrl::GetCountPerPage() const
4785 return m_mainWin
->GetCountPerPage(); // different from Windows ?
4788 bool wxGenericListCtrl::GetItem( wxListItem
&info
) const
4790 m_mainWin
->GetItem( info
);
4794 bool wxGenericListCtrl::SetItem( wxListItem
&info
)
4796 m_mainWin
->SetItem( info
);
4800 long wxGenericListCtrl::SetItem( long index
, int col
, const wxString
& label
, int imageId
)
4803 info
.m_text
= label
;
4804 info
.m_mask
= wxLIST_MASK_TEXT
;
4805 info
.m_itemId
= index
;
4809 info
.m_image
= imageId
;
4810 info
.m_mask
|= wxLIST_MASK_IMAGE
;
4812 m_mainWin
->SetItem(info
);
4816 int wxGenericListCtrl::GetItemState( long item
, long stateMask
) const
4818 return m_mainWin
->GetItemState( item
, stateMask
);
4821 bool wxGenericListCtrl::SetItemState( long item
, long state
, long stateMask
)
4823 m_mainWin
->SetItemState( item
, state
, stateMask
);
4828 wxGenericListCtrl::SetItemImage( long item
, int image
, int WXUNUSED(selImage
) )
4831 info
.m_image
= image
;
4832 info
.m_mask
= wxLIST_MASK_IMAGE
;
4833 info
.m_itemId
= item
;
4834 m_mainWin
->SetItem( info
);
4838 wxString
wxGenericListCtrl::GetItemText( long item
) const
4840 return m_mainWin
->GetItemText(item
);
4843 void wxGenericListCtrl::SetItemText( long item
, const wxString
& str
)
4845 m_mainWin
->SetItemText(item
, str
);
4848 wxUIntPtr
wxGenericListCtrl::GetItemData( long item
) const
4851 info
.m_itemId
= item
;
4852 m_mainWin
->GetItem( info
);
4856 bool wxGenericListCtrl::SetItemData( long item
, long data
)
4859 info
.m_mask
= wxLIST_MASK_DATA
;
4860 info
.m_itemId
= item
;
4862 m_mainWin
->SetItem( info
);
4866 wxRect
wxGenericListCtrl::GetViewRect() const
4868 return m_mainWin
->GetViewRect();
4871 bool wxGenericListCtrl::GetItemRect( long item
, wxRect
&rect
, int WXUNUSED(code
) ) const
4873 m_mainWin
->GetItemRect( item
, rect
);
4874 if ( m_mainWin
->HasHeader() )
4875 rect
.y
+= m_headerHeight
+ 1;
4879 bool wxGenericListCtrl::GetItemPosition( long item
, wxPoint
& pos
) const
4881 m_mainWin
->GetItemPosition( item
, pos
);
4885 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item
), const wxPoint
& WXUNUSED(pos
) )
4890 int wxGenericListCtrl::GetItemCount() const
4892 return m_mainWin
->GetItemCount();
4895 int wxGenericListCtrl::GetColumnCount() const
4897 return m_mainWin
->GetColumnCount();
4900 void wxGenericListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
4902 m_mainWin
->SetItemSpacing( spacing
, isSmall
);
4905 wxSize
wxGenericListCtrl::GetItemSpacing() const
4907 const int spacing
= m_mainWin
->GetItemSpacing(HasFlag(wxLC_SMALL_ICON
));
4909 return wxSize(spacing
, spacing
);
4912 int wxGenericListCtrl::GetItemSpacing( bool isSmall
) const
4914 return m_mainWin
->GetItemSpacing( isSmall
);
4917 void wxGenericListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
4920 info
.m_itemId
= item
;
4921 info
.SetTextColour( col
);
4922 m_mainWin
->SetItem( info
);
4925 wxColour
wxGenericListCtrl::GetItemTextColour( long item
) const
4928 info
.m_itemId
= item
;
4929 m_mainWin
->GetItem( info
);
4930 return info
.GetTextColour();
4933 void wxGenericListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
4936 info
.m_itemId
= item
;
4937 info
.SetBackgroundColour( col
);
4938 m_mainWin
->SetItem( info
);
4941 wxColour
wxGenericListCtrl::GetItemBackgroundColour( long item
) const
4944 info
.m_itemId
= item
;
4945 m_mainWin
->GetItem( info
);
4946 return info
.GetBackgroundColour();
4949 int wxGenericListCtrl::GetSelectedItemCount() const
4951 return m_mainWin
->GetSelectedItemCount();
4954 wxColour
wxGenericListCtrl::GetTextColour() const
4956 return GetForegroundColour();
4959 void wxGenericListCtrl::SetTextColour(const wxColour
& col
)
4961 SetForegroundColour(col
);
4964 long wxGenericListCtrl::GetTopItem() const
4967 m_mainWin
->GetVisibleLinesRange(&top
, NULL
);
4971 long wxGenericListCtrl::GetNextItem( long item
, int geom
, int state
) const
4973 return m_mainWin
->GetNextItem( item
, geom
, state
);
4976 wxImageListType
*wxGenericListCtrl::GetImageList(int which
) const
4978 if (which
== wxIMAGE_LIST_NORMAL
)
4980 return m_imageListNormal
;
4982 else if (which
== wxIMAGE_LIST_SMALL
)
4984 return m_imageListSmall
;
4986 else if (which
== wxIMAGE_LIST_STATE
)
4988 return m_imageListState
;
4990 return (wxImageListType
*) NULL
;
4993 void wxGenericListCtrl::SetImageList( wxImageListType
*imageList
, int which
)
4995 if ( which
== wxIMAGE_LIST_NORMAL
)
4997 if (m_ownsImageListNormal
) delete m_imageListNormal
;
4998 m_imageListNormal
= imageList
;
4999 m_ownsImageListNormal
= false;
5001 else if ( which
== wxIMAGE_LIST_SMALL
)
5003 if (m_ownsImageListSmall
) delete m_imageListSmall
;
5004 m_imageListSmall
= imageList
;
5005 m_ownsImageListSmall
= false;
5007 else if ( which
== wxIMAGE_LIST_STATE
)
5009 if (m_ownsImageListState
) delete m_imageListState
;
5010 m_imageListState
= imageList
;
5011 m_ownsImageListState
= false;
5014 m_mainWin
->SetImageList( imageList
, which
);
5017 void wxGenericListCtrl::AssignImageList(wxImageListType
*imageList
, int which
)
5019 SetImageList(imageList
, which
);
5020 if ( which
== wxIMAGE_LIST_NORMAL
)
5021 m_ownsImageListNormal
= true;
5022 else if ( which
== wxIMAGE_LIST_SMALL
)
5023 m_ownsImageListSmall
= true;
5024 else if ( which
== wxIMAGE_LIST_STATE
)
5025 m_ownsImageListState
= true;
5028 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag
) )
5033 bool wxGenericListCtrl::DeleteItem( long item
)
5035 m_mainWin
->DeleteItem( item
);
5039 bool wxGenericListCtrl::DeleteAllItems()
5041 m_mainWin
->DeleteAllItems();
5045 bool wxGenericListCtrl::DeleteAllColumns()
5047 size_t count
= m_mainWin
->m_columns
.GetCount();
5048 for ( size_t n
= 0; n
< count
; n
++ )
5054 void wxGenericListCtrl::ClearAll()
5056 m_mainWin
->DeleteEverything();
5059 bool wxGenericListCtrl::DeleteColumn( int col
)
5061 m_mainWin
->DeleteColumn( col
);
5063 // if we don't have the header any longer, we need to relayout the window
5064 if ( !GetColumnCount() )
5066 ResizeReportView(false /* no header */);
5072 void wxGenericListCtrl::Edit( long item
)
5074 m_mainWin
->EditLabel( item
);
5077 bool wxGenericListCtrl::EnsureVisible( long item
)
5079 m_mainWin
->EnsureVisible( item
);
5083 long wxGenericListCtrl::FindItem( long start
, const wxString
& str
, bool partial
)
5085 return m_mainWin
->FindItem( start
, str
, partial
);
5088 long wxGenericListCtrl::FindItem( long start
, wxUIntPtr data
)
5090 return m_mainWin
->FindItem( start
, data
);
5093 long wxGenericListCtrl::FindItem( long WXUNUSED(start
), const wxPoint
& pt
,
5094 int WXUNUSED(direction
))
5096 return m_mainWin
->FindItem( pt
);
5099 long wxGenericListCtrl::HitTest( const wxPoint
&point
, int &flags
)
5101 return m_mainWin
->HitTest( (int)point
.x
, (int)point
.y
, flags
);
5104 long wxGenericListCtrl::InsertItem( wxListItem
& info
)
5106 m_mainWin
->InsertItem( info
);
5107 return info
.m_itemId
;
5110 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
)
5113 info
.m_text
= label
;
5114 info
.m_mask
= wxLIST_MASK_TEXT
;
5115 info
.m_itemId
= index
;
5116 return InsertItem( info
);
5119 long wxGenericListCtrl::InsertItem( long index
, int imageIndex
)
5122 info
.m_mask
= wxLIST_MASK_IMAGE
;
5123 info
.m_image
= imageIndex
;
5124 info
.m_itemId
= index
;
5125 return InsertItem( info
);
5128 long wxGenericListCtrl::InsertItem( long index
, const wxString
&label
, int imageIndex
)
5131 info
.m_text
= label
;
5132 info
.m_image
= imageIndex
;
5133 info
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
;
5134 info
.m_itemId
= index
;
5135 return InsertItem( info
);
5138 long wxGenericListCtrl::InsertColumn( long col
, wxListItem
&item
)
5140 wxCHECK_MSG( m_headerWin
, -1, _T("can't add column in non report mode") );
5142 m_mainWin
->InsertColumn( col
, item
);
5144 // if we hadn't had header before and have it now we need to relayout the
5146 if ( GetColumnCount() == 1 && m_mainWin
->HasHeader() )
5148 ResizeReportView(true /* have header */);
5151 m_headerWin
->Refresh();
5156 long wxGenericListCtrl::InsertColumn( long col
, const wxString
&heading
,
5157 int format
, int width
)
5160 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
5161 item
.m_text
= heading
;
5164 item
.m_mask
|= wxLIST_MASK_WIDTH
;
5165 item
.m_width
= width
;
5167 item
.m_format
= format
;
5169 return InsertColumn( col
, item
);
5172 bool wxGenericListCtrl::ScrollList( int WXUNUSED(dx
), int WXUNUSED(dy
) )
5178 // fn is a function which takes 3 long arguments: item1, item2, data.
5179 // item1 is the long data associated with a first item (NOT the index).
5180 // item2 is the long data associated with a second item (NOT the index).
5181 // data is the same value as passed to SortItems.
5182 // The return value is a negative number if the first item should precede the second
5183 // item, a positive number of the second item should precede the first,
5184 // or zero if the two items are equivalent.
5185 // data is arbitrary data to be passed to the sort function.
5187 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn
, long data
)
5189 m_mainWin
->SortItems( fn
, data
);
5193 // ----------------------------------------------------------------------------
5195 // ----------------------------------------------------------------------------
5197 void wxGenericListCtrl::OnSize(wxSizeEvent
& WXUNUSED(event
))
5202 ResizeReportView(m_mainWin
->HasHeader());
5204 m_mainWin
->RecalculatePositions();
5207 void wxGenericListCtrl::ResizeReportView(bool showHeader
)
5210 GetClientSize( &cw
, &ch
);
5214 m_headerWin
->SetSize( 0, 0, cw
, m_headerHeight
);
5215 m_mainWin
->SetSize( 0, m_headerHeight
+ 1, cw
, ch
- m_headerHeight
- 1 );
5217 else // no header window
5219 m_mainWin
->SetSize( 0, 0, cw
, ch
);
5223 void wxGenericListCtrl::OnInternalIdle()
5225 wxWindow::OnInternalIdle();
5227 // do it only if needed
5228 if ( !m_mainWin
->m_dirty
)
5231 m_mainWin
->RecalculatePositions();
5234 // ----------------------------------------------------------------------------
5236 // ----------------------------------------------------------------------------
5238 bool wxGenericListCtrl::SetBackgroundColour( const wxColour
&colour
)
5242 m_mainWin
->SetBackgroundColour( colour
);
5243 m_mainWin
->m_dirty
= true;
5249 bool wxGenericListCtrl::SetForegroundColour( const wxColour
&colour
)
5251 if ( !wxWindow::SetForegroundColour( colour
) )
5256 m_mainWin
->SetForegroundColour( colour
);
5257 m_mainWin
->m_dirty
= true;
5262 m_headerWin
->SetForegroundColour( colour
);
5268 bool wxGenericListCtrl::SetFont( const wxFont
&font
)
5270 if ( !wxWindow::SetFont( font
) )
5275 m_mainWin
->SetFont( font
);
5276 m_mainWin
->m_dirty
= true;
5281 m_headerWin
->SetFont( font
);
5282 CalculateAndSetHeaderHeight();
5293 #include "wx/listbox.h"
5298 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
5301 // Use the same color scheme as wxListBox
5302 return wxListBox::GetClassDefaultAttributes(variant
);
5304 wxUnusedVar(variant
);
5305 wxVisualAttributes attr
;
5306 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
5307 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
5308 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
5313 // ----------------------------------------------------------------------------
5314 // methods forwarded to m_mainWin
5315 // ----------------------------------------------------------------------------
5317 #if wxUSE_DRAG_AND_DROP
5319 void wxGenericListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
5321 m_mainWin
->SetDropTarget( dropTarget
);
5324 wxDropTarget
*wxGenericListCtrl::GetDropTarget() const
5326 return m_mainWin
->GetDropTarget();
5329 #endif // wxUSE_DRAG_AND_DROP
5331 bool wxGenericListCtrl::SetCursor( const wxCursor
&cursor
)
5333 return m_mainWin
? m_mainWin
->wxWindow::SetCursor(cursor
) : false;
5336 wxColour
wxGenericListCtrl::GetBackgroundColour() const
5338 return m_mainWin
? m_mainWin
->GetBackgroundColour() : wxColour();
5341 wxColour
wxGenericListCtrl::GetForegroundColour() const
5343 return m_mainWin
? m_mainWin
->GetForegroundColour() : wxColour();
5346 bool wxGenericListCtrl::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
5349 return m_mainWin
->PopupMenu( menu
, x
, y
);
5352 #endif // wxUSE_MENUS
5355 void wxGenericListCtrl::SetFocus()
5357 /* The test in window.cpp fails as we are a composite
5358 window, so it checks against "this", but not m_mainWin. */
5359 if ( DoFindFocus() != this )
5360 m_mainWin
->SetFocus();
5363 wxSize
wxGenericListCtrl::DoGetBestSize() const
5365 // Something is better than nothing...
5366 // 100x80 is what the MSW version will get from the default
5367 // wxControl::DoGetBestSize
5368 return wxSize(100,80);
5371 // ----------------------------------------------------------------------------
5372 // virtual list control support
5373 // ----------------------------------------------------------------------------
5375 wxString
wxGenericListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
5377 // this is a pure virtual function, in fact - which is not really pure
5378 // because the controls which are not virtual don't need to implement it
5379 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5381 return wxEmptyString
;
5384 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
5386 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
5388 wxT("List control has an image list, OnGetItemImage should be overridden."));
5393 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
5395 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
5396 _T("invalid item index in OnGetItemAttr()") );
5398 // no attributes by default
5402 void wxGenericListCtrl::SetItemCount(long count
)
5404 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5406 m_mainWin
->SetItemCount(count
);
5409 void wxGenericListCtrl::RefreshItem(long item
)
5411 m_mainWin
->RefreshLine(item
);
5414 void wxGenericListCtrl::RefreshItems(long itemFrom
, long itemTo
)
5416 m_mainWin
->RefreshLines(itemFrom
, itemTo
);
5420 * Generic wxListCtrl is more or less a container for two other
5421 * windows which drawings are done upon. These are namely
5422 * 'm_headerWin' and 'm_mainWin'.
5423 * Here we override 'virtual wxWindow::Refresh()' to mimic the
5424 * behaviour wxListCtrl has under wxMSW.
5426 void wxGenericListCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
5430 // The easy case, no rectangle specified.
5432 m_headerWin
->Refresh(eraseBackground
);
5435 m_mainWin
->Refresh(eraseBackground
);
5439 // Refresh the header window
5442 wxRect rectHeader
= m_headerWin
->GetRect();
5443 rectHeader
.Intersect(*rect
);
5444 if (rectHeader
.GetWidth() && rectHeader
.GetHeight())
5447 m_headerWin
->GetPosition(&x
, &y
);
5448 rectHeader
.Offset(-x
, -y
);
5449 m_headerWin
->Refresh(eraseBackground
, &rectHeader
);
5454 // Refresh the main window
5457 wxRect rectMain
= m_mainWin
->GetRect();
5458 rectMain
.Intersect(*rect
);
5459 if (rectMain
.GetWidth() && rectMain
.GetHeight())
5462 m_mainWin
->GetPosition(&x
, &y
);
5463 rectMain
.Offset(-x
, -y
);
5464 m_mainWin
->Refresh(eraseBackground
, &rectMain
);
5470 void wxGenericListCtrl::Freeze()
5472 m_mainWin
->Freeze();
5475 void wxGenericListCtrl::Thaw()
5480 #endif // wxUSE_LISTCTRL