|
__init__(self,
parent,
proplist=None,
multi=False,
presort=True,
show_family_menu=True,
show_family_name=True,
show_alpha_toggle=False,
show_filter_field=False,
show_aux_listbox=False,
move_to_aux=False)
PropertySelector requires <parent> argument, which should be a Qt
Widget into which this frame should be added. |
|
|
|
|
|
|
|
sortAlphabetically(self,
proplist) |
|
|
|
sortByInitialOrder(self,
proplist) |
|
|
|
alphabetizeNames(self)
Alternate order the displayed list items, either alphabetically or in
the native order depending on the value of self.alpha_toggle. |
|
|
|
checkUserNames(self)
Assigns PropertyName.user_name attributes, for all members in
self.proplist. |
|
|
|
filteringChanged(self,
ignored)
Called when value of the family pull-down menu is changed. |
|
|
|
filterProperties(self,
props)
Limit the specified list items to those items that match the
self.filter_field filter regex and family option menu. |
|
|
|
|
|
setProperties(self,
proplist,
selected_indexes=None)
Set the listbox items to the structure.PropertyName.user_name
attributes for the PropertyName instances in proplist. |
|
|
|
displayProperties(self,
display_list,
selected_list=None)
Adjust the display state and selection states to specified
lists of PropertyName objects. |
|
|
|
getSelected(self)
Return a list of selected PropertyName objects. |
|
|
|
selectAll(self)
Select all properties in the listbox. |
|
|
|
deselectAll(self)
Clear property selection |
|
|
|
setEnabled(self,
enabled)
Enable/disable the PropertySelector widget |
|
|
|
getListboxSelection(self) |
|
|
|
getAuxListboxSelection(self) |
|
|
|
moveAuxSelectedDown(self)
Reorders the displayed list items in self.aux_listbox such that the
selected item moves down one rung in the listbox. |
|
|
|
moveAuxSelectedUp(self)
Reorders the displayed list items in self.aux_listbox such that the
selected item moves up one rung in the listbox. |
|
|
|
addToAuxListbox(self)
Adds items selected in self.listbox to self.aux_listbox. |
|
|
|
delFromAuxListbox(self)
Removes selected item from self.aux_listbox. |
|
|
|
showAuxProperties(self,
proplist,
selected_indexes=None)
Display the auxilary listbox items to the
structure.PropertyName.user_name attributes for the PropertyName
instances in proplist. |
|
|