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