Use WXUNUSED and give more explaination for the handler
[wxWidgets.git] / src / generic / listctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/listctrl.cpp
3 // Purpose: generic implementation of wxListCtrl
4 // Author: Robert Roebling
5 // Vadim Zeitlin (virtual list control support)
6 // Id: $Id$
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 // TODO
12 //
13 // 1. we need to implement searching/sorting for virtual controls somehow
14 // 2. when changing selection the lines are refreshed twice
15
16
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
19
20 #ifdef __BORLANDC__
21 #pragma hdrstop
22 #endif
23
24 #if wxUSE_LISTCTRL
25
26 #include "wx/listctrl.h"
27
28 #if ((!defined(__WXMSW__) && !defined(__WXMAC__)) || defined(__WXUNIVERSAL__))
29 // if we have a native version, its implementation file does all this
30 IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject)
31 IMPLEMENT_DYNAMIC_CLASS(wxListView, wxListCtrl)
32 IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent)
33
34 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxGenericListCtrl)
35 #endif
36
37 #ifndef WX_PRECOMP
38 #include "wx/scrolwin.h"
39 #include "wx/timer.h"
40 #include "wx/settings.h"
41 #include "wx/dynarray.h"
42 #include "wx/dcclient.h"
43 #include "wx/dcscreen.h"
44 #include "wx/math.h"
45 #include "wx/settings.h"
46 #endif
47
48 #include "wx/imaglist.h"
49 #include "wx/selstore.h"
50 #include "wx/renderer.h"
51
52 #ifdef __WXMAC__
53 #include "wx/osx/private.h"
54 #endif
55
56
57 // NOTE: If using the wxListBox visual attributes works everywhere then this can
58 // be removed, as well as the #else case below.
59 #define _USE_VISATTR 0
60
61
62 // ----------------------------------------------------------------------------
63 // constants
64 // ----------------------------------------------------------------------------
65
66 // // the height of the header window (FIXME: should depend on its font!)
67 // static const int HEADER_HEIGHT = 23;
68
69 static const int SCROLL_UNIT_X = 15;
70
71 // the spacing between the lines (in report mode)
72 static const int LINE_SPACING = 0;
73
74 // extra margins around the text label
75 #ifdef __WXGTK__
76 static const int EXTRA_WIDTH = 6;
77 #else
78 static const int EXTRA_WIDTH = 4;
79 #endif
80 static const int EXTRA_HEIGHT = 4;
81
82 // margin between the window and the items
83 static const int EXTRA_BORDER_X = 2;
84 static const int EXTRA_BORDER_Y = 2;
85
86 // offset for the header window
87 static const int HEADER_OFFSET_X = 0;
88 static const int HEADER_OFFSET_Y = 0;
89
90 // margin between rows of icons in [small] icon view
91 static const int MARGIN_BETWEEN_ROWS = 6;
92
93 // when autosizing the columns, add some slack
94 static const int AUTOSIZE_COL_MARGIN = 10;
95
96 // default width for the header columns
97 static const int WIDTH_COL_DEFAULT = 80;
98
99 // the space between the image and the text in the report mode
100 static const int IMAGE_MARGIN_IN_REPORT_MODE = 5;
101
102 // the space between the image and the text in the report mode in header
103 static const int HEADER_IMAGE_MARGIN_IN_REPORT_MODE = 2;
104
105 // ============================================================================
106 // private classes
107 // ============================================================================
108
109 //-----------------------------------------------------------------------------
110 // wxColWidthInfo (internal)
111 //-----------------------------------------------------------------------------
112
113 struct wxColWidthInfo
114 {
115 int nMaxWidth;
116 bool bNeedsUpdate; // only set to true when an item whose
117 // width == nMaxWidth is removed
118
119 wxColWidthInfo(int w = 0, bool needsUpdate = false)
120 {
121 nMaxWidth = w;
122 bNeedsUpdate = needsUpdate;
123 }
124 };
125
126 WX_DEFINE_ARRAY_PTR(wxColWidthInfo *, ColWidthArray);
127
128 //-----------------------------------------------------------------------------
129 // wxListItemData (internal)
130 //-----------------------------------------------------------------------------
131
132 class wxListItemData
133 {
134 public:
135 wxListItemData(wxListMainWindow *owner);
136 ~wxListItemData();
137
138 void SetItem( const wxListItem &info );
139 void SetImage( int image ) { m_image = image; }
140 void SetData( wxUIntPtr data ) { m_data = data; }
141 void SetPosition( int x, int y );
142 void SetSize( int width, int height );
143
144 bool HasText() const { return !m_text.empty(); }
145 const wxString& GetText() const { return m_text; }
146 void SetText(const wxString& text) { m_text = text; }
147
148 // we can't use empty string for measuring the string width/height, so
149 // always return something
150 wxString GetTextForMeasuring() const
151 {
152 wxString s = GetText();
153 if ( s.empty() )
154 s = _T('H');
155
156 return s;
157 }
158
159 bool IsHit( int x, int y ) const;
160
161 int GetX() const;
162 int GetY() const;
163 int GetWidth() const;
164 int GetHeight() const;
165
166 int GetImage() const { return m_image; }
167 bool HasImage() const { return GetImage() != -1; }
168
169 void GetItem( wxListItem &info ) const;
170
171 void SetAttr(wxListItemAttr *attr) { m_attr = attr; }
172 wxListItemAttr *GetAttr() const { return m_attr; }
173
174 public:
175 // the item image or -1
176 int m_image;
177
178 // user data associated with the item
179 wxUIntPtr m_data;
180
181 // the item coordinates are not used in report mode; instead this pointer is
182 // NULL and the owner window is used to retrieve the item position and size
183 wxRect *m_rect;
184
185 // the list ctrl we are in
186 wxListMainWindow *m_owner;
187
188 // custom attributes or NULL
189 wxListItemAttr *m_attr;
190
191 protected:
192 // common part of all ctors
193 void Init();
194
195 wxString m_text;
196 };
197
198 //-----------------------------------------------------------------------------
199 // wxListHeaderData (internal)
200 //-----------------------------------------------------------------------------
201
202 class wxListHeaderData : public wxObject
203 {
204 public:
205 wxListHeaderData();
206 wxListHeaderData( const wxListItem &info );
207 void SetItem( const wxListItem &item );
208 void SetPosition( int x, int y );
209 void SetWidth( int w );
210 void SetState( int state );
211 void SetFormat( int format );
212 void SetHeight( int h );
213 bool HasImage() const;
214
215 bool HasText() const { return !m_text.empty(); }
216 const wxString& GetText() const { return m_text; }
217 void SetText(const wxString& text) { m_text = text; }
218
219 void GetItem( wxListItem &item );
220
221 bool IsHit( int x, int y ) const;
222 int GetImage() const;
223 int GetWidth() const;
224 int GetFormat() const;
225 int GetState() const;
226
227 protected:
228 long m_mask;
229 int m_image;
230 wxString m_text;
231 int m_format;
232 int m_width;
233 int m_xpos,
234 m_ypos;
235 int m_height;
236 int m_state;
237
238 private:
239 void Init();
240 };
241
242 //-----------------------------------------------------------------------------
243 // wxListLineData (internal)
244 //-----------------------------------------------------------------------------
245
246 WX_DECLARE_LIST(wxListItemData, wxListItemDataList);
247 #include "wx/listimpl.cpp"
248 WX_DEFINE_LIST(wxListItemDataList)
249
250 class wxListLineData
251 {
252 public:
253 // the list of subitems: only may have more than one item in report mode
254 wxListItemDataList m_items;
255
256 // this is not used in report view
257 struct GeometryInfo
258 {
259 // total item rect
260 wxRect m_rectAll;
261
262 // label only
263 wxRect m_rectLabel;
264
265 // icon only
266 wxRect m_rectIcon;
267
268 // the part to be highlighted
269 wxRect m_rectHighlight;
270
271 // extend all our rects to be centered inside the one of given width
272 void ExtendWidth(wxCoord w)
273 {
274 wxASSERT_MSG( m_rectAll.width <= w,
275 _T("width can only be increased") );
276
277 m_rectAll.width = w;
278 m_rectLabel.x = m_rectAll.x + (w - m_rectLabel.width) / 2;
279 m_rectIcon.x = m_rectAll.x + (w - m_rectIcon.width) / 2;
280 m_rectHighlight.x = m_rectAll.x + (w - m_rectHighlight.width) / 2;
281 }
282 }
283 *m_gi;
284
285 // is this item selected? [NB: not used in virtual mode]
286 bool m_highlighted;
287
288 // back pointer to the list ctrl
289 wxListMainWindow *m_owner;
290
291 public:
292 wxListLineData(wxListMainWindow *owner);
293
294 ~wxListLineData()
295 {
296 WX_CLEAR_LIST(wxListItemDataList, m_items);
297 delete m_gi;
298 }
299
300 // are we in report mode?
301 inline bool InReportView() const;
302
303 // are we in virtual report mode?
304 inline bool IsVirtual() const;
305
306 // these 2 methods shouldn't be called for report view controls, in that
307 // case we determine our position/size ourselves
308
309 // calculate the size of the line
310 void CalculateSize( wxDC *dc, int spacing );
311
312 // remember the position this line appears at
313 void SetPosition( int x, int y, int spacing );
314
315 // wxListCtrl API
316
317 void SetImage( int image ) { SetImage(0, image); }
318 int GetImage() const { return GetImage(0); }
319 void SetImage( int index, int image );
320 int GetImage( int index ) const;
321
322 bool HasImage() const { return GetImage() != -1; }
323 bool HasText() const { return !GetText(0).empty(); }
324
325 void SetItem( int index, const wxListItem &info );
326 void GetItem( int index, wxListItem &info );
327
328 wxString GetText(int index) const;
329 void SetText( int index, const wxString& s );
330
331 wxListItemAttr *GetAttr() const;
332 void SetAttr(wxListItemAttr *attr);
333
334 // return true if the highlighting really changed
335 bool Highlight( bool on );
336
337 void ReverseHighlight();
338
339 bool IsHighlighted() const
340 {
341 wxASSERT_MSG( !IsVirtual(), _T("unexpected call to IsHighlighted") );
342
343 return m_highlighted;
344 }
345
346 // draw the line on the given DC in icon/list mode
347 void Draw( wxDC *dc );
348
349 // the same in report mode
350 void DrawInReportMode( wxDC *dc,
351 const wxRect& rect,
352 const wxRect& rectHL,
353 bool highlighted );
354
355 private:
356 // set the line to contain num items (only can be > 1 in report mode)
357 void InitItems( int num );
358
359 // get the mode (i.e. style) of the list control
360 inline int GetMode() const;
361
362 // prepare the DC for drawing with these item's attributes, return true if
363 // we need to draw the items background to highlight it, false otherwise
364 bool SetAttributes(wxDC *dc,
365 const wxListItemAttr *attr,
366 bool highlight);
367
368 // draw the text on the DC with the correct justification; also add an
369 // ellipsis if the text is too large to fit in the current width
370 void DrawTextFormatted(wxDC *dc,
371 const wxString &text,
372 int col,
373 int x,
374 int yMid, // this is middle, not top, of the text
375 int width);
376 };
377
378 WX_DECLARE_OBJARRAY(wxListLineData, wxListLineDataArray);
379 #include "wx/arrimpl.cpp"
380 WX_DEFINE_OBJARRAY(wxListLineDataArray)
381
382 //-----------------------------------------------------------------------------
383 // wxListHeaderWindow (internal)
384 //-----------------------------------------------------------------------------
385
386 class wxListHeaderWindow : public wxWindow
387 {
388 protected:
389 wxListMainWindow *m_owner;
390 const wxCursor *m_currentCursor;
391 wxCursor *m_resizeCursor;
392 bool m_isDragging;
393
394 // column being resized or -1
395 int m_column;
396
397 // divider line position in logical (unscrolled) coords
398 int m_currentX;
399
400 // minimal position beyond which the divider line
401 // can't be dragged in logical coords
402 int m_minX;
403
404 public:
405 wxListHeaderWindow();
406
407 wxListHeaderWindow( wxWindow *win,
408 wxWindowID id,
409 wxListMainWindow *owner,
410 const wxPoint &pos = wxDefaultPosition,
411 const wxSize &size = wxDefaultSize,
412 long style = 0,
413 const wxString &name = wxT("wxlistctrlcolumntitles") );
414
415 virtual ~wxListHeaderWindow();
416
417 void DrawCurrent();
418 void AdjustDC( wxDC& dc );
419
420 void OnPaint( wxPaintEvent &event );
421 void OnMouse( wxMouseEvent &event );
422 void OnSetFocus( wxFocusEvent &event );
423
424 // needs refresh
425 bool m_dirty;
426
427 private:
428 // common part of all ctors
429 void Init();
430
431 // generate and process the list event of the given type, return true if
432 // it wasn't vetoed, i.e. if we should proceed
433 bool SendListEvent(wxEventType type, const wxPoint& pos);
434
435 DECLARE_EVENT_TABLE()
436 };
437
438 //-----------------------------------------------------------------------------
439 // wxListRenameTimer (internal)
440 //-----------------------------------------------------------------------------
441
442 class wxListRenameTimer: public wxTimer
443 {
444 private:
445 wxListMainWindow *m_owner;
446
447 public:
448 wxListRenameTimer( wxListMainWindow *owner );
449 void Notify();
450 };
451
452 //-----------------------------------------------------------------------------
453 // wxListTextCtrlWrapper: wraps a wxTextCtrl to make it work for inline editing
454 //-----------------------------------------------------------------------------
455
456 class wxListTextCtrlWrapper : public wxEvtHandler
457 {
458 public:
459 // NB: text must be a valid object but not Create()d yet
460 wxListTextCtrlWrapper(wxListMainWindow *owner,
461 wxTextCtrl *text,
462 size_t itemEdit);
463
464 wxTextCtrl *GetText() const { return m_text; }
465
466 void EndEdit( bool discardChanges );
467
468 protected:
469 void OnChar( wxKeyEvent &event );
470 void OnKeyUp( wxKeyEvent &event );
471 void OnKillFocus( wxFocusEvent &event );
472
473 bool AcceptChanges();
474 void Finish( bool setfocus );
475
476 private:
477 wxListMainWindow *m_owner;
478 wxTextCtrl *m_text;
479 wxString m_startValue;
480 size_t m_itemEdited;
481 bool m_aboutToFinish;
482
483 DECLARE_EVENT_TABLE()
484 };
485
486 //-----------------------------------------------------------------------------
487 // wxListMainWindow (internal)
488 //-----------------------------------------------------------------------------
489
490 WX_DECLARE_LIST(wxListHeaderData, wxListHeaderDataList);
491 #include "wx/listimpl.cpp"
492 WX_DEFINE_LIST(wxListHeaderDataList)
493
494 class wxListMainWindow : public wxScrolledCanvas
495 {
496 public:
497 wxListMainWindow();
498 wxListMainWindow( wxWindow *parent,
499 wxWindowID id,
500 const wxPoint& pos = wxDefaultPosition,
501 const wxSize& size = wxDefaultSize,
502 long style = 0,
503 const wxString &name = _T("listctrlmainwindow") );
504
505 virtual ~wxListMainWindow();
506
507 bool HasFlag(int flag) const { return m_parent->HasFlag(flag); }
508
509 // return true if this is a virtual list control
510 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL); }
511
512 // return true if the control is in report mode
513 bool InReportView() const { return HasFlag(wxLC_REPORT); }
514
515 // return true if we are in single selection mode, false if multi sel
516 bool IsSingleSel() const { return HasFlag(wxLC_SINGLE_SEL); }
517
518 // do we have a header window?
519 bool HasHeader() const
520 { return InReportView() && !HasFlag(wxLC_NO_HEADER); }
521
522 void HighlightAll( bool on );
523
524 // all these functions only do something if the line is currently visible
525
526 // change the line "selected" state, return true if it really changed
527 bool HighlightLine( size_t line, bool highlight = true);
528
529 // as HighlightLine() but do it for the range of lines: this is incredibly
530 // more efficient for virtual list controls!
531 //
532 // NB: unlike HighlightLine() this one does refresh the lines on screen
533 void HighlightLines( size_t lineFrom, size_t lineTo, bool on = true );
534
535 // toggle the line state and refresh it
536 void ReverseHighlight( size_t line )
537 { HighlightLine(line, !IsHighlighted(line)); RefreshLine(line); }
538
539 // return true if the line is highlighted
540 bool IsHighlighted(size_t line) const;
541
542 // refresh one or several lines at once
543 void RefreshLine( size_t line );
544 void RefreshLines( size_t lineFrom, size_t lineTo );
545
546 // refresh all selected items
547 void RefreshSelected();
548
549 // refresh all lines below the given one: the difference with
550 // RefreshLines() is that the index here might not be a valid one (happens
551 // when the last line is deleted)
552 void RefreshAfter( size_t lineFrom );
553
554 // the methods which are forwarded to wxListLineData itself in list/icon
555 // modes but are here because the lines don't store their positions in the
556 // report mode
557
558 // get the bound rect for the entire line
559 wxRect GetLineRect(size_t line) const;
560
561 // get the bound rect of the label
562 wxRect GetLineLabelRect(size_t line) const;
563
564 // get the bound rect of the items icon (only may be called if we do have
565 // an icon!)
566 wxRect GetLineIconRect(size_t line) const;
567
568 // get the rect to be highlighted when the item has focus
569 wxRect GetLineHighlightRect(size_t line) const;
570
571 // get the size of the total line rect
572 wxSize GetLineSize(size_t line) const
573 { return GetLineRect(line).GetSize(); }
574
575 // return the hit code for the corresponding position (in this line)
576 long HitTestLine(size_t line, int x, int y) const;
577
578 // bring the selected item into view, scrolling to it if necessary
579 void MoveToItem(size_t item);
580
581 bool ScrollList( int WXUNUSED(dx), int dy );
582
583 // bring the current item into view
584 void MoveToFocus() { MoveToItem(m_current); }
585
586 // start editing the label of the given item
587 wxTextCtrl *EditLabel(long item,
588 wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
589 wxTextCtrl *GetEditControl() const
590 {
591 return m_textctrlWrapper ? m_textctrlWrapper->GetText() : NULL;
592 }
593
594 void ResetTextControl(wxTextCtrl *text)
595 {
596 delete text;
597 m_textctrlWrapper = NULL;
598 }
599
600 void OnRenameTimer();
601 bool OnRenameAccept(size_t itemEdit, const wxString& value);
602 void OnRenameCancelled(size_t itemEdit);
603
604 void OnMouse( wxMouseEvent &event );
605
606 // called to switch the selection from the current item to newCurrent,
607 void OnArrowChar( size_t newCurrent, const wxKeyEvent& event );
608
609 void OnChar( wxKeyEvent &event );
610 void OnKeyDown( wxKeyEvent &event );
611 void OnKeyUp( wxKeyEvent &event );
612 void OnSetFocus( wxFocusEvent &event );
613 void OnKillFocus( wxFocusEvent &event );
614 void OnScroll( wxScrollWinEvent& event );
615
616 void OnPaint( wxPaintEvent &event );
617
618 void OnChildFocus(wxChildFocusEvent& event);
619
620 void DrawImage( int index, wxDC *dc, int x, int y );
621 void GetImageSize( int index, int &width, int &height ) const;
622 int GetTextLength( const wxString &s ) const;
623
624 void SetImageList( wxImageList *imageList, int which );
625 void SetItemSpacing( int spacing, bool isSmall = false );
626 int GetItemSpacing( bool isSmall = false );
627
628 void SetColumn( int col, wxListItem &item );
629 void SetColumnWidth( int col, int width );
630 void GetColumn( int col, wxListItem &item ) const;
631 int GetColumnWidth( int col ) const;
632 int GetColumnCount() const { return m_columns.GetCount(); }
633
634 // returns the sum of the heights of all columns
635 int GetHeaderWidth() const;
636
637 int GetCountPerPage() const;
638
639 void SetItem( wxListItem &item );
640 void GetItem( wxListItem &item ) const;
641 void SetItemState( long item, long state, long stateMask );
642 void SetItemStateAll( long state, long stateMask );
643 int GetItemState( long item, long stateMask ) const;
644 bool GetItemRect( long item, wxRect &rect ) const
645 {
646 return GetSubItemRect(item, wxLIST_GETSUBITEMRECT_WHOLEITEM, rect);
647 }
648 bool GetSubItemRect( long item, long subItem, wxRect& rect ) const;
649 wxRect GetViewRect() const;
650 bool GetItemPosition( long item, wxPoint& pos ) const;
651 int GetSelectedItemCount() const;
652
653 wxString GetItemText(long item) const
654 {
655 wxListItem info;
656 info.m_mask = wxLIST_MASK_TEXT;
657 info.m_itemId = item;
658 GetItem( info );
659 return info.m_text;
660 }
661
662 void SetItemText(long item, const wxString& value)
663 {
664 wxListItem info;
665 info.m_mask = wxLIST_MASK_TEXT;
666 info.m_itemId = item;
667 info.m_text = value;
668 SetItem( info );
669 }
670
671 // set the scrollbars and update the positions of the items
672 void RecalculatePositions(bool noRefresh = false);
673
674 // refresh the window and the header
675 void RefreshAll();
676
677 long GetNextItem( long item, int geometry, int state ) const;
678 void DeleteItem( long index );
679 void DeleteAllItems();
680 void DeleteColumn( int col );
681 void DeleteEverything();
682 void EnsureVisible( long index );
683 long FindItem( long start, const wxString& str, bool partial = false );
684 long FindItem( long start, wxUIntPtr data);
685 long FindItem( const wxPoint& pt );
686 long HitTest( int x, int y, int &flags ) const;
687 void InsertItem( wxListItem &item );
688 void InsertColumn( long col, wxListItem &item );
689 int GetItemWidthWithImage(wxListItem * item);
690 void SortItems( wxListCtrlCompare fn, long data );
691
692 size_t GetItemCount() const;
693 bool IsEmpty() const { return GetItemCount() == 0; }
694 void SetItemCount(long count);
695
696 // change the current (== focused) item, send a notification event
697 void ChangeCurrent(size_t current);
698 void ResetCurrent() { ChangeCurrent((size_t)-1); }
699 bool HasCurrent() const { return m_current != (size_t)-1; }
700
701 // send out a wxListEvent
702 void SendNotify( size_t line,
703 wxEventType command,
704 const wxPoint& point = wxDefaultPosition );
705
706 // override base class virtual to reset m_lineHeight when the font changes
707 virtual bool SetFont(const wxFont& font)
708 {
709 if ( !wxScrolledCanvas::SetFont(font) )
710 return false;
711
712 m_lineHeight = 0;
713
714 return true;
715 }
716
717 // these are for wxListLineData usage only
718
719 // get the backpointer to the list ctrl
720 wxGenericListCtrl *GetListCtrl() const
721 {
722 return wxStaticCast(GetParent(), wxGenericListCtrl);
723 }
724
725 // get the height of all lines (assuming they all do have the same height)
726 wxCoord GetLineHeight() const;
727
728 // get the y position of the given line (only for report view)
729 wxCoord GetLineY(size_t line) const;
730
731 // get the brush to use for the item highlighting
732 wxBrush *GetHighlightBrush() const
733 {
734 return m_hasFocus ? m_highlightBrush : m_highlightUnfocusedBrush;
735 }
736
737 bool HasFocus() const
738 {
739 return m_hasFocus;
740 }
741
742 //protected:
743 // the array of all line objects for a non virtual list control (for the
744 // virtual list control we only ever use m_lines[0])
745 wxListLineDataArray m_lines;
746
747 // the list of column objects
748 wxListHeaderDataList m_columns;
749
750 // currently focused item or -1
751 size_t m_current;
752
753 // the number of lines per page
754 int m_linesPerPage;
755
756 // this flag is set when something which should result in the window
757 // redrawing happens (i.e. an item was added or deleted, or its appearance
758 // changed) and OnPaint() doesn't redraw the window while it is set which
759 // allows to minimize the number of repaintings when a lot of items are
760 // being added. The real repainting occurs only after the next OnIdle()
761 // call
762 bool m_dirty;
763
764 wxColour *m_highlightColour;
765 wxImageList *m_small_image_list;
766 wxImageList *m_normal_image_list;
767 int m_small_spacing;
768 int m_normal_spacing;
769 bool m_hasFocus;
770
771 bool m_lastOnSame;
772 wxTimer *m_renameTimer;
773 bool m_isCreated;
774 int m_dragCount;
775 wxPoint m_dragStart;
776 ColWidthArray m_aColWidths;
777
778 // for double click logic
779 size_t m_lineLastClicked,
780 m_lineBeforeLastClicked,
781 m_lineSelectSingleOnUp;
782
783 protected:
784 wxWindow *GetMainWindowOfCompositeControl() { return GetParent(); }
785
786 // the total count of items in a virtual list control
787 size_t m_countVirt;
788
789 // the object maintaining the items selection state, only used in virtual
790 // controls
791 wxSelectionStore m_selStore;
792
793 // common part of all ctors
794 void Init();
795
796 // get the line data for the given index
797 wxListLineData *GetLine(size_t n) const
798 {
799 wxASSERT_MSG( n != (size_t)-1, _T("invalid line index") );
800
801 if ( IsVirtual() )
802 {
803 wxConstCast(this, wxListMainWindow)->CacheLineData(n);
804 n = 0;
805 }
806
807 return &m_lines[n];
808 }
809
810 // get a dummy line which can be used for geometry calculations and such:
811 // you must use GetLine() if you want to really draw the line
812 wxListLineData *GetDummyLine() const;
813
814 // cache the line data of the n-th line in m_lines[0]
815 void CacheLineData(size_t line);
816
817 // get the range of visible lines
818 void GetVisibleLinesRange(size_t *from, size_t *to);
819
820 // force us to recalculate the range of visible lines
821 void ResetVisibleLinesRange() { m_lineFrom = (size_t)-1; }
822
823 // get the colour to be used for drawing the rules
824 wxColour GetRuleColour() const
825 {
826 return wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT);
827 }
828
829 private:
830 // initialize the current item if needed
831 void UpdateCurrent();
832
833 // delete all items but don't refresh: called from dtor
834 void DoDeleteAllItems();
835
836 // the height of one line using the current font
837 wxCoord m_lineHeight;
838
839 // the total header width or 0 if not calculated yet
840 wxCoord m_headerWidth;
841
842 // the first and last lines being shown on screen right now (inclusive),
843 // both may be -1 if they must be calculated so never access them directly:
844 // use GetVisibleLinesRange() above instead
845 size_t m_lineFrom,
846 m_lineTo;
847
848 // the brushes to use for item highlighting when we do/don't have focus
849 wxBrush *m_highlightBrush,
850 *m_highlightUnfocusedBrush;
851
852 // wrapper around the text control currently used for in place editing or
853 // NULL if no item is being edited
854 wxListTextCtrlWrapper *m_textctrlWrapper;
855
856
857 DECLARE_EVENT_TABLE()
858
859 friend class wxGenericListCtrl;
860 };
861
862
863 wxListItemData::~wxListItemData()
864 {
865 // in the virtual list control the attributes are managed by the main
866 // program, so don't delete them
867 if ( !m_owner->IsVirtual() )
868 delete m_attr;
869
870 delete m_rect;
871 }
872
873 void wxListItemData::Init()
874 {
875 m_image = -1;
876 m_data = 0;
877
878 m_attr = NULL;
879 }
880
881 wxListItemData::wxListItemData(wxListMainWindow *owner)
882 {
883 Init();
884
885 m_owner = owner;
886
887 if ( owner->InReportView() )
888 m_rect = NULL;
889 else
890 m_rect = new wxRect;
891 }
892
893 void wxListItemData::SetItem( const wxListItem &info )
894 {
895 if ( info.m_mask & wxLIST_MASK_TEXT )
896 SetText(info.m_text);
897 if ( info.m_mask & wxLIST_MASK_IMAGE )
898 m_image = info.m_image;
899 if ( info.m_mask & wxLIST_MASK_DATA )
900 m_data = info.m_data;
901
902 if ( info.HasAttributes() )
903 {
904 if ( m_attr )
905 m_attr->AssignFrom(*info.GetAttributes());
906 else
907 m_attr = new wxListItemAttr(*info.GetAttributes());
908 }
909
910 if ( m_rect )
911 {
912 m_rect->x =
913 m_rect->y =
914 m_rect->height = 0;
915 m_rect->width = info.m_width;
916 }
917 }
918
919 void wxListItemData::SetPosition( int x, int y )
920 {
921 wxCHECK_RET( m_rect, _T("unexpected SetPosition() call") );
922
923 m_rect->x = x;
924 m_rect->y = y;
925 }
926
927 void wxListItemData::SetSize( int width, int height )
928 {
929 wxCHECK_RET( m_rect, _T("unexpected SetSize() call") );
930
931 if ( width != -1 )
932 m_rect->width = width;
933 if ( height != -1 )
934 m_rect->height = height;
935 }
936
937 bool wxListItemData::IsHit( int x, int y ) const
938 {
939 wxCHECK_MSG( m_rect, false, _T("can't be called in this mode") );
940
941 return wxRect(GetX(), GetY(), GetWidth(), GetHeight()).Contains(x, y);
942 }
943
944 int wxListItemData::GetX() const
945 {
946 wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") );
947
948 return m_rect->x;
949 }
950
951 int wxListItemData::GetY() const
952 {
953 wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") );
954
955 return m_rect->y;
956 }
957
958 int wxListItemData::GetWidth() const
959 {
960 wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") );
961
962 return m_rect->width;
963 }
964
965 int wxListItemData::GetHeight() const
966 {
967 wxCHECK_MSG( m_rect, 0, _T("can't be called in this mode") );
968
969 return m_rect->height;
970 }
971
972 void wxListItemData::GetItem( wxListItem &info ) const
973 {
974 long mask = info.m_mask;
975 if ( !mask )
976 // by default, get everything for backwards compatibility
977 mask = -1;
978
979 if ( mask & wxLIST_MASK_TEXT )
980 info.m_text = m_text;
981 if ( mask & wxLIST_MASK_IMAGE )
982 info.m_image = m_image;
983 if ( mask & wxLIST_MASK_DATA )
984 info.m_data = m_data;
985
986 if ( m_attr )
987 {
988 if ( m_attr->HasTextColour() )
989 info.SetTextColour(m_attr->GetTextColour());
990 if ( m_attr->HasBackgroundColour() )
991 info.SetBackgroundColour(m_attr->GetBackgroundColour());
992 if ( m_attr->HasFont() )
993 info.SetFont(m_attr->GetFont());
994 }
995 }
996
997 //-----------------------------------------------------------------------------
998 // wxListHeaderData
999 //-----------------------------------------------------------------------------
1000
1001 void wxListHeaderData::Init()
1002 {
1003 m_mask = 0;
1004 m_image = -1;
1005 m_format = 0;
1006 m_width = 0;
1007 m_xpos = 0;
1008 m_ypos = 0;
1009 m_height = 0;
1010 m_state = 0;
1011 }
1012
1013 wxListHeaderData::wxListHeaderData()
1014 {
1015 Init();
1016 }
1017
1018 wxListHeaderData::wxListHeaderData( const wxListItem &item )
1019 {
1020 Init();
1021
1022 SetItem( item );
1023 }
1024
1025 void wxListHeaderData::SetItem( const wxListItem &item )
1026 {
1027 m_mask = item.m_mask;
1028
1029 if ( m_mask & wxLIST_MASK_TEXT )
1030 m_text = item.m_text;
1031
1032 if ( m_mask & wxLIST_MASK_IMAGE )
1033 m_image = item.m_image;
1034
1035 if ( m_mask & wxLIST_MASK_FORMAT )
1036 m_format = item.m_format;
1037
1038 if ( m_mask & wxLIST_MASK_WIDTH )
1039 SetWidth(item.m_width);
1040
1041 if ( m_mask & wxLIST_MASK_STATE )
1042 SetState(item.m_state);
1043 }
1044
1045 void wxListHeaderData::SetPosition( int x, int y )
1046 {
1047 m_xpos = x;
1048 m_ypos = y;
1049 }
1050
1051 void wxListHeaderData::SetHeight( int h )
1052 {
1053 m_height = h;
1054 }
1055
1056 void wxListHeaderData::SetWidth( int w )
1057 {
1058 m_width = w < 0 ? WIDTH_COL_DEFAULT : w;
1059 }
1060
1061 void wxListHeaderData::SetState( int flag )
1062 {
1063 m_state = flag;
1064 }
1065
1066 void wxListHeaderData::SetFormat( int format )
1067 {
1068 m_format = format;
1069 }
1070
1071 bool wxListHeaderData::HasImage() const
1072 {
1073 return m_image != -1;
1074 }
1075
1076 bool wxListHeaderData::IsHit( int x, int y ) const
1077 {
1078 return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height));
1079 }
1080
1081 void wxListHeaderData::GetItem( wxListItem& item )
1082 {
1083 item.m_mask = m_mask;
1084 item.m_text = m_text;
1085 item.m_image = m_image;
1086 item.m_format = m_format;
1087 item.m_width = m_width;
1088 item.m_state = m_state;
1089 }
1090
1091 int wxListHeaderData::GetImage() const
1092 {
1093 return m_image;
1094 }
1095
1096 int wxListHeaderData::GetWidth() const
1097 {
1098 return m_width;
1099 }
1100
1101 int wxListHeaderData::GetFormat() const
1102 {
1103 return m_format;
1104 }
1105
1106 int wxListHeaderData::GetState() const
1107 {
1108 return m_state;
1109 }
1110
1111 //-----------------------------------------------------------------------------
1112 // wxListLineData
1113 //-----------------------------------------------------------------------------
1114
1115 inline int wxListLineData::GetMode() const
1116 {
1117 return m_owner->GetListCtrl()->GetWindowStyleFlag() & wxLC_MASK_TYPE;
1118 }
1119
1120 inline bool wxListLineData::InReportView() const
1121 {
1122 return m_owner->HasFlag(wxLC_REPORT);
1123 }
1124
1125 inline bool wxListLineData::IsVirtual() const
1126 {
1127 return m_owner->IsVirtual();
1128 }
1129
1130 wxListLineData::wxListLineData( wxListMainWindow *owner )
1131 {
1132 m_owner = owner;
1133
1134 if ( InReportView() )
1135 m_gi = NULL;
1136 else // !report
1137 m_gi = new GeometryInfo;
1138
1139 m_highlighted = false;
1140
1141 InitItems( GetMode() == wxLC_REPORT ? m_owner->GetColumnCount() : 1 );
1142 }
1143
1144 void wxListLineData::CalculateSize( wxDC *dc, int spacing )
1145 {
1146 wxListItemDataList::compatibility_iterator node = m_items.GetFirst();
1147 wxCHECK_RET( node, _T("no subitems at all??") );
1148
1149 wxListItemData *item = node->GetData();
1150
1151 wxString s;
1152 wxCoord lw, lh;
1153
1154 switch ( GetMode() )
1155 {
1156 case wxLC_ICON:
1157 case wxLC_SMALL_ICON:
1158 m_gi->m_rectAll.width = spacing;
1159
1160 s = item->GetText();
1161
1162 if ( s.empty() )
1163 {
1164 lh =
1165 m_gi->m_rectLabel.width =
1166 m_gi->m_rectLabel.height = 0;
1167 }
1168 else // has label
1169 {
1170 dc->GetTextExtent( s, &lw, &lh );
1171 lw += EXTRA_WIDTH;
1172 lh += EXTRA_HEIGHT;
1173
1174 m_gi->m_rectAll.height = spacing + lh;
1175 if (lw > spacing)
1176 m_gi->m_rectAll.width = lw;
1177
1178 m_gi->m_rectLabel.width = lw;
1179 m_gi->m_rectLabel.height = lh;
1180 }
1181
1182 if (item->HasImage())
1183 {
1184 int w, h;
1185 m_owner->GetImageSize( item->GetImage(), w, h );
1186 m_gi->m_rectIcon.width = w + 8;
1187 m_gi->m_rectIcon.height = h + 8;
1188
1189 if ( m_gi->m_rectIcon.width > m_gi->m_rectAll.width )
1190 m_gi->m_rectAll.width = m_gi->m_rectIcon.width;
1191 if ( m_gi->m_rectIcon.height + lh > m_gi->m_rectAll.height - 4 )
1192 m_gi->m_rectAll.height = m_gi->m_rectIcon.height + lh + 4;
1193 }
1194
1195 if ( item->HasText() )
1196 {
1197 m_gi->m_rectHighlight.width = m_gi->m_rectLabel.width;
1198 m_gi->m_rectHighlight.height = m_gi->m_rectLabel.height;
1199 }
1200 else // no text, highlight the icon
1201 {
1202 m_gi->m_rectHighlight.width = m_gi->m_rectIcon.width;
1203 m_gi->m_rectHighlight.height = m_gi->m_rectIcon.height;
1204 }
1205 break;
1206
1207 case wxLC_LIST:
1208 s = item->GetTextForMeasuring();
1209
1210 dc->GetTextExtent( s, &lw, &lh );
1211 lw += EXTRA_WIDTH;
1212 lh += EXTRA_HEIGHT;
1213
1214 m_gi->m_rectLabel.width = lw;
1215 m_gi->m_rectLabel.height = lh;
1216
1217 m_gi->m_rectAll.width = lw;
1218 m_gi->m_rectAll.height = lh;
1219
1220 if (item->HasImage())
1221 {
1222 int w, h;
1223 m_owner->GetImageSize( item->GetImage(), w, h );
1224 m_gi->m_rectIcon.width = w;
1225 m_gi->m_rectIcon.height = h;
1226
1227 m_gi->m_rectAll.width += 4 + w;
1228 if (h > m_gi->m_rectAll.height)
1229 m_gi->m_rectAll.height = h;
1230 }
1231
1232 m_gi->m_rectHighlight.width = m_gi->m_rectAll.width;
1233 m_gi->m_rectHighlight.height = m_gi->m_rectAll.height;
1234 break;
1235
1236 case wxLC_REPORT:
1237 wxFAIL_MSG( _T("unexpected call to SetSize") );
1238 break;
1239
1240 default:
1241 wxFAIL_MSG( _T("unknown mode") );
1242 break;
1243 }
1244 }
1245
1246 void wxListLineData::SetPosition( int x, int y, int spacing )
1247 {
1248 wxListItemDataList::compatibility_iterator node = m_items.GetFirst();
1249 wxCHECK_RET( node, _T("no subitems at all??") );
1250
1251 wxListItemData *item = node->GetData();
1252
1253 switch ( GetMode() )
1254 {
1255 case wxLC_ICON:
1256 case wxLC_SMALL_ICON:
1257 m_gi->m_rectAll.x = x;
1258 m_gi->m_rectAll.y = y;
1259
1260 if ( item->HasImage() )
1261 {
1262 m_gi->m_rectIcon.x = m_gi->m_rectAll.x + 4 +
1263 (m_gi->m_rectAll.width - m_gi->m_rectIcon.width) / 2;
1264 m_gi->m_rectIcon.y = m_gi->m_rectAll.y + 4;
1265 }
1266
1267 if ( item->HasText() )
1268 {
1269 if (m_gi->m_rectAll.width > spacing)
1270 m_gi->m_rectLabel.x = m_gi->m_rectAll.x + (EXTRA_WIDTH/2);
1271 else
1272 m_gi->m_rectLabel.x = m_gi->m_rectAll.x + (EXTRA_WIDTH/2) + (spacing / 2) - (m_gi->m_rectLabel.width / 2);
1273 m_gi->m_rectLabel.y = m_gi->m_rectAll.y + m_gi->m_rectAll.height + 2 - m_gi->m_rectLabel.height;
1274 m_gi->m_rectHighlight.x = m_gi->m_rectLabel.x - 2;
1275 m_gi->m_rectHighlight.y = m_gi->m_rectLabel.y - 2;
1276 }
1277 else // no text, highlight the icon
1278 {
1279 m_gi->m_rectHighlight.x = m_gi->m_rectIcon.x - 4;
1280 m_gi->m_rectHighlight.y = m_gi->m_rectIcon.y - 4;
1281 }
1282 break;
1283
1284 case wxLC_LIST:
1285 m_gi->m_rectAll.x = x;
1286 m_gi->m_rectAll.y = y;
1287
1288 m_gi->m_rectHighlight.x = m_gi->m_rectAll.x;
1289 m_gi->m_rectHighlight.y = m_gi->m_rectAll.y;
1290 m_gi->m_rectLabel.y = m_gi->m_rectAll.y + 2;
1291
1292 if (item->HasImage())
1293 {
1294 m_gi->m_rectIcon.x = m_gi->m_rectAll.x + 2;
1295 m_gi->m_rectIcon.y = m_gi->m_rectAll.y + 2;
1296 m_gi->m_rectLabel.x = m_gi->m_rectAll.x + 4 + (EXTRA_WIDTH/2) + m_gi->m_rectIcon.width;
1297 }
1298 else
1299 {
1300 m_gi->m_rectLabel.x = m_gi->m_rectAll.x + (EXTRA_WIDTH/2);
1301 }
1302 break;
1303
1304 case wxLC_REPORT:
1305 wxFAIL_MSG( _T("unexpected call to SetPosition") );
1306 break;
1307
1308 default:
1309 wxFAIL_MSG( _T("unknown mode") );
1310 break;
1311 }
1312 }
1313
1314 void wxListLineData::InitItems( int num )
1315 {
1316 for (int i = 0; i < num; i++)
1317 m_items.Append( new wxListItemData(m_owner) );
1318 }
1319
1320 void wxListLineData::SetItem( int index, const wxListItem &info )
1321 {
1322 wxListItemDataList::compatibility_iterator node = m_items.Item( index );
1323 wxCHECK_RET( node, _T("invalid column index in SetItem") );
1324
1325 wxListItemData *item = node->GetData();
1326 item->SetItem( info );
1327 }
1328
1329 void wxListLineData::GetItem( int index, wxListItem &info )
1330 {
1331 wxListItemDataList::compatibility_iterator node = m_items.Item( index );
1332 if (node)
1333 {
1334 wxListItemData *item = node->GetData();
1335 item->GetItem( info );
1336 }
1337 }
1338
1339 wxString wxListLineData::GetText(int index) const
1340 {
1341 wxString s;
1342
1343 wxListItemDataList::compatibility_iterator node = m_items.Item( index );
1344 if (node)
1345 {
1346 wxListItemData *item = node->GetData();
1347 s = item->GetText();
1348 }
1349
1350 return s;
1351 }
1352
1353 void wxListLineData::SetText( int index, const wxString& s )
1354 {
1355 wxListItemDataList::compatibility_iterator node = m_items.Item( index );
1356 if (node)
1357 {
1358 wxListItemData *item = node->GetData();
1359 item->SetText( s );
1360 }
1361 }
1362
1363 void wxListLineData::SetImage( int index, int image )
1364 {
1365 wxListItemDataList::compatibility_iterator node = m_items.Item( index );
1366 wxCHECK_RET( node, _T("invalid column index in SetImage()") );
1367
1368 wxListItemData *item = node->GetData();
1369 item->SetImage(image);
1370 }
1371
1372 int wxListLineData::GetImage( int index ) const
1373 {
1374 wxListItemDataList::compatibility_iterator node = m_items.Item( index );
1375 wxCHECK_MSG( node, -1, _T("invalid column index in GetImage()") );
1376
1377 wxListItemData *item = node->GetData();
1378 return item->GetImage();
1379 }
1380
1381 wxListItemAttr *wxListLineData::GetAttr() const
1382 {
1383 wxListItemDataList::compatibility_iterator node = m_items.GetFirst();
1384 wxCHECK_MSG( node, NULL, _T("invalid column index in GetAttr()") );
1385
1386 wxListItemData *item = node->GetData();
1387 return item->GetAttr();
1388 }
1389
1390 void wxListLineData::SetAttr(wxListItemAttr *attr)
1391 {
1392 wxListItemDataList::compatibility_iterator node = m_items.GetFirst();
1393 wxCHECK_RET( node, _T("invalid column index in SetAttr()") );
1394
1395 wxListItemData *item = node->GetData();
1396 item->SetAttr(attr);
1397 }
1398
1399 bool wxListLineData::SetAttributes(wxDC *dc,
1400 const wxListItemAttr *attr,
1401 bool highlighted)
1402 {
1403 wxWindow *listctrl = m_owner->GetParent();
1404
1405 // fg colour
1406
1407 // don't use foreground colour for drawing highlighted items - this might
1408 // make them completely invisible (and there is no way to do bit
1409 // arithmetics on wxColour, unfortunately)
1410 wxColour colText;
1411 if ( highlighted )
1412 #ifdef __WXMAC__
1413 {
1414 if (m_owner->HasFocus()
1415 #if !defined(__WXUNIVERSAL__)
1416 && IsControlActive( (ControlRef)m_owner->GetHandle() )
1417 #endif
1418 )
1419 colText = *wxWHITE;
1420 else
1421 colText = *wxBLACK;
1422 }
1423 #else
1424 colText = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT);
1425 #endif
1426 else if ( attr && attr->HasTextColour() )
1427 colText = attr->GetTextColour();
1428 else
1429 colText = listctrl->GetForegroundColour();
1430
1431 dc->SetTextForeground(colText);
1432
1433 // font
1434 wxFont font;
1435 if ( attr && attr->HasFont() )
1436 font = attr->GetFont();
1437 else
1438 font = listctrl->GetFont();
1439
1440 dc->SetFont(font);
1441
1442 // bg colour
1443 bool hasBgCol = attr && attr->HasBackgroundColour();
1444 if ( highlighted || hasBgCol )
1445 {
1446 if ( highlighted )
1447 dc->SetBrush( *m_owner->GetHighlightBrush() );
1448 else
1449 dc->SetBrush(wxBrush(attr->GetBackgroundColour(), wxBRUSHSTYLE_SOLID));
1450
1451 dc->SetPen( *wxTRANSPARENT_PEN );
1452
1453 return true;
1454 }
1455
1456 return false;
1457 }
1458
1459 void wxListLineData::Draw( wxDC *dc )
1460 {
1461 wxListItemDataList::compatibility_iterator node = m_items.GetFirst();
1462 wxCHECK_RET( node, _T("no subitems at all??") );
1463
1464 bool highlighted = IsHighlighted();
1465
1466 wxListItemAttr *attr = GetAttr();
1467
1468 if ( SetAttributes(dc, attr, highlighted) )
1469 #if ( !defined(__WXGTK20__) && !defined(__WXMAC__) )
1470 {
1471 dc->DrawRectangle( m_gi->m_rectHighlight );
1472 }
1473 #else
1474 {
1475 if (highlighted)
1476 {
1477 int flags = wxCONTROL_SELECTED;
1478 if (m_owner->HasFocus()
1479 #if defined( __WXMAC__ ) && !defined(__WXUNIVERSAL__)
1480 && IsControlActive( (ControlRef)m_owner->GetHandle() )
1481 #endif
1482 )
1483 flags |= wxCONTROL_FOCUSED;
1484 wxRendererNative::Get().DrawItemSelectionRect( m_owner, *dc, m_gi->m_rectHighlight, flags );
1485
1486 }
1487 else
1488 {
1489 dc->DrawRectangle( m_gi->m_rectHighlight );
1490 }
1491 }
1492 #endif
1493
1494 // just for debugging to better see where the items are
1495 #if 0
1496 dc->SetPen(*wxRED_PEN);
1497 dc->SetBrush(*wxTRANSPARENT_BRUSH);
1498 dc->DrawRectangle( m_gi->m_rectAll );
1499 dc->SetPen(*wxGREEN_PEN);
1500 dc->DrawRectangle( m_gi->m_rectIcon );
1501 #endif
1502
1503 wxListItemData *item = node->GetData();
1504 if (item->HasImage())
1505 {
1506 // centre the image inside our rectangle, this looks nicer when items
1507 // ae aligned in a row
1508 const wxRect& rectIcon = m_gi->m_rectIcon;
1509
1510 m_owner->DrawImage(item->GetImage(), dc, rectIcon.x, rectIcon.y);
1511 }
1512
1513 if (item->HasText())
1514 {
1515 const wxRect& rectLabel = m_gi->m_rectLabel;
1516
1517 wxDCClipper clipper(*dc, rectLabel);
1518 dc->DrawText(item->GetText(), rectLabel.x, rectLabel.y);
1519 }
1520 }
1521
1522 void wxListLineData::DrawInReportMode( wxDC *dc,
1523 const wxRect& rect,
1524 const wxRect& rectHL,
1525 bool highlighted )
1526 {
1527 // TODO: later we should support setting different attributes for
1528 // different columns - to do it, just add "col" argument to
1529 // GetAttr() and move these lines into the loop below
1530 wxListItemAttr *attr = GetAttr();
1531 if ( SetAttributes(dc, attr, highlighted) )
1532 #if ( !defined(__WXGTK20__) && !defined(__WXMAC__) )
1533 {
1534 dc->DrawRectangle( rectHL );
1535 }
1536 #else
1537 {
1538 if (highlighted)
1539 {
1540 int flags = wxCONTROL_SELECTED;
1541 if (m_owner->HasFocus())
1542 flags |= wxCONTROL_FOCUSED;
1543 wxRendererNative::Get().DrawItemSelectionRect( m_owner, *dc, rectHL, flags );
1544 }
1545 else
1546 {
1547 dc->DrawRectangle( rectHL );
1548 }
1549 }
1550 #endif
1551
1552 wxCoord x = rect.x + HEADER_OFFSET_X,
1553 yMid = rect.y + rect.height/2;
1554 #ifdef __WXGTK__
1555 // This probably needs to be done
1556 // on all platforms as the icons
1557 // otherwise nearly touch the border
1558 x += 2;
1559 #endif
1560
1561 size_t col = 0;
1562 for ( wxListItemDataList::compatibility_iterator node = m_items.GetFirst();
1563 node;
1564 node = node->GetNext(), col++ )
1565 {
1566 wxListItemData *item = node->GetData();
1567
1568 int width = m_owner->GetColumnWidth(col);
1569 int xOld = x;
1570 x += width;
1571
1572 const int wText = width - 8;
1573 wxDCClipper clipper(*dc, xOld, rect.y, wText, rect.height);
1574
1575 if ( item->HasImage() )
1576 {
1577 int ix, iy;
1578 m_owner->GetImageSize( item->GetImage(), ix, iy );
1579 m_owner->DrawImage( item->GetImage(), dc, xOld, yMid - iy/2 );
1580
1581 ix += IMAGE_MARGIN_IN_REPORT_MODE;
1582
1583 xOld += ix;
1584 width -= ix;
1585 }
1586
1587 if ( item->HasText() )
1588 DrawTextFormatted(dc, item->GetText(), col, xOld, yMid, wText);
1589 }
1590 }
1591
1592 void wxListLineData::DrawTextFormatted(wxDC *dc,
1593 const wxString& textOrig,
1594 int col,
1595 int x,
1596 int yMid,
1597 int width)
1598 {
1599 // we don't support displaying multiple lines currently (and neither does
1600 // wxMSW FWIW) so just merge all the lines
1601 wxString text(textOrig);
1602 text.Replace(_T("\n"), _T(" "));
1603
1604 wxCoord w, h;
1605 dc->GetTextExtent(text, &w, &h);
1606
1607 const wxCoord y = yMid - (h + 1)/2;
1608
1609 wxDCClipper clipper(*dc, x, y, width, h);
1610
1611 // determine if the string can fit inside the current width
1612 if (w <= width)
1613 {
1614 // it can, draw it using the items alignment
1615 wxListItem item;
1616 m_owner->GetColumn(col, item);
1617 switch ( item.GetAlign() )
1618 {
1619 case wxLIST_FORMAT_LEFT:
1620 // nothing to do
1621 break;
1622
1623 case wxLIST_FORMAT_RIGHT:
1624 x += width - w;
1625 break;
1626
1627 case wxLIST_FORMAT_CENTER:
1628 x += (width - w) / 2;
1629 break;
1630
1631 default:
1632 wxFAIL_MSG( _T("unknown list item format") );
1633 break;
1634 }
1635
1636 dc->DrawText(text, x, y);
1637 }
1638 else // otherwise, truncate and add an ellipsis if possible
1639 {
1640 // determine the base width
1641 wxString ellipsis(wxT("..."));
1642 wxCoord base_w;
1643 dc->GetTextExtent(ellipsis, &base_w, &h);
1644
1645 // continue until we have enough space or only one character left
1646 wxCoord w_c, h_c;
1647 size_t len = text.length();
1648 wxString drawntext = text.Left(len);
1649 while (len > 1)
1650 {
1651 dc->GetTextExtent(drawntext.Last(), &w_c, &h_c);
1652 drawntext.RemoveLast();
1653 len--;
1654 w -= w_c;
1655 if (w + base_w <= width)
1656 break;
1657 }
1658
1659 // if still not enough space, remove ellipsis characters
1660 while (ellipsis.length() > 0 && w + base_w > width)
1661 {
1662 ellipsis = ellipsis.Left(ellipsis.length() - 1);
1663 dc->GetTextExtent(ellipsis, &base_w, &h);
1664 }
1665
1666 // now draw the text
1667 dc->DrawText(drawntext, x, y);
1668 dc->DrawText(ellipsis, x + w, y);
1669 }
1670 }
1671
1672 bool wxListLineData::Highlight( bool on )
1673 {
1674 wxCHECK_MSG( !IsVirtual(), false, _T("unexpected call to Highlight") );
1675
1676 if ( on == m_highlighted )
1677 return false;
1678
1679 m_highlighted = on;
1680
1681 return true;
1682 }
1683
1684 void wxListLineData::ReverseHighlight( void )
1685 {
1686 Highlight(!IsHighlighted());
1687 }
1688
1689 //-----------------------------------------------------------------------------
1690 // wxListHeaderWindow
1691 //-----------------------------------------------------------------------------
1692
1693 BEGIN_EVENT_TABLE(wxListHeaderWindow,wxWindow)
1694 EVT_PAINT (wxListHeaderWindow::OnPaint)
1695 EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse)
1696 EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus)
1697 END_EVENT_TABLE()
1698
1699 void wxListHeaderWindow::Init()
1700 {
1701 m_currentCursor = (wxCursor *) NULL;
1702 m_isDragging = false;
1703 m_dirty = false;
1704 }
1705
1706 wxListHeaderWindow::wxListHeaderWindow()
1707 {
1708 Init();
1709
1710 m_owner = (wxListMainWindow *) NULL;
1711 m_resizeCursor = (wxCursor *) NULL;
1712 }
1713
1714 wxListHeaderWindow::wxListHeaderWindow( wxWindow *win,
1715 wxWindowID id,
1716 wxListMainWindow *owner,
1717 const wxPoint& pos,
1718 const wxSize& size,
1719 long style,
1720 const wxString &name )
1721 : wxWindow( win, id, pos, size, style, name )
1722 {
1723 Init();
1724
1725 m_owner = owner;
1726 m_resizeCursor = new wxCursor( wxCURSOR_SIZEWE );
1727
1728 #if _USE_VISATTR
1729 wxVisualAttributes attr = wxPanel::GetClassDefaultAttributes();
1730 SetOwnForegroundColour( attr.colFg );
1731 SetOwnBackgroundColour( attr.colBg );
1732 if (!m_hasFont)
1733 SetOwnFont( attr.font );
1734 #else
1735 SetOwnForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT));
1736 SetOwnBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE));
1737 if (!m_hasFont)
1738 SetOwnFont( wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT ));
1739 #endif
1740 }
1741
1742 wxListHeaderWindow::~wxListHeaderWindow()
1743 {
1744 delete m_resizeCursor;
1745 }
1746
1747 #ifdef __WXUNIVERSAL__
1748 #include "wx/univ/renderer.h"
1749 #include "wx/univ/theme.h"
1750 #endif
1751
1752 // shift the DC origin to match the position of the main window horz
1753 // scrollbar: this allows us to always use logical coords
1754 void wxListHeaderWindow::AdjustDC(wxDC& dc)
1755 {
1756 int xpix;
1757 m_owner->GetScrollPixelsPerUnit( &xpix, NULL );
1758
1759 int view_start;
1760 m_owner->GetViewStart( &view_start, NULL );
1761
1762
1763 int org_x = 0;
1764 int org_y = 0;
1765 dc.GetDeviceOrigin( &org_x, &org_y );
1766
1767 // account for the horz scrollbar offset
1768 #ifdef __WXGTK__
1769 if (GetLayoutDirection() == wxLayout_RightToLeft)
1770 {
1771 // Maybe we just have to check for m_signX
1772 // in the DC, but I leave the #ifdef __WXGTK__
1773 // for now
1774 dc.SetDeviceOrigin( org_x + (view_start * xpix), org_y );
1775 }
1776 else
1777 #endif
1778 dc.SetDeviceOrigin( org_x - (view_start * xpix), org_y );
1779 }
1780
1781 void wxListHeaderWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
1782 {
1783 wxPaintDC dc( this );
1784
1785 PrepareDC( dc );
1786 AdjustDC( dc );
1787
1788 dc.SetFont( GetFont() );
1789
1790 // width and height of the entire header window
1791 int w, h;
1792 GetClientSize( &w, &h );
1793 m_owner->CalcUnscrolledPosition(w, 0, &w, NULL);
1794
1795 dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
1796 dc.SetTextForeground(GetForegroundColour());
1797
1798 int x = HEADER_OFFSET_X;
1799 int numColumns = m_owner->GetColumnCount();
1800 wxListItem item;
1801 for ( int i = 0; i < numColumns && x < w; i++ )
1802 {
1803 m_owner->GetColumn( i, item );
1804 int wCol = item.m_width;
1805
1806 int cw = wCol;
1807 int ch = h;
1808
1809 int flags = 0;
1810 if (!m_parent->IsEnabled())
1811 flags |= wxCONTROL_DISABLED;
1812
1813 // NB: The code below is not really Mac-specific, but since we are close
1814 // to 2.8 release and I don't have time to test on other platforms, I
1815 // defined this only for wxMac. If this behavior is desired on
1816 // other platforms, please go ahead and revise or remove the #ifdef.
1817 #ifdef __WXMAC__
1818 if ( !m_owner->IsVirtual() && (item.m_mask & wxLIST_MASK_STATE) &&
1819 (item.m_state & wxLIST_STATE_SELECTED) )
1820 flags |= wxCONTROL_SELECTED;
1821 #endif
1822
1823 wxRendererNative::Get().DrawHeaderButton
1824 (
1825 this,
1826 dc,
1827 wxRect(x, HEADER_OFFSET_Y, cw, ch),
1828 flags
1829 );
1830
1831 // see if we have enough space for the column label
1832
1833 // for this we need the width of the text
1834 wxCoord wLabel;
1835 wxCoord hLabel;
1836 dc.GetTextExtent(item.GetText(), &wLabel, &hLabel);
1837 wLabel += 2 * EXTRA_WIDTH;
1838
1839 // and the width of the icon, if any
1840 int ix = 0, iy = 0; // init them just to suppress the compiler warnings
1841 const int image = item.m_image;
1842 wxImageList *imageList;
1843 if ( image != -1 )
1844 {
1845 imageList = m_owner->m_small_image_list;
1846 if ( imageList )
1847 {
1848 imageList->GetSize(image, ix, iy);
1849 wLabel += ix + HEADER_IMAGE_MARGIN_IN_REPORT_MODE;
1850 }
1851 }
1852 else
1853 {
1854 imageList = NULL;
1855 }
1856
1857 // ignore alignment if there is not enough space anyhow
1858 int xAligned;
1859 switch ( wLabel < cw ? item.GetAlign() : wxLIST_FORMAT_LEFT )
1860 {
1861 default:
1862 wxFAIL_MSG( _T("unknown list item format") );
1863 // fall through
1864
1865 case wxLIST_FORMAT_LEFT:
1866 xAligned = x;
1867 break;
1868
1869 case wxLIST_FORMAT_RIGHT:
1870 xAligned = x + cw - wLabel;
1871 break;
1872
1873 case wxLIST_FORMAT_CENTER:
1874 xAligned = x + (cw - wLabel) / 2;
1875 break;
1876 }
1877
1878 // draw the text and image clipping them so that they
1879 // don't overwrite the column boundary
1880 wxDCClipper clipper(dc, x, HEADER_OFFSET_Y, cw, h - 4 );
1881
1882 // if we have an image, draw it on the right of the label
1883 if ( imageList )
1884 {
1885 imageList->Draw
1886 (
1887 image,
1888 dc,
1889 xAligned + wLabel - ix - HEADER_IMAGE_MARGIN_IN_REPORT_MODE,
1890 HEADER_OFFSET_Y + (h - 4 - iy)/2,
1891 wxIMAGELIST_DRAW_TRANSPARENT
1892 );
1893 }
1894
1895 dc.DrawText( item.GetText(),
1896 xAligned + EXTRA_WIDTH, h / 2 - hLabel / 2 ); //HEADER_OFFSET_Y + EXTRA_HEIGHT );
1897
1898 x += wCol;
1899 }
1900 }
1901
1902 void wxListHeaderWindow::DrawCurrent()
1903 {
1904 #if 1
1905 m_owner->SetColumnWidth( m_column, m_currentX - m_minX );
1906 #else
1907 int x1 = m_currentX;
1908 int y1 = 0;
1909 m_owner->ClientToScreen( &x1, &y1 );
1910
1911 int x2 = m_currentX;
1912 int y2 = 0;
1913 m_owner->GetClientSize( NULL, &y2 );
1914 m_owner->ClientToScreen( &x2, &y2 );
1915
1916 wxScreenDC dc;
1917 dc.SetLogicalFunction( wxINVERT );
1918 dc.SetPen( wxPen( *wxBLACK, 2, wxSOLID ) );
1919 dc.SetBrush( *wxTRANSPARENT_BRUSH );
1920
1921 AdjustDC(dc);
1922
1923 dc.DrawLine( x1, y1, x2, y2 );
1924
1925 dc.SetLogicalFunction( wxCOPY );
1926
1927 dc.SetPen( wxNullPen );
1928 dc.SetBrush( wxNullBrush );
1929 #endif
1930 }
1931
1932 void wxListHeaderWindow::OnMouse( wxMouseEvent &event )
1933 {
1934 // we want to work with logical coords
1935 int x;
1936 m_owner->CalcUnscrolledPosition(event.GetX(), 0, &x, NULL);
1937 int y = event.GetY();
1938
1939 if (m_isDragging)
1940 {
1941 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING, event.GetPosition());
1942
1943 // we don't draw the line beyond our window, but we allow dragging it
1944 // there
1945 int w = 0;
1946 GetClientSize( &w, NULL );
1947 m_owner->CalcUnscrolledPosition(w, 0, &w, NULL);
1948 w -= 6;
1949
1950 // erase the line if it was drawn
1951 if ( m_currentX < w )
1952 DrawCurrent();
1953
1954 if (event.ButtonUp())
1955 {
1956 ReleaseMouse();
1957 m_isDragging = false;
1958 m_dirty = true;
1959 m_owner->SetColumnWidth( m_column, m_currentX - m_minX );
1960 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG, event.GetPosition());
1961 }
1962 else
1963 {
1964 if (x > m_minX + 7)
1965 m_currentX = x;
1966 else
1967 m_currentX = m_minX + 7;
1968
1969 // draw in the new location
1970 if ( m_currentX < w )
1971 DrawCurrent();
1972 }
1973 }
1974 else // not dragging
1975 {
1976 m_minX = 0;
1977 bool hit_border = false;
1978
1979 // end of the current column
1980 int xpos = 0;
1981
1982 // find the column where this event occurred
1983 int col,
1984 countCol = m_owner->GetColumnCount();
1985 for (col = 0; col < countCol; col++)
1986 {
1987 xpos += m_owner->GetColumnWidth( col );
1988 m_column = col;
1989
1990 if ( (abs(x-xpos) < 3) && (y < 22) )
1991 {
1992 // near the column border
1993 hit_border = true;
1994 break;
1995 }
1996
1997 if ( x < xpos )
1998 {
1999 // inside the column
2000 break;
2001 }
2002
2003 m_minX = xpos;
2004 }
2005
2006 if ( col == countCol )
2007 m_column = -1;
2008
2009 if (event.LeftDown() || event.RightUp())
2010 {
2011 if (hit_border && event.LeftDown())
2012 {
2013 if ( SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG,
2014 event.GetPosition()) )
2015 {
2016 m_isDragging = true;
2017 m_currentX = x;
2018 CaptureMouse();
2019 DrawCurrent();
2020 }
2021 //else: column resizing was vetoed by the user code
2022 }
2023 else // click on a column
2024 {
2025 // record the selected state of the columns
2026 if (event.LeftDown())
2027 {
2028 for (int i=0; i < m_owner->GetColumnCount(); i++)
2029 {
2030 wxListItem colItem;
2031 m_owner->GetColumn(i, colItem);
2032 long state = colItem.GetState();
2033 if (i == m_column)
2034 colItem.SetState(state | wxLIST_STATE_SELECTED);
2035 else
2036 colItem.SetState(state & ~wxLIST_STATE_SELECTED);
2037 m_owner->SetColumn(i, colItem);
2038 }
2039 }
2040
2041 SendListEvent( event.LeftDown()
2042 ? wxEVT_COMMAND_LIST_COL_CLICK
2043 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK,
2044 event.GetPosition());
2045 }
2046 }
2047 else if (event.Moving())
2048 {
2049 bool setCursor;
2050 if (hit_border)
2051 {
2052 setCursor = m_currentCursor == wxSTANDARD_CURSOR;
2053 m_currentCursor = m_resizeCursor;
2054 }
2055 else
2056 {
2057 setCursor = m_currentCursor != wxSTANDARD_CURSOR;
2058 m_currentCursor = wxSTANDARD_CURSOR;
2059 }
2060
2061 if ( setCursor )
2062 SetCursor(*m_currentCursor);
2063 }
2064 }
2065 }
2066
2067 void wxListHeaderWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) )
2068 {
2069 m_owner->SetFocus();
2070 m_owner->Update();
2071 }
2072
2073 bool wxListHeaderWindow::SendListEvent(wxEventType type, const wxPoint& pos)
2074 {
2075 wxWindow *parent = GetParent();
2076 wxListEvent le( type, parent->GetId() );
2077 le.SetEventObject( parent );
2078 le.m_pointDrag = pos;
2079
2080 // the position should be relative to the parent window, not
2081 // this one for compatibility with MSW and common sense: the
2082 // user code doesn't know anything at all about this header
2083 // window, so why should it get positions relative to it?
2084 le.m_pointDrag.y -= GetSize().y;
2085
2086 le.m_col = m_column;
2087 return !parent->GetEventHandler()->ProcessEvent( le ) || le.IsAllowed();
2088 }
2089
2090 //-----------------------------------------------------------------------------
2091 // wxListRenameTimer (internal)
2092 //-----------------------------------------------------------------------------
2093
2094 wxListRenameTimer::wxListRenameTimer( wxListMainWindow *owner )
2095 {
2096 m_owner = owner;
2097 }
2098
2099 void wxListRenameTimer::Notify()
2100 {
2101 m_owner->OnRenameTimer();
2102 }
2103
2104 //-----------------------------------------------------------------------------
2105 // wxListTextCtrlWrapper (internal)
2106 //-----------------------------------------------------------------------------
2107
2108 BEGIN_EVENT_TABLE(wxListTextCtrlWrapper, wxEvtHandler)
2109 EVT_CHAR (wxListTextCtrlWrapper::OnChar)
2110 EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp)
2111 EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus)
2112 END_EVENT_TABLE()
2113
2114 wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow *owner,
2115 wxTextCtrl *text,
2116 size_t itemEdit)
2117 : m_startValue(owner->GetItemText(itemEdit)),
2118 m_itemEdited(itemEdit)
2119 {
2120 m_owner = owner;
2121 m_text = text;
2122 m_aboutToFinish = false;
2123
2124 wxRect rectLabel = owner->GetLineLabelRect(itemEdit);
2125
2126 m_owner->CalcScrolledPosition(rectLabel.x, rectLabel.y,
2127 &rectLabel.x, &rectLabel.y);
2128
2129 m_text->Create(owner, wxID_ANY, m_startValue,
2130 wxPoint(rectLabel.x-4,rectLabel.y-4),
2131 wxSize(rectLabel.width+11,rectLabel.height+8));
2132 m_text->SetFocus();
2133
2134 m_text->PushEventHandler(this);
2135 }
2136
2137 void wxListTextCtrlWrapper::EndEdit(bool discardChanges)
2138 {
2139 m_aboutToFinish = true;
2140
2141 if ( discardChanges )
2142 {
2143 m_owner->OnRenameCancelled(m_itemEdited);
2144
2145 Finish( true );
2146 }
2147 else
2148 {
2149 // Notify the owner about the changes
2150 AcceptChanges();
2151
2152 // Even if vetoed, close the control (consistent with MSW)
2153 Finish( true );
2154 }
2155 }
2156
2157 void wxListTextCtrlWrapper::Finish( bool setfocus )
2158 {
2159 m_text->RemoveEventHandler(this);
2160 m_owner->ResetTextControl( m_text );
2161
2162 wxPendingDelete.Append( this );
2163
2164 if (setfocus)
2165 m_owner->SetFocus();
2166 }
2167
2168 bool wxListTextCtrlWrapper::AcceptChanges()
2169 {
2170 const wxString value = m_text->GetValue();
2171
2172 // notice that we should always call OnRenameAccept() to generate the "end
2173 // label editing" event, even if the user hasn't really changed anything
2174 if ( !m_owner->OnRenameAccept(m_itemEdited, value) )
2175 {
2176 // vetoed by the user
2177 return false;
2178 }
2179
2180 // accepted, do rename the item (unless nothing changed)
2181 if ( value != m_startValue )
2182 m_owner->SetItemText(m_itemEdited, value);
2183
2184 return true;
2185 }
2186
2187 void wxListTextCtrlWrapper::OnChar( wxKeyEvent &event )
2188 {
2189 switch ( event.m_keyCode )
2190 {
2191 case WXK_RETURN:
2192 EndEdit( false );
2193 break;
2194
2195 case WXK_ESCAPE:
2196 EndEdit( true );
2197 break;
2198
2199 default:
2200 event.Skip();
2201 }
2202 }
2203
2204 void wxListTextCtrlWrapper::OnKeyUp( wxKeyEvent &event )
2205 {
2206 if (m_aboutToFinish)
2207 {
2208 // auto-grow the textctrl:
2209 wxSize parentSize = m_owner->GetSize();
2210 wxPoint myPos = m_text->GetPosition();
2211 wxSize mySize = m_text->GetSize();
2212 int sx, sy;
2213 m_text->GetTextExtent(m_text->GetValue() + _T("MM"), &sx, &sy);
2214 if (myPos.x + sx > parentSize.x)
2215 sx = parentSize.x - myPos.x;
2216 if (mySize.x > sx)
2217 sx = mySize.x;
2218 m_text->SetSize(sx, wxDefaultCoord);
2219 }
2220
2221 event.Skip();
2222 }
2223
2224 void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent &event )
2225 {
2226 if ( !m_aboutToFinish )
2227 {
2228 if ( !AcceptChanges() )
2229 m_owner->OnRenameCancelled( m_itemEdited );
2230
2231 Finish( false );
2232 }
2233
2234 // We must let the native text control handle focus
2235 event.Skip();
2236 }
2237
2238 //-----------------------------------------------------------------------------
2239 // wxListMainWindow
2240 //-----------------------------------------------------------------------------
2241
2242 BEGIN_EVENT_TABLE(wxListMainWindow,wxScrolledCanvas)
2243 EVT_PAINT (wxListMainWindow::OnPaint)
2244 EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse)
2245 EVT_CHAR (wxListMainWindow::OnChar)
2246 EVT_KEY_DOWN (wxListMainWindow::OnKeyDown)
2247 EVT_KEY_UP (wxListMainWindow::OnKeyUp)
2248 EVT_SET_FOCUS (wxListMainWindow::OnSetFocus)
2249 EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus)
2250 EVT_SCROLLWIN (wxListMainWindow::OnScroll)
2251 EVT_CHILD_FOCUS (wxListMainWindow::OnChildFocus)
2252 END_EVENT_TABLE()
2253
2254 void wxListMainWindow::Init()
2255 {
2256 m_dirty = true;
2257 m_countVirt = 0;
2258 m_lineFrom =
2259 m_lineTo = (size_t)-1;
2260 m_linesPerPage = 0;
2261
2262 m_headerWidth =
2263 m_lineHeight = 0;
2264
2265 m_small_image_list = (wxImageList *) NULL;
2266 m_normal_image_list = (wxImageList *) NULL;
2267
2268 m_small_spacing = 30;
2269 m_normal_spacing = 40;
2270
2271 m_hasFocus = false;
2272 m_dragCount = 0;
2273 m_isCreated = false;
2274
2275 m_lastOnSame = false;
2276 m_renameTimer = new wxListRenameTimer( this );
2277 m_textctrlWrapper = NULL;
2278
2279 m_current =
2280 m_lineLastClicked =
2281 m_lineSelectSingleOnUp =
2282 m_lineBeforeLastClicked = (size_t)-1;
2283 }
2284
2285 wxListMainWindow::wxListMainWindow()
2286 {
2287 Init();
2288
2289 m_highlightBrush =
2290 m_highlightUnfocusedBrush = (wxBrush *) NULL;
2291 }
2292
2293 wxListMainWindow::wxListMainWindow( wxWindow *parent,
2294 wxWindowID id,
2295 const wxPoint& pos,
2296 const wxSize& size,
2297 long style,
2298 const wxString &name )
2299 : wxScrolledCanvas( parent, id, pos, size,
2300 style | wxHSCROLL | wxVSCROLL, name )
2301 {
2302 Init();
2303
2304 m_highlightBrush = new wxBrush
2305 (
2306 wxSystemSettings::GetColour
2307 (
2308 wxSYS_COLOUR_HIGHLIGHT
2309 ),
2310 wxBRUSHSTYLE_SOLID
2311 );
2312
2313 m_highlightUnfocusedBrush = new wxBrush
2314 (
2315 wxSystemSettings::GetColour
2316 (
2317 wxSYS_COLOUR_BTNSHADOW
2318 ),
2319 wxBRUSHSTYLE_SOLID
2320 );
2321
2322 SetScrollbars( 0, 0, 0, 0, 0, 0 );
2323
2324 wxVisualAttributes attr = wxGenericListCtrl::GetClassDefaultAttributes();
2325 SetOwnForegroundColour( attr.colFg );
2326 SetOwnBackgroundColour( attr.colBg );
2327 if (!m_hasFont)
2328 SetOwnFont( attr.font );
2329 }
2330
2331 wxListMainWindow::~wxListMainWindow()
2332 {
2333 DoDeleteAllItems();
2334 WX_CLEAR_LIST(wxListHeaderDataList, m_columns);
2335 WX_CLEAR_ARRAY(m_aColWidths);
2336
2337 delete m_highlightBrush;
2338 delete m_highlightUnfocusedBrush;
2339 delete m_renameTimer;
2340 }
2341
2342 void wxListMainWindow::CacheLineData(size_t line)
2343 {
2344 wxGenericListCtrl *listctrl = GetListCtrl();
2345
2346 wxListLineData *ld = GetDummyLine();
2347
2348 size_t countCol = GetColumnCount();
2349 for ( size_t col = 0; col < countCol; col++ )
2350 {
2351 ld->SetText(col, listctrl->OnGetItemText(line, col));
2352 ld->SetImage(col, listctrl->OnGetItemColumnImage(line, col));
2353 }
2354
2355 ld->SetAttr(listctrl->OnGetItemAttr(line));
2356 }
2357
2358 wxListLineData *wxListMainWindow::GetDummyLine() const
2359 {
2360 wxASSERT_MSG( !IsEmpty(), _T("invalid line index") );
2361 wxASSERT_MSG( IsVirtual(), _T("GetDummyLine() shouldn't be called") );
2362
2363 wxListMainWindow *self = wxConstCast(this, wxListMainWindow);
2364
2365 // we need to recreate the dummy line if the number of columns in the
2366 // control changed as it would have the incorrect number of fields
2367 // otherwise
2368 if ( !m_lines.IsEmpty() &&
2369 m_lines[0].m_items.GetCount() != (size_t)GetColumnCount() )
2370 {
2371 self->m_lines.Clear();
2372 }
2373
2374 if ( m_lines.IsEmpty() )
2375 {
2376 wxListLineData *line = new wxListLineData(self);
2377 self->m_lines.Add(line);
2378
2379 // don't waste extra memory -- there never going to be anything
2380 // else/more in this array
2381 self->m_lines.Shrink();
2382 }
2383
2384 return &m_lines[0];
2385 }
2386
2387 // ----------------------------------------------------------------------------
2388 // line geometry (report mode only)
2389 // ----------------------------------------------------------------------------
2390
2391 wxCoord wxListMainWindow::GetLineHeight() const
2392 {
2393 // we cache the line height as calling GetTextExtent() is slow
2394 if ( !m_lineHeight )
2395 {
2396 wxListMainWindow *self = wxConstCast(this, wxListMainWindow);
2397
2398 wxClientDC dc( self );
2399 dc.SetFont( GetFont() );
2400
2401 wxCoord y;
2402 dc.GetTextExtent(_T("H"), NULL, &y);
2403
2404 if ( m_small_image_list && m_small_image_list->GetImageCount() )
2405 {
2406 int iw = 0, ih = 0;
2407 m_small_image_list->GetSize(0, iw, ih);
2408 y = wxMax(y, ih);
2409 }
2410
2411 y += EXTRA_HEIGHT;
2412 self->m_lineHeight = y + LINE_SPACING;
2413 }
2414
2415 return m_lineHeight;
2416 }
2417
2418 wxCoord wxListMainWindow::GetLineY(size_t line) const
2419 {
2420 wxASSERT_MSG( InReportView(), _T("only works in report mode") );
2421
2422 return LINE_SPACING + line * GetLineHeight();
2423 }
2424
2425 wxRect wxListMainWindow::GetLineRect(size_t line) const
2426 {
2427 if ( !InReportView() )
2428 return GetLine(line)->m_gi->m_rectAll;
2429
2430 wxRect rect;
2431 rect.x = HEADER_OFFSET_X;
2432 rect.y = GetLineY(line);
2433 rect.width = GetHeaderWidth();
2434 rect.height = GetLineHeight();
2435
2436 return rect;
2437 }
2438
2439 wxRect wxListMainWindow::GetLineLabelRect(size_t line) const
2440 {
2441 if ( !InReportView() )
2442 return GetLine(line)->m_gi->m_rectLabel;
2443
2444 int image_x = 0;
2445 wxListLineData *data = GetLine(line);
2446 wxListItemDataList::compatibility_iterator node = data->m_items.GetFirst();
2447 if (node)
2448 {
2449 wxListItemData *item = node->GetData();
2450 if ( item->HasImage() )
2451 {
2452 int ix, iy;
2453 GetImageSize( item->GetImage(), ix, iy );
2454 image_x = 3 + ix + IMAGE_MARGIN_IN_REPORT_MODE;
2455 }
2456 }
2457
2458 wxRect rect;
2459 rect.x = image_x + HEADER_OFFSET_X;
2460 rect.y = GetLineY(line);
2461 rect.width = GetColumnWidth(0) - image_x;
2462 rect.height = GetLineHeight();
2463
2464 return rect;
2465 }
2466
2467 wxRect wxListMainWindow::GetLineIconRect(size_t line) const
2468 {
2469 if ( !InReportView() )
2470 return GetLine(line)->m_gi->m_rectIcon;
2471
2472 wxListLineData *ld = GetLine(line);
2473 wxASSERT_MSG( ld->HasImage(), _T("should have an image") );
2474
2475 wxRect rect;
2476 rect.x = HEADER_OFFSET_X;
2477 rect.y = GetLineY(line);
2478 GetImageSize(ld->GetImage(), rect.width, rect.height);
2479
2480 return rect;
2481 }
2482
2483 wxRect wxListMainWindow::GetLineHighlightRect(size_t line) const
2484 {
2485 return InReportView() ? GetLineRect(line)
2486 : GetLine(line)->m_gi->m_rectHighlight;
2487 }
2488
2489 long wxListMainWindow::HitTestLine(size_t line, int x, int y) const
2490 {
2491 wxASSERT_MSG( line < GetItemCount(), _T("invalid line in HitTestLine") );
2492
2493 wxListLineData *ld = GetLine(line);
2494
2495 if ( ld->HasImage() && GetLineIconRect(line).Contains(x, y) )
2496 return wxLIST_HITTEST_ONITEMICON;
2497
2498 // VS: Testing for "ld->HasText() || InReportView()" instead of
2499 // "ld->HasText()" is needed to make empty lines in report view
2500 // possible
2501 if ( ld->HasText() || InReportView() )
2502 {
2503 wxRect rect = InReportView() ? GetLineRect(line)
2504 : GetLineLabelRect(line);
2505
2506 if ( rect.Contains(x, y) )
2507 return wxLIST_HITTEST_ONITEMLABEL;
2508 }
2509
2510 return 0;
2511 }
2512
2513 // ----------------------------------------------------------------------------
2514 // highlight (selection) handling
2515 // ----------------------------------------------------------------------------
2516
2517 bool wxListMainWindow::IsHighlighted(size_t line) const
2518 {
2519 if ( IsVirtual() )
2520 {
2521 return m_selStore.IsSelected(line);
2522 }
2523 else // !virtual
2524 {
2525 wxListLineData *ld = GetLine(line);
2526 wxCHECK_MSG( ld, false, _T("invalid index in IsHighlighted") );
2527
2528 return ld->IsHighlighted();
2529 }
2530 }
2531
2532 void wxListMainWindow::HighlightLines( size_t lineFrom,
2533 size_t lineTo,
2534 bool highlight )
2535 {
2536 if ( IsVirtual() )
2537 {
2538 wxArrayInt linesChanged;
2539 if ( !m_selStore.SelectRange(lineFrom, lineTo, highlight,
2540 &linesChanged) )
2541 {
2542 // meny items changed state, refresh everything
2543 RefreshLines(lineFrom, lineTo);
2544 }
2545 else // only a few items changed state, refresh only them
2546 {
2547 size_t count = linesChanged.GetCount();
2548 for ( size_t n = 0; n < count; n++ )
2549 {
2550 RefreshLine(linesChanged[n]);
2551 }
2552 }
2553 }
2554 else // iterate over all items in non report view
2555 {
2556 for ( size_t line = lineFrom; line <= lineTo; line++ )
2557 {
2558 if ( HighlightLine(line, highlight) )
2559 RefreshLine(line);
2560 }
2561 }
2562 }
2563
2564 bool wxListMainWindow::HighlightLine( size_t line, bool highlight )
2565 {
2566 bool changed;
2567
2568 if ( IsVirtual() )
2569 {
2570 changed = m_selStore.SelectItem(line, highlight);
2571 }
2572 else // !virtual
2573 {
2574 wxListLineData *ld = GetLine(line);
2575 wxCHECK_MSG( ld, false, _T("invalid index in HighlightLine") );
2576
2577 changed = ld->Highlight(highlight);
2578 }
2579
2580 if ( changed )
2581 {
2582 SendNotify( line, highlight ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2583 : wxEVT_COMMAND_LIST_ITEM_DESELECTED );
2584 }
2585
2586 return changed;
2587 }
2588
2589 void wxListMainWindow::RefreshLine( size_t line )
2590 {
2591 if ( InReportView() )
2592 {
2593 size_t visibleFrom, visibleTo;
2594 GetVisibleLinesRange(&visibleFrom, &visibleTo);
2595
2596 if ( line < visibleFrom || line > visibleTo )
2597 return;
2598 }
2599
2600 wxRect rect = GetLineRect(line);
2601
2602 CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y );
2603 RefreshRect( rect );
2604 }
2605
2606 void wxListMainWindow::RefreshLines( size_t lineFrom, size_t lineTo )
2607 {
2608 // we suppose that they are ordered by caller
2609 wxASSERT_MSG( lineFrom <= lineTo, _T("indices in disorder") );
2610
2611 wxASSERT_MSG( lineTo < GetItemCount(), _T("invalid line range") );
2612
2613 if ( InReportView() )
2614 {
2615 size_t visibleFrom, visibleTo;
2616 GetVisibleLinesRange(&visibleFrom, &visibleTo);
2617
2618 if ( lineFrom < visibleFrom )
2619 lineFrom = visibleFrom;
2620 if ( lineTo > visibleTo )
2621 lineTo = visibleTo;
2622
2623 wxRect rect;
2624 rect.x = 0;
2625 rect.y = GetLineY(lineFrom);
2626 rect.width = GetClientSize().x;
2627 rect.height = GetLineY(lineTo) - rect.y + GetLineHeight();
2628
2629 CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y );
2630 RefreshRect( rect );
2631 }
2632 else // !report
2633 {
2634 // TODO: this should be optimized...
2635 for ( size_t line = lineFrom; line <= lineTo; line++ )
2636 {
2637 RefreshLine(line);
2638 }
2639 }
2640 }
2641
2642 void wxListMainWindow::RefreshAfter( size_t lineFrom )
2643 {
2644 if ( InReportView() )
2645 {
2646 size_t visibleFrom, visibleTo;
2647 GetVisibleLinesRange(&visibleFrom, &visibleTo);
2648
2649 if ( lineFrom < visibleFrom )
2650 lineFrom = visibleFrom;
2651 else if ( lineFrom > visibleTo )
2652 return;
2653
2654 wxRect rect;
2655 rect.x = 0;
2656 rect.y = GetLineY(lineFrom);
2657 CalcScrolledPosition( rect.x, rect.y, &rect.x, &rect.y );
2658
2659 wxSize size = GetClientSize();
2660 rect.width = size.x;
2661
2662 // refresh till the bottom of the window
2663 rect.height = size.y - rect.y;
2664
2665 RefreshRect( rect );
2666 }
2667 else // !report
2668 {
2669 // TODO: how to do it more efficiently?
2670 m_dirty = true;
2671 }
2672 }
2673
2674 void wxListMainWindow::RefreshSelected()
2675 {
2676 if ( IsEmpty() )
2677 return;
2678
2679 size_t from, to;
2680 if ( InReportView() )
2681 {
2682 GetVisibleLinesRange(&from, &to);
2683 }
2684 else // !virtual
2685 {
2686 from = 0;
2687 to = GetItemCount() - 1;
2688 }
2689
2690 if ( HasCurrent() && m_current >= from && m_current <= to )
2691 RefreshLine(m_current);
2692
2693 for ( size_t line = from; line <= to; line++ )
2694 {
2695 // NB: the test works as expected even if m_current == -1
2696 if ( line != m_current && IsHighlighted(line) )
2697 RefreshLine(line);
2698 }
2699 }
2700
2701 void wxListMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
2702 {
2703 // Note: a wxPaintDC must be constructed even if no drawing is
2704 // done (a Windows requirement).
2705 wxPaintDC dc( this );
2706
2707 if ( IsEmpty() )
2708 {
2709 // nothing to draw or not the moment to draw it
2710 return;
2711 }
2712
2713 if ( m_dirty )
2714 {
2715 // delay the repainting until we calculate all the items positions
2716 return;
2717 }
2718
2719 PrepareDC( dc );
2720
2721 int dev_x, dev_y;
2722 CalcScrolledPosition( 0, 0, &dev_x, &dev_y );
2723
2724 dc.SetFont( GetFont() );
2725
2726 if ( InReportView() )
2727 {
2728 int lineHeight = GetLineHeight();
2729
2730 size_t visibleFrom, visibleTo;
2731 GetVisibleLinesRange(&visibleFrom, &visibleTo);
2732
2733 wxRect rectLine;
2734 int xOrig = dc.LogicalToDeviceX( 0 );
2735 int yOrig = dc.LogicalToDeviceY( 0 );
2736
2737 // tell the caller cache to cache the data
2738 if ( IsVirtual() )
2739 {
2740 wxListEvent evCache(wxEVT_COMMAND_LIST_CACHE_HINT,
2741 GetParent()->GetId());
2742 evCache.SetEventObject( GetParent() );
2743 evCache.m_oldItemIndex = visibleFrom;
2744 evCache.m_itemIndex = visibleTo;
2745 GetParent()->GetEventHandler()->ProcessEvent( evCache );
2746 }
2747
2748 for ( size_t line = visibleFrom; line <= visibleTo; line++ )
2749 {
2750 rectLine = GetLineRect(line);
2751
2752
2753 if ( !IsExposed(rectLine.x + xOrig, rectLine.y + yOrig,
2754 rectLine.width, rectLine.height) )
2755 {
2756 // don't redraw unaffected lines to avoid flicker
2757 continue;
2758 }
2759
2760 GetLine(line)->DrawInReportMode( &dc,
2761 rectLine,
2762 GetLineHighlightRect(line),
2763 IsHighlighted(line) );
2764 }
2765
2766 if ( HasFlag(wxLC_HRULES) )
2767 {
2768 wxPen pen(GetRuleColour(), 1, wxPENSTYLE_SOLID);
2769 wxSize clientSize = GetClientSize();
2770
2771 size_t i = visibleFrom;
2772 if (i == 0) i = 1; // Don't draw the first one
2773 for ( ; i <= visibleTo; i++ )
2774 {
2775 dc.SetPen(pen);
2776 dc.SetBrush( *wxTRANSPARENT_BRUSH );
2777 dc.DrawLine(0 - dev_x, i * lineHeight,
2778 clientSize.x - dev_x, i * lineHeight);
2779 }
2780
2781 // Draw last horizontal rule
2782 if ( visibleTo == GetItemCount() - 1 )
2783 {
2784 dc.SetPen( pen );
2785 dc.SetBrush( *wxTRANSPARENT_BRUSH );
2786 dc.DrawLine(0 - dev_x, (m_lineTo + 1) * lineHeight,
2787 clientSize.x - dev_x , (m_lineTo + 1) * lineHeight );
2788 }
2789 }
2790
2791 // Draw vertical rules if required
2792 if ( HasFlag(wxLC_VRULES) && !IsEmpty() )
2793 {
2794 wxPen pen(GetRuleColour(), 1, wxPENSTYLE_SOLID);
2795 wxRect firstItemRect, lastItemRect;
2796
2797 GetItemRect(visibleFrom, firstItemRect);
2798 GetItemRect(visibleTo, lastItemRect);
2799 int x = firstItemRect.GetX();
2800 dc.SetPen(pen);
2801 dc.SetBrush(* wxTRANSPARENT_BRUSH);
2802
2803 for (int col = 0; col < GetColumnCount(); col++)
2804 {
2805 int colWidth = GetColumnWidth(col);
2806 x += colWidth;
2807 int x_pos = x - dev_x;
2808 if (col < GetColumnCount()-1) x_pos -= 2;
2809 dc.DrawLine(x_pos, firstItemRect.GetY() - 1 - dev_y,
2810 x_pos, lastItemRect.GetBottom() + 1 - dev_y);
2811 }
2812 }
2813 }
2814 else // !report
2815 {
2816 size_t count = GetItemCount();
2817 for ( size_t i = 0; i < count; i++ )
2818 {
2819 GetLine(i)->Draw( &dc );
2820 }
2821 }
2822
2823 #ifndef __WXMAC__
2824 // Don't draw rect outline under Mac at all.
2825 if ( HasCurrent() )
2826 {
2827 if ( m_hasFocus )
2828 {
2829 wxRect rect( GetLineHighlightRect( m_current ) );
2830 #ifndef __WXGTK20__
2831 dc.SetPen( *wxBLACK_PEN );
2832 dc.SetBrush( *wxTRANSPARENT_BRUSH );
2833 dc.DrawRectangle( rect );
2834 #else
2835 wxRendererNative::Get().DrawItemSelectionRect( this, dc, rect, wxCONTROL_CURRENT|wxCONTROL_FOCUSED );
2836
2837 #endif
2838 }
2839 }
2840 #endif
2841 }
2842
2843 void wxListMainWindow::HighlightAll( bool on )
2844 {
2845 if ( IsSingleSel() )
2846 {
2847 wxASSERT_MSG( !on, _T("can't do this in a single selection control") );
2848
2849 // we just have one item to turn off
2850 if ( HasCurrent() && IsHighlighted(m_current) )
2851 {
2852 HighlightLine(m_current, false);
2853 RefreshLine(m_current);
2854 }
2855 }
2856 else // multi selection
2857 {
2858 if ( !IsEmpty() )
2859 HighlightLines(0, GetItemCount() - 1, on);
2860 }
2861 }
2862
2863 void wxListMainWindow::OnChildFocus(wxChildFocusEvent& WXUNUSED(event))
2864 {
2865 // Do nothing here. This prevents the default handler in wxScrolledWindow
2866 // from needlessly scrolling the window when the edit control is
2867 // dismissed. See ticket #9563.
2868 }
2869
2870 void wxListMainWindow::SendNotify( size_t line,
2871 wxEventType command,
2872 const wxPoint& point )
2873 {
2874 wxListEvent le( command, GetParent()->GetId() );
2875 le.SetEventObject( GetParent() );
2876
2877 le.m_itemIndex = line;
2878
2879 // set only for events which have position
2880 if ( point != wxDefaultPosition )
2881 le.m_pointDrag = point;
2882
2883 // don't try to get the line info for virtual list controls: the main
2884 // program has it anyhow and if we did it would result in accessing all
2885 // the lines, even those which are not visible now and this is precisely
2886 // what we're trying to avoid
2887 if ( !IsVirtual() )
2888 {
2889 if ( line != (size_t)-1 )
2890 {
2891 GetLine(line)->GetItem( 0, le.m_item );
2892 }
2893 //else: this happens for wxEVT_COMMAND_LIST_ITEM_FOCUSED event
2894 }
2895 //else: there may be no more such item
2896
2897 GetParent()->GetEventHandler()->ProcessEvent( le );
2898 }
2899
2900 void wxListMainWindow::ChangeCurrent(size_t current)
2901 {
2902 m_current = current;
2903
2904 // as the current item changed, we shouldn't start editing it when the
2905 // "slow click" timer expires as the click happened on another item
2906 if ( m_renameTimer->IsRunning() )
2907 m_renameTimer->Stop();
2908
2909 SendNotify(current, wxEVT_COMMAND_LIST_ITEM_FOCUSED);
2910 }
2911
2912 wxTextCtrl *wxListMainWindow::EditLabel(long item, wxClassInfo* textControlClass)
2913 {
2914 wxCHECK_MSG( (item >= 0) && ((size_t)item < GetItemCount()), NULL,
2915 wxT("wrong index in wxGenericListCtrl::EditLabel()") );
2916
2917 wxASSERT_MSG( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)),
2918 wxT("EditLabel() needs a text control") );
2919
2920 size_t itemEdit = (size_t)item;
2921
2922 wxListEvent le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, GetParent()->GetId() );
2923 le.SetEventObject( GetParent() );
2924 le.m_itemIndex = item;
2925 wxListLineData *data = GetLine(itemEdit);
2926 wxCHECK_MSG( data, NULL, _T("invalid index in EditLabel()") );
2927 data->GetItem( 0, le.m_item );
2928
2929 if ( GetParent()->GetEventHandler()->ProcessEvent( le ) && !le.IsAllowed() )
2930 {
2931 // vetoed by user code
2932 return NULL;
2933 }
2934
2935 // We have to call this here because the label in question might just have
2936 // been added and no screen update taken place.
2937 if ( m_dirty )
2938 {
2939 wxSafeYield();
2940
2941 // Pending events dispatched by wxSafeYield might have changed the item
2942 // count
2943 if ( (size_t)item >= GetItemCount() )
2944 return NULL;
2945 }
2946
2947 wxTextCtrl * const text = (wxTextCtrl *)textControlClass->CreateObject();
2948 m_textctrlWrapper = new wxListTextCtrlWrapper(this, text, item);
2949 return m_textctrlWrapper->GetText();
2950 }
2951
2952 void wxListMainWindow::OnRenameTimer()
2953 {
2954 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2955
2956 EditLabel( m_current );
2957 }
2958
2959 bool wxListMainWindow::OnRenameAccept(size_t itemEdit, const wxString& value)
2960 {
2961 wxListEvent le( wxEVT_COMMAND_LIST_END_LABEL_EDIT, GetParent()->GetId() );
2962 le.SetEventObject( GetParent() );
2963 le.m_itemIndex = itemEdit;
2964
2965 wxListLineData *data = GetLine(itemEdit);
2966
2967 wxCHECK_MSG( data, false, _T("invalid index in OnRenameAccept()") );
2968
2969 data->GetItem( 0, le.m_item );
2970 le.m_item.m_text = value;
2971 return !GetParent()->GetEventHandler()->ProcessEvent( le ) ||
2972 le.IsAllowed();
2973 }
2974
2975 void wxListMainWindow::OnRenameCancelled(size_t itemEdit)
2976 {
2977 // let owner know that the edit was cancelled
2978 wxListEvent le( wxEVT_COMMAND_LIST_END_LABEL_EDIT, GetParent()->GetId() );
2979
2980 le.SetEditCanceled(true);
2981
2982 le.SetEventObject( GetParent() );
2983 le.m_itemIndex = itemEdit;
2984
2985 wxListLineData *data = GetLine(itemEdit);
2986 wxCHECK_RET( data, _T("invalid index in OnRenameCancelled()") );
2987
2988 data->GetItem( 0, le.m_item );
2989 GetEventHandler()->ProcessEvent( le );
2990 }
2991
2992 void wxListMainWindow::OnMouse( wxMouseEvent &event )
2993 {
2994
2995 #ifdef __WXMAC__
2996 // On wxMac we can't depend on the EVT_KILL_FOCUS event to properly
2997 // shutdown the edit control when the mouse is clicked elsewhere on the
2998 // listctrl because the order of events is different (or something like
2999 // that), so explicitly end the edit if it is active.
3000 if ( event.LeftDown() && m_textctrlWrapper )
3001 m_textctrlWrapper->EndEdit( false );
3002 #endif // __WXMAC__
3003
3004 if ( event.LeftDown() )
3005 SetFocus();
3006
3007 event.SetEventObject( GetParent() );
3008 if ( GetParent()->GetEventHandler()->ProcessEvent( event) )
3009 return;
3010
3011 if (event.GetEventType() == wxEVT_MOUSEWHEEL)
3012 {
3013 // let the base handle mouse wheel events.
3014 event.Skip();
3015 return;
3016 }
3017
3018 if ( !HasCurrent() || IsEmpty() )
3019 {
3020 if (event.RightDown())
3021 {
3022 SendNotify( (size_t)-1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() );
3023
3024 wxContextMenuEvent evtCtx(
3025 wxEVT_CONTEXT_MENU,
3026 GetParent()->GetId(),
3027 ClientToScreen(event.GetPosition()));
3028 evtCtx.SetEventObject(GetParent());
3029 GetParent()->GetEventHandler()->ProcessEvent(evtCtx);
3030 }
3031 return;
3032 }
3033
3034 if (m_dirty)
3035 return;
3036
3037 if ( !(event.Dragging() || event.ButtonDown() || event.LeftUp() ||
3038 event.ButtonDClick()) )
3039 return;
3040
3041 int x = event.GetX();
3042 int y = event.GetY();
3043 CalcUnscrolledPosition( x, y, &x, &y );
3044
3045 // where did we hit it (if we did)?
3046 long hitResult = 0;
3047
3048 size_t count = GetItemCount(),
3049 current;
3050
3051 if ( InReportView() )
3052 {
3053 current = y / GetLineHeight();
3054 if ( current < count )
3055 hitResult = HitTestLine(current, x, y);
3056 }
3057 else // !report
3058 {
3059 // TODO: optimize it too! this is less simple than for report view but
3060 // enumerating all items is still not a way to do it!!
3061 for ( current = 0; current < count; current++ )
3062 {
3063 hitResult = HitTestLine(current, x, y);
3064 if ( hitResult )
3065 break;
3066 }
3067 }
3068
3069 if (event.Dragging())
3070 {
3071 if (m_dragCount == 0)
3072 {
3073 // we have to report the raw, physical coords as we want to be
3074 // able to call HitTest(event.m_pointDrag) from the user code to
3075 // get the item being dragged
3076 m_dragStart = event.GetPosition();
3077 }
3078
3079 m_dragCount++;
3080
3081 if (m_dragCount != 3)
3082 return;
3083
3084 int command = event.RightIsDown() ? wxEVT_COMMAND_LIST_BEGIN_RDRAG
3085 : wxEVT_COMMAND_LIST_BEGIN_DRAG;
3086
3087 wxListEvent le( command, GetParent()->GetId() );
3088 le.SetEventObject( GetParent() );
3089 le.m_itemIndex = m_lineLastClicked;
3090 le.m_pointDrag = m_dragStart;
3091 GetParent()->GetEventHandler()->ProcessEvent( le );
3092
3093 return;
3094 }
3095 else
3096 {
3097 m_dragCount = 0;
3098 }
3099
3100 if ( !hitResult )
3101 {
3102 // outside of any item
3103 if (event.RightDown())
3104 {
3105 SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() );
3106
3107 wxContextMenuEvent evtCtx(
3108 wxEVT_CONTEXT_MENU,
3109 GetParent()->GetId(),
3110 ClientToScreen(event.GetPosition()));
3111 evtCtx.SetEventObject(GetParent());
3112 GetParent()->GetEventHandler()->ProcessEvent(evtCtx);
3113 }
3114 else
3115 {
3116 // reset the selection and bail out
3117 HighlightAll(false);
3118 }
3119
3120 return;
3121 }
3122
3123 bool forceClick = false;
3124 if (event.ButtonDClick())
3125 {
3126 if ( m_renameTimer->IsRunning() )
3127 m_renameTimer->Stop();
3128
3129 m_lastOnSame = false;
3130
3131 if ( current == m_lineLastClicked )
3132 {
3133 SendNotify( current, wxEVT_COMMAND_LIST_ITEM_ACTIVATED );
3134
3135 return;
3136 }
3137 else
3138 {
3139 // The first click was on another item, so don't interpret this as
3140 // a double click, but as a simple click instead
3141 forceClick = true;
3142 }
3143 }
3144
3145 if (event.LeftUp())
3146 {
3147 if (m_lineSelectSingleOnUp != (size_t)-1)
3148 {
3149 // select single line
3150 HighlightAll( false );
3151 ReverseHighlight(m_lineSelectSingleOnUp);
3152 }
3153
3154 if (m_lastOnSame)
3155 {
3156 if ((current == m_current) &&
3157 (hitResult == wxLIST_HITTEST_ONITEMLABEL) &&
3158 HasFlag(wxLC_EDIT_LABELS) )
3159 {
3160 if ( !InReportView() ||
3161 GetLineLabelRect(current).Contains(x, y) )
3162 {
3163 int dclick = wxSystemSettings::GetMetric(wxSYS_DCLICK_MSEC);
3164 m_renameTimer->Start(dclick > 0 ? dclick : 250, true);
3165 }
3166 }
3167 }
3168
3169 m_lastOnSame = false;
3170 m_lineSelectSingleOnUp = (size_t)-1;
3171 }
3172 else
3173 {
3174 // This is necessary, because after a DnD operation in
3175 // from and to ourself, the up event is swallowed by the
3176 // DnD code. So on next non-up event (which means here and
3177 // now) m_lineSelectSingleOnUp should be reset.
3178 m_lineSelectSingleOnUp = (size_t)-1;
3179 }
3180 if (event.RightDown())
3181 {
3182 m_lineBeforeLastClicked = m_lineLastClicked;
3183 m_lineLastClicked = current;
3184
3185 // If the item is already selected, do not update the selection.
3186 // Multi-selections should not be cleared if a selected item is clicked.
3187 if (!IsHighlighted(current))
3188 {
3189 HighlightAll(false);
3190 ChangeCurrent(current);
3191 ReverseHighlight(m_current);
3192 }
3193
3194 SendNotify( current, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() );
3195
3196 // Allow generation of context menu event
3197 event.Skip();
3198 }
3199 else if (event.MiddleDown())
3200 {
3201 SendNotify( current, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK );
3202 }
3203 else if ( event.LeftDown() || forceClick )
3204 {
3205 m_lineBeforeLastClicked = m_lineLastClicked;
3206 m_lineLastClicked = current;
3207
3208 size_t oldCurrent = m_current;
3209 bool oldWasSelected = IsHighlighted(m_current);
3210
3211 bool cmdModifierDown = event.CmdDown();
3212 if ( IsSingleSel() || !(cmdModifierDown || event.ShiftDown()) )
3213 {
3214 if ( IsSingleSel() || !IsHighlighted(current) )
3215 {
3216 HighlightAll( false );
3217
3218 ChangeCurrent(current);
3219
3220 ReverseHighlight(m_current);
3221 }
3222 else // multi sel & current is highlighted & no mod keys
3223 {
3224 m_lineSelectSingleOnUp = current;
3225 ChangeCurrent(current); // change focus
3226 }
3227 }
3228 else // multi sel & either ctrl or shift is down
3229 {
3230 if (cmdModifierDown)
3231 {
3232 ChangeCurrent(current);
3233
3234 ReverseHighlight(m_current);
3235 }
3236 else if (event.ShiftDown())
3237 {
3238 ChangeCurrent(current);
3239
3240 size_t lineFrom = oldCurrent,
3241 lineTo = current;
3242
3243 if ( lineTo < lineFrom )
3244 {
3245 lineTo = lineFrom;
3246 lineFrom = m_current;
3247 }
3248
3249 HighlightLines(lineFrom, lineTo);
3250 }
3251 else // !ctrl, !shift
3252 {
3253 // test in the enclosing if should make it impossible
3254 wxFAIL_MSG( _T("how did we get here?") );
3255 }
3256 }
3257
3258 if (m_current != oldCurrent)
3259 RefreshLine( oldCurrent );
3260
3261 // forceClick is only set if the previous click was on another item
3262 m_lastOnSame = !forceClick && (m_current == oldCurrent) && oldWasSelected;
3263 }
3264 }
3265
3266 void wxListMainWindow::MoveToItem(size_t item)
3267 {
3268 if ( item == (size_t)-1 )
3269 return;
3270
3271 wxRect rect = GetLineRect(item);
3272
3273 int client_w, client_h;
3274 GetClientSize( &client_w, &client_h );
3275
3276 const int hLine = GetLineHeight();
3277
3278 int view_x = SCROLL_UNIT_X * GetScrollPos( wxHORIZONTAL );
3279 int view_y = hLine * GetScrollPos( wxVERTICAL );
3280
3281 if ( InReportView() )
3282 {
3283 // the next we need the range of lines shown it might be different,
3284 // so recalculate it
3285 ResetVisibleLinesRange();
3286
3287 if (rect.y < view_y)
3288 Scroll( -1, rect.y / hLine );
3289 if (rect.y + rect.height + 5 > view_y + client_h)
3290 Scroll( -1, (rect.y + rect.height - client_h + hLine) / hLine );
3291
3292 #ifdef __WXMAC__
3293 // At least on Mac the visible lines value will get reset inside of
3294 // Scroll *before* it actually scrolls the window because of the
3295 // Update() that happens there, so it will still have the wrong value.
3296 // So let's reset it again and wait for it to be recalculated in the
3297 // next paint event. I would expect this problem to show up in wxGTK
3298 // too but couldn't duplicate it there. Perhaps the order of events
3299 // is different... --Robin
3300 ResetVisibleLinesRange();
3301 #endif
3302 }
3303 else // !report
3304 {
3305 int sx = -1,
3306 sy = -1;
3307
3308 if (rect.x-view_x < 5)
3309 sx = (rect.x - 5) / SCROLL_UNIT_X;
3310 if (rect.x + rect.width - 5 > view_x + client_w)
3311 sx = (rect.x + rect.width - client_w + SCROLL_UNIT_X) / SCROLL_UNIT_X;
3312
3313 if (rect.y-view_y < 5)
3314 sy = (rect.y - 5) / hLine;
3315 if (rect.y + rect.height - 5 > view_y + client_h)
3316 sy = (rect.y + rect.height - client_h + hLine) / hLine;
3317
3318 Scroll(sx, sy);
3319 }
3320 }
3321
3322 bool wxListMainWindow::ScrollList(int WXUNUSED(dx), int dy)
3323 {
3324 if ( !InReportView() )
3325 {
3326 // TODO: this should work in all views but is not implemented now
3327 return false;
3328 }
3329
3330 size_t top, bottom;
3331 GetVisibleLinesRange(&top, &bottom);
3332
3333 if ( bottom == (size_t)-1 )
3334 return 0;
3335
3336 ResetVisibleLinesRange();
3337
3338 int hLine = GetLineHeight();
3339
3340 Scroll(-1, top + dy / hLine);
3341
3342 #ifdef __WXMAC__
3343 // see comment in MoveToItem() for why we do this
3344 ResetVisibleLinesRange();
3345 #endif
3346
3347 return true;
3348 }
3349
3350 // ----------------------------------------------------------------------------
3351 // keyboard handling
3352 // ----------------------------------------------------------------------------
3353
3354 void wxListMainWindow::OnArrowChar(size_t newCurrent, const wxKeyEvent& event)
3355 {
3356 wxCHECK_RET( newCurrent < (size_t)GetItemCount(),
3357 _T("invalid item index in OnArrowChar()") );
3358
3359 size_t oldCurrent = m_current;
3360
3361 // in single selection we just ignore Shift as we can't select several
3362 // items anyhow
3363 if ( event.ShiftDown() && !IsSingleSel() )
3364 {
3365 ChangeCurrent(newCurrent);
3366
3367 // refresh the old focus to remove it
3368 RefreshLine( oldCurrent );
3369
3370 // select all the items between the old and the new one
3371 if ( oldCurrent > newCurrent )
3372 {
3373 newCurrent = oldCurrent;
3374 oldCurrent = m_current;
3375 }
3376
3377 HighlightLines(oldCurrent, newCurrent);
3378 }
3379 else // !shift
3380 {
3381 // all previously selected items are unselected unless ctrl is held
3382 // in a multiselection control
3383 if ( !event.ControlDown() || IsSingleSel() )
3384 HighlightAll(false);
3385
3386 ChangeCurrent(newCurrent);
3387
3388 // refresh the old focus to remove it
3389 RefreshLine( oldCurrent );
3390
3391 // in single selection mode we must always have a selected item
3392 if ( !event.ControlDown() || IsSingleSel() )
3393 HighlightLine( m_current, true );
3394 }
3395
3396 RefreshLine( m_current );
3397
3398 MoveToFocus();
3399 }
3400
3401 void wxListMainWindow::OnKeyDown( wxKeyEvent &event )
3402 {
3403 wxWindow *parent = GetParent();
3404
3405 // propagate the key event upwards
3406 wxKeyEvent ke(event);
3407 ke.SetEventObject( parent );
3408 if (parent->GetEventHandler()->ProcessEvent( ke ))
3409 return;
3410
3411 event.Skip();
3412 }
3413
3414 void wxListMainWindow::OnKeyUp( wxKeyEvent &event )
3415 {
3416 wxWindow *parent = GetParent();
3417
3418 // propagate the key event upwards
3419 wxKeyEvent ke(event);
3420 if (parent->GetEventHandler()->ProcessEvent( ke ))
3421 return;
3422
3423 event.Skip();
3424 }
3425
3426 void wxListMainWindow::OnChar( wxKeyEvent &event )
3427 {
3428 wxWindow *parent = GetParent();
3429
3430 // send a list_key event up
3431 if ( HasCurrent() )
3432 {
3433 wxListEvent le( wxEVT_COMMAND_LIST_KEY_DOWN, GetParent()->GetId() );
3434 le.m_itemIndex = m_current;
3435 GetLine(m_current)->GetItem( 0, le.m_item );
3436 le.m_code = event.GetKeyCode();
3437 le.SetEventObject( parent );
3438 parent->GetEventHandler()->ProcessEvent( le );
3439 }
3440
3441 // propagate the char event upwards
3442 wxKeyEvent ke(event);
3443 ke.SetEventObject( parent );
3444 if (parent->GetEventHandler()->ProcessEvent( ke ))
3445 return;
3446
3447 if ( HandleAsNavigationKey(event) )
3448 return;
3449
3450 // no item -> nothing to do
3451 if (!HasCurrent())
3452 {
3453 event.Skip();
3454 return;
3455 }
3456
3457 // don't use m_linesPerPage directly as it might not be computed yet
3458 const int pageSize = GetCountPerPage();
3459 wxCHECK_RET( pageSize, _T("should have non zero page size") );
3460
3461 if (GetLayoutDirection() == wxLayout_RightToLeft)
3462 {
3463 if (event.GetKeyCode() == WXK_RIGHT)
3464 event.m_keyCode = WXK_LEFT;
3465 else if (event.GetKeyCode() == WXK_LEFT)
3466 event.m_keyCode = WXK_RIGHT;
3467 }
3468
3469 switch ( event.GetKeyCode() )
3470 {
3471 case WXK_UP:
3472 if ( m_current > 0 )
3473 OnArrowChar( m_current - 1, event );
3474 break;
3475
3476 case WXK_DOWN:
3477 if ( m_current < (size_t)GetItemCount() - 1 )
3478 OnArrowChar( m_current + 1, event );
3479 break;
3480
3481 case WXK_END:
3482 if (!IsEmpty())
3483 OnArrowChar( GetItemCount() - 1, event );
3484 break;
3485
3486 case WXK_HOME:
3487 if (!IsEmpty())
3488 OnArrowChar( 0, event );
3489 break;
3490
3491 case WXK_PAGEUP:
3492 {
3493 int steps = InReportView() ? pageSize - 1
3494 : m_current % pageSize;
3495
3496 int index = m_current - steps;
3497 if (index < 0)
3498 index = 0;
3499
3500 OnArrowChar( index, event );
3501 }
3502 break;
3503
3504 case WXK_PAGEDOWN:
3505 {
3506 int steps = InReportView()
3507 ? pageSize - 1
3508 : pageSize - (m_current % pageSize) - 1;
3509
3510 size_t index = m_current + steps;
3511 size_t count = GetItemCount();
3512 if ( index >= count )
3513 index = count - 1;
3514
3515 OnArrowChar( index, event );
3516 }
3517 break;
3518
3519 case WXK_LEFT:
3520 if ( !InReportView() )
3521 {
3522 int index = m_current - pageSize;
3523 if (index < 0)
3524 index = 0;
3525
3526 OnArrowChar( index, event );
3527 }
3528 break;
3529
3530 case WXK_RIGHT:
3531 if ( !InReportView() )
3532 {
3533 size_t index = m_current + pageSize;
3534
3535 size_t count = GetItemCount();
3536 if ( index >= count )
3537 index = count - 1;
3538
3539 OnArrowChar( index, event );
3540 }
3541 break;
3542
3543 case WXK_SPACE:
3544 if ( IsSingleSel() )
3545 {
3546 if ( event.ControlDown() )
3547 {
3548 ReverseHighlight(m_current);
3549 }
3550 else // normal space press
3551 {
3552 SendNotify( m_current, wxEVT_COMMAND_LIST_ITEM_ACTIVATED );
3553 }
3554 }
3555 else // multiple selection
3556 {
3557 ReverseHighlight(m_current);
3558 }
3559 break;
3560
3561 case WXK_RETURN:
3562 case WXK_EXECUTE:
3563 SendNotify( m_current, wxEVT_COMMAND_LIST_ITEM_ACTIVATED );
3564 break;
3565
3566 default:
3567 event.Skip();
3568 }
3569 }
3570
3571 // ----------------------------------------------------------------------------
3572 // focus handling
3573 // ----------------------------------------------------------------------------
3574
3575 void wxListMainWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) )
3576 {
3577 if ( GetParent() )
3578 {
3579 wxFocusEvent event( wxEVT_SET_FOCUS, GetParent()->GetId() );
3580 event.SetEventObject( GetParent() );
3581 if ( GetParent()->GetEventHandler()->ProcessEvent( event) )
3582 return;
3583 }
3584
3585 // wxGTK sends us EVT_SET_FOCUS events even if we had never got
3586 // EVT_KILL_FOCUS before which means that we finish by redrawing the items
3587 // which are already drawn correctly resulting in horrible flicker - avoid
3588 // it
3589 if ( !m_hasFocus )
3590 {
3591 m_hasFocus = true;
3592
3593 RefreshSelected();
3594 }
3595 }
3596
3597 void wxListMainWindow::OnKillFocus( wxFocusEvent &WXUNUSED(event) )
3598 {
3599 if ( GetParent() )
3600 {
3601 wxFocusEvent event( wxEVT_KILL_FOCUS, GetParent()->GetId() );
3602 event.SetEventObject( GetParent() );
3603 if ( GetParent()->GetEventHandler()->ProcessEvent( event) )
3604 return;
3605 }
3606
3607 m_hasFocus = false;
3608 RefreshSelected();
3609 }
3610
3611 void wxListMainWindow::DrawImage( int index, wxDC *dc, int x, int y )
3612 {
3613 if ( HasFlag(wxLC_ICON) && (m_normal_image_list))
3614 {
3615 m_normal_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
3616 }
3617 else if ( HasFlag(wxLC_SMALL_ICON) && (m_small_image_list))
3618 {
3619 m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
3620 }
3621 else if ( HasFlag(wxLC_LIST) && (m_small_image_list))
3622 {
3623 m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
3624 }
3625 else if ( InReportView() && (m_small_image_list))
3626 {
3627 m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT );
3628 }
3629 }
3630
3631 void wxListMainWindow::GetImageSize( int index, int &width, int &height ) const
3632 {
3633 if ( HasFlag(wxLC_ICON) && m_normal_image_list )
3634 {
3635 m_normal_image_list->GetSize( index, width, height );
3636 }
3637 else if ( HasFlag(wxLC_SMALL_ICON) && m_small_image_list )
3638 {
3639 m_small_image_list->GetSize( index, width, height );
3640 }
3641 else if ( HasFlag(wxLC_LIST) && m_small_image_list )
3642 {
3643 m_small_image_list->GetSize( index, width, height );
3644 }
3645 else if ( InReportView() && m_small_image_list )
3646 {
3647 m_small_image_list->GetSize( index, width, height );
3648 }
3649 else
3650 {
3651 width =
3652 height = 0;
3653 }
3654 }
3655
3656 int wxListMainWindow::GetTextLength( const wxString &s ) const
3657 {
3658 wxClientDC dc( wxConstCast(this, wxListMainWindow) );
3659 dc.SetFont( GetFont() );
3660
3661 wxCoord lw;
3662 dc.GetTextExtent( s, &lw, NULL );
3663
3664 return lw + AUTOSIZE_COL_MARGIN;
3665 }
3666
3667 void wxListMainWindow::SetImageList( wxImageList *imageList, int which )
3668 {
3669 m_dirty = true;
3670
3671 // calc the spacing from the icon size
3672 int width = 0, height = 0;
3673
3674 if ((imageList) && (imageList->GetImageCount()) )
3675 imageList->GetSize(0, width, height);
3676
3677 if (which == wxIMAGE_LIST_NORMAL)
3678 {
3679 m_normal_image_list = imageList;
3680 m_normal_spacing = width + 8;
3681 }
3682
3683 if (which == wxIMAGE_LIST_SMALL)
3684 {
3685 m_small_image_list = imageList;
3686 m_small_spacing = width + 14;
3687 m_lineHeight = 0; // ensure that the line height will be recalc'd
3688 }
3689 }
3690
3691 void wxListMainWindow::SetItemSpacing( int spacing, bool isSmall )
3692 {
3693 m_dirty = true;
3694 if (isSmall)
3695 m_small_spacing = spacing;
3696 else
3697 m_normal_spacing = spacing;
3698 }
3699
3700 int wxListMainWindow::GetItemSpacing( bool isSmall )
3701 {
3702 return isSmall ? m_small_spacing : m_normal_spacing;
3703 }
3704
3705 // ----------------------------------------------------------------------------
3706 // columns
3707 // ----------------------------------------------------------------------------
3708
3709 void wxListMainWindow::SetColumn( int col, wxListItem &item )
3710 {
3711 wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col );
3712
3713 wxCHECK_RET( node, _T("invalid column index in SetColumn") );
3714
3715 if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER )
3716 item.m_width = GetTextLength( item.m_text );
3717
3718 wxListHeaderData *column = node->GetData();
3719 column->SetItem( item );
3720
3721 wxListHeaderWindow *headerWin = GetListCtrl()->m_headerWin;
3722 if ( headerWin )
3723 headerWin->m_dirty = true;
3724
3725 m_dirty = true;
3726
3727 // invalidate it as it has to be recalculated
3728 m_headerWidth = 0;
3729 }
3730
3731 void wxListMainWindow::SetColumnWidth( int col, int width )
3732 {
3733 wxCHECK_RET( col >= 0 && col < GetColumnCount(),
3734 _T("invalid column index") );
3735
3736 wxCHECK_RET( InReportView(),
3737 _T("SetColumnWidth() can only be called in report mode.") );
3738
3739 m_dirty = true;
3740 wxListHeaderWindow *headerWin = GetListCtrl()->m_headerWin;
3741 if ( headerWin )
3742 headerWin->m_dirty = true;
3743
3744 wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col );
3745 wxCHECK_RET( node, _T("no column?") );
3746
3747 wxListHeaderData *column = node->GetData();
3748
3749 size_t count = GetItemCount();
3750
3751 if (width == wxLIST_AUTOSIZE_USEHEADER)
3752 {
3753 width = GetTextLength(column->GetText());
3754 width += 2*EXTRA_WIDTH;
3755
3756 // check for column header's image availability
3757 const int image = column->GetImage();
3758 if ( image != -1 )
3759 {
3760 if ( m_small_image_list )
3761 {
3762 int ix = 0, iy = 0;
3763 m_small_image_list->GetSize(image, ix, iy);
3764 width += ix + HEADER_IMAGE_MARGIN_IN_REPORT_MODE;
3765 }
3766 }
3767 }
3768 else if ( width == wxLIST_AUTOSIZE )
3769 {
3770 if ( IsVirtual() )
3771 {
3772 // TODO: determine the max width somehow...
3773 width = WIDTH_COL_DEFAULT;
3774 }
3775 else // !virtual
3776 {
3777 wxClientDC dc(this);
3778 dc.SetFont( GetFont() );
3779
3780 int max = AUTOSIZE_COL_MARGIN;
3781
3782 // if the cached column width isn't valid then recalculate it
3783 if (m_aColWidths.Item(col)->bNeedsUpdate)
3784 {
3785 for (size_t i = 0; i < count; i++)
3786 {
3787 wxListLineData *line = GetLine( i );
3788 wxListItemDataList::compatibility_iterator n = line->m_items.Item( col );
3789
3790 wxCHECK_RET( n, _T("no subitem?") );
3791
3792 wxListItemData *itemData = n->GetData();
3793 wxListItem item;
3794
3795 itemData->GetItem(item);
3796 int itemWidth = GetItemWidthWithImage(&item);
3797 if (itemWidth > max)
3798 max = itemWidth;
3799 }
3800
3801 m_aColWidths.Item(col)->bNeedsUpdate = false;
3802 m_aColWidths.Item(col)->nMaxWidth = max;
3803 }
3804
3805 max = m_aColWidths.Item(col)->nMaxWidth;
3806 width = max + AUTOSIZE_COL_MARGIN;
3807 }
3808 }
3809
3810 column->SetWidth( width );
3811
3812 // invalidate it as it has to be recalculated
3813 m_headerWidth = 0;
3814 }
3815
3816 int wxListMainWindow::GetHeaderWidth() const
3817 {
3818 if ( !m_headerWidth )
3819 {
3820 wxListMainWindow *self = wxConstCast(this, wxListMainWindow);
3821
3822 size_t count = GetColumnCount();
3823 for ( size_t col = 0; col < count; col++ )
3824 {
3825 self->m_headerWidth += GetColumnWidth(col);
3826 }
3827 }
3828
3829 return m_headerWidth;
3830 }
3831
3832 void wxListMainWindow::GetColumn( int col, wxListItem &item ) const
3833 {
3834 wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col );
3835 wxCHECK_RET( node, _T("invalid column index in GetColumn") );
3836
3837 wxListHeaderData *column = node->GetData();
3838 column->GetItem( item );
3839 }
3840
3841 int wxListMainWindow::GetColumnWidth( int col ) const
3842 {
3843 wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col );
3844 wxCHECK_MSG( node, 0, _T("invalid column index") );
3845
3846 wxListHeaderData *column = node->GetData();
3847 return column->GetWidth();
3848 }
3849
3850 // ----------------------------------------------------------------------------
3851 // item state
3852 // ----------------------------------------------------------------------------
3853
3854 void wxListMainWindow::SetItem( wxListItem &item )
3855 {
3856 long id = item.m_itemId;
3857 wxCHECK_RET( id >= 0 && (size_t)id < GetItemCount(),
3858 _T("invalid item index in SetItem") );
3859
3860 if ( !IsVirtual() )
3861 {
3862 wxListLineData *line = GetLine((size_t)id);
3863 line->SetItem( item.m_col, item );
3864
3865 // Set item state if user wants
3866 if ( item.m_mask & wxLIST_MASK_STATE )
3867 SetItemState( item.m_itemId, item.m_state, item.m_state );
3868
3869 if (InReportView())
3870 {
3871 // update the Max Width Cache if needed
3872 int width = GetItemWidthWithImage(&item);
3873
3874 if (width > m_aColWidths.Item(item.m_col)->nMaxWidth)
3875 m_aColWidths.Item(item.m_col)->nMaxWidth = width;
3876 }
3877 }
3878
3879 // update the item on screen
3880 wxRect rectItem;
3881 GetItemRect(id, rectItem);
3882 RefreshRect(rectItem);
3883 }
3884
3885 void wxListMainWindow::SetItemStateAll(long state, long stateMask)
3886 {
3887 if ( IsEmpty() )
3888 return;
3889
3890 // first deal with selection
3891 if ( stateMask & wxLIST_STATE_SELECTED )
3892 {
3893 // set/clear select state
3894 if ( IsVirtual() )
3895 {
3896 // optimized version for virtual listctrl.
3897 m_selStore.SelectRange(0, GetItemCount() - 1, state == wxLIST_STATE_SELECTED);
3898 Refresh();
3899 }
3900 else if ( state & wxLIST_STATE_SELECTED )
3901 {
3902 const long count = GetItemCount();
3903 for( long i = 0; i < count; i++ )
3904 {
3905 SetItemState( i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
3906 }
3907
3908 }
3909 else
3910 {
3911 // clear for non virtual (somewhat optimized by using GetNextItem())
3912 long i = -1;
3913 while ( (i = GetNextItem(i, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED)) != -1 )
3914 {
3915 SetItemState( i, 0, wxLIST_STATE_SELECTED );
3916 }
3917 }
3918 }
3919
3920 if ( HasCurrent() && (state == 0) && (stateMask & wxLIST_STATE_FOCUSED) )
3921 {
3922 // unfocus all: only one item can be focussed, so clearing focus for
3923 // all items is simply clearing focus of the focussed item.
3924 SetItemState(m_current, state, stateMask);
3925 }
3926 //(setting focus to all items makes no sense, so it is not handled here.)
3927 }
3928
3929 void wxListMainWindow::SetItemState( long litem, long state, long stateMask )
3930 {
3931 if ( litem == -1 )
3932 {
3933 SetItemStateAll(state, stateMask);
3934 return;
3935 }
3936
3937 wxCHECK_RET( litem >= 0 && (size_t)litem < GetItemCount(),
3938 _T("invalid list ctrl item index in SetItem") );
3939
3940 size_t oldCurrent = m_current;
3941 size_t item = (size_t)litem; // safe because of the check above
3942
3943 // do we need to change the focus?
3944 if ( stateMask & wxLIST_STATE_FOCUSED )
3945 {
3946 if ( state & wxLIST_STATE_FOCUSED )
3947 {
3948 // don't do anything if this item is already focused
3949 if ( item != m_current )
3950 {
3951 ChangeCurrent(item);
3952
3953 if ( oldCurrent != (size_t)-1 )
3954 {
3955 if ( IsSingleSel() )
3956 {
3957 HighlightLine(oldCurrent, false);
3958 }
3959
3960 RefreshLine(oldCurrent);
3961 }
3962
3963 RefreshLine( m_current );
3964 }
3965 }
3966 else // unfocus
3967 {
3968 // don't do anything if this item is not focused
3969 if ( item == m_current )
3970 {
3971 ResetCurrent();
3972
3973 if ( IsSingleSel() )
3974 {
3975 // we must unselect the old current item as well or we
3976 // might end up with more than one selected item in a
3977 // single selection control
3978 HighlightLine(oldCurrent, false);
3979 }
3980
3981 RefreshLine( oldCurrent );
3982 }
3983 }
3984 }
3985
3986 // do we need to change the selection state?
3987 if ( stateMask & wxLIST_STATE_SELECTED )
3988 {
3989 bool on = (state & wxLIST_STATE_SELECTED) != 0;
3990
3991 if ( IsSingleSel() )
3992 {
3993 if ( on )
3994 {
3995 // selecting the item also makes it the focused one in the
3996 // single sel mode
3997 if ( m_current != item )
3998 {
3999 ChangeCurrent(item);
4000
4001 if ( oldCurrent != (size_t)-1 )
4002 {
4003 HighlightLine( oldCurrent, false );
4004 RefreshLine( oldCurrent );
4005 }
4006 }
4007 }
4008 else // off
4009 {
4010 // only the current item may be selected anyhow
4011 if ( item != m_current )
4012 return;
4013 }
4014 }
4015
4016 if ( HighlightLine(item, on) )
4017 {
4018 RefreshLine(item);
4019 }
4020 }
4021 }
4022
4023 int wxListMainWindow::GetItemState( long item, long stateMask ) const
4024 {
4025 wxCHECK_MSG( item >= 0 && (size_t)item < GetItemCount(), 0,
4026 _T("invalid list ctrl item index in GetItemState()") );
4027
4028 int ret = wxLIST_STATE_DONTCARE;
4029
4030 if ( stateMask & wxLIST_STATE_FOCUSED )
4031 {
4032 if ( (size_t)item == m_current )
4033 ret |= wxLIST_STATE_FOCUSED;
4034 }
4035
4036 if ( stateMask & wxLIST_STATE_SELECTED )
4037 {
4038 if ( IsHighlighted(item) )
4039 ret |= wxLIST_STATE_SELECTED;
4040 }
4041
4042 return ret;
4043 }
4044
4045 void wxListMainWindow::GetItem( wxListItem &item ) const
4046 {
4047 wxCHECK_RET( item.m_itemId >= 0 && (size_t)item.m_itemId < GetItemCount(),
4048 _T("invalid item index in GetItem") );
4049
4050 wxListLineData *line = GetLine((size_t)item.m_itemId);
4051 line->GetItem( item.m_col, item );
4052
4053 // Get item state if user wants it
4054 if ( item.m_mask & wxLIST_MASK_STATE )
4055 item.m_state = GetItemState( item.m_itemId, wxLIST_STATE_SELECTED |
4056 wxLIST_STATE_FOCUSED );
4057 }
4058
4059 // ----------------------------------------------------------------------------
4060 // item count
4061 // ----------------------------------------------------------------------------
4062
4063 size_t wxListMainWindow::GetItemCount() const
4064 {
4065 return IsVirtual() ? m_countVirt : m_lines.GetCount();
4066 }
4067
4068 void wxListMainWindow::SetItemCount(long count)
4069 {
4070 m_selStore.SetItemCount(count);
4071 m_countVirt = count;
4072
4073 ResetVisibleLinesRange();
4074
4075 // scrollbars must be reset
4076 m_dirty = true;
4077 }
4078
4079 int wxListMainWindow::GetSelectedItemCount() const
4080 {
4081 // deal with the quick case first
4082 if ( IsSingleSel() )
4083 return HasCurrent() ? IsHighlighted(m_current) : false;
4084
4085 // virtual controls remmebers all its selections itself
4086 if ( IsVirtual() )
4087 return m_selStore.GetSelectedCount();
4088
4089 // TODO: we probably should maintain the number of items selected even for
4090 // non virtual controls as enumerating all lines is really slow...
4091 size_t countSel = 0;
4092 size_t count = GetItemCount();
4093 for ( size_t line = 0; line < count; line++ )
4094 {
4095 if ( GetLine(line)->IsHighlighted() )
4096 countSel++;
4097 }
4098
4099 return countSel;
4100 }
4101
4102 // ----------------------------------------------------------------------------
4103 // item position/size
4104 // ----------------------------------------------------------------------------
4105
4106 wxRect wxListMainWindow::GetViewRect() const
4107 {
4108 wxASSERT_MSG( !HasFlag(wxLC_LIST), "not implemented for list view" );
4109
4110 // we need to find the longest/tallest label
4111 wxCoord xMax = 0, yMax = 0;
4112 const int count = GetItemCount();
4113 if ( count )
4114 {
4115 for ( int i = 0; i < count; i++ )
4116 {
4117 // we need logical, not physical, coordinates here, so use
4118 // GetLineRect() instead of GetItemRect()
4119 wxRect r = GetLineRect(i);
4120
4121 wxCoord x = r.GetRight(),
4122 y = r.GetBottom();
4123
4124 if ( x > xMax )
4125 xMax = x;
4126 if ( y > yMax )
4127 yMax = y;
4128 }
4129 }
4130
4131 // some fudge needed to make it look prettier
4132 xMax += 2 * EXTRA_BORDER_X;
4133 yMax += 2 * EXTRA_BORDER_Y;
4134
4135 // account for the scrollbars if necessary
4136 const wxSize sizeAll = GetClientSize();
4137 if ( xMax > sizeAll.x )
4138 yMax += wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y);
4139 if ( yMax > sizeAll.y )
4140 xMax += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
4141
4142 return wxRect(0, 0, xMax, yMax);
4143 }
4144
4145 bool
4146 wxListMainWindow::GetSubItemRect(long item, long subItem, wxRect& rect) const
4147 {
4148 wxCHECK_MSG( subItem == wxLIST_GETSUBITEMRECT_WHOLEITEM || InReportView(),
4149 false,
4150 _T("GetSubItemRect only meaningful in report view") );
4151 wxCHECK_MSG( item >= 0 && (size_t)item < GetItemCount(), false,
4152 _T("invalid item in GetSubItemRect") );
4153
4154 // ensure that we're laid out, otherwise we could return nonsense
4155 if ( m_dirty )
4156 {
4157 wxConstCast(this, wxListMainWindow)->
4158 RecalculatePositions(true /* no refresh */);
4159 }
4160
4161 rect = GetLineRect((size_t)item);
4162
4163 // Adjust rect to specified column
4164 if ( subItem != wxLIST_GETSUBITEMRECT_WHOLEITEM )
4165 {
4166 wxCHECK_MSG( subItem >= 0 && subItem < GetColumnCount(), false,
4167 _T("invalid subItem in GetSubItemRect") );
4168
4169 for (int i = 0; i < subItem; i++)
4170 {
4171 rect.x += GetColumnWidth(i);
4172 }
4173 rect.width = GetColumnWidth(subItem);
4174 }
4175
4176 CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y);
4177
4178 return true;
4179 }
4180
4181 bool wxListMainWindow::GetItemPosition(long item, wxPoint& pos) const
4182 {
4183 wxRect rect;
4184 GetItemRect(item, rect);
4185
4186 pos.x = rect.x;
4187 pos.y = rect.y;
4188
4189 return true;
4190 }
4191
4192 // ----------------------------------------------------------------------------
4193 // geometry calculation
4194 // ----------------------------------------------------------------------------
4195
4196 void wxListMainWindow::RecalculatePositions(bool noRefresh)
4197 {
4198 const int lineHeight = GetLineHeight();
4199
4200 wxClientDC dc( this );
4201 dc.SetFont( GetFont() );
4202
4203 const size_t count = GetItemCount();
4204
4205 int iconSpacing;
4206 if ( HasFlag(wxLC_ICON) && m_normal_image_list )
4207 iconSpacing = m_normal_spacing;
4208 else if ( HasFlag(wxLC_SMALL_ICON) && m_small_image_list )
4209 iconSpacing = m_small_spacing;
4210 else
4211 iconSpacing = 0;
4212
4213 // Note that we do not call GetClientSize() here but
4214 // GetSize() and subtract the border size for sunken
4215 // borders manually. This is technically incorrect,
4216 // but we need to know the client area's size WITHOUT
4217 // scrollbars here. Since we don't know if there are
4218 // any scrollbars, we use GetSize() instead. Another
4219 // solution would be to call SetScrollbars() here to
4220 // remove the scrollbars and call GetClientSize() then,
4221 // but this might result in flicker and - worse - will
4222 // reset the scrollbars to 0 which is not good at all
4223 // if you resize a dialog/window, but don't want to
4224 // reset the window scrolling. RR.
4225 // Furthermore, we actually do NOT subtract the border
4226 // width as 2 pixels is just the extra space which we
4227 // need around the actual content in the window. Other-
4228 // wise the text would e.g. touch the upper border. RR.
4229 int clientWidth,
4230 clientHeight;
4231 GetSize( &clientWidth, &clientHeight );
4232
4233 if ( InReportView() )
4234 {
4235 // all lines have the same height and we scroll one line per step
4236 int entireHeight = count * lineHeight + LINE_SPACING;
4237
4238 m_linesPerPage = clientHeight / lineHeight;
4239
4240 ResetVisibleLinesRange();
4241
4242 SetScrollbars( SCROLL_UNIT_X, lineHeight,
4243 GetHeaderWidth() / SCROLL_UNIT_X,
4244 (entireHeight + lineHeight - 1) / lineHeight,
4245 GetScrollPos(wxHORIZONTAL),
4246 GetScrollPos(wxVERTICAL),
4247 true );
4248 }
4249 else // !report
4250 {
4251 // we have 3 different layout strategies: either layout all items
4252 // horizontally/vertically (wxLC_ALIGN_XXX styles explicitly given) or
4253 // to arrange them in top to bottom, left to right (don't ask me why
4254 // not the other way round...) order
4255 if ( HasFlag(wxLC_ALIGN_LEFT | wxLC_ALIGN_TOP) )
4256 {
4257 int x = EXTRA_BORDER_X;
4258 int y = EXTRA_BORDER_Y;
4259
4260 wxCoord widthMax = 0;
4261
4262 size_t i;
4263 for ( i = 0; i < count; i++ )
4264 {
4265 wxListLineData *line = GetLine(i);
4266 line->CalculateSize( &dc, iconSpacing );
4267 line->SetPosition( x, y, iconSpacing );
4268
4269 wxSize sizeLine = GetLineSize(i);
4270
4271 if ( HasFlag(wxLC_ALIGN_TOP) )
4272 {
4273 if ( sizeLine.x > widthMax )
4274 widthMax = sizeLine.x;
4275
4276 y += sizeLine.y;
4277 }
4278 else // wxLC_ALIGN_LEFT
4279 {
4280 x += sizeLine.x + MARGIN_BETWEEN_ROWS;
4281 }
4282 }
4283
4284 if ( HasFlag(wxLC_ALIGN_TOP) )
4285 {
4286 // traverse the items again and tweak their sizes so that they are
4287 // all the same in a row
4288 for ( i = 0; i < count; i++ )
4289 {
4290 wxListLineData *line = GetLine(i);
4291 line->m_gi->ExtendWidth(widthMax);
4292 }
4293 }
4294
4295 SetScrollbars
4296 (
4297 SCROLL_UNIT_X,
4298 lineHeight,
4299 (x + SCROLL_UNIT_X) / SCROLL_UNIT_X,
4300 (y + lineHeight) / lineHeight,
4301 GetScrollPos( wxHORIZONTAL ),
4302 GetScrollPos( wxVERTICAL ),
4303 true
4304 );
4305 }
4306 else // "flowed" arrangement, the most complicated case
4307 {
4308 // at first we try without any scrollbars, if the items don't fit into
4309 // the window, we recalculate after subtracting the space taken by the
4310 // scrollbar
4311
4312 int entireWidth = 0;
4313
4314 for (int tries = 0; tries < 2; tries++)
4315 {
4316 entireWidth = 2 * EXTRA_BORDER_X;
4317
4318 if (tries == 1)
4319 {
4320 // Now we have decided that the items do not fit into the
4321 // client area, so we need a scrollbar
4322 entireWidth += SCROLL_UNIT_X;
4323 }
4324
4325 int x = EXTRA_BORDER_X;
4326 int y = EXTRA_BORDER_Y;
4327 int maxWidthInThisRow = 0;
4328
4329 m_linesPerPage = 0;
4330 int currentlyVisibleLines = 0;
4331
4332 for (size_t i = 0; i < count; i++)
4333 {
4334 currentlyVisibleLines++;
4335 wxListLineData *line = GetLine( i );
4336 line->CalculateSize( &dc, iconSpacing );
4337 line->SetPosition( x, y, iconSpacing );
4338
4339 wxSize sizeLine = GetLineSize( i );
4340
4341 if ( maxWidthInThisRow < sizeLine.x )
4342 maxWidthInThisRow = sizeLine.x;
4343
4344 y += sizeLine.y;
4345 if (currentlyVisibleLines > m_linesPerPage)
4346 m_linesPerPage = currentlyVisibleLines;
4347
4348 if ( y + sizeLine.y >= clientHeight )
4349 {
4350 currentlyVisibleLines = 0;
4351 y = EXTRA_BORDER_Y;
4352 maxWidthInThisRow += MARGIN_BETWEEN_ROWS;
4353 x += maxWidthInThisRow;
4354 entireWidth += maxWidthInThisRow;
4355 maxWidthInThisRow = 0;
4356 }
4357
4358 // We have reached the last item.
4359 if ( i == count - 1 )
4360 entireWidth += maxWidthInThisRow;
4361
4362 if ( (tries == 0) &&
4363 (entireWidth + SCROLL_UNIT_X > clientWidth) )
4364 {
4365 clientHeight -= wxSystemSettings::
4366 GetMetric(wxSYS_HSCROLL_Y);
4367 m_linesPerPage = 0;
4368 break;
4369 }
4370
4371 if ( i == count - 1 )
4372 tries = 1; // Everything fits, no second try required.
4373 }
4374 }
4375
4376 SetScrollbars
4377 (
4378 SCROLL_UNIT_X,
4379 lineHeight,
4380 (entireWidth + SCROLL_UNIT_X) / SCROLL_UNIT_X,
4381 0,
4382 GetScrollPos( wxHORIZONTAL ),
4383 0,
4384 true
4385 );
4386 }
4387 }
4388
4389 if ( !noRefresh )
4390 {
4391 // FIXME: why should we call it from here?
4392 UpdateCurrent();
4393
4394 RefreshAll();
4395 }
4396 }
4397
4398 void wxListMainWindow::RefreshAll()
4399 {
4400 m_dirty = false;
4401 Refresh();
4402
4403 wxListHeaderWindow *headerWin = GetListCtrl()->m_headerWin;
4404 if ( headerWin && headerWin->m_dirty )
4405 {
4406 headerWin->m_dirty = false;
4407 headerWin->Refresh();
4408 }
4409 }
4410
4411 void wxListMainWindow::UpdateCurrent()
4412 {
4413 if ( !HasCurrent() && !IsEmpty() )
4414 ChangeCurrent(0);
4415 }
4416
4417 long wxListMainWindow::GetNextItem( long item,
4418 int WXUNUSED(geometry),
4419 int state ) const
4420 {
4421 long ret = item,
4422 max = GetItemCount();
4423 wxCHECK_MSG( (ret == -1) || (ret < max), -1,
4424 _T("invalid listctrl index in GetNextItem()") );
4425
4426 // notice that we start with the next item (or the first one if item == -1)
4427 // and this is intentional to allow writing a simple loop to iterate over
4428 // all selected items
4429 ret++;
4430 if ( ret == max )
4431 // this is not an error because the index was OK initially,
4432 // just no such item
4433 return -1;
4434
4435 if ( !state )
4436 // any will do
4437 return (size_t)ret;
4438
4439 size_t count = GetItemCount();
4440 for ( size_t line = (size_t)ret; line < count; line++ )
4441 {
4442 if ( (state & wxLIST_STATE_FOCUSED) && (line == m_current) )
4443 return line;
4444
4445 if ( (state & wxLIST_STATE_SELECTED) && IsHighlighted(line) )
4446 return line;
4447 }
4448
4449 return -1;
4450 }
4451
4452 // ----------------------------------------------------------------------------
4453 // deleting stuff
4454 // ----------------------------------------------------------------------------
4455
4456 void wxListMainWindow::DeleteItem( long lindex )
4457 {
4458 size_t count = GetItemCount();
4459
4460 wxCHECK_RET( (lindex >= 0) && ((size_t)lindex < count),
4461 _T("invalid item index in DeleteItem") );
4462
4463 size_t index = (size_t)lindex;
4464
4465 // we don't need to adjust the index for the previous items
4466 if ( HasCurrent() && m_current >= index )
4467 {
4468 // if the current item is being deleted, we want the next one to
4469 // become selected - unless there is no next one - so don't adjust
4470 // m_current in this case
4471 if ( m_current != index || m_current == count - 1 )
4472 m_current--;
4473 }
4474
4475 if ( InReportView() )
4476 {
4477 // mark the Column Max Width cache as dirty if the items in the line
4478 // we're deleting contain the Max Column Width
4479 wxListLineData * const line = GetLine(index);
4480 wxListItemDataList::compatibility_iterator n;
4481 wxListItemData *itemData;
4482 wxListItem item;
4483 int itemWidth;
4484
4485 for (size_t i = 0; i < m_columns.GetCount(); i++)
4486 {
4487 n = line->m_items.Item( i );
4488 itemData = n->GetData();
4489 itemData->GetItem(item);
4490
4491 itemWidth = GetItemWidthWithImage(&item);
4492
4493 if (itemWidth >= m_aColWidths.Item(i)->nMaxWidth)
4494 m_aColWidths.Item(i)->bNeedsUpdate = true;
4495 }
4496
4497 ResetVisibleLinesRange();
4498 }
4499
4500 SendNotify( index, wxEVT_COMMAND_LIST_DELETE_ITEM, wxDefaultPosition );
4501
4502 if ( IsVirtual() )
4503 {
4504 m_countVirt--;
4505 m_selStore.OnItemDelete(index);
4506 }
4507 else
4508 {
4509 m_lines.RemoveAt( index );
4510 }
4511
4512 // we need to refresh the (vert) scrollbar as the number of items changed
4513 m_dirty = true;
4514
4515 RefreshAfter(index);
4516 }
4517
4518 void wxListMainWindow::DeleteColumn( int col )
4519 {
4520 wxListHeaderDataList::compatibility_iterator node = m_columns.Item( col );
4521
4522 wxCHECK_RET( node, wxT("invalid column index in DeleteColumn()") );
4523
4524 m_dirty = true;
4525 delete node->GetData();
4526 m_columns.Erase( node );
4527
4528 if ( !IsVirtual() )
4529 {
4530 // update all the items
4531 for ( size_t i = 0; i < m_lines.GetCount(); i++ )
4532 {
4533 wxListLineData * const line = GetLine(i);
4534 wxListItemDataList::compatibility_iterator n = line->m_items.Item( col );
4535 delete n->GetData();
4536 line->m_items.Erase(n);
4537 }
4538 }
4539
4540 if ( InReportView() ) // we only cache max widths when in Report View
4541 {
4542 delete m_aColWidths.Item(col);
4543 m_aColWidths.RemoveAt(col);
4544 }
4545
4546 // invalidate it as it has to be recalculated
4547 m_headerWidth = 0;
4548 }
4549
4550 void wxListMainWindow::DoDeleteAllItems()
4551 {
4552 if ( IsEmpty() )
4553 // nothing to do - in particular, don't send the event
4554 return;
4555
4556 ResetCurrent();
4557
4558 // to make the deletion of all items faster, we don't send the
4559 // notifications for each item deletion in this case but only one event
4560 // for all of them: this is compatible with wxMSW and documented in
4561 // DeleteAllItems() description
4562
4563 wxListEvent event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, GetParent()->GetId() );
4564 event.SetEventObject( GetParent() );
4565 GetParent()->GetEventHandler()->ProcessEvent( event );
4566
4567 if ( IsVirtual() )
4568 {
4569 m_countVirt = 0;
4570 m_selStore.Clear();
4571 }
4572
4573 if ( InReportView() )
4574 {
4575 ResetVisibleLinesRange();
4576 for (size_t i = 0; i < m_aColWidths.GetCount(); i++)
4577 {
4578 m_aColWidths.Item(i)->bNeedsUpdate = true;
4579 }
4580 }
4581
4582 m_lines.Clear();
4583 }
4584
4585 void wxListMainWindow::DeleteAllItems()
4586 {
4587 DoDeleteAllItems();
4588
4589 RecalculatePositions();
4590 }
4591
4592 void wxListMainWindow::DeleteEverything()
4593 {
4594 WX_CLEAR_LIST(wxListHeaderDataList, m_columns);
4595 WX_CLEAR_ARRAY(m_aColWidths);
4596
4597 DeleteAllItems();
4598 }
4599
4600 // ----------------------------------------------------------------------------
4601 // scanning for an item
4602 // ----------------------------------------------------------------------------
4603
4604 void wxListMainWindow::EnsureVisible( long index )
4605 {
4606 wxCHECK_RET( index >= 0 && (size_t)index < GetItemCount(),
4607 _T("invalid index in EnsureVisible") );
4608
4609 // We have to call this here because the label in question might just have
4610 // been added and its position is not known yet
4611 if ( m_dirty )
4612 RecalculatePositions(true /* no refresh */);
4613
4614 MoveToItem((size_t)index);
4615 }
4616
4617 long wxListMainWindow::FindItem(long start, const wxString& str, bool partial )
4618 {
4619 if (str.empty())
4620 return wxNOT_FOUND;
4621
4622 long pos = start;
4623 wxString str_upper = str.Upper();
4624 if (pos < 0)
4625 pos = 0;
4626
4627 size_t count = GetItemCount();
4628 for ( size_t i = (size_t)pos; i < count; i++ )
4629 {
4630 wxListLineData *line = GetLine(i);
4631 wxString line_upper = line->GetText(0).Upper();
4632 if (!partial)
4633 {
4634 if (line_upper == str_upper )
4635 return i;
4636 }
4637 else
4638 {
4639 if (line_upper.find(str_upper) == 0)
4640 return i;
4641 }
4642 }
4643
4644 return wxNOT_FOUND;
4645 }
4646
4647 long wxListMainWindow::FindItem(long start, wxUIntPtr data)
4648 {
4649 long pos = start;
4650 if (pos < 0)
4651 pos = 0;
4652
4653 size_t count = GetItemCount();
4654 for (size_t i = (size_t)pos; i < count; i++)
4655 {
4656 wxListLineData *line = GetLine(i);
4657 wxListItem item;
4658 line->GetItem( 0, item );
4659 if (item.m_data == data)
4660 return i;
4661 }
4662
4663 return wxNOT_FOUND;
4664 }
4665
4666 long wxListMainWindow::FindItem( const wxPoint& pt )
4667 {
4668 size_t topItem;
4669 GetVisibleLinesRange( &topItem, NULL );
4670
4671 wxPoint p;
4672 GetItemPosition( GetItemCount() - 1, p );
4673 if ( p.y == 0 )
4674 return topItem;
4675
4676 long id = (long)floor( pt.y * double(GetItemCount() - topItem - 1) / p.y + topItem );
4677 if ( id >= 0 && id < (long)GetItemCount() )
4678 return id;
4679
4680 return wxNOT_FOUND;
4681 }
4682
4683 long wxListMainWindow::HitTest( int x, int y, int &flags ) const
4684 {
4685 CalcUnscrolledPosition( x, y, &x, &y );
4686
4687 size_t count = GetItemCount();
4688
4689 if ( InReportView() )
4690 {
4691 size_t current = y / GetLineHeight();
4692 if ( current < count )
4693 {
4694 flags = HitTestLine(current, x, y);
4695 if ( flags )
4696 return current;
4697 }
4698 }
4699 else // !report
4700 {
4701 // TODO: optimize it too! this is less simple than for report view but
4702 // enumerating all items is still not a way to do it!!
4703 for ( size_t current = 0; current < count; current++ )
4704 {
4705 flags = HitTestLine(current, x, y);
4706 if ( flags )
4707 return current;
4708 }
4709 }
4710
4711 return wxNOT_FOUND;
4712 }
4713
4714 // ----------------------------------------------------------------------------
4715 // adding stuff
4716 // ----------------------------------------------------------------------------
4717
4718 void wxListMainWindow::InsertItem( wxListItem &item )
4719 {
4720 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") );
4721
4722 int count = GetItemCount();
4723 wxCHECK_RET( item.m_itemId >= 0, _T("invalid item index") );
4724
4725 if (item.m_itemId > count)
4726 item.m_itemId = count;
4727
4728 size_t id = item.m_itemId;
4729
4730 m_dirty = true;
4731
4732 if ( InReportView() )
4733 {
4734 ResetVisibleLinesRange();
4735
4736 // calculate the width of the item and adjust the max column width
4737 wxColWidthInfo *pWidthInfo = m_aColWidths.Item(item.GetColumn());
4738 int width = GetItemWidthWithImage(&item);
4739 item.SetWidth(width);
4740 if (width > pWidthInfo->nMaxWidth)
4741 pWidthInfo->nMaxWidth = width;
4742 }
4743
4744 wxListLineData *line = new wxListLineData(this);
4745
4746 line->SetItem( item.m_col, item );
4747
4748 m_lines.Insert( line, id );
4749
4750 m_dirty = true;
4751
4752 // If an item is selected at or below the point of insertion, we need to
4753 // increment the member variables because the current row's index has gone
4754 // up by one
4755 if ( HasCurrent() && m_current >= id )
4756 m_current++;
4757
4758 SendNotify(id, wxEVT_COMMAND_LIST_INSERT_ITEM);
4759
4760 RefreshLines(id, GetItemCount() - 1);
4761 }
4762
4763 void wxListMainWindow::InsertColumn( long col, wxListItem &item )
4764 {
4765 m_dirty = true;
4766 if ( InReportView() )
4767 {
4768 if (item.m_width == wxLIST_AUTOSIZE_USEHEADER)
4769 item.m_width = GetTextLength( item.m_text );
4770
4771 wxListHeaderData *column = new wxListHeaderData( item );
4772 wxColWidthInfo *colWidthInfo = new wxColWidthInfo();
4773
4774 bool insert = (col >= 0) && ((size_t)col < m_columns.GetCount());
4775 if ( insert )
4776 {
4777 wxListHeaderDataList::compatibility_iterator
4778 node = m_columns.Item( col );
4779 m_columns.Insert( node, column );
4780 m_aColWidths.Insert( colWidthInfo, col );
4781 }
4782 else
4783 {
4784 m_columns.Append( column );
4785 m_aColWidths.Add( colWidthInfo );
4786 }
4787
4788 if ( !IsVirtual() )
4789 {
4790 // update all the items
4791 for ( size_t i = 0; i < m_lines.GetCount(); i++ )
4792 {
4793 wxListLineData * const line = GetLine(i);
4794 wxListItemData * const data = new wxListItemData(this);
4795 if ( insert )
4796 line->m_items.Insert(col, data);
4797 else
4798 line->m_items.Append(data);
4799 }
4800 }
4801
4802 // invalidate it as it has to be recalculated
4803 m_headerWidth = 0;
4804 }
4805 }
4806
4807 int wxListMainWindow::GetItemWidthWithImage(wxListItem * item)
4808 {
4809 int width = 0;
4810 wxClientDC dc(this);
4811
4812 dc.SetFont( GetFont() );
4813
4814 if (item->GetImage() != -1)
4815 {
4816 int ix, iy;
4817 GetImageSize( item->GetImage(), ix, iy );
4818 width += ix + 5;
4819 }
4820
4821 if (!item->GetText().empty())
4822 {
4823 wxCoord w;
4824 dc.GetTextExtent( item->GetText(), &w, NULL );
4825 width += w;
4826 }
4827
4828 return width;
4829 }
4830
4831 // ----------------------------------------------------------------------------
4832 // sorting
4833 // ----------------------------------------------------------------------------
4834
4835 wxListCtrlCompare list_ctrl_compare_func_2;
4836 long list_ctrl_compare_data;
4837
4838 int LINKAGEMODE list_ctrl_compare_func_1( wxListLineData **arg1, wxListLineData **arg2 )
4839 {
4840 wxListLineData *line1 = *arg1;
4841 wxListLineData *line2 = *arg2;
4842 wxListItem item;
4843 line1->GetItem( 0, item );
4844 wxUIntPtr data1 = item.m_data;
4845 line2->GetItem( 0, item );
4846 wxUIntPtr data2 = item.m_data;
4847 return list_ctrl_compare_func_2( data1, data2, list_ctrl_compare_data );
4848 }
4849
4850 void wxListMainWindow::SortItems( wxListCtrlCompare fn, long data )
4851 {
4852 // selections won't make sense any more after sorting the items so reset
4853 // them
4854 HighlightAll(false);
4855 ResetCurrent();
4856
4857 list_ctrl_compare_func_2 = fn;
4858 list_ctrl_compare_data = data;
4859 m_lines.Sort( list_ctrl_compare_func_1 );
4860 m_dirty = true;
4861 }
4862
4863 // ----------------------------------------------------------------------------
4864 // scrolling
4865 // ----------------------------------------------------------------------------
4866
4867 void wxListMainWindow::OnScroll(wxScrollWinEvent& event)
4868 {
4869 // FIXME
4870 #if ( defined(__WXGTK__) || defined(__WXMAC__) ) && !defined(__WXUNIVERSAL__)
4871 wxScrolledCanvas::OnScroll(event);
4872 #else
4873 HandleOnScroll( event );
4874 #endif
4875
4876 // update our idea of which lines are shown when we redraw the window the
4877 // next time
4878 ResetVisibleLinesRange();
4879
4880 if ( event.GetOrientation() == wxHORIZONTAL && HasHeader() )
4881 {
4882 wxGenericListCtrl* lc = GetListCtrl();
4883 wxCHECK_RET( lc, _T("no listctrl window?") );
4884
4885 lc->m_headerWin->Refresh();
4886 lc->m_headerWin->Update();
4887 }
4888 }
4889
4890 int wxListMainWindow::GetCountPerPage() const
4891 {
4892 if ( !m_linesPerPage )
4893 {
4894 wxConstCast(this, wxListMainWindow)->
4895 m_linesPerPage = GetClientSize().y / GetLineHeight();
4896 }
4897
4898 return m_linesPerPage;
4899 }
4900
4901 void wxListMainWindow::GetVisibleLinesRange(size_t *from, size_t *to)
4902 {
4903 wxASSERT_MSG( InReportView(), _T("this is for report mode only") );
4904
4905 if ( m_lineFrom == (size_t)-1 )
4906 {
4907 size_t count = GetItemCount();
4908 if ( count )
4909 {
4910 m_lineFrom = GetScrollPos(wxVERTICAL);
4911
4912 // this may happen if SetScrollbars() hadn't been called yet
4913 if ( m_lineFrom >= count )
4914 m_lineFrom = count - 1;
4915
4916 // we redraw one extra line but this is needed to make the redrawing
4917 // logic work when there is a fractional number of lines on screen
4918 m_lineTo = m_lineFrom + m_linesPerPage;
4919 if ( m_lineTo >= count )
4920 m_lineTo = count - 1;
4921 }
4922 else // empty control
4923 {
4924 m_lineFrom = 0;
4925 m_lineTo = (size_t)-1;
4926 }
4927 }
4928
4929 wxASSERT_MSG( IsEmpty() ||
4930 (m_lineFrom <= m_lineTo && m_lineTo < GetItemCount()),
4931 _T("GetVisibleLinesRange() returns incorrect result") );
4932
4933 if ( from )
4934 *from = m_lineFrom;
4935 if ( to )
4936 *to = m_lineTo;
4937 }
4938
4939 // -------------------------------------------------------------------------------------
4940 // wxGenericListCtrl
4941 // -------------------------------------------------------------------------------------
4942
4943 IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl, wxControl)
4944
4945 BEGIN_EVENT_TABLE(wxGenericListCtrl,wxControl)
4946 EVT_SIZE(wxGenericListCtrl::OnSize)
4947 END_EVENT_TABLE()
4948
4949 wxGenericListCtrl::wxGenericListCtrl()
4950 {
4951 m_imageListNormal = (wxImageList *) NULL;
4952 m_imageListSmall = (wxImageList *) NULL;
4953 m_imageListState = (wxImageList *) NULL;
4954
4955 m_ownsImageListNormal =
4956 m_ownsImageListSmall =
4957 m_ownsImageListState = false;
4958
4959 m_mainWin = (wxListMainWindow*) NULL;
4960 m_headerWin = (wxListHeaderWindow*) NULL;
4961 m_headerHeight = 0;
4962 }
4963
4964 wxGenericListCtrl::~wxGenericListCtrl()
4965 {
4966 if (m_ownsImageListNormal)
4967 delete m_imageListNormal;
4968 if (m_ownsImageListSmall)
4969 delete m_imageListSmall;
4970 if (m_ownsImageListState)
4971 delete m_imageListState;
4972 }
4973
4974 void wxGenericListCtrl::CalculateAndSetHeaderHeight()
4975 {
4976 if ( m_headerWin )
4977 {
4978 #if defined( __WXMAC__ ) && wxOSX_USE_COCOA_OR_CARBON
4979 SInt32 h;
4980 GetThemeMetric( kThemeMetricListHeaderHeight, &h );
4981 #else
4982 // we use 'g' to get the descent, too
4983 int w, h, d;
4984 m_headerWin->GetTextExtent(wxT("Hg"), &w, &h, &d);
4985 h += d + 2 * HEADER_OFFSET_Y + EXTRA_HEIGHT;
4986 #endif
4987
4988 // only update if changed
4989 if ( h != m_headerHeight )
4990 {
4991 m_headerHeight = h;
4992
4993 if ( HasHeader() )
4994 ResizeReportView(true);
4995 else //why is this needed if it doesn't have a header?
4996 m_headerWin->SetSize(m_headerWin->GetSize().x, m_headerHeight);
4997 }
4998 }
4999 }
5000
5001 void wxGenericListCtrl::CreateHeaderWindow()
5002 {
5003 m_headerWin = new wxListHeaderWindow
5004 (
5005 this, wxID_ANY, m_mainWin,
5006 wxPoint(0,0),
5007 wxSize(GetClientSize().x, m_headerHeight),
5008 wxTAB_TRAVERSAL
5009 );
5010 CalculateAndSetHeaderHeight();
5011 }
5012
5013 bool wxGenericListCtrl::Create(wxWindow *parent,
5014 wxWindowID id,
5015 const wxPoint &pos,
5016 const wxSize &size,
5017 long style,
5018 const wxValidator &validator,
5019 const wxString &name)
5020 {
5021 m_imageListNormal =
5022 m_imageListSmall =
5023 m_imageListState = (wxImageList *) NULL;
5024 m_ownsImageListNormal =
5025 m_ownsImageListSmall =
5026 m_ownsImageListState = false;
5027
5028 m_mainWin = (wxListMainWindow*) NULL;
5029 m_headerWin = (wxListHeaderWindow*) NULL;
5030
5031 m_headerHeight = 0;
5032
5033 if ( !(style & wxLC_MASK_TYPE) )
5034 {
5035 style = style | wxLC_LIST;
5036 }
5037
5038 if ( !wxControl::Create( parent, id, pos, size, style, validator, name ) )
5039 return false;
5040
5041 // this window itself shouldn't get the focus, only m_mainWin should
5042 SetCanFocus(false);
5043
5044 // don't create the inner window with the border
5045 style &= ~wxBORDER_MASK;
5046
5047 m_mainWin = new wxListMainWindow( this, wxID_ANY, wxPoint(0, 0), size, style );
5048
5049 #if defined( __WXMAC__ ) && wxOSX_USE_COCOA_OR_CARBON
5050 // Human Interface Guidelines ask us for a special font in this case
5051 if ( GetWindowVariant() == wxWINDOW_VARIANT_NORMAL )
5052 {
5053 wxFont font;
5054 font.MacCreateFromThemeFont( kThemeViewsFont );
5055 SetFont( font );
5056 }
5057 #endif
5058
5059 if ( InReportView() )
5060 {
5061 CreateHeaderWindow();
5062
5063 #if defined( __WXMAC__ ) && wxOSX_USE_COCOA_OR_CARBON
5064 if (m_headerWin)
5065 {
5066 wxFont font;
5067 font.MacCreateFromThemeFont( kThemeSmallSystemFont );
5068 m_headerWin->SetFont( font );
5069 CalculateAndSetHeaderHeight();
5070 }
5071 #endif
5072
5073 if ( HasFlag(wxLC_NO_HEADER) )
5074 // VZ: why do we create it at all then?
5075 m_headerWin->Show( false );
5076 }
5077
5078 SetInitialSize(size);
5079
5080 return true;
5081 }
5082
5083 void wxGenericListCtrl::SetSingleStyle( long style, bool add )
5084 {
5085 wxASSERT_MSG( !(style & wxLC_VIRTUAL),
5086 _T("wxLC_VIRTUAL can't be [un]set") );
5087
5088 long flag = GetWindowStyle();
5089
5090 if (add)
5091 {
5092 if (style & wxLC_MASK_TYPE)
5093 flag &= ~(wxLC_MASK_TYPE | wxLC_VIRTUAL);
5094 if (style & wxLC_MASK_ALIGN)
5095 flag &= ~wxLC_MASK_ALIGN;
5096 if (style & wxLC_MASK_SORT)
5097 flag &= ~wxLC_MASK_SORT;
5098 }
5099
5100 if (add)
5101 flag |= style;
5102 else
5103 flag &= ~style;
5104
5105 // some styles can be set without recreating everything (as happens in
5106 // SetWindowStyleFlag() which calls wxListMainWindow::DeleteEverything())
5107 if ( !(style & ~(wxLC_HRULES | wxLC_VRULES)) )
5108 {
5109 Refresh();
5110 wxWindow::SetWindowStyleFlag(flag);
5111 }
5112 else
5113 {
5114 SetWindowStyleFlag( flag );
5115 }
5116 }
5117
5118 void wxGenericListCtrl::SetWindowStyleFlag( long flag )
5119 {
5120 if (m_mainWin)
5121 {
5122 m_mainWin->DeleteEverything();
5123
5124 // has the header visibility changed?
5125 bool hasHeader = HasHeader();
5126 bool willHaveHeader = (flag & wxLC_REPORT) && !(flag & wxLC_NO_HEADER);
5127
5128 if ( hasHeader != willHaveHeader )
5129 {
5130 // toggle it
5131 if ( hasHeader )
5132 {
5133 if ( m_headerWin )
5134 {
5135 // don't delete, just hide, as we can reuse it later
5136 m_headerWin->Show(false);
5137 }
5138 //else: nothing to do
5139 }
5140 else // must show header
5141 {
5142 if (!m_headerWin)
5143 {
5144 CreateHeaderWindow();
5145 }
5146 else // already have it, just show
5147 {
5148 m_headerWin->Show( true );
5149 }
5150 }
5151
5152 ResizeReportView(willHaveHeader);
5153 }
5154 }
5155
5156 wxWindow::SetWindowStyleFlag( flag );
5157 }
5158
5159 bool wxGenericListCtrl::GetColumn(int col, wxListItem &item) const
5160 {
5161 m_mainWin->GetColumn( col, item );
5162 return true;
5163 }
5164
5165 bool wxGenericListCtrl::SetColumn( int col, wxListItem& item )
5166 {
5167 m_mainWin->SetColumn( col, item );
5168 return true;
5169 }
5170
5171 int wxGenericListCtrl::GetColumnWidth( int col ) const
5172 {
5173 return m_mainWin->GetColumnWidth( col );
5174 }
5175
5176 bool wxGenericListCtrl::SetColumnWidth( int col, int width )
5177 {
5178 m_mainWin->SetColumnWidth( col, width );
5179 return true;
5180 }
5181
5182 int wxGenericListCtrl::GetCountPerPage() const
5183 {
5184 return m_mainWin->GetCountPerPage(); // different from Windows ?
5185 }
5186
5187 bool wxGenericListCtrl::GetItem( wxListItem &info ) const
5188 {
5189 m_mainWin->GetItem( info );
5190 return true;
5191 }
5192
5193 bool wxGenericListCtrl::SetItem( wxListItem &info )
5194 {
5195 m_mainWin->SetItem( info );
5196 return true;
5197 }
5198
5199 long wxGenericListCtrl::SetItem( long index, int col, const wxString& label, int imageId )
5200 {
5201 wxListItem info;
5202 info.m_text = label;
5203 info.m_mask = wxLIST_MASK_TEXT;
5204 info.m_itemId = index;
5205 info.m_col = col;
5206 if ( imageId > -1 )
5207 {
5208 info.m_image = imageId;
5209 info.m_mask |= wxLIST_MASK_IMAGE;
5210 }
5211
5212 m_mainWin->SetItem(info);
5213 return true;
5214 }
5215
5216 int wxGenericListCtrl::GetItemState( long item, long stateMask ) const
5217 {
5218 return m_mainWin->GetItemState( item, stateMask );
5219 }
5220
5221 bool wxGenericListCtrl::SetItemState( long item, long state, long stateMask )
5222 {
5223 m_mainWin->SetItemState( item, state, stateMask );
5224 return true;
5225 }
5226
5227 bool
5228 wxGenericListCtrl::SetItemImage( long item, int image, int WXUNUSED(selImage) )
5229 {
5230 return SetItemColumnImage(item, 0, image);
5231 }
5232
5233 bool
5234 wxGenericListCtrl::SetItemColumnImage( long item, long column, int image )
5235 {
5236 wxListItem info;
5237 info.m_image = image;
5238 info.m_mask = wxLIST_MASK_IMAGE;
5239 info.m_itemId = item;
5240 info.m_col = column;
5241 m_mainWin->SetItem( info );
5242 return true;
5243 }
5244
5245 wxString wxGenericListCtrl::GetItemText( long item ) const
5246 {
5247 return m_mainWin->GetItemText(item);
5248 }
5249
5250 void wxGenericListCtrl::SetItemText( long item, const wxString& str )
5251 {
5252 m_mainWin->SetItemText(item, str);
5253 }
5254
5255 wxUIntPtr wxGenericListCtrl::GetItemData( long item ) const
5256 {
5257 wxListItem info;
5258 info.m_mask = wxLIST_MASK_DATA;
5259 info.m_itemId = item;
5260 m_mainWin->GetItem( info );
5261 return info.m_data;
5262 }
5263
5264 bool wxGenericListCtrl::SetItemPtrData( long item, wxUIntPtr data )
5265 {
5266 wxListItem info;
5267 info.m_mask = wxLIST_MASK_DATA;
5268 info.m_itemId = item;
5269 info.m_data = data;
5270 m_mainWin->SetItem( info );
5271 return true;
5272 }
5273
5274 wxRect wxGenericListCtrl::GetViewRect() const
5275 {
5276 return m_mainWin->GetViewRect();
5277 }
5278
5279 bool wxGenericListCtrl::GetItemRect(long item, wxRect& rect, int code) const
5280 {
5281 return GetSubItemRect(item, wxLIST_GETSUBITEMRECT_WHOLEITEM, rect, code);
5282 }
5283
5284 bool wxGenericListCtrl::GetSubItemRect(long item,
5285 long subItem,
5286 wxRect& rect,
5287 int WXUNUSED(code)) const
5288 {
5289 if ( !m_mainWin->GetSubItemRect( item, subItem, rect ) )
5290 return false;
5291
5292 if ( m_mainWin->HasHeader() )
5293 rect.y += m_headerHeight + 1;
5294
5295 return true;
5296 }
5297
5298 bool wxGenericListCtrl::GetItemPosition( long item, wxPoint& pos ) const
5299 {
5300 m_mainWin->GetItemPosition( item, pos );
5301 return true;
5302 }
5303
5304 bool wxGenericListCtrl::SetItemPosition( long WXUNUSED(item), const wxPoint& WXUNUSED(pos) )
5305 {
5306 return false;
5307 }
5308
5309 int wxGenericListCtrl::GetItemCount() const
5310 {
5311 return m_mainWin->GetItemCount();
5312 }
5313
5314 int wxGenericListCtrl::GetColumnCount() const
5315 {
5316 return m_mainWin->GetColumnCount();
5317 }
5318
5319 void wxGenericListCtrl::SetItemSpacing( int spacing, bool isSmall )
5320 {
5321 m_mainWin->SetItemSpacing( spacing, isSmall );
5322 }
5323
5324 wxSize wxGenericListCtrl::GetItemSpacing() const
5325 {
5326 const int spacing = m_mainWin->GetItemSpacing(HasFlag(wxLC_SMALL_ICON));
5327
5328 return wxSize(spacing, spacing);
5329 }
5330
5331 #if WXWIN_COMPATIBILITY_2_6
5332 int wxGenericListCtrl::GetItemSpacing( bool isSmall ) const
5333 {
5334 return m_mainWin->GetItemSpacing( isSmall );
5335 }
5336 #endif // WXWIN_COMPATIBILITY_2_6
5337
5338 void wxGenericListCtrl::SetItemTextColour( long item, const wxColour &col )
5339 {
5340 wxListItem info;
5341 info.m_itemId = item;
5342 info.SetTextColour( col );
5343 m_mainWin->SetItem( info );
5344 }
5345
5346 wxColour wxGenericListCtrl::GetItemTextColour( long item ) const
5347 {
5348 wxListItem info;
5349 info.m_itemId = item;
5350 m_mainWin->GetItem( info );
5351 return info.GetTextColour();
5352 }
5353
5354 void wxGenericListCtrl::SetItemBackgroundColour( long item, const wxColour &col )
5355 {
5356 wxListItem info;
5357 info.m_itemId = item;
5358 info.SetBackgroundColour( col );
5359 m_mainWin->SetItem( info );
5360 }
5361
5362 wxColour wxGenericListCtrl::GetItemBackgroundColour( long item ) const
5363 {
5364 wxListItem info;
5365 info.m_itemId = item;
5366 m_mainWin->GetItem( info );
5367 return info.GetBackgroundColour();
5368 }
5369
5370 int wxGenericListCtrl::GetScrollPos( int orient ) const
5371 {
5372 return m_mainWin->GetScrollPos( orient );
5373 }
5374
5375 void wxGenericListCtrl::SetScrollPos( int orient, int pos, bool refresh )
5376 {
5377 m_mainWin->SetScrollPos( orient, pos, refresh );
5378 }
5379
5380 void wxGenericListCtrl::SetItemFont( long item, const wxFont &f )
5381 {
5382 wxListItem info;
5383 info.m_itemId = item;
5384 info.SetFont( f );
5385 m_mainWin->SetItem( info );
5386 }
5387
5388 wxFont wxGenericListCtrl::GetItemFont( long item ) const
5389 {
5390 wxListItem info;
5391 info.m_itemId = item;
5392 m_mainWin->GetItem( info );
5393 return info.GetFont();
5394 }
5395
5396 int wxGenericListCtrl::GetSelectedItemCount() const
5397 {
5398 return m_mainWin->GetSelectedItemCount();
5399 }
5400
5401 wxColour wxGenericListCtrl::GetTextColour() const
5402 {
5403 return GetForegroundColour();
5404 }
5405
5406 void wxGenericListCtrl::SetTextColour(const wxColour& col)
5407 {
5408 SetForegroundColour(col);
5409 }
5410
5411 long wxGenericListCtrl::GetTopItem() const
5412 {
5413 size_t top;
5414 m_mainWin->GetVisibleLinesRange(&top, NULL);
5415 return (long)top;
5416 }
5417
5418 long wxGenericListCtrl::GetNextItem( long item, int geom, int state ) const
5419 {
5420 return m_mainWin->GetNextItem( item, geom, state );
5421 }
5422
5423 wxImageList *wxGenericListCtrl::GetImageList(int which) const
5424 {
5425 if (which == wxIMAGE_LIST_NORMAL)
5426 return m_imageListNormal;
5427 else if (which == wxIMAGE_LIST_SMALL)
5428 return m_imageListSmall;
5429 else if (which == wxIMAGE_LIST_STATE)
5430 return m_imageListState;
5431
5432 return (wxImageList *) NULL;
5433 }
5434
5435 void wxGenericListCtrl::SetImageList( wxImageList *imageList, int which )
5436 {
5437 if ( which == wxIMAGE_LIST_NORMAL )
5438 {
5439 if (m_ownsImageListNormal)
5440 delete m_imageListNormal;
5441 m_imageListNormal = imageList;
5442 m_ownsImageListNormal = false;
5443 }
5444 else if ( which == wxIMAGE_LIST_SMALL )
5445 {
5446 if (m_ownsImageListSmall)
5447 delete m_imageListSmall;
5448 m_imageListSmall = imageList;
5449 m_ownsImageListSmall = false;
5450 }
5451 else if ( which == wxIMAGE_LIST_STATE )
5452 {
5453 if (m_ownsImageListState)
5454 delete m_imageListState;
5455 m_imageListState = imageList;
5456 m_ownsImageListState = false;
5457 }
5458
5459 m_mainWin->SetImageList( imageList, which );
5460 }
5461
5462 void wxGenericListCtrl::AssignImageList(wxImageList *imageList, int which)
5463 {
5464 SetImageList(imageList, which);
5465 if ( which == wxIMAGE_LIST_NORMAL )
5466 m_ownsImageListNormal = true;
5467 else if ( which == wxIMAGE_LIST_SMALL )
5468 m_ownsImageListSmall = true;
5469 else if ( which == wxIMAGE_LIST_STATE )
5470 m_ownsImageListState = true;
5471 }
5472
5473 bool wxGenericListCtrl::Arrange( int WXUNUSED(flag) )
5474 {
5475 return 0;
5476 }
5477
5478 bool wxGenericListCtrl::DeleteItem( long item )
5479 {
5480 m_mainWin->DeleteItem( item );
5481 return true;
5482 }
5483
5484 bool wxGenericListCtrl::DeleteAllItems()
5485 {
5486 m_mainWin->DeleteAllItems();
5487 return true;
5488 }
5489
5490 bool wxGenericListCtrl::DeleteAllColumns()
5491 {
5492 size_t count = m_mainWin->m_columns.GetCount();
5493 for ( size_t n = 0; n < count; n++ )
5494 DeleteColumn( 0 );
5495 return true;
5496 }
5497
5498 void wxGenericListCtrl::ClearAll()
5499 {
5500 m_mainWin->DeleteEverything();
5501 }
5502
5503 bool wxGenericListCtrl::DeleteColumn( int col )
5504 {
5505 m_mainWin->DeleteColumn( col );
5506
5507 // if we don't have the header any longer, we need to relayout the window
5508 if ( !GetColumnCount() )
5509 ResizeReportView(false /* no header */);
5510 return true;
5511 }
5512
5513 wxTextCtrl *wxGenericListCtrl::EditLabel(long item,
5514 wxClassInfo* textControlClass)
5515 {
5516 return m_mainWin->EditLabel( item, textControlClass );
5517 }
5518
5519 wxTextCtrl *wxGenericListCtrl::GetEditControl() const
5520 {
5521 return m_mainWin->GetEditControl();
5522 }
5523
5524 bool wxGenericListCtrl::EnsureVisible( long item )
5525 {
5526 m_mainWin->EnsureVisible( item );
5527 return true;
5528 }
5529
5530 long wxGenericListCtrl::FindItem( long start, const wxString& str, bool partial )
5531 {
5532 return m_mainWin->FindItem( start, str, partial );
5533 }
5534
5535 long wxGenericListCtrl::FindItem( long start, wxUIntPtr data )
5536 {
5537 return m_mainWin->FindItem( start, data );
5538 }
5539
5540 long wxGenericListCtrl::FindItem( long WXUNUSED(start), const wxPoint& pt,
5541 int WXUNUSED(direction))
5542 {
5543 return m_mainWin->FindItem( pt );
5544 }
5545
5546 // TODO: sub item hit testing
5547 long wxGenericListCtrl::HitTest(const wxPoint& point, int& flags, long *) const
5548 {
5549 return m_mainWin->HitTest( (int)point.x, (int)point.y, flags );
5550 }
5551
5552 long wxGenericListCtrl::InsertItem( wxListItem& info )
5553 {
5554 m_mainWin->InsertItem( info );
5555 return info.m_itemId;
5556 }
5557
5558 long wxGenericListCtrl::InsertItem( long index, const wxString &label )
5559 {
5560 wxListItem info;
5561 info.m_text = label;
5562 info.m_mask = wxLIST_MASK_TEXT;
5563 info.m_itemId = index;
5564 return InsertItem( info );
5565 }
5566
5567 long wxGenericListCtrl::InsertItem( long index, int imageIndex )
5568 {
5569 wxListItem info;
5570 info.m_mask = wxLIST_MASK_IMAGE;
5571 info.m_image = imageIndex;
5572 info.m_itemId = index;
5573 return InsertItem( info );
5574 }
5575
5576 long wxGenericListCtrl::InsertItem( long index, const wxString &label, int imageIndex )
5577 {
5578 wxListItem info;
5579 info.m_text = label;
5580 info.m_image = imageIndex;
5581 info.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE;
5582 info.m_itemId = index;
5583 return InsertItem( info );
5584 }
5585
5586 long wxGenericListCtrl::InsertColumn( long col, wxListItem &item )
5587 {
5588 wxCHECK_MSG( m_headerWin, -1, _T("can't add column in non report mode") );
5589
5590 m_mainWin->InsertColumn( col, item );
5591
5592 // if we hadn't had a header before but have one now
5593 // then we need to relayout the window
5594 if ( GetColumnCount() == 1 && m_mainWin->HasHeader() )
5595 ResizeReportView(true /* have header */);
5596
5597 m_headerWin->Refresh();
5598
5599 return 0;
5600 }
5601
5602 long wxGenericListCtrl::InsertColumn( long col, const wxString &heading,
5603 int format, int width )
5604 {
5605 wxListItem item;
5606 item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT;
5607 item.m_text = heading;
5608 if (width >= -2)
5609 {
5610 item.m_mask |= wxLIST_MASK_WIDTH;
5611 item.m_width = width;
5612 }
5613
5614 item.m_format = format;
5615
5616 return InsertColumn( col, item );
5617 }
5618
5619 bool wxGenericListCtrl::ScrollList( int dx, int dy )
5620 {
5621 return m_mainWin->ScrollList(dx, dy);
5622 }
5623
5624 // Sort items.
5625 // fn is a function which takes 3 long arguments: item1, item2, data.
5626 // item1 is the long data associated with a first item (NOT the index).
5627 // item2 is the long data associated with a second item (NOT the index).
5628 // data is the same value as passed to SortItems.
5629 // The return value is a negative number if the first item should precede the second
5630 // item, a positive number of the second item should precede the first,
5631 // or zero if the two items are equivalent.
5632 // data is arbitrary data to be passed to the sort function.
5633
5634 bool wxGenericListCtrl::SortItems( wxListCtrlCompare fn, long data )
5635 {
5636 m_mainWin->SortItems( fn, data );
5637 return true;
5638 }
5639
5640 // ----------------------------------------------------------------------------
5641 // event handlers
5642 // ----------------------------------------------------------------------------
5643
5644 void wxGenericListCtrl::OnSize(wxSizeEvent& WXUNUSED(event))
5645 {
5646 if ( !m_mainWin )
5647 return;
5648
5649 ResizeReportView(m_mainWin->HasHeader());
5650 m_mainWin->RecalculatePositions();
5651 }
5652
5653 void wxGenericListCtrl::ResizeReportView(bool showHeader)
5654 {
5655 int cw, ch;
5656 GetClientSize( &cw, &ch );
5657
5658 if ( showHeader )
5659 {
5660 m_headerWin->SetSize( 0, 0, cw, m_headerHeight );
5661 if(ch > m_headerHeight)
5662 m_mainWin->SetSize( 0, m_headerHeight + 1,
5663 cw, ch - m_headerHeight - 1 );
5664 else
5665 m_mainWin->SetSize( 0, m_headerHeight + 1,
5666 cw, 0);
5667 }
5668 else // no header window
5669 {
5670 m_mainWin->SetSize( 0, 0, cw, ch );
5671 }
5672 }
5673
5674 void wxGenericListCtrl::OnInternalIdle()
5675 {
5676 wxWindow::OnInternalIdle();
5677
5678 // do it only if needed
5679 if ( !m_mainWin->m_dirty )
5680 return;
5681
5682 m_mainWin->RecalculatePositions();
5683 }
5684
5685 // ----------------------------------------------------------------------------
5686 // font/colours
5687 // ----------------------------------------------------------------------------
5688
5689 bool wxGenericListCtrl::SetBackgroundColour( const wxColour &colour )
5690 {
5691 if (m_mainWin)
5692 {
5693 m_mainWin->SetBackgroundColour( colour );
5694 m_mainWin->m_dirty = true;
5695 }
5696
5697 return true;
5698 }
5699
5700 bool wxGenericListCtrl::SetForegroundColour( const wxColour &colour )
5701 {
5702 if ( !wxWindow::SetForegroundColour( colour ) )
5703 return false;
5704
5705 if (m_mainWin)
5706 {
5707 m_mainWin->SetForegroundColour( colour );
5708 m_mainWin->m_dirty = true;
5709 }
5710
5711 if (m_headerWin)
5712 m_headerWin->SetForegroundColour( colour );
5713
5714 return true;
5715 }
5716
5717 bool wxGenericListCtrl::SetFont( const wxFont &font )
5718 {
5719 if ( !wxWindow::SetFont( font ) )
5720 return false;
5721
5722 if (m_mainWin)
5723 {
5724 m_mainWin->SetFont( font );
5725 m_mainWin->m_dirty = true;
5726 }
5727
5728 if (m_headerWin)
5729 {
5730 m_headerWin->SetFont( font );
5731 CalculateAndSetHeaderHeight();
5732 }
5733
5734 Refresh();
5735
5736 return true;
5737 }
5738
5739 // static
5740 wxVisualAttributes
5741 wxGenericListCtrl::GetClassDefaultAttributes(wxWindowVariant variant)
5742 {
5743 #if _USE_VISATTR
5744 // Use the same color scheme as wxListBox
5745 return wxListBox::GetClassDefaultAttributes(variant);
5746 #else
5747 wxUnusedVar(variant);
5748 wxVisualAttributes attr;
5749 attr.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT);
5750 attr.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX);
5751 attr.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
5752 return attr;
5753 #endif
5754 }
5755
5756 // ----------------------------------------------------------------------------
5757 // methods forwarded to m_mainWin
5758 // ----------------------------------------------------------------------------
5759
5760 #if wxUSE_DRAG_AND_DROP
5761
5762 void wxGenericListCtrl::SetDropTarget( wxDropTarget *dropTarget )
5763 {
5764 m_mainWin->SetDropTarget( dropTarget );
5765 }
5766
5767 wxDropTarget *wxGenericListCtrl::GetDropTarget() const
5768 {
5769 return m_mainWin->GetDropTarget();
5770 }
5771
5772 #endif
5773
5774 bool wxGenericListCtrl::SetCursor( const wxCursor &cursor )
5775 {
5776 return m_mainWin ? m_mainWin->wxWindow::SetCursor(cursor) : false;
5777 }
5778
5779 wxColour wxGenericListCtrl::GetBackgroundColour() const
5780 {
5781 return m_mainWin ? m_mainWin->GetBackgroundColour() : wxColour();
5782 }
5783
5784 wxColour wxGenericListCtrl::GetForegroundColour() const
5785 {
5786 return m_mainWin ? m_mainWin->GetForegroundColour() : wxColour();
5787 }
5788
5789 bool wxGenericListCtrl::DoPopupMenu( wxMenu *menu, int x, int y )
5790 {
5791 #if wxUSE_MENUS
5792 return m_mainWin->PopupMenu( menu, x, y );
5793 #else
5794 return false;
5795 #endif
5796 }
5797
5798 void wxGenericListCtrl::DoClientToScreen( int *x, int *y ) const
5799 {
5800 m_mainWin->DoClientToScreen(x, y);
5801 }
5802
5803 void wxGenericListCtrl::DoScreenToClient( int *x, int *y ) const
5804 {
5805 m_mainWin->DoScreenToClient(x, y);
5806 }
5807
5808 void wxGenericListCtrl::SetFocus()
5809 {
5810 // The test in window.cpp fails as we are a composite
5811 // window, so it checks against "this", but not m_mainWin.
5812 if ( DoFindFocus() != this )
5813 m_mainWin->SetFocus();
5814 }
5815
5816 wxSize wxGenericListCtrl::DoGetBestSize() const
5817 {
5818 // Something is better than nothing...
5819 // 100x80 is what the MSW version will get from the default
5820 // wxControl::DoGetBestSize
5821 return wxSize(100, 80);
5822 }
5823
5824 // ----------------------------------------------------------------------------
5825 // virtual list control support
5826 // ----------------------------------------------------------------------------
5827
5828 wxString wxGenericListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const
5829 {
5830 // this is a pure virtual function, in fact - which is not really pure
5831 // because the controls which are not virtual don't need to implement it
5832 wxFAIL_MSG( _T("wxGenericListCtrl::OnGetItemText not supposed to be called") );
5833
5834 return wxEmptyString;
5835 }
5836
5837 int wxGenericListCtrl::OnGetItemImage(long WXUNUSED(item)) const
5838 {
5839 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL),
5840 -1,
5841 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
5842 return -1;
5843 }
5844
5845 int wxGenericListCtrl::OnGetItemColumnImage(long item, long column) const
5846 {
5847 if (!column)
5848 return OnGetItemImage(item);
5849
5850 return -1;
5851 }
5852
5853 wxListItemAttr *
5854 wxGenericListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const
5855 {
5856 wxASSERT_MSG( item >= 0 && item < GetItemCount(),
5857 _T("invalid item index in OnGetItemAttr()") );
5858
5859 // no attributes by default
5860 return NULL;
5861 }
5862
5863 void wxGenericListCtrl::SetItemCount(long count)
5864 {
5865 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
5866
5867 m_mainWin->SetItemCount(count);
5868 }
5869
5870 void wxGenericListCtrl::RefreshItem(long item)
5871 {
5872 m_mainWin->RefreshLine(item);
5873 }
5874
5875 void wxGenericListCtrl::RefreshItems(long itemFrom, long itemTo)
5876 {
5877 m_mainWin->RefreshLines(itemFrom, itemTo);
5878 }
5879
5880 // Generic wxListCtrl is more or less a container for two other
5881 // windows which drawings are done upon. These are namely
5882 // 'm_headerWin' and 'm_mainWin'.
5883 // Here we override 'virtual wxWindow::Refresh()' to mimic the
5884 // behaviour wxListCtrl has under wxMSW.
5885 //
5886 void wxGenericListCtrl::Refresh(bool eraseBackground, const wxRect *rect)
5887 {
5888 if (!rect)
5889 {
5890 // The easy case, no rectangle specified.
5891 if (m_headerWin)
5892 m_headerWin->Refresh(eraseBackground);
5893
5894 if (m_mainWin)
5895 m_mainWin->Refresh(eraseBackground);
5896 }
5897 else
5898 {
5899 // Refresh the header window
5900 if (m_headerWin)
5901 {
5902 wxRect rectHeader = m_headerWin->GetRect();
5903 rectHeader.Intersect(*rect);
5904 if (rectHeader.GetWidth() && rectHeader.GetHeight())
5905 {
5906 int x, y;
5907 m_headerWin->GetPosition(&x, &y);
5908 rectHeader.Offset(-x, -y);
5909 m_headerWin->Refresh(eraseBackground, &rectHeader);
5910 }
5911 }
5912
5913 // Refresh the main window
5914 if (m_mainWin)
5915 {
5916 wxRect rectMain = m_mainWin->GetRect();
5917 rectMain.Intersect(*rect);
5918 if (rectMain.GetWidth() && rectMain.GetHeight())
5919 {
5920 int x, y;
5921 m_mainWin->GetPosition(&x, &y);
5922 rectMain.Offset(-x, -y);
5923 m_mainWin->Refresh(eraseBackground, &rectMain);
5924 }
5925 }
5926 }
5927 }
5928
5929 #endif // wxUSE_LISTCTRL