schrodinger.application.models.gui.definition_editor_dialog module¶
- class schrodinger.application.models.gui.definition_editor_dialog.TableWithRowInteraction(table: DefaultRowTable, *args, **kwargs)¶
Bases:
BaseWidgetA table that allows users to add/remove rows interactively
- __init__(table: DefaultRowTable, *args, **kwargs)¶
- initSetUp()¶
Creates widget from
uiand stores itui_widget.Suggested subclass use: create and initialize subwidgets, and connect signals.
- initLayOut()¶
Create a vertical layout for the widget (
widget_layout) and populate it with two vertical sub-layouts:main_layoutandbottom_layout.If the user has specified the
uidata member, insert the resultantui_widgetintomain_layout.If the widget already has a layout defined, this method will produce a warning (but not a traceback).
main_layoutandbottom_layoutwill be inserted into the existing widget layout, which will not be the same aswidget_layout. It is therefore recommended that this mixin is used only with widgets that do not already have a layout.Suggested subclass use: create, initialize, and populate layouts.
- Default = 'default'¶
- Panel = 'panel'¶
- class schrodinger.application.models.gui.definition_editor_dialog.DefinitionEditorDialog(*args, **kwargs)¶
Bases:
BaseModelEditorDialog- model_class¶
alias of
DefinitionEditorModel
- PROPAGATE_PANELX_STYLES = True¶
- SAVE_MODE_TO_TITLE = {<SaveMode.CREATE: 1>: 'Create Model Definition', <SaveMode.EDIT: 2>: 'Edit Model Definition'}¶
- initSetUp()¶
Creates widget from
uiand stores itui_widget.Suggested subclass use: create and initialize subwidgets, and connect signals.
- initLayOut()¶
@overrides: widgetmixins.InitMixin
- defineMappings()¶
Override this in the subclass to define mappings. Should return a list of tuples [(<target>, <param>)]. Targets can be:
a basic widget, like
QLineEditorQComboBoxa custom object that inherits
MapperMixinorTargetMixina
TargetSpecinstancea slot
For common widgets, standard signals and getter/setter methods will be used, as defined in
mappers._get_default_access_names().For more fine-grained custom control, instantiate a
TargetSpecobject, which allows custom setters, getters, and signals to be specified.Supplying a slot as the first element of the tuple is equivalent to providing
TargetSpec(slot=my_slot).Note that all target slots are triggered on
setModel()as well as in response to the specified signal.The param is an abstract param reference, e.g. MyModel.my_param.
Example:
def defineMappings(self): combo = self.style_combo return [(self.name_le, MyModel.name), (TargetSpec(combo, getter=combo.currentText, setter=combo.setCurrentText), MyModel.style), (self.coord_widget, MyModel.coord), (self._onASLTextChanged, MyModel.asl_text)]
- definition() ModelDefinition¶
- setDefinition(model_def: ModelDefinition)¶
- metadata() ModelMetadata¶
- Default = 'default'¶
- Panel = 'panel'¶
- schrodinger.application.models.gui.definition_editor_dialog.main()¶