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