]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/mixins/listctrl.py
f215ee220f721a3f86670d00364cca97869a8bbb
1 #----------------------------------------------------------------------------
2 # Name: wxPython.lib.mixins.listctrl
3 # Purpose: Helpful mix-in classes for wxListCtrl
9 # Copyright: (c) 2001 by Total Control Software
10 # Licence: wxWindows license
11 #----------------------------------------------------------------------------
13 from wxPython
.wx
import *
15 #----------------------------------------------------------------------------
17 class wxColumnSorterMixin
:
19 A mixin class that handles sorting of a wxListCtrl in REPORT mode when
20 the column header is clicked on.
22 There are a few requirments needed in order for this to work genericly:
24 1. The combined class must have a GetListCtrl method that
25 returns the wxListCtrl to be sorted, and the list control
26 must exist at the time the wxColumnSorterMixin.__init__
27 method is called because it uses GetListCtrl.
29 2. Items in the list control must have a unique data value set
30 with list.SetItemData.
32 3. The combined class must have an attribute named itemDataMap
33 that is a dictionary mapping the data values to a sequence of
34 objects representing the values in each column. These values
35 are compared in the column sorter to determine sort order.
37 Interesting methods to override are GetColumnSorter,
38 GetSecondarySortValues, and GetSortImages. See below for details.
41 def __init__(self
, numColumns
):
42 self
._colSortFlag
= [0] * numColumns
45 list = self
.GetListCtrl()
47 raise ValueError, "No wxListCtrl available"
48 EVT_LIST_COL_CLICK(list, list.GetId(), self
.__OnColClick
)
51 def SortListItems(self
, col
=-1, ascending
=1):
52 """Sort the list on demand. Can also be used to set the sort column and order."""
56 self
._colSortFlag
[col
] = ascending
57 self
.GetListCtrl().SortItems(self
.GetColumnSorter())
58 self
.__updateImages
(oldCol
)
61 def GetColumnWidths(self
):
63 Returns a list of column widths. Can be used to help restore the current
66 list = self
.GetListCtrl()
68 for x
in range(len(self
._colSortFlag
)):
69 rv
.append(list.GetColumnWidth(x
))
73 def GetSortImages(self
):
75 Returns a tuple of image list indexesthe indexes in the image list for an image to be put on the column
76 header when sorting in descending order.
78 return (-1, -1) # (decending, ascending) image IDs
81 def GetColumnSorter(self
):
82 """Returns a callable object to be used for comparing column values when sorting."""
83 return self
.__ColumnSorter
86 def GetSecondarySortValues(self
, col
, key1
, key2
):
87 """Returns a tuple of 2 values to use for secondary sort values when the
88 items in the selected column match equal. The default just returns the
93 def __OnColClick(self
, evt
):
95 self
._col
= col
= evt
.GetColumn()
96 self
._colSortFlag
[col
] = not self
._colSortFlag
[col
]
97 self
.GetListCtrl().SortItems(self
.GetColumnSorter())
98 self
.__updateImages
(oldCol
)
102 def __ColumnSorter(self
, key1
, key2
):
104 ascending
= self
._colSortFlag
[col
]
105 item1
= self
.itemDataMap
[key1
][col
]
106 item2
= self
.itemDataMap
[key2
][col
]
108 cmpVal
= cmp(item1
, item2
)
110 # If the items are equal then pick something else to make the sort value unique
112 cmpVal
= apply(cmp, self
.GetSecondarySortValues(col
, key1
, key2
))
120 def __updateImages(self
, oldCol
):
121 sortImages
= self
.GetSortImages()
122 if self
._col
!= -1 and sortImages
[0] != -1:
123 img
= sortImages
[self
._colSortFlag
[self
._col
]]
124 list = self
.GetListCtrl()
126 list.ClearColumnImage(oldCol
)
127 list.SetColumnImage(self
._col
, img
)
130 #----------------------------------------------------------------------------