]>
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__ | |
11 | #pragma implementation "listctrl.h" | |
12 | #endif | |
13 | ||
1e6d9499 JS |
14 | // For compilers that support precompilation, includes "wx.h". |
15 | #include "wx/wxprec.h" | |
16 | ||
17 | #ifdef __BORLANDC__ | |
18 | #pragma hdrstop | |
19 | #endif | |
20 | ||
0208334d RR |
21 | #include "wx/dcscreen.h" |
22 | #include "wx/app.h" | |
f60d0f94 JS |
23 | #include "wx/generic/listctrl.h" |
24 | #include "wx/generic/imaglist.h" | |
c801d85f KB |
25 | |
26 | //----------------------------------------------------------------------------- | |
27 | // wxListItemData | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
30 | IMPLEMENT_DYNAMIC_CLASS(wxListItemData,wxObject); | |
31 | ||
32 | wxListItemData::wxListItemData(void) | |
33 | { | |
92976ab6 RR |
34 | m_image = -1; |
35 | m_data = 0; | |
36 | m_xpos = 0; | |
37 | m_ypos = 0; | |
38 | m_width = 0; | |
39 | m_height = 0; | |
40 | m_colour = wxBLACK; | |
e1e955e1 | 41 | } |
c801d85f KB |
42 | |
43 | wxListItemData::wxListItemData( const wxListItem &info ) | |
44 | { | |
92976ab6 RR |
45 | m_image = -1; |
46 | m_data = 0; | |
47 | m_colour = info.m_colour; | |
48 | SetItem( info ); | |
e1e955e1 | 49 | } |
c801d85f KB |
50 | |
51 | void wxListItemData::SetItem( const wxListItem &info ) | |
52 | { | |
92976ab6 RR |
53 | if (info.m_mask & wxLIST_MASK_TEXT) m_text = info.m_text; |
54 | if (info.m_mask & wxLIST_MASK_IMAGE) m_image = info.m_image; | |
55 | if (info.m_mask & wxLIST_MASK_DATA) m_data = info.m_data; | |
56 | m_colour = info.m_colour; | |
57 | m_xpos = 0; | |
58 | m_ypos = 0; | |
59 | m_width = info.m_width; | |
60 | m_height = 0; | |
e1e955e1 | 61 | } |
c801d85f KB |
62 | |
63 | void wxListItemData::SetText( const wxString &s ) | |
64 | { | |
92976ab6 | 65 | m_text = s; |
e1e955e1 | 66 | } |
c801d85f | 67 | |
debe6624 | 68 | void wxListItemData::SetImage( int image ) |
c801d85f | 69 | { |
92976ab6 | 70 | m_image = image; |
e1e955e1 | 71 | } |
c801d85f | 72 | |
debe6624 | 73 | void wxListItemData::SetData( long data ) |
c801d85f | 74 | { |
92976ab6 | 75 | m_data = data; |
e1e955e1 | 76 | } |
c801d85f | 77 | |
debe6624 | 78 | void wxListItemData::SetPosition( int x, int y ) |
c801d85f | 79 | { |
92976ab6 RR |
80 | m_xpos = x; |
81 | m_ypos = y; | |
e1e955e1 | 82 | } |
c801d85f | 83 | |
1e6d9499 | 84 | void wxListItemData::SetSize( int width, int height ) |
c801d85f | 85 | { |
92976ab6 RR |
86 | if (width != -1) m_width = width; |
87 | if (height != -1) m_height = height; | |
e1e955e1 | 88 | } |
c801d85f KB |
89 | |
90 | void wxListItemData::SetColour( wxColour *col ) | |
91 | { | |
92976ab6 | 92 | m_colour = col; |
e1e955e1 | 93 | } |
c801d85f KB |
94 | |
95 | bool wxListItemData::HasImage(void) const | |
96 | { | |
92976ab6 | 97 | return (m_image >= 0); |
e1e955e1 | 98 | } |
c801d85f KB |
99 | |
100 | bool wxListItemData::HasText(void) const | |
101 | { | |
92976ab6 | 102 | return (!m_text.IsNull()); |
e1e955e1 | 103 | } |
c801d85f | 104 | |
debe6624 | 105 | bool wxListItemData::IsHit( int x, int y ) const |
c801d85f | 106 | { |
92976ab6 | 107 | return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height)); |
e1e955e1 | 108 | } |
c801d85f KB |
109 | |
110 | void wxListItemData::GetText( wxString &s ) | |
111 | { | |
92976ab6 | 112 | s = m_text; |
e1e955e1 | 113 | } |
c801d85f KB |
114 | |
115 | int wxListItemData::GetX( void ) const | |
116 | { | |
92976ab6 | 117 | return m_xpos; |
e1e955e1 | 118 | } |
c801d85f KB |
119 | |
120 | int wxListItemData::GetY( void ) const | |
121 | { | |
92976ab6 | 122 | return m_ypos; |
e1e955e1 | 123 | } |
c801d85f KB |
124 | |
125 | int wxListItemData::GetWidth(void) const | |
126 | { | |
92976ab6 | 127 | return m_width; |
e1e955e1 | 128 | } |
c801d85f KB |
129 | |
130 | int wxListItemData::GetHeight(void) const | |
131 | { | |
92976ab6 | 132 | return m_height; |
e1e955e1 | 133 | } |
c801d85f KB |
134 | |
135 | int wxListItemData::GetImage(void) const | |
136 | { | |
92976ab6 | 137 | return m_image; |
e1e955e1 | 138 | } |
c801d85f KB |
139 | |
140 | void wxListItemData::GetItem( wxListItem &info ) | |
141 | { | |
92976ab6 RR |
142 | info.m_text = m_text; |
143 | info.m_image = m_image; | |
144 | info.m_data = m_data; | |
e1e955e1 | 145 | } |
c801d85f KB |
146 | |
147 | wxColour *wxListItemData::GetColour(void) | |
148 | { | |
92976ab6 | 149 | return m_colour; |
e1e955e1 | 150 | } |
c801d85f KB |
151 | |
152 | //----------------------------------------------------------------------------- | |
153 | // wxListHeaderData | |
154 | //----------------------------------------------------------------------------- | |
155 | ||
156 | IMPLEMENT_DYNAMIC_CLASS(wxListHeaderData,wxObject); | |
157 | ||
158 | wxListHeaderData::wxListHeaderData(void) | |
159 | { | |
92976ab6 RR |
160 | m_mask = 0; |
161 | m_image = 0; | |
162 | m_format = 0; | |
163 | m_width = 0; | |
164 | m_xpos = 0; | |
165 | m_ypos = 0; | |
166 | m_height = 0; | |
e1e955e1 | 167 | } |
c801d85f KB |
168 | |
169 | wxListHeaderData::wxListHeaderData( const wxListItem &item ) | |
170 | { | |
92976ab6 RR |
171 | SetItem( item ); |
172 | m_xpos = 0; | |
173 | m_ypos = 0; | |
174 | m_height = 0; | |
e1e955e1 | 175 | } |
c801d85f KB |
176 | |
177 | void wxListHeaderData::SetItem( const wxListItem &item ) | |
178 | { | |
92976ab6 RR |
179 | m_mask = item.m_mask; |
180 | m_text = item.m_text; | |
181 | m_image = item.m_image; | |
182 | m_format = item.m_format; | |
183 | m_width = item.m_width; | |
184 | if (m_width < 0) m_width = 80; | |
185 | if (m_width < 6) m_width = 6; | |
e1e955e1 | 186 | } |
c801d85f | 187 | |
debe6624 | 188 | void wxListHeaderData::SetPosition( int x, int y ) |
c801d85f | 189 | { |
92976ab6 RR |
190 | m_xpos = x; |
191 | m_ypos = y; | |
e1e955e1 | 192 | } |
c801d85f | 193 | |
debe6624 | 194 | void wxListHeaderData::SetHeight( int h ) |
c801d85f | 195 | { |
92976ab6 | 196 | m_height = h; |
e1e955e1 | 197 | } |
c801d85f | 198 | |
debe6624 | 199 | void wxListHeaderData::SetWidth( int w ) |
c801d85f | 200 | { |
92976ab6 RR |
201 | m_width = w; |
202 | if (m_width < 0) m_width = 80; | |
203 | if (m_width < 6) m_width = 6; | |
e1e955e1 | 204 | } |
c801d85f | 205 | |
debe6624 | 206 | void wxListHeaderData::SetFormat( int format ) |
c801d85f | 207 | { |
92976ab6 | 208 | m_format = format; |
e1e955e1 | 209 | } |
c801d85f KB |
210 | |
211 | bool wxListHeaderData::HasImage(void) const | |
212 | { | |
92976ab6 | 213 | return (m_image != 0); |
e1e955e1 | 214 | } |
c801d85f KB |
215 | |
216 | bool wxListHeaderData::HasText(void) const | |
217 | { | |
92976ab6 | 218 | return (m_text.Length() > 0); |
e1e955e1 | 219 | } |
c801d85f KB |
220 | |
221 | bool wxListHeaderData::IsHit( int x, int y ) const | |
222 | { | |
92976ab6 | 223 | return ((x >= m_xpos) && (x <= m_xpos+m_width) && (y >= m_ypos) && (y <= m_ypos+m_height)); |
e1e955e1 | 224 | } |
c801d85f KB |
225 | |
226 | void wxListHeaderData::GetItem( wxListItem &item ) | |
227 | { | |
92976ab6 RR |
228 | item.m_mask = m_mask; |
229 | item.m_text = m_text; | |
230 | item.m_image = m_image; | |
231 | item.m_format = m_format; | |
232 | item.m_width = m_width; | |
e1e955e1 | 233 | } |
c801d85f KB |
234 | |
235 | void wxListHeaderData::GetText( wxString &s ) | |
236 | { | |
92976ab6 | 237 | s = m_text; |
e1e955e1 | 238 | } |
c801d85f KB |
239 | |
240 | int wxListHeaderData::GetImage(void) const | |
241 | { | |
92976ab6 | 242 | return m_image; |
e1e955e1 | 243 | } |
c801d85f KB |
244 | |
245 | int wxListHeaderData::GetWidth(void) const | |
246 | { | |
92976ab6 | 247 | return m_width; |
e1e955e1 | 248 | } |
c801d85f KB |
249 | |
250 | int wxListHeaderData::GetFormat(void) const | |
251 | { | |
92976ab6 | 252 | return m_format; |
e1e955e1 | 253 | } |
c801d85f KB |
254 | |
255 | //----------------------------------------------------------------------------- | |
256 | // wxListLineData | |
257 | //----------------------------------------------------------------------------- | |
258 | ||
259 | IMPLEMENT_DYNAMIC_CLASS(wxListLineData,wxObject); | |
260 | ||
debe6624 | 261 | wxListLineData::wxListLineData( wxListMainWindow *owner, int mode, wxBrush *hilightBrush ) |
c801d85f | 262 | { |
92976ab6 RR |
263 | m_mode = mode; |
264 | m_hilighted = FALSE; | |
265 | m_owner = owner; | |
266 | m_hilightBrush = hilightBrush; | |
267 | m_items.DeleteContents( TRUE ); | |
268 | m_spacing = 0; | |
e1e955e1 | 269 | } |
c801d85f | 270 | |
1e6d9499 | 271 | void wxListLineData::CalculateSize( wxDC *dc, int spacing ) |
c801d85f | 272 | { |
92976ab6 RR |
273 | m_spacing = spacing; |
274 | switch (m_mode) | |
c801d85f | 275 | { |
92976ab6 RR |
276 | case wxLC_ICON: |
277 | { | |
278 | m_bound_all.width = m_spacing; | |
279 | m_bound_all.height = m_spacing+13; | |
280 | wxNode *node = m_items.First(); | |
281 | if (node) | |
282 | { | |
283 | wxListItemData *item = (wxListItemData*)node->Data(); | |
284 | wxString s; | |
285 | item->GetText( s ); | |
286 | long lw,lh; | |
287 | dc->GetTextExtent( s, &lw, &lh ); | |
288 | if (lw > m_spacing) m_bound_all.width = lw; | |
289 | } | |
290 | break; | |
291 | } | |
292 | case wxLC_LIST: | |
293 | { | |
294 | wxNode *node = m_items.First(); | |
295 | if (node) | |
296 | { | |
297 | wxListItemData *item = (wxListItemData*)node->Data(); | |
298 | wxString s; | |
299 | item->GetText( s ); | |
300 | long lw,lh; | |
301 | dc->GetTextExtent( s, &lw, &lh ); | |
302 | m_bound_all.width = lw; | |
303 | m_bound_all.height = lh; | |
304 | } | |
305 | break; | |
306 | } | |
307 | case wxLC_REPORT: | |
308 | { | |
309 | m_bound_all.width = 0; | |
310 | m_bound_all.height = 0; | |
311 | wxNode *node = m_items.First(); | |
312 | while (node) | |
313 | { | |
314 | wxListItemData *item = (wxListItemData*)node->Data(); | |
315 | wxString s; | |
316 | item->GetText( s ); | |
317 | if (s.IsNull()) s = "H"; | |
318 | long lw,lh; | |
319 | dc->GetTextExtent( s, &lw, &lh ); | |
320 | item->SetSize( item->GetWidth(), lh ); | |
321 | m_bound_all.width += lw; | |
322 | m_bound_all.height = lh; | |
323 | node = node->Next(); | |
324 | } | |
325 | break; | |
326 | } | |
e1e955e1 | 327 | } |
e1e955e1 | 328 | } |
c801d85f | 329 | |
1e6d9499 | 330 | void wxListLineData::SetPosition( wxDC *dc, int x, int y, int window_width ) |
c801d85f KB |
331 | { |
332 | m_bound_all.x = x; | |
333 | m_bound_all.y = y; | |
334 | switch (m_mode) | |
335 | { | |
336 | case wxLC_ICON: | |
337 | { | |
338 | AssignRect( m_bound_icon, 0, 0, 0, 0 ); | |
339 | AssignRect( m_bound_label, 0, 0, 0, 0 ); | |
340 | AssignRect( m_bound_hilight, m_bound_all ); | |
341 | wxNode *node = m_items.First(); | |
342 | if (node) | |
343 | { | |
344 | wxListItemData *item = (wxListItemData*)node->Data(); | |
345 | if (item->HasImage()) | |
346 | { | |
347 | wxListItemData *item = (wxListItemData*)node->Data(); | |
348 | int w = 0; | |
349 | int h = 0; | |
350 | m_owner->GetImageSize( item->GetImage(), w, h ); | |
351 | m_bound_icon.x = m_bound_all.x + (m_spacing/2) - (w/2); | |
352 | m_bound_icon.y = m_bound_all.y + m_spacing - h - 5; | |
353 | m_bound_icon.width = w; | |
354 | m_bound_icon.height = h; | |
355 | if (!item->HasText()) | |
356 | { | |
357 | AssignRect( m_bound_hilight, m_bound_icon ); | |
3db7be80 RR |
358 | m_bound_hilight.x -= 5; |
359 | m_bound_hilight.y -= 5; | |
360 | m_bound_hilight.width += 9; | |
361 | m_bound_hilight.height += 9; | |
e1e955e1 RR |
362 | } |
363 | } | |
c801d85f KB |
364 | if (item->HasText()) |
365 | { | |
366 | wxString s; | |
367 | item->GetText( s ); | |
368 | long lw,lh; | |
369 | dc->GetTextExtent( s, &lw, &lh ); | |
370 | if (m_bound_all.width > m_spacing) | |
371 | m_bound_label.x = m_bound_all.x; | |
372 | else | |
373 | m_bound_label.x = m_bound_all.x + (m_spacing/2) - lw/2; | |
374 | m_bound_label.y = m_bound_all.y + m_bound_all.height - lh; | |
375 | m_bound_label.width = lw; | |
376 | m_bound_label.height = lh; | |
377 | AssignRect( m_bound_hilight, m_bound_label ); | |
3db7be80 RR |
378 | m_bound_hilight.x -= 2; |
379 | m_bound_hilight.y -= 2; | |
380 | m_bound_hilight.width += 4; | |
381 | m_bound_hilight.height += 4; | |
e1e955e1 RR |
382 | } |
383 | } | |
c801d85f | 384 | break; |
e1e955e1 | 385 | } |
c801d85f KB |
386 | case wxLC_LIST: |
387 | { | |
388 | AssignRect( m_bound_label, m_bound_all ); | |
3db7be80 RR |
389 | m_bound_all.x -= 2; |
390 | m_bound_all.y -= 2; | |
391 | m_bound_all.width += 4; | |
92976ab6 | 392 | m_bound_all.height += 3; |
c801d85f KB |
393 | AssignRect( m_bound_hilight, m_bound_all ); |
394 | AssignRect( m_bound_icon, 0, 0, 0, 0 ); | |
395 | break; | |
e1e955e1 | 396 | } |
c801d85f KB |
397 | case wxLC_REPORT: |
398 | { | |
399 | long lw,lh; | |
400 | dc->GetTextExtent( "H", &lw, &lh ); | |
3db7be80 RR |
401 | m_bound_all.x = 0; |
402 | m_bound_all.y -= 0; | |
403 | m_bound_all.height = lh+3; | |
c801d85f | 404 | m_bound_all.width = window_width; |
c801d85f | 405 | AssignRect( m_bound_hilight, m_bound_all ); |
3db7be80 | 406 | AssignRect( m_bound_label, 0, 0, 0 ,0 ); |
c801d85f | 407 | AssignRect( m_bound_icon, 0, 0, 0, 0 ); |
c801d85f | 408 | break; |
e1e955e1 RR |
409 | } |
410 | } | |
411 | } | |
c801d85f | 412 | |
debe6624 | 413 | void wxListLineData::SetColumnPosition( int index, int x ) |
c801d85f | 414 | { |
92976ab6 RR |
415 | int i = index; |
416 | wxNode *node = m_items.Nth( i ); | |
417 | if (node) | |
418 | { | |
419 | wxListItemData *item = (wxListItemData*)node->Data(); | |
420 | item->SetPosition( x, m_bound_all.y+1 ); | |
421 | } | |
e1e955e1 | 422 | } |
c801d85f KB |
423 | |
424 | void wxListLineData::GetSize( int &width, int &height ) | |
425 | { | |
139adb6a RR |
426 | width = m_bound_all.width; |
427 | height = m_bound_all.height; | |
e1e955e1 | 428 | } |
c801d85f KB |
429 | |
430 | void wxListLineData::GetExtent( int &x, int &y, int &width, int &height ) | |
431 | { | |
139adb6a RR |
432 | x = m_bound_all.x; |
433 | y = m_bound_all.y; | |
434 | width = m_bound_all.width; | |
435 | height = m_bound_all.height; | |
e1e955e1 | 436 | } |
c801d85f KB |
437 | |
438 | void wxListLineData::GetLabelExtent( int &x, int &y, int &width, int &height ) | |
439 | { | |
139adb6a RR |
440 | x = m_bound_label.x; |
441 | y = m_bound_label.y; | |
442 | width = m_bound_label.width; | |
443 | height = m_bound_label.height; | |
e1e955e1 | 444 | } |
c801d85f | 445 | |
0a240683 | 446 | void wxListLineData::GetRect( wxRect &rect ) |
c801d85f | 447 | { |
139adb6a | 448 | AssignRect( rect, m_bound_all ); |
e1e955e1 | 449 | } |
c801d85f | 450 | |
debe6624 | 451 | long wxListLineData::IsHit( int x, int y ) |
c801d85f | 452 | { |
139adb6a RR |
453 | wxNode *node = m_items.First(); |
454 | if (node) | |
455 | { | |
456 | wxListItemData *item = (wxListItemData*)node->Data(); | |
457 | if (item->HasImage() && IsInRect( x, y, m_bound_icon )) return wxLIST_HITTEST_ONITEMICON; | |
458 | if (item->HasText() && IsInRect( x, y, m_bound_label )) return wxLIST_HITTEST_ONITEMLABEL; | |
459 | // if (!(item->HasImage() || item->HasText())) return 0; | |
460 | } | |
461 | // if there is no icon or text = empty | |
462 | if (IsInRect( x, y, m_bound_all )) return wxLIST_HITTEST_ONITEMICON; | |
463 | return 0; | |
e1e955e1 | 464 | } |
c801d85f | 465 | |
debe6624 | 466 | void wxListLineData::InitItems( int num ) |
c801d85f | 467 | { |
139adb6a | 468 | for (int i = 0; i < num; i++) m_items.Append( new wxListItemData() ); |
e1e955e1 | 469 | } |
c801d85f | 470 | |
debe6624 | 471 | void wxListLineData::SetItem( int index, const wxListItem &info ) |
c801d85f | 472 | { |
139adb6a RR |
473 | wxNode *node = m_items.Nth( index ); |
474 | if (node) | |
475 | { | |
476 | wxListItemData *item = (wxListItemData*)node->Data(); | |
477 | item->SetItem( info ); | |
478 | } | |
e1e955e1 | 479 | } |
c801d85f | 480 | |
1e6d9499 | 481 | void wxListLineData::GetItem( int index, wxListItem &info ) |
c801d85f | 482 | { |
139adb6a RR |
483 | int i = index; |
484 | wxNode *node = m_items.Nth( i ); | |
485 | if (node) | |
486 | { | |
487 | wxListItemData *item = (wxListItemData*)node->Data(); | |
488 | item->GetItem( info ); | |
489 | } | |
e1e955e1 | 490 | } |
c801d85f | 491 | |
debe6624 | 492 | void wxListLineData::GetText( int index, wxString &s ) |
c801d85f | 493 | { |
139adb6a RR |
494 | int i = index; |
495 | wxNode *node = m_items.Nth( i ); | |
496 | s = ""; | |
497 | if (node) | |
498 | { | |
499 | wxListItemData *item = (wxListItemData*)node->Data(); | |
500 | item->GetText( s ); | |
501 | } | |
e1e955e1 | 502 | } |
c801d85f | 503 | |
debe6624 | 504 | void wxListLineData::SetText( int index, const wxString s ) |
c801d85f | 505 | { |
139adb6a RR |
506 | int i = index; |
507 | wxNode *node = m_items.Nth( i ); | |
508 | if (node) | |
509 | { | |
510 | wxListItemData *item = (wxListItemData*)node->Data(); | |
511 | item->SetText( s ); | |
512 | } | |
e1e955e1 | 513 | } |
c801d85f | 514 | |
debe6624 | 515 | int wxListLineData::GetImage( int index ) |
c801d85f | 516 | { |
139adb6a RR |
517 | int i = index; |
518 | wxNode *node = m_items.Nth( i ); | |
519 | if (node) | |
520 | { | |
521 | wxListItemData *item = (wxListItemData*)node->Data(); | |
522 | return item->GetImage(); | |
523 | } | |
524 | return -1; | |
e1e955e1 | 525 | } |
c801d85f | 526 | |
1e6d9499 | 527 | void wxListLineData::DoDraw( wxDC *dc, bool hilight, bool paintBG ) |
c801d85f | 528 | { |
139adb6a RR |
529 | long dev_x = dc->LogicalToDeviceX( m_bound_all.x-2 ); |
530 | long dev_y = dc->LogicalToDeviceY( m_bound_all.y-2 ); | |
531 | long dev_w = dc->LogicalToDeviceXRel( m_bound_all.width+4 ); | |
532 | long dev_h = dc->LogicalToDeviceYRel( m_bound_all.height+4 ); | |
533 | ||
534 | if (!m_owner->IsExposed( dev_x, dev_y, dev_w, dev_h )) | |
535 | { | |
536 | return; | |
537 | } | |
bd8289c1 | 538 | |
63852e78 | 539 | if (paintBG) |
c801d85f | 540 | { |
63852e78 RR |
541 | if (hilight) |
542 | { | |
543 | dc->SetBrush( * m_hilightBrush ); | |
544 | dc->SetPen( * wxTRANSPARENT_PEN ); | |
545 | } | |
546 | else | |
547 | { | |
548 | dc->SetBrush( * wxWHITE_BRUSH ); | |
549 | dc->SetPen( * wxTRANSPARENT_PEN ); | |
550 | } | |
551 | dc->DrawRectangle( m_bound_hilight.x, m_bound_hilight.y, | |
552 | m_bound_hilight.width, m_bound_hilight.height ); | |
e1e955e1 | 553 | } |
63852e78 | 554 | |
f60d0f94 | 555 | dc->SetBackgroundMode(wxTRANSPARENT); |
63852e78 | 556 | if (m_mode == wxLC_REPORT) |
c801d85f | 557 | { |
63852e78 RR |
558 | wxString s; |
559 | wxNode *node = m_items.First(); | |
560 | while (node) | |
561 | { | |
562 | wxListItemData *item = (wxListItemData*)node->Data(); | |
563 | dc->SetClippingRegion( item->GetX(), item->GetY(), item->GetWidth()-3, item->GetHeight() ); | |
564 | int x = item->GetX(); | |
565 | if (item->HasImage()) | |
566 | { | |
567 | int y = 0; | |
568 | m_owner->DrawImage( item->GetImage(), dc, x, item->GetY() ); | |
569 | m_owner->GetImageSize( item->GetImage(), x, y ); | |
570 | x += item->GetX() + 5; | |
571 | } | |
572 | if (item->HasText()) | |
573 | { | |
574 | item->GetText( s ); | |
575 | if (hilight) | |
576 | dc->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT ) ); | |
577 | else | |
578 | dc->SetTextForeground( *item->GetColour() ); | |
579 | dc->DrawText( s, x, item->GetY() ); | |
580 | } | |
581 | dc->DestroyClippingRegion(); | |
582 | node = node->Next(); | |
583 | } | |
e1e955e1 | 584 | } |
63852e78 | 585 | else |
c801d85f | 586 | { |
63852e78 RR |
587 | wxNode *node = m_items.First(); |
588 | if (node) | |
589 | { | |
590 | wxListItemData *item = (wxListItemData*)node->Data(); | |
591 | if (item->HasImage()) | |
592 | { | |
593 | m_owner->DrawImage( item->GetImage(), dc, m_bound_icon.x, m_bound_icon.y ); | |
594 | } | |
595 | if (item->HasText()) | |
596 | { | |
597 | wxString s; | |
598 | item->GetText( s ); | |
599 | if (hilight) | |
600 | dc->SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT ) ); | |
601 | else | |
602 | dc->SetTextForeground( * item->GetColour() ); | |
603 | dc->DrawText( s, m_bound_label.x, m_bound_label.y ); | |
604 | } | |
605 | } | |
e1e955e1 | 606 | } |
e1e955e1 | 607 | } |
c801d85f | 608 | |
debe6624 | 609 | void wxListLineData::Hilight( bool on ) |
c801d85f | 610 | { |
63852e78 RR |
611 | if (on == m_hilighted) return; |
612 | if (on) | |
613 | m_owner->SelectLine( this ); | |
614 | else | |
615 | m_owner->DeselectLine( this ); | |
616 | m_hilighted = on; | |
e1e955e1 | 617 | } |
c801d85f KB |
618 | |
619 | void wxListLineData::ReverseHilight( void ) | |
620 | { | |
63852e78 RR |
621 | m_hilighted = !m_hilighted; |
622 | if (m_hilighted) | |
623 | m_owner->SelectLine( this ); | |
624 | else | |
625 | m_owner->DeselectLine( this ); | |
e1e955e1 | 626 | } |
c801d85f | 627 | |
1e6d9499 | 628 | void wxListLineData::DrawRubberBand( wxDC *dc, bool on ) |
c801d85f | 629 | { |
63852e78 RR |
630 | if (on) |
631 | { | |
632 | dc->SetPen( * wxBLACK_PEN ); | |
633 | dc->SetBrush( * wxTRANSPARENT_BRUSH ); | |
634 | dc->DrawRectangle( m_bound_hilight.x, m_bound_hilight.y, | |
635 | m_bound_hilight.width, m_bound_hilight.height ); | |
636 | } | |
e1e955e1 | 637 | } |
c801d85f | 638 | |
1e6d9499 | 639 | void wxListLineData::Draw( wxDC *dc ) |
c801d85f | 640 | { |
63852e78 | 641 | DoDraw( dc, m_hilighted, m_hilighted ); |
e1e955e1 | 642 | } |
c801d85f | 643 | |
0a240683 | 644 | bool wxListLineData::IsInRect( int x, int y, const wxRect &rect ) |
c801d85f | 645 | { |
63852e78 RR |
646 | return ((x >= rect.x) && (x <= rect.x+rect.width) && |
647 | (y >= rect.y) && (y <= rect.y+rect.height)); | |
e1e955e1 | 648 | } |
c801d85f KB |
649 | |
650 | bool wxListLineData::IsHilighted( void ) | |
651 | { | |
63852e78 | 652 | return m_hilighted; |
e1e955e1 | 653 | } |
c801d85f | 654 | |
0a240683 | 655 | void wxListLineData::AssignRect( wxRect &dest, int x, int y, int width, int height ) |
c801d85f | 656 | { |
63852e78 RR |
657 | dest.x = x; |
658 | dest.y = y; | |
659 | dest.width = width; | |
660 | dest.height = height; | |
e1e955e1 | 661 | } |
c801d85f | 662 | |
0a240683 | 663 | void wxListLineData::AssignRect( wxRect &dest, const wxRect &source ) |
c801d85f | 664 | { |
63852e78 RR |
665 | dest.x = source.x; |
666 | dest.y = source.y; | |
667 | dest.width = source.width; | |
668 | dest.height = source.height; | |
e1e955e1 | 669 | } |
c801d85f KB |
670 | |
671 | //----------------------------------------------------------------------------- | |
672 | // wxListHeaderWindow | |
673 | //----------------------------------------------------------------------------- | |
674 | ||
675 | IMPLEMENT_DYNAMIC_CLASS(wxListHeaderWindow,wxWindow); | |
676 | ||
677 | BEGIN_EVENT_TABLE(wxListHeaderWindow,wxWindow) | |
63852e78 RR |
678 | EVT_PAINT (wxListHeaderWindow::OnPaint) |
679 | EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse) | |
680 | EVT_SET_FOCUS (wxListHeaderWindow::OnSetFocus) | |
c801d85f KB |
681 | END_EVENT_TABLE() |
682 | ||
683 | wxListHeaderWindow::wxListHeaderWindow( void ) | |
684 | { | |
63852e78 RR |
685 | m_owner = (wxListMainWindow *) NULL; |
686 | m_currentCursor = (wxCursor *) NULL; | |
687 | m_resizeCursor = (wxCursor *) NULL; | |
cfb50f14 | 688 | m_isDragging = FALSE; |
e1e955e1 | 689 | } |
c801d85f | 690 | |
bd8289c1 | 691 | wxListHeaderWindow::wxListHeaderWindow( wxWindow *win, wxWindowID id, wxListMainWindow *owner, |
debe6624 JS |
692 | const wxPoint &pos, const wxSize &size, |
693 | long style, const wxString &name ) : | |
c801d85f KB |
694 | wxWindow( win, id, pos, size, style, name ) |
695 | { | |
63852e78 | 696 | m_owner = owner; |
c801d85f | 697 | // m_currentCursor = wxSTANDARD_CURSOR; |
63852e78 RR |
698 | m_currentCursor = (wxCursor *) NULL; |
699 | m_resizeCursor = new wxCursor( wxCURSOR_SIZEWE ); | |
cfb50f14 RR |
700 | m_isDragging = FALSE; |
701 | SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE ) ); | |
e1e955e1 | 702 | } |
c801d85f | 703 | |
a367b9b3 JS |
704 | wxListHeaderWindow::~wxListHeaderWindow( void ) |
705 | { | |
63852e78 | 706 | delete m_resizeCursor; |
a367b9b3 JS |
707 | } |
708 | ||
1e6d9499 | 709 | void wxListHeaderWindow::DoDrawRect( wxDC *dc, int x, int y, int w, int h ) |
c801d85f | 710 | { |
63852e78 | 711 | const int m_corner = 1; |
c801d85f | 712 | |
63852e78 | 713 | dc->SetBrush( *wxTRANSPARENT_BRUSH ); |
c801d85f | 714 | |
63852e78 RR |
715 | dc->SetPen( *wxBLACK_PEN ); |
716 | dc->DrawLine( x+w-m_corner+1, y, x+w, y+h ); // right (outer) | |
17867d61 | 717 | dc->DrawRectangle( x, y+h, w+1, 1 ); // bottom (outer) |
bd8289c1 | 718 | |
63852e78 | 719 | wxPen pen( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNSHADOW ), 1, wxSOLID ); |
907789a0 | 720 | |
63852e78 RR |
721 | dc->SetPen( pen ); |
722 | dc->DrawLine( x+w-m_corner, y, x+w-1, y+h ); // right (inner) | |
723 | dc->DrawRectangle( x+1, y+h-1, w-2, 1 ); // bottom (inner) | |
bd8289c1 | 724 | |
63852e78 RR |
725 | dc->SetPen( *wxWHITE_PEN ); |
726 | dc->DrawRectangle( x, y, w-m_corner+1, 1 ); // top (outer) | |
727 | dc->DrawRectangle( x, y, 1, h ); // left (outer) | |
728 | dc->DrawLine( x, y+h-1, x+1, y+h-1 ); | |
729 | dc->DrawLine( x+w-1, y, x+w-1, y+1 ); | |
e1e955e1 | 730 | } |
c801d85f KB |
731 | |
732 | void wxListHeaderWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) | |
733 | { | |
63852e78 RR |
734 | wxPaintDC dc( this ); |
735 | PrepareDC( dc ); | |
736 | ||
737 | dc.BeginDrawing(); | |
bd8289c1 | 738 | |
63852e78 | 739 | dc.SetFont( GetFont() ); |
bd8289c1 | 740 | |
63852e78 RR |
741 | int w = 0; |
742 | int h = 0; | |
743 | int x = 0; | |
744 | int y = 0; | |
745 | GetClientSize( &w, &h ); | |
c801d85f | 746 | |
f60d0f94 | 747 | dc.SetBackgroundMode(wxTRANSPARENT); |
63852e78 RR |
748 | dc.SetTextForeground( *wxBLACK ); |
749 | if (m_foregroundColour.Ok()) dc.SetTextForeground( m_foregroundColour ); | |
c801d85f | 750 | |
63852e78 RR |
751 | x = 1; |
752 | y = 1; | |
753 | int numColumns = m_owner->GetColumnCount(); | |
754 | wxListItem item; | |
755 | for (int i = 0; i < numColumns; i++) | |
756 | { | |
757 | m_owner->GetColumn( i, item ); | |
758 | int cw = item.m_width-2; | |
759 | if ((i+1 == numColumns) || (x+item.m_width > w-5)) cw = w-x-1; | |
760 | dc.SetPen( *wxWHITE_PEN ); | |
c801d85f | 761 | |
63852e78 RR |
762 | DoDrawRect( &dc, x, y, cw, h-2 ); |
763 | dc.SetClippingRegion( x, y, cw-5, h-4 ); | |
764 | dc.DrawText( item.m_text, x+4, y+3 ); | |
765 | dc.DestroyClippingRegion(); | |
766 | x += item.m_width; | |
767 | if (x > w+5) break; | |
768 | } | |
769 | dc.EndDrawing(); | |
e1e955e1 | 770 | } |
c801d85f | 771 | |
0208334d RR |
772 | void wxListHeaderWindow::DrawCurrent() |
773 | { | |
63852e78 RR |
774 | int x1 = m_currentX; |
775 | int y1 = 0; | |
776 | int x2 = m_currentX-1; | |
777 | int y2 = 0; | |
778 | int dummy; | |
779 | m_owner->GetClientSize( &dummy, &y2 ); | |
780 | ClientToScreen( &x1, &y1 ); | |
781 | m_owner->ClientToScreen( &x2, &y2 ); | |
0208334d | 782 | |
63852e78 | 783 | wxScreenDC dc; |
3c679789 | 784 | dc.SetLogicalFunction( wxINVERT ); |
63852e78 RR |
785 | dc.SetPen( wxPen( *wxBLACK, 2, wxSOLID ) ); |
786 | dc.SetBrush( *wxTRANSPARENT_BRUSH ); | |
0208334d | 787 | |
63852e78 | 788 | dc.DrawLine( x1, y1, x2, y2 ); |
0208334d | 789 | |
63852e78 | 790 | dc.SetLogicalFunction( wxCOPY ); |
0208334d | 791 | |
63852e78 RR |
792 | dc.SetPen( wxNullPen ); |
793 | dc.SetBrush( wxNullBrush ); | |
0208334d RR |
794 | } |
795 | ||
c801d85f KB |
796 | void wxListHeaderWindow::OnMouse( wxMouseEvent &event ) |
797 | { | |
63852e78 RR |
798 | int x = event.GetX(); |
799 | int y = event.GetY(); | |
cfb50f14 | 800 | if (m_isDragging) |
0208334d | 801 | { |
63852e78 RR |
802 | DrawCurrent(); |
803 | if (event.ButtonUp()) | |
804 | { | |
805 | ReleaseMouse(); | |
cfb50f14 | 806 | m_isDragging = FALSE; |
63852e78 RR |
807 | m_owner->SetColumnWidth( m_column, m_currentX-m_minX ); |
808 | } | |
809 | else | |
810 | { | |
811 | int size_x = 0; | |
812 | int dummy; | |
813 | GetClientSize( &size_x, & dummy ); | |
814 | if (x > m_minX+7) | |
815 | m_currentX = x; | |
816 | else | |
817 | m_currentX = m_minX+7; | |
818 | if (m_currentX > size_x-7) m_currentX = size_x-7; | |
819 | DrawCurrent(); | |
820 | } | |
821 | return; | |
0208334d | 822 | } |
bd8289c1 | 823 | |
63852e78 RR |
824 | m_minX = 0; |
825 | bool hit_border = FALSE; | |
826 | int xpos = 0; | |
827 | for (int j = 0; j < m_owner->GetColumnCount(); j++) | |
bd8289c1 | 828 | { |
63852e78 RR |
829 | xpos += m_owner->GetColumnWidth( j ); |
830 | if ((abs(x-xpos) < 3) && (y < 22)) | |
831 | { | |
832 | hit_border = TRUE; | |
833 | m_column = j; | |
834 | break; | |
835 | } | |
836 | m_minX = xpos; | |
0208334d | 837 | } |
bd8289c1 | 838 | |
63852e78 | 839 | if (event.LeftDown() && hit_border) |
c801d85f | 840 | { |
cfb50f14 | 841 | m_isDragging = TRUE; |
63852e78 RR |
842 | m_currentX = x; |
843 | DrawCurrent(); | |
844 | CaptureMouse(); | |
845 | return; | |
c801d85f | 846 | } |
63852e78 RR |
847 | |
848 | if (event.Moving()) | |
c801d85f | 849 | { |
63852e78 RR |
850 | if (hit_border) |
851 | { | |
852 | if (m_currentCursor == wxSTANDARD_CURSOR) SetCursor( * m_resizeCursor ); | |
853 | m_currentCursor = m_resizeCursor; | |
854 | } | |
855 | else | |
856 | { | |
857 | if (m_currentCursor != wxSTANDARD_CURSOR) SetCursor( * wxSTANDARD_CURSOR ); | |
858 | m_currentCursor = wxSTANDARD_CURSOR; | |
859 | } | |
e1e955e1 | 860 | } |
e1e955e1 | 861 | } |
c801d85f KB |
862 | |
863 | void wxListHeaderWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) ) | |
864 | { | |
63852e78 | 865 | m_owner->SetFocus(); |
e1e955e1 | 866 | } |
c801d85f KB |
867 | |
868 | //----------------------------------------------------------------------------- | |
869 | // wxListRenameTimer (internal) | |
870 | //----------------------------------------------------------------------------- | |
871 | ||
bd8289c1 VZ |
872 | wxListRenameTimer::wxListRenameTimer( wxListMainWindow *owner ) |
873 | { | |
63852e78 | 874 | m_owner = owner; |
e1e955e1 | 875 | } |
c801d85f | 876 | |
bd8289c1 VZ |
877 | void wxListRenameTimer::Notify() |
878 | { | |
63852e78 | 879 | m_owner->OnRenameTimer(); |
e1e955e1 | 880 | } |
c801d85f | 881 | |
ee7ee469 RR |
882 | //----------------------------------------------------------------------------- |
883 | // wxListTextCtrl (internal) | |
884 | //----------------------------------------------------------------------------- | |
885 | ||
886 | IMPLEMENT_DYNAMIC_CLASS(wxListTextCtrl,wxTextCtrl); | |
bd8289c1 | 887 | |
ee7ee469 | 888 | BEGIN_EVENT_TABLE(wxListTextCtrl,wxTextCtrl) |
63852e78 RR |
889 | EVT_CHAR (wxListTextCtrl::OnChar) |
890 | EVT_KILL_FOCUS (wxListTextCtrl::OnKillFocus) | |
ee7ee469 RR |
891 | END_EVENT_TABLE() |
892 | ||
bd8289c1 | 893 | wxListTextCtrl::wxListTextCtrl( wxWindow *parent, const wxWindowID id, |
ee7ee469 RR |
894 | bool *accept, wxString *res, wxListMainWindow *owner, |
895 | const wxString &value, const wxPoint &pos, const wxSize &size, | |
896 | int style, const wxValidator& validator, const wxString &name ) : | |
897 | wxTextCtrl( parent, id, value, pos, size, style, validator, name ) | |
898 | { | |
63852e78 RR |
899 | m_res = res; |
900 | m_accept = accept; | |
901 | m_owner = owner; | |
ee7ee469 RR |
902 | } |
903 | ||
904 | void wxListTextCtrl::OnChar( wxKeyEvent &event ) | |
905 | { | |
63852e78 RR |
906 | if (event.m_keyCode == WXK_RETURN) |
907 | { | |
908 | (*m_accept) = TRUE; | |
909 | (*m_res) = GetValue(); | |
910 | m_owner->OnRenameAccept(); | |
911 | // Show( FALSE ); | |
912 | Destroy(); | |
913 | return; | |
914 | } | |
915 | if (event.m_keyCode == WXK_ESCAPE) | |
916 | { | |
917 | (*m_accept) = FALSE; | |
918 | (*m_res) = ""; | |
919 | // Show( FALSE ); | |
920 | Destroy(); | |
921 | return; | |
922 | } | |
923 | event.Skip(); | |
924 | } | |
925 | ||
926 | void wxListTextCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) ) | |
927 | { | |
ee7ee469 RR |
928 | (*m_accept) = FALSE; |
929 | (*m_res) = ""; | |
930 | // Show( FALSE ); | |
931 | Destroy(); | |
932 | return; | |
ee7ee469 RR |
933 | } |
934 | ||
c801d85f KB |
935 | //----------------------------------------------------------------------------- |
936 | // wxListMainWindow | |
937 | //----------------------------------------------------------------------------- | |
938 | ||
939 | IMPLEMENT_DYNAMIC_CLASS(wxListMainWindow,wxScrolledWindow); | |
bd8289c1 | 940 | |
c801d85f KB |
941 | BEGIN_EVENT_TABLE(wxListMainWindow,wxScrolledWindow) |
942 | EVT_PAINT (wxListMainWindow::OnPaint) | |
943 | EVT_SIZE (wxListMainWindow::OnSize) | |
944 | EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse) | |
945 | EVT_CHAR (wxListMainWindow::OnChar) | |
3dfb93fd | 946 | EVT_KEY_DOWN (wxListMainWindow::OnKeyDown) |
c801d85f KB |
947 | EVT_SET_FOCUS (wxListMainWindow::OnSetFocus) |
948 | EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus) | |
949 | END_EVENT_TABLE() | |
950 | ||
951 | wxListMainWindow::wxListMainWindow( void ) | |
952 | { | |
139adb6a RR |
953 | m_mode = 0; |
954 | m_lines.DeleteContents( TRUE ); | |
955 | m_columns.DeleteContents( TRUE ); | |
956 | m_current = (wxListLineData *) NULL; | |
957 | m_visibleLines = 0; | |
958 | m_hilightBrush = (wxBrush *) NULL; | |
959 | m_xScroll = 0; | |
960 | m_yScroll = 0; | |
961 | m_dirty = TRUE; | |
962 | m_small_image_list = (wxImageList *) NULL; | |
963 | m_normal_image_list = (wxImageList *) NULL; | |
964 | m_small_spacing = 30; | |
965 | m_normal_spacing = 40; | |
966 | m_hasFocus = FALSE; | |
967 | m_usedKeys = TRUE; | |
968 | m_lastOnSame = FALSE; | |
969 | m_renameTimer = new wxListRenameTimer( this ); | |
970 | m_isCreated = FALSE; | |
971 | m_dragCount = 0; | |
e1e955e1 | 972 | } |
c801d85f | 973 | |
bd8289c1 | 974 | wxListMainWindow::wxListMainWindow( wxWindow *parent, wxWindowID id, |
c801d85f | 975 | const wxPoint &pos, const wxSize &size, |
debe6624 | 976 | long style, const wxString &name ) : |
a367b9b3 | 977 | wxScrolledWindow( parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name ) |
c801d85f | 978 | { |
139adb6a RR |
979 | m_mode = style; |
980 | m_lines.DeleteContents( TRUE ); | |
981 | m_columns.DeleteContents( TRUE ); | |
982 | m_current = (wxListLineData *) NULL; | |
983 | m_dirty = TRUE; | |
984 | m_visibleLines = 0; | |
985 | m_hilightBrush = new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT), wxSOLID ); | |
986 | m_small_image_list = (wxImageList *) NULL; | |
987 | m_normal_image_list = (wxImageList *) NULL; | |
988 | m_small_spacing = 30; | |
989 | m_normal_spacing = 40; | |
990 | m_hasFocus = FALSE; | |
991 | m_dragCount = 0; | |
992 | m_isCreated = FALSE; | |
993 | wxSize sz = size; | |
994 | sz.y = 25; | |
bd8289c1 | 995 | |
139adb6a RR |
996 | if (m_mode & wxLC_REPORT) |
997 | { | |
998 | m_xScroll = 0; | |
999 | m_yScroll = 15; | |
1000 | } | |
1001 | else | |
1002 | { | |
1003 | m_xScroll = 15; | |
1004 | m_yScroll = 0; | |
1005 | } | |
1006 | SetScrollbars( m_xScroll, m_yScroll, 0, 0, 0, 0 ); | |
bd8289c1 | 1007 | |
139adb6a RR |
1008 | m_usedKeys = TRUE; |
1009 | m_lastOnSame = FALSE; | |
1010 | m_renameTimer = new wxListRenameTimer( this ); | |
1011 | m_renameAccept = FALSE; | |
c801d85f | 1012 | |
139adb6a | 1013 | SetBackgroundColour( *wxWHITE ); |
e1e955e1 | 1014 | } |
c801d85f KB |
1015 | |
1016 | wxListMainWindow::~wxListMainWindow( void ) | |
1017 | { | |
139adb6a RR |
1018 | if (m_hilightBrush) delete m_hilightBrush; |
1019 | ||
1020 | delete m_renameTimer; | |
e1e955e1 | 1021 | } |
c801d85f KB |
1022 | |
1023 | void wxListMainWindow::RefreshLine( wxListLineData *line ) | |
1024 | { | |
139adb6a RR |
1025 | int x = 0; |
1026 | int y = 0; | |
1027 | int w = 0; | |
1028 | int h = 0; | |
1029 | if (line) | |
1030 | { | |
1031 | wxClientDC dc(this); | |
1032 | PrepareDC( dc ); | |
1033 | line->GetExtent( x, y, w, h ); | |
0a240683 | 1034 | wxRect rect( |
139adb6a RR |
1035 | dc.LogicalToDeviceX(x-3), |
1036 | dc.LogicalToDeviceY(y-3), | |
1037 | dc.LogicalToDeviceXRel(w+6), | |
1038 | dc.LogicalToDeviceXRel(h+6) ); | |
1039 | Refresh( TRUE, &rect ); | |
1040 | } | |
e1e955e1 | 1041 | } |
c801d85f KB |
1042 | |
1043 | void wxListMainWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) | |
1044 | { | |
f60d0f94 JS |
1045 | // Note: a wxPaintDC must be constructed even if no drawing is |
1046 | // done (a Windows requirement). | |
1047 | wxPaintDC dc( this ); | |
1048 | PrepareDC( dc ); | |
1049 | ||
139adb6a RR |
1050 | if (m_dirty) return; |
1051 | ||
1052 | if (m_lines.GetCount() == 0) return; | |
bd8289c1 | 1053 | |
139adb6a | 1054 | dc.BeginDrawing(); |
c801d85f | 1055 | |
139adb6a RR |
1056 | dc.SetFont( GetFont() ); |
1057 | ||
1058 | if (m_mode & wxLC_REPORT) | |
1059 | { | |
1060 | int lineSpacing = 0; | |
1061 | wxListLineData *line = (wxListLineData*)m_lines.First()->Data(); | |
1062 | int dummy = 0; | |
1063 | line->GetSize( dummy, lineSpacing ); | |
1064 | lineSpacing += 1; | |
1065 | ||
1066 | int y_s = m_yScroll*GetScrollPos( wxVERTICAL ); | |
1067 | ||
1068 | wxNode *node = m_lines.Nth( y_s / lineSpacing ); | |
1069 | for (int i = 0; i < m_visibleLines+2; i++) | |
1070 | { | |
1071 | if (!node) break; | |
1072 | ||
1073 | line = (wxListLineData*)node->Data(); | |
1074 | line->Draw( &dc ); | |
1075 | node = node->Next(); | |
1076 | } | |
1077 | } | |
1078 | else | |
1079 | { | |
1080 | wxNode *node = m_lines.First(); | |
1081 | while (node) | |
1082 | { | |
1083 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1084 | line->Draw( &dc ); | |
1085 | node = node->Next(); | |
1086 | } | |
1087 | } | |
1088 | ||
1089 | if (m_current) m_current->DrawRubberBand( &dc, m_hasFocus ); | |
c801d85f | 1090 | |
139adb6a | 1091 | dc.EndDrawing(); |
e1e955e1 | 1092 | } |
c801d85f | 1093 | |
debe6624 | 1094 | void wxListMainWindow::HilightAll( bool on ) |
c801d85f | 1095 | { |
139adb6a RR |
1096 | wxNode *node = m_lines.First(); |
1097 | while (node) | |
c801d85f | 1098 | { |
139adb6a RR |
1099 | wxListLineData *line = (wxListLineData *)node->Data(); |
1100 | if (line->IsHilighted() != on) | |
1101 | { | |
1102 | line->Hilight( on ); | |
1103 | RefreshLine( line ); | |
1104 | } | |
1105 | node = node->Next(); | |
e1e955e1 | 1106 | } |
e1e955e1 | 1107 | } |
c801d85f | 1108 | |
7798a18e | 1109 | void wxListMainWindow::SendNotify( wxListLineData *line, wxEventType command ) |
c801d85f | 1110 | { |
139adb6a RR |
1111 | wxListEvent le( command, GetParent()->GetId() ); |
1112 | le.SetEventObject( GetParent() ); | |
1113 | le.m_itemIndex = GetIndexOfLine( line ); | |
1114 | line->GetItem( 0, le.m_item ); | |
1115 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
e1e955e1 | 1116 | } |
c801d85f KB |
1117 | |
1118 | void wxListMainWindow::FocusLine( wxListLineData *WXUNUSED(line) ) | |
1119 | { | |
1120 | // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_FOCUSSED ); | |
e1e955e1 | 1121 | } |
c801d85f KB |
1122 | |
1123 | void wxListMainWindow::UnfocusLine( wxListLineData *WXUNUSED(line) ) | |
1124 | { | |
1125 | // SendNotify( line, wxEVT_COMMAND_LIST_ITEM_UNFOCUSSED ); | |
e1e955e1 | 1126 | } |
c801d85f KB |
1127 | |
1128 | void wxListMainWindow::SelectLine( wxListLineData *line ) | |
1129 | { | |
139adb6a | 1130 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_SELECTED ); |
e1e955e1 | 1131 | } |
c801d85f KB |
1132 | |
1133 | void wxListMainWindow::DeselectLine( wxListLineData *line ) | |
1134 | { | |
139adb6a | 1135 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_DESELECTED ); |
e1e955e1 | 1136 | } |
c801d85f KB |
1137 | |
1138 | void wxListMainWindow::DeleteLine( wxListLineData *line ) | |
1139 | { | |
139adb6a | 1140 | SendNotify( line, wxEVT_COMMAND_LIST_DELETE_ITEM ); |
e1e955e1 | 1141 | } |
c801d85f | 1142 | |
ee7ee469 RR |
1143 | void wxListMainWindow::StartLabelEdit( wxListLineData *line ) |
1144 | { | |
139adb6a | 1145 | SendNotify( line, wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT ); |
e1e955e1 | 1146 | } |
ee7ee469 | 1147 | |
c801d85f KB |
1148 | void wxListMainWindow::RenameLine( wxListLineData *line, const wxString &newName ) |
1149 | { | |
139adb6a RR |
1150 | wxListEvent le( wxEVT_COMMAND_LIST_END_LABEL_EDIT, GetParent()->GetId() ); |
1151 | le.SetEventObject( GetParent() ); | |
1152 | le.m_itemIndex = GetIndexOfLine( line ); | |
1153 | line->GetItem( 0, le.m_item ); | |
1154 | le.m_item.m_text = newName; | |
1155 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
e1e955e1 | 1156 | } |
c801d85f KB |
1157 | |
1158 | void wxListMainWindow::OnRenameTimer() | |
1159 | { | |
92976ab6 RR |
1160 | StartLabelEdit( m_current ); |
1161 | wxString s; | |
1162 | m_current->GetText( 0, s ); | |
1163 | int x = 0; | |
1164 | int y = 0; | |
1165 | int w = 0; | |
1166 | int h = 0; | |
1167 | m_current->GetLabelExtent( x, y, w, h ); | |
bd8289c1 | 1168 | |
92976ab6 RR |
1169 | wxClientDC dc(this); |
1170 | PrepareDC( dc ); | |
1171 | x = dc.LogicalToDeviceX( x ); | |
1172 | y = dc.LogicalToDeviceY( y ); | |
bd8289c1 | 1173 | |
92976ab6 RR |
1174 | wxListTextCtrl *text = new wxListTextCtrl( |
1175 | this, -1, &m_renameAccept, &m_renameRes, this, s, wxPoint(x-4,y-4), wxSize(w+11,h+8) ); | |
1176 | text->SetFocus(); | |
e1e955e1 | 1177 | } |
c801d85f KB |
1178 | |
1179 | void wxListMainWindow::OnRenameAccept() | |
1180 | { | |
92976ab6 | 1181 | RenameLine( m_current, m_renameRes ); |
e1e955e1 | 1182 | } |
c801d85f KB |
1183 | |
1184 | void wxListMainWindow::OnMouse( wxMouseEvent &event ) | |
1185 | { | |
92976ab6 | 1186 | if (GetParent()->GetEventHandler()->ProcessEvent( event)) return; |
e3e65dac | 1187 | |
92976ab6 RR |
1188 | if (!m_current) return; |
1189 | if (m_dirty) return; | |
c801d85f | 1190 | |
92976ab6 RR |
1191 | wxClientDC dc(this); |
1192 | PrepareDC(dc); | |
1193 | long x = dc.DeviceToLogicalX( (long)event.GetX() ); | |
1194 | long y = dc.DeviceToLogicalY( (long)event.GetY() ); | |
1195 | ||
51cc4dad | 1196 | /* Did we actually hit an item ? */ |
92976ab6 RR |
1197 | long hitResult = 0; |
1198 | wxNode *node = m_lines.First(); | |
1199 | wxListLineData *line = (wxListLineData *) NULL; | |
1200 | while (node) | |
1201 | { | |
1202 | line = (wxListLineData*)node->Data(); | |
1203 | hitResult = line->IsHit( x, y ); | |
1204 | if (hitResult) break; | |
1205 | line = (wxListLineData *) NULL; | |
1206 | node = node->Next(); | |
1207 | } | |
bd8289c1 | 1208 | |
92976ab6 RR |
1209 | if (!event.Dragging()) |
1210 | m_dragCount = 0; | |
1211 | else | |
1212 | m_dragCount++; | |
bd8289c1 | 1213 | |
92976ab6 RR |
1214 | if (event.Dragging() && (m_dragCount > 3)) |
1215 | { | |
1216 | m_dragCount = 0; | |
1217 | ||
1218 | wxListEvent le( wxEVT_COMMAND_LIST_BEGIN_DRAG, GetParent()->GetId() ); | |
1219 | le.SetEventObject( GetParent() ); | |
1220 | le.m_pointDrag.x = x; | |
1221 | le.m_pointDrag.y = y; | |
1222 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
1223 | ||
1224 | return; | |
1225 | } | |
bd8289c1 | 1226 | |
92976ab6 | 1227 | if (!line) return; |
bd8289c1 | 1228 | |
92976ab6 RR |
1229 | if (event.ButtonDClick()) |
1230 | { | |
1231 | m_usedKeys = FALSE; | |
1232 | m_lastOnSame = FALSE; | |
1233 | m_renameTimer->Stop(); | |
1234 | ||
435fe83e | 1235 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_ACTIVATED ); |
92976ab6 RR |
1236 | |
1237 | return; | |
1238 | } | |
bd8289c1 | 1239 | |
92976ab6 | 1240 | if (event.LeftUp() && m_lastOnSame) |
c801d85f | 1241 | { |
92976ab6 RR |
1242 | m_usedKeys = FALSE; |
1243 | if ((line == m_current) && | |
1244 | (hitResult == wxLIST_HITTEST_ONITEMLABEL) && | |
1245 | (m_mode & wxLC_EDIT_LABELS) ) | |
1246 | { | |
1247 | m_renameTimer->Start( 100, TRUE ); | |
1248 | } | |
1249 | m_lastOnSame = FALSE; | |
1250 | return; | |
e1e955e1 | 1251 | } |
bd8289c1 | 1252 | |
92976ab6 | 1253 | if (event.RightDown()) |
b204641e | 1254 | { |
92976ab6 RR |
1255 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK ); |
1256 | return; | |
b204641e | 1257 | } |
92976ab6 RR |
1258 | |
1259 | if (event.MiddleDown()) | |
b204641e | 1260 | { |
92976ab6 RR |
1261 | SendNotify( line, wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK ); |
1262 | return; | |
1263 | } | |
1264 | ||
1265 | if (event.LeftDown()) | |
1266 | { | |
1267 | m_usedKeys = FALSE; | |
1268 | wxListLineData *oldCurrent = m_current; | |
1269 | if (m_mode & wxLC_SINGLE_SEL) | |
b204641e | 1270 | { |
92976ab6 RR |
1271 | m_current = line; |
1272 | HilightAll( FALSE ); | |
1273 | m_current->ReverseHilight(); | |
1274 | RefreshLine( m_current ); | |
e1e955e1 | 1275 | } |
92976ab6 | 1276 | else |
b204641e | 1277 | { |
92976ab6 RR |
1278 | if (event.ShiftDown()) |
1279 | { | |
1280 | m_current = line; | |
1281 | m_current->ReverseHilight(); | |
1282 | RefreshLine( m_current ); | |
1283 | } | |
1284 | else if (event.ControlDown()) | |
1285 | { | |
1286 | m_current = line; | |
1287 | ||
1288 | int numOfCurrent = -1; | |
1289 | node = m_lines.First(); | |
1290 | while (node) | |
1291 | { | |
1292 | wxListLineData *test_line = (wxListLineData*)node->Data(); | |
1293 | numOfCurrent++; | |
1294 | if (test_line == oldCurrent) break; | |
1295 | node = node->Next(); | |
1296 | } | |
1297 | ||
1298 | int numOfLine = -1; | |
1299 | node = m_lines.First(); | |
1300 | while (node) | |
1301 | { | |
1302 | wxListLineData *test_line = (wxListLineData*)node->Data(); | |
1303 | numOfLine++; | |
1304 | if (test_line == line) break; | |
1305 | node = node->Next(); | |
1306 | } | |
1307 | ||
1308 | if (numOfLine < numOfCurrent) | |
1309 | { | |
1310 | int i = numOfLine; | |
1311 | numOfLine = numOfCurrent; | |
1312 | numOfCurrent = i; | |
1313 | } | |
1314 | ||
1315 | wxNode *node = m_lines.Nth( numOfCurrent ); | |
1316 | for (int i = 0; i <= numOfLine-numOfCurrent; i++) | |
1317 | { | |
1318 | wxListLineData *test_line= (wxListLineData*)node->Data(); | |
1319 | test_line->Hilight(TRUE); | |
1320 | RefreshLine( test_line ); | |
1321 | node = node->Next(); | |
1322 | } | |
1323 | } | |
1324 | else | |
1325 | { | |
1326 | m_current = line; | |
1327 | HilightAll( FALSE ); | |
1328 | m_current->ReverseHilight(); | |
1329 | RefreshLine( m_current ); | |
1330 | } | |
e1e955e1 | 1331 | } |
92976ab6 RR |
1332 | if (m_current != oldCurrent) |
1333 | { | |
1334 | RefreshLine( oldCurrent ); | |
1335 | UnfocusLine( oldCurrent ); | |
1336 | FocusLine( m_current ); | |
1337 | } | |
1338 | m_lastOnSame = (m_current == oldCurrent); | |
1339 | return; | |
e1e955e1 | 1340 | } |
e1e955e1 | 1341 | } |
c801d85f KB |
1342 | |
1343 | void wxListMainWindow::MoveToFocus( void ) | |
1344 | { | |
92976ab6 | 1345 | if (!m_current) return; |
e487524e | 1346 | |
92976ab6 RR |
1347 | int x = 0; |
1348 | int y = 0; | |
1349 | int w = 0; | |
1350 | int h = 0; | |
1351 | m_current->GetExtent( x, y, w, h ); | |
139adb6a | 1352 | |
92976ab6 RR |
1353 | int w_p = 0; |
1354 | int h_p = 0; | |
1355 | GetClientSize( &w_p, &h_p ); | |
139adb6a | 1356 | |
92976ab6 RR |
1357 | if (m_mode & wxLC_REPORT) |
1358 | { | |
92976ab6 RR |
1359 | int y_s = m_yScroll*GetScrollPos( wxVERTICAL ); |
1360 | if ((y > y_s) && (y+h < y_s+h_p)) return; | |
aab3e197 KB |
1361 | if (y-y_s < 5) { Scroll( -1, (y-5-h_p/2)/m_yScroll ); Refresh(); } |
1362 | if (y+h+5 > y_s+h_p) { Scroll( -1, (y+h-h_p/2+h+15)/m_yScroll); Refresh(); } | |
92976ab6 RR |
1363 | } |
1364 | else | |
1365 | { | |
92976ab6 RR |
1366 | int x_s = m_xScroll*GetScrollPos( wxHORIZONTAL ); |
1367 | if ((x > x_s) && (x+w < x_s+w_p)) return; | |
aab3e197 KB |
1368 | if (x-x_s < 5) { Scroll( (x-5)/m_xScroll, -1 ); Refresh(); } |
1369 | if (x+w-5 > x_s+w_p) { Scroll( (x+w-w_p+15)/m_xScroll, -1 ); Refresh(); } | |
92976ab6 | 1370 | } |
e1e955e1 | 1371 | } |
c801d85f KB |
1372 | |
1373 | void wxListMainWindow::OnArrowChar( wxListLineData *newCurrent, bool shiftDown ) | |
1374 | { | |
92976ab6 RR |
1375 | if ((m_mode & wxLC_SINGLE_SEL) || (m_usedKeys == FALSE)) m_current->Hilight( FALSE ); |
1376 | wxListLineData *oldCurrent = m_current; | |
1377 | m_current = newCurrent; | |
1378 | MoveToFocus(); | |
1379 | if (shiftDown || (m_mode & wxLC_SINGLE_SEL)) m_current->Hilight( TRUE ); | |
1380 | RefreshLine( m_current ); | |
1381 | RefreshLine( oldCurrent ); | |
1382 | FocusLine( m_current ); | |
1383 | UnfocusLine( oldCurrent ); | |
e1e955e1 | 1384 | } |
c801d85f | 1385 | |
3dfb93fd RR |
1386 | void wxListMainWindow::OnKeyDown( wxKeyEvent &event ) |
1387 | { | |
1388 | wxWindow *parent = GetParent(); | |
1389 | ||
1390 | /* we propagate the key event up */ | |
1391 | wxKeyEvent ke( wxEVT_KEY_DOWN ); | |
1392 | ke.m_shiftDown = event.m_shiftDown; | |
1393 | ke.m_controlDown = event.m_controlDown; | |
1394 | ke.m_altDown = event.m_altDown; | |
1395 | ke.m_metaDown = event.m_metaDown; | |
1396 | ke.m_keyCode = event.m_keyCode; | |
1397 | ke.m_x = event.m_x; | |
1398 | ke.m_y = event.m_y; | |
1399 | ke.SetEventObject( parent ); | |
1400 | if (parent->GetEventHandler()->ProcessEvent( ke )) return; | |
1401 | ||
1402 | event.Skip(); | |
1403 | } | |
1404 | ||
c801d85f KB |
1405 | void wxListMainWindow::OnChar( wxKeyEvent &event ) |
1406 | { | |
51cc4dad | 1407 | wxWindow *parent = GetParent(); |
435fe83e | 1408 | |
51cc4dad RR |
1409 | /* we send a list_key event up */ |
1410 | wxListEvent le( wxEVT_COMMAND_LIST_KEY_DOWN, GetParent()->GetId() ); | |
1411 | le.m_code = event.KeyCode(); | |
1412 | le.SetEventObject( parent ); | |
1413 | parent->GetEventHandler()->ProcessEvent( le ); | |
1414 | ||
3dfb93fd RR |
1415 | /* we propagate the char event up */ |
1416 | wxKeyEvent ke( wxEVT_CHAR ); | |
51cc4dad RR |
1417 | ke.m_shiftDown = event.m_shiftDown; |
1418 | ke.m_controlDown = event.m_controlDown; | |
1419 | ke.m_altDown = event.m_altDown; | |
1420 | ke.m_metaDown = event.m_metaDown; | |
1421 | ke.m_keyCode = event.m_keyCode; | |
1422 | ke.m_x = event.m_x; | |
1423 | ke.m_y = event.m_y; | |
1424 | ke.SetEventObject( parent ); | |
1425 | if (parent->GetEventHandler()->ProcessEvent( ke )) return; | |
1426 | ||
012a03e0 RR |
1427 | if (event.KeyCode() == WXK_TAB) |
1428 | { | |
1429 | wxNavigationKeyEvent nevent; | |
1430 | nevent.SetDirection( !event.ShiftDown() ); | |
1431 | nevent.SetCurrentFocus( m_parent ); | |
1432 | if (m_parent->GetEventHandler()->ProcessEvent( nevent )) return; | |
1433 | } | |
1434 | ||
51cc4dad RR |
1435 | /* no item -> nothing to do */ |
1436 | if (!m_current) | |
c801d85f | 1437 | { |
51cc4dad RR |
1438 | event.Skip(); |
1439 | return; | |
e1e955e1 | 1440 | } |
51cc4dad RR |
1441 | |
1442 | switch (event.KeyCode()) | |
c801d85f | 1443 | { |
51cc4dad RR |
1444 | case WXK_UP: |
1445 | { | |
1446 | wxNode *node = m_lines.Member( m_current )->Previous(); | |
1447 | if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1448 | break; | |
1449 | } | |
1450 | case WXK_DOWN: | |
1451 | { | |
1452 | wxNode *node = m_lines.Member( m_current )->Next(); | |
1453 | if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1454 | break; | |
1455 | } | |
1456 | case WXK_END: | |
1457 | { | |
1458 | wxNode *node = m_lines.Last(); | |
1459 | OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1460 | break; | |
1461 | } | |
1462 | case WXK_HOME: | |
1463 | { | |
1464 | wxNode *node = m_lines.First(); | |
1465 | OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1466 | break; | |
1467 | } | |
1468 | case WXK_PRIOR: | |
1469 | { | |
1470 | int steps = 0; | |
1471 | if (m_mode & wxLC_REPORT) | |
1472 | { | |
1473 | steps = m_visibleLines-1; | |
1474 | } | |
1475 | else | |
1476 | { | |
1477 | int pos = 0; | |
1478 | wxNode *node = m_lines.First(); | |
1479 | for (;;) { if (m_current == (wxListLineData*)node->Data()) break; pos++; node = node->Next(); } | |
1480 | steps = pos % m_visibleLines; | |
1481 | } | |
1482 | wxNode *node = m_lines.Member( m_current ); | |
1483 | for (int i = 0; i < steps; i++) if (node->Previous()) node = node->Previous(); | |
1484 | if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1485 | break; | |
1486 | } | |
1487 | case WXK_NEXT: | |
1488 | { | |
1489 | int steps = 0; | |
1490 | if (m_mode & wxLC_REPORT) | |
1491 | { | |
1492 | steps = m_visibleLines-1; | |
1493 | } | |
1494 | else | |
1495 | { | |
1496 | int pos = 0; wxNode *node = m_lines.First(); | |
1497 | for (;;) { if (m_current == (wxListLineData*)node->Data()) break; pos++; node = node->Next(); } | |
1498 | steps = m_visibleLines-(pos % m_visibleLines)-1; | |
1499 | } | |
1500 | wxNode *node = m_lines.Member( m_current ); | |
1501 | for (int i = 0; i < steps; i++) if (node->Next()) node = node->Next(); | |
1502 | if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1503 | break; | |
1504 | } | |
1505 | case WXK_LEFT: | |
1506 | { | |
1507 | if (!(m_mode & wxLC_REPORT)) | |
1508 | { | |
1509 | wxNode *node = m_lines.Member( m_current ); | |
1510 | for (int i = 0; i <m_visibleLines; i++) if (node->Previous()) node = node->Previous(); | |
1511 | if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1512 | } | |
1513 | break; | |
1514 | } | |
1515 | case WXK_RIGHT: | |
1516 | { | |
1517 | if (!(m_mode & wxLC_REPORT)) | |
1518 | { | |
1519 | wxNode *node = m_lines.Member( m_current ); | |
1520 | for (int i = 0; i <m_visibleLines; i++) if (node->Next()) node = node->Next(); | |
1521 | if (node) OnArrowChar( (wxListLineData*)node->Data(), event.ShiftDown() ); | |
1522 | } | |
1523 | break; | |
1524 | } | |
1525 | case WXK_SPACE: | |
1526 | { | |
1527 | m_current->ReverseHilight(); | |
1528 | RefreshLine( m_current ); | |
1529 | break; | |
1530 | } | |
1531 | case WXK_INSERT: | |
1532 | { | |
1533 | if (!(m_mode & wxLC_SINGLE_SEL)) | |
1534 | { | |
1535 | wxListLineData *oldCurrent = m_current; | |
1536 | m_current->ReverseHilight(); | |
1537 | wxNode *node = m_lines.Member( m_current )->Next(); | |
1538 | if (node) m_current = (wxListLineData*)node->Data(); | |
1539 | MoveToFocus(); | |
1540 | RefreshLine( oldCurrent ); | |
1541 | RefreshLine( m_current ); | |
1542 | UnfocusLine( oldCurrent ); | |
1543 | FocusLine( m_current ); | |
1544 | } | |
1545 | break; | |
1546 | } | |
1547 | case WXK_RETURN: | |
1548 | case WXK_EXECUTE: | |
1549 | { | |
1550 | wxListEvent le( wxEVT_COMMAND_LIST_ITEM_ACTIVATED, GetParent()->GetId() ); | |
1551 | le.SetEventObject( GetParent() ); | |
1552 | le.m_itemIndex = GetIndexOfLine( m_current ); | |
1553 | m_current->GetItem( 0, le.m_item ); | |
1554 | GetParent()->GetEventHandler()->ProcessEvent( le ); | |
1555 | break; | |
1556 | } | |
1557 | default: | |
1558 | { | |
1559 | event.Skip(); | |
1560 | return; | |
1561 | } | |
e1e955e1 | 1562 | } |
51cc4dad | 1563 | m_usedKeys = TRUE; |
e1e955e1 | 1564 | } |
c801d85f KB |
1565 | |
1566 | void wxListMainWindow::OnSetFocus( wxFocusEvent &WXUNUSED(event) ) | |
1567 | { | |
63852e78 RR |
1568 | m_hasFocus = TRUE; |
1569 | RefreshLine( m_current ); | |
bd8289c1 | 1570 | |
63852e78 | 1571 | if (!GetParent()) return; |
bd8289c1 | 1572 | |
63852e78 RR |
1573 | wxFocusEvent event( wxEVT_SET_FOCUS, GetParent()->GetId() ); |
1574 | event.SetEventObject( GetParent() ); | |
1575 | GetParent()->GetEventHandler()->ProcessEvent( event ); | |
e1e955e1 | 1576 | } |
c801d85f KB |
1577 | |
1578 | void wxListMainWindow::OnKillFocus( wxFocusEvent &WXUNUSED(event) ) | |
1579 | { | |
63852e78 RR |
1580 | m_hasFocus = FALSE; |
1581 | RefreshLine( m_current ); | |
e1e955e1 | 1582 | } |
c801d85f KB |
1583 | |
1584 | void wxListMainWindow::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
1585 | { | |
1586 | /* | |
1587 | We don't even allow the wxScrolledWindow::AdjustScrollbars() call | |
63852e78 | 1588 | |
c801d85f | 1589 | */ |
e1e955e1 | 1590 | } |
c801d85f | 1591 | |
1e6d9499 | 1592 | void wxListMainWindow::DrawImage( int index, wxDC *dc, int x, int y ) |
c801d85f | 1593 | { |
63852e78 RR |
1594 | if ((m_mode & wxLC_ICON) && (m_normal_image_list)) |
1595 | { | |
1596 | m_normal_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
1597 | return; | |
1598 | } | |
1599 | if ((m_mode & wxLC_SMALL_ICON) && (m_small_image_list)) | |
1600 | { | |
1601 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
1602 | } | |
1603 | if ((m_mode & wxLC_REPORT) && (m_small_image_list)) | |
1604 | { | |
1605 | m_small_image_list->Draw( index, *dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
1606 | return; | |
1607 | } | |
e1e955e1 | 1608 | } |
c801d85f KB |
1609 | |
1610 | void wxListMainWindow::GetImageSize( int index, int &width, int &height ) | |
1611 | { | |
63852e78 RR |
1612 | if ((m_mode & wxLC_ICON) && (m_normal_image_list)) |
1613 | { | |
1614 | m_normal_image_list->GetSize( index, width, height ); | |
1615 | return; | |
1616 | } | |
1617 | if ((m_mode & wxLC_SMALL_ICON) && (m_small_image_list)) | |
1618 | { | |
1619 | m_small_image_list->GetSize( index, width, height ); | |
1620 | return; | |
1621 | } | |
1622 | if ((m_mode & wxLC_REPORT) && (m_small_image_list)) | |
1623 | { | |
1624 | m_small_image_list->GetSize( index, width, height ); | |
1625 | return; | |
1626 | } | |
1627 | width = 0; | |
1628 | height = 0; | |
e1e955e1 | 1629 | } |
c801d85f KB |
1630 | |
1631 | int wxListMainWindow::GetTextLength( wxString &s ) | |
1632 | { | |
1e6d9499 | 1633 | wxClientDC dc( this ); |
139adb6a RR |
1634 | long lw = 0; |
1635 | long lh = 0; | |
1636 | dc.GetTextExtent( s, &lw, &lh ); | |
1637 | return lw + 6; | |
e1e955e1 | 1638 | } |
c801d85f KB |
1639 | |
1640 | int wxListMainWindow::GetIndexOfLine( const wxListLineData *line ) | |
1641 | { | |
139adb6a RR |
1642 | int i = 0; |
1643 | wxNode *node = m_lines.First(); | |
1644 | while (node) | |
1645 | { | |
1646 | if (line == (wxListLineData*)node->Data()) return i; | |
1647 | i++; | |
1648 | node = node->Next(); | |
1649 | } | |
1650 | return -1; | |
e1e955e1 | 1651 | } |
c801d85f | 1652 | |
debe6624 | 1653 | void wxListMainWindow::SetImageList( wxImageList *imageList, int which ) |
c801d85f | 1654 | { |
139adb6a RR |
1655 | m_dirty = TRUE; |
1656 | if (which == wxIMAGE_LIST_NORMAL) m_normal_image_list = imageList; | |
1657 | if (which == wxIMAGE_LIST_SMALL) m_small_image_list = imageList; | |
e1e955e1 | 1658 | } |
c801d85f | 1659 | |
debe6624 | 1660 | void wxListMainWindow::SetItemSpacing( int spacing, bool isSmall ) |
c801d85f | 1661 | { |
139adb6a RR |
1662 | m_dirty = TRUE; |
1663 | if (isSmall) | |
1664 | { | |
1665 | m_small_spacing = spacing; | |
1666 | } | |
1667 | else | |
1668 | { | |
1669 | m_normal_spacing = spacing; | |
1670 | } | |
e1e955e1 | 1671 | } |
c801d85f | 1672 | |
debe6624 | 1673 | int wxListMainWindow::GetItemSpacing( bool isSmall ) |
c801d85f | 1674 | { |
139adb6a | 1675 | if (isSmall) return m_small_spacing; else return m_normal_spacing; |
e1e955e1 | 1676 | } |
c801d85f | 1677 | |
debe6624 | 1678 | void wxListMainWindow::SetColumn( int col, wxListItem &item ) |
c801d85f | 1679 | { |
63852e78 RR |
1680 | m_dirty = TRUE; |
1681 | wxNode *node = m_columns.Nth( col ); | |
1682 | if (node) | |
1683 | { | |
1684 | if (item.m_width == wxLIST_AUTOSIZE_USEHEADER) item.m_width = GetTextLength( item.m_text )+7; | |
1685 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
1686 | column->SetItem( item ); | |
1687 | } | |
1688 | wxListCtrl *lc = (wxListCtrl*) GetParent(); | |
1689 | if (lc->m_headerWin) lc->m_headerWin->Refresh(); | |
e1e955e1 | 1690 | } |
c801d85f | 1691 | |
debe6624 | 1692 | void wxListMainWindow::SetColumnWidth( int col, int width ) |
c801d85f | 1693 | { |
63852e78 | 1694 | if (!(m_mode & wxLC_REPORT)) return; |
0208334d | 1695 | |
63852e78 | 1696 | m_dirty = TRUE; |
bd8289c1 | 1697 | |
0180dad6 RR |
1698 | wxNode *node = (wxNode*) NULL; |
1699 | ||
1700 | if (width == wxLIST_AUTOSIZE_USEHEADER) width = 80; | |
1701 | if (width == wxLIST_AUTOSIZE) | |
1702 | { | |
1703 | wxClientDC dc(this); | |
1704 | dc.SetFont( GetFont() ); | |
1705 | int max = 10; | |
1706 | node = m_lines.First(); | |
1707 | while (node) | |
1708 | { | |
1709 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1710 | wxNode *n = line->m_items.Nth( col ); | |
1711 | if (n) | |
1712 | { | |
1713 | wxListItemData *item = (wxListItemData*)n->Data(); | |
1714 | int current = 0, ix = 0, iy = 0; | |
1715 | long lx = 0, ly = 0; | |
1716 | if (item->HasImage()) | |
1717 | { | |
1718 | GetImageSize( item->GetImage(), ix, iy ); | |
1719 | current = ix + 5; | |
1720 | } | |
1721 | if (item->HasText()) | |
1722 | { | |
1723 | wxString str; | |
1724 | item->GetText( str ); | |
1725 | dc.GetTextExtent( str, &lx, &ly ); | |
1726 | current += lx; | |
1727 | } | |
1728 | if (current > max) max = current; | |
1729 | } | |
1730 | node = node->Next(); | |
1731 | } | |
1732 | width = max+10; | |
1733 | } | |
1734 | ||
1735 | node = m_columns.Nth( col ); | |
63852e78 RR |
1736 | if (node) |
1737 | { | |
1738 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
1739 | column->SetWidth( width ); | |
1740 | } | |
bd8289c1 | 1741 | |
63852e78 RR |
1742 | node = m_lines.First(); |
1743 | while (node) | |
0208334d | 1744 | { |
63852e78 RR |
1745 | wxListLineData *line = (wxListLineData*)node->Data(); |
1746 | wxNode *n = line->m_items.Nth( col ); | |
1747 | if (n) | |
1748 | { | |
1749 | wxListItemData *item = (wxListItemData*)n->Data(); | |
1750 | item->SetSize( width, -1 ); | |
1751 | } | |
1752 | node = node->Next(); | |
0208334d | 1753 | } |
bd8289c1 | 1754 | |
63852e78 RR |
1755 | wxListCtrl *lc = (wxListCtrl*) GetParent(); |
1756 | if (lc->m_headerWin) lc->m_headerWin->Refresh(); | |
e1e955e1 | 1757 | } |
c801d85f | 1758 | |
debe6624 | 1759 | void wxListMainWindow::GetColumn( int col, wxListItem &item ) |
c801d85f | 1760 | { |
63852e78 RR |
1761 | wxNode *node = m_columns.Nth( col ); |
1762 | if (node) | |
1763 | { | |
1764 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
1765 | column->GetItem( item ); | |
1766 | } | |
1767 | else | |
1768 | { | |
1769 | item.m_format = 0; | |
1770 | item.m_width = 0; | |
1771 | item.m_text = ""; | |
1772 | item.m_image = 0; | |
1773 | item.m_data = 0; | |
1774 | } | |
e1e955e1 | 1775 | } |
c801d85f | 1776 | |
bd8289c1 | 1777 | int wxListMainWindow::GetColumnWidth( int col ) |
c801d85f | 1778 | { |
92976ab6 RR |
1779 | wxNode *node = m_columns.Nth( col ); |
1780 | if (node) | |
1781 | { | |
1782 | wxListHeaderData *column = (wxListHeaderData*)node->Data(); | |
1783 | return column->GetWidth(); | |
1784 | } | |
1785 | else | |
1786 | { | |
1787 | return 0; | |
1788 | } | |
e1e955e1 | 1789 | } |
c801d85f KB |
1790 | |
1791 | int wxListMainWindow::GetColumnCount( void ) | |
1792 | { | |
92976ab6 | 1793 | return m_columns.Number(); |
e1e955e1 | 1794 | } |
c801d85f KB |
1795 | |
1796 | int wxListMainWindow::GetCountPerPage( void ) | |
1797 | { | |
92976ab6 | 1798 | return m_visibleLines; |
e1e955e1 | 1799 | } |
c801d85f KB |
1800 | |
1801 | void wxListMainWindow::SetItem( wxListItem &item ) | |
1802 | { | |
92976ab6 RR |
1803 | m_dirty = TRUE; |
1804 | wxNode *node = m_lines.Nth( item.m_itemId ); | |
1805 | if (node) | |
1806 | { | |
1807 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1808 | if (m_mode & wxLC_REPORT) item.m_width = GetColumnWidth( item.m_col )-3; | |
1809 | line->SetItem( item.m_col, item ); | |
1810 | } | |
e1e955e1 | 1811 | } |
c801d85f | 1812 | |
debe6624 | 1813 | void wxListMainWindow::SetItemState( long item, long state, long stateMask ) |
c801d85f | 1814 | { |
92976ab6 | 1815 | // m_dirty = TRUE; no recalcs needed |
bd8289c1 | 1816 | |
92976ab6 | 1817 | wxListLineData *oldCurrent = m_current; |
bd8289c1 | 1818 | |
92976ab6 | 1819 | if (stateMask & wxLIST_STATE_FOCUSED) |
c801d85f | 1820 | { |
92976ab6 RR |
1821 | wxNode *node = m_lines.Nth( item ); |
1822 | if (node) | |
1823 | { | |
1824 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1825 | UnfocusLine( m_current ); | |
1826 | m_current = line; | |
1827 | FocusLine( m_current ); | |
1828 | RefreshLine( m_current ); | |
00a39542 | 1829 | if (oldCurrent) RefreshLine( oldCurrent ); |
92976ab6 | 1830 | } |
e1e955e1 | 1831 | } |
bd8289c1 | 1832 | |
92976ab6 | 1833 | if (stateMask & wxLIST_STATE_SELECTED) |
c801d85f | 1834 | { |
92976ab6 RR |
1835 | bool on = state & wxLIST_STATE_SELECTED; |
1836 | if (!on && (m_mode & wxLC_SINGLE_SEL)) return; | |
1837 | ||
1838 | wxNode *node = m_lines.Nth( item ); | |
1839 | if (node) | |
1840 | { | |
1841 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1842 | if (m_mode & wxLC_SINGLE_SEL) | |
1843 | { | |
1844 | UnfocusLine( m_current ); | |
1845 | m_current = line; | |
1846 | FocusLine( m_current ); | |
00a39542 | 1847 | if (oldCurrent) oldCurrent->Hilight( FALSE ); |
92976ab6 | 1848 | RefreshLine( m_current ); |
00a39542 | 1849 | if (oldCurrent) RefreshLine( oldCurrent ); |
92976ab6 RR |
1850 | } |
1851 | bool on = state & wxLIST_STATE_SELECTED; | |
139adb6a RR |
1852 | if (on != line->IsHilighted()) |
1853 | { | |
1854 | line->Hilight( on ); | |
1855 | RefreshLine( line ); | |
1856 | } | |
92976ab6 | 1857 | } |
e1e955e1 | 1858 | } |
e1e955e1 | 1859 | } |
c801d85f | 1860 | |
debe6624 | 1861 | int wxListMainWindow::GetItemState( long item, long stateMask ) |
c801d85f | 1862 | { |
92976ab6 RR |
1863 | int ret = wxLIST_STATE_DONTCARE; |
1864 | if (stateMask & wxLIST_STATE_FOCUSED) | |
c801d85f | 1865 | { |
92976ab6 RR |
1866 | wxNode *node = m_lines.Nth( item ); |
1867 | if (node) | |
1868 | { | |
1869 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1870 | if (line == m_current) ret |= wxLIST_STATE_FOCUSED; | |
1871 | } | |
e1e955e1 | 1872 | } |
92976ab6 | 1873 | if (stateMask & wxLIST_STATE_SELECTED) |
c801d85f | 1874 | { |
92976ab6 RR |
1875 | wxNode *node = m_lines.Nth( item ); |
1876 | if (node) | |
1877 | { | |
1878 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1879 | if (line->IsHilighted()) ret |= wxLIST_STATE_FOCUSED; | |
1880 | } | |
e1e955e1 | 1881 | } |
92976ab6 | 1882 | return ret; |
e1e955e1 | 1883 | } |
c801d85f KB |
1884 | |
1885 | void wxListMainWindow::GetItem( wxListItem &item ) | |
1886 | { | |
92976ab6 RR |
1887 | wxNode *node = m_lines.Nth( item.m_itemId ); |
1888 | if (node) | |
1889 | { | |
1890 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1891 | line->GetItem( item.m_col, item ); | |
1892 | } | |
1893 | else | |
1894 | { | |
1895 | item.m_mask = 0; | |
1896 | item.m_text = ""; | |
1897 | item.m_image = 0; | |
1898 | item.m_data = 0; | |
1899 | } | |
e1e955e1 | 1900 | } |
c801d85f KB |
1901 | |
1902 | int wxListMainWindow::GetItemCount( void ) | |
1903 | { | |
92976ab6 | 1904 | return m_lines.Number(); |
e1e955e1 | 1905 | } |
c801d85f | 1906 | |
0a240683 | 1907 | void wxListMainWindow::GetItemRect( long index, wxRect &rect ) |
c801d85f | 1908 | { |
92976ab6 RR |
1909 | wxNode *node = m_lines.Nth( index ); |
1910 | if (node) | |
1911 | { | |
1912 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1913 | line->GetRect( rect ); | |
1914 | } | |
1915 | else | |
1916 | { | |
1917 | rect.x = 0; | |
1918 | rect.y = 0; | |
1919 | rect.width = 0; | |
1920 | rect.height = 0; | |
1921 | } | |
e1e955e1 | 1922 | } |
c801d85f | 1923 | |
e3e65dac RR |
1924 | bool wxListMainWindow::GetItemPosition(long item, wxPoint& pos) |
1925 | { | |
92976ab6 RR |
1926 | wxNode *node = m_lines.Nth( item ); |
1927 | if (node) | |
1928 | { | |
0a240683 | 1929 | wxRect rect; |
92976ab6 RR |
1930 | wxListLineData *line = (wxListLineData*)node->Data(); |
1931 | line->GetRect( rect ); | |
1932 | pos.x = rect.x; | |
1933 | pos.y = rect.y; | |
1934 | } | |
1935 | else | |
1936 | { | |
1937 | pos.x = 0; | |
1938 | pos.y = 0; | |
1939 | } | |
1940 | return TRUE; | |
e1e955e1 | 1941 | } |
e3e65dac | 1942 | |
c801d85f KB |
1943 | int wxListMainWindow::GetSelectedItemCount( void ) |
1944 | { | |
92976ab6 RR |
1945 | int ret = 0; |
1946 | wxNode *node = m_lines.First(); | |
1947 | while (node) | |
1948 | { | |
1949 | wxListLineData *line = (wxListLineData*)node->Data(); | |
1950 | if (line->IsHilighted()) ret++; | |
1951 | node = node->Next(); | |
1952 | } | |
1953 | return ret; | |
e1e955e1 | 1954 | } |
c801d85f | 1955 | |
debe6624 | 1956 | void wxListMainWindow::SetMode( long mode ) |
c801d85f | 1957 | { |
92976ab6 RR |
1958 | m_dirty = TRUE; |
1959 | m_mode = mode; | |
bd8289c1 | 1960 | |
92976ab6 | 1961 | DeleteEverything(); |
bd8289c1 | 1962 | |
92976ab6 RR |
1963 | if (m_mode & wxLC_REPORT) |
1964 | { | |
1965 | m_xScroll = 0; | |
1966 | m_yScroll = 15; | |
1967 | } | |
1968 | else | |
1969 | { | |
1970 | m_xScroll = 15; | |
1971 | m_yScroll = 0; | |
1972 | } | |
e1e955e1 | 1973 | } |
c801d85f KB |
1974 | |
1975 | long wxListMainWindow::GetMode( void ) const | |
1976 | { | |
63852e78 | 1977 | return m_mode; |
e1e955e1 | 1978 | } |
c801d85f KB |
1979 | |
1980 | void wxListMainWindow::CalculatePositions( void ) | |
1981 | { | |
92976ab6 | 1982 | if (!m_lines.First()) return; |
e487524e | 1983 | |
1e6d9499 | 1984 | wxClientDC dc( this ); |
92976ab6 | 1985 | dc.SetFont( GetFont() ); |
c801d85f | 1986 | |
92976ab6 RR |
1987 | int iconSpacing = 0; |
1988 | if (m_mode & wxLC_ICON) iconSpacing = m_normal_spacing; | |
1989 | if (m_mode & wxLC_SMALL_ICON) iconSpacing = m_small_spacing; | |
e487524e | 1990 | |
92976ab6 RR |
1991 | // we take the first line (which also can be an icon or |
1992 | // an a text item in wxLC_ICON and wxLC_LIST modes) to | |
1993 | // measure the size of the line | |
e487524e | 1994 | |
92976ab6 RR |
1995 | int lineWidth = 0; |
1996 | int lineHeight = 0; | |
1997 | int lineSpacing = 0; | |
c801d85f | 1998 | |
92976ab6 RR |
1999 | wxListLineData *line = (wxListLineData*)m_lines.First()->Data(); |
2000 | line->CalculateSize( &dc, iconSpacing ); | |
2001 | int dummy = 0; | |
2002 | line->GetSize( dummy, lineSpacing ); | |
2003 | lineSpacing += 4; | |
bd8289c1 | 2004 | |
92976ab6 RR |
2005 | int clientWidth = 0; |
2006 | int clientHeight = 0; | |
bd8289c1 | 2007 | |
92976ab6 | 2008 | if (m_mode & wxLC_REPORT) |
c801d85f | 2009 | { |
92976ab6 RR |
2010 | int x = 4; |
2011 | int y = 1; | |
2012 | int entireHeight = m_lines.Number() * lineSpacing + 2; | |
2013 | int scroll_pos = GetScrollPos( wxVERTICAL ); | |
8b53e5a2 | 2014 | SetScrollbars( m_xScroll, m_yScroll, 0, (entireHeight+15) / m_yScroll, 0, scroll_pos, TRUE ); |
92976ab6 RR |
2015 | GetClientSize( &clientWidth, &clientHeight ); |
2016 | ||
2017 | wxNode* node = m_lines.First(); | |
2018 | while (node) | |
2019 | { | |
2020 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2021 | line->CalculateSize( &dc, iconSpacing ); | |
2022 | line->SetPosition( &dc, x, y, clientWidth ); | |
2023 | int col_x = 2; | |
2024 | for (int i = 0; i < GetColumnCount(); i++) | |
2025 | { | |
2026 | line->SetColumnPosition( i, col_x ); | |
2027 | col_x += GetColumnWidth( i ); | |
2028 | } | |
2029 | y += lineSpacing; // one pixel blank line between items | |
2030 | node = node->Next(); | |
2031 | } | |
139adb6a | 2032 | m_visibleLines = clientHeight / lineSpacing; |
e1e955e1 | 2033 | } |
92976ab6 RR |
2034 | else |
2035 | { | |
2036 | // at first we try without any scrollbar. if the items don't | |
2037 | // fit into the window, we recalculate after subtracting an | |
2038 | // approximated 15 pt for the horizontal scrollbar | |
e487524e | 2039 | |
92976ab6 RR |
2040 | GetSize( &clientWidth, &clientHeight ); |
2041 | clientHeight -= 4; // sunken frame | |
bd8289c1 | 2042 | |
92976ab6 | 2043 | int entireWidth = 0; |
bd8289c1 | 2044 | |
92976ab6 | 2045 | for (int tries = 0; tries < 2; tries++) |
e487524e | 2046 | { |
92976ab6 RR |
2047 | entireWidth = 0; |
2048 | int x = 5; // painting is done at x-2 | |
2049 | int y = 5; // painting is done at y-2 | |
2050 | int maxWidth = 0; | |
2051 | wxNode *node = m_lines.First(); | |
2052 | while (node) | |
2053 | { | |
2054 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2055 | line->CalculateSize( &dc, iconSpacing ); | |
2056 | line->SetPosition( &dc, x, y, clientWidth ); | |
2057 | line->GetSize( lineWidth, lineHeight ); | |
2058 | if (lineWidth > maxWidth) maxWidth = lineWidth; | |
2059 | y += lineSpacing; | |
8b53e5a2 | 2060 | if (y+lineSpacing-6 >= clientHeight) // -6 for earlier "line breaking" |
92976ab6 RR |
2061 | { |
2062 | y = 5; | |
8b53e5a2 RR |
2063 | x += maxWidth+6; |
2064 | entireWidth += maxWidth+6; | |
92976ab6 RR |
2065 | maxWidth = 0; |
2066 | } | |
2067 | node = node->Next(); | |
2068 | if (!node) entireWidth += maxWidth; | |
2069 | if ((tries == 0) && (entireWidth > clientWidth)) | |
2070 | { | |
2071 | clientHeight -= 15; // scrollbar height | |
2072 | break; | |
2073 | } | |
2074 | if (!node) tries = 1; // everything fits, no second try required | |
2075 | } | |
e487524e | 2076 | } |
8b53e5a2 | 2077 | m_visibleLines = (clientHeight+6) / (lineSpacing); // +6 for earlier "line breaking" |
92976ab6 RR |
2078 | |
2079 | int scroll_pos = GetScrollPos( wxHORIZONTAL ); | |
2080 | SetScrollbars( m_xScroll, m_yScroll, (entireWidth+15) / m_xScroll, 0, scroll_pos, 0, TRUE ); | |
e1e955e1 | 2081 | } |
e1e955e1 | 2082 | } |
c801d85f KB |
2083 | |
2084 | void wxListMainWindow::RealizeChanges( void ) | |
2085 | { | |
92976ab6 RR |
2086 | if (!m_current) |
2087 | { | |
2088 | wxNode *node = m_lines.First(); | |
2089 | if (node) m_current = (wxListLineData*)node->Data(); | |
2090 | } | |
2091 | if (m_current) | |
2092 | { | |
2093 | FocusLine( m_current ); | |
2094 | if (m_mode & wxLC_SINGLE_SEL) m_current->Hilight( TRUE ); | |
2095 | } | |
e1e955e1 | 2096 | } |
c801d85f | 2097 | |
debe6624 | 2098 | long wxListMainWindow::GetNextItem( long item, int WXUNUSED(geometry), int state ) |
c801d85f | 2099 | { |
63852e78 RR |
2100 | long ret = 0; |
2101 | if (item > 0) ret = item; | |
d9081042 | 2102 | if(ret >= GetItemCount()) return -1; |
63852e78 RR |
2103 | wxNode *node = m_lines.Nth( ret ); |
2104 | while (node) | |
2105 | { | |
2106 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2107 | if ((state & wxLIST_STATE_FOCUSED) && (line == m_current)) return ret; | |
2108 | if ((state & wxLIST_STATE_SELECTED) && (line->IsHilighted())) return ret; | |
2109 | if (!state) return ret; | |
2110 | ret++; | |
2111 | node = node->Next(); | |
2112 | } | |
2113 | return -1; | |
e1e955e1 | 2114 | } |
c801d85f | 2115 | |
debe6624 | 2116 | void wxListMainWindow::DeleteItem( long index ) |
c801d85f | 2117 | { |
63852e78 RR |
2118 | m_dirty = TRUE; |
2119 | wxNode *node = m_lines.Nth( index ); | |
2120 | if (node) | |
2121 | { | |
2122 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2123 | if (m_current == line) m_current = (wxListLineData *) NULL; | |
2124 | DeleteLine( line ); | |
2125 | m_lines.DeleteNode( node ); | |
2126 | } | |
e1e955e1 | 2127 | } |
c801d85f | 2128 | |
debe6624 | 2129 | void wxListMainWindow::DeleteColumn( int col ) |
c801d85f | 2130 | { |
5b077d48 | 2131 | wxCHECK_RET( col < (int)m_columns.GetCount(), |
87138c52 | 2132 | _T("attempting to delete inexistent column in wxListView") ); |
bd8289c1 | 2133 | |
5b077d48 RR |
2134 | m_dirty = TRUE; |
2135 | wxNode *node = m_columns.Nth( col ); | |
2136 | if (node) m_columns.DeleteNode( node ); | |
e1e955e1 | 2137 | } |
c801d85f KB |
2138 | |
2139 | void wxListMainWindow::DeleteAllItems( void ) | |
2140 | { | |
5b077d48 RR |
2141 | m_dirty = TRUE; |
2142 | m_current = (wxListLineData *) NULL; | |
2143 | wxNode *node = m_lines.First(); | |
2144 | while (node) | |
2145 | { | |
2146 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2147 | DeleteLine( line ); | |
2148 | node = node->Next(); | |
2149 | } | |
2150 | m_lines.Clear(); | |
e1e955e1 | 2151 | } |
c801d85f KB |
2152 | |
2153 | void wxListMainWindow::DeleteEverything( void ) | |
2154 | { | |
5b077d48 RR |
2155 | m_dirty = TRUE; |
2156 | m_current = (wxListLineData *) NULL; | |
2157 | wxNode *node = m_lines.First(); | |
2158 | while (node) | |
2159 | { | |
2160 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2161 | DeleteLine( line ); | |
2162 | node = node->Next(); | |
2163 | } | |
2164 | m_lines.Clear(); | |
2165 | m_current = (wxListLineData *) NULL; | |
2166 | m_columns.Clear(); | |
e1e955e1 | 2167 | } |
c801d85f | 2168 | |
debe6624 | 2169 | void wxListMainWindow::EnsureVisible( long index ) |
c801d85f | 2170 | { |
5b077d48 RR |
2171 | wxListLineData *oldCurrent = m_current; |
2172 | m_current = (wxListLineData *) NULL; | |
2173 | int i = index; | |
2174 | wxNode *node = m_lines.Nth( i ); | |
2175 | if (node) m_current = (wxListLineData*)node->Data(); | |
2176 | if (m_current) MoveToFocus(); | |
2177 | m_current = oldCurrent; | |
e1e955e1 | 2178 | } |
c801d85f | 2179 | |
debe6624 | 2180 | long wxListMainWindow::FindItem(long start, const wxString& str, bool WXUNUSED(partial) ) |
c801d85f | 2181 | { |
5b077d48 RR |
2182 | long pos = start; |
2183 | wxString tmp = str; | |
2184 | if (pos < 0) pos = 0; | |
2185 | wxNode *node = m_lines.Nth( pos ); | |
2186 | while (node) | |
2187 | { | |
2188 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2189 | wxString s = ""; | |
2190 | line->GetText( 0, s ); | |
2191 | if (s == tmp) return pos; | |
2192 | node = node->Next(); | |
2193 | pos++; | |
2194 | } | |
2195 | return -1; | |
e1e955e1 | 2196 | } |
c801d85f | 2197 | |
debe6624 | 2198 | long wxListMainWindow::FindItem(long start, long data) |
c801d85f | 2199 | { |
5b077d48 RR |
2200 | long pos = start; |
2201 | if (pos < 0) pos = 0; | |
2202 | wxNode *node = m_lines.Nth( pos ); | |
2203 | while (node) | |
2204 | { | |
2205 | wxListLineData *line = (wxListLineData*)node->Data(); | |
2206 | wxListItem item; | |
2207 | line->GetItem( 0, item ); | |
2208 | if (item.m_data == data) return pos; | |
2209 | node = node->Next(); | |
2210 | pos++; | |
2211 | } | |
2212 | return -1; | |
e1e955e1 | 2213 | } |
c801d85f | 2214 | |
debe6624 | 2215 | long wxListMainWindow::HitTest( int x, int y, int &flags ) |
c801d85f | 2216 | { |
5b077d48 RR |
2217 | wxNode *node = m_lines.First(); |
2218 | int count = 0; | |
2219 | while (node) | |
c801d85f | 2220 | { |
5b077d48 RR |
2221 | wxListLineData *line = (wxListLineData*)node->Data(); |
2222 | long ret = line->IsHit( x, y ); | |
2223 | if (ret & flags) | |
2224 | { | |
2225 | flags = ret; | |
2226 | return count; | |
2227 | } | |
2228 | node = node->Next(); | |
2229 | count++; | |
e1e955e1 | 2230 | } |
5b077d48 | 2231 | return -1; |
e1e955e1 | 2232 | } |
c801d85f KB |
2233 | |
2234 | void wxListMainWindow::InsertItem( wxListItem &item ) | |
2235 | { | |
5b077d48 RR |
2236 | m_dirty = TRUE; |
2237 | int mode = 0; | |
2238 | if (m_mode & wxLC_REPORT) mode = wxLC_REPORT; | |
2239 | else if (m_mode & wxLC_LIST) mode = wxLC_LIST; | |
2240 | else if (m_mode & wxLC_ICON) mode = wxLC_ICON; | |
2241 | else if (m_mode & wxLC_SMALL_ICON) mode = wxLC_ICON; // no typo | |
2242 | ||
2243 | wxListLineData *line = new wxListLineData( this, mode, m_hilightBrush ); | |
2244 | ||
2245 | if (m_mode & wxLC_REPORT) | |
2246 | { | |
2247 | line->InitItems( GetColumnCount() ); | |
2248 | item.m_width = GetColumnWidth( 0 )-3; | |
2249 | } | |
2250 | else | |
2251 | { | |
2252 | line->InitItems( 1 ); | |
2253 | } | |
2254 | ||
2255 | line->SetItem( 0, item ); | |
2256 | if ((item.m_itemId >= 0) && (item.m_itemId < (int)m_lines.GetCount())) | |
2257 | { | |
2258 | wxNode *node = m_lines.Nth( item.m_itemId ); | |
2259 | if (node) m_lines.Insert( node, line ); | |
2260 | } | |
2261 | else | |
2262 | { | |
2263 | m_lines.Append( line ); | |
2264 | } | |
e1e955e1 | 2265 | } |
c801d85f | 2266 | |
debe6624 | 2267 | void wxListMainWindow::InsertColumn( long col, wxListItem &item ) |
c801d85f | 2268 | { |
5b077d48 RR |
2269 | m_dirty = TRUE; |
2270 | if (m_mode & wxLC_REPORT) | |
3db7be80 | 2271 | { |
5b077d48 RR |
2272 | if (item.m_width == wxLIST_AUTOSIZE_USEHEADER) item.m_width = GetTextLength( item.m_text ); |
2273 | wxListHeaderData *column = new wxListHeaderData( item ); | |
2274 | if ((col >= 0) && (col < (int)m_columns.GetCount())) | |
2275 | { | |
2276 | wxNode *node = m_columns.Nth( col ); | |
2277 | if (node) | |
2278 | m_columns.Insert( node, column ); | |
2279 | } | |
2280 | else | |
2281 | { | |
2282 | m_columns.Append( column ); | |
2283 | } | |
3db7be80 | 2284 | } |
e1e955e1 | 2285 | } |
c801d85f KB |
2286 | |
2287 | wxListCtrlCompare list_ctrl_compare_func_2; | |
2288 | long list_ctrl_compare_data; | |
2289 | ||
2290 | int list_ctrl_compare_func_1( const void *arg1, const void *arg2 ) | |
2291 | { | |
5b077d48 RR |
2292 | wxListLineData *line1 = *((wxListLineData**)arg1); |
2293 | wxListLineData *line2 = *((wxListLineData**)arg2); | |
2294 | wxListItem item; | |
2295 | line1->GetItem( 0, item ); | |
2296 | long data1 = item.m_data; | |
2297 | line2->GetItem( 0, item ); | |
2298 | long data2 = item.m_data; | |
2299 | return list_ctrl_compare_func_2( data1, data2, list_ctrl_compare_data ); | |
e1e955e1 | 2300 | } |
c801d85f KB |
2301 | |
2302 | void wxListMainWindow::SortItems( wxListCtrlCompare fn, long data ) | |
2303 | { | |
5b077d48 RR |
2304 | list_ctrl_compare_func_2 = fn; |
2305 | list_ctrl_compare_data = data; | |
2306 | m_lines.Sort( list_ctrl_compare_func_1 ); | |
e1e955e1 | 2307 | } |
c801d85f | 2308 | |
c801d85f KB |
2309 | // ------------------------------------------------------------------------------------- |
2310 | // wxListItem | |
2311 | // ------------------------------------------------------------------------------------- | |
2312 | ||
2313 | IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject) | |
2314 | ||
2315 | wxListItem::wxListItem(void) | |
2316 | { | |
63852e78 RR |
2317 | m_mask = 0; |
2318 | m_itemId = 0; | |
2319 | m_col = 0; | |
2320 | m_state = 0; | |
2321 | m_stateMask = 0; | |
2322 | m_image = 0; | |
2323 | m_data = 0; | |
2324 | m_format = wxLIST_FORMAT_CENTRE; | |
2325 | m_width = 0; | |
2326 | m_colour = wxBLACK; | |
c801d85f KB |
2327 | } |
2328 | ||
2329 | // ------------------------------------------------------------------------------------- | |
2330 | // wxListEvent | |
2331 | // ------------------------------------------------------------------------------------- | |
2332 | ||
92976ab6 | 2333 | IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent) |
c801d85f | 2334 | |
8f79098a | 2335 | wxListEvent::wxListEvent( wxEventType commandType, int id ): |
92976ab6 | 2336 | wxNotifyEvent( commandType, id ) |
c801d85f | 2337 | { |
5b077d48 RR |
2338 | m_code = 0; |
2339 | m_itemIndex = 0; | |
2340 | m_oldItemIndex = 0; | |
2341 | m_col = 0; | |
2342 | m_cancelled = FALSE; | |
2343 | m_pointDrag.x = 0; | |
2344 | m_pointDrag.y = 0; | |
e1e955e1 | 2345 | } |
c801d85f KB |
2346 | |
2347 | // ------------------------------------------------------------------------------------- | |
2348 | // wxListCtrl | |
2349 | // ------------------------------------------------------------------------------------- | |
2350 | ||
2351 | IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl) | |
2352 | ||
2353 | BEGIN_EVENT_TABLE(wxListCtrl,wxControl) | |
2354 | EVT_SIZE (wxListCtrl::OnSize) | |
53010e52 | 2355 | EVT_IDLE (wxListCtrl::OnIdle) |
c801d85f KB |
2356 | END_EVENT_TABLE() |
2357 | ||
2358 | wxListCtrl::wxListCtrl(void) | |
2359 | { | |
5b077d48 RR |
2360 | m_imageListNormal = (wxImageList *) NULL; |
2361 | m_imageListSmall = (wxImageList *) NULL; | |
2362 | m_imageListState = (wxImageList *) NULL; | |
2363 | m_mainWin = (wxListMainWindow*) NULL; | |
2364 | m_headerWin = (wxListHeaderWindow*) NULL; | |
c801d85f KB |
2365 | } |
2366 | ||
c801d85f KB |
2367 | wxListCtrl::~wxListCtrl(void) |
2368 | { | |
2369 | } | |
2370 | ||
bd8289c1 | 2371 | bool wxListCtrl::Create( wxWindow *parent, wxWindowID id, |
debe6624 | 2372 | const wxPoint &pos, const wxSize &size, |
bd8289c1 | 2373 | long style, const wxValidator &validator, |
32e9da8b | 2374 | const wxString &name ) |
c801d85f | 2375 | { |
5b077d48 RR |
2376 | m_imageListNormal = (wxImageList *) NULL; |
2377 | m_imageListSmall = (wxImageList *) NULL; | |
2378 | m_imageListState = (wxImageList *) NULL; | |
2379 | m_mainWin = (wxListMainWindow*) NULL; | |
2380 | m_headerWin = (wxListHeaderWindow*) NULL; | |
bd8289c1 | 2381 | |
5b077d48 | 2382 | long s = style; |
bd8289c1 | 2383 | |
5b077d48 RR |
2384 | if ((s & wxLC_REPORT == 0) && |
2385 | (s & wxLC_LIST == 0) && | |
2386 | (s & wxLC_ICON == 0)) | |
2387 | { | |
2388 | s = s | wxLC_LIST; | |
2389 | } | |
bd8289c1 | 2390 | |
5b077d48 | 2391 | bool ret = wxControl::Create( parent, id, pos, size, s, name ); |
bd8289c1 | 2392 | |
ce4169a4 | 2393 | #if wxUSE_VALIDATORS |
5b077d48 | 2394 | SetValidator( validator ); |
ce4169a4 | 2395 | #endif |
907789a0 | 2396 | |
5b077d48 | 2397 | if (s & wxSUNKEN_BORDER) s -= wxSUNKEN_BORDER; |
bd8289c1 | 2398 | |
5b077d48 | 2399 | m_mainWin = new wxListMainWindow( this, -1, wxPoint(0,0), size, s ); |
bd8289c1 | 2400 | |
f03fc89f | 2401 | if (HasFlag(wxLC_REPORT)) |
5b077d48 RR |
2402 | m_headerWin = new wxListHeaderWindow( this, -1, m_mainWin, wxPoint(0,0), wxSize(size.x,23), wxTAB_TRAVERSAL ); |
2403 | else | |
2404 | m_headerWin = (wxListHeaderWindow *) NULL; | |
bd8289c1 | 2405 | |
58dea4b0 RR |
2406 | SetBackgroundColour( *wxWHITE ); |
2407 | ||
5b077d48 | 2408 | return ret; |
e1e955e1 | 2409 | } |
c801d85f KB |
2410 | |
2411 | void wxListCtrl::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
2412 | { | |
5b077d48 | 2413 | /* handled in OnIdle */ |
bd8289c1 | 2414 | |
5b077d48 | 2415 | if (m_mainWin) m_mainWin->m_dirty = TRUE; |
e1e955e1 | 2416 | } |
c801d85f | 2417 | |
debe6624 | 2418 | void wxListCtrl::SetSingleStyle( long style, bool add ) |
c801d85f | 2419 | { |
f03fc89f | 2420 | long flag = GetWindowStyle(); |
bd8289c1 | 2421 | |
5b077d48 RR |
2422 | if (add) |
2423 | { | |
2424 | if (style & wxLC_MASK_TYPE) flag = flag & ~wxLC_MASK_TYPE; | |
2425 | if (style & wxLC_MASK_ALIGN) flag = flag & ~wxLC_MASK_ALIGN; | |
2426 | if (style & wxLC_MASK_SORT) flag = flag & ~wxLC_MASK_SORT; | |
2427 | } | |
c801d85f | 2428 | |
5b077d48 RR |
2429 | if (add) |
2430 | { | |
2431 | flag |= style; | |
2432 | } | |
2433 | else | |
2434 | { | |
2435 | if (flag & style) flag -= style; | |
2436 | } | |
bd8289c1 | 2437 | |
5b077d48 | 2438 | SetWindowStyleFlag( flag ); |
e1e955e1 | 2439 | } |
c801d85f | 2440 | |
debe6624 | 2441 | void wxListCtrl::SetWindowStyleFlag( long flag ) |
c801d85f | 2442 | { |
121a3581 RR |
2443 | if (m_mainWin) |
2444 | { | |
2445 | m_mainWin->DeleteEverything(); | |
c801d85f | 2446 | |
121a3581 RR |
2447 | int width = 0; |
2448 | int height = 0; | |
2449 | GetClientSize( &width, &height ); | |
c801d85f | 2450 | |
121a3581 | 2451 | m_mainWin->SetMode( flag ); |
bd8289c1 | 2452 | |
121a3581 | 2453 | if (flag & wxLC_REPORT) |
5b077d48 | 2454 | { |
121a3581 | 2455 | if (!HasFlag(wxLC_REPORT)) |
5b077d48 | 2456 | { |
121a3581 RR |
2457 | if (!m_headerWin) |
2458 | { | |
2459 | m_headerWin = new wxListHeaderWindow( this, -1, m_mainWin, | |
2460 | wxPoint(0,0), wxSize(width,23), wxTAB_TRAVERSAL ); | |
2461 | } | |
2462 | else | |
2463 | { | |
2464 | m_headerWin->Show( TRUE ); | |
2465 | } | |
5b077d48 RR |
2466 | } |
2467 | } | |
121a3581 | 2468 | else |
5b077d48 | 2469 | { |
121a3581 RR |
2470 | if (HasFlag(wxLC_REPORT)) |
2471 | { | |
2472 | m_headerWin->Show( FALSE ); | |
2473 | } | |
2474 | } | |
e1e955e1 | 2475 | } |
121a3581 | 2476 | |
5b077d48 | 2477 | wxWindow::SetWindowStyleFlag( flag ); |
e1e955e1 | 2478 | } |
c801d85f | 2479 | |
e487524e | 2480 | bool wxListCtrl::GetColumn(int col, wxListItem &item) const |
c801d85f | 2481 | { |
5b077d48 RR |
2482 | m_mainWin->GetColumn( col, item ); |
2483 | return TRUE; | |
e1e955e1 | 2484 | } |
c801d85f | 2485 | |
debe6624 | 2486 | bool wxListCtrl::SetColumn( int col, wxListItem& item ) |
c801d85f | 2487 | { |
5b077d48 RR |
2488 | m_mainWin->SetColumn( col, item ); |
2489 | return TRUE; | |
e1e955e1 | 2490 | } |
c801d85f | 2491 | |
e487524e | 2492 | int wxListCtrl::GetColumnWidth( int col ) const |
c801d85f | 2493 | { |
5b077d48 | 2494 | return m_mainWin->GetColumnWidth( col ); |
e1e955e1 | 2495 | } |
c801d85f | 2496 | |
debe6624 | 2497 | bool wxListCtrl::SetColumnWidth( int col, int width ) |
c801d85f | 2498 | { |
5b077d48 RR |
2499 | m_mainWin->SetColumnWidth( col, width ); |
2500 | return TRUE; | |
e1e955e1 | 2501 | } |
c801d85f | 2502 | |
e487524e | 2503 | int wxListCtrl::GetCountPerPage(void) const |
c801d85f KB |
2504 | { |
2505 | return m_mainWin->GetCountPerPage(); // different from Windows ? | |
e1e955e1 | 2506 | } |
c801d85f KB |
2507 | |
2508 | /* | |
2509 | wxText& wxListCtrl::GetEditControl(void) const | |
2510 | { | |
e1e955e1 | 2511 | } |
c801d85f KB |
2512 | */ |
2513 | ||
e487524e | 2514 | bool wxListCtrl::GetItem( wxListItem &info ) const |
c801d85f | 2515 | { |
5b077d48 RR |
2516 | m_mainWin->GetItem( info ); |
2517 | return TRUE; | |
e1e955e1 | 2518 | } |
c801d85f KB |
2519 | |
2520 | bool wxListCtrl::SetItem( wxListItem &info ) | |
2521 | { | |
5b077d48 RR |
2522 | m_mainWin->SetItem( info ); |
2523 | return TRUE; | |
e1e955e1 | 2524 | } |
c801d85f | 2525 | |
debe6624 | 2526 | long wxListCtrl::SetItem( long index, int col, const wxString& label, int imageId ) |
c801d85f | 2527 | { |
5b077d48 RR |
2528 | wxListItem info; |
2529 | info.m_text = label; | |
2530 | info.m_mask = wxLIST_MASK_TEXT; | |
2531 | info.m_itemId = index; | |
2532 | info.m_col = col; | |
2533 | if ( imageId > -1 ) | |
2534 | { | |
2535 | info.m_image = imageId; | |
2536 | info.m_mask |= wxLIST_MASK_IMAGE; | |
2537 | }; | |
2538 | m_mainWin->SetItem(info); | |
2539 | return TRUE; | |
e1e955e1 | 2540 | } |
c801d85f | 2541 | |
e487524e | 2542 | int wxListCtrl::GetItemState( long item, long stateMask ) const |
c801d85f | 2543 | { |
5b077d48 | 2544 | return m_mainWin->GetItemState( item, stateMask ); |
e1e955e1 | 2545 | } |
c801d85f | 2546 | |
debe6624 | 2547 | bool wxListCtrl::SetItemState( long item, long state, long stateMask ) |
c801d85f | 2548 | { |
5b077d48 RR |
2549 | m_mainWin->SetItemState( item, state, stateMask ); |
2550 | return TRUE; | |
e1e955e1 | 2551 | } |
c801d85f | 2552 | |
debe6624 | 2553 | bool wxListCtrl::SetItemImage( long item, int image, int WXUNUSED(selImage) ) |
c801d85f | 2554 | { |
5b077d48 RR |
2555 | wxListItem info; |
2556 | info.m_image = image; | |
2557 | info.m_mask = wxLIST_MASK_IMAGE; | |
2558 | info.m_itemId = item; | |
2559 | m_mainWin->SetItem( info ); | |
2560 | return TRUE; | |
e1e955e1 | 2561 | } |
c801d85f | 2562 | |
e487524e | 2563 | wxString wxListCtrl::GetItemText( long item ) const |
c801d85f | 2564 | { |
5b077d48 RR |
2565 | wxListItem info; |
2566 | info.m_itemId = item; | |
2567 | m_mainWin->GetItem( info ); | |
2568 | return info.m_text; | |
e1e955e1 | 2569 | } |
c801d85f | 2570 | |
debe6624 | 2571 | void wxListCtrl::SetItemText( long item, const wxString &str ) |
c801d85f | 2572 | { |
5b077d48 RR |
2573 | wxListItem info; |
2574 | info.m_mask = wxLIST_MASK_TEXT; | |
2575 | info.m_itemId = item; | |
2576 | info.m_text = str; | |
2577 | m_mainWin->SetItem( info ); | |
e1e955e1 | 2578 | } |
c801d85f | 2579 | |
e487524e | 2580 | long wxListCtrl::GetItemData( long item ) const |
c801d85f | 2581 | { |
5b077d48 RR |
2582 | wxListItem info; |
2583 | info.m_itemId = item; | |
2584 | m_mainWin->GetItem( info ); | |
2585 | return info.m_data; | |
e1e955e1 | 2586 | } |
c801d85f | 2587 | |
debe6624 | 2588 | bool wxListCtrl::SetItemData( long item, long data ) |
c801d85f | 2589 | { |
5b077d48 RR |
2590 | wxListItem info; |
2591 | info.m_mask = wxLIST_MASK_DATA; | |
2592 | info.m_itemId = item; | |
2593 | info.m_data = data; | |
2594 | m_mainWin->SetItem( info ); | |
2595 | return TRUE; | |
e1e955e1 | 2596 | } |
c801d85f | 2597 | |
0a240683 | 2598 | bool wxListCtrl::GetItemRect( long item, wxRect &rect, int WXUNUSED(code) ) const |
c801d85f | 2599 | { |
5b077d48 RR |
2600 | m_mainWin->GetItemRect( item, rect ); |
2601 | return TRUE; | |
e1e955e1 | 2602 | } |
c801d85f | 2603 | |
e487524e | 2604 | bool wxListCtrl::GetItemPosition( long item, wxPoint& pos ) const |
c801d85f | 2605 | { |
5b077d48 RR |
2606 | m_mainWin->GetItemPosition( item, pos ); |
2607 | return TRUE; | |
e1e955e1 | 2608 | } |
c801d85f | 2609 | |
debe6624 | 2610 | bool wxListCtrl::SetItemPosition( long WXUNUSED(item), const wxPoint& WXUNUSED(pos) ) |
c801d85f | 2611 | { |
5b077d48 | 2612 | return 0; |
e1e955e1 | 2613 | } |
c801d85f | 2614 | |
e487524e | 2615 | int wxListCtrl::GetItemCount(void) const |
c801d85f | 2616 | { |
5b077d48 | 2617 | return m_mainWin->GetItemCount(); |
e1e955e1 | 2618 | } |
c801d85f | 2619 | |
92976ab6 RR |
2620 | int wxListCtrl::GetColumnCount(void) const |
2621 | { | |
5b077d48 | 2622 | return m_mainWin->GetColumnCount(); |
92976ab6 RR |
2623 | } |
2624 | ||
33d0b396 RR |
2625 | void wxListCtrl::SetItemSpacing( int spacing, bool isSmall ) |
2626 | { | |
5b077d48 | 2627 | m_mainWin->SetItemSpacing( spacing, isSmall ); |
e1e955e1 | 2628 | } |
33d0b396 | 2629 | |
e487524e | 2630 | int wxListCtrl::GetItemSpacing( bool isSmall ) const |
c801d85f | 2631 | { |
5b077d48 | 2632 | return m_mainWin->GetItemSpacing( isSmall ); |
e1e955e1 | 2633 | } |
c801d85f | 2634 | |
e487524e | 2635 | int wxListCtrl::GetSelectedItemCount(void) const |
c801d85f | 2636 | { |
5b077d48 | 2637 | return m_mainWin->GetSelectedItemCount(); |
e1e955e1 | 2638 | } |
c801d85f KB |
2639 | |
2640 | /* | |
2641 | wxColour wxListCtrl::GetTextColour(void) const | |
2642 | { | |
e1e955e1 | 2643 | } |
c801d85f KB |
2644 | |
2645 | void wxListCtrl::SetTextColour(const wxColour& WXUNUSED(col)) | |
2646 | { | |
e1e955e1 | 2647 | } |
c801d85f KB |
2648 | */ |
2649 | ||
e487524e | 2650 | long wxListCtrl::GetTopItem(void) const |
c801d85f | 2651 | { |
5b077d48 | 2652 | return 0; |
e1e955e1 | 2653 | } |
c801d85f | 2654 | |
6de97a3b | 2655 | long wxListCtrl::GetNextItem( long item, int geom, int state ) const |
c801d85f | 2656 | { |
5b077d48 | 2657 | return m_mainWin->GetNextItem( item, geom, state ); |
e1e955e1 | 2658 | } |
c801d85f | 2659 | |
e487524e | 2660 | wxImageList *wxListCtrl::GetImageList(int which) const |
c801d85f | 2661 | { |
5b077d48 RR |
2662 | if (which == wxIMAGE_LIST_NORMAL) |
2663 | { | |
2664 | return m_imageListNormal; | |
2665 | } | |
2666 | else if (which == wxIMAGE_LIST_SMALL) | |
2667 | { | |
2668 | return m_imageListSmall; | |
2669 | } | |
2670 | else if (which == wxIMAGE_LIST_STATE) | |
2671 | { | |
2672 | return m_imageListState; | |
2673 | } | |
2674 | return (wxImageList *) NULL; | |
e1e955e1 | 2675 | } |
c801d85f | 2676 | |
debe6624 | 2677 | void wxListCtrl::SetImageList( wxImageList *imageList, int which ) |
c801d85f | 2678 | { |
5b077d48 | 2679 | m_mainWin->SetImageList( imageList, which ); |
e1e955e1 | 2680 | } |
c801d85f | 2681 | |
debe6624 | 2682 | bool wxListCtrl::Arrange( int WXUNUSED(flag) ) |
c801d85f | 2683 | { |
5b077d48 | 2684 | return 0; |
e1e955e1 | 2685 | } |
c801d85f | 2686 | |
debe6624 | 2687 | bool wxListCtrl::DeleteItem( long item ) |
c801d85f | 2688 | { |
5b077d48 RR |
2689 | m_mainWin->DeleteItem( item ); |
2690 | return TRUE; | |
e1e955e1 | 2691 | } |
c801d85f KB |
2692 | |
2693 | bool wxListCtrl::DeleteAllItems(void) | |
2694 | { | |
5b077d48 RR |
2695 | m_mainWin->DeleteAllItems(); |
2696 | return TRUE; | |
e1e955e1 | 2697 | } |
c801d85f | 2698 | |
4f22cf8d | 2699 | bool wxListCtrl::DeleteAllColumns() |
bd8289c1 VZ |
2700 | { |
2701 | for ( size_t n = 0; n < m_mainWin->m_columns.GetCount(); n++ ) | |
2702 | DeleteColumn(n); | |
4f22cf8d | 2703 | |
5b077d48 | 2704 | return TRUE; |
4f22cf8d RR |
2705 | } |
2706 | ||
2707 | void wxListCtrl::ClearAll() | |
2708 | { | |
5b077d48 | 2709 | m_mainWin->DeleteEverything(); |
bd8289c1 VZ |
2710 | } |
2711 | ||
debe6624 | 2712 | bool wxListCtrl::DeleteColumn( int col ) |
c801d85f | 2713 | { |
5b077d48 RR |
2714 | m_mainWin->DeleteColumn( col ); |
2715 | return TRUE; | |
e1e955e1 | 2716 | } |
c801d85f KB |
2717 | |
2718 | /* | |
debe6624 | 2719 | wxText& wxListCtrl::Edit( long WXUNUSED(item ) ) |
c801d85f | 2720 | { |
e1e955e1 | 2721 | } |
c801d85f KB |
2722 | */ |
2723 | ||
debe6624 | 2724 | bool wxListCtrl::EnsureVisible( long item ) |
c801d85f | 2725 | { |
5b077d48 RR |
2726 | m_mainWin->EnsureVisible( item ); |
2727 | return TRUE; | |
e1e955e1 | 2728 | } |
c801d85f | 2729 | |
debe6624 | 2730 | long wxListCtrl::FindItem( long start, const wxString& str, bool partial ) |
c801d85f | 2731 | { |
5b077d48 | 2732 | return m_mainWin->FindItem( start, str, partial ); |
e1e955e1 | 2733 | } |
c801d85f | 2734 | |
debe6624 | 2735 | long wxListCtrl::FindItem( long start, long data ) |
c801d85f | 2736 | { |
5b077d48 | 2737 | return m_mainWin->FindItem( start, data ); |
e1e955e1 | 2738 | } |
c801d85f | 2739 | |
bd8289c1 | 2740 | long wxListCtrl::FindItem( long WXUNUSED(start), const wxPoint& WXUNUSED(pt), |
debe6624 | 2741 | int WXUNUSED(direction)) |
c801d85f | 2742 | { |
5b077d48 | 2743 | return 0; |
e1e955e1 | 2744 | } |
c801d85f KB |
2745 | |
2746 | long wxListCtrl::HitTest( const wxPoint &point, int &flags ) | |
2747 | { | |
5b077d48 | 2748 | return m_mainWin->HitTest( (int)point.x, (int)point.y, flags ); |
e1e955e1 | 2749 | } |
c801d85f KB |
2750 | |
2751 | long wxListCtrl::InsertItem( wxListItem& info ) | |
2752 | { | |
5b077d48 RR |
2753 | m_mainWin->InsertItem( info ); |
2754 | return 0; | |
e1e955e1 | 2755 | } |
c801d85f | 2756 | |
debe6624 | 2757 | long wxListCtrl::InsertItem( long index, const wxString &label ) |
c801d85f | 2758 | { |
51cc4dad RR |
2759 | wxListItem info; |
2760 | info.m_text = label; | |
2761 | info.m_mask = wxLIST_MASK_TEXT; | |
2762 | info.m_itemId = index; | |
2763 | return InsertItem( info ); | |
e1e955e1 | 2764 | } |
c801d85f | 2765 | |
debe6624 | 2766 | long wxListCtrl::InsertItem( long index, int imageIndex ) |
c801d85f | 2767 | { |
51cc4dad RR |
2768 | wxListItem info; |
2769 | info.m_mask = wxLIST_MASK_IMAGE; | |
2770 | info.m_image = imageIndex; | |
2771 | info.m_itemId = index; | |
2772 | return InsertItem( info ); | |
e1e955e1 | 2773 | } |
c801d85f | 2774 | |
debe6624 | 2775 | long wxListCtrl::InsertItem( long index, const wxString &label, int imageIndex ) |
c801d85f | 2776 | { |
51cc4dad RR |
2777 | wxListItem info; |
2778 | info.m_text = label; | |
2779 | info.m_image = imageIndex; | |
2780 | info.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE; | |
2781 | info.m_itemId = index; | |
2782 | return InsertItem( info ); | |
e1e955e1 | 2783 | } |
c801d85f | 2784 | |
debe6624 | 2785 | long wxListCtrl::InsertColumn( long col, wxListItem &item ) |
c801d85f | 2786 | { |
51cc4dad RR |
2787 | m_mainWin->InsertColumn( col, item ); |
2788 | return 0; | |
e1e955e1 | 2789 | } |
c801d85f | 2790 | |
debe6624 JS |
2791 | long wxListCtrl::InsertColumn( long col, const wxString &heading, |
2792 | int format, int width ) | |
c801d85f | 2793 | { |
51cc4dad RR |
2794 | wxListItem item; |
2795 | item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT; | |
2796 | item.m_text = heading; | |
2797 | if (width >= -2) | |
2798 | { | |
2799 | item.m_mask |= wxLIST_MASK_WIDTH; | |
2800 | item.m_width = width; | |
2801 | } | |
2802 | item.m_format = format; | |
c801d85f | 2803 | |
51cc4dad | 2804 | return InsertColumn( col, item ); |
e1e955e1 | 2805 | } |
c801d85f | 2806 | |
debe6624 | 2807 | bool wxListCtrl::ScrollList( int WXUNUSED(dx), int WXUNUSED(dy) ) |
c801d85f | 2808 | { |
51cc4dad | 2809 | return 0; |
e1e955e1 | 2810 | } |
c801d85f KB |
2811 | |
2812 | // Sort items. | |
2813 | // fn is a function which takes 3 long arguments: item1, item2, data. | |
2814 | // item1 is the long data associated with a first item (NOT the index). | |
2815 | // item2 is the long data associated with a second item (NOT the index). | |
2816 | // data is the same value as passed to SortItems. | |
2817 | // The return value is a negative number if the first item should precede the second | |
2818 | // item, a positive number of the second item should precede the first, | |
2819 | // or zero if the two items are equivalent. | |
2820 | // data is arbitrary data to be passed to the sort function. | |
2821 | ||
2822 | bool wxListCtrl::SortItems( wxListCtrlCompare fn, long data ) | |
2823 | { | |
51cc4dad RR |
2824 | m_mainWin->SortItems( fn, data ); |
2825 | return TRUE; | |
e1e955e1 | 2826 | } |
c801d85f | 2827 | |
e3e65dac | 2828 | void wxListCtrl::OnIdle( wxIdleEvent &WXUNUSED(event) ) |
53010e52 | 2829 | { |
51cc4dad | 2830 | if (!m_mainWin->m_dirty) return; |
53010e52 | 2831 | |
51cc4dad RR |
2832 | int cw = 0; |
2833 | int ch = 0; | |
2834 | GetClientSize( &cw, &ch ); | |
bd8289c1 | 2835 | |
51cc4dad RR |
2836 | int x = 0; |
2837 | int y = 0; | |
2838 | int w = 0; | |
2839 | int h = 0; | |
bd8289c1 | 2840 | |
f03fc89f | 2841 | if (HasFlag(wxLC_REPORT)) |
51cc4dad RR |
2842 | { |
2843 | m_headerWin->GetPosition( &x, &y ); | |
2844 | m_headerWin->GetSize( &w, &h ); | |
2845 | if ((x != 0) || (y != 0) || (w != cw) || (h != 23)) | |
2846 | m_headerWin->SetSize( 0, 0, cw, 23 ); | |
2847 | ||
2848 | m_mainWin->GetPosition( &x, &y ); | |
2849 | m_mainWin->GetSize( &w, &h ); | |
2850 | if ((x != 0) || (y != 24) || (w != cw) || (h != ch-24)) | |
2851 | m_mainWin->SetSize( 0, 24, cw, ch-24 ); | |
2852 | } | |
2853 | else | |
2854 | { | |
2855 | m_mainWin->GetPosition( &x, &y ); | |
2856 | m_mainWin->GetSize( &w, &h ); | |
2857 | if ((x != 0) || (y != 24) || (w != cw) || (h != ch)) | |
2858 | m_mainWin->SetSize( 0, 0, cw, ch ); | |
2859 | } | |
bd8289c1 | 2860 | |
51cc4dad RR |
2861 | m_mainWin->CalculatePositions(); |
2862 | m_mainWin->RealizeChanges(); | |
2863 | m_mainWin->m_dirty = FALSE; | |
2864 | m_mainWin->Refresh(); | |
e1e955e1 | 2865 | } |
53010e52 | 2866 | |
f03fc89f | 2867 | bool wxListCtrl::SetBackgroundColour( const wxColour &colour ) |
bd8289c1 | 2868 | { |
f03fc89f VZ |
2869 | if ( !wxWindow::SetBackgroundColour( colour ) ) |
2870 | return FALSE; | |
58dea4b0 | 2871 | |
51cc4dad RR |
2872 | if (m_mainWin) |
2873 | { | |
2874 | m_mainWin->SetBackgroundColour( colour ); | |
2875 | m_mainWin->m_dirty = TRUE; | |
2876 | } | |
2877 | ||
2878 | if (m_headerWin) | |
2879 | { | |
cfb50f14 | 2880 | // m_headerWin->SetBackgroundColour( colour ); |
51cc4dad | 2881 | } |
f03fc89f VZ |
2882 | |
2883 | return TRUE; | |
e4d06860 RR |
2884 | } |
2885 | ||
f03fc89f | 2886 | bool wxListCtrl::SetForegroundColour( const wxColour &colour ) |
bd8289c1 | 2887 | { |
f03fc89f VZ |
2888 | if ( !wxWindow::SetForegroundColour( colour ) ) |
2889 | return FALSE; | |
58dea4b0 | 2890 | |
51cc4dad RR |
2891 | if (m_mainWin) |
2892 | { | |
2893 | m_mainWin->SetForegroundColour( colour ); | |
2894 | m_mainWin->m_dirty = TRUE; | |
2895 | } | |
2896 | ||
2897 | if (m_headerWin) | |
2898 | { | |
2899 | m_headerWin->SetForegroundColour( colour ); | |
2900 | } | |
f03fc89f VZ |
2901 | |
2902 | return TRUE; | |
e4d06860 | 2903 | } |
bd8289c1 | 2904 | |
f03fc89f | 2905 | bool wxListCtrl::SetFont( const wxFont &font ) |
bd8289c1 | 2906 | { |
f03fc89f VZ |
2907 | if ( !wxWindow::SetFont( font ) ) |
2908 | return FALSE; | |
58dea4b0 | 2909 | |
51cc4dad RR |
2910 | if (m_mainWin) |
2911 | { | |
2912 | m_mainWin->SetFont( font ); | |
2913 | m_mainWin->m_dirty = TRUE; | |
2914 | } | |
2915 | ||
2916 | if (m_headerWin) | |
2917 | { | |
2918 | m_headerWin->SetFont( font ); | |
2919 | } | |
f03fc89f VZ |
2920 | |
2921 | return TRUE; | |
e4d06860 | 2922 | } |
c801d85f | 2923 |