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