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