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