Added the full implementation, pending usage into an experiment
This commit is contained in:
parent
e6087f3818
commit
f834b6046e
@ -198,4 +198,11 @@ class list(object):
|
||||
return selected
|
||||
|
||||
def Enable(self, value):
|
||||
return self.list.Enable(value)
|
||||
return self.list.Enable(value)
|
||||
|
||||
class selectableList(list):
|
||||
|
||||
def create_list(self, parent):
|
||||
self.list = selectableBaseList(parent, -1, **self.listArguments)
|
||||
for i in range(0, len(self.columns)):
|
||||
self.list.InsertColumn(i, "%s" % (self.columns[i]))
|
Loading…
Reference in New Issue
Block a user