schrodinger.application.jaguar.gui.utils module¶
Utility functions and classes for the Jaguar GUIs
- class schrodinger.application.jaguar.gui.utils.Solvent(name, keyvalue, dielectric, radius, weight, density)¶
 Bases:
tuple- __contains__(key, /)¶
 Return key in self.
- __len__()¶
 Return len(self).
- count(value, /)¶
 Return number of occurrences of value.
- density¶
 Alias for field number 5
- dielectric¶
 Alias for field number 2
- index(value, start=0, stop=9223372036854775807, /)¶
 Return first index of value.
Raises ValueError if the value is not present.
- keyvalue¶
 Alias for field number 1
- name¶
 Alias for field number 0
- radius¶
 Alias for field number 3
- weight¶
 Alias for field number 4
- schrodinger.application.jaguar.gui.utils.count_num_strucs(input_selector)[source]¶
 Count the number of structures currently specified in the input selector widget. Since Jaguar can’t accept more than three structures, this function will return 4 for all values >= 4.
- Parameters
 input_selector (
schrodinger.ui.qt.input_selector.InputSelector) – The input selector widget
- exception schrodinger.application.jaguar.gui.utils.JaguarSettingError[source]¶
 Bases:
ExceptionAn exception indicating that there was an error with the user-specified Jaguar settings
- __init__(*args, **kwargs)¶
 
- args¶
 
- with_traceback()¶
 Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception schrodinger.application.jaguar.gui.utils.JaguarSettingWarning[source]¶
 Bases:
UserWarningA warning indicating that a user-specified Jaguar settings could not be loaded into the GUI
- __init__(*args, **kwargs)¶
 
- args¶
 
- with_traceback()¶
 Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- schrodinger.application.jaguar.gui.utils.find_key_for_value(mydict, value)[source]¶
 This function finds key corresponding to a given value in a dictionary. We assume here that values in a given dictionary are unique.
- Parameters
 mydict (dict) – dictionary
value – value in dictionary. It can be any hashable type.
- Returns
 key, which can be any type.
- schrodinger.application.jaguar.gui.utils.validate_le_float_input(widget, msg=None)[source]¶
 This function checks whether a given line edit widget has a valid input. If it does it will return a float value. Otherwise an exception will be raised. This function should only be used for line edits used to enter float numbers.
- Parameters
 widget (
QLineEdit) – line edit widgetmsg (str) – text of exception error message
- Returns
 valid float number
- Return type
 float
- schrodinger.application.jaguar.gui.utils.catch_jag_errors(func, *args, **kwargs)[source]¶
 A decorator that will display any
JaguarSettingErrorinstances in an error dialog.- Returns
 If the decorated function raised a
JaguarSettingError, False will be returned. Otherwise, the return value of the decorated function will be returned.
- schrodinger.application.jaguar.gui.utils.warn_about_mmjag_unknowns(jag_input, parent=None)[source]¶
 If the JaguarInput object contains any unknown keywords, warn the user about the unknowns and ask them if they want to continue.
- Parameters
 jag_input (schrodinger.application.jaguar.input.JaguarInput) – The JaguarInput object to check for unknown keywords
parent (QtWidgets.QWidget) – The Qt parent widget for the warning dialog
- Returns
 True if we should continue (either there were no unknown keywords, or there were but the user wants to continue). False if we should cancel.
- Return type
 bool
- schrodinger.application.jaguar.gui.utils.calculate_num_protons(struc)[source]¶
 Calculate the number of protons in the specified structure
- Parameters
 struc (schrodinger.structure.Structure) – The structure to calculate protons in
- Returns
 The number of protons
- Return type
 int
- schrodinger.application.jaguar.gui.utils.get_atom_info(ws_atom_num)[source]¶
 Get information about the specified workspace atom
- Parameters
 ws_atom_num (int) – The workspace atom number
- Returns
 A tuple of:
The atom name (after Jaguar atom naming has been applied)
The atom number relative to the entry (rather than relative to the workspace structure)
The entry id
The entry title
- Return type
 tuple
- schrodinger.application.jaguar.gui.utils.atom_name_regex = re.compile('^([^\\W\\d]+)(\\d+)$')¶
 A regular expression that matches Jaguar atom names. Group 1 of the match is the element and group 2 is the number.
- schrodinger.application.jaguar.gui.utils.atom_name_sort_key(atom_name)[source]¶
 Convert a Jaguar atom name into a key for use in sorting by number
- Parameters
 atom_name (str) – The atom name
- Returns
 A tuple of (atom number, element)
- Return type
 tuple
- schrodinger.application.jaguar.gui.utils.generate_job_name(struc_name, task_name, theory, basis)[source]¶
 Generate an appropriate job name for a job with the specified settings. Any settings that are specified as None will be omitted from the job name. If a directory or file with the specified name exists in the current directory, an integer will be appended to the job name.
- Note
 If generating multiple job names, the input for each job must be saved before the next job name is generated. Otherwise, this function will not be able to append the appropriate integer.
- Parameters
 struc_name (str or NoneType) – The structure title
task_name (str or NoneType) – The task name (i.e. a shortened version of the panel name
theory (str or NoneType) – The theory method. Should be “HF”, “LMP2”, or the DFT functional.
basis (str or NoneType) – The basis name
- Returns
 The job name
- Return type
 str
- class schrodinger.application.jaguar.gui.utils.EnhancedComboBox(parent=None, items=None, default_item='', default_index=0, command=None, nocall=False, layout=None, tip='', itemdict=None, adjust_to_contents=True, min_width=None)[source]¶
 Bases:
schrodinger.ui.qt.swidgets.SComboBoxA combo box for use in the Jaguar GUI with several Pythonic enhancements
- setCurrentMmJagData(jag_input, keyword, setting_name)[source]¶
 Set the combo box selection based on the specified mmjag setting The combo box user data must match the mmjag keyword values. If no matching setting is found, a warning will be issued.
- Parameters
 jag_input (
schrodinger.application.jaguar.input.JaguarInput) – A JaguarInput object containing the settings to loadkeyword (str) – The mmjag keyword to load
setting_name (str) – The name of the setting that is being set. This name will only be used when issuing warnings.
- AdjustToContents = 0¶
 
- AdjustToContentsOnFirstShow = 1¶
 
- AdjustToMinimumContentsLength = 2¶
 
- AdjustToMinimumContentsLengthWithIcon = 3¶
 
- DrawChildren = 2¶
 
- DrawWindowBackground = 1¶
 
- IgnoreMask = 4¶
 
- InsertAfterCurrent = 4¶
 
- InsertAlphabetically = 6¶
 
- InsertAtBottom = 3¶
 
- InsertAtCurrent = 2¶
 
- InsertAtTop = 1¶
 
- InsertBeforeCurrent = 5¶
 
- class InsertPolicy¶
 Bases:
int
- NoInsert = 0¶
 
- class PaintDeviceMetric¶
 Bases:
int
- PdmDepth = 6¶
 
- PdmDevicePixelRatio = 11¶
 
- PdmDevicePixelRatioScaled = 12¶
 
- PdmDpiX = 7¶
 
- PdmDpiY = 8¶
 
- PdmHeight = 2¶
 
- PdmHeightMM = 4¶
 
- PdmNumColors = 5¶
 
- PdmPhysicalDpiX = 9¶
 
- PdmPhysicalDpiY = 10¶
 
- PdmWidth = 1¶
 
- PdmWidthMM = 3¶
 
- class RenderFlag¶
 Bases:
int
- class RenderFlags¶
 - class RenderFlags(Union[QWidget.RenderFlags, QWidget.RenderFlag]) None
 - class RenderFlags(QWidget.RenderFlags) None
 Bases:
sip.simplewrapper- __init__(*args, **kwargs)¶
 
- class SizeAdjustPolicy¶
 Bases:
int
- __init__(parent=None, items=None, default_item='', default_index=0, command=None, nocall=False, layout=None, tip='', itemdict=None, adjust_to_contents=True, min_width=None)¶
 Create an SComboBox object.
- Parameters
 parent (QWidget) – The parent widget of this SComboBox
items (list) – list of items (str) to be added to the ComboBox - see also itemdict.
default_item (str) – text of the item to select initially and upon reset
default_index (int) – the index of the item to select initially and upon reset. default_item overrides this parameter.
command (callable) – The slot to connect to the currentIndexChanged[str] signal. This command will be called when the default item is selected during initialization unless nocall=True.
nocall (bool) – True if command should not be called during initialization, False otherwise
layout (QLayout) – The layout to place this widget in
tip (str) – The tooltip for the combo
itemdict (
collections.OrderedDict) – An OrderedDictionary with ComboBox items as keys and data as values. The data for the current ComboBox item is returned by the currentData method. If both items and itemdict are given, items are added first.adjust_to_contents (bool) – True if the size adjust policy should be set to “Adjust to contents”
min_width (int) – this property holds the minimum number of characters that should fit into the combobox
- __len__()¶
 Return len(self).
- acceptDrops(self) bool¶
 
- accessibleDescription(self) str¶
 
- accessibleName(self) str¶
 
- actionEvent(self, QActionEvent)¶
 
- actions(self) List[QAction]¶
 
- activateWindow(self)¶
 
- activated¶
 activated(self, int) [signal] activated(self, str) [signal]
- addAction(text, callback)¶
 Add an “action” menu item. When selected by the user, it will invoke the callback and re-select the previously selected item.
- addActions(self, Iterable[QAction])¶
 
- addItem(*args, **kwargs)¶
 Add given items and emit signals as needed.
- addItems(*args, **kwargs)¶
 Add given items and emit signals as needed.
- addItemsFromDict(items)¶
 Add items to the combo box from a dictionary of {text: user_data}. Note that setting the order of elements requires a
collections.OrderedDict- Parameters
 items (dict) – A dictionary of {text: user_data} to add to the combo box
- adjustSize(self)¶
 
- autoFillBackground(self) bool¶
 
- backgroundRole(self) QPalette.ColorRole¶
 
- baseSize(self) QSize¶
 
- blockSignals(self, bool) bool¶
 
- changeEvent(self, QEvent)¶
 
- childAt(self, QPoint) QWidget¶
 - EnhancedComboBox.childAt(self, int, int) -> QWidget
 
- childEvent(self, QChildEvent)¶
 
- children(self) List[QObject]¶
 
- childrenRect(self) QRect¶
 
- childrenRegion(self) QRegion¶
 
- clear(self)¶
 
- clearEditText(self)¶
 
- clearFocus(self)¶
 
- clearMask(self)¶
 
- close(self) bool¶
 
- closeEvent(self, QCloseEvent)¶
 
- colorCount(self) int¶
 
- completer(self) QCompleter¶
 
- connectNotify(self, QMetaMethod)¶
 
- contentsMargins(self) QMargins¶
 
- contentsRect(self) QRect¶
 
- contextMenuEvent(self, QContextMenuEvent)¶
 
- contextMenuPolicy(self) Qt.ContextMenuPolicy¶
 
- count(self) int¶
 
- create(self, window: PyQt5.sip.voidptr = 0, initializeWindow: bool = True, destroyOldWindow: bool = True)¶
 
- createWindowContainer(QWindow, parent: QWidget = None, flags: Union[Qt.WindowFlags, Qt.WindowType] = 0) QWidget¶
 
- currentData(role=256)¶
 Get the user data for the currently selected item
- Parameters
 role (int) – The role to retrieve data for
- Returns
 The user data
- currentIndex(self) int¶
 
- currentIndexChanged¶
 
- currentString()¶
 Obsolete. Use QComboBox.currentText() instead.
- Return type
 str
- Returns
 The currentText() value of the ComboBox converted to a string
- currentText(self) str¶
 
- currentTextChanged¶
 currentTextChanged(self, str) [signal]
- cursor(self) QCursor¶
 
- customContextMenuRequested¶
 customContextMenuRequested(self, QPoint) [signal]
- customEvent(self, QEvent)¶
 
- deleteLater(self)¶
 
- depth(self) int¶
 
- destroy(self, destroyWindow: bool = True, destroySubWindows: bool = True)¶
 
- destroyed¶
 destroyed(self, object: QObject = None) [signal]
- devType(self) int¶
 
- devicePixelRatio(self) int¶
 
- devicePixelRatioF(self) float¶
 
- devicePixelRatioFScale() float¶
 
- disconnect(QMetaObject.Connection) bool¶
 - disconnect(self) None
 
- disconnectNotify(self, QMetaMethod)¶
 
- dragEnterEvent(self, QDragEnterEvent)¶
 
- dragLeaveEvent(self, QDragLeaveEvent)¶
 
- dragMoveEvent(self, QDragMoveEvent)¶
 
- dropEvent(self, QDropEvent)¶
 
- dumpObjectInfo(self)¶
 
- dumpObjectTree(self)¶
 
- duplicatesEnabled(self) bool¶
 
- dynamicPropertyNames(self) List[QByteArray]¶
 
- editTextChanged¶
 editTextChanged(self, str) [signal]
- effectiveWinId(self) PyQt5.sip.voidptr¶
 
- ensurePolished(self)¶
 
- enterEvent(self, QEvent)¶
 
- event(self, QEvent) bool¶
 
- eventFilter(self, QObject, QEvent) bool¶
 
- find(PyQt5.sip.voidptr) QWidget¶
 
- findChild(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject¶
 - findChild(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject
 
- findChildren(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]¶
 - findChildren(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 
- findData(self, Any, role: int = Qt.UserRole, flags: Union[Qt.MatchFlags, Qt.MatchFlag] = Qt.MatchExactly | Qt.MatchCaseSensitive) int¶
 
- findDataPy(data, role=256)¶
 Get the index of the item containing the specified data. Comparisons are done in Python rather than in C++ (as they are in
findData), so Python types without a direct C++ mapping can be compared correctly.- Parameters
 data (object) – The data to search for
role (int) – The role to search
- Raises
 ValueError – If the specified data cannot be found
- findText(self, str, flags: Union[Qt.MatchFlags, Qt.MatchFlag] = Qt.MatchExactly | Qt.MatchCaseSensitive) int¶
 
- focusInEvent(self, QFocusEvent)¶
 
- focusNextChild(self) bool¶
 
- focusNextPrevChild(self, bool) bool¶
 
- focusOutEvent(self, QFocusEvent)¶
 
- focusPolicy(self) Qt.FocusPolicy¶
 
- focusPreviousChild(self) bool¶
 
- focusProxy(self) QWidget¶
 
- focusWidget(self) QWidget¶
 
- font(self) QFont¶
 
- fontInfo(self) QFontInfo¶
 
- fontMetrics(self) QFontMetrics¶
 
- foregroundRole(self) QPalette.ColorRole¶
 
- frameGeometry(self) QRect¶
 
- frameSize(self) QSize¶
 
- geometry(self) QRect¶
 
- getContentsMargins(self) Tuple[int, int, int, int]¶
 
- grab(self, rectangle: QRect = QRect(QPoint(0, 0), QSize(- 1, - 1))) QPixmap¶
 
- grabGesture(self, Qt.GestureType, flags: Union[Qt.GestureFlags, Qt.GestureFlag] = Qt.GestureFlags())¶
 
- grabKeyboard(self)¶
 
- grabMouse(self)¶
 - grabMouse(self, Union[QCursor, Qt.CursorShape]) None
 
- grabShortcut(self, Union[QKeySequence, QKeySequence.StandardKey, str, int], context: Qt.ShortcutContext = Qt.WindowShortcut) int¶
 
- graphicsEffect(self) QGraphicsEffect¶
 
- graphicsProxyWidget(self) QGraphicsProxyWidget¶
 
- hasFocus(self) bool¶
 
- hasFrame(self) bool¶
 
- hasHeightForWidth(self) bool¶
 
- hasMouseTracking(self) bool¶
 
- hasTabletTracking(self) bool¶
 
- height(self) int¶
 
- heightForWidth(self, int) int¶
 
- heightMM(self) int¶
 
- hide(self)¶
 
- hideEvent(self, QHideEvent)¶
 
- hidePopup(self)¶
 
- highlighted¶
 highlighted(self, int) [signal] highlighted(self, str) [signal]
- iconSize(self) QSize¶
 
- inherits(self, str) bool¶
 
- initPainter(self, QPainter)¶
 
- initStyleOption(self, QStyleOptionComboBox)¶
 
- inputMethodEvent(self, QInputMethodEvent)¶
 
- inputMethodHints(self) Qt.InputMethodHints¶
 
- inputMethodQuery(self, Qt.InputMethodQuery) Any¶
 - inputMethodQuery(self, Qt.InputMethodQuery, Any) Any
 
- EnhancedComboBox.insertAction(self, QAction, QAction)
 
- insertActions(self, QAction, Iterable[QAction])¶
 
- insertItem(self, int, str, userData: Any = None)¶
 - insertItem(self, int, QIcon, str, userData: Any = None) None
 
- insertItems(self, int, Iterable[str])¶
 
- insertPolicy(self) QComboBox.InsertPolicy¶
 
- insertSeparator(self, int)¶
 
- installEventFilter(self, QObject)¶
 
- isActiveWindow(self) bool¶
 
- isAncestorOf(self, QWidget) bool¶
 
- isEditable(self) bool¶
 
- isEnabled(self) bool¶
 
- isEnabledTo(self, QWidget) bool¶
 
- isFullScreen(self) bool¶
 
- isHidden(self) bool¶
 
- isLeftToRight(self) bool¶
 
- isMaximized(self) bool¶
 
- isMinimized(self) bool¶
 
- isModal(self) bool¶
 
- isRightToLeft(self) bool¶
 
- isSignalConnected(self, QMetaMethod) bool¶
 
- isVisible(self) bool¶
 
- isVisibleTo(self, QWidget) bool¶
 
- isWidgetType(self) bool¶
 
- isWindow(self) bool¶
 
- isWindowModified(self) bool¶
 
- isWindowType(self) bool¶
 
- itemData(self, int, role: int = Qt.UserRole) Any¶
 
- itemDelegate(self) QAbstractItemDelegate¶
 
- itemIcon(self, int) QIcon¶
 
- itemText(self, int) str¶
 
- items()¶
 Return the current list of items in the combo box.
- Return type
 list
- Returns
 the current list of items
- keyPressEvent(event)¶
 Ignore Up/Down key press events if any action items are present. In the future, consider re-implementing these handlers; it’s a non- trivial task. See http://code.metager.de/source/xref/lib/qt/src/gui/widgets/qcombobox.cpp#2931
- keyReleaseEvent(self, QKeyEvent)¶
 
- keyboardGrabber() QWidget¶
 
- killTimer(self, int)¶
 
- layout(self) QLayout¶
 
- layoutDirection(self) Qt.LayoutDirection¶
 
- leaveEvent(self, QEvent)¶
 
- lineEdit(self) QLineEdit¶
 
- locale(self) QLocale¶
 
- logicalDpiX(self) int¶
 
- logicalDpiY(self) int¶
 
- lower(self)¶
 
- mapFrom(self, QWidget, QPoint) QPoint¶
 
- mapFromGlobal(self, QPoint) QPoint¶
 
- mapFromParent(self, QPoint) QPoint¶
 
- mapTo(self, QWidget, QPoint) QPoint¶
 
- mapToGlobal(self, QPoint) QPoint¶
 
- mapToParent(self, QPoint) QPoint¶
 
- mask(self) QRegion¶
 
- maxCount(self) int¶
 
- maxVisibleItems(self) int¶
 
- maximumHeight(self) int¶
 
- maximumSize(self) QSize¶
 
- maximumWidth(self) int¶
 
- metaObject(self) QMetaObject¶
 
- metric(self, QPaintDevice.PaintDeviceMetric) int¶
 
- minimumContentsLength(self) int¶
 
- minimumHeight(self) int¶
 
- minimumSize(self) QSize¶
 
- minimumSizeHint(self) QSize¶
 
- minimumWidth(self) int¶
 
- model(self) QAbstractItemModel¶
 
- modelColumn(self) int¶
 
- mouseDoubleClickEvent(self, QMouseEvent)¶
 
- mouseGrabber() QWidget¶
 
- mouseMoveEvent(self, QMouseEvent)¶
 
- mousePressEvent(self, QMouseEvent)¶
 
- mouseReleaseEvent(self, QMouseEvent)¶
 
- move(self, QPoint)¶
 - EnhancedComboBox.move(self, int, int) -> None
 
- moveEvent(self, QMoveEvent)¶
 
- moveToThread(self, QThread)¶
 
- nativeEvent(self, Union[QByteArray, bytes, bytearray], sip.voidptr) Tuple[bool, int]¶
 
- nativeParentWidget(self) QWidget¶
 
- nextInFocusChain(self) QWidget¶
 
- normalGeometry(self) QRect¶
 
- objectName(self) str¶
 
- objectNameChanged¶
 objectNameChanged(self, str) [signal]
- overrideWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- overrideWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- paintEngine(self) QPaintEngine¶
 
- paintEvent(self, QPaintEvent)¶
 
- paintingActive(self) bool¶
 
- palette(self) QPalette¶
 
- parent(self) QObject¶
 
- parentWidget(self) QWidget¶
 
- physicalDpiX(self) int¶
 
- physicalDpiY(self) int¶
 
- pos(self) QPoint¶
 
- previousInFocusChain(self) QWidget¶
 
- property(self, str) Any¶
 
- pyqtConfigure(...)¶
 Each keyword argument is either the name of a Qt property or a Qt signal. For properties the property is set to the given value which should be of an appropriate type. For signals the signal is connected to the given value which should be a callable.
- raise_(self)¶
 
- receivers(self, PYQT_SIGNAL) int¶
 
- rect(self) QRect¶
 
- releaseKeyboard(self)¶
 
- releaseMouse(self)¶
 
- releaseShortcut(self, int)¶
 
- removeAction(self, QAction)¶
 
- removeEventFilter(self, QObject)¶
 
- removeItem(self, int)¶
 
- render(self, QPaintDevice, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren))¶
 - render(self, QPainter, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren)) None
 
- repaint(self)¶
 - EnhancedComboBox.repaint(self, int, int, int, int) -> None
 - repaint(self, QRect) None
 - repaint(self, QRegion) None
 
- reset()¶
 Reset the current ComboBox item to the default item.
- resize(self, QSize)¶
 - EnhancedComboBox.resize(self, int, int) -> None
 
- resizeEvent(self, QResizeEvent)¶
 
- restoreGeometry(self, Union[QByteArray, bytes, bytearray]) bool¶
 
- rootModelIndex(self) QModelIndex¶
 
- saveGeometry(self) QByteArray¶
 
- EnhancedComboBox.scroll(self, int, int)
 - EnhancedComboBox.scroll(self, int, int, QRect) -> None
 
- sender(self) QObject¶
 
- senderSignalIndex(self) int¶
 
- setAcceptDrops(self, bool)¶
 
- setAccessibleDescription(self, str)¶
 
- setAccessibleName(self, str)¶
 
- setAttribute(self, Qt.WidgetAttribute, on: bool = True)¶
 
- setAutoFillBackground(self, bool)¶
 
- setBackgroundRole(self, QPalette.ColorRole)¶
 
- EnhancedComboBox.setBaseSize(self, int, int)
 - setBaseSize(self, QSize) None¶
 
- setCompleter(self, QCompleter)¶
 
- EnhancedComboBox.setContentsMargins(self, int, int, int, int)
 - setContentsMargins(self, QMargins) None¶
 
- setContextMenuPolicy(self, Qt.ContextMenuPolicy)¶
 
- setCurrentData(data, role=256)¶
 Select the index with the specified user data
- Parameters
 text – The user data to select
role (int) – The role to search
- Raises
 ValueError – If the specified data is not found in the combo box
- setCurrentIndex(self, int)¶
 
- setCurrentText(text)¶
 Set the combobox to the item with the supplied text
- Parameters
 text (str) – The text of the item to make the current item
- Raise
 ValueError if no item with text exists
- setCursor(self, Union[QCursor, Qt.CursorShape])¶
 
- setDisabled(self, bool)¶
 
- setDuplicatesEnabled(self, bool)¶
 
- setEditText(self, str)¶
 
- setEditable(self, bool)¶
 
- setEnabled(self, bool)¶
 
- setFixedHeight(self, int)¶
 
- setFixedSize(self, QSize)¶
 - EnhancedComboBox.setFixedSize(self, int, int) -> None
 
- setFixedWidth(self, int)¶
 
- setFocus(self)¶
 - setFocus(self, Qt.FocusReason) None
 
- setFocusPolicy(self, Qt.FocusPolicy)¶
 
- setFocusProxy(self, QWidget)¶
 
- setFont(self, QFont)¶
 
- setForegroundRole(self, QPalette.ColorRole)¶
 
- setFrame(self, bool)¶
 
- setGeometry(self, QRect)¶
 - EnhancedComboBox.setGeometry(self, int, int, int, int) -> None
 
- setGraphicsEffect(self, QGraphicsEffect)¶
 
- setHidden(self, bool)¶
 
- setIconSize(self, QSize)¶
 
- setInputMethodHints(self, Union[Qt.InputMethodHints, Qt.InputMethodHint])¶
 
- setInsertPolicy(self, QComboBox.InsertPolicy)¶
 
- setItemData(self, int, Any, role: int = Qt.ItemDataRole.UserRole)¶
 
- setItemDelegate(self, QAbstractItemDelegate)¶
 
- setItemIcon(self, int, QIcon)¶
 
- setItemText(self, int, str)¶
 
- setLayout(self, QLayout)¶
 
- setLayoutDirection(self, Qt.LayoutDirection)¶
 
- setLineEdit(self, QLineEdit)¶
 
- setLocale(self, QLocale)¶
 
- setMask(self, QBitmap)¶
 - setMask(self, QRegion) None
 
- setMaxCount(self, int)¶
 
- setMaxVisibleItems(self, int)¶
 
- setMaximumHeight(self, int)¶
 
- EnhancedComboBox.setMaximumSize(self, int, int)
 - setMaximumSize(self, QSize) None¶
 
- setMaximumWidth(self, int)¶
 
- setMinimumContentsLength(self, int)¶
 
- setMinimumHeight(self, int)¶
 
- EnhancedComboBox.setMinimumSize(self, int, int)
 - setMinimumSize(self, QSize) None¶
 
- setMinimumWidth(self, int)¶
 
- setModel(self, QAbstractItemModel)¶
 
- setModelColumn(self, int)¶
 
- setMouseTracking(self, bool)¶
 
- setObjectName(self, str)¶
 
- setPalette(self, QPalette)¶
 
- setParent(self, QWidget)¶
 - setParent(self, QWidget, Union[Qt.WindowFlags, Qt.WindowType]) None
 
- setProperty(self, str, Any) bool¶
 
- setRootModelIndex(self, QModelIndex)¶
 
- setShortcutAutoRepeat(self, int, enabled: bool = True)¶
 
- setShortcutEnabled(self, int, enabled: bool = True)¶
 
- setSizeAdjustPolicy(self, QComboBox.SizeAdjustPolicy)¶
 
- EnhancedComboBox.setSizeIncrement(self, int, int)
 - setSizeIncrement(self, QSize) None¶
 
- setSizePolicy(self, QSizePolicy)¶
 - setSizePolicy(self, QSizePolicy.Policy, QSizePolicy.Policy) None
 
- setStatusTip(self, str)¶
 
- setStyle(self, QStyle)¶
 
- setStyleSheet(self, str)¶
 
- EnhancedComboBox.setTabOrder(QWidget, QWidget)
 
- setTabletTracking(self, bool)¶
 
- setToolTip(self, str)¶
 
- setToolTipDuration(self, int)¶
 
- setUpdatesEnabled(self, bool)¶
 
- setValidator(self, QValidator)¶
 
- setView(self, QAbstractItemView)¶
 
- setVisible(self, bool)¶
 
- setWhatsThis(self, str)¶
 
- setWindowFilePath(self, str)¶
 
- setWindowFlag(self, Qt.WindowType, on: bool = True)¶
 
- setWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- setWindowIcon(self, QIcon)¶
 
- setWindowIconText(self, str)¶
 
- setWindowModality(self, Qt.WindowModality)¶
 
- setWindowModified(self, bool)¶
 
- setWindowOpacity(self, float)¶
 
- setWindowRole(self, str)¶
 
- setWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- setWindowTitle(self, str)¶
 
- show(self)¶
 
- showEvent(self, QShowEvent)¶
 
- showFullScreen(self)¶
 
- showMaximized(self)¶
 
- showMinimized(self)¶
 
- showNormal(self)¶
 
- showPopup(self)¶
 
- signalsBlocked(self) bool¶
 
- size(self) QSize¶
 
- sizeAdjustPolicy(self) QComboBox.SizeAdjustPolicy¶
 
- sizeHint(self) QSize¶
 
- sizeIncrement(self) QSize¶
 
- sizePolicy(self) QSizePolicy¶
 
- stackUnder(self, QWidget)¶
 
- startTimer(self, int, timerType: Qt.TimerType = Qt.CoarseTimer) int¶
 
- staticMetaObject = <PyQt5.QtCore.QMetaObject object>¶
 
- statusTip(self) str¶
 
- style(self) QStyle¶
 
- styleSheet(self) str¶
 
- tabletEvent(self, QTabletEvent)¶
 
- testAttribute(self, Qt.WidgetAttribute) bool¶
 
- thread(self) QThread¶
 
- timerEvent(self, QTimerEvent)¶
 
- toolTip(self) str¶
 
- toolTipDuration(self) int¶
 
- tr(self, str, disambiguation: str = None, n: int = - 1) str¶
 
- underMouse(self) bool¶
 
- ungrabGesture(self, Qt.GestureType)¶
 
- unsetCursor(self)¶
 
- unsetLayoutDirection(self)¶
 
- unsetLocale(self)¶
 
- update(self)¶
 - update(self, QRect) None
 - update(self, QRegion) None
 - EnhancedComboBox.update(self, int, int, int, int) -> None
 
- updateGeometry(self)¶
 
- updateMicroFocus(self)¶
 
- updatesEnabled(self) bool¶
 
- validator(self) QValidator¶
 
- view(self) QAbstractItemView¶
 
- visibleRegion(self) QRegion¶
 
- whatsThis(self) str¶
 
- wheelEvent(self, QWheelEvent)¶
 
- width(self) int¶
 
- widthMM(self) int¶
 
- winId(self) PyQt5.sip.voidptr¶
 
- window(self) QWidget¶
 
- windowFilePath(self) str¶
 
- windowFlags(self) Qt.WindowFlags¶
 
- windowHandle(self) QWindow¶
 
- windowIcon(self) QIcon¶
 
- windowIconChanged¶
 windowIconChanged(self, QIcon) [signal]
- windowIconText(self) str¶
 
- windowIconTextChanged¶
 windowIconTextChanged(self, str) [signal]
- windowModality(self) Qt.WindowModality¶
 
- windowOpacity(self) float¶
 
- windowRole(self) str¶
 
- windowState(self) Qt.WindowStates¶
 
- windowTitle(self) str¶
 
- windowTitleChanged¶
 windowTitleChanged(self, str) [signal]
- windowType(self) Qt.WindowType¶
 
- x(self) int¶
 
- y(self) int¶
 
- class schrodinger.application.jaguar.gui.utils.PropertiesTableWidget(*args, **kwargs)[source]¶
 Bases:
PyQt5.QtWidgets.QTableWidgetA QTableWidget for the Properties table on the Properties tab
- AboveItem = 1¶
 
- AdjustIgnored = 0¶
 
- AdjustToContents = 2¶
 
- AdjustToContentsOnFirstShow = 1¶
 
- AllEditTriggers = 31¶
 
- AnimatingState = 6¶
 
- AnyKeyPressed = 16¶
 
- BelowItem = 2¶
 
- Box = 1¶
 
- CollapsingState = 5¶
 
- ContiguousSelection = 4¶
 
- CurrentChanged = 1¶
 
- class CursorAction¶
 Bases:
int
- DoubleClicked = 2¶
 
- DragDrop = 3¶
 
- class DragDropMode¶
 Bases:
int
- DragOnly = 1¶
 
- DragSelectingState = 2¶
 
- DraggingState = 1¶
 
- DrawChildren = 2¶
 
- DrawWindowBackground = 1¶
 
- class DropIndicatorPosition¶
 Bases:
int
- DropOnly = 2¶
 
- EditKeyPressed = 8¶
 
- class EditTrigger¶
 Bases:
int
- class EditTriggers¶
 - class EditTriggers(Union[QAbstractItemView.EditTriggers, QAbstractItemView.EditTrigger]) None
 - class EditTriggers(QAbstractItemView.EditTriggers) None
 Bases:
sip.simplewrapper- __init__(*args, **kwargs)¶
 
- EditingState = 3¶
 
- EnsureVisible = 0¶
 
- ExpandingState = 4¶
 
- ExtendedSelection = 3¶
 
- HLine = 4¶
 
- IgnoreMask = 4¶
 
- InternalMove = 4¶
 
- MoveDown = 1¶
 
- MoveEnd = 5¶
 
- MoveHome = 4¶
 
- MoveLeft = 2¶
 
- MoveNext = 8¶
 
- MovePageDown = 7¶
 
- MovePageUp = 6¶
 
- MovePrevious = 9¶
 
- MoveRight = 3¶
 
- MoveUp = 0¶
 
- MultiSelection = 2¶
 
- NoDragDrop = 0¶
 
- NoEditTriggers = 0¶
 
- NoFrame = 0¶
 
- NoSelection = 0¶
 
- NoState = 0¶
 
- OnItem = 0¶
 
- OnViewport = 3¶
 
- class PaintDeviceMetric¶
 Bases:
int
- Panel = 2¶
 
- PdmDepth = 6¶
 
- PdmDevicePixelRatio = 11¶
 
- PdmDevicePixelRatioScaled = 12¶
 
- PdmDpiX = 7¶
 
- PdmDpiY = 8¶
 
- PdmHeight = 2¶
 
- PdmHeightMM = 4¶
 
- PdmNumColors = 5¶
 
- PdmPhysicalDpiX = 9¶
 
- PdmPhysicalDpiY = 10¶
 
- PdmWidth = 1¶
 
- PdmWidthMM = 3¶
 
- Plain = 16¶
 
- PositionAtBottom = 2¶
 
- PositionAtCenter = 3¶
 
- PositionAtTop = 1¶
 
- Raised = 32¶
 
- class RenderFlag¶
 Bases:
int
- class RenderFlags¶
 - class RenderFlags(Union[QWidget.RenderFlags, QWidget.RenderFlag]) None
 - class RenderFlags(QWidget.RenderFlags) None
 Bases:
sip.simplewrapper- __init__(*args, **kwargs)¶
 
- class ScrollHint¶
 Bases:
int
- class ScrollMode¶
 Bases:
int
- ScrollPerItem = 0¶
 
- ScrollPerPixel = 1¶
 
- SelectColumns = 2¶
 
- SelectItems = 0¶
 
- SelectRows = 1¶
 
- SelectedClicked = 4¶
 
- class SelectionBehavior¶
 Bases:
int
- class SelectionMode¶
 Bases:
int
- class Shadow¶
 Bases:
int
- Shadow_Mask = 240¶
 
- class Shape¶
 Bases:
int
- Shape_Mask = 15¶
 
- SingleSelection = 1¶
 
- class SizeAdjustPolicy¶
 Bases:
int
- class State¶
 Bases:
int
- class StyleMask¶
 Bases:
int
- StyledPanel = 6¶
 
- Sunken = 48¶
 
- VLine = 5¶
 
- WinPanel = 3¶
 
- acceptDrops(self) bool¶
 
- accessibleDescription(self) str¶
 
- accessibleName(self) str¶
 
- actionEvent(self, QActionEvent)¶
 
- actions(self) List[QAction]¶
 
- activateWindow(self)¶
 
- activated¶
 activated(self, QModelIndex) [signal]
- addAction(self, QAction)¶
 
- addActions(self, Iterable[QAction])¶
 
- addScrollBarWidget(self, QWidget, Union[Qt.Alignment, Qt.AlignmentFlag])¶
 
- adjustSize(self)¶
 
- alternatingRowColors(self) bool¶
 
- autoFillBackground(self) bool¶
 
- autoScrollMargin(self) int¶
 
- backgroundRole(self) QPalette.ColorRole¶
 
- baseSize(self) QSize¶
 
- blockSignals(self, bool) bool¶
 
- cellActivated¶
 cellActivated(self, int, int) [signal]
- cellChanged¶
 cellChanged(self, int, int) [signal]
- cellClicked¶
 cellClicked(self, int, int) [signal]
- cellDoubleClicked¶
 cellDoubleClicked(self, int, int) [signal]
- cellEntered¶
 cellEntered(self, int, int) [signal]
- cellPressed¶
 cellPressed(self, int, int) [signal]
- PropertiesTableWidget.cellWidget(self, int, int) -> QWidget
 
- changeEvent(self, QEvent)¶
 
- childAt(self, QPoint) QWidget¶
 - PropertiesTableWidget.childAt(self, int, int) -> QWidget
 
- childEvent(self, QChildEvent)¶
 
- children(self) List[QObject]¶
 
- childrenRect(self) QRect¶
 
- childrenRegion(self) QRegion¶
 
- clear(self)¶
 
- clearContents(self)¶
 
- clearFocus(self)¶
 
- clearMask(self)¶
 
- clearSelection(self)¶
 
- clearSpans(self)¶
 
- clicked¶
 clicked(self, QModelIndex) [signal]
- close(self) bool¶
 
- closeEditor(self, QWidget, QAbstractItemDelegate.EndEditHint)¶
 
- closeEvent(self, QCloseEvent)¶
 
- closePersistentEditor(self, QTableWidgetItem)¶
 
- colorCount(self) int¶
 
- column(self, QTableWidgetItem) int¶
 
- columnAt(self, int) int¶
 
- columnCount(self) int¶
 
- PropertiesTableWidget.columnCountChanged(self, int, int)
 
- PropertiesTableWidget.columnMoved(self, int, int, int)
 
- PropertiesTableWidget.columnResized(self, int, int, int)
 
- PropertiesTableWidget.columnSpan(self, int, int) -> int
 
- columnViewportPosition(self, int) int¶
 
- columnWidth(self, int) int¶
 
- commitData(self, QWidget)¶
 
- connectNotify(self, QMetaMethod)¶
 
- contentsMargins(self) QMargins¶
 
- contentsRect(self) QRect¶
 
- contextMenuEvent(self, QContextMenuEvent)¶
 
- contextMenuPolicy(self) Qt.ContextMenuPolicy¶
 
- cornerWidget(self) QWidget¶
 
- create(self, window: PyQt5.sip.voidptr = 0, initializeWindow: bool = True, destroyOldWindow: bool = True)¶
 
- createWindowContainer(QWindow, parent: QWidget = None, flags: Union[Qt.WindowFlags, Qt.WindowType] = 0) QWidget¶
 
- currentCellChanged¶
 currentCellChanged(self, int, int, int, int) [signal]
- PropertiesTableWidget.currentChanged(self, QModelIndex, QModelIndex)
 
- currentColumn(self) int¶
 
- currentIndex(self) QModelIndex¶
 
- currentItem(self) QTableWidgetItem¶
 
- currentItemChanged¶
 currentItemChanged(self, QTableWidgetItem, QTableWidgetItem) [signal]
- currentRow(self) int¶
 
- cursor(self) QCursor¶
 
- customContextMenuRequested¶
 customContextMenuRequested(self, QPoint) [signal]
- customEvent(self, QEvent)¶
 
- PropertiesTableWidget.dataChanged(self, QModelIndex, QModelIndex, roles: Iterable[int] = [])
 
- defaultDropAction(self) Qt.DropAction¶
 
- deleteLater(self)¶
 
- depth(self) int¶
 
- destroy(self, destroyWindow: bool = True, destroySubWindows: bool = True)¶
 
- destroyed¶
 destroyed(self, object: QObject = None) [signal]
- devType(self) int¶
 
- devicePixelRatio(self) int¶
 
- devicePixelRatioF(self) float¶
 
- devicePixelRatioFScale() float¶
 
- dirtyRegionOffset(self) QPoint¶
 
- disconnect(QMetaObject.Connection) bool¶
 - disconnect(self) None
 
- disconnectNotify(self, QMetaMethod)¶
 
- doubleClicked¶
 doubleClicked(self, QModelIndex) [signal]
- dragDropMode(self) QAbstractItemView.DragDropMode¶
 
- dragDropOverwriteMode(self) bool¶
 
- dragEnabled(self) bool¶
 
- dragEnterEvent(self, QDragEnterEvent)¶
 
- dragLeaveEvent(self, QDragLeaveEvent)¶
 
- dragMoveEvent(self, QDragMoveEvent)¶
 
- drawFrame(self, QPainter)¶
 
- dropEvent(self, QDropEvent)¶
 
- dropIndicatorPosition(self) QAbstractItemView.DropIndicatorPosition¶
 
- dropMimeData(self, int, int, QMimeData, Qt.DropAction) bool¶
 
- dumpObjectInfo(self)¶
 
- dumpObjectTree(self)¶
 
- dynamicPropertyNames(self) List[QByteArray]¶
 
- edit(self, QModelIndex)¶
 - edit(self, QModelIndex, QAbstractItemView.EditTrigger, QEvent) bool
 
- editItem(self, QTableWidgetItem)¶
 
- editTriggers(self) QAbstractItemView.EditTriggers¶
 
- editorDestroyed(self, QObject)¶
 
- effectiveWinId(self) PyQt5.sip.voidptr¶
 
- ensurePolished(self)¶
 
- enterEvent(self, QEvent)¶
 
- entered¶
 entered(self, QModelIndex) [signal]
- event(self, QEvent) bool¶
 
- eventFilter(self, QObject, QEvent) bool¶
 
- executeDelayedItemsLayout(self)¶
 
- find(PyQt5.sip.voidptr) QWidget¶
 
- findChild(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject¶
 - findChild(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject
 
- findChildren(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]¶
 - findChildren(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 
- findItems(self, str, Union[Qt.MatchFlags, Qt.MatchFlag]) List[QTableWidgetItem]¶
 
- focusInEvent(self, QFocusEvent)¶
 
- focusNextChild(self) bool¶
 
- focusNextPrevChild(self, bool) bool¶
 
- focusOutEvent(self, QFocusEvent)¶
 
- focusPolicy(self) Qt.FocusPolicy¶
 
- focusPreviousChild(self) bool¶
 
- focusProxy(self) QWidget¶
 
- focusWidget(self) QWidget¶
 
- font(self) QFont¶
 
- fontInfo(self) QFontInfo¶
 
- fontMetrics(self) QFontMetrics¶
 
- foregroundRole(self) QPalette.ColorRole¶
 
- frameGeometry(self) QRect¶
 
- frameRect(self) QRect¶
 
- frameShadow(self) QFrame.Shadow¶
 
- frameShape(self) QFrame.Shape¶
 
- frameSize(self) QSize¶
 
- frameStyle(self) int¶
 
- frameWidth(self) int¶
 
- geometry(self) QRect¶
 
- getContentsMargins(self) Tuple[int, int, int, int]¶
 
- grab(self, rectangle: QRect = QRect(QPoint(0, 0), QSize(- 1, - 1))) QPixmap¶
 
- grabGesture(self, Qt.GestureType, flags: Union[Qt.GestureFlags, Qt.GestureFlag] = Qt.GestureFlags())¶
 
- grabKeyboard(self)¶
 
- grabMouse(self)¶
 - grabMouse(self, Union[QCursor, Qt.CursorShape]) None
 
- grabShortcut(self, Union[QKeySequence, QKeySequence.StandardKey, str, int], context: Qt.ShortcutContext = Qt.WindowShortcut) int¶
 
- graphicsEffect(self) QGraphicsEffect¶
 
- graphicsProxyWidget(self) QGraphicsProxyWidget¶
 
- gridStyle(self) Qt.PenStyle¶
 
- hasAutoScroll(self) bool¶
 
- hasFocus(self) bool¶
 
- hasHeightForWidth(self) bool¶
 
- hasMouseTracking(self) bool¶
 
- hasTabletTracking(self) bool¶
 
- height(self) int¶
 
- heightForWidth(self, int) int¶
 
- heightMM(self) int¶
 
- hide(self)¶
 
- hideColumn(self, int)¶
 
- hideEvent(self, QHideEvent)¶
 
- hideRow(self, int)¶
 
- horizontalHeader(self) QHeaderView¶
 
- horizontalHeaderItem(self, int) QTableWidgetItem¶
 
- horizontalOffset(self) int¶
 
- horizontalScrollBar(self) QScrollBar¶
 
- horizontalScrollBarPolicy(self) Qt.ScrollBarPolicy¶
 
- horizontalScrollMode(self) QAbstractItemView.ScrollMode¶
 
- horizontalScrollbarAction(self, int)¶
 
- horizontalScrollbarValueChanged(self, int)¶
 
- iconSize(self) QSize¶
 
- iconSizeChanged¶
 iconSizeChanged(self, QSize) [signal]
- indexAt(self, QPoint) QModelIndex¶
 
- indexFromItem(self, QTableWidgetItem) QModelIndex¶
 
- indexWidget(self, QModelIndex) QWidget¶
 
- inherits(self, str) bool¶
 
- initPainter(self, QPainter)¶
 
- initStyleOption(self, QStyleOptionFrame)¶
 
- inputMethodEvent(self, QInputMethodEvent)¶
 
- inputMethodHints(self) Qt.InputMethodHints¶
 
- inputMethodQuery(self, Qt.InputMethodQuery) Any¶
 
- PropertiesTableWidget.insertAction(self, QAction, QAction)
 
- insertActions(self, QAction, Iterable[QAction])¶
 
- insertColumn(self, int)¶
 
- insertRow(self, int)¶
 
- installEventFilter(self, QObject)¶
 
- isActiveWindow(self) bool¶
 
- isAncestorOf(self, QWidget) bool¶
 
- isColumnHidden(self, int) bool¶
 
- isCornerButtonEnabled(self) bool¶
 
- isEnabled(self) bool¶
 
- isEnabledTo(self, QWidget) bool¶
 
- isFullScreen(self) bool¶
 
- isHidden(self) bool¶
 
- isIndexHidden(self, QModelIndex) bool¶
 
- isLeftToRight(self) bool¶
 
- isMaximized(self) bool¶
 
- isMinimized(self) bool¶
 
- isModal(self) bool¶
 
- isPersistentEditorOpen(self, QTableWidgetItem) bool¶
 
- isRightToLeft(self) bool¶
 
- isRowHidden(self, int) bool¶
 
- isSignalConnected(self, QMetaMethod) bool¶
 
- isSortingEnabled(self) bool¶
 
- isVisible(self) bool¶
 
- isVisibleTo(self, QWidget) bool¶
 
- isWidgetType(self) bool¶
 
- isWindow(self) bool¶
 
- isWindowModified(self) bool¶
 
- isWindowType(self) bool¶
 
- PropertiesTableWidget.item(self, int, int) -> QTableWidgetItem
 
- itemActivated¶
 itemActivated(self, QTableWidgetItem) [signal]
- itemAt(self, QPoint) QTableWidgetItem¶
 - PropertiesTableWidget.itemAt(self, int, int) -> QTableWidgetItem
 
- itemChanged¶
 itemChanged(self, QTableWidgetItem) [signal]
- itemClicked¶
 itemClicked(self, QTableWidgetItem) [signal]
- itemDelegate(self) QAbstractItemDelegate¶
 - itemDelegate(self, QModelIndex) QAbstractItemDelegate
 
- itemDelegateForColumn(self, int) QAbstractItemDelegate¶
 
- itemDelegateForRow(self, int) QAbstractItemDelegate¶
 
- itemDoubleClicked¶
 itemDoubleClicked(self, QTableWidgetItem) [signal]
- itemEntered¶
 itemEntered(self, QTableWidgetItem) [signal]
- itemFromIndex(self, QModelIndex) QTableWidgetItem¶
 
- itemPressed¶
 itemPressed(self, QTableWidgetItem) [signal]
- itemPrototype(self) QTableWidgetItem¶
 
- itemSelectionChanged¶
 itemSelectionChanged(self) [signal]
- items(self, QMimeData) List[QTableWidgetItem]¶
 
- keyPressEvent(self, QKeyEvent)¶
 
- keyReleaseEvent(self, QKeyEvent)¶
 
- keyboardGrabber() QWidget¶
 
- keyboardSearch(self, str)¶
 
- killTimer(self, int)¶
 
- layout(self) QLayout¶
 
- layoutDirection(self) Qt.LayoutDirection¶
 
- leaveEvent(self, QEvent)¶
 
- lineWidth(self) int¶
 
- locale(self) QLocale¶
 
- logicalDpiX(self) int¶
 
- logicalDpiY(self) int¶
 
- lower(self)¶
 
- mapFrom(self, QWidget, QPoint) QPoint¶
 
- mapFromGlobal(self, QPoint) QPoint¶
 
- mapFromParent(self, QPoint) QPoint¶
 
- mapTo(self, QWidget, QPoint) QPoint¶
 
- mapToGlobal(self, QPoint) QPoint¶
 
- mapToParent(self, QPoint) QPoint¶
 
- mask(self) QRegion¶
 
- maximumHeight(self) int¶
 
- maximumSize(self) QSize¶
 
- maximumViewportSize(self) QSize¶
 
- maximumWidth(self) int¶
 
- metaObject(self) QMetaObject¶
 
- metric(self, QPaintDevice.PaintDeviceMetric) int¶
 
- midLineWidth(self) int¶
 
- mimeData(self, Iterable[QTableWidgetItem]) QMimeData¶
 
- mimeTypes(self) List[str]¶
 
- minimumHeight(self) int¶
 
- minimumSize(self) QSize¶
 
- minimumSizeHint(self) QSize¶
 
- minimumWidth(self) int¶
 
- model(self) QAbstractItemModel¶
 
- mouseDoubleClickEvent(self, QMouseEvent)¶
 
- mouseGrabber() QWidget¶
 
- mouseMoveEvent(self, QMouseEvent)¶
 
- mousePressEvent(self, QMouseEvent)¶
 
- mouseReleaseEvent(self, QMouseEvent)¶
 
- move(self, QPoint)¶
 - PropertiesTableWidget.move(self, int, int) -> None
 
- moveCursor(self, QAbstractItemView.CursorAction, Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]) QModelIndex¶
 
- moveEvent(self, QMoveEvent)¶
 
- moveToThread(self, QThread)¶
 
- nativeEvent(self, Union[QByteArray, bytes, bytearray], sip.voidptr) Tuple[bool, int]¶
 
- nativeParentWidget(self) QWidget¶
 
- nextInFocusChain(self) QWidget¶
 
- normalGeometry(self) QRect¶
 
- objectName(self) str¶
 
- objectNameChanged¶
 objectNameChanged(self, str) [signal]
- openPersistentEditor(self, QTableWidgetItem)¶
 
- overrideWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- overrideWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- paintEngine(self) QPaintEngine¶
 
- paintEvent(self, QPaintEvent)¶
 
- paintingActive(self) bool¶
 
- palette(self) QPalette¶
 
- parent(self) QObject¶
 
- parentWidget(self) QWidget¶
 
- physicalDpiX(self) int¶
 
- physicalDpiY(self) int¶
 
- pos(self) QPoint¶
 
- pressed¶
 pressed(self, QModelIndex) [signal]
- previousInFocusChain(self) QWidget¶
 
- property(self, str) Any¶
 
- pyqtConfigure(...)¶
 Each keyword argument is either the name of a Qt property or a Qt signal. For properties the property is set to the given value which should be of an appropriate type. For signals the signal is connected to the given value which should be a callable.
- raise_(self)¶
 
- receivers(self, PYQT_SIGNAL) int¶
 
- rect(self) QRect¶
 
- releaseKeyboard(self)¶
 
- releaseMouse(self)¶
 
- releaseShortcut(self, int)¶
 
- removeAction(self, QAction)¶
 
- PropertiesTableWidget.removeCellWidget(self, int, int)
 
- removeColumn(self, int)¶
 
- removeEventFilter(self, QObject)¶
 
- removeRow(self, int)¶
 
- render(self, QPaintDevice, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren))¶
 - render(self, QPainter, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren)) None
 
- repaint(self)¶
 - PropertiesTableWidget.repaint(self, int, int, int, int) -> None
 - repaint(self, QRect) None
 - repaint(self, QRegion) None
 
- reset(self)¶
 
- resetHorizontalScrollMode(self)¶
 
- resetVerticalScrollMode(self)¶
 
- resize(self, QSize)¶
 - PropertiesTableWidget.resize(self, int, int) -> None
 
- resizeColumnToContents(self, int)¶
 
- resizeColumnsToContents(self)¶
 
- resizeEvent(self, QResizeEvent)¶
 
- resizeRowToContents(self, int)¶
 
- resizeRowsToContents(self)¶
 
- restoreGeometry(self, Union[QByteArray, bytes, bytearray]) bool¶
 
- rootIndex(self) QModelIndex¶
 
- row(self, QTableWidgetItem) int¶
 
- rowAt(self, int) int¶
 
- rowCount(self) int¶
 
- PropertiesTableWidget.rowCountChanged(self, int, int)
 
- rowHeight(self, int) int¶
 
- PropertiesTableWidget.rowMoved(self, int, int, int)
 
- PropertiesTableWidget.rowResized(self, int, int, int)
 
- PropertiesTableWidget.rowSpan(self, int, int) -> int
 
- rowViewportPosition(self, int) int¶
 
- PropertiesTableWidget.rowsAboutToBeRemoved(self, QModelIndex, int, int)
 
- PropertiesTableWidget.rowsInserted(self, QModelIndex, int, int)
 
- saveGeometry(self) QByteArray¶
 
- scheduleDelayedItemsLayout(self)¶
 
- PropertiesTableWidget.scroll(self, int, int)
 - PropertiesTableWidget.scroll(self, int, int, QRect) -> None
 
- scrollBarWidgets(self, Union[Qt.Alignment, Qt.AlignmentFlag]) List[QWidget]¶
 
- PropertiesTableWidget.scrollContentsBy(self, int, int)
 
- PropertiesTableWidget.scrollDirtyRegion(self, int, int)
 
- scrollTo(self, QModelIndex, hint: QAbstractItemView.ScrollHint = QAbstractItemView.EnsureVisible)¶
 
- scrollToBottom(self)¶
 
- scrollToItem(self, QTableWidgetItem, hint: QAbstractItemView.ScrollHint = QAbstractItemView.EnsureVisible)¶
 
- scrollToTop(self)¶
 
- selectAll(self)¶
 
- selectColumn(self, int)¶
 
- selectRow(self, int)¶
 
- selectedIndexes(self) List[QModelIndex]¶
 
- selectedItems(self) List[QTableWidgetItem]¶
 
- selectedRanges(self) List[QTableWidgetSelectionRange]¶
 
- selectionBehavior(self) QAbstractItemView.SelectionBehavior¶
 
- PropertiesTableWidget.selectionChanged(self, QItemSelection, QItemSelection)
 
- selectionCommand(self, QModelIndex, event: QEvent = None) QItemSelectionModel.SelectionFlags¶
 
- selectionMode(self) QAbstractItemView.SelectionMode¶
 
- selectionModel(self) QItemSelectionModel¶
 
- sender(self) QObject¶
 
- senderSignalIndex(self) int¶
 
- setAcceptDrops(self, bool)¶
 
- setAccessibleDescription(self, str)¶
 
- setAccessibleName(self, str)¶
 
- setAlternatingRowColors(self, bool)¶
 
- setAttribute(self, Qt.WidgetAttribute, on: bool = True)¶
 
- setAutoFillBackground(self, bool)¶
 
- setAutoScroll(self, bool)¶
 
- setAutoScrollMargin(self, int)¶
 
- setBackgroundRole(self, QPalette.ColorRole)¶
 
- PropertiesTableWidget.setBaseSize(self, int, int)
 - setBaseSize(self, QSize) None¶
 
- PropertiesTableWidget.setCellWidget(self, int, int, QWidget)
 
- setColumnCount(self, int)¶
 
- setColumnHidden(self, int, bool)¶
 
- PropertiesTableWidget.setColumnWidth(self, int, int)
 
- PropertiesTableWidget.setContentsMargins(self, int, int, int, int)
 - setContentsMargins(self, QMargins) None¶
 
- setContextMenuPolicy(self, Qt.ContextMenuPolicy)¶
 
- setCornerButtonEnabled(self, bool)¶
 
- setCornerWidget(self, QWidget)¶
 
- PropertiesTableWidget.setCurrentCell(self, int, int)
 - setCurrentCell(self, int, int, Union[QItemSelectionModel.SelectionFlags, QItemSelectionModel.SelectionFlag]) None¶
 
- setCurrentIndex(self, QModelIndex)¶
 
- setCurrentItem(self, QTableWidgetItem)¶
 - setCurrentItem(self, QTableWidgetItem, Union[QItemSelectionModel.SelectionFlags, QItemSelectionModel.SelectionFlag]) None
 
- setCursor(self, Union[QCursor, Qt.CursorShape])¶
 
- setDefaultDropAction(self, Qt.DropAction)¶
 
- setDirtyRegion(self, QRegion)¶
 
- setDisabled(self, bool)¶
 
- setDragDropMode(self, QAbstractItemView.DragDropMode)¶
 
- setDragDropOverwriteMode(self, bool)¶
 
- setDragEnabled(self, bool)¶
 
- setDropIndicatorShown(self, bool)¶
 
- setEditTriggers(self, Union[QAbstractItemView.EditTriggers, QAbstractItemView.EditTrigger])¶
 
- setEnabled(self, bool)¶
 
- setFixedHeight(self, int)¶
 
- setFixedSize(self, QSize)¶
 - PropertiesTableWidget.setFixedSize(self, int, int) -> None
 
- setFixedWidth(self, int)¶
 
- setFocus(self)¶
 - setFocus(self, Qt.FocusReason) None
 
- setFocusPolicy(self, Qt.FocusPolicy)¶
 
- setFocusProxy(self, QWidget)¶
 
- setFont(self, QFont)¶
 
- setForegroundRole(self, QPalette.ColorRole)¶
 
- setFrameRect(self, QRect)¶
 
- setFrameShadow(self, QFrame.Shadow)¶
 
- setFrameShape(self, QFrame.Shape)¶
 
- setFrameStyle(self, int)¶
 
- setGeometry(self, QRect)¶
 - PropertiesTableWidget.setGeometry(self, int, int, int, int) -> None
 
- setGraphicsEffect(self, QGraphicsEffect)¶
 
- setGridStyle(self, Qt.PenStyle)¶
 
- setHidden(self, bool)¶
 
- setHorizontalHeader(self, QHeaderView)¶
 
- setHorizontalHeaderItem(self, int, QTableWidgetItem)¶
 
- setHorizontalHeaderLabels(self, Iterable[str])¶
 
- setHorizontalScrollBar(self, QScrollBar)¶
 
- setHorizontalScrollBarPolicy(self, Qt.ScrollBarPolicy)¶
 
- setHorizontalScrollMode(self, QAbstractItemView.ScrollMode)¶
 
- setIconSize(self, QSize)¶
 
- setIndexWidget(self, QModelIndex, QWidget)¶
 
- setInputMethodHints(self, Union[Qt.InputMethodHints, Qt.InputMethodHint])¶
 
- PropertiesTableWidget.setItem(self, int, int, QTableWidgetItem)
 
- setItemDelegate(self, QAbstractItemDelegate)¶
 
- setItemDelegateForColumn(self, int, QAbstractItemDelegate)¶
 
- setItemDelegateForRow(self, int, QAbstractItemDelegate)¶
 
- setItemPrototype(self, QTableWidgetItem)¶
 
- setLayout(self, QLayout)¶
 
- setLayoutDirection(self, Qt.LayoutDirection)¶
 
- setLineWidth(self, int)¶
 
- setLocale(self, QLocale)¶
 
- setMask(self, QBitmap)¶
 - setMask(self, QRegion) None
 
- setMaximumHeight(self, int)¶
 
- PropertiesTableWidget.setMaximumSize(self, int, int)
 - setMaximumSize(self, QSize) None¶
 
- setMaximumWidth(self, int)¶
 
- setMidLineWidth(self, int)¶
 
- setMinimumHeight(self, int)¶
 
- PropertiesTableWidget.setMinimumSize(self, int, int)
 - setMinimumSize(self, QSize) None¶
 
- setMinimumWidth(self, int)¶
 
- setModel(self, QAbstractItemModel)¶
 
- setMouseTracking(self, bool)¶
 
- setObjectName(self, str)¶
 
- setPalette(self, QPalette)¶
 
- setParent(self, QWidget)¶
 - setParent(self, QWidget, Union[Qt.WindowFlags, Qt.WindowType]) None
 
- setProperty(self, str, Any) bool¶
 
- setRangeSelected(self, QTableWidgetSelectionRange, bool)¶
 
- setRootIndex(self, QModelIndex)¶
 
- setRowCount(self, int)¶
 
- PropertiesTableWidget.setRowHeight(self, int, int)
 
- setRowHidden(self, int, bool)¶
 
- setSelection(self, QRect, Union[QItemSelectionModel.SelectionFlags, QItemSelectionModel.SelectionFlag])¶
 
- setSelectionBehavior(self, QAbstractItemView.SelectionBehavior)¶
 
- setSelectionMode(self, QAbstractItemView.SelectionMode)¶
 
- setSelectionModel(self, QItemSelectionModel)¶
 
- setShortcutAutoRepeat(self, int, enabled: bool = True)¶
 
- setShortcutEnabled(self, int, enabled: bool = True)¶
 
- setShowGrid(self, bool)¶
 
- setSizeAdjustPolicy(self, QAbstractScrollArea.SizeAdjustPolicy)¶
 
- PropertiesTableWidget.setSizeIncrement(self, int, int)
 - setSizeIncrement(self, QSize) None¶
 
- setSizePolicy(self, QSizePolicy)¶
 - setSizePolicy(self, QSizePolicy.Policy, QSizePolicy.Policy) None
 
- setSortingEnabled(self, bool)¶
 
- PropertiesTableWidget.setSpan(self, int, int, int, int)
 
- setState(self, QAbstractItemView.State)¶
 
- setStatusTip(self, str)¶
 
- setStyle(self, QStyle)¶
 
- setStyleSheet(self, str)¶
 
- PropertiesTableWidget.setTabOrder(QWidget, QWidget)
 
- setTabletTracking(self, bool)¶
 
- setTextElideMode(self, Qt.TextElideMode)¶
 
- setToolTip(self, str)¶
 
- setToolTipDuration(self, int)¶
 
- setUpdatesEnabled(self, bool)¶
 
- setVerticalHeader(self, QHeaderView)¶
 
- setVerticalHeaderItem(self, int, QTableWidgetItem)¶
 
- setVerticalHeaderLabels(self, Iterable[str])¶
 
- setVerticalScrollBar(self, QScrollBar)¶
 
- setVerticalScrollBarPolicy(self, Qt.ScrollBarPolicy)¶
 
- setVerticalScrollMode(self, QAbstractItemView.ScrollMode)¶
 
- setViewport(self, QWidget)¶
 
- PropertiesTableWidget.setViewportMargins(self, int, int, int, int)
 - setViewportMargins(self, QMargins) None¶
 
- setVisible(self, bool)¶
 
- setWhatsThis(self, str)¶
 
- setWindowFilePath(self, str)¶
 
- setWindowFlag(self, Qt.WindowType, on: bool = True)¶
 
- setWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- setWindowIcon(self, QIcon)¶
 
- setWindowIconText(self, str)¶
 
- setWindowModality(self, Qt.WindowModality)¶
 
- setWindowModified(self, bool)¶
 
- setWindowOpacity(self, float)¶
 
- setWindowRole(self, str)¶
 
- setWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- setWindowTitle(self, str)¶
 
- setWordWrap(self, bool)¶
 
- setupViewport(self, QWidget)¶
 
- show(self)¶
 
- showColumn(self, int)¶
 
- showDropIndicator(self) bool¶
 
- showEvent(self, QShowEvent)¶
 
- showFullScreen(self)¶
 
- showGrid(self) bool¶
 
- showMaximized(self)¶
 
- showMinimized(self)¶
 
- showNormal(self)¶
 
- showRow(self, int)¶
 
- signalsBlocked(self) bool¶
 
- size(self) QSize¶
 
- sizeAdjustPolicy(self) QAbstractScrollArea.SizeAdjustPolicy¶
 
- sizeHintForColumn(self, int) int¶
 
- sizeHintForIndex(self, QModelIndex) QSize¶
 
- sizeHintForRow(self, int) int¶
 
- sizeIncrement(self) QSize¶
 
- sizePolicy(self) QSizePolicy¶
 
- sortByColumn(self, int, Qt.SortOrder)¶
 
- sortItems(self, int, order: Qt.SortOrder = Qt.AscendingOrder)¶
 
- stackUnder(self, QWidget)¶
 
- startDrag(self, Union[Qt.DropActions, Qt.DropAction])¶
 
- startTimer(self, int, timerType: Qt.TimerType = Qt.CoarseTimer) int¶
 
- state(self) QAbstractItemView.State¶
 
- staticMetaObject = <PyQt5.QtCore.QMetaObject object>¶
 
- statusTip(self) str¶
 
- style(self) QStyle¶
 
- styleSheet(self) str¶
 
- supportedDropActions(self) Qt.DropActions¶
 
- tabletEvent(self, QTabletEvent)¶
 
- takeHorizontalHeaderItem(self, int) QTableWidgetItem¶
 
- PropertiesTableWidget.takeItem(self, int, int) -> QTableWidgetItem
 
- takeVerticalHeaderItem(self, int) QTableWidgetItem¶
 
- testAttribute(self, Qt.WidgetAttribute) bool¶
 
- textElideMode(self) Qt.TextElideMode¶
 
- thread(self) QThread¶
 
- timerEvent(self, QTimerEvent)¶
 
- toolTip(self) str¶
 
- toolTipDuration(self) int¶
 
- tr(self, str, disambiguation: str = None, n: int = - 1) str¶
 
- underMouse(self) bool¶
 
- ungrabGesture(self, Qt.GestureType)¶
 
- unsetCursor(self)¶
 
- unsetLayoutDirection(self)¶
 
- unsetLocale(self)¶
 
- update(self)¶
 - update(self, QModelIndex) None
 
- updateEditorData(self)¶
 
- updateEditorGeometries(self)¶
 
- updateGeometries(self)¶
 
- updateGeometry(self)¶
 
- updateMicroFocus(self)¶
 
- updatesEnabled(self) bool¶
 
- verticalHeader(self) QHeaderView¶
 
- verticalHeaderItem(self, int) QTableWidgetItem¶
 
- verticalOffset(self) int¶
 
- verticalScrollBar(self) QScrollBar¶
 
- verticalScrollBarPolicy(self) Qt.ScrollBarPolicy¶
 
- verticalScrollMode(self) QAbstractItemView.ScrollMode¶
 
- verticalScrollbarAction(self, int)¶
 
- verticalScrollbarValueChanged(self, int)¶
 
- viewOptions(self) QStyleOptionViewItem¶
 
- viewport(self) QWidget¶
 
- viewportEntered¶
 viewportEntered(self) [signal]
- viewportEvent(self, QEvent) bool¶
 
- viewportMargins(self) QMargins¶
 
- viewportSizeHint(self) QSize¶
 
- visibleRegion(self) QRegion¶
 
- visualColumn(self, int) int¶
 
- visualItemRect(self, QTableWidgetItem) QRect¶
 
- visualRect(self, QModelIndex) QRect¶
 
- visualRegionForSelection(self, QItemSelection) QRegion¶
 
- visualRow(self, int) int¶
 
- whatsThis(self) str¶
 
- wheelEvent(self, QWheelEvent)¶
 
- width(self) int¶
 
- widthMM(self) int¶
 
- winId(self) PyQt5.sip.voidptr¶
 
- window(self) QWidget¶
 
- windowFilePath(self) str¶
 
- windowFlags(self) Qt.WindowFlags¶
 
- windowHandle(self) QWindow¶
 
- windowIcon(self) QIcon¶
 
- windowIconChanged¶
 windowIconChanged(self, QIcon) [signal]
- windowIconText(self) str¶
 
- windowIconTextChanged¶
 windowIconTextChanged(self, str) [signal]
- windowModality(self) Qt.WindowModality¶
 
- windowOpacity(self) float¶
 
- windowRole(self) str¶
 
- windowState(self) Qt.WindowStates¶
 
- windowTitle(self) str¶
 
- windowTitleChanged¶
 windowTitleChanged(self, str) [signal]
- windowType(self) Qt.WindowType¶
 
- wordWrap(self) bool¶
 
- x(self) int¶
 
- y(self) int¶
 
- class schrodinger.application.jaguar.gui.utils.WorkspaceInclusionCheckBox(parent=None)[source]¶
 Bases:
PyQt5.QtWidgets.QCheckBoxA checkbox that is skinned to look like the Project Table workspace inclusion checkbox. This checkbox is used in the Transition State and IRC tabs.
- Note
 This skinning could be done using a style sheet, but that requires separate images for checked + disabled and unchecked + disabled. By using a QIcon, these disabled images are generated automatically.
- DrawChildren = 2¶
 
- DrawWindowBackground = 1¶
 
- IgnoreMask = 4¶
 
- class PaintDeviceMetric¶
 Bases:
int
- PdmDepth = 6¶
 
- PdmDevicePixelRatio = 11¶
 
- PdmDevicePixelRatioScaled = 12¶
 
- PdmDpiX = 7¶
 
- PdmDpiY = 8¶
 
- PdmHeight = 2¶
 
- PdmHeightMM = 4¶
 
- PdmNumColors = 5¶
 
- PdmPhysicalDpiX = 9¶
 
- PdmPhysicalDpiY = 10¶
 
- PdmWidth = 1¶
 
- PdmWidthMM = 3¶
 
- class RenderFlag¶
 Bases:
int
- class RenderFlags¶
 - class RenderFlags(Union[QWidget.RenderFlags, QWidget.RenderFlag]) None
 - class RenderFlags(QWidget.RenderFlags) None
 Bases:
sip.simplewrapper- __init__(*args, **kwargs)¶
 
- acceptDrops(self) bool¶
 
- accessibleDescription(self) str¶
 
- accessibleName(self) str¶
 
- actionEvent(self, QActionEvent)¶
 
- actions(self) List[QAction]¶
 
- activateWindow(self)¶
 
- addAction(self, QAction)¶
 
- addActions(self, Iterable[QAction])¶
 
- adjustSize(self)¶
 
- animateClick(self, msecs: int = 100)¶
 
- autoExclusive(self) bool¶
 
- autoFillBackground(self) bool¶
 
- autoRepeat(self) bool¶
 
- autoRepeatDelay(self) int¶
 
- autoRepeatInterval(self) int¶
 
- backgroundRole(self) QPalette.ColorRole¶
 
- baseSize(self) QSize¶
 
- blockSignals(self, bool) bool¶
 
- changeEvent(self, QEvent)¶
 
- checkState(self) Qt.CheckState¶
 
- checkStateSet(self)¶
 
- childAt(self, QPoint) QWidget¶
 - WorkspaceInclusionCheckBox.childAt(self, int, int) -> QWidget
 
- childEvent(self, QChildEvent)¶
 
- children(self) List[QObject]¶
 
- childrenRect(self) QRect¶
 
- childrenRegion(self) QRegion¶
 
- clearFocus(self)¶
 
- clearMask(self)¶
 
- click(self)¶
 
- clicked¶
 clicked(self, checked: bool = False) [signal]
- close(self) bool¶
 
- closeEvent(self, QCloseEvent)¶
 
- colorCount(self) int¶
 
- connectNotify(self, QMetaMethod)¶
 
- contentsMargins(self) QMargins¶
 
- contentsRect(self) QRect¶
 
- contextMenuEvent(self, QContextMenuEvent)¶
 
- contextMenuPolicy(self) Qt.ContextMenuPolicy¶
 
- create(self, window: PyQt5.sip.voidptr = 0, initializeWindow: bool = True, destroyOldWindow: bool = True)¶
 
- createWindowContainer(QWindow, parent: QWidget = None, flags: Union[Qt.WindowFlags, Qt.WindowType] = 0) QWidget¶
 
- cursor(self) QCursor¶
 
- customContextMenuRequested¶
 customContextMenuRequested(self, QPoint) [signal]
- customEvent(self, QEvent)¶
 
- deleteLater(self)¶
 
- depth(self) int¶
 
- destroy(self, destroyWindow: bool = True, destroySubWindows: bool = True)¶
 
- destroyed¶
 destroyed(self, object: QObject = None) [signal]
- devType(self) int¶
 
- devicePixelRatio(self) int¶
 
- devicePixelRatioF(self) float¶
 
- devicePixelRatioFScale() float¶
 
- disconnect(QMetaObject.Connection) bool¶
 - disconnect(self) None
 
- disconnectNotify(self, QMetaMethod)¶
 
- dragEnterEvent(self, QDragEnterEvent)¶
 
- dragLeaveEvent(self, QDragLeaveEvent)¶
 
- dragMoveEvent(self, QDragMoveEvent)¶
 
- dropEvent(self, QDropEvent)¶
 
- dumpObjectInfo(self)¶
 
- dumpObjectTree(self)¶
 
- dynamicPropertyNames(self) List[QByteArray]¶
 
- effectiveWinId(self) PyQt5.sip.voidptr¶
 
- ensurePolished(self)¶
 
- enterEvent(self, QEvent)¶
 
- event(self, QEvent) bool¶
 
- eventFilter(self, QObject, QEvent) bool¶
 
- find(PyQt5.sip.voidptr) QWidget¶
 
- findChild(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject¶
 - findChild(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject
 
- findChildren(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]¶
 - findChildren(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 
- focusInEvent(self, QFocusEvent)¶
 
- focusNextChild(self) bool¶
 
- focusNextPrevChild(self, bool) bool¶
 
- focusOutEvent(self, QFocusEvent)¶
 
- focusPolicy(self) Qt.FocusPolicy¶
 
- focusPreviousChild(self) bool¶
 
- focusProxy(self) QWidget¶
 
- focusWidget(self) QWidget¶
 
- font(self) QFont¶
 
- fontInfo(self) QFontInfo¶
 
- fontMetrics(self) QFontMetrics¶
 
- foregroundRole(self) QPalette.ColorRole¶
 
- frameGeometry(self) QRect¶
 
- frameSize(self) QSize¶
 
- geometry(self) QRect¶
 
- getContentsMargins(self) Tuple[int, int, int, int]¶
 
- grab(self, rectangle: QRect = QRect(QPoint(0, 0), QSize(- 1, - 1))) QPixmap¶
 
- grabGesture(self, Qt.GestureType, flags: Union[Qt.GestureFlags, Qt.GestureFlag] = Qt.GestureFlags())¶
 
- grabKeyboard(self)¶
 
- grabMouse(self)¶
 - grabMouse(self, Union[QCursor, Qt.CursorShape]) None
 
- grabShortcut(self, Union[QKeySequence, QKeySequence.StandardKey, str, int], context: Qt.ShortcutContext = Qt.WindowShortcut) int¶
 
- graphicsEffect(self) QGraphicsEffect¶
 
- graphicsProxyWidget(self) QGraphicsProxyWidget¶
 
- group(self) QButtonGroup¶
 
- hasFocus(self) bool¶
 
- hasHeightForWidth(self) bool¶
 
- hasMouseTracking(self) bool¶
 
- hasTabletTracking(self) bool¶
 
- height(self) int¶
 
- heightForWidth(self, int) int¶
 
- heightMM(self) int¶
 
- hide(self)¶
 
- hideEvent(self, QHideEvent)¶
 
- hitButton(self, QPoint) bool¶
 
- icon(self) QIcon¶
 
- iconSize(self) QSize¶
 
- inherits(self, str) bool¶
 
- initPainter(self, QPainter)¶
 
- initStyleOption(self, QStyleOptionButton)¶
 
- inputMethodEvent(self, QInputMethodEvent)¶
 
- inputMethodHints(self) Qt.InputMethodHints¶
 
- inputMethodQuery(self, Qt.InputMethodQuery) Any¶
 
- WorkspaceInclusionCheckBox.insertAction(self, QAction, QAction)
 
- insertActions(self, QAction, Iterable[QAction])¶
 
- installEventFilter(self, QObject)¶
 
- isActiveWindow(self) bool¶
 
- isAncestorOf(self, QWidget) bool¶
 
- isCheckable(self) bool¶
 
- isChecked(self) bool¶
 
- isDown(self) bool¶
 
- isEnabled(self) bool¶
 
- isEnabledTo(self, QWidget) bool¶
 
- isFullScreen(self) bool¶
 
- isHidden(self) bool¶
 
- isLeftToRight(self) bool¶
 
- isMaximized(self) bool¶
 
- isMinimized(self) bool¶
 
- isModal(self) bool¶
 
- isRightToLeft(self) bool¶
 
- isSignalConnected(self, QMetaMethod) bool¶
 
- isTristate(self) bool¶
 
- isVisible(self) bool¶
 
- isVisibleTo(self, QWidget) bool¶
 
- isWidgetType(self) bool¶
 
- isWindow(self) bool¶
 
- isWindowModified(self) bool¶
 
- isWindowType(self) bool¶
 
- keyPressEvent(self, QKeyEvent)¶
 
- keyReleaseEvent(self, QKeyEvent)¶
 
- keyboardGrabber() QWidget¶
 
- killTimer(self, int)¶
 
- layout(self) QLayout¶
 
- layoutDirection(self) Qt.LayoutDirection¶
 
- leaveEvent(self, QEvent)¶
 
- locale(self) QLocale¶
 
- logicalDpiX(self) int¶
 
- logicalDpiY(self) int¶
 
- lower(self)¶
 
- mapFrom(self, QWidget, QPoint) QPoint¶
 
- mapFromGlobal(self, QPoint) QPoint¶
 
- mapFromParent(self, QPoint) QPoint¶
 
- mapTo(self, QWidget, QPoint) QPoint¶
 
- mapToGlobal(self, QPoint) QPoint¶
 
- mapToParent(self, QPoint) QPoint¶
 
- mask(self) QRegion¶
 
- maximumHeight(self) int¶
 
- maximumSize(self) QSize¶
 
- maximumWidth(self) int¶
 
- metaObject(self) QMetaObject¶
 
- metric(self, QPaintDevice.PaintDeviceMetric) int¶
 
- minimumHeight(self) int¶
 
- minimumSize(self) QSize¶
 
- minimumSizeHint(self) QSize¶
 
- minimumWidth(self) int¶
 
- mouseDoubleClickEvent(self, QMouseEvent)¶
 
- mouseGrabber() QWidget¶
 
- mouseMoveEvent(self, QMouseEvent)¶
 
- mousePressEvent(self, QMouseEvent)¶
 
- mouseReleaseEvent(self, QMouseEvent)¶
 
- move(self, QPoint)¶
 - WorkspaceInclusionCheckBox.move(self, int, int) -> None
 
- moveEvent(self, QMoveEvent)¶
 
- moveToThread(self, QThread)¶
 
- nativeEvent(self, Union[QByteArray, bytes, bytearray], sip.voidptr) Tuple[bool, int]¶
 
- nativeParentWidget(self) QWidget¶
 
- nextCheckState(self)¶
 
- nextInFocusChain(self) QWidget¶
 
- normalGeometry(self) QRect¶
 
- objectName(self) str¶
 
- objectNameChanged¶
 objectNameChanged(self, str) [signal]
- overrideWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- overrideWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- paintEngine(self) QPaintEngine¶
 
- paintingActive(self) bool¶
 
- palette(self) QPalette¶
 
- parent(self) QObject¶
 
- parentWidget(self) QWidget¶
 
- physicalDpiX(self) int¶
 
- physicalDpiY(self) int¶
 
- pos(self) QPoint¶
 
- pressed¶
 pressed(self) [signal]
- previousInFocusChain(self) QWidget¶
 
- property(self, str) Any¶
 
- pyqtConfigure(...)¶
 Each keyword argument is either the name of a Qt property or a Qt signal. For properties the property is set to the given value which should be of an appropriate type. For signals the signal is connected to the given value which should be a callable.
- raise_(self)¶
 
- receivers(self, PYQT_SIGNAL) int¶
 
- rect(self) QRect¶
 
- releaseKeyboard(self)¶
 
- releaseMouse(self)¶
 
- releaseShortcut(self, int)¶
 
- released¶
 released(self) [signal]
- removeAction(self, QAction)¶
 
- removeEventFilter(self, QObject)¶
 
- render(self, QPaintDevice, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren))¶
 - render(self, QPainter, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren)) None
 
- repaint(self)¶
 - WorkspaceInclusionCheckBox.repaint(self, int, int, int, int) -> None
 - repaint(self, QRect) None
 - repaint(self, QRegion) None
 
- resize(self, QSize)¶
 - WorkspaceInclusionCheckBox.resize(self, int, int) -> None
 
- resizeEvent(self, QResizeEvent)¶
 
- restoreGeometry(self, Union[QByteArray, bytes, bytearray]) bool¶
 
- saveGeometry(self) QByteArray¶
 
- WorkspaceInclusionCheckBox.scroll(self, int, int)
 - WorkspaceInclusionCheckBox.scroll(self, int, int, QRect) -> None
 
- sender(self) QObject¶
 
- senderSignalIndex(self) int¶
 
- setAcceptDrops(self, bool)¶
 
- setAccessibleDescription(self, str)¶
 
- setAccessibleName(self, str)¶
 
- setAttribute(self, Qt.WidgetAttribute, on: bool = True)¶
 
- setAutoExclusive(self, bool)¶
 
- setAutoFillBackground(self, bool)¶
 
- setAutoRepeat(self, bool)¶
 
- setAutoRepeatDelay(self, int)¶
 
- setAutoRepeatInterval(self, int)¶
 
- setBackgroundRole(self, QPalette.ColorRole)¶
 
- WorkspaceInclusionCheckBox.setBaseSize(self, int, int)
 - setBaseSize(self, QSize) None¶
 
- setCheckState(self, Qt.CheckState)¶
 
- setCheckable(self, bool)¶
 
- setChecked(self, bool)¶
 
- WorkspaceInclusionCheckBox.setContentsMargins(self, int, int, int, int)
 - setContentsMargins(self, QMargins) None¶
 
- setContextMenuPolicy(self, Qt.ContextMenuPolicy)¶
 
- setCursor(self, Union[QCursor, Qt.CursorShape])¶
 
- setDisabled(self, bool)¶
 
- setDown(self, bool)¶
 
- setEnabled(self, bool)¶
 
- setFixedHeight(self, int)¶
 
- setFixedSize(self, QSize)¶
 - WorkspaceInclusionCheckBox.setFixedSize(self, int, int) -> None
 
- setFixedWidth(self, int)¶
 
- setFocus(self)¶
 - setFocus(self, Qt.FocusReason) None
 
- setFocusPolicy(self, Qt.FocusPolicy)¶
 
- setFocusProxy(self, QWidget)¶
 
- setFont(self, QFont)¶
 
- setForegroundRole(self, QPalette.ColorRole)¶
 
- setGeometry(self, QRect)¶
 - WorkspaceInclusionCheckBox.setGeometry(self, int, int, int, int) -> None
 
- setGraphicsEffect(self, QGraphicsEffect)¶
 
- setHidden(self, bool)¶
 
- setIcon(self, QIcon)¶
 
- setIconSize(self, QSize)¶
 
- setInputMethodHints(self, Union[Qt.InputMethodHints, Qt.InputMethodHint])¶
 
- setLayout(self, QLayout)¶
 
- setLayoutDirection(self, Qt.LayoutDirection)¶
 
- setLocale(self, QLocale)¶
 
- setMask(self, QBitmap)¶
 - setMask(self, QRegion) None
 
- setMaximumHeight(self, int)¶
 
- WorkspaceInclusionCheckBox.setMaximumSize(self, int, int)
 - setMaximumSize(self, QSize) None¶
 
- setMaximumWidth(self, int)¶
 
- setMinimumHeight(self, int)¶
 
- WorkspaceInclusionCheckBox.setMinimumSize(self, int, int)
 - setMinimumSize(self, QSize) None¶
 
- setMinimumWidth(self, int)¶
 
- setMouseTracking(self, bool)¶
 
- setObjectName(self, str)¶
 
- setPalette(self, QPalette)¶
 
- setParent(self, QWidget)¶
 - setParent(self, QWidget, Union[Qt.WindowFlags, Qt.WindowType]) None
 
- setProperty(self, str, Any) bool¶
 
- setShortcut(self, Union[QKeySequence, QKeySequence.StandardKey, str, int])¶
 
- setShortcutAutoRepeat(self, int, enabled: bool = True)¶
 
- setShortcutEnabled(self, int, enabled: bool = True)¶
 
- WorkspaceInclusionCheckBox.setSizeIncrement(self, int, int)
 - setSizeIncrement(self, QSize) None¶
 
- setSizePolicy(self, QSizePolicy)¶
 - setSizePolicy(self, QSizePolicy.Policy, QSizePolicy.Policy) None
 
- setStatusTip(self, str)¶
 
- setStyle(self, QStyle)¶
 
- setStyleSheet(self, str)¶
 
- WorkspaceInclusionCheckBox.setTabOrder(QWidget, QWidget)
 
- setTabletTracking(self, bool)¶
 
- setText(self, str)¶
 
- setToolTip(self, str)¶
 
- setToolTipDuration(self, int)¶
 
- setTristate(self, on: bool = True)¶
 
- setUpdatesEnabled(self, bool)¶
 
- setVisible(self, bool)¶
 
- setWhatsThis(self, str)¶
 
- setWindowFilePath(self, str)¶
 
- setWindowFlag(self, Qt.WindowType, on: bool = True)¶
 
- setWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- setWindowIcon(self, QIcon)¶
 
- setWindowIconText(self, str)¶
 
- setWindowModality(self, Qt.WindowModality)¶
 
- setWindowModified(self, bool)¶
 
- setWindowOpacity(self, float)¶
 
- setWindowRole(self, str)¶
 
- setWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- setWindowTitle(self, str)¶
 
- shortcut(self) QKeySequence¶
 
- show(self)¶
 
- showEvent(self, QShowEvent)¶
 
- showFullScreen(self)¶
 
- showMaximized(self)¶
 
- showMinimized(self)¶
 
- showNormal(self)¶
 
- signalsBlocked(self) bool¶
 
- size(self) QSize¶
 
- sizeHint(self) QSize¶
 
- sizeIncrement(self) QSize¶
 
- sizePolicy(self) QSizePolicy¶
 
- stackUnder(self, QWidget)¶
 
- startTimer(self, int, timerType: Qt.TimerType = Qt.CoarseTimer) int¶
 
- stateChanged¶
 stateChanged(self, int) [signal]
- staticMetaObject = <PyQt5.QtCore.QMetaObject object>¶
 
- statusTip(self) str¶
 
- style(self) QStyle¶
 
- styleSheet(self) str¶
 
- tabletEvent(self, QTabletEvent)¶
 
- testAttribute(self, Qt.WidgetAttribute) bool¶
 
- text(self) str¶
 
- thread(self) QThread¶
 
- timerEvent(self, QTimerEvent)¶
 
- toggle(self)¶
 
- toggled¶
 toggled(self, bool) [signal]
- toolTip(self) str¶
 
- toolTipDuration(self) int¶
 
- tr(self, str, disambiguation: str = None, n: int = - 1) str¶
 
- underMouse(self) bool¶
 
- ungrabGesture(self, Qt.GestureType)¶
 
- unsetCursor(self)¶
 
- unsetLayoutDirection(self)¶
 
- unsetLocale(self)¶
 
- update(self)¶
 - update(self, QRect) None
 - update(self, QRegion) None
 - WorkspaceInclusionCheckBox.update(self, int, int, int, int) -> None
 
- updateGeometry(self)¶
 
- updateMicroFocus(self)¶
 
- updatesEnabled(self) bool¶
 
- visibleRegion(self) QRegion¶
 
- whatsThis(self) str¶
 
- wheelEvent(self, QWheelEvent)¶
 
- width(self) int¶
 
- widthMM(self) int¶
 
- winId(self) PyQt5.sip.voidptr¶
 
- window(self) QWidget¶
 
- windowFilePath(self) str¶
 
- windowFlags(self) Qt.WindowFlags¶
 
- windowHandle(self) QWindow¶
 
- windowIcon(self) QIcon¶
 
- windowIconChanged¶
 windowIconChanged(self, QIcon) [signal]
- windowIconText(self) str¶
 
- windowIconTextChanged¶
 windowIconTextChanged(self, str) [signal]
- windowModality(self) Qt.WindowModality¶
 
- windowOpacity(self) float¶
 
- windowRole(self) str¶
 
- windowState(self) Qt.WindowStates¶
 
- windowTitle(self) str¶
 
- windowTitleChanged¶
 windowTitleChanged(self, str) [signal]
- windowType(self) Qt.WindowType¶
 
- x(self) int¶
 
- y(self) int¶
 
- class schrodinger.application.jaguar.gui.utils.ProjTableLikeView(parent=None)[source]¶
 Bases:
PyQt5.QtWidgets.QTableViewA table view that mimics the selecting and editing behaviors of the Project Table
- selectionCommand(index, event=None)[source]¶
 Don’t update the current selection when using the keyboard to navigate or when clicking on a selected editable item.
- Parameters
 index (
PyQt5.QtCore.QModelIndex) – The newly selected indexevent (
PyQt5.QtCore.QEvent) – The event that triggered the index change
- Returns
 A flag describing how the selection should be updated
- Return type
 int
- commitDataToSelected(editor, index, delegate)[source]¶
 Commit data to all selected cells in the column that is currently being edited.
- Parameters
 editor (
PyQt5.QtWidgets.QWidget) – The editor being used to enter dataindex (
PyQt5.QtCore.QModelIndex) – The index being editeddelegate (
PyQt5.QtWidgets.QAbstractItemDelegate) – The delegate used to create the editor
- setItemDelegateForColumn(column, delegate, connect_selected=False)[source]¶
 Set the delegate for the specified column. Note that this function adds the optional
connect_selectedargument not present in the QTableView function.- Parameters
 column (int) – The column to set the delegate for
delegate (
PyQt5.QtWidgets.QAbstractItemDelegate) – The delegate to setconnect_selected (bool) – If True, the delegate’s commitDataToSelected signal will be connected
- AboveItem = 1¶
 
- AdjustIgnored = 0¶
 
- AdjustToContents = 2¶
 
- AdjustToContentsOnFirstShow = 1¶
 
- AllEditTriggers = 31¶
 
- AnimatingState = 6¶
 
- AnyKeyPressed = 16¶
 
- BelowItem = 2¶
 
- Box = 1¶
 
- CollapsingState = 5¶
 
- ContiguousSelection = 4¶
 
- CurrentChanged = 1¶
 
- class CursorAction¶
 Bases:
int
- DoubleClicked = 2¶
 
- DragDrop = 3¶
 
- class DragDropMode¶
 Bases:
int
- DragOnly = 1¶
 
- DragSelectingState = 2¶
 
- DraggingState = 1¶
 
- DrawChildren = 2¶
 
- DrawWindowBackground = 1¶
 
- class DropIndicatorPosition¶
 Bases:
int
- DropOnly = 2¶
 
- EditKeyPressed = 8¶
 
- class EditTrigger¶
 Bases:
int
- class EditTriggers¶
 - class EditTriggers(Union[QAbstractItemView.EditTriggers, QAbstractItemView.EditTrigger]) None
 - class EditTriggers(QAbstractItemView.EditTriggers) None
 Bases:
sip.simplewrapper- __init__(*args, **kwargs)¶
 
- EditingState = 3¶
 
- EnsureVisible = 0¶
 
- ExpandingState = 4¶
 
- ExtendedSelection = 3¶
 
- HLine = 4¶
 
- IgnoreMask = 4¶
 
- InternalMove = 4¶
 
- MoveDown = 1¶
 
- MoveEnd = 5¶
 
- MoveHome = 4¶
 
- MoveLeft = 2¶
 
- MoveNext = 8¶
 
- MovePageDown = 7¶
 
- MovePageUp = 6¶
 
- MovePrevious = 9¶
 
- MoveRight = 3¶
 
- MoveUp = 0¶
 
- MultiSelection = 2¶
 
- NoDragDrop = 0¶
 
- NoEditTriggers = 0¶
 
- NoFrame = 0¶
 
- NoSelection = 0¶
 
- NoState = 0¶
 
- OnItem = 0¶
 
- OnViewport = 3¶
 
- class PaintDeviceMetric¶
 Bases:
int
- Panel = 2¶
 
- PdmDepth = 6¶
 
- PdmDevicePixelRatio = 11¶
 
- PdmDevicePixelRatioScaled = 12¶
 
- PdmDpiX = 7¶
 
- PdmDpiY = 8¶
 
- PdmHeight = 2¶
 
- PdmHeightMM = 4¶
 
- PdmNumColors = 5¶
 
- PdmPhysicalDpiX = 9¶
 
- PdmPhysicalDpiY = 10¶
 
- PdmWidth = 1¶
 
- PdmWidthMM = 3¶
 
- Plain = 16¶
 
- PositionAtBottom = 2¶
 
- PositionAtCenter = 3¶
 
- PositionAtTop = 1¶
 
- Raised = 32¶
 
- class RenderFlag¶
 Bases:
int
- class RenderFlags¶
 - class RenderFlags(Union[QWidget.RenderFlags, QWidget.RenderFlag]) None
 - class RenderFlags(QWidget.RenderFlags) None
 Bases:
sip.simplewrapper- __init__(*args, **kwargs)¶
 
- class ScrollHint¶
 Bases:
int
- class ScrollMode¶
 Bases:
int
- ScrollPerItem = 0¶
 
- ScrollPerPixel = 1¶
 
- SelectColumns = 2¶
 
- SelectItems = 0¶
 
- SelectRows = 1¶
 
- SelectedClicked = 4¶
 
- class SelectionBehavior¶
 Bases:
int
- class SelectionMode¶
 Bases:
int
- class Shadow¶
 Bases:
int
- Shadow_Mask = 240¶
 
- class Shape¶
 Bases:
int
- Shape_Mask = 15¶
 
- SingleSelection = 1¶
 
- class SizeAdjustPolicy¶
 Bases:
int
- class State¶
 Bases:
int
- class StyleMask¶
 Bases:
int
- StyledPanel = 6¶
 
- Sunken = 48¶
 
- VLine = 5¶
 
- WinPanel = 3¶
 
- acceptDrops(self) bool¶
 
- accessibleDescription(self) str¶
 
- accessibleName(self) str¶
 
- actionEvent(self, QActionEvent)¶
 
- actions(self) List[QAction]¶
 
- activateWindow(self)¶
 
- activated¶
 activated(self, QModelIndex) [signal]
- addAction(self, QAction)¶
 
- addActions(self, Iterable[QAction])¶
 
- addScrollBarWidget(self, QWidget, Union[Qt.Alignment, Qt.AlignmentFlag])¶
 
- adjustSize(self)¶
 
- alternatingRowColors(self) bool¶
 
- autoFillBackground(self) bool¶
 
- autoScrollMargin(self) int¶
 
- backgroundRole(self) QPalette.ColorRole¶
 
- baseSize(self) QSize¶
 
- blockSignals(self, bool) bool¶
 
- changeEvent(self, QEvent)¶
 
- childAt(self, QPoint) QWidget¶
 - ProjTableLikeView.childAt(self, int, int) -> QWidget
 
- childEvent(self, QChildEvent)¶
 
- children(self) List[QObject]¶
 
- childrenRect(self) QRect¶
 
- childrenRegion(self) QRegion¶
 
- clearFocus(self)¶
 
- clearMask(self)¶
 
- clearSelection(self)¶
 
- clearSpans(self)¶
 
- clicked¶
 clicked(self, QModelIndex) [signal]
- close(self) bool¶
 
- closeEditor(self, QWidget, QAbstractItemDelegate.EndEditHint)¶
 
- closeEvent(self, QCloseEvent)¶
 
- closePersistentEditor(self, QModelIndex)¶
 
- colorCount(self) int¶
 
- columnAt(self, int) int¶
 
- ProjTableLikeView.columnCountChanged(self, int, int)
 
- ProjTableLikeView.columnMoved(self, int, int, int)
 
- ProjTableLikeView.columnResized(self, int, int, int)
 
- ProjTableLikeView.columnSpan(self, int, int) -> int
 
- columnViewportPosition(self, int) int¶
 
- columnWidth(self, int) int¶
 
- commitData(self, QWidget)¶
 
- connectNotify(self, QMetaMethod)¶
 
- contentsMargins(self) QMargins¶
 
- contentsRect(self) QRect¶
 
- contextMenuEvent(self, QContextMenuEvent)¶
 
- contextMenuPolicy(self) Qt.ContextMenuPolicy¶
 
- cornerWidget(self) QWidget¶
 
- create(self, window: PyQt5.sip.voidptr = 0, initializeWindow: bool = True, destroyOldWindow: bool = True)¶
 
- createWindowContainer(QWindow, parent: QWidget = None, flags: Union[Qt.WindowFlags, Qt.WindowType] = 0) QWidget¶
 
- ProjTableLikeView.currentChanged(self, QModelIndex, QModelIndex)
 
- currentIndex(self) QModelIndex¶
 
- cursor(self) QCursor¶
 
- customContextMenuRequested¶
 customContextMenuRequested(self, QPoint) [signal]
- customEvent(self, QEvent)¶
 
- ProjTableLikeView.dataChanged(self, QModelIndex, QModelIndex, roles: Iterable[int] = [])
 
- defaultDropAction(self) Qt.DropAction¶
 
- deleteLater(self)¶
 
- depth(self) int¶
 
- destroy(self, destroyWindow: bool = True, destroySubWindows: bool = True)¶
 
- destroyed¶
 destroyed(self, object: QObject = None) [signal]
- devType(self) int¶
 
- devicePixelRatio(self) int¶
 
- devicePixelRatioF(self) float¶
 
- devicePixelRatioFScale() float¶
 
- dirtyRegionOffset(self) QPoint¶
 
- disconnect(QMetaObject.Connection) bool¶
 - disconnect(self) None
 
- disconnectNotify(self, QMetaMethod)¶
 
- doubleClicked¶
 doubleClicked(self, QModelIndex) [signal]
- dragDropMode(self) QAbstractItemView.DragDropMode¶
 
- dragDropOverwriteMode(self) bool¶
 
- dragEnabled(self) bool¶
 
- dragEnterEvent(self, QDragEnterEvent)¶
 
- dragLeaveEvent(self, QDragLeaveEvent)¶
 
- dragMoveEvent(self, QDragMoveEvent)¶
 
- drawFrame(self, QPainter)¶
 
- dropEvent(self, QDropEvent)¶
 
- dropIndicatorPosition(self) QAbstractItemView.DropIndicatorPosition¶
 
- dumpObjectInfo(self)¶
 
- dumpObjectTree(self)¶
 
- dynamicPropertyNames(self) List[QByteArray]¶
 
- edit(self, QModelIndex)¶
 - edit(self, QModelIndex, QAbstractItemView.EditTrigger, QEvent) bool
 
- editTriggers(self) QAbstractItemView.EditTriggers¶
 
- editorDestroyed(self, QObject)¶
 
- effectiveWinId(self) PyQt5.sip.voidptr¶
 
- ensurePolished(self)¶
 
- enterEvent(self, QEvent)¶
 
- entered¶
 entered(self, QModelIndex) [signal]
- event(self, QEvent) bool¶
 
- eventFilter(self, QObject, QEvent) bool¶
 
- executeDelayedItemsLayout(self)¶
 
- find(PyQt5.sip.voidptr) QWidget¶
 
- findChild(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject¶
 - findChild(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) QObject
 
- findChildren(self, type, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]¶
 - findChildren(self, Tuple, name: str = '', options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegExp, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, type, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 - findChildren(self, Tuple, QRegularExpression, options: Union[Qt.FindChildOptions, Qt.FindChildOption] = Qt.FindChildrenRecursively) List[QObject]
 
- focusInEvent(self, QFocusEvent)¶
 
- focusNextChild(self) bool¶
 
- focusNextPrevChild(self, bool) bool¶
 
- focusOutEvent(self, QFocusEvent)¶
 
- focusPolicy(self) Qt.FocusPolicy¶
 
- focusPreviousChild(self) bool¶
 
- focusProxy(self) QWidget¶
 
- focusWidget(self) QWidget¶
 
- font(self) QFont¶
 
- fontInfo(self) QFontInfo¶
 
- fontMetrics(self) QFontMetrics¶
 
- foregroundRole(self) QPalette.ColorRole¶
 
- frameGeometry(self) QRect¶
 
- frameRect(self) QRect¶
 
- frameShadow(self) QFrame.Shadow¶
 
- frameShape(self) QFrame.Shape¶
 
- frameSize(self) QSize¶
 
- frameStyle(self) int¶
 
- frameWidth(self) int¶
 
- geometry(self) QRect¶
 
- getContentsMargins(self) Tuple[int, int, int, int]¶
 
- grab(self, rectangle: QRect = QRect(QPoint(0, 0), QSize(- 1, - 1))) QPixmap¶
 
- grabGesture(self, Qt.GestureType, flags: Union[Qt.GestureFlags, Qt.GestureFlag] = Qt.GestureFlags())¶
 
- grabKeyboard(self)¶
 
- grabMouse(self)¶
 - grabMouse(self, Union[QCursor, Qt.CursorShape]) None
 
- grabShortcut(self, Union[QKeySequence, QKeySequence.StandardKey, str, int], context: Qt.ShortcutContext = Qt.WindowShortcut) int¶
 
- graphicsEffect(self) QGraphicsEffect¶
 
- graphicsProxyWidget(self) QGraphicsProxyWidget¶
 
- gridStyle(self) Qt.PenStyle¶
 
- hasAutoScroll(self) bool¶
 
- hasFocus(self) bool¶
 
- hasHeightForWidth(self) bool¶
 
- hasMouseTracking(self) bool¶
 
- hasTabletTracking(self) bool¶
 
- height(self) int¶
 
- heightForWidth(self, int) int¶
 
- heightMM(self) int¶
 
- hide(self)¶
 
- hideColumn(self, int)¶
 
- hideEvent(self, QHideEvent)¶
 
- hideRow(self, int)¶
 
- horizontalHeader(self) QHeaderView¶
 
- horizontalOffset(self) int¶
 
- horizontalScrollBar(self) QScrollBar¶
 
- horizontalScrollBarPolicy(self) Qt.ScrollBarPolicy¶
 
- horizontalScrollMode(self) QAbstractItemView.ScrollMode¶
 
- horizontalScrollbarAction(self, int)¶
 
- horizontalScrollbarValueChanged(self, int)¶
 
- iconSize(self) QSize¶
 
- iconSizeChanged¶
 iconSizeChanged(self, QSize) [signal]
- indexAt(self, QPoint) QModelIndex¶
 
- indexWidget(self, QModelIndex) QWidget¶
 
- inherits(self, str) bool¶
 
- initPainter(self, QPainter)¶
 
- initStyleOption(self, QStyleOptionFrame)¶
 
- inputMethodEvent(self, QInputMethodEvent)¶
 
- inputMethodHints(self) Qt.InputMethodHints¶
 
- inputMethodQuery(self, Qt.InputMethodQuery) Any¶
 
- ProjTableLikeView.insertAction(self, QAction, QAction)
 
- insertActions(self, QAction, Iterable[QAction])¶
 
- installEventFilter(self, QObject)¶
 
- isActiveWindow(self) bool¶
 
- isAncestorOf(self, QWidget) bool¶
 
- isColumnHidden(self, int) bool¶
 
- isCornerButtonEnabled(self) bool¶
 
- isEnabled(self) bool¶
 
- isEnabledTo(self, QWidget) bool¶
 
- isFullScreen(self) bool¶
 
- isHidden(self) bool¶
 
- isIndexHidden(self, QModelIndex) bool¶
 
- isLeftToRight(self) bool¶
 
- isMaximized(self) bool¶
 
- isMinimized(self) bool¶
 
- isModal(self) bool¶
 
- isPersistentEditorOpen(self, QModelIndex) bool¶
 
- isRightToLeft(self) bool¶
 
- isRowHidden(self, int) bool¶
 
- isSignalConnected(self, QMetaMethod) bool¶
 
- isSortingEnabled(self) bool¶
 
- isVisible(self) bool¶
 
- isVisibleTo(self, QWidget) bool¶
 
- isWidgetType(self) bool¶
 
- isWindow(self) bool¶
 
- isWindowModified(self) bool¶
 
- isWindowType(self) bool¶
 
- itemDelegate(self) QAbstractItemDelegate¶
 - itemDelegate(self, QModelIndex) QAbstractItemDelegate
 
- itemDelegateForColumn(self, int) QAbstractItemDelegate¶
 
- itemDelegateForRow(self, int) QAbstractItemDelegate¶
 
- keyPressEvent(self, QKeyEvent)¶
 
- keyReleaseEvent(self, QKeyEvent)¶
 
- keyboardGrabber() QWidget¶
 
- keyboardSearch(self, str)¶
 
- killTimer(self, int)¶
 
- layout(self) QLayout¶
 
- layoutDirection(self) Qt.LayoutDirection¶
 
- leaveEvent(self, QEvent)¶
 
- lineWidth(self) int¶
 
- locale(self) QLocale¶
 
- logicalDpiX(self) int¶
 
- logicalDpiY(self) int¶
 
- lower(self)¶
 
- mapFrom(self, QWidget, QPoint) QPoint¶
 
- mapFromGlobal(self, QPoint) QPoint¶
 
- mapFromParent(self, QPoint) QPoint¶
 
- mapTo(self, QWidget, QPoint) QPoint¶
 
- mapToGlobal(self, QPoint) QPoint¶
 
- mapToParent(self, QPoint) QPoint¶
 
- mask(self) QRegion¶
 
- maximumHeight(self) int¶
 
- maximumSize(self) QSize¶
 
- maximumViewportSize(self) QSize¶
 
- maximumWidth(self) int¶
 
- metaObject(self) QMetaObject¶
 
- metric(self, QPaintDevice.PaintDeviceMetric) int¶
 
- midLineWidth(self) int¶
 
- minimumHeight(self) int¶
 
- minimumSize(self) QSize¶
 
- minimumSizeHint(self) QSize¶
 
- minimumWidth(self) int¶
 
- model(self) QAbstractItemModel¶
 
- mouseDoubleClickEvent(self, QMouseEvent)¶
 
- mouseGrabber() QWidget¶
 
- mouseMoveEvent(self, QMouseEvent)¶
 
- mousePressEvent(self, QMouseEvent)¶
 
- mouseReleaseEvent(self, QMouseEvent)¶
 
- move(self, QPoint)¶
 - ProjTableLikeView.move(self, int, int) -> None
 
- moveCursor(self, QAbstractItemView.CursorAction, Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]) QModelIndex¶
 
- moveEvent(self, QMoveEvent)¶
 
- moveToThread(self, QThread)¶
 
- nativeEvent(self, Union[QByteArray, bytes, bytearray], sip.voidptr) Tuple[bool, int]¶
 
- nativeParentWidget(self) QWidget¶
 
- nextInFocusChain(self) QWidget¶
 
- normalGeometry(self) QRect¶
 
- objectName(self) str¶
 
- objectNameChanged¶
 objectNameChanged(self, str) [signal]
- openPersistentEditor(self, QModelIndex)¶
 
- overrideWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- overrideWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- paintEngine(self) QPaintEngine¶
 
- paintEvent(self, QPaintEvent)¶
 
- paintingActive(self) bool¶
 
- palette(self) QPalette¶
 
- parent(self) QObject¶
 
- parentWidget(self) QWidget¶
 
- physicalDpiX(self) int¶
 
- physicalDpiY(self) int¶
 
- pos(self) QPoint¶
 
- pressed¶
 pressed(self, QModelIndex) [signal]
- previousInFocusChain(self) QWidget¶
 
- property(self, str) Any¶
 
- pyqtConfigure(...)¶
 Each keyword argument is either the name of a Qt property or a Qt signal. For properties the property is set to the given value which should be of an appropriate type. For signals the signal is connected to the given value which should be a callable.
- raise_(self)¶
 
- receivers(self, PYQT_SIGNAL) int¶
 
- rect(self) QRect¶
 
- releaseKeyboard(self)¶
 
- releaseMouse(self)¶
 
- releaseShortcut(self, int)¶
 
- removeAction(self, QAction)¶
 
- removeEventFilter(self, QObject)¶
 
- render(self, QPaintDevice, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren))¶
 - render(self, QPainter, targetOffset: QPoint = QPoint(), sourceRegion: QRegion = QRegion(), flags: Union[QWidget.RenderFlags, QWidget.RenderFlag] = QWidget.RenderFlags(QWidget.RenderFlag.DrawWindowBackground | QWidget.RenderFlag.DrawChildren)) None
 
- repaint(self)¶
 - ProjTableLikeView.repaint(self, int, int, int, int) -> None
 - repaint(self, QRect) None
 - repaint(self, QRegion) None
 
- reset(self)¶
 
- resetHorizontalScrollMode(self)¶
 
- resetVerticalScrollMode(self)¶
 
- resize(self, QSize)¶
 - ProjTableLikeView.resize(self, int, int) -> None
 
- resizeColumnToContents(self, int)¶
 
- resizeColumnsToContents(self)¶
 
- resizeEvent(self, QResizeEvent)¶
 
- resizeRowToContents(self, int)¶
 
- resizeRowsToContents(self)¶
 
- restoreGeometry(self, Union[QByteArray, bytes, bytearray]) bool¶
 
- rootIndex(self) QModelIndex¶
 
- rowAt(self, int) int¶
 
- ProjTableLikeView.rowCountChanged(self, int, int)
 
- rowHeight(self, int) int¶
 
- ProjTableLikeView.rowMoved(self, int, int, int)
 
- ProjTableLikeView.rowResized(self, int, int, int)
 
- ProjTableLikeView.rowSpan(self, int, int) -> int
 
- rowViewportPosition(self, int) int¶
 
- ProjTableLikeView.rowsAboutToBeRemoved(self, QModelIndex, int, int)
 
- ProjTableLikeView.rowsInserted(self, QModelIndex, int, int)
 
- saveGeometry(self) QByteArray¶
 
- scheduleDelayedItemsLayout(self)¶
 
- ProjTableLikeView.scroll(self, int, int)
 - ProjTableLikeView.scroll(self, int, int, QRect) -> None
 
- scrollBarWidgets(self, Union[Qt.Alignment, Qt.AlignmentFlag]) List[QWidget]¶
 
- ProjTableLikeView.scrollContentsBy(self, int, int)
 
- ProjTableLikeView.scrollDirtyRegion(self, int, int)
 
- scrollTo(self, QModelIndex, hint: QAbstractItemView.ScrollHint = QAbstractItemView.EnsureVisible)¶
 
- scrollToBottom(self)¶
 
- scrollToTop(self)¶
 
- selectAll(self)¶
 
- selectColumn(self, int)¶
 
- selectRow(self, int)¶
 
- selectedIndexes(self) List[QModelIndex]¶
 
- selectionBehavior(self) QAbstractItemView.SelectionBehavior¶
 
- ProjTableLikeView.selectionChanged(self, QItemSelection, QItemSelection)
 
- selectionMode(self) QAbstractItemView.SelectionMode¶
 
- selectionModel(self) QItemSelectionModel¶
 
- sender(self) QObject¶
 
- senderSignalIndex(self) int¶
 
- setAcceptDrops(self, bool)¶
 
- setAccessibleDescription(self, str)¶
 
- setAccessibleName(self, str)¶
 
- setAlternatingRowColors(self, bool)¶
 
- setAttribute(self, Qt.WidgetAttribute, on: bool = True)¶
 
- setAutoFillBackground(self, bool)¶
 
- setAutoScroll(self, bool)¶
 
- setAutoScrollMargin(self, int)¶
 
- setBackgroundRole(self, QPalette.ColorRole)¶
 
- ProjTableLikeView.setBaseSize(self, int, int)
 - setBaseSize(self, QSize) None¶
 
- setColumnHidden(self, int, bool)¶
 
- ProjTableLikeView.setColumnWidth(self, int, int)
 
- ProjTableLikeView.setContentsMargins(self, int, int, int, int)
 - setContentsMargins(self, QMargins) None¶
 
- setContextMenuPolicy(self, Qt.ContextMenuPolicy)¶
 
- setCornerButtonEnabled(self, bool)¶
 
- setCornerWidget(self, QWidget)¶
 
- setCurrentIndex(self, QModelIndex)¶
 
- setCursor(self, Union[QCursor, Qt.CursorShape])¶
 
- setDefaultDropAction(self, Qt.DropAction)¶
 
- setDirtyRegion(self, QRegion)¶
 
- setDisabled(self, bool)¶
 
- setDragDropMode(self, QAbstractItemView.DragDropMode)¶
 
- setDragDropOverwriteMode(self, bool)¶
 
- setDragEnabled(self, bool)¶
 
- setDropIndicatorShown(self, bool)¶
 
- setEditTriggers(self, Union[QAbstractItemView.EditTriggers, QAbstractItemView.EditTrigger])¶
 
- setEnabled(self, bool)¶
 
- setFixedHeight(self, int)¶
 
- setFixedSize(self, QSize)¶
 - ProjTableLikeView.setFixedSize(self, int, int) -> None
 
- setFixedWidth(self, int)¶
 
- setFocus(self)¶
 - setFocus(self, Qt.FocusReason) None
 
- setFocusPolicy(self, Qt.FocusPolicy)¶
 
- setFocusProxy(self, QWidget)¶
 
- setFont(self, QFont)¶
 
- setForegroundRole(self, QPalette.ColorRole)¶
 
- setFrameRect(self, QRect)¶
 
- setFrameShadow(self, QFrame.Shadow)¶
 
- setFrameShape(self, QFrame.Shape)¶
 
- setFrameStyle(self, int)¶
 
- setGeometry(self, QRect)¶
 - ProjTableLikeView.setGeometry(self, int, int, int, int) -> None
 
- setGraphicsEffect(self, QGraphicsEffect)¶
 
- setGridStyle(self, Qt.PenStyle)¶
 
- setHidden(self, bool)¶
 
- setHorizontalHeader(self, QHeaderView)¶
 
- setHorizontalScrollBar(self, QScrollBar)¶
 
- setHorizontalScrollBarPolicy(self, Qt.ScrollBarPolicy)¶
 
- setHorizontalScrollMode(self, QAbstractItemView.ScrollMode)¶
 
- setIconSize(self, QSize)¶
 
- setIndexWidget(self, QModelIndex, QWidget)¶
 
- setInputMethodHints(self, Union[Qt.InputMethodHints, Qt.InputMethodHint])¶
 
- setItemDelegate(self, QAbstractItemDelegate)¶
 
- setItemDelegateForRow(self, int, QAbstractItemDelegate)¶
 
- setLayout(self, QLayout)¶
 
- setLayoutDirection(self, Qt.LayoutDirection)¶
 
- setLineWidth(self, int)¶
 
- setLocale(self, QLocale)¶
 
- setMask(self, QBitmap)¶
 - setMask(self, QRegion) None
 
- setMaximumHeight(self, int)¶
 
- ProjTableLikeView.setMaximumSize(self, int, int)
 - setMaximumSize(self, QSize) None¶
 
- setMaximumWidth(self, int)¶
 
- setMidLineWidth(self, int)¶
 
- setMinimumHeight(self, int)¶
 
- ProjTableLikeView.setMinimumSize(self, int, int)
 - setMinimumSize(self, QSize) None¶
 
- setMinimumWidth(self, int)¶
 
- setModel(self, QAbstractItemModel)¶
 
- setMouseTracking(self, bool)¶
 
- setObjectName(self, str)¶
 
- setPalette(self, QPalette)¶
 
- setParent(self, QWidget)¶
 - setParent(self, QWidget, Union[Qt.WindowFlags, Qt.WindowType]) None
 
- setProperty(self, str, Any) bool¶
 
- setRootIndex(self, QModelIndex)¶
 
- ProjTableLikeView.setRowHeight(self, int, int)
 
- setRowHidden(self, int, bool)¶
 
- setSelection(self, QRect, Union[QItemSelectionModel.SelectionFlags, QItemSelectionModel.SelectionFlag])¶
 
- setSelectionBehavior(self, QAbstractItemView.SelectionBehavior)¶
 
- setSelectionMode(self, QAbstractItemView.SelectionMode)¶
 
- setSelectionModel(self, QItemSelectionModel)¶
 
- setShortcutAutoRepeat(self, int, enabled: bool = True)¶
 
- setShortcutEnabled(self, int, enabled: bool = True)¶
 
- setShowGrid(self, bool)¶
 
- setSizeAdjustPolicy(self, QAbstractScrollArea.SizeAdjustPolicy)¶
 
- ProjTableLikeView.setSizeIncrement(self, int, int)
 - setSizeIncrement(self, QSize) None¶
 
- setSizePolicy(self, QSizePolicy)¶
 - setSizePolicy(self, QSizePolicy.Policy, QSizePolicy.Policy) None
 
- setSortingEnabled(self, bool)¶
 
- ProjTableLikeView.setSpan(self, int, int, int, int)
 
- setState(self, QAbstractItemView.State)¶
 
- setStatusTip(self, str)¶
 
- setStyle(self, QStyle)¶
 
- setStyleSheet(self, str)¶
 
- ProjTableLikeView.setTabOrder(QWidget, QWidget)
 
- setTabletTracking(self, bool)¶
 
- setTextElideMode(self, Qt.TextElideMode)¶
 
- setToolTip(self, str)¶
 
- setToolTipDuration(self, int)¶
 
- setUpdatesEnabled(self, bool)¶
 
- setVerticalHeader(self, QHeaderView)¶
 
- setVerticalScrollBar(self, QScrollBar)¶
 
- setVerticalScrollBarPolicy(self, Qt.ScrollBarPolicy)¶
 
- setVerticalScrollMode(self, QAbstractItemView.ScrollMode)¶
 
- setViewport(self, QWidget)¶
 
- ProjTableLikeView.setViewportMargins(self, int, int, int, int)
 - setViewportMargins(self, QMargins) None¶
 
- setVisible(self, bool)¶
 
- setWhatsThis(self, str)¶
 
- setWindowFilePath(self, str)¶
 
- setWindowFlag(self, Qt.WindowType, on: bool = True)¶
 
- setWindowFlags(self, Union[Qt.WindowFlags, Qt.WindowType])¶
 
- setWindowIcon(self, QIcon)¶
 
- setWindowIconText(self, str)¶
 
- setWindowModality(self, Qt.WindowModality)¶
 
- setWindowModified(self, bool)¶
 
- setWindowOpacity(self, float)¶
 
- setWindowRole(self, str)¶
 
- setWindowState(self, Union[Qt.WindowStates, Qt.WindowState])¶
 
- setWindowTitle(self, str)¶
 
- setWordWrap(self, bool)¶
 
- setupViewport(self, QWidget)¶
 
- show(self)¶
 
- showColumn(self, int)¶
 
- showDropIndicator(self) bool¶
 
- showEvent(self, QShowEvent)¶
 
- showFullScreen(self)¶
 
- showGrid(self) bool¶
 
- showMaximized(self)¶
 
- showMinimized(self)¶
 
- showNormal(self)¶
 
- showRow(self, int)¶
 
- signalsBlocked(self) bool¶
 
- size(self) QSize¶
 
- sizeAdjustPolicy(self) QAbstractScrollArea.SizeAdjustPolicy¶
 
- sizeHint(self) QSize¶
 
- sizeHintForColumn(self, int) int¶
 
- sizeHintForIndex(self, QModelIndex) QSize¶
 
- sizeHintForRow(self, int) int¶
 
- sizeIncrement(self) QSize¶
 
- sizePolicy(self) QSizePolicy¶
 
- sortByColumn(self, int, Qt.SortOrder)¶
 
- stackUnder(self, QWidget)¶
 
- startDrag(self, Union[Qt.DropActions, Qt.DropAction])¶
 
- startTimer(self, int, timerType: Qt.TimerType = Qt.CoarseTimer) int¶
 
- state(self) QAbstractItemView.State¶
 
- staticMetaObject = <PyQt5.QtCore.QMetaObject object>¶
 
- statusTip(self) str¶
 
- style(self) QStyle¶
 
- styleSheet(self) str¶
 
- tabletEvent(self, QTabletEvent)¶
 
- testAttribute(self, Qt.WidgetAttribute) bool¶
 
- textElideMode(self) Qt.TextElideMode¶
 
- thread(self) QThread¶
 
- timerEvent(self, QTimerEvent)¶
 
- toolTip(self) str¶
 
- toolTipDuration(self) int¶
 
- tr(self, str, disambiguation: str = None, n: int = - 1) str¶
 
- underMouse(self) bool¶
 
- ungrabGesture(self, Qt.GestureType)¶
 
- unsetCursor(self)¶
 
- unsetLayoutDirection(self)¶
 
- unsetLocale(self)¶
 
- update(self)¶
 - update(self, QModelIndex) None
 
- updateEditorData(self)¶
 
- updateEditorGeometries(self)¶
 
- updateGeometries(self)¶
 
- updateGeometry(self)¶
 
- updateMicroFocus(self)¶
 
- updatesEnabled(self) bool¶
 
- verticalHeader(self) QHeaderView¶
 
- verticalOffset(self) int¶
 
- verticalScrollBar(self) QScrollBar¶
 
- verticalScrollBarPolicy(self) Qt.ScrollBarPolicy¶
 
- verticalScrollMode(self) QAbstractItemView.ScrollMode¶
 
- verticalScrollbarAction(self, int)¶
 
- verticalScrollbarValueChanged(self, int)¶
 
- viewOptions(self) QStyleOptionViewItem¶
 
- viewport(self) QWidget¶
 
- viewportEntered¶
 viewportEntered(self) [signal]
- viewportEvent(self, QEvent) bool¶
 
- viewportMargins(self) QMargins¶
 
- viewportSizeHint(self) QSize¶
 
- visibleRegion(self) QRegion¶
 
- visualRect(self, QModelIndex) QRect¶
 
- visualRegionForSelection(self, QItemSelection) QRegion¶
 
- whatsThis(self) str¶
 
- wheelEvent(self, QWheelEvent)¶
 
- width(self) int¶
 
- widthMM(self) int¶
 
- winId(self) PyQt5.sip.voidptr¶
 
- window(self) QWidget¶
 
- windowFilePath(self) str¶
 
- windowFlags(self) Qt.WindowFlags¶
 
- windowHandle(self) QWindow¶
 
- windowIcon(self) QIcon¶
 
- windowIconChanged¶
 windowIconChanged(self, QIcon) [signal]
- windowIconText(self) str¶
 
- windowIconTextChanged¶
 windowIconTextChanged(self, str) [signal]
- windowModality(self) Qt.WindowModality¶
 
- windowOpacity(self) float¶
 
- windowRole(self) str¶
 
- windowState(self) Qt.WindowStates¶
 
- windowTitle(self) str¶
 
- windowTitleChanged¶
 windowTitleChanged(self, str) [signal]
- windowType(self) Qt.WindowType¶
 
- wordWrap(self) bool¶
 
- x(self) int¶
 
- y(self) int¶