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