Added the full implementation, pending usage into an experiment

This commit is contained in:
Manuel Cortez 2019-04-26 17:53:55 -05:00
parent e6087f3818
commit f834b6046e

View File

@ -199,3 +199,10 @@ class list(object):
def Enable(self, 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]))