]> git.saurik.com Git - wxWidgets.git/blame - samples/listctrl/listtest.cpp
More tests for streams.
[wxWidgets.git] / samples / listctrl / listtest.cpp
CommitLineData
457814b5
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: listctrl.cpp
3// Purpose: wxListCtrl sample
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation
14#pragma interface
15#endif
16
17// For compilers that support precompilation, includes "wx/wx.h".
18#include "wx/wxprec.h"
19
20#ifdef __BORLANDC__
21#pragma hdrstop
22#endif
23
24#ifndef WX_PRECOMP
25#include "wx/wx.h"
26#endif
27
907789a0
RR
28#ifndef __WXMSW__
29#include "mondrian.xpm"
30#endif
31
457814b5
JS
32#include "wx/listctrl.h"
33#include "listtest.h"
34
35BEGIN_EVENT_TABLE(MyFrame, wxFrame)
36 EVT_MENU(LIST_QUIT, MyFrame::OnQuit)
37 EVT_MENU(LIST_ABOUT, MyFrame::OnAbout)
38 EVT_MENU(LIST_LIST_VIEW, MyFrame::OnListView)
39 EVT_MENU(LIST_REPORT_VIEW, MyFrame::OnReportView)
40 EVT_MENU(LIST_ICON_VIEW, MyFrame::OnIconView)
41 EVT_MENU(LIST_ICON_TEXT_VIEW, MyFrame::OnIconTextView)
42 EVT_MENU(LIST_SMALL_ICON_VIEW, MyFrame::OnSmallIconView)
43 EVT_MENU(LIST_SMALL_ICON_TEXT_VIEW, MyFrame::OnSmallIconTextView)
c4771147 44 EVT_MENU(LIST_DESELECT_ALL, MyFrame::OnDeselectAll)
18244936 45 EVT_MENU(LIST_SELECT_ALL, MyFrame::OnSelectAll)
457814b5
JS
46END_EVENT_TABLE()
47
48BEGIN_EVENT_TABLE(MyListCtrl, wxListCtrl)
49 EVT_LIST_BEGIN_DRAG(LIST_CTRL, MyListCtrl::OnBeginDrag)
50 EVT_LIST_BEGIN_RDRAG(LIST_CTRL, MyListCtrl::OnBeginRDrag)
51 EVT_LIST_BEGIN_LABEL_EDIT(LIST_CTRL, MyListCtrl::OnBeginLabelEdit)
52 EVT_LIST_END_LABEL_EDIT(LIST_CTRL, MyListCtrl::OnEndLabelEdit)
53 EVT_LIST_DELETE_ITEM(LIST_CTRL, MyListCtrl::OnDeleteItem)
54 EVT_LIST_GET_INFO(LIST_CTRL, MyListCtrl::OnGetInfo)
55 EVT_LIST_SET_INFO(LIST_CTRL, MyListCtrl::OnSetInfo)
56 EVT_LIST_ITEM_SELECTED(LIST_CTRL, MyListCtrl::OnSelected)
57 EVT_LIST_ITEM_DESELECTED(LIST_CTRL, MyListCtrl::OnDeselected)
e487524e 58 EVT_LIST_KEY_DOWN(LIST_CTRL, MyListCtrl::OnListKeyDown)
435fe83e 59 EVT_LIST_ITEM_ACTIVATED(LIST_CTRL, MyListCtrl::OnActivated)
457814b5
JS
60END_EVENT_TABLE()
61
62IMPLEMENT_APP(MyApp)
63
64// `Main program' equivalent, creating windows and returning main app frame
65bool MyApp::OnInit(void)
66{
67 // Create the main frame window
b00c5607 68 MyFrame *frame = new MyFrame((wxFrame *) NULL, "wxListCtrl Test", 50, 50, 450, 340);
457814b5
JS
69
70 // This reduces flicker effects - even better would be to define OnEraseBackground
71 // to do nothing. When the list control's scrollbars are show or hidden, the
72 // frame is sent a background erase event.
907789a0 73 frame->SetBackgroundColour( *wxWHITE );
457814b5
JS
74
75 // Give it an icon
907789a0 76 frame->SetIcon( wxICON(mondrian) );
457814b5
JS
77
78 // Make an image list containing large icons
79 m_imageListNormal = new wxImageList(32, 32, TRUE);
80 m_imageListSmall = new wxImageList(16, 16, TRUE);
81
b0d77f43
RR
82#ifdef __WXMSW__
83 m_imageListNormal->Add( wxIcon("icon1", wxBITMAP_TYPE_ICO_RESOURCE) );
84 m_imageListNormal->Add( wxIcon("icon2", wxBITMAP_TYPE_ICO_RESOURCE) );
85 m_imageListNormal->Add( wxIcon("icon3", wxBITMAP_TYPE_ICO_RESOURCE) );
86 m_imageListNormal->Add( wxIcon("icon4", wxBITMAP_TYPE_ICO_RESOURCE) );
87 m_imageListNormal->Add( wxIcon("icon5", wxBITMAP_TYPE_ICO_RESOURCE) );
88 m_imageListNormal->Add( wxIcon("icon6", wxBITMAP_TYPE_ICO_RESOURCE) );
89 m_imageListNormal->Add( wxIcon("icon7", wxBITMAP_TYPE_ICO_RESOURCE) );
90 m_imageListNormal->Add( wxIcon("icon8", wxBITMAP_TYPE_ICO_RESOURCE) );
91 m_imageListNormal->Add( wxIcon("icon9", wxBITMAP_TYPE_ICO_RESOURCE) );
92
93 m_imageListSmall->Add( wxIcon("iconsmall", wxBITMAP_TYPE_ICO_RESOURCE) );
94
95#else
96
97 #include "bitmaps/toolbrai.xpm"
98 m_imageListNormal->Add( wxIcon( toolbrai_xpm ) );
99 #include "bitmaps/toolchar.xpm"
100 m_imageListNormal->Add( wxIcon( toolchar_xpm ) );
101 #include "bitmaps/tooldata.xpm"
102 m_imageListNormal->Add( wxIcon( tooldata_xpm ) );
103 #include "bitmaps/toolnote.xpm"
104 m_imageListNormal->Add( wxIcon( toolnote_xpm ) );
105 #include "bitmaps/tooltodo.xpm"
106 m_imageListNormal->Add( wxIcon( tooltodo_xpm ) );
107 #include "bitmaps/toolchec.xpm"
108 m_imageListNormal->Add( wxIcon( toolchec_xpm ) );
109 #include "bitmaps/toolgame.xpm"
110 m_imageListNormal->Add( wxIcon( toolgame_xpm ) );
111 #include "bitmaps/tooltime.xpm"
112 m_imageListNormal->Add( wxIcon( tooltime_xpm ) );
113 #include "bitmaps/toolword.xpm"
114 m_imageListNormal->Add( wxIcon( toolword_xpm ) );
115
116 #include "bitmaps/small1.xpm"
117 m_imageListSmall->Add( wxIcon( small1_xpm) );
118
119#endif
457814b5
JS
120
121 // Make a menubar
122 wxMenu *file_menu = new wxMenu;
123
124 file_menu->Append(LIST_LIST_VIEW, "&List view");
125 file_menu->Append(LIST_REPORT_VIEW, "&Report view");
126 file_menu->Append(LIST_ICON_VIEW, "&Icon view");
127 file_menu->Append(LIST_ICON_TEXT_VIEW, "Icon view with &text");
128 file_menu->Append(LIST_SMALL_ICON_VIEW, "&Small icon view");
129 file_menu->Append(LIST_SMALL_ICON_TEXT_VIEW, "Small icon &view with text");
c4771147
KB
130 file_menu->Append(LIST_DESELECT_ALL, "&Deselect All");
131 file_menu->Append(LIST_SELECT_ALL, "S&elect All");
457814b5
JS
132 file_menu->AppendSeparator();
133 file_menu->Append(LIST_ABOUT, "&About");
134 file_menu->Append(LIST_QUIT, "E&xit");
135 wxMenuBar *menu_bar = new wxMenuBar;
136 menu_bar->Append(file_menu, "&File");
137 frame->SetMenuBar(menu_bar);
138
139 // Make a panel with a message
140 frame->m_listCtrl = new MyListCtrl(frame, LIST_CTRL, wxPoint(0, 0), wxSize(400, 200),
141 wxLC_LIST|wxSUNKEN_BORDER);
142// wxLC_LIST|wxLC_USER_TEXT|wxSUNKEN_BORDER); // wxLC_USER_TEXT requires app to supply all text on demand
143 frame->m_logWindow = new wxTextCtrl(frame, -1, "", wxPoint(0, 0), wxSize(400, 200), wxTE_MULTILINE|wxSUNKEN_BORDER);
144
145 wxLayoutConstraints *c = new wxLayoutConstraints;
146 c->top.SameAs (frame, wxTop);
147 c->left.SameAs (frame, wxLeft);
148 c->right.SameAs (frame, wxRight);
149 c->height.PercentOf (frame, wxHeight, 66);
150 frame->m_listCtrl->SetConstraints(c);
151
152 c = new wxLayoutConstraints;
153 c->top.Below (frame->m_listCtrl);
154 c->left.SameAs (frame, wxLeft);
155 c->right.SameAs (frame, wxRight);
156 c->bottom.SameAs (frame, wxBottom);
157 frame->m_logWindow->SetConstraints(c);
158 frame->SetAutoLayout(TRUE);
159
160 for ( int i=0; i < 30; i++)
161 {
b00c5607
RR
162 wxChar buf[20];
163 wxSprintf(buf, _T("Item %d"), i);
cb43b372 164 frame->m_listCtrl->InsertItem(i, buf);
457814b5
JS
165 }
166
167 frame->CreateStatusBar(3);
168 frame->SetStatusText("", 0);
169
170 // Show the frame
171 frame->Show(TRUE);
172
173 SetTopWindow(frame);
174
175 return TRUE;
176}
177
178// My frame constructor
179MyFrame::MyFrame(wxFrame *frame, char *title, int x, int y, int w, int h):
180 wxFrame(frame, -1, title, wxPoint(x, y), wxSize(w, h))
181{
c67daf87
UR
182 m_listCtrl = (MyListCtrl *) NULL;
183 m_logWindow = (wxTextCtrl *) NULL;
457814b5
JS
184}
185
186MyFrame::~MyFrame(void)
187{
188 delete wxGetApp().m_imageListNormal;
189 delete wxGetApp().m_imageListSmall;
190}
191
b0d77f43 192void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
457814b5
JS
193{
194 Close(TRUE);
195}
196
b0d77f43 197void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
457814b5
JS
198{
199 wxMessageDialog dialog(this, "List test sample\nJulian Smart (c) 1997",
200 "About list test", wxOK|wxCANCEL);
201
202 dialog.ShowModal();
203}
204
c4771147
KB
205void MyFrame::OnDeselectAll(wxCommandEvent& WXUNUSED(event))
206{
207 int n = m_listCtrl->GetItemCount();
0180dad6 208 for (int i = 0; i < n; i++)
c4771147
KB
209 m_listCtrl->SetItemState(i,0,wxLIST_STATE_SELECTED);
210}
211
212void MyFrame::OnSelectAll(wxCommandEvent& WXUNUSED(event))
213{
214 int n = m_listCtrl->GetItemCount();
0180dad6 215 for (int i = 0; i < n; i++)
c4771147
KB
216 m_listCtrl->SetItemState(i,wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
217}
218
b0d77f43 219void MyFrame::OnListView(wxCommandEvent& WXUNUSED(event))
457814b5 220{
0180dad6
RR
221 m_listCtrl->DeleteAllItems();
222 m_logWindow->Clear();
223 m_listCtrl->SetSingleStyle(wxLC_LIST);
c67daf87
UR
224 m_listCtrl->SetImageList((wxImageList *) NULL, wxIMAGE_LIST_NORMAL);
225 m_listCtrl->SetImageList((wxImageList *) NULL, wxIMAGE_LIST_SMALL);
457814b5 226
0180dad6
RR
227 for ( int i=0; i < 30; i++)
228 {
229 wxChar buf[20];
230 wxSprintf(buf, _T("Item %d"), i);
231 m_listCtrl->InsertItem(i, buf);
232 }
457814b5
JS
233}
234
b0d77f43 235void MyFrame::OnReportView(wxCommandEvent& WXUNUSED(event))
457814b5 236{
0180dad6
RR
237 m_listCtrl->DeleteAllItems();
238 m_logWindow->Clear();
239
240 m_listCtrl->SetSingleStyle(wxLC_REPORT);
c67daf87 241 m_listCtrl->SetImageList((wxImageList *) NULL, wxIMAGE_LIST_NORMAL);
457814b5
JS
242 m_listCtrl->SetImageList(wxGetApp().m_imageListSmall, wxIMAGE_LIST_SMALL);
243
0180dad6
RR
244 m_listCtrl->InsertColumn(0, "Column 1"); // , wxLIST_FORMAT_LEFT, 140);
245 m_listCtrl->InsertColumn(1, "Column 2"); // , wxLIST_FORMAT_LEFT, 140);
246 m_listCtrl->InsertColumn(2, "One More Column (2)"); // , wxLIST_FORMAT_LEFT, 140);
247
248 for ( int i=0; i < 30; i++)
249 {
250 wxChar buf[50];
251 wxSprintf(buf, _T("This is item %d"), i);
252 long tmp = m_listCtrl->InsertItem(i, buf, 0);
253
254 wxSprintf(buf, _T("Col 1, item %d"), i);
255 tmp = m_listCtrl->SetItem(i, 1, buf);
256
257 wxSprintf(buf, _T("Item %d in column 2"), i);
258 tmp = m_listCtrl->SetItem(i, 2, buf);
259 }
260
261 m_listCtrl->SetColumnWidth( 0, wxLIST_AUTOSIZE );
262 m_listCtrl->SetColumnWidth( 1, wxLIST_AUTOSIZE );
263 m_listCtrl->SetColumnWidth( 2, wxLIST_AUTOSIZE );
457814b5
JS
264}
265
b0d77f43 266void MyFrame::OnIconView(wxCommandEvent& WXUNUSED(event))
457814b5 267{
457814b5 268 m_listCtrl->DeleteAllItems();
623e1cb2 269 m_logWindow->Clear();
457814b5
JS
270 m_listCtrl->SetSingleStyle(wxLC_ICON);
271 m_listCtrl->SetImageList(wxGetApp().m_imageListNormal, wxIMAGE_LIST_NORMAL);
272 m_listCtrl->SetImageList(wxGetApp().m_imageListSmall, wxIMAGE_LIST_SMALL);
273
274 for ( int i=0; i < 9; i++)
275 {
cb43b372 276 m_listCtrl->InsertItem(i, i);
457814b5
JS
277 }
278}
279
b0d77f43 280void MyFrame::OnIconTextView(wxCommandEvent& WXUNUSED(event))
457814b5 281{
457814b5 282 m_listCtrl->DeleteAllItems();
623e1cb2 283 m_logWindow->Clear();
457814b5
JS
284 m_listCtrl->SetSingleStyle(wxLC_ICON);
285 m_listCtrl->SetImageList(wxGetApp().m_imageListNormal, wxIMAGE_LIST_NORMAL);
286 m_listCtrl->SetImageList(wxGetApp().m_imageListSmall, wxIMAGE_LIST_SMALL);
287
288 for ( int i=0; i < 9; i++)
289 {
b00c5607
RR
290 wxChar buf[20];
291 wxSprintf(buf, _T("Label %d"), i);
cb43b372 292 m_listCtrl->InsertItem(i, buf, i);
457814b5
JS
293 }
294}
295
b0d77f43 296void MyFrame::OnSmallIconView(wxCommandEvent& WXUNUSED(event))
457814b5 297{
457814b5 298 m_listCtrl->DeleteAllItems();
623e1cb2 299 m_logWindow->Clear();
457814b5
JS
300 m_listCtrl->SetSingleStyle(wxLC_SMALL_ICON);
301 m_listCtrl->SetImageList(wxGetApp().m_imageListNormal, wxIMAGE_LIST_NORMAL);
302 m_listCtrl->SetImageList(wxGetApp().m_imageListSmall, wxIMAGE_LIST_SMALL);
303
304 for ( int i=0; i < 9; i++)
305 {
cb43b372 306 m_listCtrl->InsertItem(i, 0);
457814b5
JS
307 }
308}
309
b0d77f43 310void MyFrame::OnSmallIconTextView(wxCommandEvent& WXUNUSED(event))
457814b5 311{
457814b5 312 m_listCtrl->DeleteAllItems();
623e1cb2 313 m_logWindow->Clear();
457814b5
JS
314 m_listCtrl->SetSingleStyle(wxLC_SMALL_ICON);
315 m_listCtrl->SetImageList(wxGetApp().m_imageListNormal, wxIMAGE_LIST_NORMAL);
316 m_listCtrl->SetImageList(wxGetApp().m_imageListSmall, wxIMAGE_LIST_SMALL);
317
318 for ( int i=0; i < 9; i++)
319 {
cb43b372 320 m_listCtrl->InsertItem(i, "Label", 0);
457814b5
JS
321 }
322}
323
324// MyListCtrl
325
cb43b372 326void MyListCtrl::OnBeginDrag(wxListEvent& WXUNUSED(event))
457814b5
JS
327{
328 if ( !wxGetApp().GetTopWindow() )
329 return;
330
331 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
332 if ( !text )
333 return;
334
a367b9b3 335 text->WriteText("OnBeginDrag\n");
457814b5
JS
336}
337
cb43b372 338void MyListCtrl::OnBeginRDrag(wxListEvent& WXUNUSED(event))
457814b5
JS
339{
340 if ( !wxGetApp().GetTopWindow() )
341 return;
342
343 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
344 if ( !text )
345 return;
a367b9b3 346 text->WriteText("OnBeginRDrag\n");
457814b5
JS
347}
348
cb43b372 349void MyListCtrl::OnBeginLabelEdit(wxListEvent& WXUNUSED(event))
457814b5
JS
350{
351 if ( !wxGetApp().GetTopWindow() )
352 return;
353
354 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
355 if ( !text )
356 return;
357
a367b9b3 358 text->WriteText("OnBeginLabelEdit\n");
457814b5
JS
359}
360
cb43b372 361void MyListCtrl::OnEndLabelEdit(wxListEvent& WXUNUSED(event))
457814b5
JS
362{
363 if ( !wxGetApp().GetTopWindow() )
364 return;
365
366 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
367 if ( !text )
368 return;
369
a367b9b3 370 text->WriteText("OnEndLabelEdit\n");
457814b5
JS
371}
372
cb43b372 373void MyListCtrl::OnDeleteItem(wxListEvent& WXUNUSED(event))
457814b5
JS
374{
375 if ( !wxGetApp().GetTopWindow() )
376 return;
377
378 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
379 if ( !text )
380 return;
381
a367b9b3 382 text->WriteText("OnDeleteItem\n");
457814b5
JS
383}
384
e487524e 385void MyListCtrl::OnGetInfo(wxListEvent& /*event*/)
457814b5
JS
386{
387 if ( !wxGetApp().GetTopWindow() )
388 return;
389
390 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
391 if ( !text )
392 return;
393
a367b9b3
JS
394 text->WriteText("OnGetInfo\n");
395
396/*
457814b5
JS
397 ostream str(text);
398
399 str << "OnGetInfo (" << event.m_item.m_itemId << ", " << event.m_item.m_col << ")";
400 if ( event.m_item.m_mask & wxLIST_MASK_STATE )
401 str << " wxLIST_MASK_STATE";
402 if ( event.m_item.m_mask & wxLIST_MASK_TEXT )
403 str << " wxLIST_MASK_TEXT";
404 if ( event.m_item.m_mask & wxLIST_MASK_IMAGE )
405 str << " wxLIST_MASK_IMAGE";
406 if ( event.m_item.m_mask & wxLIST_MASK_DATA )
407 str << " wxLIST_MASK_DATA";
408 if ( event.m_item.m_mask & wxLIST_SET_ITEM )
409 str << " wxLIST_SET_ITEM";
410 if ( event.m_item.m_mask & wxLIST_MASK_WIDTH )
411 str << " wxLIST_MASK_WIDTH";
412 if ( event.m_item.m_mask & wxLIST_MASK_FORMAT )
413 str << " wxLIST_MASK_WIDTH";
414
415 if ( event.m_item.m_mask & wxLIST_MASK_TEXT )
416 {
417 event.m_item.m_text = "My callback text";
418 }
419 str << "\n";
420 str.flush();
a367b9b3 421*/
457814b5
JS
422}
423
cb43b372 424void MyListCtrl::OnSetInfo(wxListEvent& WXUNUSED(event))
457814b5
JS
425{
426 if ( !wxGetApp().GetTopWindow() )
427 return;
428
429 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
430 if ( !text )
431 return;
432
a367b9b3 433 text->WriteText("OnSetInfo\n");
457814b5
JS
434}
435
cb43b372 436void MyListCtrl::OnSelected(wxListEvent& WXUNUSED(event))
457814b5
JS
437{
438 if ( !wxGetApp().GetTopWindow() )
439 return;
440
441 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
442 if ( !text )
443 return;
444
a367b9b3 445 text->WriteText("OnSelected\n");
457814b5
JS
446}
447
cb43b372 448void MyListCtrl::OnDeselected(wxListEvent& WXUNUSED(event))
457814b5
JS
449{
450 if ( !wxGetApp().GetTopWindow() )
451 return;
452
453 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
454 if ( !text )
455 return;
456
a367b9b3 457 text->WriteText("OnDeselected\n");
457814b5
JS
458}
459
435fe83e
RR
460void MyListCtrl::OnActivated(wxListEvent& WXUNUSED(event))
461{
462 if ( !wxGetApp().GetTopWindow() )
463 return;
464
465 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
466 if ( !text )
467 return;
468
469 text->WriteText("OnActivated\n");
470}
471
8e1d4f96 472void MyListCtrl::OnListKeyDown(wxListEvent& event)
457814b5
JS
473{
474 if ( !wxGetApp().GetTopWindow() )
475 return;
476
477 wxTextCtrl *text = ((MyFrame *)wxGetApp().GetTopWindow())->m_logWindow;
478 if ( !text )
479 return;
480
e487524e 481 text->WriteText("OnListKeyDown\n");
457814b5
JS
482}
483
435fe83e 484