]>
Commit | Line | Data |
---|---|---|
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$ | |
6aa89a22 | 8 | // Copyright: (c) Julian Smart |
5ea47806 | 9 | // Licence: wxWindows license |
457814b5 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
457814b5 JS |
12 | // For compilers that support precompilation, includes "wx/wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
19 | #ifndef WX_PRECOMP | |
20 | #include "wx/wx.h" | |
21 | #endif | |
22 | ||
5f4d35b8 | 23 | #if !defined(__WXMSW__) && !defined(__WXPM__) |
c41ea66a | 24 | #include "mondrian.xpm" |
5f4d35b8 | 25 | #endif |
c41ea66a | 26 | |
5f4d35b8 | 27 | #ifndef __WXMSW__ |
c41ea66a VZ |
28 | #include "bitmaps/toolbrai.xpm" |
29 | #include "bitmaps/toolchar.xpm" | |
30 | #include "bitmaps/tooldata.xpm" | |
31 | #include "bitmaps/toolnote.xpm" | |
32 | #include "bitmaps/tooltodo.xpm" | |
33 | #include "bitmaps/toolchec.xpm" | |
34 | #include "bitmaps/toolgame.xpm" | |
35 | #include "bitmaps/tooltime.xpm" | |
36 | #include "bitmaps/toolword.xpm" | |
37 | #include "bitmaps/small1.xpm" | |
907789a0 RR |
38 | #endif |
39 | ||
2e8a1588 | 40 | #include "wx/imaglist.h" |
457814b5 | 41 | #include "wx/listctrl.h" |
81278df2 | 42 | #include "wx/timer.h" // for wxStopWatch |
11f26ea0 | 43 | #include "wx/colordlg.h" // for wxGetColourFromUser |
107ff668 | 44 | #include "wx/settings.h" |
2458daa7 | 45 | #include "wx/sysopt.h" |
beb9e8f2 | 46 | #include "wx/numdlg.h" |
11f26ea0 | 47 | |
457814b5 JS |
48 | #include "listtest.h" |
49 | ||
a0d0799b FM |
50 | |
51 | // ---------------------------------------------------------------------------- | |
52 | // Constants and globals | |
53 | // ---------------------------------------------------------------------------- | |
54 | ||
b0401bea VZ |
55 | const wxChar *SMALL_VIRTUAL_VIEW_ITEMS[][2] = |
56 | { | |
9a83f860 VZ |
57 | { wxT("Cat"), wxT("meow") }, |
58 | { wxT("Cow"), wxT("moo") }, | |
59 | { wxT("Crow"), wxT("caw") }, | |
60 | { wxT("Dog"), wxT("woof") }, | |
61 | { wxT("Duck"), wxT("quack") }, | |
62 | { wxT("Mouse"), wxT("squeak") }, | |
63 | { wxT("Owl"), wxT("hoo") }, | |
64 | { wxT("Pig"), wxT("oink") }, | |
65 | { wxT("Pigeon"), wxT("coo") }, | |
66 | { wxT("Sheep"), wxT("baaah") }, | |
b0401bea VZ |
67 | }; |
68 | ||
a0d0799b FM |
69 | // number of items in icon/small icon view |
70 | static const int NUM_ICONS = 9; | |
71 | ||
6e2f3084 | 72 | int wxCALLBACK |
b18e2046 | 73 | MyCompareFunction(long item1, long item2, wxIntPtr WXUNUSED(sortData)) |
a0d0799b FM |
74 | { |
75 | // inverse the order | |
76 | if (item1 < item2) | |
77 | return -1; | |
78 | if (item1 > item2) | |
79 | return 1; | |
80 | ||
81 | return 0; | |
82 | } | |
83 | ||
84 | ||
85 | // ---------------------------------------------------------------------------- | |
86 | // MyApp | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
89 | IMPLEMENT_APP(MyApp) | |
90 | ||
91 | // `Main program' equivalent, creating windows and returning main app frame | |
92 | bool MyApp::OnInit() | |
93 | { | |
9e27ff75 FM |
94 | if ( !wxApp::OnInit() ) |
95 | return false; | |
a0d0799b | 96 | |
9e27ff75 FM |
97 | // Create the main frame window |
98 | MyFrame *frame = new MyFrame(wxT("wxListCtrl Test")); | |
a0d0799b | 99 | |
9e27ff75 FM |
100 | // Show the frame |
101 | frame->Show(true); | |
a0d0799b | 102 | |
9e27ff75 | 103 | SetTopWindow(frame); |
a0d0799b | 104 | |
9e27ff75 | 105 | return true; |
a0d0799b FM |
106 | } |
107 | ||
108 | ||
109 | ||
110 | // ---------------------------------------------------------------------------- | |
111 | // MyFrame | |
112 | // ---------------------------------------------------------------------------- | |
b0401bea | 113 | |
457814b5 | 114 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
98ec9dbe VZ |
115 | EVT_SIZE(MyFrame::OnSize) |
116 | ||
5ea47806 VZ |
117 | EVT_MENU(LIST_QUIT, MyFrame::OnQuit) |
118 | EVT_MENU(LIST_ABOUT, MyFrame::OnAbout) | |
119 | EVT_MENU(LIST_LIST_VIEW, MyFrame::OnListView) | |
120 | EVT_MENU(LIST_REPORT_VIEW, MyFrame::OnReportView) | |
121 | EVT_MENU(LIST_ICON_VIEW, MyFrame::OnIconView) | |
122 | EVT_MENU(LIST_ICON_TEXT_VIEW, MyFrame::OnIconTextView) | |
123 | EVT_MENU(LIST_SMALL_ICON_VIEW, MyFrame::OnSmallIconView) | |
124 | EVT_MENU(LIST_SMALL_ICON_TEXT_VIEW, MyFrame::OnSmallIconTextView) | |
98ec9dbe | 125 | EVT_MENU(LIST_VIRTUAL_VIEW, MyFrame::OnVirtualView) |
b0401bea | 126 | EVT_MENU(LIST_SMALL_VIRTUAL_VIEW, MyFrame::OnSmallVirtualView) |
98ec9dbe | 127 | |
beb9e8f2 VZ |
128 | EVT_MENU(LIST_SET_ITEMS_COUNT, MyFrame::OnSetItemsCount) |
129 | ||
6ef2b230 | 130 | EVT_MENU(LIST_GOTO, MyFrame::OnGoTo) |
88b792af | 131 | EVT_MENU(LIST_FOCUS_LAST, MyFrame::OnFocusLast) |
58b3bdc9 | 132 | EVT_MENU(LIST_TOGGLE_FIRST, MyFrame::OnToggleFirstSel) |
5ea47806 VZ |
133 | EVT_MENU(LIST_DESELECT_ALL, MyFrame::OnDeselectAll) |
134 | EVT_MENU(LIST_SELECT_ALL, MyFrame::OnSelectAll) | |
bec0a261 | 135 | EVT_MENU(LIST_DELETE, MyFrame::OnDelete) |
cf1dfa6b | 136 | EVT_MENU(LIST_ADD, MyFrame::OnAdd) |
efe23391 | 137 | EVT_MENU(LIST_EDIT, MyFrame::OnEdit) |
5ea47806 | 138 | EVT_MENU(LIST_DELETE_ALL, MyFrame::OnDeleteAll) |
fa5f6926 | 139 | EVT_MENU(LIST_SORT, MyFrame::OnSort) |
11f26ea0 VZ |
140 | EVT_MENU(LIST_SET_FG_COL, MyFrame::OnSetFgColour) |
141 | EVT_MENU(LIST_SET_BG_COL, MyFrame::OnSetBgColour) | |
7b848b0d | 142 | EVT_MENU(LIST_TOGGLE_MULTI_SEL, MyFrame::OnToggleMultiSel) |
f6bcfd97 | 143 | EVT_MENU(LIST_SHOW_COL_INFO, MyFrame::OnShowColInfo) |
b54e41c5 | 144 | EVT_MENU(LIST_SHOW_SEL_INFO, MyFrame::OnShowSelInfo) |
929b7901 | 145 | EVT_MENU(LIST_SHOW_VIEW_RECT, MyFrame::OnShowViewRect) |
80cc5fc7 VZ |
146 | #ifdef wxHAS_LISTCTRL_COLUMN_ORDER |
147 | EVT_MENU(LIST_SET_COL_ORDER, MyFrame::OnSetColOrder) | |
148 | EVT_MENU(LIST_GET_COL_ORDER, MyFrame::OnGetColOrder) | |
149 | #endif // wxHAS_LISTCTRL_COLUMN_ORDER | |
c5c528fc VZ |
150 | EVT_MENU(LIST_FREEZE, MyFrame::OnFreeze) |
151 | EVT_MENU(LIST_THAW, MyFrame::OnThaw) | |
494ab5de | 152 | EVT_MENU(LIST_TOGGLE_LINES, MyFrame::OnToggleLines) |
8a3f03ff | 153 | #ifdef __WXOSX__ |
2458daa7 | 154 | EVT_MENU(LIST_MAC_USE_GENERIC, MyFrame::OnToggleMacUseGeneric) |
8a3f03ff | 155 | #endif // __WXOSX__ |
beb9e8f2 | 156 | EVT_MENU(LIST_FIND, MyFrame::OnFind) |
98ec9dbe | 157 | |
f6bcfd97 | 158 | EVT_UPDATE_UI(LIST_SHOW_COL_INFO, MyFrame::OnUpdateShowColInfo) |
5f4d35b8 | 159 | EVT_UPDATE_UI(LIST_TOGGLE_MULTI_SEL, MyFrame::OnUpdateToggleMultiSel) |
457814b5 JS |
160 | END_EVENT_TABLE() |
161 | ||
457814b5 | 162 | // My frame constructor |
107ff668 | 163 | MyFrame::MyFrame(const wxChar *title) |
9e27ff75 | 164 | : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(600, 500)) |
457814b5 | 165 | { |
b0401bea VZ |
166 | m_listCtrl = NULL; |
167 | m_logWindow = NULL; | |
168 | m_smallVirtual = false; | |
beb9e8f2 | 169 | m_numListItems = 10; |
c41ea66a VZ |
170 | |
171 | // Give it an icon | |
172 | SetIcon( wxICON(mondrian) ); | |
173 | ||
174 | // Make an image list containing large icons | |
1550e402 WS |
175 | m_imageListNormal = new wxImageList(32, 32, true); |
176 | m_imageListSmall = new wxImageList(16, 16, true); | |
c41ea66a VZ |
177 | |
178 | #ifdef __WXMSW__ | |
9a83f860 VZ |
179 | m_imageListNormal->Add( wxIcon(wxT("icon1"), wxBITMAP_TYPE_ICO_RESOURCE) ); |
180 | m_imageListNormal->Add( wxIcon(wxT("icon2"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
181 | m_imageListNormal->Add( wxIcon(wxT("icon3"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
182 | m_imageListNormal->Add( wxIcon(wxT("icon4"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
183 | m_imageListNormal->Add( wxIcon(wxT("icon5"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
184 | m_imageListNormal->Add( wxIcon(wxT("icon6"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
185 | m_imageListNormal->Add( wxIcon(wxT("icon7"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
186 | m_imageListNormal->Add( wxIcon(wxT("icon8"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
187 | m_imageListNormal->Add( wxIcon(wxT("icon9"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
188 | ||
189 | m_imageListSmall->Add( wxIcon(wxT("iconsmall"), wxBITMAP_TYPE_ICO_RESOURCE) ); | |
c41ea66a VZ |
190 | |
191 | #else | |
192 | m_imageListNormal->Add( wxIcon( toolbrai_xpm ) ); | |
193 | m_imageListNormal->Add( wxIcon( toolchar_xpm ) ); | |
194 | m_imageListNormal->Add( wxIcon( tooldata_xpm ) ); | |
195 | m_imageListNormal->Add( wxIcon( toolnote_xpm ) ); | |
196 | m_imageListNormal->Add( wxIcon( tooltodo_xpm ) ); | |
197 | m_imageListNormal->Add( wxIcon( toolchec_xpm ) ); | |
198 | m_imageListNormal->Add( wxIcon( toolgame_xpm ) ); | |
199 | m_imageListNormal->Add( wxIcon( tooltime_xpm ) ); | |
200 | m_imageListNormal->Add( wxIcon( toolword_xpm ) ); | |
201 | ||
202 | m_imageListSmall->Add( wxIcon( small1_xpm) ); | |
203 | #endif | |
204 | ||
205 | // Make a menubar | |
206 | wxMenu *menuFile = new wxMenu; | |
9a83f860 | 207 | menuFile->Append(LIST_ABOUT, wxT("&About")); |
c41ea66a | 208 | menuFile->AppendSeparator(); |
9a83f860 | 209 | menuFile->Append(LIST_QUIT, wxT("E&xit\tAlt-X")); |
c41ea66a VZ |
210 | |
211 | wxMenu *menuView = new wxMenu; | |
9a83f860 VZ |
212 | menuView->Append(LIST_LIST_VIEW, wxT("&List view\tF1")); |
213 | menuView->Append(LIST_REPORT_VIEW, wxT("&Report view\tF2")); | |
214 | menuView->Append(LIST_ICON_VIEW, wxT("&Icon view\tF3")); | |
215 | menuView->Append(LIST_ICON_TEXT_VIEW, wxT("Icon view with &text\tF4")); | |
216 | menuView->Append(LIST_SMALL_ICON_VIEW, wxT("&Small icon view\tF5")); | |
217 | menuView->Append(LIST_SMALL_ICON_TEXT_VIEW, wxT("Small icon &view with text\tF6")); | |
218 | menuView->Append(LIST_VIRTUAL_VIEW, wxT("&Virtual view\tF7")); | |
219 | menuView->Append(LIST_SMALL_VIRTUAL_VIEW, wxT("Small virtual vie&w\tF8")); | |
beb9e8f2 VZ |
220 | menuView->AppendSeparator(); |
221 | menuView->Append(LIST_SET_ITEMS_COUNT, "Set &number of items"); | |
222 | #ifdef __WXOSX__ | |
223 | menuView->AppendSeparator(); | |
9a83f860 | 224 | menuView->AppendCheckItem(LIST_MAC_USE_GENERIC, wxT("Mac: Use Generic Control")); |
2458daa7 | 225 | #endif |
c41ea66a VZ |
226 | |
227 | wxMenu *menuList = new wxMenu; | |
9a83f860 VZ |
228 | menuList->Append(LIST_GOTO, wxT("&Go to item #3\tCtrl-3")); |
229 | menuList->Append(LIST_FOCUS_LAST, wxT("&Make last item current\tCtrl-L")); | |
230 | menuList->Append(LIST_TOGGLE_FIRST, wxT("To&ggle first item\tCtrl-G")); | |
231 | menuList->Append(LIST_DESELECT_ALL, wxT("&Deselect All\tCtrl-D")); | |
232 | menuList->Append(LIST_SELECT_ALL, wxT("S&elect All\tCtrl-A")); | |
b54e41c5 | 233 | menuList->AppendSeparator(); |
9a83f860 VZ |
234 | menuList->Append(LIST_SHOW_COL_INFO, wxT("Show &column info\tCtrl-C")); |
235 | menuList->Append(LIST_SHOW_SEL_INFO, wxT("Show &selected items\tCtrl-S")); | |
236 | menuList->Append(LIST_SHOW_VIEW_RECT, wxT("Show &view rect")); | |
80cc5fc7 | 237 | #ifdef wxHAS_LISTCTRL_COLUMN_ORDER |
9a83f860 VZ |
238 | menuList->Append(LIST_SET_COL_ORDER, wxT("Se&t columns order\tShift-Ctrl-O")); |
239 | menuList->Append(LIST_GET_COL_ORDER, wxT("Sho&w columns order\tCtrl-O")); | |
80cc5fc7 | 240 | #endif // wxHAS_LISTCTRL_COLUMN_ORDER |
c41ea66a | 241 | menuList->AppendSeparator(); |
9a83f860 | 242 | menuList->Append(LIST_SORT, wxT("Sor&t\tCtrl-T")); |
beb9e8f2 | 243 | menuList->Append(LIST_FIND, "Test Find() performance"); |
c41ea66a | 244 | menuList->AppendSeparator(); |
9a83f860 VZ |
245 | menuList->Append(LIST_ADD, wxT("&Append an item\tCtrl-P")); |
246 | menuList->Append(LIST_EDIT, wxT("&Edit the item\tCtrl-E")); | |
247 | menuList->Append(LIST_DELETE, wxT("&Delete first item\tCtrl-X")); | |
248 | menuList->Append(LIST_DELETE_ALL, wxT("Delete &all items")); | |
c41ea66a | 249 | menuList->AppendSeparator(); |
9a83f860 VZ |
250 | menuList->Append(LIST_FREEZE, wxT("Free&ze\tCtrl-Z")); |
251 | menuList->Append(LIST_THAW, wxT("Tha&w\tCtrl-W")); | |
c5c528fc | 252 | menuList->AppendSeparator(); |
9a83f860 VZ |
253 | menuList->AppendCheckItem(LIST_TOGGLE_LINES, wxT("Toggle &lines\tCtrl-I")); |
254 | menuList->Append(LIST_TOGGLE_MULTI_SEL, wxT("&Multiple selection\tCtrl-M"), | |
255 | wxT("Toggle multiple selection"), true); | |
c41ea66a VZ |
256 | |
257 | wxMenu *menuCol = new wxMenu; | |
9a83f860 VZ |
258 | menuCol->Append(LIST_SET_FG_COL, wxT("&Foreground colour...")); |
259 | menuCol->Append(LIST_SET_BG_COL, wxT("&Background colour...")); | |
c41ea66a VZ |
260 | |
261 | wxMenuBar *menubar = new wxMenuBar; | |
9a83f860 VZ |
262 | menubar->Append(menuFile, wxT("&File")); |
263 | menubar->Append(menuView, wxT("&View")); | |
264 | menubar->Append(menuList, wxT("&List")); | |
265 | menubar->Append(menuCol, wxT("&Colour")); | |
c41ea66a VZ |
266 | SetMenuBar(menubar); |
267 | ||
1550e402 WS |
268 | m_panel = new wxPanel(this, wxID_ANY); |
269 | m_logWindow = new wxTextCtrl(m_panel, wxID_ANY, wxEmptyString, | |
c41ea66a | 270 | wxDefaultPosition, wxDefaultSize, |
e1641772 | 271 | wxTE_READONLY | wxTE_MULTILINE | wxSUNKEN_BORDER); |
c41ea66a VZ |
272 | |
273 | m_logOld = wxLog::SetActiveTarget(new wxLogTextCtrl(m_logWindow)); | |
274 | ||
776a33cf | 275 | RecreateList(wxLC_REPORT | wxLC_SINGLE_SEL); |
a0d0799b | 276 | |
9e27ff75 FM |
277 | #ifdef __WXMSW__ |
278 | // this is useful to know specially when debugging :) | |
279 | wxLogMessage("Your version of comctl32.dll is: %d", | |
280 | wxApp::GetComCtl32Version()); | |
281 | #endif | |
a0d0799b | 282 | |
8520f137 | 283 | #if wxUSE_STATUSBAR |
e1641772 | 284 | CreateStatusBar(); |
8520f137 | 285 | #endif // wxUSE_STATUSBAR |
457814b5 JS |
286 | } |
287 | ||
11f26ea0 | 288 | MyFrame::~MyFrame() |
457814b5 | 289 | { |
c41ea66a VZ |
290 | delete wxLog::SetActiveTarget(m_logOld); |
291 | ||
292 | delete m_imageListNormal; | |
293 | delete m_imageListSmall; | |
457814b5 JS |
294 | } |
295 | ||
98ec9dbe | 296 | void MyFrame::OnSize(wxSizeEvent& event) |
07bf769e VZ |
297 | { |
298 | DoSize(); | |
299 | ||
300 | event.Skip(); | |
301 | } | |
302 | ||
303 | void MyFrame::DoSize() | |
457814b5 | 304 | { |
98ec9dbe VZ |
305 | if ( !m_logWindow ) |
306 | return; | |
457814b5 | 307 | |
98ec9dbe VZ |
308 | wxSize size = GetClientSize(); |
309 | wxCoord y = (2*size.y)/3; | |
9e27ff75 | 310 | m_listCtrl->SetSize(0, 0, size.x, y); |
2a0c05eb | 311 | m_logWindow->SetSize(0, y + 1, size.x, size.y - y -1); |
57246713 KB |
312 | } |
313 | ||
68457180 VZ |
314 | bool MyFrame::CheckNonVirtual() const |
315 | { | |
316 | if ( !m_listCtrl->HasFlag(wxLC_VIRTUAL) ) | |
317 | return true; | |
318 | ||
319 | // "this" == whatever | |
9a83f860 | 320 | wxLogWarning(wxT("Can't do this in virtual view, sorry.")); |
68457180 VZ |
321 | |
322 | return false; | |
323 | } | |
324 | ||
98ec9dbe | 325 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) |
57246713 | 326 | { |
1550e402 | 327 | Close(true); |
57246713 KB |
328 | } |
329 | ||
b0d77f43 | 330 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 331 | { |
9a83f860 VZ |
332 | wxMessageDialog dialog(this, wxT("List test sample\nJulian Smart (c) 1997"), |
333 | wxT("About list test"), wxOK|wxCANCEL); | |
457814b5 | 334 | |
5ea47806 | 335 | dialog.ShowModal(); |
457814b5 JS |
336 | } |
337 | ||
c71963cd | 338 | void MyFrame::OnFreeze(wxCommandEvent& WXUNUSED(event)) |
c5c528fc | 339 | { |
9a83f860 | 340 | wxLogMessage(wxT("Freezing the control")); |
c5c528fc VZ |
341 | |
342 | m_listCtrl->Freeze(); | |
343 | } | |
344 | ||
c71963cd | 345 | void MyFrame::OnThaw(wxCommandEvent& WXUNUSED(event)) |
c5c528fc | 346 | { |
9a83f860 | 347 | wxLogMessage(wxT("Thawing the control")); |
c5c528fc VZ |
348 | |
349 | m_listCtrl->Thaw(); | |
350 | } | |
351 | ||
494ab5de VZ |
352 | void MyFrame::OnToggleLines(wxCommandEvent& event) |
353 | { | |
354 | m_listCtrl->SetSingleStyle(wxLC_HRULES | wxLC_VRULES, event.IsChecked()); | |
355 | } | |
356 | ||
8a3f03ff VZ |
357 | #ifdef __WXOSX__ |
358 | ||
2458daa7 KO |
359 | void MyFrame::OnToggleMacUseGeneric(wxCommandEvent& event) |
360 | { | |
361 | wxSystemOptions::SetOption(wxT("mac.listctrl.always_use_generic"), event.IsChecked()); | |
362 | } | |
363 | ||
8a3f03ff VZ |
364 | #endif // __WXOSX__ |
365 | ||
6ef2b230 VZ |
366 | void MyFrame::OnGoTo(wxCommandEvent& WXUNUSED(event)) |
367 | { | |
368 | long index = 3; | |
369 | m_listCtrl->SetItemState(index, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED); | |
370 | ||
371 | long sel = m_listCtrl->GetNextItem(-1, wxLIST_NEXT_ALL, | |
372 | wxLIST_STATE_SELECTED); | |
373 | if ( sel != -1 ) | |
374 | m_listCtrl->SetItemState(sel, 0, wxLIST_STATE_SELECTED); | |
375 | m_listCtrl->SetItemState(index, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); | |
376 | } | |
377 | ||
88b792af VZ |
378 | void MyFrame::OnFocusLast(wxCommandEvent& WXUNUSED(event)) |
379 | { | |
380 | long index = m_listCtrl->GetItemCount() - 1; | |
381 | if ( index == -1 ) | |
382 | { | |
383 | return; | |
384 | } | |
385 | ||
386 | m_listCtrl->SetItemState(index, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED); | |
387 | m_listCtrl->EnsureVisible(index); | |
388 | } | |
389 | ||
58b3bdc9 VZ |
390 | void MyFrame::OnToggleFirstSel(wxCommandEvent& WXUNUSED(event)) |
391 | { | |
95f913a9 | 392 | m_listCtrl->SetItemState(0, (~m_listCtrl->GetItemState(0, wxLIST_STATE_SELECTED) ) & wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); |
58b3bdc9 VZ |
393 | } |
394 | ||
c4771147 KB |
395 | void MyFrame::OnDeselectAll(wxCommandEvent& WXUNUSED(event)) |
396 | { | |
68457180 VZ |
397 | if ( !CheckNonVirtual() ) |
398 | return; | |
399 | ||
5ea47806 VZ |
400 | int n = m_listCtrl->GetItemCount(); |
401 | for (int i = 0; i < n; i++) | |
402 | m_listCtrl->SetItemState(i,0,wxLIST_STATE_SELECTED); | |
c4771147 KB |
403 | } |
404 | ||
405 | void MyFrame::OnSelectAll(wxCommandEvent& WXUNUSED(event)) | |
406 | { | |
68457180 VZ |
407 | if ( !CheckNonVirtual() ) |
408 | return; | |
409 | ||
5ea47806 VZ |
410 | int n = m_listCtrl->GetItemCount(); |
411 | for (int i = 0; i < n; i++) | |
412 | m_listCtrl->SetItemState(i,wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); | |
c4771147 KB |
413 | } |
414 | ||
776a33cf VZ |
415 | // ---------------------------------------------------------------------------- |
416 | // changing listctrl modes | |
417 | // ---------------------------------------------------------------------------- | |
418 | ||
419 | void MyFrame::RecreateList(long flags, bool withText) | |
457814b5 | 420 | { |
776a33cf VZ |
421 | // we could avoid recreating it if we don't set/clear the wxLC_VIRTUAL |
422 | // style, but it is more trouble to do it than not | |
423 | #if 0 | |
424 | if ( !m_listCtrl || ((flags & wxLC_VIRTUAL) != | |
425 | (m_listCtrl->GetWindowStyleFlag() & wxLC_VIRTUAL)) ) | |
426 | #endif | |
427 | { | |
428 | delete m_listCtrl; | |
429 | ||
2b5f62a0 | 430 | m_listCtrl = new MyListCtrl(m_panel, LIST_CTRL, |
776a33cf VZ |
431 | wxDefaultPosition, wxDefaultSize, |
432 | flags | | |
a91a64da | 433 | wxBORDER_THEME | wxLC_EDIT_LABELS); |
776a33cf VZ |
434 | |
435 | switch ( flags & wxLC_MASK_TYPE ) | |
436 | { | |
437 | case wxLC_LIST: | |
438 | InitWithListItems(); | |
439 | break; | |
440 | ||
441 | case wxLC_ICON: | |
442 | InitWithIconItems(withText); | |
443 | break; | |
444 | ||
445 | case wxLC_SMALL_ICON: | |
1550e402 | 446 | InitWithIconItems(withText, true); |
776a33cf VZ |
447 | break; |
448 | ||
449 | case wxLC_REPORT: | |
450 | if ( flags & wxLC_VIRTUAL ) | |
451 | InitWithVirtualItems(); | |
452 | else | |
453 | InitWithReportItems(); | |
454 | break; | |
455 | ||
456 | default: | |
9a83f860 | 457 | wxFAIL_MSG( wxT("unknown listctrl mode") ); |
776a33cf VZ |
458 | } |
459 | } | |
460 | ||
07bf769e | 461 | DoSize(); |
776a33cf | 462 | |
0180dad6 | 463 | m_logWindow->Clear(); |
776a33cf | 464 | } |
95bf655c | 465 | |
776a33cf VZ |
466 | void MyFrame::OnListView(wxCommandEvent& WXUNUSED(event)) |
467 | { | |
468 | RecreateList(wxLC_LIST); | |
469 | } | |
457814b5 | 470 | |
776a33cf VZ |
471 | void MyFrame::InitWithListItems() |
472 | { | |
beb9e8f2 | 473 | for ( int i = 0; i < m_numListItems; i++ ) |
0180dad6 | 474 | { |
9a83f860 | 475 | m_listCtrl->InsertItem(i, wxString::Format(wxT("Item %d"), i)); |
0180dad6 | 476 | } |
457814b5 JS |
477 | } |
478 | ||
b0d77f43 | 479 | void MyFrame::OnReportView(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 480 | { |
776a33cf VZ |
481 | RecreateList(wxLC_REPORT); |
482 | } | |
5ea47806 | 483 | |
776a33cf VZ |
484 | void MyFrame::InitWithReportItems() |
485 | { | |
c41ea66a | 486 | m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL); |
457814b5 | 487 | |
caa20b1e VZ |
488 | // note that under MSW for SetColumnWidth() to work we need to create the |
489 | // items with images initially even if we specify dummy image id | |
6f806543 | 490 | wxListItem itemCol; |
9a83f860 | 491 | itemCol.SetText(wxT("Column 1")); |
caa20b1e | 492 | itemCol.SetImage(-1); |
6f806543 | 493 | m_listCtrl->InsertColumn(0, itemCol); |
caa20b1e | 494 | |
9a83f860 | 495 | itemCol.SetText(wxT("Column 2")); |
caa20b1e | 496 | itemCol.SetAlign(wxLIST_FORMAT_CENTRE); |
6f806543 | 497 | m_listCtrl->InsertColumn(1, itemCol); |
caa20b1e | 498 | |
9a83f860 | 499 | itemCol.SetText(wxT("Column 3")); |
caa20b1e | 500 | itemCol.SetAlign(wxLIST_FORMAT_RIGHT); |
6f806543 | 501 | m_listCtrl->InsertColumn(2, itemCol); |
0180dad6 | 502 | |
81278df2 VZ |
503 | // to speed up inserting we hide the control temporarily |
504 | m_listCtrl->Hide(); | |
505 | ||
506 | wxStopWatch sw; | |
507 | ||
beb9e8f2 | 508 | for ( int i = 0; i < m_numListItems; i++ ) |
0180dad6 | 509 | { |
5cd89174 | 510 | m_listCtrl->InsertItemInReportView(i); |
0180dad6 | 511 | } |
bdc72a22 | 512 | |
9a83f860 | 513 | m_logWindow->WriteText(wxString::Format(wxT("%d items inserted in %ldms\n"), |
beb9e8f2 | 514 | m_numListItems, sw.Time())); |
81278df2 VZ |
515 | m_listCtrl->Show(); |
516 | ||
f6b77239 | 517 | // we leave all mask fields to 0 and only change the colour |
bdc72a22 VZ |
518 | wxListItem item; |
519 | item.m_itemId = 0; | |
0530737d | 520 | item.SetTextColour(*wxRED); |
bdc72a22 VZ |
521 | m_listCtrl->SetItem( item ); |
522 | ||
523 | item.m_itemId = 2; | |
d62228a6 | 524 | item.SetTextColour(*wxGREEN); |
bdc72a22 | 525 | m_listCtrl->SetItem( item ); |
d62228a6 | 526 | item.m_itemId = 4; |
bdc72a22 | 527 | item.SetTextColour(*wxLIGHT_GREY); |
d62228a6 VZ |
528 | item.SetFont(*wxITALIC_FONT); |
529 | item.SetBackgroundColour(*wxRED); | |
bdc72a22 | 530 | m_listCtrl->SetItem( item ); |
5ea47806 | 531 | |
d62228a6 | 532 | m_listCtrl->SetTextColour(*wxBLUE); |
d62228a6 | 533 | |
0180dad6 RR |
534 | m_listCtrl->SetColumnWidth( 0, wxLIST_AUTOSIZE ); |
535 | m_listCtrl->SetColumnWidth( 1, wxLIST_AUTOSIZE ); | |
536 | m_listCtrl->SetColumnWidth( 2, wxLIST_AUTOSIZE ); | |
35c2acd4 | 537 | |
06db67bc RD |
538 | // Set images in columns |
539 | m_listCtrl->SetItemColumnImage(1, 1, 0); | |
540 | ||
541 | wxListItem info; | |
542 | info.SetImage(0); | |
543 | info.SetId(3); | |
544 | info.SetColumn(2); | |
545 | m_listCtrl->SetItem(info); | |
546 | ||
35c2acd4 MW |
547 | // test SetItemFont too |
548 | m_listCtrl->SetItemFont(0, *wxITALIC_FONT); | |
457814b5 JS |
549 | } |
550 | ||
776a33cf | 551 | void MyFrame::InitWithIconItems(bool withText, bool sameIcon) |
457814b5 | 552 | { |
c41ea66a VZ |
553 | m_listCtrl->SetImageList(m_imageListNormal, wxIMAGE_LIST_NORMAL); |
554 | m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL); | |
457814b5 | 555 | |
152e8878 | 556 | for ( int i = 0; i < NUM_ICONS; i++ ) |
5ea47806 | 557 | { |
152e8878 | 558 | int image = sameIcon ? 0 : i; |
776a33cf VZ |
559 | |
560 | if ( withText ) | |
561 | { | |
9a83f860 | 562 | m_listCtrl->InsertItem(i, wxString::Format(wxT("Label %d"), i), |
776a33cf VZ |
563 | image); |
564 | } | |
565 | else | |
566 | { | |
567 | m_listCtrl->InsertItem(i, image); | |
568 | } | |
5ea47806 | 569 | } |
457814b5 JS |
570 | } |
571 | ||
776a33cf | 572 | void MyFrame::OnIconView(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 573 | { |
1550e402 | 574 | RecreateList(wxLC_ICON, false); |
776a33cf | 575 | } |
457814b5 | 576 | |
776a33cf VZ |
577 | void MyFrame::OnIconTextView(wxCommandEvent& WXUNUSED(event)) |
578 | { | |
579 | RecreateList(wxLC_ICON); | |
457814b5 JS |
580 | } |
581 | ||
b0d77f43 | 582 | void MyFrame::OnSmallIconView(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 583 | { |
1550e402 | 584 | RecreateList(wxLC_SMALL_ICON, false); |
457814b5 JS |
585 | } |
586 | ||
b0d77f43 | 587 | void MyFrame::OnSmallIconTextView(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 588 | { |
776a33cf | 589 | RecreateList(wxLC_SMALL_ICON); |
5ea47806 VZ |
590 | } |
591 | ||
98ec9dbe VZ |
592 | void MyFrame::OnVirtualView(wxCommandEvent& WXUNUSED(event)) |
593 | { | |
b0401bea VZ |
594 | m_smallVirtual = false; |
595 | RecreateList(wxLC_REPORT | wxLC_VIRTUAL); | |
596 | } | |
597 | ||
598 | void MyFrame::OnSmallVirtualView(wxCommandEvent& WXUNUSED(event)) | |
599 | { | |
600 | m_smallVirtual = true; | |
776a33cf VZ |
601 | RecreateList(wxLC_REPORT | wxLC_VIRTUAL); |
602 | } | |
98ec9dbe | 603 | |
beb9e8f2 VZ |
604 | void MyFrame::OnSetItemsCount(wxCommandEvent& WXUNUSED(event)) |
605 | { | |
606 | int numItems = wxGetNumberFromUser | |
607 | ( | |
608 | "Enter the initial number of items for " | |
609 | "the list and report views", | |
610 | "Number of items:", | |
611 | "wxWidgets wxListCtrl sample", | |
612 | m_numListItems, | |
613 | 0, | |
614 | 10000, | |
615 | this | |
616 | ); | |
617 | if ( numItems == -1 || numItems == m_numListItems ) | |
618 | return; | |
619 | ||
620 | m_numListItems = numItems; | |
621 | ||
622 | if ( m_listCtrl->HasFlag(wxLC_REPORT) && | |
623 | !m_listCtrl->HasFlag(wxLC_VIRTUAL) ) | |
624 | RecreateList(wxLC_REPORT); | |
625 | else if ( m_listCtrl->HasFlag(wxLC_LIST) ) | |
626 | RecreateList(wxLC_LIST); | |
627 | } | |
628 | ||
776a33cf VZ |
629 | void MyFrame::InitWithVirtualItems() |
630 | { | |
27770773 VZ |
631 | m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL); |
632 | ||
b0401bea VZ |
633 | if ( m_smallVirtual ) |
634 | { | |
9a83f860 VZ |
635 | m_listCtrl->InsertColumn(0, wxT("Animal")); |
636 | m_listCtrl->InsertColumn(1, wxT("Sound")); | |
b0401bea VZ |
637 | m_listCtrl->SetItemCount(WXSIZEOF(SMALL_VIRTUAL_VIEW_ITEMS)); |
638 | } | |
639 | else | |
640 | { | |
9a83f860 VZ |
641 | m_listCtrl->InsertColumn(0, wxT("First Column")); |
642 | m_listCtrl->InsertColumn(1, wxT("Second Column")); | |
b0401bea VZ |
643 | m_listCtrl->SetColumnWidth(0, 150); |
644 | m_listCtrl->SetColumnWidth(1, 150); | |
645 | m_listCtrl->SetItemCount(1000000); | |
646 | } | |
98ec9dbe VZ |
647 | } |
648 | ||
fa5f6926 VZ |
649 | void MyFrame::OnSort(wxCommandEvent& WXUNUSED(event)) |
650 | { | |
81278df2 VZ |
651 | wxStopWatch sw; |
652 | ||
fa5f6926 | 653 | m_listCtrl->SortItems(MyCompareFunction, 0); |
81278df2 | 654 | |
9a83f860 | 655 | m_logWindow->WriteText(wxString::Format(wxT("Sorting %d items took %ld ms\n"), |
81278df2 VZ |
656 | m_listCtrl->GetItemCount(), |
657 | sw.Time())); | |
fa5f6926 VZ |
658 | } |
659 | ||
beb9e8f2 VZ |
660 | void MyFrame::OnFind(wxCommandEvent& WXUNUSED(event)) |
661 | { | |
662 | wxStopWatch sw; | |
663 | ||
664 | const int itemCount = m_listCtrl->GetItemCount(); | |
665 | for ( int i = 0; i < itemCount; i++ ) | |
666 | m_listCtrl->FindItem(-1, i); | |
667 | ||
668 | wxLogMessage("Calling Find() for all %d items took %ld ms", | |
669 | itemCount, sw.Time()); | |
670 | } | |
671 | ||
c71963cd | 672 | void MyFrame::OnShowSelInfo(wxCommandEvent& WXUNUSED(event)) |
b54e41c5 VZ |
673 | { |
674 | int selCount = m_listCtrl->GetSelectedItemCount(); | |
9a83f860 | 675 | wxLogMessage(wxT("%d items selected:"), selCount); |
b54e41c5 VZ |
676 | |
677 | // don't show too many items | |
678 | size_t shownCount = 0; | |
679 | ||
680 | long item = m_listCtrl->GetNextItem(-1, wxLIST_NEXT_ALL, | |
681 | wxLIST_STATE_SELECTED); | |
682 | while ( item != -1 ) | |
683 | { | |
9a83f860 | 684 | wxLogMessage(wxT("\t%ld (%s)"), |
b54e41c5 VZ |
685 | item, m_listCtrl->GetItemText(item).c_str()); |
686 | ||
687 | if ( ++shownCount > 10 ) | |
688 | { | |
9a83f860 | 689 | wxLogMessage(wxT("\t... more selected items snipped...")); |
b54e41c5 VZ |
690 | break; |
691 | } | |
692 | ||
693 | item = m_listCtrl->GetNextItem(item, wxLIST_NEXT_ALL, | |
694 | wxLIST_STATE_SELECTED); | |
695 | } | |
696 | } | |
697 | ||
929b7901 VZ |
698 | void MyFrame::OnShowViewRect(wxCommandEvent& WXUNUSED(event)) |
699 | { | |
700 | const wxRect r = m_listCtrl->GetViewRect(); | |
701 | wxLogMessage("View rect: (%d, %d)-(%d, %d)", | |
702 | r.GetLeft(), r.GetTop(), r.GetRight(), r.GetBottom()); | |
703 | } | |
704 | ||
80cc5fc7 VZ |
705 | // ---------------------------------------------------------------------------- |
706 | // column order tests | |
707 | // ---------------------------------------------------------------------------- | |
708 | ||
709 | #ifdef wxHAS_LISTCTRL_COLUMN_ORDER | |
710 | ||
711 | static wxString DumpIntArray(const wxArrayInt& a) | |
712 | { | |
713 | wxString s("{ "); | |
714 | const size_t count = a.size(); | |
715 | for ( size_t n = 0; n < count; n++ ) | |
716 | { | |
717 | if ( n ) | |
718 | s += ", "; | |
719 | s += wxString::Format("%lu", (unsigned long)a[n]); | |
720 | } | |
721 | ||
722 | s += " }"; | |
723 | ||
724 | return s; | |
725 | } | |
726 | ||
727 | void MyFrame::OnSetColOrder(wxCommandEvent& WXUNUSED(event)) | |
728 | { | |
729 | wxArrayInt order(3); | |
730 | order[0] = 2; | |
731 | order[1] = 0; | |
732 | order[2] = 1; | |
733 | if ( m_listCtrl->SetColumnsOrder(order) ) | |
43b2d5e7 | 734 | { |
80cc5fc7 | 735 | wxLogMessage("Column order set to %s", DumpIntArray(order)); |
43b2d5e7 | 736 | } |
80cc5fc7 VZ |
737 | } |
738 | ||
739 | void MyFrame::OnGetColOrder(wxCommandEvent& WXUNUSED(event)) | |
740 | { | |
741 | // show what GetColumnsOrder() returns | |
742 | const wxArrayInt order = m_listCtrl->GetColumnsOrder(); | |
743 | wxString msg = "Columns order: " + | |
744 | DumpIntArray(m_listCtrl->GetColumnsOrder()) + "\n"; | |
745 | ||
746 | int n; | |
747 | const int count = m_listCtrl->GetColumnCount(); | |
748 | ||
749 | // show the results of GetColumnOrder() for each column | |
750 | msg += "GetColumnOrder() results:\n"; | |
751 | for ( n = 0; n < count; n++ ) | |
752 | { | |
753 | msg += wxString::Format(" %2d -> %2d\n", | |
754 | n, m_listCtrl->GetColumnOrder(n)); | |
755 | } | |
756 | ||
757 | // and the results of GetColumnIndexFromOrder() too | |
758 | msg += "GetColumnIndexFromOrder() results:\n"; | |
759 | for ( n = 0; n < count; n++ ) | |
760 | { | |
761 | msg += wxString::Format(" %2d -> %2d\n", | |
762 | n, m_listCtrl->GetColumnIndexFromOrder(n)); | |
763 | } | |
764 | ||
765 | wxLogMessage("%s", msg); | |
766 | } | |
767 | ||
768 | #endif // wxHAS_LISTCTRL_COLUMN_ORDER | |
769 | ||
c71963cd | 770 | void MyFrame::OnShowColInfo(wxCommandEvent& WXUNUSED(event)) |
f6bcfd97 BP |
771 | { |
772 | int count = m_listCtrl->GetColumnCount(); | |
4acb6ca6 | 773 | wxLogMessage(wxT("%d columns:"), count); |
f6bcfd97 BP |
774 | for ( int c = 0; c < count; c++ ) |
775 | { | |
4acb6ca6 | 776 | wxLogMessage(wxT("\tcolumn %d has width %d"), c, |
f6bcfd97 BP |
777 | m_listCtrl->GetColumnWidth(c)); |
778 | } | |
779 | } | |
780 | ||
781 | void MyFrame::OnUpdateShowColInfo(wxUpdateUIEvent& event) | |
782 | { | |
783 | event.Enable( (m_listCtrl->GetWindowStyleFlag() & wxLC_REPORT) != 0 ); | |
784 | } | |
785 | ||
7b848b0d VZ |
786 | void MyFrame::OnToggleMultiSel(wxCommandEvent& WXUNUSED(event)) |
787 | { | |
7b848b0d VZ |
788 | long flags = m_listCtrl->GetWindowStyleFlag(); |
789 | if ( flags & wxLC_SINGLE_SEL ) | |
776a33cf | 790 | flags &= ~wxLC_SINGLE_SEL; |
7b848b0d | 791 | else |
776a33cf VZ |
792 | flags |= wxLC_SINGLE_SEL; |
793 | ||
4acb6ca6 | 794 | m_logWindow->WriteText(wxString::Format(wxT("Current selection mode: %sle\n"), |
9a83f860 | 795 | (flags & wxLC_SINGLE_SEL) ? wxT("sing") : wxT("multip"))); |
7b848b0d | 796 | |
776a33cf | 797 | RecreateList(flags); |
7b848b0d VZ |
798 | } |
799 | ||
ae403b11 JS |
800 | void MyFrame::OnUpdateToggleMultiSel(wxUpdateUIEvent& event) |
801 | { | |
802 | event.Check((m_listCtrl->GetWindowStyleFlag() & wxLC_SINGLE_SEL) == 0); | |
803 | } | |
804 | ||
11f26ea0 VZ |
805 | void MyFrame::OnSetFgColour(wxCommandEvent& WXUNUSED(event)) |
806 | { | |
807 | m_listCtrl->SetForegroundColour(wxGetColourFromUser(this)); | |
808 | m_listCtrl->Refresh(); | |
809 | } | |
810 | ||
811 | void MyFrame::OnSetBgColour(wxCommandEvent& WXUNUSED(event)) | |
812 | { | |
813 | m_listCtrl->SetBackgroundColour(wxGetColourFromUser(this)); | |
814 | m_listCtrl->Refresh(); | |
815 | } | |
816 | ||
cf1dfa6b VZ |
817 | void MyFrame::OnAdd(wxCommandEvent& WXUNUSED(event)) |
818 | { | |
9a83f860 | 819 | m_listCtrl->InsertItem(m_listCtrl->GetItemCount(), wxT("Appended item")); |
cf1dfa6b VZ |
820 | } |
821 | ||
efe23391 VZ |
822 | void MyFrame::OnEdit(wxCommandEvent& WXUNUSED(event)) |
823 | { | |
824 | long itemCur = m_listCtrl->GetNextItem(-1, wxLIST_NEXT_ALL, | |
825 | wxLIST_STATE_FOCUSED); | |
826 | ||
827 | if ( itemCur != -1 ) | |
828 | { | |
829 | m_listCtrl->EditLabel(itemCur); | |
830 | } | |
831 | else | |
832 | { | |
9a83f860 | 833 | m_logWindow->WriteText(wxT("No item to edit")); |
efe23391 VZ |
834 | } |
835 | } | |
836 | ||
bec0a261 VZ |
837 | void MyFrame::OnDelete(wxCommandEvent& WXUNUSED(event)) |
838 | { | |
839 | if ( m_listCtrl->GetItemCount() ) | |
840 | { | |
841 | m_listCtrl->DeleteItem(0); | |
842 | } | |
843 | else | |
844 | { | |
9a83f860 | 845 | m_logWindow->WriteText(wxT("Nothing to delete")); |
bec0a261 VZ |
846 | } |
847 | } | |
848 | ||
5ea47806 VZ |
849 | void MyFrame::OnDeleteAll(wxCommandEvent& WXUNUSED(event)) |
850 | { | |
81278df2 | 851 | wxStopWatch sw; |
5ea47806 | 852 | |
b143cf70 | 853 | int itemCount = m_listCtrl->GetItemCount(); |
fde548e2 | 854 | |
5ea47806 VZ |
855 | m_listCtrl->DeleteAllItems(); |
856 | ||
9a83f860 | 857 | m_logWindow->WriteText(wxString::Format(wxT("Deleting %d items took %ld ms\n"), |
fde548e2 | 858 | itemCount, |
81278df2 | 859 | sw.Time())); |
457814b5 JS |
860 | } |
861 | ||
a0d0799b FM |
862 | |
863 | // ---------------------------------------------------------------------------- | |
457814b5 | 864 | // MyListCtrl |
a0d0799b FM |
865 | // ---------------------------------------------------------------------------- |
866 | ||
867 | BEGIN_EVENT_TABLE(MyListCtrl, wxListCtrl) | |
868 | EVT_LIST_BEGIN_DRAG(LIST_CTRL, MyListCtrl::OnBeginDrag) | |
869 | EVT_LIST_BEGIN_RDRAG(LIST_CTRL, MyListCtrl::OnBeginRDrag) | |
870 | EVT_LIST_BEGIN_LABEL_EDIT(LIST_CTRL, MyListCtrl::OnBeginLabelEdit) | |
871 | EVT_LIST_END_LABEL_EDIT(LIST_CTRL, MyListCtrl::OnEndLabelEdit) | |
872 | EVT_LIST_DELETE_ITEM(LIST_CTRL, MyListCtrl::OnDeleteItem) | |
873 | EVT_LIST_DELETE_ALL_ITEMS(LIST_CTRL, MyListCtrl::OnDeleteAllItems) | |
874 | EVT_LIST_ITEM_SELECTED(LIST_CTRL, MyListCtrl::OnSelected) | |
875 | EVT_LIST_ITEM_DESELECTED(LIST_CTRL, MyListCtrl::OnDeselected) | |
876 | EVT_LIST_KEY_DOWN(LIST_CTRL, MyListCtrl::OnListKeyDown) | |
877 | EVT_LIST_ITEM_ACTIVATED(LIST_CTRL, MyListCtrl::OnActivated) | |
878 | EVT_LIST_ITEM_FOCUSED(LIST_CTRL, MyListCtrl::OnFocused) | |
879 | ||
880 | EVT_LIST_COL_CLICK(LIST_CTRL, MyListCtrl::OnColClick) | |
881 | EVT_LIST_COL_RIGHT_CLICK(LIST_CTRL, MyListCtrl::OnColRightClick) | |
882 | EVT_LIST_COL_BEGIN_DRAG(LIST_CTRL, MyListCtrl::OnColBeginDrag) | |
883 | EVT_LIST_COL_DRAGGING(LIST_CTRL, MyListCtrl::OnColDragging) | |
884 | EVT_LIST_COL_END_DRAG(LIST_CTRL, MyListCtrl::OnColEndDrag) | |
885 | ||
886 | EVT_LIST_CACHE_HINT(LIST_CTRL, MyListCtrl::OnCacheHint) | |
887 | ||
888 | #if USE_CONTEXT_MENU | |
889 | EVT_CONTEXT_MENU(MyListCtrl::OnContextMenu) | |
890 | #endif | |
891 | EVT_CHAR(MyListCtrl::OnChar) | |
892 | ||
893 | EVT_RIGHT_DOWN(MyListCtrl::OnRightClick) | |
894 | END_EVENT_TABLE() | |
457814b5 | 895 | |
614391dc VZ |
896 | void MyListCtrl::OnCacheHint(wxListEvent& event) |
897 | { | |
4acb6ca6 | 898 | wxLogMessage( wxT("OnCacheHint: cache items %ld..%ld"), |
614391dc VZ |
899 | event.GetCacheFrom(), event.GetCacheTo() ); |
900 | } | |
901 | ||
6f806543 VZ |
902 | void MyListCtrl::SetColumnImage(int col, int image) |
903 | { | |
904 | wxListItem item; | |
905 | item.SetMask(wxLIST_MASK_IMAGE); | |
906 | item.SetImage(image); | |
907 | SetColumn(col, item); | |
908 | } | |
909 | ||
8636aed8 RR |
910 | void MyListCtrl::OnColClick(wxListEvent& event) |
911 | { | |
6f806543 | 912 | int col = event.GetColumn(); |
f0cf38b7 VZ |
913 | |
914 | // set or unset image | |
4979a56c | 915 | static bool x = false; |
f0cf38b7 VZ |
916 | x = !x; |
917 | SetColumnImage(col, x ? 0 : -1); | |
6f806543 VZ |
918 | |
919 | wxLogMessage( wxT("OnColumnClick at %d."), col ); | |
8636aed8 RR |
920 | } |
921 | ||
11358d39 VZ |
922 | void MyListCtrl::OnColRightClick(wxListEvent& event) |
923 | { | |
6f806543 | 924 | int col = event.GetColumn(); |
62313c27 VZ |
925 | if ( col != -1 ) |
926 | { | |
927 | SetColumnImage(col, -1); | |
928 | } | |
6f806543 | 929 | |
77ace0c5 WS |
930 | // Show popupmenu at position |
931 | wxMenu menu(wxT("Test")); | |
9a83f860 | 932 | menu.Append(LIST_ABOUT, wxT("&About")); |
5f4d35b8 | 933 | PopupMenu(&menu, event.GetPoint()); |
77ace0c5 | 934 | |
11358d39 VZ |
935 | wxLogMessage( wxT("OnColumnRightClick at %d."), event.GetColumn() ); |
936 | } | |
937 | ||
2b5f62a0 VZ |
938 | void MyListCtrl::LogColEvent(const wxListEvent& event, const wxChar *name) |
939 | { | |
940 | const int col = event.GetColumn(); | |
941 | ||
942 | wxLogMessage(wxT("%s: column %d (width = %d or %d)."), | |
943 | name, | |
944 | col, | |
945 | event.GetItem().GetWidth(), | |
946 | GetColumnWidth(col)); | |
947 | } | |
948 | ||
11358d39 VZ |
949 | void MyListCtrl::OnColBeginDrag(wxListEvent& event) |
950 | { | |
2b5f62a0 | 951 | LogColEvent( event, wxT("OnColBeginDrag") ); |
355f2407 VZ |
952 | |
953 | if ( event.GetColumn() == 0 ) | |
954 | { | |
9a83f860 | 955 | wxLogMessage(wxT("Resizing this column shouldn't work.")); |
355f2407 VZ |
956 | |
957 | event.Veto(); | |
958 | } | |
11358d39 VZ |
959 | } |
960 | ||
961 | void MyListCtrl::OnColDragging(wxListEvent& event) | |
962 | { | |
2b5f62a0 | 963 | LogColEvent( event, wxT("OnColDragging") ); |
11358d39 VZ |
964 | } |
965 | ||
966 | void MyListCtrl::OnColEndDrag(wxListEvent& event) | |
967 | { | |
2b5f62a0 | 968 | LogColEvent( event, wxT("OnColEndDrag") ); |
11358d39 VZ |
969 | } |
970 | ||
fd9811b1 | 971 | void MyListCtrl::OnBeginDrag(wxListEvent& event) |
457814b5 | 972 | { |
6dc34ebb VZ |
973 | const wxPoint& pt = event.m_pointDrag; |
974 | ||
975 | int flags; | |
976 | wxLogMessage( wxT("OnBeginDrag at (%d, %d), item %ld."), | |
977 | pt.x, pt.y, HitTest(pt, flags) ); | |
457814b5 JS |
978 | } |
979 | ||
fd9811b1 | 980 | void MyListCtrl::OnBeginRDrag(wxListEvent& event) |
457814b5 | 981 | { |
4acb6ca6 | 982 | wxLogMessage( wxT("OnBeginRDrag at %d,%d."), |
c41ea66a | 983 | event.m_pointDrag.x, event.m_pointDrag.y ); |
457814b5 JS |
984 | } |
985 | ||
fd9811b1 | 986 | void MyListCtrl::OnBeginLabelEdit(wxListEvent& event) |
457814b5 | 987 | { |
4acb6ca6 | 988 | wxLogMessage( wxT("OnBeginLabelEdit: %s"), event.m_item.m_text.c_str()); |
508b6523 VZ |
989 | |
990 | wxTextCtrl * const text = GetEditControl(); | |
991 | if ( !text ) | |
992 | { | |
993 | wxLogMessage("BUG: started to edit but no edit control"); | |
994 | } | |
995 | else | |
996 | { | |
997 | wxLogMessage("Edit control value: \"%s\"", text->GetValue()); | |
998 | } | |
457814b5 JS |
999 | } |
1000 | ||
fd9811b1 | 1001 | void MyListCtrl::OnEndLabelEdit(wxListEvent& event) |
457814b5 | 1002 | { |
1bf37bf5 | 1003 | wxLogMessage( wxT("OnEndLabelEdit: %s"), |
15836000 | 1004 | ( |
a0d0799b FM |
1005 | event.IsEditCancelled() ? |
1006 | wxString("[cancelled]") : | |
15836000 CE |
1007 | event.m_item.m_text |
1008 | ).c_str() | |
1009 | ); | |
457814b5 JS |
1010 | } |
1011 | ||
efbb7287 | 1012 | void MyListCtrl::OnDeleteItem(wxListEvent& event) |
457814b5 | 1013 | { |
9a83f860 | 1014 | LogEvent(event, wxT("OnDeleteItem")); |
a95d5751 | 1015 | wxLogMessage( wxT("Number of items when delete event is sent: %d"), GetItemCount() ); |
457814b5 JS |
1016 | } |
1017 | ||
c41ea66a | 1018 | void MyListCtrl::OnDeleteAllItems(wxListEvent& event) |
12c1b46a | 1019 | { |
9a83f860 | 1020 | LogEvent(event, wxT("OnDeleteAllItems")); |
12c1b46a RR |
1021 | } |
1022 | ||
74b31181 | 1023 | void MyListCtrl::OnSelected(wxListEvent& event) |
457814b5 | 1024 | { |
9a83f860 | 1025 | LogEvent(event, wxT("OnSelected")); |
457814b5 | 1026 | |
40779a03 | 1027 | if ( GetWindowStyle() & wxLC_REPORT ) |
74b31181 | 1028 | { |
40779a03 VZ |
1029 | wxListItem info; |
1030 | info.m_itemId = event.m_itemIndex; | |
1031 | info.m_col = 1; | |
1032 | info.m_mask = wxLIST_MASK_TEXT; | |
1033 | if ( GetItem(info) ) | |
1034 | { | |
4acb6ca6 | 1035 | wxLogMessage(wxT("Value of the 2nd field of the selected item: %s"), |
c41ea66a | 1036 | info.m_text.c_str()); |
40779a03 VZ |
1037 | } |
1038 | else | |
1039 | { | |
4acb6ca6 | 1040 | wxFAIL_MSG(wxT("wxListCtrl::GetItem() failed")); |
40779a03 | 1041 | } |
74b31181 | 1042 | } |
457814b5 JS |
1043 | } |
1044 | ||
efbb7287 | 1045 | void MyListCtrl::OnDeselected(wxListEvent& event) |
457814b5 | 1046 | { |
9a83f860 | 1047 | LogEvent(event, wxT("OnDeselected")); |
457814b5 JS |
1048 | } |
1049 | ||
efbb7287 | 1050 | void MyListCtrl::OnActivated(wxListEvent& event) |
435fe83e | 1051 | { |
9a83f860 | 1052 | LogEvent(event, wxT("OnActivated")); |
435fe83e RR |
1053 | } |
1054 | ||
0ddefeb0 VZ |
1055 | void MyListCtrl::OnFocused(wxListEvent& event) |
1056 | { | |
9a83f860 | 1057 | LogEvent(event, wxT("OnFocused")); |
27770773 VZ |
1058 | |
1059 | event.Skip(); | |
0ddefeb0 VZ |
1060 | } |
1061 | ||
8e1d4f96 | 1062 | void MyListCtrl::OnListKeyDown(wxListEvent& event) |
457814b5 | 1063 | { |
100f649f VZ |
1064 | long item; |
1065 | ||
2936eaf0 | 1066 | switch ( event.GetKeyCode() ) |
5cd89174 | 1067 | { |
ebc9b89d | 1068 | case 'C': // colorize |
6c02c329 VZ |
1069 | { |
1070 | wxListItem info; | |
1071 | info.m_itemId = event.GetIndex(); | |
63c95faf VZ |
1072 | if ( info.m_itemId == -1 ) |
1073 | { | |
1074 | // no item | |
1075 | break; | |
1076 | } | |
1077 | ||
6c02c329 VZ |
1078 | GetItem(info); |
1079 | ||
1080 | wxListItemAttr *attr = info.GetAttributes(); | |
1081 | if ( !attr || !attr->HasTextColour() ) | |
1082 | { | |
1083 | info.SetTextColour(*wxCYAN); | |
1084 | ||
1085 | SetItem(info); | |
2d33aec9 VZ |
1086 | |
1087 | RefreshItem(info.m_itemId); | |
6c02c329 VZ |
1088 | } |
1089 | } | |
1090 | break; | |
1091 | ||
ebc9b89d | 1092 | case 'N': // next |
100f649f VZ |
1093 | item = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED); |
1094 | if ( item++ == GetItemCount() - 1 ) | |
1095 | { | |
1096 | item = 0; | |
1097 | } | |
1098 | ||
9a83f860 | 1099 | wxLogMessage(wxT("Focusing item %ld"), item); |
100f649f VZ |
1100 | |
1101 | SetItemState(item, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED); | |
1102 | EnsureVisible(item); | |
1103 | break; | |
1104 | ||
ebc9b89d | 1105 | case 'R': // show bounding rectangle |
2d33aec9 | 1106 | { |
100f649f VZ |
1107 | item = event.GetIndex(); |
1108 | wxRect r; | |
1109 | if ( !GetItemRect(item, r) ) | |
2d33aec9 | 1110 | { |
9a83f860 | 1111 | wxLogError(wxT("Failed to retrieve rect of item %ld"), item); |
100f649f | 1112 | break; |
2d33aec9 VZ |
1113 | } |
1114 | ||
9a83f860 | 1115 | wxLogMessage(wxT("Bounding rect of item %ld is (%d, %d)-(%d, %d)"), |
100f649f | 1116 | item, r.x, r.y, r.x + r.width, r.y + r.height); |
2d33aec9 VZ |
1117 | } |
1118 | break; | |
1119 | ||
e974c5d2 VZ |
1120 | case '1': // show sub item bounding rectangle |
1121 | case '2': | |
1122 | case '3': | |
1123 | case '4': // this column is invalid but we want to test it too | |
1124 | if ( InReportView() ) | |
1125 | { | |
1126 | int subItem = event.GetKeyCode() - '1'; | |
1127 | item = event.GetIndex(); | |
1128 | wxRect r; | |
1129 | if ( !GetSubItemRect(item, subItem, r) ) | |
1130 | { | |
9a83f860 | 1131 | wxLogError(wxT("Failed to retrieve rect of item %ld column %d"), item, subItem + 1); |
e974c5d2 VZ |
1132 | break; |
1133 | } | |
1134 | ||
9a83f860 | 1135 | wxLogMessage(wxT("Bounding rect of item %ld column %d is (%d, %d)-(%d, %d)"), |
e974c5d2 VZ |
1136 | item, subItem + 1, |
1137 | r.x, r.y, r.x + r.width, r.y + r.height); | |
1138 | } | |
1139 | break; | |
1140 | ||
ebc9b89d VZ |
1141 | case 'U': // update |
1142 | if ( !IsVirtual() ) | |
1143 | break; | |
1144 | ||
1145 | if ( m_updated != -1 ) | |
1146 | RefreshItem(m_updated); | |
1147 | ||
1148 | m_updated = event.GetIndex(); | |
1149 | if ( m_updated != -1 ) | |
1150 | { | |
1151 | // we won't see changes to this item as it's selected, update | |
1152 | // the next one (or the first one if we're on the last item) | |
1153 | if ( ++m_updated == GetItemCount() ) | |
1154 | m_updated = 0; | |
1155 | ||
1156 | wxLogMessage("Updating colour of the item %ld", m_updated); | |
1157 | RefreshItem(m_updated); | |
1158 | } | |
1159 | break; | |
1160 | ||
17483f70 | 1161 | case 'D': // delete |
100f649f VZ |
1162 | item = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); |
1163 | while ( item != -1 ) | |
91c6cc0e | 1164 | { |
100f649f | 1165 | DeleteItem(item); |
91c6cc0e | 1166 | |
9a83f860 | 1167 | wxLogMessage(wxT("Item %ld deleted"), item); |
f6bcfd97 | 1168 | |
100f649f VZ |
1169 | // -1 because the indices were shifted by DeleteItem() |
1170 | item = GetNextItem(item - 1, | |
1171 | wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); | |
91c6cc0e | 1172 | } |
5cd89174 VZ |
1173 | break; |
1174 | ||
17483f70 | 1175 | case 'I': // insert |
5cd89174 VZ |
1176 | if ( GetWindowStyle() & wxLC_REPORT ) |
1177 | { | |
1178 | if ( GetWindowStyle() & wxLC_VIRTUAL ) | |
1179 | { | |
1180 | SetItemCount(GetItemCount() + 1); | |
1181 | } | |
1182 | else // !virtual | |
1183 | { | |
1184 | InsertItemInReportView(event.GetIndex()); | |
1185 | } | |
1186 | } | |
1187 | //else: fall through | |
1188 | ||
1189 | default: | |
9a83f860 | 1190 | LogEvent(event, wxT("OnListKeyDown")); |
5cd89174 VZ |
1191 | |
1192 | event.Skip(); | |
1193 | } | |
f6bcfd97 BP |
1194 | } |
1195 | ||
1196 | void MyListCtrl::OnChar(wxKeyEvent& event) | |
1197 | { | |
9a83f860 | 1198 | wxLogMessage(wxT("Got char event.")); |
f6bcfd97 | 1199 | |
2d33aec9 VZ |
1200 | switch ( event.GetKeyCode() ) |
1201 | { | |
1202 | case 'n': | |
1203 | case 'N': | |
1204 | case 'c': | |
1205 | case 'C': | |
ebc9b89d VZ |
1206 | case 'r': |
1207 | case 'R': | |
1208 | case 'u': | |
1209 | case 'U': | |
17483f70 VZ |
1210 | case 'd': |
1211 | case 'D': | |
1212 | case 'i': | |
1213 | case 'I': | |
2d33aec9 VZ |
1214 | // these are the keys we process ourselves |
1215 | break; | |
1216 | ||
1217 | default: | |
1218 | event.Skip(); | |
1219 | } | |
457814b5 JS |
1220 | } |
1221 | ||
164a7972 VZ |
1222 | void MyListCtrl::OnRightClick(wxMouseEvent& event) |
1223 | { | |
1224 | if ( !event.ControlDown() ) | |
1225 | { | |
1226 | event.Skip(); | |
1227 | return; | |
1228 | } | |
1229 | ||
1230 | int flags; | |
1231 | long subitem; | |
1232 | long item = HitTest(event.GetPosition(), flags, &subitem); | |
1233 | ||
1234 | wxString where; | |
1235 | switch ( flags ) | |
1236 | { | |
9a83f860 VZ |
1237 | case wxLIST_HITTEST_ABOVE: where = wxT("above"); break; |
1238 | case wxLIST_HITTEST_BELOW: where = wxT("below"); break; | |
1239 | case wxLIST_HITTEST_NOWHERE: where = wxT("nowhere near"); break; | |
1240 | case wxLIST_HITTEST_ONITEMICON: where = wxT("on icon of"); break; | |
1241 | case wxLIST_HITTEST_ONITEMLABEL: where = wxT("on label of"); break; | |
1242 | case wxLIST_HITTEST_ONITEMRIGHT: where = wxT("right on"); break; | |
1243 | case wxLIST_HITTEST_TOLEFT: where = wxT("to the left of"); break; | |
1244 | case wxLIST_HITTEST_TORIGHT: where = wxT("to the right of"); break; | |
1245 | default: where = wxT("not clear exactly where on"); break; | |
164a7972 VZ |
1246 | } |
1247 | ||
9a83f860 | 1248 | wxLogMessage(wxT("Right double click %s item %ld, subitem %ld"), |
164a7972 VZ |
1249 | where.c_str(), item, subitem); |
1250 | } | |
1251 | ||
c41ea66a VZ |
1252 | void MyListCtrl::LogEvent(const wxListEvent& event, const wxChar *eventName) |
1253 | { | |
9a83f860 | 1254 | wxLogMessage(wxT("Item %ld: %s (item text = %s, data = %ld)"), |
f6bcfd97 BP |
1255 | event.GetIndex(), eventName, |
1256 | event.GetText().c_str(), event.GetData()); | |
c41ea66a | 1257 | } |
435fe83e | 1258 | |
98ec9dbe VZ |
1259 | wxString MyListCtrl::OnGetItemText(long item, long column) const |
1260 | { | |
b0401bea VZ |
1261 | if ( GetItemCount() == WXSIZEOF(SMALL_VIRTUAL_VIEW_ITEMS) ) |
1262 | { | |
1263 | return SMALL_VIRTUAL_VIEW_ITEMS[item][column]; | |
1264 | } | |
ebc9b89d | 1265 | else // "big" virtual control |
b0401bea | 1266 | { |
9a83f860 | 1267 | return wxString::Format(wxT("Column %ld of item %ld"), column, item); |
b0401bea | 1268 | } |
98ec9dbe VZ |
1269 | } |
1270 | ||
06db67bc | 1271 | int MyListCtrl::OnGetItemColumnImage(long item, long column) const |
98ec9dbe | 1272 | { |
06db67bc RD |
1273 | if (!column) |
1274 | return 0; | |
1275 | ||
ebc9b89d | 1276 | if (!(item % 3) && column == 1) |
06db67bc RD |
1277 | return 0; |
1278 | ||
1279 | return -1; | |
98ec9dbe VZ |
1280 | } |
1281 | ||
6c02c329 VZ |
1282 | wxListItemAttr *MyListCtrl::OnGetItemAttr(long item) const |
1283 | { | |
ebc9b89d VZ |
1284 | // test to check that RefreshItem() works correctly: when m_updated is |
1285 | // set to some item and it is refreshed, we highlight the item | |
1286 | if ( item == m_updated ) | |
1287 | { | |
1288 | static wxListItemAttr s_attrHighlight(*wxRED, wxNullColour, wxNullFont); | |
1289 | return &s_attrHighlight; | |
1290 | } | |
1291 | ||
6c02c329 VZ |
1292 | return item % 2 ? NULL : (wxListItemAttr *)&m_attr; |
1293 | } | |
1294 | ||
5cd89174 VZ |
1295 | void MyListCtrl::InsertItemInReportView(int i) |
1296 | { | |
1297 | wxString buf; | |
9a83f860 | 1298 | buf.Printf(wxT("This is item %d"), i); |
5cd89174 VZ |
1299 | long tmp = InsertItem(i, buf, 0); |
1300 | SetItemData(tmp, i); | |
1301 | ||
9a83f860 | 1302 | buf.Printf(wxT("Col 1, item %d"), i); |
eb257f65 | 1303 | SetItem(tmp, 1, buf); |
5cd89174 | 1304 | |
9a83f860 | 1305 | buf.Printf(wxT("Item %d in column 2"), i); |
eb257f65 | 1306 | SetItem(tmp, 2, buf); |
5cd89174 | 1307 | } |
107ff668 JS |
1308 | |
1309 | #if USE_CONTEXT_MENU | |
1310 | void MyListCtrl::OnContextMenu(wxContextMenuEvent& event) | |
1311 | { | |
d53b09d8 VZ |
1312 | if (GetEditControl() == NULL) |
1313 | { | |
1314 | wxPoint point = event.GetPosition(); | |
1315 | // If from keyboard | |
1316 | if ( (point.x == -1) && (point.y == -1) ) | |
1317 | { | |
1318 | wxSize size = GetSize(); | |
1319 | point.x = size.x / 2; | |
1320 | point.y = size.y / 2; | |
1321 | } | |
1322 | else | |
1323 | { | |
1324 | point = ScreenToClient(point); | |
1325 | } | |
1326 | ShowContextMenu(point); | |
1327 | } | |
1328 | else | |
1329 | { | |
1330 | // the user is editing: | |
1331 | // allow the text control to display its context menu | |
1332 | // if it has one (it has on Windows) rather than display our one | |
1333 | event.Skip(); | |
107ff668 | 1334 | } |
107ff668 JS |
1335 | } |
1336 | #endif | |
1337 | ||
1338 | void MyListCtrl::ShowContextMenu(const wxPoint& pos) | |
1339 | { | |
1340 | wxMenu menu; | |
1341 | ||
9a83f860 | 1342 | menu.Append(wxID_ABOUT, wxT("&About")); |
107ff668 | 1343 | menu.AppendSeparator(); |
9a83f860 | 1344 | menu.Append(wxID_EXIT, wxT("E&xit")); |
107ff668 JS |
1345 | |
1346 | PopupMenu(&menu, pos.x, pos.y); | |
1347 | } |