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