]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: listctrl.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
0208334d RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
bd8289c1 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
510fc784 RR |
11 | #pragma implementation "listctrl.h" |
12 | #pragma implementation "listctrlbase.h" | |
c801d85f KB |
13 | #endif |
14 | ||
1e6d9499 JS |
15 | // For compilers that support precompilation, includes "wx.h". |
16 | #include "wx/wxprec.h" | |
17 | ||
18 | #ifdef __BORLANDC__ | |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
0208334d RR |
22 | #include "wx/dcscreen.h" |
23 | #include "wx/app.h" | |
02527779 | 24 | #include "wx/listctrl.h" |
f60d0f94 | 25 | #include "wx/generic/imaglist.h" |
f6bcfd97 | 26 | #include "wx/dynarray.h" |
c801d85f | 27 | |
7c74e7fe | 28 | #ifndef wxUSE_GENERIC_LIST_EXTENSIONS |
d6d26e04 | 29 | #define wxUSE_GENERIC_LIST_EXTENSIONS 1 |
7c74e7fe SC |
30 | #endif |
31 | ||
efbb7287 VZ |
32 | // ============================================================================ |
33 | // private classes | |
34 | // ============================================================================ | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // wxListItemData (internal) | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
40 | class WXDLLEXPORT wxListItemData : public wxObject | |
41 | { | |
42 | public: | |
43 | wxString m_text; | |
44 | int m_image; | |
45 | long m_data; | |
46 | int m_xpos,m_ypos; | |
47 | int m_width,m_height; | |
48 | ||
49 | wxListItemAttr *m_attr; | |
50 | ||
51 | public: | |
52 | wxListItemData(); | |
53 | ~wxListItemData() { delete m_attr; } | |
54 | ||
55 | wxListItemData( const wxListItem &info ); | |
56 | void SetItem( const wxListItem &info ); | |
57 | void SetText( const wxString &s ); | |
58 | void SetImage( int image ); | |
59 | void SetData( long data ); | |
60 | void SetPosition( int x, int y ); | |
61 | void SetSize( int width, int height ); | |
62 | bool HasImage() const; | |
63 | bool HasText() const; | |
64 | bool IsHit( int x, int y ) const; | |
65 | void GetText( wxString &s ); | |
66 | const wxString& GetText() { return m_text; } | |
67 | int GetX( void ) const; | |
68 | int GetY( void ) const; | |
69 | int GetWidth() const; | |
70 | int GetHeight() const; | |
71 | int GetImage() const; | |
72 | void GetItem( wxListItem &info ) const; | |
73 | ||
74 | wxListItemAttr *GetAttributes() const { return m_attr; } | |
75 | ||
76 | private: | |
77 | DECLARE_DYNAMIC_CLASS(wxListItemData); | |
78 | }; | |
79 | ||
80 | //----------------------------------------------------------------------------- | |
81 | // wxListHeaderData (internal) | |
82 | //----------------------------------------------------------------------------- | |
83 | ||
84 | class WXDLLEXPORT wxListHeaderData : public wxObject | |
85 | { | |
86 | protected: | |
87 | long m_mask; | |
88 | int m_image; | |
89 | wxString m_text; | |
90 | int m_format; | |
91 | int m_width; | |
92 | int m_xpos,m_ypos; | |
93 | int m_height; | |
94 | ||
95 | public: | |
96 | wxListHeaderData(); | |
97 | wxListHeaderData( const wxListItem &info ); | |
98 | void SetItem( const wxListItem &item ); | |
99 | void SetPosition( int x, int y ); | |
100 | void SetWidth( int w ); | |
101 | void SetFormat( int format ); | |
102 | void SetHeight( int h ); | |
103 | bool HasImage() const; | |
104 | bool HasText() const; | |
105 | bool IsHit( int x, int y ) const; | |
106 | void GetItem( wxListItem &item ); | |
107 | void GetText( wxString &s ); | |
108 | int GetImage() const; | |
109 | int GetWidth() const; | |
110 | int GetFormat() const; | |
f6bcfd97 | 111 | |
efbb7287 VZ |
112 | private: |
113 | DECLARE_DYNAMIC_CLASS(wxListHeaderData); | |
114 | }; | |
115 | ||
116 | //----------------------------------------------------------------------------- | |
117 | // wxListLineData (internal) | |
118 | //----------------------------------------------------------------------------- | |
119 | ||
120 | class WXDLLEXPORT wxListLineData : public wxObject | |
121 | { | |
122 | public: | |
123 | wxList m_items; | |
124 | wxRect m_bound_all; | |
125 | wxRect m_bound_label; | |
126 | wxRect m_bound_icon; | |
127 | wxRect m_bound_hilight; | |
128 | int m_mode; | |
129 | bool m_hilighted; | |
130 | wxBrush *m_hilightBrush; | |
131 | int m_spacing; | |
132 | wxListMainWindow *m_owner; | |
133 | ||
134 | void DoDraw( wxDC *dc, bool hilight, bool paintBG ); | |
135 | ||
136 | public: | |
137 | wxListLineData() {} | |
138 | wxListLineData( wxListMainWindow *owner, int mode, wxBrush *hilightBrush ); | |
139 | void CalculateSize( wxDC *dc, int spacing ); | |
140 | void SetPosition( wxDC *dc, int x, int y, int window_width ); | |
141 | void SetColumnPosition( int index, int x ); | |
142 | void GetSize( int &width, int &height ); | |
143 | void GetExtent( int &x, int &y, int &width, int &height ); | |
144 | void GetLabelExtent( int &x, int &y, int &width, int &height ); | |
145 | long IsHit( int x, int y ); | |
146 | void InitItems( int num ); | |
147 | void SetItem( int index, const wxListItem &info ); | |
148 | void GetItem( int index, wxListItem &info ); | |
149 | void GetText( int index, wxString &s ); | |
150 | void SetText( int index, const wxString s ); | |
151 | int GetImage( int index ); | |
152 | void GetRect( wxRect &rect ); | |
153 | void Hilight( bool on ); | |
154 | void ReverseHilight(); | |
155 | void DrawRubberBand( wxDC *dc, bool on ); | |
156 | void Draw( wxDC *dc ); | |
157 | bool IsInRect( int x, int y, const wxRect &rect ); | |
158 | bool IsHilighted(); | |
159 | void AssignRect( wxRect &dest, int x, int y, int width, int height ); | |
160 | void AssignRect( wxRect &dest, const wxRect &source ); | |
f6bcfd97 | 161 | |
efbb7287 VZ |
162 | private: |
163 | void SetAttributes(wxDC *dc, | |
164 | const wxListItemAttr *attr, | |
165 | const wxColour& colText, const wxFont& font, | |
166 | bool hilight); | |
167 | ||
168 | DECLARE_DYNAMIC_CLASS(wxListLineData); | |
169 | }; | |
170 | ||
f6bcfd97 BP |
171 | |
172 | WX_DECLARE_EXPORTED_OBJARRAY(wxListLineData, wxListLineDataArray); | |
173 | #include "wx/arrimpl.cpp" | |
174 | WX_DEFINE_OBJARRAY(wxListLineDataArray); | |
175 | ||
efbb7287 VZ |
176 | //----------------------------------------------------------------------------- |
177 | // wxListHeaderWindow (internal) | |
178 | //----------------------------------------------------------------------------- | |
179 | ||
180 | class WXDLLEXPORT wxListHeaderWindow : public wxWindow | |
181 | { | |
182 | protected: | |
183 | wxListMainWindow *m_owner; | |
184 | wxCursor *m_currentCursor; | |
185 | wxCursor *m_resizeCursor; | |
186 | bool m_isDragging; | |
f6bcfd97 BP |
187 | |
188 | // column being resized | |
189 | int m_column; | |
190 | ||
191 | // divider line position in logical (unscrolled) coords | |
192 | int m_currentX; | |
193 | ||
194 | // minimal position beyond which the divider line can't be dragged in | |
195 | // logical coords | |
196 | int m_minX; | |
efbb7287 VZ |
197 | |
198 | public: | |
199 | wxListHeaderWindow(); | |
f6bcfd97 BP |
200 | virtual ~wxListHeaderWindow(); |
201 | ||
202 | wxListHeaderWindow( wxWindow *win, | |
203 | wxWindowID id, | |
204 | wxListMainWindow *owner, | |
205 | const wxPoint &pos = wxDefaultPosition, | |
206 | const wxSize &size = wxDefaultSize, | |
207 | long style = 0, | |
208 | const wxString &name = "wxlistctrlcolumntitles" ); | |
209 | ||
efbb7287 | 210 | void DoDrawRect( wxDC *dc, int x, int y, int w, int h ); |
efbb7287 | 211 | void DrawCurrent(); |
f6bcfd97 BP |
212 | void AdjustDC(wxDC& dc); |
213 | ||
214 | void OnPaint( wxPaintEvent &event ); | |
efbb7287 VZ |
215 | void OnMouse( wxMouseEvent &event ); |
216 | void OnSetFocus( wxFocusEvent &event ); | |
217 | ||
f6bcfd97 BP |
218 | // needs refresh |
219 | bool m_dirty; | |
220 | ||
efbb7287 VZ |
221 | private: |
222 | DECLARE_DYNAMIC_CLASS(wxListHeaderWindow) | |
223 | DECLARE_EVENT_TABLE() | |
224 | }; | |
225 | ||
226 | //----------------------------------------------------------------------------- | |
227 | // wxListRenameTimer (internal) | |
228 | //----------------------------------------------------------------------------- | |
229 | ||
230 | class WXDLLEXPORT wxListRenameTimer: public wxTimer | |
231 | { | |
232 | private: | |
233 | wxListMainWindow *m_owner; | |
234 | ||
235 | public: | |
236 | wxListRenameTimer( wxListMainWindow *owner ); | |
237 | void Notify(); | |
238 | }; | |
239 | ||
240 | //----------------------------------------------------------------------------- | |
241 | // wxListTextCtrl (internal) | |
242 | //----------------------------------------------------------------------------- | |
243 | ||
244 | class WXDLLEXPORT wxListTextCtrl: public wxTextCtrl | |
245 | { | |
246 | private: | |
247 | bool *m_accept; | |
248 | wxString *m_res; | |
249 | wxListMainWindow *m_owner; | |
250 | wxString m_startValue; | |
251 | ||
252 | public: | |
253 | wxListTextCtrl() {} | |
254 | wxListTextCtrl( wxWindow *parent, const wxWindowID id, | |
255 | bool *accept, wxString *res, wxListMainWindow *owner, | |
256 | const wxString &value = "", | |
257 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
258 | int style = 0, | |
259 | const wxValidator& validator = wxDefaultValidator, | |
809934d2 | 260 | const wxString &name = "listctrltextctrl" ); |
efbb7287 VZ |
261 | void OnChar( wxKeyEvent &event ); |
262 | void OnKillFocus( wxFocusEvent &event ); | |
263 | ||
264 | private: | |
265 | DECLARE_DYNAMIC_CLASS(wxListTextCtrl); | |
266 | DECLARE_EVENT_TABLE() | |
267 | }; | |
268 | ||
269 | //----------------------------------------------------------------------------- | |
270 | // wxListMainWindow (internal) | |
271 | //----------------------------------------------------------------------------- | |
272 | ||
273 | class WXDLLEXPORT wxListMainWindow: public wxScrolledWindow | |
274 | { | |
275 | public: | |
276 | long m_mode; | |
f6bcfd97 | 277 | wxListLineDataArray m_lines; |
efbb7287 VZ |
278 | wxList m_columns; |
279 | wxListLineData *m_current; | |
280 | wxListLineData *m_currentEdit; | |
281 | int m_visibleLines; | |
282 | wxBrush *m_hilightBrush; | |
283 | wxColour *m_hilightColour; | |
284 | int m_xScroll,m_yScroll; | |
285 | bool m_dirty; | |
286 | wxImageList *m_small_image_list; | |
287 | wxImageList *m_normal_image_list; | |
288 | int m_small_spacing; | |
289 | int m_normal_spacing; | |
290 | bool m_hasFocus; | |
291 | bool m_usedKeys; | |
292 | bool m_lastOnSame; | |
293 | wxTimer *m_renameTimer; | |
294 | bool m_renameAccept; | |
295 | wxString m_renameRes; | |
296 | bool m_isCreated; | |
297 | int m_dragCount; | |
298 | wxPoint m_dragStart; | |
299 | ||
300 | // for double click logic | |
301 | wxListLineData *m_lineLastClicked, | |
302 | *m_lineBeforeLastClicked; | |
303 | ||
304 | public: | |
305 | wxListMainWindow(); | |
306 | wxListMainWindow( wxWindow *parent, wxWindowID id, | |
307 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
809934d2 | 308 | long style = 0, const wxString &name = "listctrlmainwindow" ); |
efbb7287 VZ |
309 | ~wxListMainWindow(); |
310 | void RefreshLine( wxListLineData *line ); | |
311 | void OnPaint( wxPaintEvent &event ); | |
312 | void HilightAll( bool on ); | |
313 | void SendNotify( wxListLineData *line, wxEventType command ); | |
314 | void FocusLine( wxListLineData *line ); | |
315 | void UnfocusLine( wxListLineData *line ); | |
316 | void SelectLine( wxListLineData *line ); | |
317 | void DeselectLine( wxListLineData *line ); | |
318 | void DeleteLine( wxListLineData *line ); | |
319 | ||
320 | void EditLabel( long item ); | |
321 | void Edit( long item ) { EditLabel(item); } // deprecated | |
322 | void OnRenameTimer(); | |
323 | void OnRenameAccept(); | |
324 | ||
325 | void OnMouse( wxMouseEvent &event ); | |
326 | void MoveToFocus(); | |
327 | void OnArrowChar( wxListLineData *newCurrent, bool shiftDown ); | |
328 | void OnChar( wxKeyEvent &event ); | |
329 | void OnKeyDown( wxKeyEvent &event ); | |
330 | void OnSetFocus( wxFocusEvent &event ); | |
331 | void OnKillFocus( wxFocusEvent &event ); | |
332 | void OnSize( wxSizeEvent &event ); | |
333 | void OnScroll(wxScrollWinEvent& event) ; | |
f6bcfd97 | 334 | |
efbb7287 VZ |
335 | void DrawImage( int index, wxDC *dc, int x, int y ); |
336 | void GetImageSize( int index, int &width, int &height ); | |
337 | int GetIndexOfLine( const wxListLineData *line ); | |
338 | int GetTextLength( wxString &s ); // should be const | |
339 | ||
340 | void SetImageList( wxImageList *imageList, int which ); | |
341 | void SetItemSpacing( int spacing, bool isSmall = FALSE ); | |
342 | int GetItemSpacing( bool isSmall = FALSE ); | |
343 | void SetColumn( int col, wxListItem &item ); | |
344 | void SetColumnWidth( int col, int width ); | |
345 | void GetColumn( int col, wxListItem &item ); | |
346 | int GetColumnWidth( int vol ); | |
347 | int GetColumnCount(); | |
348 | int GetCountPerPage(); | |
349 | void SetItem( wxListItem &item ); | |
350 | void GetItem( wxListItem &item ); | |
351 | void SetItemState( long item, long state, long stateMask ); | |
352 | int GetItemState( long item, long stateMask ); | |
353 | int GetItemCount(); | |
354 | void GetItemRect( long index, wxRect &rect ); | |
355 | bool GetItemPosition( long item, wxPoint& pos ); | |
356 | int GetSelectedItemCount(); | |
357 | void SetMode( long mode ); | |
358 | long GetMode() const; | |
359 | void CalculatePositions(); | |
360 | void RealizeChanges(); | |
361 | long GetNextItem( long item, int geometry, int state ); | |
362 | void DeleteItem( long index ); | |
363 | void DeleteAllItems(); | |
364 | void DeleteColumn( int col ); | |
365 | void DeleteEverything(); | |
366 | void EnsureVisible( long index ); | |
367 | long FindItem( long start, const wxString& str, bool partial = FALSE ); | |
368 | long FindItem( long start, long data); | |
369 | long HitTest( int x, int y, int &flags ); | |
370 | void InsertItem( wxListItem &item ); | |
371 | // void AddItem( wxListItem &item ); | |
372 | void InsertColumn( long col, wxListItem &item ); | |
373 | // void AddColumn( wxListItem &item ); | |
374 | void SortItems( wxListCtrlCompare fn, long data ); | |
375 | ||
376 | private: | |
377 | DECLARE_DYNAMIC_CLASS(wxListMainWindow); | |
378 | DECLARE_EVENT_TABLE() | |
379 | }; | |
380 | ||
381 | // ============================================================================ | |
382 | // implementation | |
383 | // ============================================================================ | |
384 | ||
c801d85f KB |
385 | //----------------------------------------------------------------------------- |
386 | // wxListItemData | |
387 | //----------------------------------------------------------------------------- | |
388 | ||
389 | IMPLEMENT_DYNAMIC_CLASS(wxListItemData,wxObject); | |
390 | ||
fd9811b1 | 391 | wxListItemData::wxListItemData() |
c801d85f | 392 | { |
92976ab6 RR |
393 | m_image = -1; |
394 | m_data = 0; | |
395 | m_xpos = 0; | |
396 | m_ypos = 0; | |
397 | m_width = 0; | |
398 | m_height = 0; | |
0530737d | 399 | m_attr = NULL; |
e1e955e1 | 400 | } |
c801d85f KB |
401 | |
402 | wxListItemData::wxListItemData( const wxListItem &info ) | |
403 | { | |
92976ab6 RR |
404 | m_image = -1; |
405 | m_data = 0; | |
0530737d VZ |
406 | m_attr = NULL; |
407 | ||
92976ab6 | 408 | SetItem( info ); |
e1e955e1 | 409 | } |
c801d85f KB |
410 | |
411 | void wxListItemData::SetItem( const wxListItem &info ) | |
412 | { | |
92976ab6 RR |
413 | if (info.m_mask & wxLIST_MASK_TEXT) m_text = info.m_text; |
414 | if (info.m_mask & wxLIST_MASK_IMAGE) m_image = info.m_image; | |
415 | if (info.m_mask & wxLIST_MASK_DATA) m_data = info.m_data; | |
0530737d VZ |
416 | |
417 | if ( info.HasAttributes() ) | |
418 | { | |
419 | if ( m_attr ) | |
420 | *m_attr = *info.GetAttributes(); | |
421 | else | |
422 | m_attr = new wxListItemAttr(*info.GetAttributes()); | |
423 | } | |
424 | ||
92976ab6 RR |
425 | m_xpos = 0; |
426 | m_ypos = 0; | |
427 | m_width = info.m_width; | |
428 | m_height = 0; | |
e1e955e1 | 429 | } |
c801d85f KB |
430 | |
431 | void wxListItemData::SetText( const wxString &s ) | |
432 | { | |
92976ab6 | 433 | m_text = s; |
e1e955e1 | 434 | } |
c801d85f | 435 | |
debe6624 | 436 | void wxListItemData::SetImage( int image ) |
c801d85f | 437 | { |
92976ab6 | 438 | m_image = image; |
e1e955e1 | 439 | } |
c801d85f | 440 | |
debe6624 | 441 | void wxListItemData::SetData( long data ) |
c801d85f | 442 | { |
92976ab6 | 443 | m_data = data; |
e1e955e1 | 444 | } |
c801d85f | 445 | |
debe6624 | 446 | void wxListItemData::SetPosition( int x, int y ) |
c801d85f | 447 | { |
92976ab6 RR |
448 | m_xpos = x; |
449 | m_ypos = y; | |
e1e955e1 | 450 | } |
c801d85f | 451 | |
1e6d9499 | 452 | void wxListItemData::SetSize( int width, int height ) |
c801d85f | 453 | { |
92976ab6 RR |
454 | if (width != -1) m_width = width; |
455 | if (height != -1) m_height = height; | |
e1e955e1 | 456 | } |
c801d85f | 457 | |
fd9811b1 | 458 | bool wxListItemData::HasImage() const |
c801d85f | 459 | { |
92976ab6 | 460 | return (m_image >= 0); |
e1e955e1 | 461 | } |
c801d85f | 462 | |
fd9811b1 | 463 | bool wxListItemData::HasText() const |
c801d85f | 464 | { |
92976ab6 | 465 | return (!m_text.IsNull()); |
e1e955e1 | 466 | } |
c801d85f | 467 | |
debe6624 | 468 | bool wxListItemData::IsHit( int x, int y ) const |
c801d85f | 469 | { |
92976ab6 | 470 | return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height)); |
e1e955e1 | 471 | } |
c801d85f KB |
472 | |
473 | void wxListItemData::GetText( wxString &s ) | |
474 | { | |
92976ab6 | 475 | s = m_text; |
e1e955e1 | 476 | } |
c801d85f | 477 | |
fd9811b1 | 478 | int wxListItemData::GetX() const |
c801d85f | 479 | { |
92976ab6 | 480 | return m_xpos; |
e1e955e1 | 481 | } |
c801d85f | 482 | |
fd9811b1 | 483 | int wxListItemData::GetY() const |
c801d85f | 484 | { |
92976ab6 | 485 | return m_ypos; |
e1e955e1 | 486 | } |
c801d85f | 487 | |
fd9811b1 | 488 | int wxListItemData::GetWidth() const |
c801d85f | 489 | { |
92976ab6 | 490 | return m_width; |
e1e955e1 | 491 | } |
c801d85f | 492 | |
fd9811b1 | 493 | int wxListItemData::GetHeight() const |
c801d85f | 494 | { |
92976ab6 | 495 | return m_height; |
e1e955e1 | 496 | } |
c801d85f | 497 | |
fd9811b1 | 498 | int wxListItemData::GetImage() const |
c801d85f | 499 | { |
92976ab6 | 500 | return m_image; |
e1e955e1 | 501 | } |
c801d85f | 502 | |
0530737d | 503 | void wxListItemData::GetItem( wxListItem &info ) const |
c801d85f | 504 | { |
92976ab6 RR |
505 | info.m_text = m_text; |
506 | info.m_image = m_image; | |
507 | info.m_data = m_data; | |
c801d85f | 508 | |
0530737d VZ |
509 | if ( m_attr ) |
510 | { | |
511 | if ( m_attr->HasTextColour() ) | |
512 | info.SetTextColour(m_attr->GetTextColour()); | |
513 | if ( m_attr->HasBackgroundColour() ) | |
514 | info.SetBackgroundColour(m_attr->GetBackgroundColour()); | |
515 | if ( m_attr->HasFont() ) | |
516 | info.SetFont(m_attr->GetFont()); | |
517 | } | |
e1e955e1 | 518 | } |
c801d85f KB |
519 | |
520 | //----------------------------------------------------------------------------- | |
521 | // wxListHeaderData | |
522 | //----------------------------------------------------------------------------- | |
523 | ||
524 | IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData,wxObject); | |
525 | ||
fd9811b1 | 526 | wxListHeaderData::wxListHeaderData() |
c801d85f | 527 | { |
92976ab6 RR |
528 | m_mask = 0; |
529 | m_image = 0; | |
530 | m_format = 0; | |
531 | m_width = 0; | |
532 | m_xpos = 0; | |
533 | m_ypos = 0; | |
534 | m_height = 0; | |
e1e955e1 | 535 | } |
c801d85f KB |
536 | |
537 | wxListHeaderData::wxListHeaderData( const wxListItem &item ) | |
538 | { | |
92976ab6 RR |
539 | SetItem( item ); |
540 | m_xpos = 0; | |
541 | m_ypos = 0; | |
542 | m_height = 0; | |
e1e955e1 | 543 | } |
c801d85f KB |
544 | |
545 | void wxListHeaderData::SetItem( const wxListItem &item ) | |
546 | { | |
92976ab6 RR |
547 | m_mask = item.m_mask; |
548 | m_text = item.m_text; | |
549 | m_image = item.m_image; | |
550 | m_format = item.m_format; | |
551 | m_width = item.m_width; | |
552 | if (m_width < 0) m_width = 80; | |
553 | if (m_width < 6) m_width = 6; | |
e1e955e1 | 554 | } |
c801d85f | 555 | |
debe6624 | 556 | void wxListHeaderData::SetPosition( int x, int y ) |
c801d85f | 557 | { |
92976ab6 RR |
558 | m_xpos = x; |
559 | m_ypos = y; | |
e1e955e1 | 560 | } |
c801d85f | 561 | |
debe6624 | 562 | void wxListHeaderData::SetHeight( int h ) |
c801d85f | 563 | { |
92976ab6 | 564 | m_height = h; |
e1e955e1 | 565 | } |
c801d85f | 566 | |
debe6624 | 567 | void wxListHeaderData::SetWidth( int w ) |
c801d85f | 568 | { |
92976ab6 RR |
569 | m_width = w; |
570 | if (m_width < 0) m_width = 80; | |
571 | if (m_width < 6) m_width = 6; | |
e1e955e1 | 572 | } |
c801d85f | 573 | |
debe6624 | 574 | void wxListHeaderData::SetFormat( int format ) |
c801d85f | 575 | { |
92976ab6 | 576 | m_format = format; |
e1e955e1 | 577 | } |
c801d85f | 578 | |
fd9811b1 | 579 | bool wxListHeaderData::HasImage() const |
c801d85f | 580 | { |
92976ab6 | 581 | return (m_image != 0); |
e1e955e1 | 582 | } |
c801d85f | 583 | |
fd9811b1 | 584 | bool wxListHeaderData::HasText() const |
c801d85f | 585 | { |
92976ab6 | 586 | return (m_text.Length() > 0); |
e1e955e1 | 587 | } |
c801d85f KB |
588 | |
589 | bool wxListHeaderData::IsHit( int x, int y ) const | |
590 | { | |
92976ab6 | 591 | return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height)); |
e1e955e1 | 592 | } |
c801d85f KB |
593 | |
594 | void wxListHeaderData::GetItem( wxListItem &item ) | |
595 | { | |
92976ab6 RR |
596 | item.m_mask = m_mask; |
597 | item.m_text = m_text; | |
598 | item.m_image = m_image; | |
599 | item.m_format = m_format; | |
600 | item.m_width = m_width; | |
e1e955e1 | 601 | } |
c801d85f KB |
602 | |
603 | void wxListHeaderData::GetText( wxString &s ) | |
604 | { | |
92976ab6 | 605 | s = m_text; |
e1e955e1 | 606 | } |
c801d85f | 607 | |
fd9811b1 | 608 | int wxListHeaderData::GetImage() const |
c801d85f | 609 | { |
92976ab6 | 610 | return m_image; |
e1e955e1 | 611 | } |
c801d85f | 612 | |
fd9811b1 | 613 | int wxListHeaderData::GetWidth() const |
c801d85f | 614 | { |
92976ab6 | 615 | return m_width; |
e1e955e1 | 616 | } |
c801d85f | 617 | |
fd9811b1 | 618 | int wxListHeaderData::GetFormat() const |
c801d85f | 619 | { |
92976ab6 | 620 | return m_format; |
e1e955e1 | 621 | } |
c801d85f KB |
622 | |
623 | //----------------------------------------------------------------------------- | |
624 | // wxListLineData | |
625 | //----------------------------------------------------------------------------- | |
626 | ||
627 | IMPLEMENT_DYNAMIC_CLASS(wxListLineData,wxObject); | |
628 | ||
debe6624 | 629 | wxListLineData::wxListLineData( wxListMainWindow *owner, int mode, wxBrush *hilightBrush ) |
c801d85f | 630 | { |
92976ab6 RR |
631 | m_mode = mode; |
632 | m_hilighted = FALSE; | |
633 | m_owner = owner; | |
634 | m_hilightBrush = hilightBrush; | |
635 | m_items.DeleteContents( TRUE ); | |
636 | m_spacing = 0; | |
e1e955e1 | 637 | } |
c801d85f | 638 | |
1e6d9499 | 639 | void wxListLineData::CalculateSize( wxDC *dc, int spacing ) |
c801d85f | 640 | { |
92976ab6 RR |
641 | m_spacing = spacing; |
642 | switch (m_mode) | |
c801d85f | 643 | { |
92976ab6 RR |
644 | case wxLC_ICON: |
645 | { | |
646 | m_bound_all.width = m_spacing; | |
92976ab6 RR |
647 | wxNode *node = m_items.First(); |
648 | if (node) | |
649 | { | |
650 | wxListItemData *item = (wxListItemData*)node->Data(); | |
0530737d | 651 | wxString s = item->GetText(); |
5d25c050 | 652 | if (s.IsEmpty()) s = wxT("H"); |
13111b2a | 653 | wxCoord lw,lh; |
92976ab6 | 654 | dc->GetTextExtent( s, &lw, &lh ); |
5d25c050 RR |
655 | if (lh < 15) lh = 15; |
656 | lw += 4; | |
657 | lh += 3; | |
f6bcfd97 | 658 | |
5d25c050 | 659 | m_bound_all.height = m_spacing+lh; |
92976ab6 | 660 | if (lw > m_spacing) m_bound_all.width = lw; |
5d25c050 RR |
661 | m_bound_label.width = lw; |
662 | m_bound_label.height = lh; | |
f6bcfd97 | 663 | |
5d25c050 RR |
664 | if (item->HasImage()) |
665 | { | |
666 | int w = 0; | |
667 | int h = 0; | |
668 | m_owner->GetImageSize( item->GetImage(), w, h ); | |
669 | m_bound_icon.width = w + 8; | |
670 | m_bound_icon.height = h + 8; | |
f6bcfd97 BP |
671 | |
672 | if ( m_bound_icon.width > m_bound_all.width ) | |
673 | m_bound_all.width = m_bound_icon.width; | |
674 | if ( h + lh > m_bound_all.height - 4 ) | |
675 | m_bound_all.height = h + lh + 4; | |
5d25c050 | 676 | } |
f6bcfd97 | 677 | |
5d25c050 RR |
678 | if (!item->HasText()) |
679 | { | |
680 | m_bound_hilight.width = m_bound_icon.width; | |
681 | m_bound_hilight.height = m_bound_icon.height; | |
682 | } | |
683 | else | |
684 | { | |
685 | m_bound_hilight.width = m_bound_label.width; | |
686 | m_bound_hilight.height = m_bound_label.height; | |
687 | } | |
92976ab6 RR |
688 | } |
689 | break; | |
690 | } | |
691 | case wxLC_LIST: | |
692 | { | |
693 | wxNode *node = m_items.First(); | |
694 | if (node) | |
695 | { | |
696 | wxListItemData *item = (wxListItemData*)node->Data(); | |
f6bcfd97 | 697 | |
0530737d | 698 | wxString s = item->GetText(); |
5d25c050 | 699 | if (s.IsEmpty()) s = wxT("H"); |
13111b2a | 700 | wxCoord lw,lh; |
92976ab6 | 701 | dc->GetTextExtent( s, &lw, &lh ); |
5d25c050 RR |
702 | if (lh < 15) lh = 15; |
703 | lw += 4; | |
704 | lh += 3; | |
705 | m_bound_label.width = lw; | |
706 | m_bound_label.height = lh; | |
f6bcfd97 | 707 | |
92976ab6 RR |
708 | m_bound_all.width = lw; |
709 | m_bound_all.height = lh; | |
f6bcfd97 | 710 | |
0b855868 RR |
711 | if (item->HasImage()) |
712 | { | |
5dd26b08 JS |
713 | int w = 0; |
714 | int h = 0; | |
0b855868 | 715 | m_owner->GetImageSize( item->GetImage(), w, h ); |
5d25c050 RR |
716 | m_bound_icon.width = w; |
717 | m_bound_icon.height = h; | |
f6bcfd97 | 718 | |
bffa1c77 VZ |
719 | m_bound_all.width += 4 + w; |
720 | if (h > m_bound_all.height) m_bound_all.height = h; | |
721 | } | |
f6bcfd97 | 722 | |
5d25c050 RR |
723 | m_bound_hilight.width = m_bound_all.width; |
724 | m_bound_hilight.height = m_bound_all.height; | |
92976ab6 RR |
725 | } |
726 | break; | |
727 | } | |
728 | case wxLC_REPORT: | |
729 | { | |
730 | m_bound_all.width = 0; | |
731 | m_bound_all.height = 0; | |
732 | wxNode *node = m_items.First(); | |
733 | while (node) | |
734 | { | |
735 | wxListItemData *item = (wxListItemData*)node->Data(); | |
5d25c050 RR |
736 | wxString s = item->GetText(); |
737 | if (s.IsEmpty()) s = wxT("H"); | |
13111b2a | 738 | wxCoord lw,lh; |
7c74e7fe | 739 | dc->GetTextExtent( s, &lw, &lh ); |
40c70187 | 740 | if (lh < 15) lh = 15; |
5d25c050 RR |
741 | lw += 4; |
742 | lh += 3; | |
f6bcfd97 | 743 | |
92976ab6 | 744 | item->SetSize( item->GetWidth(), lh ); |
7c74e7fe | 745 | m_bound_all.width += lw; |
92976ab6 RR |
746 | m_bound_all.height = lh; |
747 | node = node->Next(); | |
748 | } | |
749 | break; | |
750 | } | |
e1e955e1 | 751 | } |
e1e955e1 | 752 | } |
c801d85f | 753 | |
bc1dcfc1 VZ |
754 | void wxListLineData::SetPosition( wxDC * WXUNUSED(dc), |
755 | int x, int y, int window_width ) | |
c801d85f | 756 | { |
0b855868 RR |
757 | m_bound_all.x = x; |
758 | m_bound_all.y = y; | |
759 | switch (m_mode) | |
760 | { | |
761 | case wxLC_ICON: | |
c801d85f | 762 | { |
0b855868 RR |
763 | wxNode *node = m_items.First(); |
764 | if (node) | |
765 | { | |
766 | wxListItemData *item = (wxListItemData*)node->Data(); | |
767 | if (item->HasImage()) | |
768 | { | |
f6bcfd97 BP |
769 | m_bound_icon.x = m_bound_all.x + 4 |
770 | + (m_spacing - m_bound_icon.width)/2; | |
5d25c050 | 771 | m_bound_icon.y = m_bound_all.y + 4; |
0b855868 RR |
772 | } |
773 | if (item->HasText()) | |
774 | { | |
0b855868 | 775 | if (m_bound_all.width > m_spacing) |
5d25c050 | 776 | m_bound_label.x = m_bound_all.x + 2; |
0b855868 | 777 | else |
5d25c050 RR |
778 | m_bound_label.x = m_bound_all.x + 2 + (m_spacing/2) - (m_bound_label.width/2); |
779 | m_bound_label.y = m_bound_all.y + m_bound_all.height + 2 - m_bound_label.height; | |
780 | m_bound_hilight.x = m_bound_label.x - 2; | |
781 | m_bound_hilight.y = m_bound_label.y - 2; | |
782 | } | |
783 | else | |
784 | { | |
785 | m_bound_hilight.x = m_bound_icon.x - 4; | |
786 | m_bound_hilight.y = m_bound_icon.y - 4; | |
0b855868 RR |
787 | } |
788 | } | |
789 | break; | |
e1e955e1 | 790 | } |
0b855868 | 791 | case wxLC_LIST: |
c801d85f | 792 | { |
5d25c050 RR |
793 | m_bound_hilight.x = m_bound_all.x; |
794 | m_bound_hilight.y = m_bound_all.y; | |
795 | m_bound_label.y = m_bound_all.y + 2; | |
0b855868 RR |
796 | wxNode *node = m_items.First(); |
797 | if (node) | |
798 | { | |
799 | wxListItemData *item = (wxListItemData*)node->Data(); | |
800 | if (item->HasImage()) | |
bffa1c77 | 801 | { |
0b855868 RR |
802 | m_bound_icon.x = m_bound_all.x + 2; |
803 | m_bound_icon.y = m_bound_all.y + 2; | |
5d25c050 RR |
804 | m_bound_label.x = m_bound_all.x + 6 + m_bound_icon.width; |
805 | } | |
806 | else | |
807 | { | |
808 | m_bound_label.x = m_bound_all.x + 2; | |
bffa1c77 VZ |
809 | } |
810 | } | |
0b855868 RR |
811 | break; |
812 | } | |
813 | case wxLC_REPORT: | |
814 | { | |
0b855868 | 815 | m_bound_all.x = 0; |
0b855868 RR |
816 | m_bound_all.width = window_width; |
817 | AssignRect( m_bound_hilight, m_bound_all ); | |
5d25c050 RR |
818 | m_bound_label.x = m_bound_all.x + 2; |
819 | m_bound_label.y = m_bound_all.y + 2; | |
0b855868 RR |
820 | wxNode *node = m_items.First(); |
821 | if (node) | |
822 | { | |
823 | wxListItemData *item = (wxListItemData*)node->Data(); | |
bffa1c77 VZ |
824 | if (item->HasImage()) |
825 | { | |
0b855868 RR |
826 | m_bound_icon.x = m_bound_all.x + 2; |
827 | m_bound_icon.y = m_bound_all.y + 2; | |
5d25c050 | 828 | m_bound_label.x += 4 + m_bound_icon.width; |
bffa1c77 VZ |
829 | } |
830 | } | |
0b855868 | 831 | break; |
e1e955e1 | 832 | } |
e1e955e1 | 833 | } |
e1e955e1 | 834 | } |
c801d85f | 835 | |
debe6624 | 836 | void wxListLineData::SetColumnPosition( int index, int x ) |
c801d85f | 837 | { |
6f2a55e3 | 838 | wxNode *node = m_items.Nth( (size_t)index ); |
92976ab6 RR |
839 | if (node) |
840 | { | |
841 | wxListItemData *item = (wxListItemData*)node->Data(); | |
842 | item->SetPosition( x, m_bound_all.y+1 ); | |
843 | } | |
e1e955e1 | 844 | } |
c801d85f KB |
845 | |
846 | void wxListLineData::GetSize( int &width, int &height ) | |
847 | { | |
139adb6a RR |
848 | width = m_bound_all.width; |
849 | height = m_bound_all.height; | |
e1e955e1 | 850 | } |
c801d85f KB |
851 | |
852 | void wxListLineData::GetExtent( int &x, int &y, int &width, int &height ) | |
853 | { | |
139adb6a RR |
854 | x = m_bound_all.x; |
855 | y = m_bound_all.y; | |
856 | width = m_bound_all.width; | |
857 | height = m_bound_all.height; | |
e1e955e1 | 858 | } |
c801d85f KB |
859 | |
860 | void wxListLineData::GetLabelExtent( int &x, int &y, int &width, int &height ) | |
861 | { | |
139adb6a RR |
862 | x = m_bound_label.x; |
863 | y = m_bound_label.y; | |
864 | width = m_bound_label.width; | |
865 | height = m_bound_label.height; | |
e1e955e1 | 866 | } |
c801d85f | 867 | |
0a240683 | 868 | void wxListLineData::GetRect( wxRect &rect ) |
c801d85f | 869 | { |
139adb6a | 870 | AssignRect( rect, m_bound_all ); |
e1e955e1 | 871 | } |
c801d85f | 872 | |
debe6624 | 873 | long wxListLineData::IsHit( int x, int y ) |
c801d85f | 874 | { |
139adb6a RR |
875 | wxNode *node = m_items.First(); |
876 | if (node) | |
877 | { | |
878 | wxListItemData *item = (wxListItemData*)node->Data(); | |
879 | if (item->HasImage() && IsInRect( x, y, m_bound_icon )) return wxLIST_HITTEST_ONITEMICON; | |
880 | if (item->HasText() && IsInRect( x, y, m_bound_label )) return wxLIST_HITTEST_ONITEMLABEL; | |
881 | // if (!(item->HasImage() || item->HasText())) return 0; | |
882 | } | |
883 | // if there is no icon or text = empty | |
884 | if (IsInRect( x, y, m_bound_all )) return wxLIST_HITTEST_ONITEMICON; | |
885 | return 0; | |
e1e955e1 | 886 | } |
c801d85f | 887 | |
debe6624 | 888 | void wxListLineData::InitItems( int num ) |
c801d85f | 889 | { |
139adb6a | 890 | for (int i = 0; i < num; i++) m_items.Append( new wxListItemData() ); |
e1e955e1 | 891 | } |
c801d85f | 892 | |
debe6624 | 893 | void wxListLineData::SetItem( int index, const wxListItem &info ) |
c801d85f | 894 | { |
139adb6a RR |
895 | wxNode *node = m_items.Nth( index ); |
896 | if (node) | |
897 | { | |
898 | wxListItemData *item = (wxListItemData*)node->Data(); | |
899 | item->SetItem( info ); | |
900 | } | |
e1e955e1 | 901 | } |
c801d85f | 902 | |
1e6d9499 | 903 | void wxListLineData::GetItem( int index, wxListItem &info ) |
c801d85f | 904 | { |
139adb6a RR |
905 | int i = index; |
906 | wxNode *node = m_items.Nth( i ); | |
907 | if (node) | |
908 | { | |
909 | wxListItemData *item = (wxListItemData*)node->Data(); | |
910 | item->GetItem( info ); | |
911 | } | |
e1e955e1 | 912 | } |
c801d85f | 913 | |
debe6624 | 914 | void wxListLineData::GetText( int index, wxString &s ) |
c801d85f | 915 | { |
139adb6a RR |
916 | int i = index; |
917 | wxNode *node = m_items.Nth( i ); | |
918 | s = ""; | |
919 | if (node) | |
920 | { | |
921 | wxListItemData *item = (wxListItemData*)node->Data(); | |
922 | item->GetText( s ); | |
923 | } | |
e1e955e1 | 924 | } |
c801d85f | 925 | |
debe6624 | 926 | void wxListLineData::SetText( int index, const wxString s ) |
c801d85f | 927 | { |
139adb6a RR |
928 | int i = index; |
929 | wxNode *node = m_items.Nth( i ); | |
930 | if (node) | |
931 | { | |
932 | wxListItemData *item = (wxListItemData*)node->Data(); | |
933 | item->SetText( s ); | |
934 | } | |
e1e955e1 | 935 | } |
c801d85f | 936 | |
debe6624 | 937 | int wxListLineData::GetImage( int index ) |
c801d85f | 938 | { |
139adb6a RR |
939 | int i = index; |
940 | wxNode *node = m_items.Nth( i ); | |
941 | if (node) | |
942 | { | |
943 | wxListItemData *item = (wxListItemData*)node->Data(); | |
944 | return item->GetImage(); | |
945 | } | |
946 | return -1; | |
e1e955e1 | 947 | } |
c801d85f | 948 | |
0530737d VZ |
949 | void wxListLineData::SetAttributes(wxDC *dc, |
950 | const wxListItemAttr *attr, | |
951 | const wxColour& colText, | |
470caaf9 VZ |
952 | const wxFont& font, |
953 | bool hilight) | |
0530737d | 954 | { |
470caaf9 VZ |
955 | // don't use foregroud colour for drawing highlighted items - this might |
956 | // make them completely invisible (and there is no way to do bit | |
957 | // arithmetics on wxColour, unfortunately) | |
958 | if ( !hilight && attr && attr->HasTextColour() ) | |
0530737d VZ |
959 | { |
960 | dc->SetTextForeground(attr->GetTextColour()); | |
961 | } | |
962 | else | |
963 | { | |
964 | dc->SetTextForeground(colText); | |
965 | } | |
966 | ||
967 | if ( attr && attr->HasFont() ) | |
968 | { | |
969 | dc->SetFont(attr->GetFont()); | |
970 | } | |
971 | else | |
972 | { | |
973 | dc->SetFont(font); | |
974 | } | |
975 | } | |
976 | ||
1e6d9499 | 977 | void wxListLineData::DoDraw( wxDC *dc, bool hilight, bool paintBG ) |
c801d85f | 978 | { |
e06b9569 JS |
979 | int dev_x = 0; |
980 | int dev_y = 0; | |
3d2d8da1 RR |
981 | m_owner->CalcScrolledPosition( m_bound_all.x, m_bound_all.y, &dev_x, &dev_y ); |
982 | wxCoord dev_w = m_bound_all.width; | |
983 | wxCoord dev_h = m_bound_all.height; | |
004fd0c8 | 984 | |
139adb6a | 985 | if (!m_owner->IsExposed( dev_x, dev_y, dev_w, dev_h )) |
139adb6a | 986 | return; |
bd8289c1 | 987 | |
0530737d VZ |
988 | wxWindow *listctrl = m_owner->GetParent(); |
989 | ||
990 | // default foreground colour | |
991 | wxColour colText; | |
992 | if ( hilight ) | |
993 | { | |
994 | colText = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT ); | |
995 | } | |
996 | else | |
997 | { | |
998 | colText = listctrl->GetForegroundColour(); | |
999 | } | |
1000 | ||
1001 | // default font | |
1002 | wxFont font = listctrl->GetFont(); | |
1003 | ||
1004 | // VZ: currently we set the colours/fonts only once, but like this (i.e. | |
1005 | // using SetAttributes() inside the loop), it will be trivial to | |
1006 | // customize the subitems (in report mode) too. | |
1007 | wxListItemData *item = (wxListItemData*)m_items.First()->Data(); | |
1008 | wxListItemAttr *attr = item->GetAttributes(); | |
470caaf9 | 1009 | SetAttributes(dc, attr, colText, font, hilight); |
0530737d VZ |
1010 | |
1011 | bool hasBgCol = attr && attr->HasBackgroundColour(); | |
1012 | if ( paintBG || hasBgCol ) | |
c801d85f | 1013 | { |
63852e78 RR |
1014 | if (hilight) |
1015 | { | |
1016 | dc->SetBrush( * m_hilightBrush ); | |
63852e78 RR |
1017 | } |
1018 | else | |
1019 | { | |
0530737d VZ |
1020 | if ( hasBgCol ) |
1021 | dc->SetBrush(wxBrush(attr->GetBackgroundColour(), wxSOLID)); | |
1022 | else | |
1023 | dc->SetBrush( * wxWHITE_BRUSH ); | |
63852e78 | 1024 | } |
0530737d VZ |
1025 | |
1026 | dc->SetPen( * wxTRANSPARENT_PEN ); | |
63852e78 RR |
1027 | dc->DrawRectangle( m_bound_hilight.x, m_bound_hilight.y, |
1028 | m_bound_hilight.width, m_bound_hilight.height ); | |
e1e955e1 | 1029 | } |
004fd0c8 | 1030 | |
63852e78 | 1031 | if (m_mode == wxLC_REPORT) |
c801d85f | 1032 | { |
63852e78 RR |
1033 | wxNode *node = m_items.First(); |
1034 | while (node) | |
1035 | { | |
1036 | wxListItemData *item = (wxListItemData*)node->Data(); | |
63852e78 RR |
1037 | int x = item->GetX(); |
1038 | if (item->HasImage()) | |
1039 | { | |
1040 | int y = 0; | |
1041 | m_owner->DrawImage( item->GetImage(), dc, x, item->GetY() ); | |
1042 | m_owner->GetImageSize( item->GetImage(), x, y ); | |
1043 | x += item->GetX() + 5; | |
1044 | } | |
40c70187 | 1045 | dc->SetClippingRegion( item->GetX(), item->GetY(), item->GetWidth()-3, item->GetHeight() ); |
63852e78 RR |
1046 | if (item->HasText()) |
1047 | { | |
40c70187 | 1048 | dc->DrawText( item->GetText(), x, item->GetY()+1 ); |
63852e78 RR |
1049 | } |
1050 | dc->DestroyClippingRegion(); | |
1051 | node = node->Next(); | |
1052 | } | |
e1e955e1 | 1053 | } |
63852e78 | 1054 | else |
c801d85f | 1055 | { |
63852e78 RR |
1056 | wxNode *node = m_items.First(); |
1057 | if (node) | |
1058 | { | |
1059 | wxListItemData *item = (wxListItemData*)node->Data(); | |
1060 | if (item->HasImage()) | |
1061 | { | |
1062 | m_owner->DrawImage( item->GetImage(), dc, m_bound_icon.x, m_bound_icon.y ); | |
1063 | } | |
1064 | if (item->HasText()) | |
1065 | { | |
0530737d | 1066 | dc->DrawText( item->GetText(), m_bound_label.x, m_bound_label.y ); |
63852e78 RR |
1067 | } |
1068 | } | |
e1e955e1 | 1069 | } |
e1e955e1 | 1070 | } |
c801d85f | 1071 | |
debe6624 | 1072 | void wxListLineData::Hilight( bool on ) |
c801d85f | 1073 | { |
63852e78 | 1074 | if (on == m_hilighted) return; |
6e228e42 | 1075 | m_hilighted = on; |
63852e78 RR |
1076 | if (on) |
1077 | m_owner->SelectLine( this ); | |
1078 | else | |
1079 | m_owner->DeselectLine( this ); | |
e1e955e1 | 1080 | } |
c801d85f KB |
1081 | |
1082 | void wxListLineData::ReverseHilight( void ) | |
1083 | { | |
63852e78 RR |
1084 | m_hilighted = !m_hilighted; |
1085 | if (m_hilighted) | |
1086 | m_owner->SelectLine( this ); | |
1087 | else | |
1088 | m_owner->DeselectLine( this ); | |
e1e955e1 | 1089 | } |
c801d85f | 1090 | |
1e6d9499 | 1091 | void wxListLineData::DrawRubberBand( wxDC *dc, bool on ) |
c801d85f | 1092 | { |
63852e78 RR |
1093 | if (on) |
1094 | { | |
1095 | dc->SetPen( * wxBLACK_PEN ); | |
1096 | dc->SetBrush( * wxTRANSPARENT_BRUSH ); | |
1097 | dc->DrawRectangle( m_bound_hilight.x, m_bound_hilight.y, | |
1098 | m_bound_hilight.width, m_bound_hilight.height ); | |
1099 | } | |
e1e955e1 | 1100 | } |
c801d85f | 1101 | |
1e6d9499 | 1102 | void wxListLineData::Draw( wxDC *dc ) |
c801d85f | 1103 | { |
63852e78 | 1104 | DoDraw( dc, m_hilighted, m_hilighted ); |
e1e955e1 | 1105 | } |
c801d85f | 1106 | |
0a240683 | 1107 | bool wxListLineData::IsInRect( int x, int y, const wxRect &rect ) |
c801d85f | 1108 | { |
004fd0c8 | 1109 | return ((x >= rect.x) && (x <= rect.x+rect.width) && |
63852e78 | 1110 | (y >= rect.y) && (y <= rect.y+rect.height)); |
e1e955e1 | 1111 | } |
c801d85f KB |
1112 | |
1113 | bool wxListLineData::IsHilighted( void ) | |
1114 | { | |
63852e78 | 1115 | return m_hilighted; |
e1e955e1 | 1116 | } |
c801d85f | 1117 | |
0a240683 | 1118 | void wxListLineData::AssignRect( wxRect &dest, int x, int y, int width, int height ) |
c801d85f | 1119 | { |
63852e78 RR |
1120 | dest.x = x; |
1121 | dest.y = y; | |
1122 | dest.width = width; | |
1123 | dest.height = height; | |
e1e955e1 | 1124 | } |
c801d85f | 1125 | |
0a240683 | 1126 | void wxListLineData::AssignRect( wxRect &dest, const wxRect &source ) |
c801d85f | 1127 | { |
63852e78 RR |
1128 | dest.x = source.x; |
1129 | dest.y = source.y; | |
1130 | dest.width = source.width; | |
1131 | dest.height = source.height; | |
e1e955e1 | 1132 | } |
c801d85f KB |
1133 | |
1134 | //----------------------------------------------------------------------------- | |
1135 | // wxListHeaderWindow | |
1136 | //----------------------------------------------------------------------------- | |
1137 | ||
1138 | IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow,wxWindow); | |
1139 | ||
1140 | BEGIN_EVENT_TABLE(wxListHeaderWindow,wxWindow) | |
63852e78 RR |
1141 | EVT_PAINT (wxListHeaderWindow::OnPaint) |
1142 | EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse) | |
1143 | EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus) | |
c801d85f KB |
1144 | END_EVENT_TABLE() |
1145 | ||
1146 | wxListHeaderWindow::wxListHeaderWindow( void ) | |
1147 | { | |
63852e78 RR |
1148 | m_owner = (wxListMainWindow *) NULL; |
1149 | m_currentCursor = (wxCursor *) NULL; | |
1150 | m_resizeCursor = (wxCursor *) NULL; | |
cfb50f14 | 1151 | m_isDragging = FALSE; |
e1e955e1 | 1152 | } |
c801d85f | 1153 | |
bd8289c1 | 1154 | wxListHeaderWindow::wxListHeaderWindow( wxWindow *win, wxWindowID id, wxListMainWindow *owner, |
debe6624 JS |
1155 | const wxPoint &pos, const wxSize &size, |
1156 | long style, const wxString &name ) : | |
c801d85f KB |
1157 | wxWindow( win, id, pos, size, style, name ) |
1158 | { | |
63852e78 | 1159 | m_owner = owner; |
c801d85f | 1160 | // m_currentCursor = wxSTANDARD_CURSOR; |
63852e78 RR |
1161 | m_currentCursor = (wxCursor *) NULL; |
1162 | m_resizeCursor = new wxCursor( wxCURSOR_SIZEWE ); | |
cfb50f14 | 1163 | m_isDragging = FALSE; |
f6bcfd97 BP |
1164 | m_dirty = FALSE; |
1165 | ||
cfb50f14 | 1166 | SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE ) ); |
e1e955e1 | 1167 | } |
c801d85f | 1168 | |
a367b9b3 JS |
1169 | wxListHeaderWindow::~wxListHeaderWindow( void ) |
1170 | { | |
63852e78 | 1171 | delete m_resizeCursor; |
a367b9b3 JS |
1172 | } |
1173 | ||
1e6d9499 | 1174 | void wxListHeaderWindow::DoDrawRect( wxDC *dc, int x, int y, int w, int h ) |
c801d85f | 1175 | { |
63852e78 | 1176 | const int m_corner = 1; |
c801d85f | 1177 | |
63852e78 | 1178 | dc->SetBrush( *wxTRANSPARENT_BRUSH ); |
c801d85f | 1179 | |
63852e78 RR |
1180 | dc->SetPen( *wxBLACK_PEN ); |
1181 | dc->DrawLine( x+w-m_corner+1, y, x+w, y+h ); // right (outer) | |
17867d61 | 1182 | dc->DrawRectangle( x, y+h, w+1, 1 ); // bottom (outer) |
bd8289c1 | 1183 | |
63852e78 | 1184 | wxPen pen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW ), 1, wxSOLID ); |
004fd0c8 | 1185 | |
63852e78 RR |
1186 | dc->SetPen( pen ); |
1187 | dc->DrawLine( x+w-m_corner, y, x+w-1, y+h ); // right (inner) | |
1188 | dc->DrawRectangle( x+1, y+h-1, w-2, 1 ); // bottom (inner) | |
bd8289c1 | 1189 | |
63852e78 RR |
1190 | dc->SetPen( *wxWHITE_PEN ); |
1191 | dc->DrawRectangle( x, y, w-m_corner+1, 1 ); // top (outer) | |
1192 | dc->DrawRectangle( x, y, 1, h ); // left (outer) | |
1193 | dc->DrawLine( x, y+h-1, x+1, y+h-1 ); | |
1194 | dc->DrawLine( x+w-1, y, x+w-1, y+1 ); | |
e1e955e1 | 1195 | } |
c801d85f | 1196 | |
f6bcfd97 BP |
1197 | // shift the DC origin to match the position of the main window horz |
1198 | // scrollbar: this allows us to always use logical coords | |
1199 | void wxListHeaderWindow::AdjustDC(wxDC& dc) | |
1200 | { | |
1201 | #if wxUSE_GENERIC_LIST_EXTENSIONS | |
1202 | int xpix; | |
1203 | m_owner->GetScrollPixelsPerUnit( &xpix, NULL ); | |
1204 | ||
1205 | int x; | |
1206 | m_owner->GetViewStart( &x, NULL ); | |
1207 | ||
1208 | // account for the horz scrollbar offset | |
1209 | dc.SetDeviceOrigin( -x * xpix, 0 ); | |
1210 | #endif // wxUSE_GENERIC_LIST_EXTENSIONS | |
1211 | } | |
1212 | ||
c801d85f KB |
1213 | void wxListHeaderWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
1214 | { | |
63852e78 RR |
1215 | wxPaintDC dc( this ); |
1216 | PrepareDC( dc ); | |
f6bcfd97 | 1217 | AdjustDC( dc ); |
bffa1c77 | 1218 | |
63852e78 | 1219 | dc.BeginDrawing(); |
bd8289c1 | 1220 | |
63852e78 | 1221 | dc.SetFont( GetFont() ); |
bd8289c1 | 1222 | |
f6bcfd97 BP |
1223 | // width and height of the entire header window |
1224 | int w, h; | |
63852e78 | 1225 | GetClientSize( &w, &h ); |
f6bcfd97 BP |
1226 | #if wxUSE_GENERIC_LIST_EXTENSIONS |
1227 | m_owner->CalcUnscrolledPosition(w, 0, &w, NULL); | |
1228 | #endif // wxUSE_GENERIC_LIST_EXTENSIONS | |
c801d85f | 1229 | |
f60d0f94 | 1230 | dc.SetBackgroundMode(wxTRANSPARENT); |
70846f0a VZ |
1231 | |
1232 | // do *not* use the listctrl colour for headers - one day we will have a | |
1233 | // function to set it separately | |
f6bcfd97 | 1234 | dc.SetTextForeground( *wxBLACK ); |
c801d85f | 1235 | |
f6bcfd97 BP |
1236 | int x = 1; // left of the header rect |
1237 | const int y = 1; // top | |
63852e78 RR |
1238 | int numColumns = m_owner->GetColumnCount(); |
1239 | wxListItem item; | |
1240 | for (int i = 0; i < numColumns; i++) | |
1241 | { | |
1242 | m_owner->GetColumn( i, item ); | |
f6bcfd97 BP |
1243 | int wCol = item.m_width; |
1244 | int cw = wCol - 2; // the width of the rect to draw | |
1245 | ||
1246 | int xEnd = x + wCol; | |
1247 | ||
1248 | // VZ: no, draw it normally - this is better now as we allow resizing | |
1249 | // of the last column as well | |
1250 | #if 0 | |
1251 | // let the last column occupy all available space | |
1252 | if ( i == numColumns - 1 ) | |
470caaf9 | 1253 | cw = w-x-1; |
f6bcfd97 BP |
1254 | #endif // 0 |
1255 | ||
63852e78 | 1256 | dc.SetPen( *wxWHITE_PEN ); |
c801d85f | 1257 | |
63852e78 | 1258 | DoDrawRect( &dc, x, y, cw, h-2 ); |
40c70187 | 1259 | dc.SetClippingRegion( x, y, cw-5, h-4 ); |
63852e78 | 1260 | dc.DrawText( item.m_text, x+4, y+3 ); |
40c70187 | 1261 | dc.DestroyClippingRegion(); |
f6bcfd97 BP |
1262 | x += wCol; |
1263 | ||
1264 | if (xEnd > w+5) | |
1265 | break; | |
63852e78 RR |
1266 | } |
1267 | dc.EndDrawing(); | |
e1e955e1 | 1268 | } |
c801d85f | 1269 | |
0208334d RR |
1270 | void wxListHeaderWindow::DrawCurrent() |
1271 | { | |
63852e78 RR |
1272 | int x1 = m_currentX; |
1273 | int y1 = 0; | |
f6bcfd97 BP |
1274 | ClientToScreen( &x1, &y1 ); |
1275 | ||
63852e78 RR |
1276 | int x2 = m_currentX-1; |
1277 | int y2 = 0; | |
f6bcfd97 | 1278 | m_owner->GetClientSize( NULL, &y2 ); |
63852e78 | 1279 | m_owner->ClientToScreen( &x2, &y2 ); |
0208334d | 1280 | |
63852e78 | 1281 | wxScreenDC dc; |
3c679789 | 1282 | dc.SetLogicalFunction( wxINVERT ); |
63852e78 RR |
1283 | dc.SetPen( wxPen( *wxBLACK, 2, wxSOLID ) ); |
1284 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
0208334d | 1285 | |
f6bcfd97 BP |
1286 | AdjustDC(dc); |
1287 | ||
63852e78 | 1288 | dc.DrawLine( x1, y1, x2, y2 ); |
0208334d | 1289 | |
63852e78 | 1290 | dc.SetLogicalFunction( wxCOPY ); |
0208334d | 1291 | |
63852e78 RR |
1292 | dc.SetPen( wxNullPen ); |
1293 | dc.SetBrush( wxNullBrush ); | |
0208334d RR |
1294 | } |
1295 | ||
c801d85f KB |
1296 | void wxListHeaderWindow::OnMouse( wxMouseEvent &event ) |
1297 | { | |
f6bcfd97 BP |
1298 | // we want to work with logical coords |
1299 | #if wxUSE_GENERIC_LIST_EXTENSIONS | |
1300 | int x, y; | |
1301 | m_owner->CalcUnscrolledPosition(event.GetX(), event.GetY(), &x, &y); | |
1302 | #else // !wxUSE_GENERIC_LIST_EXTENSIONS | |
1303 | int x = event.GetX(); | |
1304 | int y = event.GetY(); | |
1305 | #endif // wxUSE_GENERIC_LIST_EXTENSIONS | |
1306 | ||
cfb50f14 | 1307 | if (m_isDragging) |
0208334d | 1308 | { |
f6bcfd97 BP |
1309 | // we don't draw the line beyond our window, but we allow dragging it |
1310 | // there | |
1311 | int w = 0; | |
1312 | GetClientSize( &w, NULL ); | |
1313 | #if wxUSE_GENERIC_LIST_EXTENSIONS | |
1314 | m_owner->CalcUnscrolledPosition(w, 0, &w, NULL); | |
1315 | #endif // wxUSE_GENERIC_LIST_EXTENSIONS | |
1316 | w -= 6; | |
1317 | ||
1318 | // erase the line if it was drawn | |
1319 | if ( m_currentX < w ) | |
1320 | DrawCurrent(); | |
1321 | ||
63852e78 RR |
1322 | if (event.ButtonUp()) |
1323 | { | |
1324 | ReleaseMouse(); | |
cfb50f14 | 1325 | m_isDragging = FALSE; |
f6bcfd97 BP |
1326 | m_dirty = TRUE; |
1327 | m_owner->SetColumnWidth( m_column, m_currentX - m_minX ); | |
63852e78 RR |
1328 | } |
1329 | else | |
1330 | { | |
f6bcfd97 | 1331 | if (x > m_minX + 7) |
63852e78 RR |
1332 | m_currentX = x; |
1333 | else | |
f6bcfd97 | 1334 | m_currentX = m_minX + 7; |
bd8289c1 | 1335 | |
f6bcfd97 BP |
1336 | // draw in the new location |
1337 | if ( m_currentX < w ) | |
1338 | DrawCurrent(); | |
bffa1c77 | 1339 | } |
0208334d | 1340 | } |
f6bcfd97 | 1341 | else // not dragging |
c801d85f | 1342 | { |
f6bcfd97 BP |
1343 | m_minX = 0; |
1344 | bool hit_border = FALSE; | |
1345 | ||
1346 | // end of the current column | |
1347 | int xpos = 0; | |
1348 | ||
1349 | // find the column where this event occured | |
1350 | int countCol = m_owner->GetColumnCount(); | |
1351 | for (int j = 0; j < countCol; j++) | |
bffa1c77 | 1352 | { |
f6bcfd97 BP |
1353 | xpos += m_owner->GetColumnWidth( j ); |
1354 | m_column = j; | |
1355 | ||
1356 | if ( (abs(x-xpos) < 3) && (y < 22) ) | |
1357 | { | |
1358 | // near the column border | |
1359 | hit_border = TRUE; | |
1360 | break; | |
1361 | } | |
1362 | ||
1363 | if ( x < xpos ) | |
1364 | { | |
1365 | // inside the column | |
1366 | break; | |
1367 | } | |
1368 | ||
1369 | m_minX = xpos; | |
bffa1c77 | 1370 | } |
63852e78 | 1371 | |
f6bcfd97 | 1372 | if (event.LeftDown()) |
63852e78 | 1373 | { |
f6bcfd97 BP |
1374 | if (hit_border) |
1375 | { | |
1376 | m_isDragging = TRUE; | |
1377 | m_currentX = x; | |
1378 | DrawCurrent(); | |
1379 | CaptureMouse(); | |
1380 | } | |
1381 | else | |
1382 | { | |
1383 | wxWindow *parent = GetParent(); | |
1384 | wxListEvent le( wxEVT_COMMAND_LIST_COL_CLICK, parent->GetId() ); | |
1385 | le.SetEventObject( parent ); | |
1386 | le.m_col = m_column; | |
1387 | parent->GetEventHandler()->ProcessEvent( le ); | |
1388 | } | |
63852e78 | 1389 | } |
f6bcfd97 | 1390 | else if (event.Moving()) |
63852e78 | 1391 | { |
f6bcfd97 BP |
1392 | bool setCursor; |
1393 | if (hit_border) | |
1394 | { | |
1395 | setCursor = m_currentCursor == wxSTANDARD_CURSOR; | |
1396 | m_currentCursor = m_resizeCursor; | |
1397 | } | |
1398 | else | |
1399 | { | |
1400 | setCursor = m_currentCursor != wxSTANDARD_CURSOR; | |
1401 | m_currentCursor = wxSTANDARD_CURSOR; | |
1402 | } | |
1403 | ||
1404 | if ( setCursor ) | |
1405 | SetCursor(*m_currentCursor); | |
63852e78 | 1406 | } |
e1e955e1 | 1407 | } |
e1e955e1 | 1408 | } |
c801d85f KB |
1409 | |
1410 | void wxListHeaderWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) ) | |
1411 | { | |
63852e78 | 1412 | m_owner->SetFocus(); |
e1e955e1 | 1413 | } |
c801d85f KB |
1414 | |
1415 | //----------------------------------------------------------------------------- | |
1416 | // wxListRenameTimer (internal) | |
1417 | //----------------------------------------------------------------------------- | |
1418 | ||
bd8289c1 VZ |
1419 | wxListRenameTimer::wxListRenameTimer( wxListMainWindow *owner ) |
1420 | { | |
63852e78 | 1421 | m_owner = owner; |
e1e955e1 | 1422 | } |
c801d85f | 1423 | |
bd8289c1 VZ |
1424 | void wxListRenameTimer::Notify() |
1425 | { | |
63852e78 | 1426 | m_owner->OnRenameTimer(); |
e1e955e1 | 1427 | } |
c801d85f | 1428 | |
ee7ee469 RR |
1429 | //----------------------------------------------------------------------------- |
1430 | // wxListTextCtrl (internal) | |
1431 | //----------------------------------------------------------------------------- | |
1432 | ||
1433 | IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl,wxTextCtrl); | |
bd8289c1 | 1434 | |
ee7ee469 | 1435 | BEGIN_EVENT_TABLE(wxListTextCtrl,wxTextCtrl) |
63852e78 RR |
1436 | EVT_CHAR (wxListTextCtrl::OnChar) |
1437 | EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus) | |
ee7ee469 RR |
1438 | END_EVENT_TABLE() |
1439 | ||
674ac8b9 VZ |
1440 | wxListTextCtrl::wxListTextCtrl( wxWindow *parent, |
1441 | const wxWindowID id, | |
1442 | bool *accept, | |
1443 | wxString *res, | |
1444 | wxListMainWindow *owner, | |
1445 | const wxString &value, | |
1446 | const wxPoint &pos, | |
1447 | const wxSize &size, | |
1448 | int style, | |
1449 | const wxValidator& validator, | |
1450 | const wxString &name ) | |
1451 | : wxTextCtrl( parent, id, value, pos, size, style, validator, name ) | |
ee7ee469 | 1452 | { |
63852e78 RR |
1453 | m_res = res; |
1454 | m_accept = accept; | |
1455 | m_owner = owner; | |
5f1ea0ee RR |
1456 | (*m_accept) = FALSE; |
1457 | (*m_res) = ""; | |
1458 | m_startValue = value; | |
ee7ee469 RR |
1459 | } |
1460 | ||
1461 | void wxListTextCtrl::OnChar( wxKeyEvent &event ) | |
1462 | { | |
63852e78 RR |
1463 | if (event.m_keyCode == WXK_RETURN) |
1464 | { | |
1465 | (*m_accept) = TRUE; | |
1466 | (*m_res) = GetValue(); | |
f6bcfd97 | 1467 | |
bce1406b RR |
1468 | if (!wxPendingDelete.Member(this)) |
1469 | wxPendingDelete.Append(this); | |
1470 | ||
1471 | if ((*m_accept) && ((*m_res) != m_startValue)) | |
1472 | m_owner->OnRenameAccept(); | |
f6bcfd97 | 1473 | |
63852e78 RR |
1474 | return; |
1475 | } | |
1476 | if (event.m_keyCode == WXK_ESCAPE) | |
1477 | { | |
1478 | (*m_accept) = FALSE; | |
1479 | (*m_res) = ""; | |
f6bcfd97 | 1480 | |
bce1406b RR |
1481 | if (!wxPendingDelete.Member(this)) |
1482 | wxPendingDelete.Append(this); | |
f6bcfd97 | 1483 | |
63852e78 RR |
1484 | return; |
1485 | } | |
f6bcfd97 | 1486 | |
63852e78 RR |
1487 | event.Skip(); |
1488 | } | |
1489 | ||
1490 | void wxListTextCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) ) | |
1491 | { | |
bce1406b RR |
1492 | if (!wxPendingDelete.Member(this)) |
1493 | wxPendingDelete.Append(this); | |
004fd0c8 | 1494 | |
5f1ea0ee RR |
1495 | if ((*m_accept) && ((*m_res) != m_startValue)) |
1496 | m_owner->OnRenameAccept(); | |
ee7ee469 RR |
1497 | } |
1498 | ||
c801d85f KB |
1499 | //----------------------------------------------------------------------------- |
1500 | // wxListMainWindow | |
1501 | //----------------------------------------------------------------------------- | |
1502 | ||
1503 | IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow,wxScrolledWindow); | |
bd8289c1 | 1504 | |
c801d85f KB |
1505 | BEGIN_EVENT_TABLE(wxListMainWindow,wxScrolledWindow) |
1506 | EVT_PAINT (wxListMainWindow::OnPaint) | |
1507 | EVT_SIZE (wxListMainWindow::OnSize) | |
1508 | EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse) | |
1509 | EVT_CHAR (wxListMainWindow::OnChar) | |
3dfb93fd | 1510 | EVT_KEY_DOWN (wxListMainWindow::OnKeyDown) |
c801d85f KB |
1511 | EVT_SET_FOCUS (wxListMainWindow::OnSetFocus) |
1512 | EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus) | |
2fa7c206 | 1513 | EVT_SCROLLWIN (wxListMainWindow::OnScroll) |
c801d85f KB |
1514 | END_EVENT_TABLE() |
1515 | ||
fd9811b1 | 1516 | wxListMainWindow::wxListMainWindow() |
c801d85f | 1517 | { |
139adb6a | 1518 | m_mode = 0; |
139adb6a RR |
1519 | m_columns.DeleteContents( TRUE ); |
1520 | m_current = (wxListLineData *) NULL; | |
1521 | m_visibleLines = 0; | |
1522 | m_hilightBrush = (wxBrush *) NULL; | |
1523 | m_xScroll = 0; | |
1524 | m_yScroll = 0; | |
1525 | m_dirty = TRUE; | |
1526 | m_small_image_list = (wxImageList *) NULL; | |
1527 | m_normal_image_list = (wxImageList *) NULL; | |
1528 | m_small_spacing = 30; | |
1529 | m_normal_spacing = 40; | |
1530 | m_hasFocus = FALSE; | |
1531 | m_usedKeys = TRUE; | |
1532 | m_lastOnSame = FALSE; | |
1533 | m_renameTimer = new wxListRenameTimer( this ); | |
1534 | m_isCreated = FALSE; | |
1535 | m_dragCount = 0; | |
efbb7287 VZ |
1536 | |
1537 | m_lineLastClicked = | |
1538 | m_lineBeforeLastClicked = (wxListLineData *)NULL; | |
e1e955e1 | 1539 | } |
c801d85f | 1540 | |
bd8289c1 | 1541 | wxListMainWindow::wxListMainWindow( wxWindow *parent, wxWindowID id, |
c801d85f | 1542 | const wxPoint &pos, const wxSize &size, |
debe6624 | 1543 | long style, const wxString &name ) : |
a367b9b3 | 1544 | wxScrolledWindow( parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name ) |
c801d85f | 1545 | { |
139adb6a | 1546 | m_mode = style; |
139adb6a RR |
1547 | m_columns.DeleteContents( TRUE ); |
1548 | m_current = (wxListLineData *) NULL; | |
1549 | m_dirty = TRUE; | |
1550 | m_visibleLines = 0; | |
1551 | m_hilightBrush = new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT), wxSOLID ); | |
1552 | m_small_image_list = (wxImageList *) NULL; | |
1553 | m_normal_image_list = (wxImageList *) NULL; | |
1554 | m_small_spacing = 30; | |
1555 | m_normal_spacing = 40; | |
1556 | m_hasFocus = FALSE; | |
1557 | m_dragCount = 0; | |
1558 | m_isCreated = FALSE; | |
1559 | wxSize sz = size; | |
1560 | sz.y = 25; | |
bd8289c1 | 1561 | |
139adb6a RR |
1562 | if (m_mode & wxLC_REPORT) |
1563 | { | |
7c74e7fe SC |
1564 | #if wxUSE_GENERIC_LIST_EXTENSIONS |
1565 | m_xScroll = 15; | |
1566 | #else | |
139adb6a | 1567 | m_xScroll = 0; |
7c74e7fe | 1568 | #endif |
139adb6a RR |
1569 | m_yScroll = 15; |
1570 | } | |
1571 | else | |
1572 | { | |
1573 | m_xScroll = 15; | |
1574 | m_yScroll = 0; | |
1575 | } | |
1576 | SetScrollbars( m_xScroll, m_yScroll, 0, 0, 0, 0 ); | |
bd8289c1 | 1577 | |
139adb6a RR |
1578 | m_usedKeys = TRUE; |
1579 | m_lastOnSame = FALSE; | |
1580 | m_renameTimer = new wxListRenameTimer( this ); | |
1581 | m_renameAccept = FALSE; | |
c801d85f | 1582 | |
91fc2bdc | 1583 | SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX ) ); |
e1e955e1 | 1584 | } |
c801d85f | 1585 | |
fd9811b1 | 1586 | wxListMainWindow::~wxListMainWindow() |
c801d85f | 1587 | { |
12c1b46a RR |
1588 | DeleteEverything(); |
1589 | ||
139adb6a | 1590 | if (m_hilightBrush) delete m_hilightBrush; |
004fd0c8 | 1591 | |
139adb6a | 1592 | delete m_renameTimer; |
e1e955e1 | 1593 | } |
c801d85f KB |
1594 | |
1595 | void wxListMainWindow::RefreshLine( wxListLineData *line ) | |
1596 | { | |
e6527f9d | 1597 | if (m_dirty) return; |
25e3a937 | 1598 | |
3d2d8da1 | 1599 | if (!line) return; |
f6bcfd97 | 1600 | |
139adb6a RR |
1601 | int x = 0; |
1602 | int y = 0; | |
1603 | int w = 0; | |
1604 | int h = 0; | |
3d2d8da1 RR |
1605 | line->GetExtent( x, y, w, h ); |
1606 | CalcScrolledPosition( x, y, &x, &y ); | |
1607 | wxRect rect( x, y, w, h ); | |
1608 | Refresh( TRUE, &rect ); | |
e1e955e1 | 1609 | } |
c801d85f KB |
1610 | |
1611 | void wxListMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) | |
1612 | { | |
f60d0f94 JS |
1613 | // Note: a wxPaintDC must be constructed even if no drawing is |
1614 | // done (a Windows requirement). | |
1615 | wxPaintDC dc( this ); | |
1616 | PrepareDC( dc ); | |
1617 | ||
139adb6a | 1618 | if (m_dirty) return; |
004fd0c8 | 1619 | |
139adb6a | 1620 | if (m_lines.GetCount() == 0) return; |
bd8289c1 | 1621 | |
139adb6a | 1622 | dc.BeginDrawing(); |
c801d85f | 1623 | |
139adb6a | 1624 | dc.SetFont( GetFont() ); |
004fd0c8 | 1625 | |
139adb6a RR |
1626 | if (m_mode & wxLC_REPORT) |
1627 | { | |
1628 | int lineSpacing = 0; | |
f6bcfd97 | 1629 | wxListLineData *line = &m_lines[0]; |
139adb6a RR |
1630 | int dummy = 0; |
1631 | line->GetSize( dummy, lineSpacing ); | |
1632 | lineSpacing += 1; | |
bffa1c77 | 1633 | |
139adb6a | 1634 | int y_s = m_yScroll*GetScrollPos( wxVERTICAL ); |
bffa1c77 | 1635 | |
f6bcfd97 BP |
1636 | size_t i_to = y_s / lineSpacing + m_visibleLines+2; |
1637 | if (i_to >= m_lines.GetCount()) i_to = m_lines.GetCount(); | |
1638 | for (size_t i = y_s / lineSpacing; i < i_to; i++) | |
bffa1c77 | 1639 | { |
f6bcfd97 | 1640 | m_lines[i].Draw( &dc ); |
bffa1c77 | 1641 | } |
139adb6a RR |
1642 | } |
1643 | else | |
1644 | { | |
f6bcfd97 BP |
1645 | for (size_t i = 0; i < m_lines.GetCount(); i++) |
1646 | m_lines[i].Draw( &dc ); | |
139adb6a | 1647 | } |
004fd0c8 | 1648 | |
139adb6a | 1649 | if (m_current) m_current->DrawRubberBand( &dc, m_hasFocus ); |
c801d85f | 1650 | |
139adb6a | 1651 | dc.EndDrawing(); |
e1e955e1 | 1652 | } |
c801d85f | 1653 | |
debe6624 | 1654 | void wxListMainWindow::HilightAll( bool on ) |
c801d85f | 1655 | { |
f6bcfd97 | 1656 | for (size_t i = 0; i < m_lines.GetCount(); i++) |
c801d85f | 1657 | { |
f6bcfd97 | 1658 | wxListLineData *line = &m_lines[i]; |
139adb6a RR |
1659 | if (line->IsHilighted() != on) |
1660 | { | |
1661 | line->Hilight( on ); | |
1662 | RefreshLine( line ); | |
1663 | } | |
e1e955e1 | 1664 | } |
e1e955e1 | 1665 | } |
c801d85f | 1666 | |
7798a18e | 1667 | void wxListMainWindow::SendNotify( wxListLineData *line, wxEventType command ) |
c801d85f | 1668 | { |
139adb6a RR |
1669 | wxListEvent le( command, GetParent()->GetId() ); |
1670 | le.SetEventObject( GetParent() ); | |
1671 | le.m_itemIndex = GetIndexOfLine( line ); | |
1672 | line->GetItem( 0, le.m_item ); | |
6e228e42 RR |
1673 | GetParent()->GetEventHandler()->ProcessEvent( le ); |
1674 | // GetParent()->GetEventHandler()->AddPendingEvent( le ); | |
e1e955e1 | 1675 | } |
c801d85f KB |
1676 | |
1677 | void wxListMainWindow::FocusLine( wxListLineData *WXUNUSED(line) ) | |
1678 | { | |
1679 | // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED ); | |
e1e955e1 | 1680 | } |
c801d85f KB |
1681 | |
1682 | void wxListMainWindow::UnfocusLine( wxListLineData *WXUNUSED(line) ) | |
1683 | { | |
1684 | // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED ); | |
e1e955e1 | 1685 | } |
c801d85f KB |
1686 | |
1687 | void wxListMainWindow::SelectLine( wxListLineData *line ) | |
1688 | { | |
139adb6a | 1689 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_SELECTED ); |
e1e955e1 | 1690 | } |
c801d85f KB |
1691 | |
1692 | void wxListMainWindow::DeselectLine( wxListLineData *line ) | |
1693 | { | |
139adb6a | 1694 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_DESELECTED ); |
e1e955e1 | 1695 | } |
c801d85f KB |
1696 | |
1697 | void wxListMainWindow::DeleteLine( wxListLineData *line ) | |
1698 | { | |
139adb6a | 1699 | SendNotify( line, wxEVT_COMMAND_LIST_DELETE_ITEM ); |
e1e955e1 | 1700 | } |
c801d85f | 1701 | |
e179bd65 | 1702 | /* *** */ |
ee7ee469 | 1703 | |
5f1ea0ee | 1704 | void wxListMainWindow::EditLabel( long item ) |
c801d85f | 1705 | { |
f6bcfd97 BP |
1706 | wxCHECK_RET( ((size_t)item < m_lines.GetCount()), |
1707 | wxT("wrong index in wxListCtrl::Edit()") ); | |
004fd0c8 | 1708 | |
f6bcfd97 | 1709 | m_currentEdit = &m_lines[(size_t)item]; |
e179bd65 | 1710 | |
fd9811b1 | 1711 | wxListEvent le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, GetParent()->GetId() ); |
139adb6a | 1712 | le.SetEventObject( GetParent() ); |
e179bd65 RR |
1713 | le.m_itemIndex = GetIndexOfLine( m_currentEdit ); |
1714 | m_currentEdit->GetItem( 0, le.m_item ); | |
139adb6a | 1715 | GetParent()->GetEventHandler()->ProcessEvent( le ); |
004fd0c8 | 1716 | |
86f975a8 | 1717 | if (!le.IsAllowed()) |
5f1ea0ee | 1718 | return; |
004fd0c8 | 1719 | |
dc6c62a9 RR |
1720 | // We have to call this here because the label in |
1721 | // question might just have been added and no screen | |
1722 | // update taken place. | |
1723 | if (m_dirty) wxYield(); | |
1724 | ||
92976ab6 | 1725 | wxString s; |
e179bd65 | 1726 | m_currentEdit->GetText( 0, s ); |
92976ab6 RR |
1727 | int x = 0; |
1728 | int y = 0; | |
1729 | int w = 0; | |
1730 | int h = 0; | |
e179bd65 | 1731 | m_currentEdit->GetLabelExtent( x, y, w, h ); |
004fd0c8 | 1732 | |
92976ab6 RR |
1733 | wxClientDC dc(this); |
1734 | PrepareDC( dc ); | |
1735 | x = dc.LogicalToDeviceX( x ); | |
1736 | y = dc.LogicalToDeviceY( y ); | |
bd8289c1 | 1737 | |
92976ab6 RR |
1738 | wxListTextCtrl *text = new wxListTextCtrl( |
1739 | this, -1, &m_renameAccept, &m_renameRes, this, s, wxPoint(x-4,y-4), wxSize(w+11,h+8) ); | |
1740 | text->SetFocus(); | |
e1e955e1 | 1741 | } |
c801d85f | 1742 | |
e179bd65 RR |
1743 | void wxListMainWindow::OnRenameTimer() |
1744 | { | |
223d09f6 | 1745 | wxCHECK_RET( m_current, wxT("invalid m_current") ); |
004fd0c8 | 1746 | |
f6bcfd97 | 1747 | Edit( m_lines.Index( *m_current ) ); |
e179bd65 RR |
1748 | } |
1749 | ||
c801d85f KB |
1750 | void wxListMainWindow::OnRenameAccept() |
1751 | { | |
e179bd65 RR |
1752 | wxListEvent le( wxEVT_COMMAND_LIST_END_LABEL_EDIT, GetParent()->GetId() ); |
1753 | le.SetEventObject( GetParent() ); | |
1754 | le.m_itemIndex = GetIndexOfLine( m_currentEdit ); | |
1755 | m_currentEdit->GetItem( 0, le.m_item ); | |
1756 | le.m_item.m_text = m_renameRes; | |
1757 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
004fd0c8 | 1758 | |
e179bd65 | 1759 | if (!le.IsAllowed()) return; |
004fd0c8 | 1760 | |
5f1ea0ee RR |
1761 | wxListItem info; |
1762 | info.m_mask = wxLIST_MASK_TEXT; | |
1763 | info.m_itemId = le.m_itemIndex; | |
1764 | info.m_text = m_renameRes; | |
aaa37c0d | 1765 | info.SetTextColour(le.m_item.GetTextColour()); |
5f1ea0ee | 1766 | SetItem( info ); |
e1e955e1 | 1767 | } |
c801d85f KB |
1768 | |
1769 | void wxListMainWindow::OnMouse( wxMouseEvent &event ) | |
1770 | { | |
92976ab6 | 1771 | if (GetParent()->GetEventHandler()->ProcessEvent( event)) return; |
e3e65dac | 1772 | |
92976ab6 RR |
1773 | if (!m_current) return; |
1774 | if (m_dirty) return; | |
0b855868 | 1775 | if ( !(event.Dragging() || event.ButtonDown() || event.LeftUp() || event.ButtonDClick()) ) return; |
c801d85f | 1776 | |
aaef15bf RR |
1777 | int x = event.GetX(); |
1778 | int y = event.GetY(); | |
1779 | CalcUnscrolledPosition( x, y, &x, &y ); | |
004fd0c8 | 1780 | |
51cc4dad | 1781 | /* Did we actually hit an item ? */ |
92976ab6 | 1782 | long hitResult = 0; |
92976ab6 | 1783 | wxListLineData *line = (wxListLineData *) NULL; |
f6bcfd97 | 1784 | for (size_t i = 0; i < m_lines.GetCount(); i++) |
92976ab6 | 1785 | { |
f6bcfd97 | 1786 | line = &m_lines[i]; |
92976ab6 RR |
1787 | hitResult = line->IsHit( x, y ); |
1788 | if (hitResult) break; | |
1789 | line = (wxListLineData *) NULL; | |
92976ab6 | 1790 | } |
bd8289c1 | 1791 | |
fd9811b1 | 1792 | if (event.Dragging()) |
92976ab6 | 1793 | { |
fd9811b1 | 1794 | if (m_dragCount == 0) |
bffa1c77 VZ |
1795 | m_dragStart = wxPoint(x,y); |
1796 | ||
fd9811b1 | 1797 | m_dragCount++; |
bffa1c77 VZ |
1798 | |
1799 | if (m_dragCount != 3) return; | |
1800 | ||
1801 | int command = wxEVT_COMMAND_LIST_BEGIN_DRAG; | |
1802 | if (event.RightIsDown()) command = wxEVT_COMMAND_LIST_BEGIN_RDRAG; | |
1803 | ||
fd9811b1 | 1804 | wxListEvent le( command, GetParent()->GetId() ); |
92976ab6 | 1805 | le.SetEventObject( GetParent() ); |
bffa1c77 VZ |
1806 | le.m_pointDrag = m_dragStart; |
1807 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
1808 | ||
1809 | return; | |
92976ab6 | 1810 | } |
fd9811b1 RR |
1811 | else |
1812 | { | |
1813 | m_dragCount = 0; | |
1814 | } | |
bd8289c1 | 1815 | |
92976ab6 | 1816 | if (!line) return; |
bd8289c1 | 1817 | |
efbb7287 | 1818 | bool forceClick = FALSE; |
92976ab6 RR |
1819 | if (event.ButtonDClick()) |
1820 | { | |
92976ab6 | 1821 | m_renameTimer->Stop(); |
efbb7287 VZ |
1822 | m_lastOnSame = FALSE; |
1823 | ||
1824 | if ( line == m_lineBeforeLastClicked ) | |
1825 | { | |
1826 | m_usedKeys = FALSE; | |
004fd0c8 | 1827 | |
efbb7287 | 1828 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_ACTIVATED ); |
004fd0c8 | 1829 | |
efbb7287 VZ |
1830 | return; |
1831 | } | |
1832 | else | |
1833 | { | |
1834 | // the first click was on another item, so don't interpret this as | |
1835 | // a double click, but as a simple click instead | |
1836 | forceClick = TRUE; | |
1837 | } | |
92976ab6 | 1838 | } |
bd8289c1 | 1839 | |
92976ab6 | 1840 | if (event.LeftUp() && m_lastOnSame) |
c801d85f | 1841 | { |
92976ab6 RR |
1842 | m_usedKeys = FALSE; |
1843 | if ((line == m_current) && | |
1844 | (hitResult == wxLIST_HITTEST_ONITEMLABEL) && | |
1845 | (m_mode & wxLC_EDIT_LABELS) ) | |
1846 | { | |
1847 | m_renameTimer->Start( 100, TRUE ); | |
1848 | } | |
1849 | m_lastOnSame = FALSE; | |
1850 | return; | |
e1e955e1 | 1851 | } |
bd8289c1 | 1852 | |
92976ab6 | 1853 | if (event.RightDown()) |
b204641e | 1854 | { |
92976ab6 RR |
1855 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK ); |
1856 | return; | |
b204641e | 1857 | } |
004fd0c8 | 1858 | |
92976ab6 | 1859 | if (event.MiddleDown()) |
b204641e | 1860 | { |
92976ab6 RR |
1861 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK ); |
1862 | return; | |
1863 | } | |
004fd0c8 | 1864 | |
efbb7287 | 1865 | if ( event.LeftDown() || forceClick ) |
92976ab6 | 1866 | { |
efbb7287 VZ |
1867 | m_lineBeforeLastClicked = m_lineLastClicked; |
1868 | m_lineLastClicked = line; | |
1869 | ||
92976ab6 RR |
1870 | m_usedKeys = FALSE; |
1871 | wxListLineData *oldCurrent = m_current; | |
1872 | if (m_mode & wxLC_SINGLE_SEL) | |
b204641e | 1873 | { |
92976ab6 RR |
1874 | m_current = line; |
1875 | HilightAll( FALSE ); | |
1876 | m_current->ReverseHilight(); | |
1877 | RefreshLine( m_current ); | |
e1e955e1 | 1878 | } |
92976ab6 | 1879 | else |
b204641e | 1880 | { |
473d087e | 1881 | if (event.ControlDown()) |
92976ab6 RR |
1882 | { |
1883 | m_current = line; | |
1884 | m_current->ReverseHilight(); | |
1885 | RefreshLine( m_current ); | |
1886 | } | |
473d087e | 1887 | else if (event.ShiftDown()) |
92976ab6 | 1888 | { |
f6bcfd97 BP |
1889 | size_t j; |
1890 | ||
92976ab6 | 1891 | m_current = line; |
bffa1c77 | 1892 | |
92976ab6 | 1893 | int numOfCurrent = -1; |
f6bcfd97 | 1894 | for (j = 0; j < m_lines.GetCount(); j++) |
92976ab6 | 1895 | { |
f6bcfd97 | 1896 | wxListLineData *test_line = &m_lines[j]; |
92976ab6 RR |
1897 | numOfCurrent++; |
1898 | if (test_line == oldCurrent) break; | |
92976ab6 | 1899 | } |
bffa1c77 | 1900 | |
92976ab6 | 1901 | int numOfLine = -1; |
f6bcfd97 BP |
1902 | |
1903 | for (j = 0; j < m_lines.GetCount(); j++) | |
92976ab6 | 1904 | { |
f6bcfd97 | 1905 | wxListLineData *test_line = &m_lines[j]; |
92976ab6 RR |
1906 | numOfLine++; |
1907 | if (test_line == line) break; | |
92976ab6 RR |
1908 | } |
1909 | ||
1910 | if (numOfLine < numOfCurrent) | |
004fd0c8 | 1911 | { |
bffa1c77 VZ |
1912 | int i = numOfLine; |
1913 | numOfLine = numOfCurrent; | |
1914 | numOfCurrent = i; | |
1915 | } | |
1916 | ||
92976ab6 RR |
1917 | for (int i = 0; i <= numOfLine-numOfCurrent; i++) |
1918 | { | |
f6bcfd97 | 1919 | wxListLineData *test_line= &m_lines[numOfCurrent + i]; |
92976ab6 RR |
1920 | test_line->Hilight(TRUE); |
1921 | RefreshLine( test_line ); | |
92976ab6 RR |
1922 | } |
1923 | } | |
1924 | else | |
1925 | { | |
1926 | m_current = line; | |
1927 | HilightAll( FALSE ); | |
1928 | m_current->ReverseHilight(); | |
1929 | RefreshLine( m_current ); | |
1930 | } | |
e1e955e1 | 1931 | } |
92976ab6 RR |
1932 | if (m_current != oldCurrent) |
1933 | { | |
1934 | RefreshLine( oldCurrent ); | |
1935 | UnfocusLine( oldCurrent ); | |
1936 | FocusLine( m_current ); | |
1937 | } | |
efbb7287 VZ |
1938 | |
1939 | // forceClick is only set if the previous click was on another item | |
1940 | m_lastOnSame = !forceClick && (m_current == oldCurrent); | |
1941 | ||
92976ab6 | 1942 | return; |
e1e955e1 | 1943 | } |
e1e955e1 | 1944 | } |
c801d85f | 1945 | |
e179bd65 | 1946 | void wxListMainWindow::MoveToFocus() |
c801d85f | 1947 | { |
92976ab6 | 1948 | if (!m_current) return; |
004fd0c8 | 1949 | |
cf3da716 RR |
1950 | int item_x = 0; |
1951 | int item_y = 0; | |
1952 | int item_w = 0; | |
1953 | int item_h = 0; | |
1954 | m_current->GetExtent( item_x, item_y, item_w, item_h ); | |
1955 | ||
1956 | int client_w = 0; | |
1957 | int client_h = 0; | |
1958 | GetClientSize( &client_w, &client_h ); | |
f6bcfd97 | 1959 | |
cf3da716 RR |
1960 | int view_x = m_xScroll*GetScrollPos( wxHORIZONTAL ); |
1961 | int view_y = m_yScroll*GetScrollPos( wxVERTICAL ); | |
004fd0c8 | 1962 | |
92976ab6 RR |
1963 | if (m_mode & wxLC_REPORT) |
1964 | { | |
f6bcfd97 BP |
1965 | if (item_y-5 < view_y ) |
1966 | Scroll( -1, (item_y-5)/m_yScroll ); | |
1967 | if (item_y+item_h+5 > view_y+client_h) | |
cf3da716 | 1968 | Scroll( -1, (item_y+item_h-client_h+15)/m_yScroll ); |
92976ab6 RR |
1969 | } |
1970 | else | |
1971 | { | |
f6bcfd97 | 1972 | if (item_x-view_x < 5) |
cf3da716 | 1973 | Scroll( (item_x-5)/m_xScroll, -1 ); |
f6bcfd97 | 1974 | if (item_x+item_w-5 > view_x+client_w) |
cf3da716 | 1975 | Scroll( (item_x+item_w-client_w+15)/m_xScroll, -1 ); |
92976ab6 | 1976 | } |
e1e955e1 | 1977 | } |
c801d85f KB |
1978 | |
1979 | void wxListMainWindow::OnArrowChar( wxListLineData *newCurrent, bool shiftDown ) | |
1980 | { | |
92976ab6 RR |
1981 | if ((m_mode & wxLC_SINGLE_SEL) || (m_usedKeys == FALSE)) m_current->Hilight( FALSE ); |
1982 | wxListLineData *oldCurrent = m_current; | |
1983 | m_current = newCurrent; | |
92976ab6 RR |
1984 | if (shiftDown || (m_mode & wxLC_SINGLE_SEL)) m_current->Hilight( TRUE ); |
1985 | RefreshLine( m_current ); | |
1986 | RefreshLine( oldCurrent ); | |
1987 | FocusLine( m_current ); | |
1988 | UnfocusLine( oldCurrent ); | |
cf3da716 | 1989 | MoveToFocus(); |
e1e955e1 | 1990 | } |
c801d85f | 1991 | |
3dfb93fd RR |
1992 | void wxListMainWindow::OnKeyDown( wxKeyEvent &event ) |
1993 | { | |
1994 | wxWindow *parent = GetParent(); | |
004fd0c8 | 1995 | |
3dfb93fd RR |
1996 | /* we propagate the key event up */ |
1997 | wxKeyEvent ke( wxEVT_KEY_DOWN ); | |
1998 | ke.m_shiftDown = event.m_shiftDown; | |
1999 | ke.m_controlDown = event.m_controlDown; | |
2000 | ke.m_altDown = event.m_altDown; | |
2001 | ke.m_metaDown = event.m_metaDown; | |
2002 | ke.m_keyCode = event.m_keyCode; | |
2003 | ke.m_x = event.m_x; | |
2004 | ke.m_y = event.m_y; | |
2005 | ke.SetEventObject( parent ); | |
2006 | if (parent->GetEventHandler()->ProcessEvent( ke )) return; | |
004fd0c8 | 2007 | |
3dfb93fd RR |
2008 | event.Skip(); |
2009 | } | |
004fd0c8 | 2010 | |
c801d85f KB |
2011 | void wxListMainWindow::OnChar( wxKeyEvent &event ) |
2012 | { | |
51cc4dad | 2013 | wxWindow *parent = GetParent(); |
004fd0c8 | 2014 | |
51cc4dad | 2015 | /* we send a list_key event up */ |
f6bcfd97 BP |
2016 | if ( m_current ) |
2017 | { | |
2018 | wxListEvent le( wxEVT_COMMAND_LIST_KEY_DOWN, GetParent()->GetId() ); | |
2019 | le.m_itemIndex = GetIndexOfLine( m_current ); | |
2020 | m_current->GetItem( 0, le.m_item ); | |
2021 | le.m_code = (int)event.KeyCode(); | |
2022 | le.SetEventObject( parent ); | |
2023 | parent->GetEventHandler()->ProcessEvent( le ); | |
2024 | } | |
51cc4dad | 2025 | |
3dfb93fd RR |
2026 | /* we propagate the char event up */ |
2027 | wxKeyEvent ke( wxEVT_CHAR ); | |
51cc4dad RR |
2028 | ke.m_shiftDown = event.m_shiftDown; |
2029 | ke.m_controlDown = event.m_controlDown; | |
2030 | ke.m_altDown = event.m_altDown; | |
2031 | ke.m_metaDown = event.m_metaDown; | |
2032 | ke.m_keyCode = event.m_keyCode; | |
2033 | ke.m_x = event.m_x; | |
2034 | ke.m_y = event.m_y; | |
2035 | ke.SetEventObject( parent ); | |
2036 | if (parent->GetEventHandler()->ProcessEvent( ke )) return; | |
004fd0c8 | 2037 | |
012a03e0 RR |
2038 | if (event.KeyCode() == WXK_TAB) |
2039 | { | |
2040 | wxNavigationKeyEvent nevent; | |
c5145d41 | 2041 | nevent.SetWindowChange( event.ControlDown() ); |
012a03e0 | 2042 | nevent.SetDirection( !event.ShiftDown() ); |
8253c7fd | 2043 | nevent.SetEventObject( GetParent()->GetParent() ); |
012a03e0 | 2044 | nevent.SetCurrentFocus( m_parent ); |
8253c7fd | 2045 | if (GetParent()->GetParent()->GetEventHandler()->ProcessEvent( nevent )) return; |
012a03e0 | 2046 | } |
004fd0c8 | 2047 | |
51cc4dad RR |
2048 | /* no item -> nothing to do */ |
2049 | if (!m_current) | |
c801d85f | 2050 | { |
51cc4dad RR |
2051 | event.Skip(); |
2052 | return; | |
e1e955e1 | 2053 | } |
51cc4dad RR |
2054 | |
2055 | switch (event.KeyCode()) | |
c801d85f | 2056 | { |
51cc4dad RR |
2057 | case WXK_UP: |
2058 | { | |
f6bcfd97 BP |
2059 | int index = m_lines.Index(*m_current); |
2060 | if (index != wxNOT_FOUND && index > 0) | |
2061 | OnArrowChar( &m_lines[index-1], event.ShiftDown() ); | |
51cc4dad RR |
2062 | break; |
2063 | } | |
2064 | case WXK_DOWN: | |
2065 | { | |
f6bcfd97 BP |
2066 | int index = m_lines.Index(*m_current); |
2067 | if (index != wxNOT_FOUND && (size_t)index < m_lines.GetCount()-1) | |
2068 | OnArrowChar( &m_lines[index+1], event.ShiftDown() ); | |
51cc4dad RR |
2069 | break; |
2070 | } | |
2071 | case WXK_END: | |
2072 | { | |
f6bcfd97 BP |
2073 | if (!m_lines.IsEmpty()) |
2074 | OnArrowChar( &m_lines.Last(), event.ShiftDown() ); | |
51cc4dad RR |
2075 | break; |
2076 | } | |
2077 | case WXK_HOME: | |
2078 | { | |
f6bcfd97 BP |
2079 | if (!m_lines.IsEmpty()) |
2080 | OnArrowChar( &m_lines[0], event.ShiftDown() ); | |
51cc4dad RR |
2081 | break; |
2082 | } | |
2083 | case WXK_PRIOR: | |
2084 | { | |
2085 | int steps = 0; | |
f6bcfd97 | 2086 | int index = m_lines.Index(*m_current); |
004fd0c8 | 2087 | if (m_mode & wxLC_REPORT) |
bffa1c77 VZ |
2088 | { |
2089 | steps = m_visibleLines-1; | |
2090 | } | |
51cc4dad RR |
2091 | else |
2092 | { | |
f6bcfd97 BP |
2093 | steps = index % m_visibleLines; |
2094 | } | |
2095 | if (index != wxNOT_FOUND) | |
2096 | { | |
2097 | index -= steps; | |
2098 | if (index < 0) index = 0; | |
2099 | OnArrowChar( &m_lines[index], event.ShiftDown() ); | |
51cc4dad | 2100 | } |
51cc4dad RR |
2101 | break; |
2102 | } | |
2103 | case WXK_NEXT: | |
2104 | { | |
2105 | int steps = 0; | |
f6bcfd97 | 2106 | int index = m_lines.Index(*m_current); |
004fd0c8 | 2107 | if (m_mode & wxLC_REPORT) |
bffa1c77 VZ |
2108 | { |
2109 | steps = m_visibleLines-1; | |
2110 | } | |
51cc4dad RR |
2111 | else |
2112 | { | |
f6bcfd97 BP |
2113 | steps = m_visibleLines-(index % m_visibleLines)-1; |
2114 | } | |
2115 | ||
2116 | if (index != wxNOT_FOUND) | |
2117 | { | |
2118 | index += steps; | |
2119 | if ((size_t)index >= m_lines.GetCount()) | |
2120 | index = m_lines.GetCount()-1; | |
2121 | OnArrowChar( &m_lines[index], event.ShiftDown() ); | |
51cc4dad | 2122 | } |
51cc4dad RR |
2123 | break; |
2124 | } | |
2125 | case WXK_LEFT: | |
2126 | { | |
2127 | if (!(m_mode & wxLC_REPORT)) | |
2128 | { | |
f6bcfd97 BP |
2129 | int index = m_lines.Index(*m_current); |
2130 | if (index != wxNOT_FOUND) | |
2131 | { | |
2132 | index -= m_visibleLines; | |
2133 | if (index < 0) index = 0; | |
2134 | OnArrowChar( &m_lines[index], event.ShiftDown() ); | |
2135 | } | |
51cc4dad RR |
2136 | } |
2137 | break; | |
2138 | } | |
2139 | case WXK_RIGHT: | |
2140 | { | |
2141 | if (!(m_mode & wxLC_REPORT)) | |
2142 | { | |
f6bcfd97 BP |
2143 | int index = m_lines.Index(*m_current); |
2144 | if (index != wxNOT_FOUND) | |
2145 | { | |
2146 | index += m_visibleLines; | |
2147 | if ((size_t)index >= m_lines.GetCount()) | |
2148 | index = m_lines.GetCount()-1; | |
2149 | OnArrowChar( &m_lines[index], event.ShiftDown() ); | |
2150 | } | |
51cc4dad RR |
2151 | } |
2152 | break; | |
2153 | } | |
2154 | case WXK_SPACE: | |
2155 | { | |
33d0e17c RR |
2156 | if (m_mode & wxLC_SINGLE_SEL) |
2157 | { | |
2158 | wxListEvent le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED, GetParent()->GetId() ); | |
2159 | le.SetEventObject( GetParent() ); | |
2160 | le.m_itemIndex = GetIndexOfLine( m_current ); | |
2161 | m_current->GetItem( 0, le.m_item ); | |
2162 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
2163 | } | |
2164 | else | |
2165 | { | |
2166 | m_current->ReverseHilight(); | |
2167 | RefreshLine( m_current ); | |
2168 | } | |
51cc4dad RR |
2169 | break; |
2170 | } | |
2171 | case WXK_INSERT: | |
2172 | { | |
2173 | if (!(m_mode & wxLC_SINGLE_SEL)) | |
2174 | { | |
2175 | wxListLineData *oldCurrent = m_current; | |
2176 | m_current->ReverseHilight(); | |
f6bcfd97 BP |
2177 | int index = m_lines.Index( *m_current ) + 1; |
2178 | if ( (size_t)index < m_lines.GetCount() ) | |
2179 | m_current = &m_lines[index]; | |
51cc4dad RR |
2180 | RefreshLine( oldCurrent ); |
2181 | RefreshLine( m_current ); | |
2182 | UnfocusLine( oldCurrent ); | |
2183 | FocusLine( m_current ); | |
cf3da716 | 2184 | MoveToFocus(); |
51cc4dad RR |
2185 | } |
2186 | break; | |
2187 | } | |
2188 | case WXK_RETURN: | |
2189 | case WXK_EXECUTE: | |
2190 | { | |
2191 | wxListEvent le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED, GetParent()->GetId() ); | |
2192 | le.SetEventObject( GetParent() ); | |
2193 | le.m_itemIndex = GetIndexOfLine( m_current ); | |
2194 | m_current->GetItem( 0, le.m_item ); | |
2195 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
2196 | break; | |
2197 | } | |
2198 | default: | |
2199 | { | |
2200 | event.Skip(); | |
2201 | return; | |
2202 | } | |
e1e955e1 | 2203 | } |
51cc4dad | 2204 | m_usedKeys = TRUE; |
e1e955e1 | 2205 | } |
c801d85f | 2206 | |
cae5359f RR |
2207 | #ifdef __WXGTK__ |
2208 | extern wxWindow *g_focusWindow; | |
2209 | #endif | |
2210 | ||
c801d85f KB |
2211 | void wxListMainWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) ) |
2212 | { | |
63852e78 RR |
2213 | m_hasFocus = TRUE; |
2214 | RefreshLine( m_current ); | |
bd8289c1 | 2215 | |
63852e78 | 2216 | if (!GetParent()) return; |
004fd0c8 | 2217 | |
cae5359f RR |
2218 | #ifdef __WXGTK__ |
2219 | g_focusWindow = GetParent(); | |
2220 | #endif | |
bd8289c1 | 2221 | |
63852e78 RR |
2222 | wxFocusEvent event( wxEVT_SET_FOCUS, GetParent()->GetId() ); |
2223 | event.SetEventObject( GetParent() ); | |
2224 | GetParent()->GetEventHandler()->ProcessEvent( event ); | |
e1e955e1 | 2225 | } |
c801d85f KB |
2226 | |
2227 | void wxListMainWindow::OnKillFocus( wxFocusEvent &WXUNUSED(event) ) | |
2228 | { | |
63852e78 RR |
2229 | m_hasFocus = FALSE; |
2230 | RefreshLine( m_current ); | |
e1e955e1 | 2231 | } |
c801d85f KB |
2232 | |
2233 | void wxListMainWindow::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
2234 | { | |
2235 | /* | |
2236 | We don't even allow the wxScrolledWindow::AdjustScrollbars() call | |
004fd0c8 | 2237 | |
c801d85f | 2238 | */ |
2035e10e | 2239 | m_dirty = TRUE; |
e1e955e1 | 2240 | } |
c801d85f | 2241 | |
1e6d9499 | 2242 | void wxListMainWindow::DrawImage( int index, wxDC *dc, int x, int y ) |
c801d85f | 2243 | { |
63852e78 RR |
2244 | if ((m_mode & wxLC_ICON) && (m_normal_image_list)) |
2245 | { | |
2246 | m_normal_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
2247 | return; | |
2248 | } | |
2249 | if ((m_mode & wxLC_SMALL_ICON) && (m_small_image_list)) | |
2250 | { | |
2251 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
2252 | } | |
0b855868 RR |
2253 | if ((m_mode & wxLC_LIST) && (m_small_image_list)) |
2254 | { | |
2255 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
2256 | } | |
63852e78 RR |
2257 | if ((m_mode & wxLC_REPORT) && (m_small_image_list)) |
2258 | { | |
2259 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
2260 | return; | |
2261 | } | |
e1e955e1 | 2262 | } |
c801d85f KB |
2263 | |
2264 | void wxListMainWindow::GetImageSize( int index, int &width, int &height ) | |
2265 | { | |
63852e78 RR |
2266 | if ((m_mode & wxLC_ICON) && (m_normal_image_list)) |
2267 | { | |
2268 | m_normal_image_list->GetSize( index, width, height ); | |
2269 | return; | |
2270 | } | |
2271 | if ((m_mode & wxLC_SMALL_ICON) && (m_small_image_list)) | |
2272 | { | |
2273 | m_small_image_list->GetSize( index, width, height ); | |
2274 | return; | |
2275 | } | |
0b855868 RR |
2276 | if ((m_mode & wxLC_LIST) && (m_small_image_list)) |
2277 | { | |
2278 | m_small_image_list->GetSize( index, width, height ); | |
2279 | return; | |
2280 | } | |
63852e78 RR |
2281 | if ((m_mode & wxLC_REPORT) && (m_small_image_list)) |
2282 | { | |
2283 | m_small_image_list->GetSize( index, width, height ); | |
2284 | return; | |
2285 | } | |
2286 | width = 0; | |
2287 | height = 0; | |
e1e955e1 | 2288 | } |
c801d85f KB |
2289 | |
2290 | int wxListMainWindow::GetTextLength( wxString &s ) | |
2291 | { | |
1e6d9499 | 2292 | wxClientDC dc( this ); |
13111b2a VZ |
2293 | wxCoord lw = 0; |
2294 | wxCoord lh = 0; | |
139adb6a RR |
2295 | dc.GetTextExtent( s, &lw, &lh ); |
2296 | return lw + 6; | |
e1e955e1 | 2297 | } |
c801d85f KB |
2298 | |
2299 | int wxListMainWindow::GetIndexOfLine( const wxListLineData *line ) | |
2300 | { | |
f6bcfd97 BP |
2301 | int i = m_lines.Index(*line); |
2302 | if (i == wxNOT_FOUND) return -1; | |
2303 | else return i; | |
e1e955e1 | 2304 | } |
c801d85f | 2305 | |
debe6624 | 2306 | void wxListMainWindow::SetImageList( wxImageList *imageList, int which ) |
c801d85f | 2307 | { |
139adb6a | 2308 | m_dirty = TRUE; |
f6bcfd97 BP |
2309 | |
2310 | // calc the spacing from the icon size | |
2311 | int width = 0, | |
2312 | height = 0; | |
2313 | if ((imageList) && (imageList->GetImageCount()) ) | |
2314 | { | |
2315 | imageList->GetSize(0, width, height); | |
2316 | } | |
2317 | ||
2318 | if (which == wxIMAGE_LIST_NORMAL) | |
2319 | { | |
2320 | m_normal_image_list = imageList; | |
2321 | m_normal_spacing = width + 8; | |
2322 | } | |
2323 | ||
2324 | if (which == wxIMAGE_LIST_SMALL) | |
2325 | { | |
2326 | m_small_image_list = imageList; | |
2327 | m_small_spacing = width + 14; | |
2328 | } | |
e1e955e1 | 2329 | } |
c801d85f | 2330 | |
debe6624 | 2331 | void wxListMainWindow::SetItemSpacing( int spacing, bool isSmall ) |
c801d85f | 2332 | { |
139adb6a RR |
2333 | m_dirty = TRUE; |
2334 | if (isSmall) | |
2335 | { | |
2336 | m_small_spacing = spacing; | |
2337 | } | |
2338 | else | |
2339 | { | |
2340 | m_normal_spacing = spacing; | |
2341 | } | |
e1e955e1 | 2342 | } |
c801d85f | 2343 | |
debe6624 | 2344 | int wxListMainWindow::GetItemSpacing( bool isSmall ) |
c801d85f | 2345 | { |
f6bcfd97 | 2346 | return isSmall ? m_small_spacing : m_normal_spacing; |
e1e955e1 | 2347 | } |
c801d85f | 2348 | |
debe6624 | 2349 | void wxListMainWindow::SetColumn( int col, wxListItem &item ) |
c801d85f | 2350 | { |
63852e78 RR |
2351 | m_dirty = TRUE; |
2352 | wxNode *node = m_columns.Nth( col ); | |
2353 | if (node) | |
2354 | { | |
2355 | if (item.m_width == wxLIST_AUTOSIZE_USEHEADER) item.m_width = GetTextLength( item.m_text )+7; | |
2356 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
2357 | column->SetItem( item ); | |
2358 | } | |
f6bcfd97 BP |
2359 | |
2360 | wxListHeaderWindow *headerWin = ((wxListCtrl*) GetParent())->m_headerWin; | |
2361 | if ( headerWin ) | |
2362 | headerWin->m_dirty = TRUE; | |
e1e955e1 | 2363 | } |
c801d85f | 2364 | |
debe6624 | 2365 | void wxListMainWindow::SetColumnWidth( int col, int width ) |
c801d85f | 2366 | { |
f6bcfd97 BP |
2367 | wxCHECK_RET( m_mode & wxLC_REPORT, |
2368 | _T("SetColumnWidth() can only be called in report mode.") ); | |
0208334d | 2369 | |
63852e78 | 2370 | m_dirty = TRUE; |
bd8289c1 | 2371 | |
0180dad6 RR |
2372 | wxNode *node = (wxNode*) NULL; |
2373 | ||
f6bcfd97 BP |
2374 | if (width == wxLIST_AUTOSIZE_USEHEADER) |
2375 | { | |
2376 | // TODO do use the header | |
2377 | width = 80; | |
2378 | } | |
2379 | else if (width == wxLIST_AUTOSIZE) | |
0180dad6 RR |
2380 | { |
2381 | wxClientDC dc(this); | |
2382 | dc.SetFont( GetFont() ); | |
2383 | int max = 10; | |
f6bcfd97 BP |
2384 | |
2385 | for (size_t i = 0; i < m_lines.GetCount(); i++) | |
0180dad6 | 2386 | { |
f6bcfd97 | 2387 | wxListLineData *line = &m_lines[i]; |
0180dad6 RR |
2388 | wxNode *n = line->m_items.Nth( col ); |
2389 | if (n) | |
2390 | { | |
2391 | wxListItemData *item = (wxListItemData*)n->Data(); | |
bffa1c77 | 2392 | int current = 0, ix = 0, iy = 0; |
13111b2a | 2393 | wxCoord lx = 0, ly = 0; |
bffa1c77 VZ |
2394 | if (item->HasImage()) |
2395 | { | |
0180dad6 | 2396 | GetImageSize( item->GetImage(), ix, iy ); |
bffa1c77 VZ |
2397 | current = ix + 5; |
2398 | } | |
2399 | if (item->HasText()) | |
2400 | { | |
2401 | wxString str; | |
2402 | item->GetText( str ); | |
2403 | dc.GetTextExtent( str, &lx, &ly ); | |
2404 | current += lx; | |
2405 | } | |
2406 | if (current > max) max = current; | |
0180dad6 | 2407 | } |
0180dad6 | 2408 | } |
bffa1c77 | 2409 | width = max+10; |
0180dad6 RR |
2410 | } |
2411 | ||
2412 | node = m_columns.Nth( col ); | |
63852e78 RR |
2413 | if (node) |
2414 | { | |
2415 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
2416 | column->SetWidth( width ); | |
2417 | } | |
bd8289c1 | 2418 | |
f6bcfd97 | 2419 | for (size_t i = 0; i < m_lines.GetCount(); i++) |
0208334d | 2420 | { |
f6bcfd97 | 2421 | wxListLineData *line = &m_lines[i]; |
63852e78 RR |
2422 | wxNode *n = line->m_items.Nth( col ); |
2423 | if (n) | |
2424 | { | |
2425 | wxListItemData *item = (wxListItemData*)n->Data(); | |
2426 | item->SetSize( width, -1 ); | |
2427 | } | |
0208334d | 2428 | } |
bd8289c1 | 2429 | |
f6bcfd97 BP |
2430 | wxListHeaderWindow *headerWin = ((wxListCtrl*) GetParent())->m_headerWin; |
2431 | if ( headerWin ) | |
2432 | headerWin->m_dirty = TRUE; | |
e1e955e1 | 2433 | } |
c801d85f | 2434 | |
debe6624 | 2435 | void wxListMainWindow::GetColumn( int col, wxListItem &item ) |
c801d85f | 2436 | { |
63852e78 RR |
2437 | wxNode *node = m_columns.Nth( col ); |
2438 | if (node) | |
2439 | { | |
2440 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
2441 | column->GetItem( item ); | |
2442 | } | |
2443 | else | |
2444 | { | |
2445 | item.m_format = 0; | |
2446 | item.m_width = 0; | |
2447 | item.m_text = ""; | |
2448 | item.m_image = 0; | |
2449 | item.m_data = 0; | |
2450 | } | |
e1e955e1 | 2451 | } |
c801d85f | 2452 | |
bd8289c1 | 2453 | int wxListMainWindow::GetColumnWidth( int col ) |
c801d85f | 2454 | { |
92976ab6 RR |
2455 | wxNode *node = m_columns.Nth( col ); |
2456 | if (node) | |
2457 | { | |
2458 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
2459 | return column->GetWidth(); | |
2460 | } | |
2461 | else | |
2462 | { | |
004fd0c8 | 2463 | return 0; |
92976ab6 | 2464 | } |
e1e955e1 | 2465 | } |
c801d85f | 2466 | |
e179bd65 | 2467 | int wxListMainWindow::GetColumnCount() |
c801d85f | 2468 | { |
92976ab6 | 2469 | return m_columns.Number(); |
e1e955e1 | 2470 | } |
c801d85f | 2471 | |
e179bd65 | 2472 | int wxListMainWindow::GetCountPerPage() |
c801d85f | 2473 | { |
92976ab6 | 2474 | return m_visibleLines; |
e1e955e1 | 2475 | } |
c801d85f KB |
2476 | |
2477 | void wxListMainWindow::SetItem( wxListItem &item ) | |
2478 | { | |
92976ab6 | 2479 | m_dirty = TRUE; |
f6bcfd97 | 2480 | if (item.m_itemId >= 0 && (size_t)item.m_itemId < m_lines.GetCount()) |
92976ab6 | 2481 | { |
f6bcfd97 | 2482 | wxListLineData *line = &m_lines[(size_t)item.m_itemId]; |
92976ab6 RR |
2483 | if (m_mode & wxLC_REPORT) item.m_width = GetColumnWidth( item.m_col )-3; |
2484 | line->SetItem( item.m_col, item ); | |
2485 | } | |
e1e955e1 | 2486 | } |
c801d85f | 2487 | |
debe6624 | 2488 | void wxListMainWindow::SetItemState( long item, long state, long stateMask ) |
c801d85f | 2489 | { |
92976ab6 | 2490 | // m_dirty = TRUE; no recalcs needed |
bd8289c1 | 2491 | |
92976ab6 | 2492 | wxListLineData *oldCurrent = m_current; |
bd8289c1 | 2493 | |
92976ab6 | 2494 | if (stateMask & wxLIST_STATE_FOCUSED) |
c801d85f | 2495 | { |
f6bcfd97 | 2496 | if (item >= 0 && (size_t)item < m_lines.GetCount()) |
92976ab6 | 2497 | { |
f6bcfd97 | 2498 | wxListLineData *line = &m_lines[(size_t)item]; |
92976ab6 RR |
2499 | UnfocusLine( m_current ); |
2500 | m_current = line; | |
2501 | FocusLine( m_current ); | |
2502 | RefreshLine( m_current ); | |
00a39542 | 2503 | if (oldCurrent) RefreshLine( oldCurrent ); |
92976ab6 | 2504 | } |
e1e955e1 | 2505 | } |
bd8289c1 | 2506 | |
92976ab6 | 2507 | if (stateMask & wxLIST_STATE_SELECTED) |
c801d85f | 2508 | { |
6f2a55e3 | 2509 | bool on = (state & wxLIST_STATE_SELECTED) != 0; |
92976ab6 RR |
2510 | if (!on && (m_mode & wxLC_SINGLE_SEL)) return; |
2511 | ||
f6bcfd97 | 2512 | if (item >= 0 && (size_t)item < m_lines.GetCount()) |
92976ab6 | 2513 | { |
f6bcfd97 | 2514 | wxListLineData *line = &m_lines[(size_t)item]; |
92976ab6 RR |
2515 | if (m_mode & wxLC_SINGLE_SEL) |
2516 | { | |
2517 | UnfocusLine( m_current ); | |
2518 | m_current = line; | |
2519 | FocusLine( m_current ); | |
00a39542 | 2520 | if (oldCurrent) oldCurrent->Hilight( FALSE ); |
92976ab6 | 2521 | RefreshLine( m_current ); |
00a39542 | 2522 | if (oldCurrent) RefreshLine( oldCurrent ); |
92976ab6 | 2523 | } |
6f2a55e3 | 2524 | bool on = (state & wxLIST_STATE_SELECTED) != 0; |
bffa1c77 VZ |
2525 | if (on != line->IsHilighted()) |
2526 | { | |
139adb6a RR |
2527 | line->Hilight( on ); |
2528 | RefreshLine( line ); | |
bffa1c77 | 2529 | } |
92976ab6 | 2530 | } |
e1e955e1 | 2531 | } |
e1e955e1 | 2532 | } |
c801d85f | 2533 | |
debe6624 | 2534 | int wxListMainWindow::GetItemState( long item, long stateMask ) |
c801d85f | 2535 | { |
92976ab6 RR |
2536 | int ret = wxLIST_STATE_DONTCARE; |
2537 | if (stateMask & wxLIST_STATE_FOCUSED) | |
c801d85f | 2538 | { |
f6bcfd97 | 2539 | if (item >= 0 && (size_t)item < m_lines.GetCount()) |
92976ab6 | 2540 | { |
f6bcfd97 | 2541 | wxListLineData *line = &m_lines[(size_t)item]; |
92976ab6 RR |
2542 | if (line == m_current) ret |= wxLIST_STATE_FOCUSED; |
2543 | } | |
e1e955e1 | 2544 | } |
92976ab6 | 2545 | if (stateMask & wxLIST_STATE_SELECTED) |
c801d85f | 2546 | { |
f6bcfd97 | 2547 | if (item >= 0 && (size_t)item < m_lines.GetCount()) |
92976ab6 | 2548 | { |
f6bcfd97 | 2549 | wxListLineData *line = &m_lines[(size_t)item]; |
92976ab6 RR |
2550 | if (line->IsHilighted()) ret |= wxLIST_STATE_FOCUSED; |
2551 | } | |
e1e955e1 | 2552 | } |
92976ab6 | 2553 | return ret; |
e1e955e1 | 2554 | } |
c801d85f KB |
2555 | |
2556 | void wxListMainWindow::GetItem( wxListItem &item ) | |
2557 | { | |
f6bcfd97 | 2558 | if (item.m_itemId >= 0 && (size_t)item.m_itemId < m_lines.GetCount()) |
92976ab6 | 2559 | { |
f6bcfd97 | 2560 | wxListLineData *line = &m_lines[(size_t)item.m_itemId]; |
92976ab6 RR |
2561 | line->GetItem( item.m_col, item ); |
2562 | } | |
2563 | else | |
2564 | { | |
2565 | item.m_mask = 0; | |
2566 | item.m_text = ""; | |
2567 | item.m_image = 0; | |
2568 | item.m_data = 0; | |
2569 | } | |
e1e955e1 | 2570 | } |
c801d85f | 2571 | |
e179bd65 | 2572 | int wxListMainWindow::GetItemCount() |
c801d85f | 2573 | { |
f6bcfd97 | 2574 | return m_lines.GetCount(); |
e1e955e1 | 2575 | } |
c801d85f | 2576 | |
0a240683 | 2577 | void wxListMainWindow::GetItemRect( long index, wxRect &rect ) |
c801d85f | 2578 | { |
f6bcfd97 | 2579 | if (index >= 0 && (size_t)index < m_lines.GetCount()) |
92976ab6 | 2580 | { |
f6bcfd97 | 2581 | m_lines[(size_t)index].GetRect( rect ); |
92976ab6 RR |
2582 | } |
2583 | else | |
2584 | { | |
2585 | rect.x = 0; | |
2586 | rect.y = 0; | |
2587 | rect.width = 0; | |
2588 | rect.height = 0; | |
2589 | } | |
e1e955e1 | 2590 | } |
c801d85f | 2591 | |
e3e65dac RR |
2592 | bool wxListMainWindow::GetItemPosition(long item, wxPoint& pos) |
2593 | { | |
f6bcfd97 | 2594 | if (item >= 0 && (size_t)item < m_lines.GetCount()) |
92976ab6 | 2595 | { |
0a240683 | 2596 | wxRect rect; |
f6bcfd97 | 2597 | m_lines[(size_t)item].GetRect( rect ); |
92976ab6 RR |
2598 | pos.x = rect.x; |
2599 | pos.y = rect.y; | |
2600 | } | |
2601 | else | |
2602 | { | |
2603 | pos.x = 0; | |
2604 | pos.y = 0; | |
2605 | } | |
2606 | return TRUE; | |
e1e955e1 | 2607 | } |
e3e65dac | 2608 | |
e179bd65 | 2609 | int wxListMainWindow::GetSelectedItemCount() |
c801d85f | 2610 | { |
92976ab6 | 2611 | int ret = 0; |
f6bcfd97 | 2612 | for (size_t i = 0; i < m_lines.GetCount(); i++) |
92976ab6 | 2613 | { |
f6bcfd97 | 2614 | if (m_lines[i].IsHilighted()) ret++; |
92976ab6 RR |
2615 | } |
2616 | return ret; | |
e1e955e1 | 2617 | } |
c801d85f | 2618 | |
debe6624 | 2619 | void wxListMainWindow::SetMode( long mode ) |
c801d85f | 2620 | { |
92976ab6 RR |
2621 | m_dirty = TRUE; |
2622 | m_mode = mode; | |
bd8289c1 | 2623 | |
92976ab6 | 2624 | DeleteEverything(); |
bd8289c1 | 2625 | |
92976ab6 RR |
2626 | if (m_mode & wxLC_REPORT) |
2627 | { | |
7c74e7fe SC |
2628 | #if wxUSE_GENERIC_LIST_EXTENSIONS |
2629 | m_xScroll = 15; | |
2630 | #else | |
92976ab6 | 2631 | m_xScroll = 0; |
7c74e7fe | 2632 | #endif |
92976ab6 RR |
2633 | m_yScroll = 15; |
2634 | } | |
2635 | else | |
2636 | { | |
2637 | m_xScroll = 15; | |
2638 | m_yScroll = 0; | |
2639 | } | |
e1e955e1 | 2640 | } |
c801d85f | 2641 | |
e179bd65 | 2642 | long wxListMainWindow::GetMode() const |
c801d85f | 2643 | { |
63852e78 | 2644 | return m_mode; |
e1e955e1 | 2645 | } |
c801d85f | 2646 | |
e179bd65 | 2647 | void wxListMainWindow::CalculatePositions() |
c801d85f | 2648 | { |
f6bcfd97 | 2649 | if (m_lines.IsEmpty()) return; |
e487524e | 2650 | |
1e6d9499 | 2651 | wxClientDC dc( this ); |
92976ab6 | 2652 | dc.SetFont( GetFont() ); |
c801d85f | 2653 | |
92976ab6 RR |
2654 | int iconSpacing = 0; |
2655 | if (m_mode & wxLC_ICON) iconSpacing = m_normal_spacing; | |
2656 | if (m_mode & wxLC_SMALL_ICON) iconSpacing = m_small_spacing; | |
004fd0c8 | 2657 | |
92976ab6 RR |
2658 | // we take the first line (which also can be an icon or |
2659 | // an a text item in wxLC_ICON and wxLC_LIST modes) to | |
2660 | // measure the size of the line | |
004fd0c8 | 2661 | |
92976ab6 RR |
2662 | int lineWidth = 0; |
2663 | int lineHeight = 0; | |
2664 | int lineSpacing = 0; | |
c801d85f | 2665 | |
f6bcfd97 | 2666 | wxListLineData *line = &m_lines[0]; |
92976ab6 RR |
2667 | line->CalculateSize( &dc, iconSpacing ); |
2668 | int dummy = 0; | |
2669 | line->GetSize( dummy, lineSpacing ); | |
5d25c050 | 2670 | lineSpacing += 1; |
bd8289c1 | 2671 | |
92976ab6 RR |
2672 | int clientWidth = 0; |
2673 | int clientHeight = 0; | |
bd8289c1 | 2674 | |
92976ab6 | 2675 | if (m_mode & wxLC_REPORT) |
c801d85f | 2676 | { |
92976ab6 RR |
2677 | int x = 4; |
2678 | int y = 1; | |
f6bcfd97 | 2679 | int entireHeight = m_lines.GetCount() * lineSpacing + 2; |
92976ab6 | 2680 | int scroll_pos = GetScrollPos( wxVERTICAL ); |
7c74e7fe | 2681 | #if wxUSE_GENERIC_LIST_EXTENSIONS |
7c0ea335 | 2682 | int x_scroll_pos = GetScrollPos( wxHORIZONTAL ); |
7c74e7fe | 2683 | #else |
8b53e5a2 | 2684 | SetScrollbars( m_xScroll, m_yScroll, 0, (entireHeight+15) / m_yScroll, 0, scroll_pos, TRUE ); |
7c74e7fe | 2685 | #endif |
92976ab6 RR |
2686 | GetClientSize( &clientWidth, &clientHeight ); |
2687 | ||
7c74e7fe | 2688 | int entireWidth = 0 ; |
f6bcfd97 | 2689 | for (size_t j = 0; j < m_lines.GetCount(); j++) |
92976ab6 | 2690 | { |
f6bcfd97 | 2691 | wxListLineData *line = &m_lines[j]; |
92976ab6 RR |
2692 | line->CalculateSize( &dc, iconSpacing ); |
2693 | line->SetPosition( &dc, x, y, clientWidth ); | |
2694 | int col_x = 2; | |
2695 | for (int i = 0; i < GetColumnCount(); i++) | |
2696 | { | |
2697 | line->SetColumnPosition( i, col_x ); | |
2698 | col_x += GetColumnWidth( i ); | |
2699 | } | |
7c74e7fe SC |
2700 | entireWidth = wxMax( entireWidth , col_x ) ; |
2701 | #if wxUSE_GENERIC_LIST_EXTENSIONS | |
2702 | line->SetPosition( &dc, x, y, col_x ); | |
2703 | #endif | |
92976ab6 | 2704 | y += lineSpacing; // one pixel blank line between items |
92976ab6 | 2705 | } |
bffa1c77 | 2706 | m_visibleLines = clientHeight / lineSpacing; |
7c74e7fe | 2707 | #if wxUSE_GENERIC_LIST_EXTENSIONS |
bffa1c77 | 2708 | SetScrollbars( m_xScroll, m_yScroll, entireWidth / m_xScroll , (entireHeight+15) / m_yScroll, x_scroll_pos , scroll_pos, TRUE ); |
7c74e7fe | 2709 | #endif |
e1e955e1 | 2710 | } |
92976ab6 RR |
2711 | else |
2712 | { | |
2713 | // at first we try without any scrollbar. if the items don't | |
2714 | // fit into the window, we recalculate after subtracting an | |
2715 | // approximated 15 pt for the horizontal scrollbar | |
004fd0c8 | 2716 | |
92976ab6 | 2717 | GetSize( &clientWidth, &clientHeight ); |
bffa1c77 | 2718 | clientHeight -= 4; // sunken frame |
bd8289c1 | 2719 | |
92976ab6 | 2720 | int entireWidth = 0; |
bd8289c1 | 2721 | |
92976ab6 | 2722 | for (int tries = 0; tries < 2; tries++) |
e487524e | 2723 | { |
92976ab6 | 2724 | entireWidth = 0; |
5d25c050 RR |
2725 | int x = 2; |
2726 | int y = 2; | |
92976ab6 | 2727 | int maxWidth = 0; |
0b855868 | 2728 | m_visibleLines = 0; |
bffa1c77 | 2729 | int m_currentVisibleLines = 0; |
f6bcfd97 | 2730 | for (size_t i = 0; i < m_lines.GetCount(); i++) |
92976ab6 | 2731 | { |
bffa1c77 | 2732 | m_currentVisibleLines++; |
f6bcfd97 | 2733 | wxListLineData *line = &m_lines[i]; |
92976ab6 RR |
2734 | line->CalculateSize( &dc, iconSpacing ); |
2735 | line->SetPosition( &dc, x, y, clientWidth ); | |
2736 | line->GetSize( lineWidth, lineHeight ); | |
2737 | if (lineWidth > maxWidth) maxWidth = lineWidth; | |
2738 | y += lineSpacing; | |
bffa1c77 VZ |
2739 | if (m_currentVisibleLines > m_visibleLines) |
2740 | m_visibleLines = m_currentVisibleLines; | |
8b53e5a2 | 2741 | if (y+lineSpacing-6 >= clientHeight) // -6 for earlier "line breaking" |
92976ab6 | 2742 | { |
bffa1c77 | 2743 | m_currentVisibleLines = 0; |
e1208c31 | 2744 | y = 2; |
8b53e5a2 RR |
2745 | x += maxWidth+6; |
2746 | entireWidth += maxWidth+6; | |
92976ab6 RR |
2747 | maxWidth = 0; |
2748 | } | |
f6bcfd97 | 2749 | if (i == m_lines.GetCount()-1) entireWidth += maxWidth; |
92976ab6 RR |
2750 | if ((tries == 0) && (entireWidth > clientWidth)) |
2751 | { | |
2752 | clientHeight -= 15; // scrollbar height | |
0b855868 | 2753 | m_visibleLines = 0; |
bffa1c77 | 2754 | m_currentVisibleLines = 0; |
92976ab6 RR |
2755 | break; |
2756 | } | |
f6bcfd97 | 2757 | if (i == m_lines.GetCount()-1) tries = 1; // everything fits, no second try required |
92976ab6 | 2758 | } |
e487524e | 2759 | } |
bffa1c77 | 2760 | |
92976ab6 RR |
2761 | int scroll_pos = GetScrollPos( wxHORIZONTAL ); |
2762 | SetScrollbars( m_xScroll, m_yScroll, (entireWidth+15) / m_xScroll, 0, scroll_pos, 0, TRUE ); | |
e1e955e1 | 2763 | } |
e1e955e1 | 2764 | } |
c801d85f | 2765 | |
f6bcfd97 | 2766 | void wxListMainWindow::RealizeChanges() |
c801d85f | 2767 | { |
92976ab6 RR |
2768 | if (!m_current) |
2769 | { | |
f6bcfd97 BP |
2770 | if (!m_lines.IsEmpty()) |
2771 | m_current = &m_lines[0]; | |
92976ab6 RR |
2772 | } |
2773 | if (m_current) | |
2774 | { | |
2775 | FocusLine( m_current ); | |
f6bcfd97 BP |
2776 | // TODO: MSW doesn't automatically hilight the |
2777 | // first item. | |
2778 | // if (m_mode & wxLC_SINGLE_SEL) m_current->Hilight( TRUE ); | |
92976ab6 | 2779 | } |
e1e955e1 | 2780 | } |
c801d85f | 2781 | |
19695fbd VZ |
2782 | long wxListMainWindow::GetNextItem( long item, |
2783 | int WXUNUSED(geometry), | |
2784 | int state ) | |
c801d85f | 2785 | { |
d1022fd6 VZ |
2786 | long ret = item, |
2787 | max = GetItemCount(); | |
2788 | wxCHECK_MSG( (ret == -1) || (ret < max), -1, | |
13771c08 | 2789 | _T("invalid listctrl index in GetNextItem()") ); |
19695fbd VZ |
2790 | |
2791 | // notice that we start with the next item (or the first one if item == -1) | |
2792 | // and this is intentional to allow writing a simple loop to iterate over | |
2793 | // all selected items | |
d1022fd6 VZ |
2794 | ret++; |
2795 | if ( ret == max ) | |
2796 | { | |
2797 | // this is not an error because the index was ok initially, just no | |
2798 | // such item | |
2799 | return -1; | |
2800 | } | |
2801 | ||
f6bcfd97 | 2802 | for (size_t i = (size_t)ret; i < m_lines.GetCount(); i++) |
63852e78 | 2803 | { |
f6bcfd97 | 2804 | wxListLineData *line = &m_lines[i]; |
19695fbd VZ |
2805 | if ((state & wxLIST_STATE_FOCUSED) && (line == m_current)) |
2806 | return ret; | |
2807 | if ((state & wxLIST_STATE_SELECTED) && (line->IsHilighted())) | |
2808 | return ret; | |
2809 | if (!state) | |
2810 | return ret; | |
63852e78 | 2811 | ret++; |
63852e78 | 2812 | } |
19695fbd | 2813 | |
63852e78 | 2814 | return -1; |
e1e955e1 | 2815 | } |
c801d85f | 2816 | |
debe6624 | 2817 | void wxListMainWindow::DeleteItem( long index ) |
c801d85f | 2818 | { |
63852e78 | 2819 | m_dirty = TRUE; |
f6bcfd97 | 2820 | if (index >= 0 && (size_t)index < m_lines.GetCount()) |
63852e78 | 2821 | { |
f6bcfd97 | 2822 | wxListLineData *line = &m_lines[(size_t)index]; |
63852e78 RR |
2823 | if (m_current == line) m_current = (wxListLineData *) NULL; |
2824 | DeleteLine( line ); | |
f6bcfd97 | 2825 | m_lines.RemoveAt( (size_t)index ); |
63852e78 | 2826 | } |
e1e955e1 | 2827 | } |
c801d85f | 2828 | |
debe6624 | 2829 | void wxListMainWindow::DeleteColumn( int col ) |
c801d85f | 2830 | { |
5b077d48 | 2831 | wxCHECK_RET( col < (int)m_columns.GetCount(), |
223d09f6 | 2832 | wxT("attempting to delete inexistent column in wxListView") ); |
bd8289c1 | 2833 | |
5b077d48 RR |
2834 | m_dirty = TRUE; |
2835 | wxNode *node = m_columns.Nth( col ); | |
2836 | if (node) m_columns.DeleteNode( node ); | |
e1e955e1 | 2837 | } |
c801d85f | 2838 | |
12c1b46a | 2839 | void wxListMainWindow::DeleteAllItems() |
c801d85f | 2840 | { |
5b077d48 RR |
2841 | m_dirty = TRUE; |
2842 | m_current = (wxListLineData *) NULL; | |
7c0ea335 VZ |
2843 | |
2844 | // to make the deletion of all items faster, we don't send the | |
2845 | // notifications in this case: this is compatible with wxMSW and | |
2846 | // documented in DeleteAllItems() description | |
bffa1c77 | 2847 | |
12c1b46a RR |
2848 | wxListEvent event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, GetParent()->GetId() ); |
2849 | event.SetEventObject( GetParent() ); | |
2850 | GetParent()->GetEventHandler()->ProcessEvent( event ); | |
7c0ea335 | 2851 | |
5b077d48 | 2852 | m_lines.Clear(); |
e1e955e1 | 2853 | } |
c801d85f | 2854 | |
12c1b46a | 2855 | void wxListMainWindow::DeleteEverything() |
c801d85f | 2856 | { |
12c1b46a | 2857 | DeleteAllItems(); |
f6bcfd97 | 2858 | |
5b077d48 | 2859 | m_columns.Clear(); |
e1e955e1 | 2860 | } |
c801d85f | 2861 | |
debe6624 | 2862 | void wxListMainWindow::EnsureVisible( long index ) |
c801d85f | 2863 | { |
dc6c62a9 RR |
2864 | // We have to call this here because the label in |
2865 | // question might just have been added and no screen | |
2866 | // update taken place. | |
2867 | if (m_dirty) wxYield(); | |
2868 | ||
5b077d48 RR |
2869 | wxListLineData *oldCurrent = m_current; |
2870 | m_current = (wxListLineData *) NULL; | |
f6bcfd97 BP |
2871 | if (index >= 0 && (size_t)index < m_lines.GetCount()) |
2872 | m_current = &m_lines[(size_t)index]; | |
5b077d48 RR |
2873 | if (m_current) MoveToFocus(); |
2874 | m_current = oldCurrent; | |
e1e955e1 | 2875 | } |
c801d85f | 2876 | |
debe6624 | 2877 | long wxListMainWindow::FindItem(long start, const wxString& str, bool WXUNUSED(partial) ) |
c801d85f | 2878 | { |
5b077d48 RR |
2879 | long pos = start; |
2880 | wxString tmp = str; | |
2881 | if (pos < 0) pos = 0; | |
f6bcfd97 | 2882 | for (size_t i = pos; i < m_lines.GetCount(); i++) |
5b077d48 | 2883 | { |
f6bcfd97 | 2884 | wxListLineData *line = &m_lines[i]; |
5b077d48 RR |
2885 | wxString s = ""; |
2886 | line->GetText( 0, s ); | |
2887 | if (s == tmp) return pos; | |
5b077d48 RR |
2888 | pos++; |
2889 | } | |
2890 | return -1; | |
e1e955e1 | 2891 | } |
c801d85f | 2892 | |
debe6624 | 2893 | long wxListMainWindow::FindItem(long start, long data) |
c801d85f | 2894 | { |
5b077d48 RR |
2895 | long pos = start; |
2896 | if (pos < 0) pos = 0; | |
f6bcfd97 | 2897 | for (size_t i = pos; i < m_lines.GetCount(); i++) |
5b077d48 | 2898 | { |
f6bcfd97 | 2899 | wxListLineData *line = &m_lines[i]; |
5b077d48 RR |
2900 | wxListItem item; |
2901 | line->GetItem( 0, item ); | |
2902 | if (item.m_data == data) return pos; | |
5b077d48 RR |
2903 | pos++; |
2904 | } | |
2905 | return -1; | |
e1e955e1 | 2906 | } |
c801d85f | 2907 | |
debe6624 | 2908 | long wxListMainWindow::HitTest( int x, int y, int &flags ) |
c801d85f | 2909 | { |
aaef15bf | 2910 | CalcUnscrolledPosition( x, y, &x, &y ); |
e8741cca | 2911 | |
5b077d48 | 2912 | int count = 0; |
f6bcfd97 | 2913 | for (size_t i = 0; i < m_lines.GetCount(); i++) |
c801d85f | 2914 | { |
f6bcfd97 | 2915 | wxListLineData *line = &m_lines[i]; |
aaef15bf | 2916 | long ret = line->IsHit( x, y ); |
5b077d48 RR |
2917 | if (ret & flags) |
2918 | { | |
6f2a55e3 | 2919 | flags = (int)ret; |
5b077d48 RR |
2920 | return count; |
2921 | } | |
5b077d48 | 2922 | count++; |
e1e955e1 | 2923 | } |
5b077d48 | 2924 | return -1; |
e1e955e1 | 2925 | } |
c801d85f KB |
2926 | |
2927 | void wxListMainWindow::InsertItem( wxListItem &item ) | |
2928 | { | |
5b077d48 RR |
2929 | m_dirty = TRUE; |
2930 | int mode = 0; | |
2931 | if (m_mode & wxLC_REPORT) mode = wxLC_REPORT; | |
2932 | else if (m_mode & wxLC_LIST) mode = wxLC_LIST; | |
2933 | else if (m_mode & wxLC_ICON) mode = wxLC_ICON; | |
2934 | else if (m_mode & wxLC_SMALL_ICON) mode = wxLC_ICON; // no typo | |
004fd0c8 | 2935 | |
5b077d48 | 2936 | wxListLineData *line = new wxListLineData( this, mode, m_hilightBrush ); |
004fd0c8 | 2937 | |
5b077d48 RR |
2938 | if (m_mode & wxLC_REPORT) |
2939 | { | |
2940 | line->InitItems( GetColumnCount() ); | |
2941 | item.m_width = GetColumnWidth( 0 )-3; | |
2942 | } | |
2943 | else | |
2944 | { | |
2945 | line->InitItems( 1 ); | |
2946 | } | |
004fd0c8 | 2947 | |
5b077d48 | 2948 | line->SetItem( 0, item ); |
f6bcfd97 | 2949 | if ((item.m_itemId >= 0) && ((size_t)item.m_itemId < m_lines.GetCount())) |
5b077d48 | 2950 | { |
f6bcfd97 | 2951 | m_lines.Insert( line, (size_t)item.m_itemId ); |
5b077d48 RR |
2952 | } |
2953 | else | |
2954 | { | |
f6bcfd97 | 2955 | m_lines.Add( line ); |
5b077d48 | 2956 | } |
e1e955e1 | 2957 | } |
c801d85f | 2958 | |
debe6624 | 2959 | void wxListMainWindow::InsertColumn( long col, wxListItem &item ) |
c801d85f | 2960 | { |
5b077d48 RR |
2961 | m_dirty = TRUE; |
2962 | if (m_mode & wxLC_REPORT) | |
3db7be80 | 2963 | { |
5b077d48 RR |
2964 | if (item.m_width == wxLIST_AUTOSIZE_USEHEADER) item.m_width = GetTextLength( item.m_text ); |
2965 | wxListHeaderData *column = new wxListHeaderData( item ); | |
2966 | if ((col >= 0) && (col < (int)m_columns.GetCount())) | |
2967 | { | |
6f2a55e3 | 2968 | wxNode *node = m_columns.Nth( (size_t)col ); |
5b077d48 RR |
2969 | if (node) |
2970 | m_columns.Insert( node, column ); | |
2971 | } | |
2972 | else | |
2973 | { | |
2974 | m_columns.Append( column ); | |
2975 | } | |
3db7be80 | 2976 | } |
e1e955e1 | 2977 | } |
c801d85f KB |
2978 | |
2979 | wxListCtrlCompare list_ctrl_compare_func_2; | |
2980 | long list_ctrl_compare_data; | |
2981 | ||
f6bcfd97 | 2982 | int LINKAGEMODE list_ctrl_compare_func_1( wxListLineData **arg1, wxListLineData **arg2 ) |
c801d85f | 2983 | { |
f6bcfd97 BP |
2984 | wxListLineData *line1 = *arg1; |
2985 | wxListLineData *line2 = *arg2; | |
5b077d48 RR |
2986 | wxListItem item; |
2987 | line1->GetItem( 0, item ); | |
2988 | long data1 = item.m_data; | |
2989 | line2->GetItem( 0, item ); | |
2990 | long data2 = item.m_data; | |
2991 | return list_ctrl_compare_func_2( data1, data2, list_ctrl_compare_data ); | |
e1e955e1 | 2992 | } |
c801d85f KB |
2993 | |
2994 | void wxListMainWindow::SortItems( wxListCtrlCompare fn, long data ) | |
2995 | { | |
5b077d48 RR |
2996 | list_ctrl_compare_func_2 = fn; |
2997 | list_ctrl_compare_data = data; | |
2998 | m_lines.Sort( list_ctrl_compare_func_1 ); | |
af7c1052 | 2999 | m_dirty = TRUE; |
e1e955e1 | 3000 | } |
c801d85f | 3001 | |
7c74e7fe SC |
3002 | void wxListMainWindow::OnScroll(wxScrollWinEvent& event) |
3003 | { | |
bffa1c77 | 3004 | wxScrolledWindow::OnScroll( event ) ; |
7c74e7fe SC |
3005 | #if wxUSE_GENERIC_LIST_EXTENSIONS |
3006 | ||
3007 | if (event.GetOrientation() == wxHORIZONTAL && ( m_mode & wxLC_REPORT )) | |
3008 | { | |
bffa1c77 VZ |
3009 | wxListCtrl* lc = wxDynamicCast( GetParent() , wxListCtrl ) ; |
3010 | if ( lc ) | |
3011 | { | |
3012 | lc->m_headerWin->Refresh() ; | |
7c74e7fe | 3013 | #ifdef __WXMAC__ |
bffa1c77 | 3014 | lc->m_headerWin->MacUpdateImmediately() ; |
7c74e7fe | 3015 | #endif |
bffa1c77 | 3016 | } |
7c74e7fe SC |
3017 | } |
3018 | #endif | |
3019 | } | |
3020 | ||
c801d85f KB |
3021 | // ------------------------------------------------------------------------------------- |
3022 | // wxListItem | |
3023 | // ------------------------------------------------------------------------------------- | |
3024 | ||
3025 | IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject) | |
3026 | ||
fd9811b1 | 3027 | wxListItem::wxListItem() |
c801d85f | 3028 | { |
63852e78 RR |
3029 | m_mask = 0; |
3030 | m_itemId = 0; | |
3031 | m_col = 0; | |
3032 | m_state = 0; | |
3033 | m_stateMask = 0; | |
3034 | m_image = 0; | |
3035 | m_data = 0; | |
3036 | m_format = wxLIST_FORMAT_CENTRE; | |
3037 | m_width = 0; | |
aaa37c0d VZ |
3038 | |
3039 | m_attr = NULL; | |
c801d85f KB |
3040 | } |
3041 | ||
9b00bb16 RR |
3042 | void wxListItem::Clear() |
3043 | { | |
3044 | m_mask = 0; | |
3045 | m_itemId = 0; | |
3046 | m_col = 0; | |
3047 | m_state = 0; | |
3048 | m_stateMask = 0; | |
3049 | m_image = 0; | |
3050 | m_data = 0; | |
3051 | m_format = wxLIST_FORMAT_CENTRE; | |
3052 | m_width = 0; | |
3053 | m_text = wxEmptyString; | |
3054 | ||
3055 | if (m_attr) delete m_attr; | |
3056 | m_attr = NULL; | |
3057 | } | |
3058 | ||
3059 | void wxListItem::ClearAttributes() | |
3060 | { | |
3061 | if (m_attr) delete m_attr; | |
3062 | m_attr = NULL; | |
3063 | } | |
3064 | ||
c801d85f KB |
3065 | // ------------------------------------------------------------------------------------- |
3066 | // wxListEvent | |
3067 | // ------------------------------------------------------------------------------------- | |
3068 | ||
92976ab6 | 3069 | IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent) |
c801d85f | 3070 | |
8f79098a | 3071 | wxListEvent::wxListEvent( wxEventType commandType, int id ): |
92976ab6 | 3072 | wxNotifyEvent( commandType, id ) |
c801d85f | 3073 | { |
5b077d48 RR |
3074 | m_code = 0; |
3075 | m_itemIndex = 0; | |
3076 | m_oldItemIndex = 0; | |
3077 | m_col = 0; | |
3078 | m_cancelled = FALSE; | |
3079 | m_pointDrag.x = 0; | |
3080 | m_pointDrag.y = 0; | |
e1e955e1 | 3081 | } |
c801d85f | 3082 | |
72a7edf0 RR |
3083 | void wxListEvent::CopyObject(wxObject& object_dest) const |
3084 | { | |
3085 | wxListEvent *obj = (wxListEvent *)&object_dest; | |
3086 | ||
3087 | wxNotifyEvent::CopyObject(object_dest); | |
3088 | ||
3089 | obj->m_code = m_code; | |
3090 | obj->m_itemIndex = m_itemIndex; | |
3091 | obj->m_oldItemIndex = m_oldItemIndex; | |
3092 | obj->m_col = m_col; | |
3093 | obj->m_cancelled = m_cancelled; | |
3094 | obj->m_pointDrag = m_pointDrag; | |
3095 | obj->m_item.m_mask = m_item.m_mask; | |
3096 | obj->m_item.m_itemId = m_item.m_itemId; | |
3097 | obj->m_item.m_col = m_item.m_col; | |
3098 | obj->m_item.m_state = m_item.m_state; | |
3099 | obj->m_item.m_stateMask = m_item.m_stateMask; | |
3100 | obj->m_item.m_text = m_item.m_text; | |
3101 | obj->m_item.m_image = m_item.m_image; | |
3102 | obj->m_item.m_data = m_item.m_data; | |
3103 | obj->m_item.m_format = m_item.m_format; | |
3104 | obj->m_item.m_width = m_item.m_width; | |
aaa37c0d VZ |
3105 | |
3106 | if ( m_item.HasAttributes() ) | |
3107 | { | |
3108 | obj->m_item.SetTextColour(m_item.GetTextColour()); | |
3109 | } | |
72a7edf0 RR |
3110 | } |
3111 | ||
c801d85f KB |
3112 | // ------------------------------------------------------------------------------------- |
3113 | // wxListCtrl | |
3114 | // ------------------------------------------------------------------------------------- | |
3115 | ||
3116 | IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl) | |
3117 | ||
3118 | BEGIN_EVENT_TABLE(wxListCtrl,wxControl) | |
3119 | EVT_SIZE (wxListCtrl::OnSize) | |
53010e52 | 3120 | EVT_IDLE (wxListCtrl::OnIdle) |
c801d85f KB |
3121 | END_EVENT_TABLE() |
3122 | ||
fd9811b1 | 3123 | wxListCtrl::wxListCtrl() |
c801d85f | 3124 | { |
5b077d48 RR |
3125 | m_imageListNormal = (wxImageList *) NULL; |
3126 | m_imageListSmall = (wxImageList *) NULL; | |
3127 | m_imageListState = (wxImageList *) NULL; | |
3128 | m_mainWin = (wxListMainWindow*) NULL; | |
3129 | m_headerWin = (wxListHeaderWindow*) NULL; | |
c801d85f KB |
3130 | } |
3131 | ||
fd9811b1 | 3132 | wxListCtrl::~wxListCtrl() |
c801d85f KB |
3133 | { |
3134 | } | |
3135 | ||
25e3a937 VZ |
3136 | bool wxListCtrl::Create(wxWindow *parent, |
3137 | wxWindowID id, | |
3138 | const wxPoint &pos, | |
3139 | const wxSize &size, | |
3140 | long style, | |
25e3a937 | 3141 | const wxValidator &validator, |
25e3a937 | 3142 | const wxString &name) |
c801d85f | 3143 | { |
5b077d48 RR |
3144 | m_imageListNormal = (wxImageList *) NULL; |
3145 | m_imageListSmall = (wxImageList *) NULL; | |
3146 | m_imageListState = (wxImageList *) NULL; | |
3147 | m_mainWin = (wxListMainWindow*) NULL; | |
3148 | m_headerWin = (wxListHeaderWindow*) NULL; | |
bd8289c1 | 3149 | |
25e3a937 | 3150 | if ( !(style & (wxLC_REPORT | wxLC_LIST | wxLC_ICON)) ) |
5b077d48 | 3151 | { |
25e3a937 | 3152 | style = style | wxLC_LIST; |
5b077d48 | 3153 | } |
f6bcfd97 | 3154 | |
098963c3 | 3155 | bool ret = wxControl::Create( parent, id, pos, size, style, validator, name ); |
f6bcfd97 BP |
3156 | |
3157 | ||
25e3a937 VZ |
3158 | if (style & wxSUNKEN_BORDER) |
3159 | style -= wxSUNKEN_BORDER; | |
bd8289c1 | 3160 | |
25e3a937 | 3161 | m_mainWin = new wxListMainWindow( this, -1, wxPoint(0,0), size, style ); |
bd8289c1 | 3162 | |
f03fc89f | 3163 | if (HasFlag(wxLC_REPORT)) |
ea451729 | 3164 | { |
5b077d48 | 3165 | m_headerWin = new wxListHeaderWindow( this, -1, m_mainWin, wxPoint(0,0), wxSize(size.x,23), wxTAB_TRAVERSAL ); |
ea451729 RR |
3166 | if (HasFlag(wxLC_NO_HEADER)) |
3167 | m_headerWin->Show( FALSE ); | |
3168 | } | |
5b077d48 | 3169 | else |
ea451729 | 3170 | { |
5b077d48 | 3171 | m_headerWin = (wxListHeaderWindow *) NULL; |
ea451729 | 3172 | } |
bd8289c1 | 3173 | |
5b077d48 | 3174 | return ret; |
e1e955e1 | 3175 | } |
c801d85f KB |
3176 | |
3177 | void wxListCtrl::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
3178 | { | |
5b077d48 | 3179 | /* handled in OnIdle */ |
bd8289c1 | 3180 | |
5b077d48 | 3181 | if (m_mainWin) m_mainWin->m_dirty = TRUE; |
e1e955e1 | 3182 | } |
c801d85f | 3183 | |
debe6624 | 3184 | void wxListCtrl::SetSingleStyle( long style, bool add ) |
c801d85f | 3185 | { |
f03fc89f | 3186 | long flag = GetWindowStyle(); |
bd8289c1 | 3187 | |
5b077d48 RR |
3188 | if (add) |
3189 | { | |
3190 | if (style & wxLC_MASK_TYPE) flag = flag & ~wxLC_MASK_TYPE; | |
3191 | if (style & wxLC_MASK_ALIGN) flag = flag & ~wxLC_MASK_ALIGN; | |
3192 | if (style & wxLC_MASK_SORT) flag = flag & ~wxLC_MASK_SORT; | |
3193 | } | |
c801d85f | 3194 | |
5b077d48 RR |
3195 | if (add) |
3196 | { | |
3197 | flag |= style; | |
3198 | } | |
3199 | else | |
3200 | { | |
3201 | if (flag & style) flag -= style; | |
3202 | } | |
bd8289c1 | 3203 | |
5b077d48 | 3204 | SetWindowStyleFlag( flag ); |
e1e955e1 | 3205 | } |
c801d85f | 3206 | |
debe6624 | 3207 | void wxListCtrl::SetWindowStyleFlag( long flag ) |
c801d85f | 3208 | { |
121a3581 RR |
3209 | if (m_mainWin) |
3210 | { | |
3211 | m_mainWin->DeleteEverything(); | |
c801d85f | 3212 | |
121a3581 RR |
3213 | int width = 0; |
3214 | int height = 0; | |
3215 | GetClientSize( &width, &height ); | |
c801d85f | 3216 | |
121a3581 | 3217 | m_mainWin->SetMode( flag ); |
bd8289c1 | 3218 | |
121a3581 | 3219 | if (flag & wxLC_REPORT) |
5b077d48 | 3220 | { |
121a3581 | 3221 | if (!HasFlag(wxLC_REPORT)) |
5b077d48 | 3222 | { |
121a3581 RR |
3223 | if (!m_headerWin) |
3224 | { | |
004fd0c8 | 3225 | m_headerWin = new wxListHeaderWindow( this, -1, m_mainWin, |
bffa1c77 VZ |
3226 | wxPoint(0,0), wxSize(width,23), wxTAB_TRAVERSAL ); |
3227 | if (HasFlag(wxLC_NO_HEADER)) | |
3228 | m_headerWin->Show( FALSE ); | |
121a3581 RR |
3229 | } |
3230 | else | |
004fd0c8 | 3231 | { |
bffa1c77 VZ |
3232 | if (flag & wxLC_NO_HEADER) |
3233 | m_headerWin->Show( FALSE ); | |
3234 | else | |
8636aed8 | 3235 | m_headerWin->Show( TRUE ); |
004fd0c8 | 3236 | } |
5b077d48 RR |
3237 | } |
3238 | } | |
121a3581 | 3239 | else |
5b077d48 | 3240 | { |
8636aed8 | 3241 | if (HasFlag(wxLC_REPORT) && !(HasFlag(wxLC_NO_HEADER))) |
121a3581 RR |
3242 | { |
3243 | m_headerWin->Show( FALSE ); | |
3244 | } | |
bffa1c77 | 3245 | } |
e1e955e1 | 3246 | } |
004fd0c8 | 3247 | |
5b077d48 | 3248 | wxWindow::SetWindowStyleFlag( flag ); |
e1e955e1 | 3249 | } |
c801d85f | 3250 | |
e487524e | 3251 | bool wxListCtrl::GetColumn(int col, wxListItem &item) const |
c801d85f | 3252 | { |
5b077d48 RR |
3253 | m_mainWin->GetColumn( col, item ); |
3254 | return TRUE; | |
e1e955e1 | 3255 | } |
c801d85f | 3256 | |
debe6624 | 3257 | bool wxListCtrl::SetColumn( int col, wxListItem& item ) |
c801d85f | 3258 | { |
5b077d48 RR |
3259 | m_mainWin->SetColumn( col, item ); |
3260 | return TRUE; | |
e1e955e1 | 3261 | } |
c801d85f | 3262 | |
e487524e | 3263 | int wxListCtrl::GetColumnWidth( int col ) const |
c801d85f | 3264 | { |
5b077d48 | 3265 | return m_mainWin->GetColumnWidth( col ); |
e1e955e1 | 3266 | } |
c801d85f | 3267 | |
debe6624 | 3268 | bool wxListCtrl::SetColumnWidth( int col, int width ) |
c801d85f | 3269 | { |
5b077d48 RR |
3270 | m_mainWin->SetColumnWidth( col, width ); |
3271 | return TRUE; | |
e1e955e1 | 3272 | } |
c801d85f | 3273 | |
fd9811b1 | 3274 | int wxListCtrl::GetCountPerPage() const |
c801d85f KB |
3275 | { |
3276 | return m_mainWin->GetCountPerPage(); // different from Windows ? | |
e1e955e1 | 3277 | } |
c801d85f | 3278 | |
e487524e | 3279 | bool wxListCtrl::GetItem( wxListItem &info ) const |
c801d85f | 3280 | { |
5b077d48 RR |
3281 | m_mainWin->GetItem( info ); |
3282 | return TRUE; | |
e1e955e1 | 3283 | } |
c801d85f KB |
3284 | |
3285 | bool wxListCtrl::SetItem( wxListItem &info ) | |
3286 | { | |
5b077d48 RR |
3287 | m_mainWin->SetItem( info ); |
3288 | return TRUE; | |
e1e955e1 | 3289 | } |
c801d85f | 3290 | |
debe6624 | 3291 | long wxListCtrl::SetItem( long index, int col, const wxString& label, int imageId ) |
c801d85f | 3292 | { |
5b077d48 RR |
3293 | wxListItem info; |
3294 | info.m_text = label; | |
3295 | info.m_mask = wxLIST_MASK_TEXT; | |
3296 | info.m_itemId = index; | |
3297 | info.m_col = col; | |
3298 | if ( imageId > -1 ) | |
3299 | { | |
3300 | info.m_image = imageId; | |
3301 | info.m_mask |= wxLIST_MASK_IMAGE; | |
3302 | }; | |
3303 | m_mainWin->SetItem(info); | |
3304 | return TRUE; | |
e1e955e1 | 3305 | } |
c801d85f | 3306 | |
e487524e | 3307 | int wxListCtrl::GetItemState( long item, long stateMask ) const |
c801d85f | 3308 | { |
5b077d48 | 3309 | return m_mainWin->GetItemState( item, stateMask ); |
e1e955e1 | 3310 | } |
c801d85f | 3311 | |
debe6624 | 3312 | bool wxListCtrl::SetItemState( long item, long state, long stateMask ) |
c801d85f | 3313 | { |
5b077d48 RR |
3314 | m_mainWin->SetItemState( item, state, stateMask ); |
3315 | return TRUE; | |
e1e955e1 | 3316 | } |
c801d85f | 3317 | |
debe6624 | 3318 | bool wxListCtrl::SetItemImage( long item, int image, int WXUNUSED(selImage) ) |
c801d85f | 3319 | { |
5b077d48 RR |
3320 | wxListItem info; |
3321 | info.m_image = image; | |
3322 | info.m_mask = wxLIST_MASK_IMAGE; | |
3323 | info.m_itemId = item; | |
3324 | m_mainWin->SetItem( info ); | |
3325 | return TRUE; | |
e1e955e1 | 3326 | } |
c801d85f | 3327 | |
e487524e | 3328 | wxString wxListCtrl::GetItemText( long item ) const |
c801d85f | 3329 | { |
5b077d48 RR |
3330 | wxListItem info; |
3331 | info.m_itemId = item; | |
3332 | m_mainWin->GetItem( info ); | |
3333 | return info.m_text; | |
e1e955e1 | 3334 | } |
c801d85f | 3335 | |
debe6624 | 3336 | void wxListCtrl::SetItemText( long item, const wxString &str ) |
c801d85f | 3337 | { |
5b077d48 RR |
3338 | wxListItem info; |
3339 | info.m_mask = wxLIST_MASK_TEXT; | |
3340 | info.m_itemId = item; | |
3341 | info.m_text = str; | |
3342 | m_mainWin->SetItem( info ); | |
e1e955e1 | 3343 | } |
c801d85f | 3344 | |
e487524e | 3345 | long wxListCtrl::GetItemData( long item ) const |
c801d85f | 3346 | { |
5b077d48 RR |
3347 | wxListItem info; |
3348 | info.m_itemId = item; | |
3349 | m_mainWin->GetItem( info ); | |
3350 | return info.m_data; | |
e1e955e1 | 3351 | } |
c801d85f | 3352 | |
debe6624 | 3353 | bool wxListCtrl::SetItemData( long item, long data ) |
c801d85f | 3354 | { |
5b077d48 RR |
3355 | wxListItem info; |
3356 | info.m_mask = wxLIST_MASK_DATA; | |
3357 | info.m_itemId = item; | |
3358 | info.m_data = data; | |
3359 | m_mainWin->SetItem( info ); | |
3360 | return TRUE; | |
e1e955e1 | 3361 | } |
c801d85f | 3362 | |
0a240683 | 3363 | bool wxListCtrl::GetItemRect( long item, wxRect &rect, int WXUNUSED(code) ) const |
c801d85f | 3364 | { |
5b077d48 RR |
3365 | m_mainWin->GetItemRect( item, rect ); |
3366 | return TRUE; | |
e1e955e1 | 3367 | } |
c801d85f | 3368 | |
e487524e | 3369 | bool wxListCtrl::GetItemPosition( long item, wxPoint& pos ) const |
c801d85f | 3370 | { |
5b077d48 RR |
3371 | m_mainWin->GetItemPosition( item, pos ); |
3372 | return TRUE; | |
e1e955e1 | 3373 | } |
c801d85f | 3374 | |
debe6624 | 3375 | bool wxListCtrl::SetItemPosition( long WXUNUSED(item), const wxPoint& WXUNUSED(pos) ) |
c801d85f | 3376 | { |
5b077d48 | 3377 | return 0; |
e1e955e1 | 3378 | } |
c801d85f | 3379 | |
fd9811b1 | 3380 | int wxListCtrl::GetItemCount() const |
c801d85f | 3381 | { |
5b077d48 | 3382 | return m_mainWin->GetItemCount(); |
e1e955e1 | 3383 | } |
c801d85f | 3384 | |
fd9811b1 | 3385 | int wxListCtrl::GetColumnCount() const |
92976ab6 | 3386 | { |
5b077d48 | 3387 | return m_mainWin->GetColumnCount(); |
92976ab6 RR |
3388 | } |
3389 | ||
33d0b396 RR |
3390 | void wxListCtrl::SetItemSpacing( int spacing, bool isSmall ) |
3391 | { | |
5b077d48 | 3392 | m_mainWin->SetItemSpacing( spacing, isSmall ); |
e1e955e1 | 3393 | } |
33d0b396 | 3394 | |
e487524e | 3395 | int wxListCtrl::GetItemSpacing( bool isSmall ) const |
c801d85f | 3396 | { |
5b077d48 | 3397 | return m_mainWin->GetItemSpacing( isSmall ); |
e1e955e1 | 3398 | } |
c801d85f | 3399 | |
fd9811b1 | 3400 | int wxListCtrl::GetSelectedItemCount() const |
c801d85f | 3401 | { |
5b077d48 | 3402 | return m_mainWin->GetSelectedItemCount(); |
e1e955e1 | 3403 | } |
c801d85f | 3404 | |
fd9811b1 | 3405 | wxColour wxListCtrl::GetTextColour() const |
c801d85f | 3406 | { |
0530737d | 3407 | return GetForegroundColour(); |
e1e955e1 | 3408 | } |
c801d85f | 3409 | |
0530737d | 3410 | void wxListCtrl::SetTextColour(const wxColour& col) |
c801d85f | 3411 | { |
0530737d | 3412 | SetForegroundColour(col); |
e1e955e1 | 3413 | } |
c801d85f | 3414 | |
fd9811b1 | 3415 | long wxListCtrl::GetTopItem() const |
c801d85f | 3416 | { |
5b077d48 | 3417 | return 0; |
e1e955e1 | 3418 | } |
c801d85f | 3419 | |
6de97a3b | 3420 | long wxListCtrl::GetNextItem( long item, int geom, int state ) const |
c801d85f | 3421 | { |
5b077d48 | 3422 | return m_mainWin->GetNextItem( item, geom, state ); |
e1e955e1 | 3423 | } |
c801d85f | 3424 | |
e487524e | 3425 | wxImageList *wxListCtrl::GetImageList(int which) const |
c801d85f | 3426 | { |
5b077d48 RR |
3427 | if (which == wxIMAGE_LIST_NORMAL) |
3428 | { | |
3429 | return m_imageListNormal; | |
3430 | } | |
3431 | else if (which == wxIMAGE_LIST_SMALL) | |
3432 | { | |
3433 | return m_imageListSmall; | |
3434 | } | |
3435 | else if (which == wxIMAGE_LIST_STATE) | |
3436 | { | |
3437 | return m_imageListState; | |
3438 | } | |
3439 | return (wxImageList *) NULL; | |
e1e955e1 | 3440 | } |
c801d85f | 3441 | |
debe6624 | 3442 | void wxListCtrl::SetImageList( wxImageList *imageList, int which ) |
c801d85f | 3443 | { |
5b077d48 | 3444 | m_mainWin->SetImageList( imageList, which ); |
e1e955e1 | 3445 | } |
c801d85f | 3446 | |
debe6624 | 3447 | bool wxListCtrl::Arrange( int WXUNUSED(flag) ) |
c801d85f | 3448 | { |
5b077d48 | 3449 | return 0; |
e1e955e1 | 3450 | } |
c801d85f | 3451 | |
debe6624 | 3452 | bool wxListCtrl::DeleteItem( long item ) |
c801d85f | 3453 | { |
5b077d48 RR |
3454 | m_mainWin->DeleteItem( item ); |
3455 | return TRUE; | |
e1e955e1 | 3456 | } |
c801d85f | 3457 | |
fd9811b1 | 3458 | bool wxListCtrl::DeleteAllItems() |
c801d85f | 3459 | { |
5b077d48 RR |
3460 | m_mainWin->DeleteAllItems(); |
3461 | return TRUE; | |
e1e955e1 | 3462 | } |
c801d85f | 3463 | |
4f22cf8d | 3464 | bool wxListCtrl::DeleteAllColumns() |
bd8289c1 VZ |
3465 | { |
3466 | for ( size_t n = 0; n < m_mainWin->m_columns.GetCount(); n++ ) | |
3467 | DeleteColumn(n); | |
bffa1c77 | 3468 | |
5b077d48 | 3469 | return TRUE; |
4f22cf8d RR |
3470 | } |
3471 | ||
3472 | void wxListCtrl::ClearAll() | |
3473 | { | |
5b077d48 | 3474 | m_mainWin->DeleteEverything(); |
bd8289c1 VZ |
3475 | } |
3476 | ||
debe6624 | 3477 | bool wxListCtrl::DeleteColumn( int col ) |
c801d85f | 3478 | { |
5b077d48 RR |
3479 | m_mainWin->DeleteColumn( col ); |
3480 | return TRUE; | |
e1e955e1 | 3481 | } |
c801d85f | 3482 | |
e179bd65 | 3483 | void wxListCtrl::Edit( long item ) |
c801d85f | 3484 | { |
e179bd65 | 3485 | m_mainWin->Edit( item ); |
e1e955e1 | 3486 | } |
c801d85f | 3487 | |
debe6624 | 3488 | bool wxListCtrl::EnsureVisible( long item ) |
c801d85f | 3489 | { |
5b077d48 RR |
3490 | m_mainWin->EnsureVisible( item ); |
3491 | return TRUE; | |
e1e955e1 | 3492 | } |
c801d85f | 3493 | |
debe6624 | 3494 | long wxListCtrl::FindItem( long start, const wxString& str, bool partial ) |
c801d85f | 3495 | { |
5b077d48 | 3496 | return m_mainWin->FindItem( start, str, partial ); |
e1e955e1 | 3497 | } |
c801d85f | 3498 | |
debe6624 | 3499 | long wxListCtrl::FindItem( long start, long data ) |
c801d85f | 3500 | { |
5b077d48 | 3501 | return m_mainWin->FindItem( start, data ); |
e1e955e1 | 3502 | } |
c801d85f | 3503 | |
bd8289c1 | 3504 | long wxListCtrl::FindItem( long WXUNUSED(start), const wxPoint& WXUNUSED(pt), |
debe6624 | 3505 | int WXUNUSED(direction)) |
c801d85f | 3506 | { |
5b077d48 | 3507 | return 0; |
e1e955e1 | 3508 | } |
c801d85f KB |
3509 | |
3510 | long wxListCtrl::HitTest( const wxPoint &point, int &flags ) | |
3511 | { | |
5b077d48 | 3512 | return m_mainWin->HitTest( (int)point.x, (int)point.y, flags ); |
e1e955e1 | 3513 | } |
c801d85f KB |
3514 | |
3515 | long wxListCtrl::InsertItem( wxListItem& info ) | |
3516 | { | |
5b077d48 | 3517 | m_mainWin->InsertItem( info ); |
2ebcd5f5 | 3518 | return info.m_itemId; |
e1e955e1 | 3519 | } |
c801d85f | 3520 | |
debe6624 | 3521 | long wxListCtrl::InsertItem( long index, const wxString &label ) |
c801d85f | 3522 | { |
51cc4dad RR |
3523 | wxListItem info; |
3524 | info.m_text = label; | |
3525 | info.m_mask = wxLIST_MASK_TEXT; | |
3526 | info.m_itemId = index; | |
3527 | return InsertItem( info ); | |
e1e955e1 | 3528 | } |
c801d85f | 3529 | |
debe6624 | 3530 | long wxListCtrl::InsertItem( long index, int imageIndex ) |
c801d85f | 3531 | { |
51cc4dad RR |
3532 | wxListItem info; |
3533 | info.m_mask = wxLIST_MASK_IMAGE; | |
3534 | info.m_image = imageIndex; | |
3535 | info.m_itemId = index; | |
3536 | return InsertItem( info ); | |
e1e955e1 | 3537 | } |
c801d85f | 3538 | |
debe6624 | 3539 | long wxListCtrl::InsertItem( long index, const wxString &label, int imageIndex ) |
c801d85f | 3540 | { |
51cc4dad RR |
3541 | wxListItem info; |
3542 | info.m_text = label; | |
3543 | info.m_image = imageIndex; | |
3544 | info.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE; | |
3545 | info.m_itemId = index; | |
3546 | return InsertItem( info ); | |
e1e955e1 | 3547 | } |
c801d85f | 3548 | |
debe6624 | 3549 | long wxListCtrl::InsertColumn( long col, wxListItem &item ) |
c801d85f | 3550 | { |
d3e90957 | 3551 | wxASSERT( m_headerWin ); |
51cc4dad | 3552 | m_mainWin->InsertColumn( col, item ); |
d3e90957 | 3553 | m_headerWin->Refresh(); |
25e3a937 | 3554 | |
51cc4dad | 3555 | return 0; |
e1e955e1 | 3556 | } |
c801d85f | 3557 | |
debe6624 JS |
3558 | long wxListCtrl::InsertColumn( long col, const wxString &heading, |
3559 | int format, int width ) | |
c801d85f | 3560 | { |
51cc4dad RR |
3561 | wxListItem item; |
3562 | item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT; | |
3563 | item.m_text = heading; | |
3564 | if (width >= -2) | |
3565 | { | |
3566 | item.m_mask |= wxLIST_MASK_WIDTH; | |
3567 | item.m_width = width; | |
3568 | } | |
3569 | item.m_format = format; | |
c801d85f | 3570 | |
51cc4dad | 3571 | return InsertColumn( col, item ); |
e1e955e1 | 3572 | } |
c801d85f | 3573 | |
debe6624 | 3574 | bool wxListCtrl::ScrollList( int WXUNUSED(dx), int WXUNUSED(dy) ) |
c801d85f | 3575 | { |
51cc4dad | 3576 | return 0; |
e1e955e1 | 3577 | } |
c801d85f KB |
3578 | |
3579 | // Sort items. | |
3580 | // fn is a function which takes 3 long arguments: item1, item2, data. | |
3581 | // item1 is the long data associated with a first item (NOT the index). | |
3582 | // item2 is the long data associated with a second item (NOT the index). | |
3583 | // data is the same value as passed to SortItems. | |
3584 | // The return value is a negative number if the first item should precede the second | |
3585 | // item, a positive number of the second item should precede the first, | |
3586 | // or zero if the two items are equivalent. | |
3587 | // data is arbitrary data to be passed to the sort function. | |
3588 | ||
3589 | bool wxListCtrl::SortItems( wxListCtrlCompare fn, long data ) | |
3590 | { | |
51cc4dad RR |
3591 | m_mainWin->SortItems( fn, data ); |
3592 | return TRUE; | |
e1e955e1 | 3593 | } |
c801d85f | 3594 | |
e3e65dac | 3595 | void wxListCtrl::OnIdle( wxIdleEvent &WXUNUSED(event) ) |
53010e52 | 3596 | { |
51cc4dad | 3597 | if (!m_mainWin->m_dirty) return; |
53010e52 | 3598 | |
51cc4dad RR |
3599 | int cw = 0; |
3600 | int ch = 0; | |
3601 | GetClientSize( &cw, &ch ); | |
bd8289c1 | 3602 | |
51cc4dad RR |
3603 | int x = 0; |
3604 | int y = 0; | |
3605 | int w = 0; | |
3606 | int h = 0; | |
bd8289c1 | 3607 | |
8636aed8 | 3608 | if (HasFlag(wxLC_REPORT) && !HasFlag(wxLC_NO_HEADER)) |
51cc4dad RR |
3609 | { |
3610 | m_headerWin->GetPosition( &x, &y ); | |
3611 | m_headerWin->GetSize( &w, &h ); | |
3612 | if ((x != 0) || (y != 0) || (w != cw) || (h != 23)) | |
3613 | m_headerWin->SetSize( 0, 0, cw, 23 ); | |
3614 | ||
3615 | m_mainWin->GetPosition( &x, &y ); | |
3616 | m_mainWin->GetSize( &w, &h ); | |
3617 | if ((x != 0) || (y != 24) || (w != cw) || (h != ch-24)) | |
3618 | m_mainWin->SetSize( 0, 24, cw, ch-24 ); | |
3619 | } | |
3620 | else | |
3621 | { | |
3622 | m_mainWin->GetPosition( &x, &y ); | |
3623 | m_mainWin->GetSize( &w, &h ); | |
3624 | if ((x != 0) || (y != 24) || (w != cw) || (h != ch)) | |
3625 | m_mainWin->SetSize( 0, 0, cw, ch ); | |
3626 | } | |
bd8289c1 | 3627 | |
51cc4dad RR |
3628 | m_mainWin->CalculatePositions(); |
3629 | m_mainWin->RealizeChanges(); | |
3630 | m_mainWin->m_dirty = FALSE; | |
3631 | m_mainWin->Refresh(); | |
f6bcfd97 BP |
3632 | |
3633 | if ( m_headerWin && m_headerWin->m_dirty ) | |
3634 | { | |
3635 | m_headerWin->m_dirty = FALSE; | |
3636 | m_headerWin->Refresh(); | |
3637 | } | |
e1e955e1 | 3638 | } |
53010e52 | 3639 | |
f03fc89f | 3640 | bool wxListCtrl::SetBackgroundColour( const wxColour &colour ) |
bd8289c1 | 3641 | { |
51cc4dad RR |
3642 | if (m_mainWin) |
3643 | { | |
3644 | m_mainWin->SetBackgroundColour( colour ); | |
3645 | m_mainWin->m_dirty = TRUE; | |
3646 | } | |
004fd0c8 | 3647 | |
f03fc89f | 3648 | return TRUE; |
e4d06860 RR |
3649 | } |
3650 | ||
f03fc89f | 3651 | bool wxListCtrl::SetForegroundColour( const wxColour &colour ) |
bd8289c1 | 3652 | { |
f03fc89f VZ |
3653 | if ( !wxWindow::SetForegroundColour( colour ) ) |
3654 | return FALSE; | |
004fd0c8 | 3655 | |
51cc4dad RR |
3656 | if (m_mainWin) |
3657 | { | |
3658 | m_mainWin->SetForegroundColour( colour ); | |
3659 | m_mainWin->m_dirty = TRUE; | |
3660 | } | |
004fd0c8 | 3661 | |
51cc4dad RR |
3662 | if (m_headerWin) |
3663 | { | |
3664 | m_headerWin->SetForegroundColour( colour ); | |
3665 | } | |
f03fc89f VZ |
3666 | |
3667 | return TRUE; | |
e4d06860 | 3668 | } |
bd8289c1 | 3669 | |
f03fc89f | 3670 | bool wxListCtrl::SetFont( const wxFont &font ) |
bd8289c1 | 3671 | { |
f03fc89f VZ |
3672 | if ( !wxWindow::SetFont( font ) ) |
3673 | return FALSE; | |
004fd0c8 | 3674 | |
51cc4dad RR |
3675 | if (m_mainWin) |
3676 | { | |
3677 | m_mainWin->SetFont( font ); | |
3678 | m_mainWin->m_dirty = TRUE; | |
3679 | } | |
004fd0c8 | 3680 | |
51cc4dad RR |
3681 | if (m_headerWin) |
3682 | { | |
3683 | m_headerWin->SetFont( font ); | |
3684 | } | |
f03fc89f VZ |
3685 | |
3686 | return TRUE; | |
e4d06860 | 3687 | } |
c801d85f | 3688 | |
efbb7287 VZ |
3689 | #if wxUSE_DRAG_AND_DROP |
3690 | ||
3691 | void wxListCtrl::SetDropTarget( wxDropTarget *dropTarget ) | |
3692 | { | |
3693 | m_mainWin->SetDropTarget( dropTarget ); | |
3694 | } | |
3695 | ||
3696 | wxDropTarget *wxListCtrl::GetDropTarget() const | |
3697 | { | |
3698 | return m_mainWin->GetDropTarget(); | |
3699 | } | |
3700 | ||
3701 | #endif // wxUSE_DRAG_AND_DROP | |
3702 | ||
3703 | bool wxListCtrl::SetCursor( const wxCursor &cursor ) | |
3704 | { | |
3705 | return m_mainWin ? m_mainWin->wxWindow::SetCursor(cursor) : FALSE; | |
3706 | } | |
3707 | ||
3708 | wxColour wxListCtrl::GetBackgroundColour() const | |
3709 | { | |
3710 | return m_mainWin ? m_mainWin->GetBackgroundColour() : wxColour(); | |
3711 | } | |
3712 | ||
3713 | wxColour wxListCtrl::GetForegroundColour() const | |
3714 | { | |
3715 | return m_mainWin ? m_mainWin->GetForegroundColour() : wxColour(); | |
3716 | } | |
3717 | ||
3718 | bool wxListCtrl::DoPopupMenu( wxMenu *menu, int x, int y ) | |
3719 | { | |
3720 | return m_mainWin->PopupMenu( menu, x, y ); | |
3721 | } | |
3722 | ||
3723 | void wxListCtrl::SetFocus() | |
3724 | { | |
3725 | /* The test in window.cpp fails as we are a composite | |
3726 | window, so it checks against "this", but not m_mainWin. */ | |
3727 | if ( FindFocus() != this ) | |
3728 | m_mainWin->SetFocus(); | |
3729 | } |