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