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