schrodinger.application.bunsen.gui_old.connection_gui module¶
- class schrodinger.application.bunsen.gui_old.connection_gui.ConnectionState¶
Bases:
Enum- INITIAL = 1¶
- NO_AUTH = 2¶
- INVALID_TOKEN = 3¶
- INVALID_URL = 4¶
- CONNECTED = 5¶
- class schrodinger.application.bunsen.gui_old.connection_gui.BmiConnectionModel(*args, _param_type=<object object>, **kwargs)¶
Bases:
CompoundParam- session_url: str¶
A parameter of the class.
- token: str¶
A parameter of the class.
- conn_state: ConnectionState¶
A parameter of the class.
- conn_stateChanged¶
A
pyqtSignalemitted by instances of the class.
- conn_stateReplaced¶
A
pyqtSignalemitted by instances of the class.
- session_urlChanged¶
A
pyqtSignalemitted by instances of the class.
- session_urlReplaced¶
A
pyqtSignalemitted by instances of the class.
- tokenChanged¶
A
pyqtSignalemitted by instances of the class.
- tokenReplaced¶
A
pyqtSignalemitted by instances of the class.
- class schrodinger.application.bunsen.gui_old.connection_gui.BmiConnectionPanel(*args, **kwargs)¶
Bases:
Panel- model_class¶
alias of
BmiConnectionModel
- bunsenConnectionChanged¶
A
pyqtSignalemitted by instances of the class.
- initSetUp()¶
Creates widget from
uiand stores itui_widget.Suggested subclass use: create and initialize subwidgets, and connect signals.
- initLayOut()¶
@overrides: widgetmixins.InitMixin
- defineMappings() list¶
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)]
- getSessionLabel() str | None¶
Return the connected session as
Title(id), or None if not connected.- Returns:
the session title and id joined as a single string, or None when the panel is not connected.