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