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