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