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