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