]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/demo/ListCtrl.py
fixed compile error
[wxWidgets.git] / wxPython / demo / ListCtrl.py
... / ...
CommitLineData
1#----------------------------------------------------------------------------
2# Name: ListCtrl.py
3# Purpose: Testing lots of stuff, controls, window types, etc.
4#
5# Author: Robin Dunn & Gary Dumer
6#
7# Created:
8# RCS-ID: $Id$
9# Copyright: (c) 1998 by Total Control Software
10# Licence: wxWindows license
11#----------------------------------------------------------------------------
12
13import sys
14import wx
15import wx.lib.mixins.listctrl as listmix
16
17import images
18
19#---------------------------------------------------------------------------
20
21musicdata = {
221 : ("Bad English", "The Price Of Love", "Rock"),
232 : ("DNA featuring Suzanne Vega", "Tom's Diner", "Rock"),
243 : ("George Michael", "Praying For Time", "Rock"),
254 : ("Gloria Estefan", "Here We Are", "Rock"),
265 : ("Linda Ronstadt", "Don't Know Much", "Rock"),
276 : ("Michael Bolton", "How Am I Supposed To Live Without You", "Blues"),
287 : ("Paul Young", "Oh Girl", "Rock"),
298 : ("Paula Abdul", "Opposites Attract", "Rock"),
309 : ("Richard Marx", "Should've Known Better", "Rock"),
3110: ("Rod Stewart", "Forever Young", "Rock"),
3211: ("Roxette", "Dangerous", "Rock"),
3312: ("Sheena Easton", "The Lover In Me", "Rock"),
3413: ("Sinead O'Connor", "Nothing Compares 2 U", "Rock"),
3514: ("Stevie B.", "Because I Love You", "Rock"),
3615: ("Taylor Dayne", "Love Will Lead You Back", "Rock"),
3716: ("The Bangles", "Eternal Flame", "Rock"),
3817: ("Wilson Phillips", "Release Me", "Rock"),
3918: ("Billy Joel", "Blonde Over Blue", "Rock"),
4019: ("Billy Joel", "Famous Last Words", "Rock"),
4120: ("Billy Joel", "Lullabye (Goodnight, My Angel)", "Rock"),
4221: ("Billy Joel", "The River Of Dreams", "Rock"),
4322: ("Billy Joel", "Two Thousand Years", "Rock"),
4423: ("Janet Jackson", "Alright", "Rock"),
4524: ("Janet Jackson", "Black Cat", "Rock"),
4625: ("Janet Jackson", "Come Back To Me", "Rock"),
4726: ("Janet Jackson", "Escapade", "Rock"),
4827: ("Janet Jackson", "Love Will Never Do (Without You)", "Rock"),
4928: ("Janet Jackson", "Miss You Much", "Rock"),
5029: ("Janet Jackson", "Rhythm Nation", "Rock"),
5130: ("Janet Jackson", "State Of The World", "Rock"),
5231: ("Janet Jackson", "The Knowledge", "Rock"),
5332: ("Spyro Gyra", "End of Romanticism", "Jazz"),
5433: ("Spyro Gyra", "Heliopolis", "Jazz"),
5534: ("Spyro Gyra", "Jubilee", "Jazz"),
5635: ("Spyro Gyra", "Little Linda", "Jazz"),
5736: ("Spyro Gyra", "Morning Dance", "Jazz"),
5837: ("Spyro Gyra", "Song for Lorraine", "Jazz"),
5938: ("Yes", "Owner Of A Lonely Heart", "Rock"),
6039: ("Yes", "Rhythm Of Love", "Rock"),
6140: ("Cusco", "Dream Catcher", "New Age"),
6241: ("Cusco", "Geronimos Laughter", "New Age"),
6342: ("Cusco", "Ghost Dance", "New Age"),
6443: ("Blue Man Group", "Drumbone", "New Age"),
6544: ("Blue Man Group", "Endless Column", "New Age"),
6645: ("Blue Man Group", "Klein Mandelbrot", "New Age"),
6746: ("Kenny G", "Silhouette", "Jazz"),
6847: ("Sade", "Smooth Operator", "Jazz"),
6948: ("David Arkenstone", "Papillon (On The Wings Of The Butterfly)", "New Age"),
7049: ("David Arkenstone", "Stepping Stars", "New Age"),
7150: ("David Arkenstone", "Carnation Lily Lily Rose", "New Age"),
7251: ("David Lanz", "Behind The Waterfall", "New Age"),
7352: ("David Lanz", "Cristofori's Dream", "New Age"),
7453: ("David Lanz", "Heartsounds", "New Age"),
7554: ("David Lanz", "Leaves on the Seine", "New Age"),
76}
77
78#---------------------------------------------------------------------------
79
80class TestListCtrl(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin):
81 def __init__(self, parent, ID, pos=wx.DefaultPosition,
82 size=wx.DefaultSize, style=0):
83 wx.ListCtrl.__init__(self, parent, ID, pos, size, style)
84 listmix.ListCtrlAutoWidthMixin.__init__(self)
85
86
87class TestListCtrlPanel(wx.Panel, listmix.ColumnSorterMixin):
88 def __init__(self, parent, log):
89 wx.Panel.__init__(self, parent, -1, style=wx.WANTS_CHARS)
90
91 self.log = log
92 tID = wx.NewId()
93
94 self.il = wx.ImageList(16, 16)
95
96 self.idx1 = self.il.Add(images.getSmilesBitmap())
97 self.sm_up = self.il.Add(images.getSmallUpArrowBitmap())
98 self.sm_dn = self.il.Add(images.getSmallDnArrowBitmap())
99
100 self.list = TestListCtrl(self, tID,
101 style=wx.LC_REPORT
102 #| wx.BORDER_SUNKEN
103 | wx.BORDER_NONE
104 | wx.LC_EDIT_LABELS
105 | wx.LC_SORT_ASCENDING
106 #| wx.LC_NO_HEADER
107 #| wx.LC_VRULES
108 #| wx.LC_HRULES
109 )
110
111 self.list.SetImageList(self.il, wx.IMAGE_LIST_SMALL)
112
113 self.PopulateList()
114
115 # Now that the list exists we can init the other base class,
116 # see wxPython/lib/mixins/listctrl.py
117 self.itemDataMap = musicdata
118 listmix.ColumnSorterMixin.__init__(self, 3)
119 #self.SortListItems(0, True)
120
121 self.Bind(wx.EVT_SIZE, self.OnSize)
122
123 self.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnItemSelected, self.list)
124 self.Bind(wx.EVT_LIST_ITEM_DESELECTED, self.OnItemDeselected, self.list)
125 self.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnItemActivated, self.list)
126 self.Bind(wx.EVT_LIST_DELETE_ITEM, self.OnItemDelete, self.list)
127 self.Bind(wx.EVT_LIST_COL_CLICK, self.OnColClick, self.list)
128 self.Bind(wx.EVT_LIST_COL_RIGHT_CLICK, self.OnColRightClick, self.list)
129 self.Bind(wx.EVT_LIST_COL_BEGIN_DRAG, self.OnColBeginDrag, self.list)
130 self.Bind(wx.EVT_LIST_COL_DRAGGING, self.OnColDragging, self.list)
131 self.Bind(wx.EVT_LIST_COL_END_DRAG, self.OnColEndDrag, self.list)
132 self.Bind(wx.EVT_LIST_BEGIN_LABEL_EDIT, self.OnBeginEdit, self.list)
133
134 self.list.Bind(wx.EVT_LEFT_DCLICK, self.OnDoubleClick)
135 self.list.Bind(wx.EVT_RIGHT_DOWN, self.OnRightDown)
136
137 # for wxMSW
138 self.list.Bind(wx.EVT_COMMAND_RIGHT_CLICK, self.OnRightClick)
139
140 # for wxGTK
141 self.list.Bind(wx.EVT_RIGHT_UP, self.OnRightClick)
142
143
144 def PopulateList(self):
145 if 0:
146 # for normal, simple columns, you can add them like this:
147 self.list.InsertColumn(0, "Artist")
148 self.list.InsertColumn(1, "Title", wx.LIST_FORMAT_RIGHT)
149 self.list.InsertColumn(2, "Genre")
150 else:
151 # but since we want images on the column header we have to do it the hard way:
152 info = wx.ListItem()
153 info.m_mask = wx.LIST_MASK_TEXT | wx.LIST_MASK_IMAGE | wx.LIST_MASK_FORMAT
154 info.m_image = -1
155 info.m_format = 0
156 info.m_text = "Artist"
157 self.list.InsertColumnInfo(0, info)
158
159 info.m_format = wx.LIST_FORMAT_RIGHT
160 info.m_text = "Title"
161 self.list.InsertColumnInfo(1, info)
162
163 info.m_format = 0
164 info.m_text = "Genre"
165 self.list.InsertColumnInfo(2, info)
166
167 items = musicdata.items()
168 for key, data in items:
169 index = self.list.InsertImageStringItem(sys.maxint, data[0], self.idx1)
170 self.list.SetStringItem(index, 1, data[1])
171 self.list.SetStringItem(index, 2, data[2])
172 self.list.SetItemData(index, key)
173
174 self.list.SetColumnWidth(0, wx.LIST_AUTOSIZE)
175 self.list.SetColumnWidth(1, wx.LIST_AUTOSIZE)
176 self.list.SetColumnWidth(2, 100)
177
178 # show how to select an item
179 self.list.SetItemState(5, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED)
180
181 # show how to change the colour of a couple items
182 item = self.list.GetItem(1)
183 item.SetTextColour(wx.BLUE)
184 self.list.SetItem(item)
185 item = self.list.GetItem(4)
186 item.SetTextColour(wx.RED)
187 self.list.SetItem(item)
188
189 self.currentItem = 0
190
191
192 # Used by the ColumnSorterMixin, see wxPython/lib/mixins/listctrl.py
193 def GetListCtrl(self):
194 return self.list
195
196 # Used by the ColumnSorterMixin, see wxPython/lib/mixins/listctrl.py
197 def GetSortImages(self):
198 return (self.sm_dn, self.sm_up)
199
200
201 def OnRightDown(self, event):
202 self.x = event.GetX()
203 self.y = event.GetY()
204 self.log.WriteText("x, y = %s\n" % str((self.x, self.y)))
205 item, flags = self.list.HitTest((self.x, self.y))
206
207 if flags & wx.LIST_HITTEST_ONITEM:
208 self.list.Select(item)
209
210 event.Skip()
211
212
213 def getColumnText(self, index, col):
214 item = self.list.GetItem(index, col)
215 return item.GetText()
216
217
218 def OnItemSelected(self, event):
219 ##print event.GetItem().GetTextColour()
220 self.currentItem = event.m_itemIndex
221 self.log.WriteText("OnItemSelected: %s, %s, %s, %s\n" %
222 (self.currentItem,
223 self.list.GetItemText(self.currentItem),
224 self.getColumnText(self.currentItem, 1),
225 self.getColumnText(self.currentItem, 2)))
226
227 if self.currentItem == 10:
228 self.log.WriteText("OnItemSelected: Veto'd selection\n")
229 #event.Veto() # doesn't work
230 # this does
231 self.list.SetItemState(10, 0, wx.LIST_STATE_SELECTED)
232
233 event.Skip()
234
235
236 def OnItemDeselected(self, evt):
237 item = evt.GetItem()
238 self.log.WriteText("OnItemDeselected: %d" % evt.m_itemIndex)
239
240 # Show how to reselect something we don't want deselected
241 if evt.m_itemIndex == 11:
242 wx.CallAfter(self.list.SetItemState, 11, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED)
243
244
245 def OnItemActivated(self, event):
246 self.currentItem = event.m_itemIndex
247 self.log.WriteText("OnItemActivated: %s\nTopItem: %s" %
248 (self.list.GetItemText(self.currentItem), self.list.GetTopItem()))
249
250 def OnBeginEdit(self, event):
251 self.log.WriteText("OnBeginEdit")
252 event.Allow()
253
254 def OnItemDelete(self, event):
255 self.log.WriteText("OnItemDelete\n")
256
257 def OnColClick(self, event):
258 self.log.WriteText("OnColClick: %d\n" % event.GetColumn())
259 event.Skip()
260
261 def OnColRightClick(self, event):
262 item = self.list.GetColumn(event.GetColumn())
263 self.log.WriteText("OnColRightClick: %d %s\n" %
264 (event.GetColumn(), (item.GetText(), item.GetAlign(),
265 item.GetWidth(), item.GetImage())))
266
267 def OnColBeginDrag(self, event):
268 self.log.WriteText("OnColBeginDrag\n")
269 ## Show how to not allow a column to be resized
270 #if event.GetColumn() == 0:
271 # event.Veto()
272
273
274 def OnColDragging(self, event):
275 self.log.WriteText("OnColDragging\n")
276
277 def OnColEndDrag(self, event):
278 self.log.WriteText("OnColEndDrag\n")
279
280 def OnDoubleClick(self, event):
281 self.log.WriteText("OnDoubleClick item %s\n" % self.list.GetItemText(self.currentItem))
282 event.Skip()
283
284 def OnRightClick(self, event):
285 self.log.WriteText("OnRightClick %s\n" % self.list.GetItemText(self.currentItem))
286
287 # only do this part the first time so the events are only bound once
288 if not hasattr(self, "popupID1"):
289 self.popupID1 = wx.NewId()
290 self.popupID2 = wx.NewId()
291 self.popupID3 = wx.NewId()
292 self.popupID4 = wx.NewId()
293 self.popupID5 = wx.NewId()
294 self.popupID6 = wx.NewId()
295
296 self.Bind(wx.EVT_MENU, self.OnPopupOne, id=self.popupID1)
297 self.Bind(wx.EVT_MENU, self.OnPopupTwo, id=self.popupID2)
298 self.Bind(wx.EVT_MENU, self.OnPopupThree, id=self.popupID3)
299 self.Bind(wx.EVT_MENU, self.OnPopupFour, id=self.popupID4)
300 self.Bind(wx.EVT_MENU, self.OnPopupFive, id=self.popupID5)
301 self.Bind(wx.EVT_MENU, self.OnPopupSix, id=self.popupID6)
302
303 # make a menu
304 menu = wx.Menu()
305 # add some items
306 menu.Append(self.popupID1, "FindItem tests")
307 menu.Append(self.popupID2, "Iterate Selected")
308 menu.Append(self.popupID3, "ClearAll and repopulate")
309 menu.Append(self.popupID4, "DeleteAllItems")
310 menu.Append(self.popupID5, "GetItem")
311 menu.Append(self.popupID6, "Edit")
312
313 # Popup the menu. If an item is selected then its handler
314 # will be called before PopupMenu returns.
315 self.PopupMenu(menu, (self.x, self.y))
316 menu.Destroy()
317
318
319 def OnPopupOne(self, event):
320 self.log.WriteText("Popup one\n")
321 print "FindItem:", self.list.FindItem(-1, "Roxette")
322 print "FindItemData:", self.list.FindItemData(-1, 11)
323
324 def OnPopupTwo(self, event):
325 self.log.WriteText("Selected items:\n")
326 index = self.list.GetFirstSelected()
327
328 while index != -1:
329 self.log.WriteText(" %s: %s\n" % (self.list.GetItemText(index), self.getColumnText(index, 1)))
330 index = self.list.GetNextSelected(index)
331
332 def OnPopupThree(self, event):
333 self.log.WriteText("Popup three\n")
334 self.list.ClearAll()
335 wx.CallAfter(self.PopulateList)
336
337 def OnPopupFour(self, event):
338 self.list.DeleteAllItems()
339
340 def OnPopupFive(self, event):
341 item = self.list.GetItem(self.currentItem)
342 print item.m_text, item.m_itemId, self.list.GetItemData(self.currentItem)
343
344 def OnPopupSix(self, event):
345 self.list.EditLabel(self.currentItem)
346
347
348 def OnSize(self, event):
349 w,h = self.GetClientSizeTuple()
350 self.list.SetDimensions(0, 0, w, h)
351
352
353
354#---------------------------------------------------------------------------
355
356def runTest(frame, nb, log):
357 win = TestListCtrlPanel(nb, log)
358 return win
359
360#---------------------------------------------------------------------------
361
362
363overview = """\
364<html>
365<body>
366A list control presents lists in a number of formats: list view, report view,
367icon view and small icon view. In any case, elements are numbered from zero.
368For all these modes (but not for virtual list controls), the items are stored
369in the control and must be added to it using InsertItem method.
370
371<p>To intercept events from a list control, use the event table macros described in
372<code>wxListEvent.</code>
373
374<h3>Mix-ins</h3>
375This example demonstrates how to use mixins. The following mixins are available.
376
377<h4>ColumnSorterMixin</h4>
378
379<code><b>ColumnSorterMixin(numColumns)</b></code>
380
381<p>A mixin class that handles sorting of a wxListCtrl in REPORT mode when the column
382header is clicked on.
383
384<p>There are a few requirments needed in order for this to work genericly:
385<p><ol>
386 <li>The combined class must have a <code>GetListCtrl</code> method that returns
387 the ListCtrl to be sorted, and the list control must exist at the time the
388 <code>ColumnSorterMixin.__init__()</code>method is called because it uses
389 <code>GetListCtrl</code>.
390
391 <li>Items in the list control must have a unique data value set with
392 <code>list.SetItemData</code>.
393
394 <li>The combined class must have an attribute named <code>itemDataMap</code>
395 that is a dictionary mapping the data values to a sequence of objects
396 representing the values in each column. These valuesare compared in
397 the column sorter to determine sort order.
398</ol>
399
400<p>Interesting methods to override are <code>GetColumnSorter</code>,
401<code>GetSecondarySortValues</code>, and <code>GetSortImages</code>.
402
403<h5>Methods</h5>
404<dl>
405<dt><code>SetColumnCount(newNumColumns)</code>
406<dd>Informs the mixin as to the number of columns in the control. When it is
407set, it also sets up an event handler for <code>EVT_LIST_COL_CLICK</code> events.
408
409<dt><code>SortListItems(col=-1, ascending=1)</code>
410<dd>Sort the list on demand. Can also be used to set the sort column and order.
411
412<dt><code>GetColumnWidths()</code>
413<dd>Returns a list of column widths. Can be used to help restore the current
414view later.
415
416<dt><code>GetSortImages()</code>
417<dd>Returns a tuple of image list indexes the indexes in the image list for an
418image to be put on the column header when sorting in descending order
419
420<dt><code>GetColumnSorter()</code>
421<dd>Returns a callable object to be used for comparing column values when sorting.
422
423<dt><code>GetSecondarySortValues(col, key1, key2)</code>
424<dd>Returns a tuple of 2 values to use for secondary sort values when the
425items in the selected column match equal. The default just returns the
426item data values.
427
428</dl>
429
430<h4>ListCtrlAutoWidthMixin</h4>
431
432<code><b>ListCtrlAutoWidthMixin()</b></code>
433
434<p>A mix-in class that automatically resizes the last column to take up the
435remaining width of the ListCtrl.
436
437<p>This causes the ListCtrl to automatically take up the full width of the list,
438without either a horizontal scroll bar (unless absolutely necessary) or empty
439space to the right of the last column.
440
441<p><b>NOTE:</b> This only works for report-style lists.
442
443<p><b>WARNING:</b> If you override the <code>EVT_SIZE</code> event in your ListCtrl,
444make sure you call event.Skip() to ensure that the mixin's _OnResize method is
445called.
446
447<p>This mix-in class was written by <a href='mailto:ewestra@wave.co.nz'>Erik Westra </a>
448
449<h5>Methods</h5>
450<dl>
451
452<dt><code>resizeLastColumn(minWidth)</code>
453<dd>Resize the last column appropriately. If the list's columns are too wide to
454fit within the window, we use a horizontal scrollbar. Otherwise, we expand the
455right-most column to take up the remaining free space in the list. This method is
456called automatically when the ListCtrl is resized; you can also call it yourself
457whenever you want the last column to be resized appropriately (eg, when adding,
458removing or resizing columns). 'minWidth' is the preferred minimum width for
459the last column.
460
461</dl>
462
463
464<h4>ListCtrlSelectionManagerMix</h4>
465
466<code><b>ListCtrlSelectionManagerMix()</b></code>
467
468<p>Mixin that defines a platform independent selection policy
469
470<p>As selection single and multi-select list return the item index or a
471list of item indexes respectively.
472
473<h5>Methods</h5>
474<dl>
475
476<dt><code>getPopupMenu()</code>
477<dd>Override to implement dynamic menus (create)
478
479<dt><code>setPopupMenu(menu)</code>
480<dd>Must be set for default behaviour.
481
482<dt><code>afterPopupMenu()</code>
483<dd>Override to implement dynamic menus (destroy).
484
485<dt><code>getSelection()</code>
486<dd>Returns the current selection (or selections as a Python list if extended
487selection is enabled)
488
489
490</body>
491</html>
492"""
493
494
495if __name__ == '__main__':
496 import sys,os
497 import run
498 run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
499