anki/qt/tools/stubs/PyQt5/QtWidgets.pyi
Damien Elmes 5876866565 tweaking the folder names again
hopefully that's the last of it
2020-01-03 07:48:38 +10:00

9797 lines
493 KiB
Python

# The PEP 484 type hints stub file for the QtWidgets module.
#
# Generated by SIP 5.0.0
#
# Copyright (c) 2019 Riverbank Computing Limited <info@riverbankcomputing.com>
#
# This file is part of PyQt5.
#
# This file may be used under the terms of the GNU General Public License
# version 3.0 as published by the Free Software Foundation and appearing in
# the file LICENSE included in the packaging of this file. Please review the
# following information to ensure the GNU General Public License version 3.0
# requirements will be met: http://www.gnu.org/copyleft/gpl.html.
#
# If you do not wish to use this file under the terms of the GPL version 3.0
# then you may purchase a commercial license. For more information contact
# info@riverbankcomputing.com.
#
# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
import typing
import sip
from PyQt5 import QtGui
from PyQt5 import QtCore
# Support for QDate, QDateTime and QTime.
import datetime
# Convenient type aliases.
PYQT_SIGNAL = typing.Union[QtCore.pyqtSignal, QtCore.pyqtBoundSignal]
PYQT_SLOT = typing.Union[typing.Callable[..., None], QtCore.pyqtBoundSignal]
# Convenient aliases for complicated OpenGL types.
PYQT_OPENGL_ARRAY = typing.Union[typing.Sequence[int], typing.Sequence[float],
sip.Buffer, None]
PYQT_OPENGL_BOUND_ARRAY = typing.Union[typing.Sequence[int],
typing.Sequence[float], sip.Buffer, int, None]
class QWidget(QtCore.QObject, QtGui.QPaintDevice):
class RenderFlag(int): ...
DrawWindowBackground = ... # type: 'QWidget.RenderFlag'
DrawChildren = ... # type: 'QWidget.RenderFlag'
IgnoreMask = ... # type: 'QWidget.RenderFlag'
class RenderFlags(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QWidget.RenderFlags', 'QWidget.RenderFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QWidget.RenderFlags') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QWidget.RenderFlags': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional['QWidget'] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def setWindowFlag(self, a0: QtCore.Qt.WindowType, on: bool = ...) -> None: ...
def hasTabletTracking(self) -> bool: ...
def setTabletTracking(self, enable: bool) -> None: ...
def windowIconTextChanged(self, iconText: str) -> None: ...
def windowIconChanged(self, icon: QtGui.QIcon) -> None: ...
def windowTitleChanged(self, title: str) -> None: ...
def toolTipDuration(self) -> int: ...
def setToolTipDuration(self, msec: int) -> None: ...
def initPainter(self, painter: QtGui.QPainter) -> None: ...
def sharedPainter(self) -> QtGui.QPainter: ...
def nativeEvent(self, eventType: typing.Union[QtCore.QByteArray, bytes, bytearray], message: sip.voidptr) -> typing.Tuple[bool, int]: ...
def windowHandle(self) -> QtGui.QWindow: ...
@staticmethod
def createWindowContainer(window: QtGui.QWindow, parent: typing.Optional['QWidget'] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> 'QWidget': ...
def grab(self, rectangle: QtCore.QRect = ...) -> QtGui.QPixmap: ...
def hasHeightForWidth(self) -> bool: ...
def setInputMethodHints(self, hints: typing.Union[QtCore.Qt.InputMethodHints, QtCore.Qt.InputMethodHint]) -> None: ...
def inputMethodHints(self) -> QtCore.Qt.InputMethodHints: ...
def previousInFocusChain(self) -> 'QWidget': ...
def contentsMargins(self) -> QtCore.QMargins: ...
def ungrabGesture(self, type: QtCore.Qt.GestureType) -> None: ...
def grabGesture(self, type: QtCore.Qt.GestureType, flags: typing.Union[QtCore.Qt.GestureFlags, QtCore.Qt.GestureFlag] = ...) -> None: ...
def setGraphicsEffect(self, effect: 'QGraphicsEffect') -> None: ...
def graphicsEffect(self) -> 'QGraphicsEffect': ...
def graphicsProxyWidget(self) -> 'QGraphicsProxyWidget': ...
def windowFilePath(self) -> str: ...
def setWindowFilePath(self, filePath: str) -> None: ...
def nativeParentWidget(self) -> 'QWidget': ...
def effectiveWinId(self) -> sip.voidptr: ...
def unsetLocale(self) -> None: ...
def locale(self) -> QtCore.QLocale: ...
def setLocale(self, locale: QtCore.QLocale) -> None: ...
@typing.overload
def render(self, target: QtGui.QPaintDevice, targetOffset: QtCore.QPoint = ..., sourceRegion: QtGui.QRegion = ..., flags: typing.Union['QWidget.RenderFlags', 'QWidget.RenderFlag'] = ...) -> None: ...
@typing.overload
def render(self, painter: QtGui.QPainter, targetOffset: QtCore.QPoint = ..., sourceRegion: QtGui.QRegion = ..., flags: typing.Union['QWidget.RenderFlags', 'QWidget.RenderFlag'] = ...) -> None: ...
def restoreGeometry(self, geometry: typing.Union[QtCore.QByteArray, bytes, bytearray]) -> bool: ...
def saveGeometry(self) -> QtCore.QByteArray: ...
def setShortcutAutoRepeat(self, id: int, enabled: bool = ...) -> None: ...
def styleSheet(self) -> str: ...
def setStyleSheet(self, styleSheet: str) -> None: ...
def setAutoFillBackground(self, enabled: bool) -> None: ...
def autoFillBackground(self) -> bool: ...
def setWindowModality(self, windowModality: QtCore.Qt.WindowModality) -> None: ...
def windowModality(self) -> QtCore.Qt.WindowModality: ...
def testAttribute(self, attribute: QtCore.Qt.WidgetAttribute) -> bool: ...
def parentWidget(self) -> 'QWidget': ...
def height(self) -> int: ...
def width(self) -> int: ...
def size(self) -> QtCore.QSize: ...
def geometry(self) -> QtCore.QRect: ...
def rect(self) -> QtCore.QRect: ...
def isHidden(self) -> bool: ...
def isVisible(self) -> bool: ...
def updatesEnabled(self) -> bool: ...
def underMouse(self) -> bool: ...
def hasMouseTracking(self) -> bool: ...
def setMouseTracking(self, enable: bool) -> None: ...
def fontInfo(self) -> QtGui.QFontInfo: ...
def fontMetrics(self) -> QtGui.QFontMetrics: ...
def font(self) -> QtGui.QFont: ...
def maximumHeight(self) -> int: ...
def maximumWidth(self) -> int: ...
def minimumHeight(self) -> int: ...
def minimumWidth(self) -> int: ...
def isModal(self) -> bool: ...
def isEnabled(self) -> bool: ...
def isWindow(self) -> bool: ...
def winId(self) -> sip.voidptr: ...
def windowFlags(self) -> QtCore.Qt.WindowFlags: ...
def windowType(self) -> QtCore.Qt.WindowType: ...
def focusPreviousChild(self) -> bool: ...
def focusNextChild(self) -> bool: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def destroy(self, destroyWindow: bool = ..., destroySubWindows: bool = ...) -> None: ...
def create(self, window: sip.voidptr = ..., initializeWindow: bool = ..., destroyOldWindow: bool = ...) -> None: ...
def updateMicroFocus(self) -> None: ...
def inputMethodQuery(self, a0: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
def inputMethodEvent(self, a0: QtGui.QInputMethodEvent) -> None: ...
def metric(self, a0: QtGui.QPaintDevice.PaintDeviceMetric) -> int: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def hideEvent(self, a0: QtGui.QHideEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def dropEvent(self, a0: QtGui.QDropEvent) -> None: ...
def dragLeaveEvent(self, a0: QtGui.QDragLeaveEvent) -> None: ...
def dragMoveEvent(self, a0: QtGui.QDragMoveEvent) -> None: ...
def dragEnterEvent(self, a0: QtGui.QDragEnterEvent) -> None: ...
def actionEvent(self, a0: QtGui.QActionEvent) -> None: ...
def tabletEvent(self, a0: QtGui.QTabletEvent) -> None: ...
def contextMenuEvent(self, a0: QtGui.QContextMenuEvent) -> None: ...
def closeEvent(self, a0: QtGui.QCloseEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def moveEvent(self, a0: QtGui.QMoveEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def leaveEvent(self, a0: QtCore.QEvent) -> None: ...
def enterEvent(self, a0: QtCore.QEvent) -> None: ...
def focusOutEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def keyReleaseEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def wheelEvent(self, a0: QtGui.QWheelEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseDoubleClickEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def customContextMenuRequested(self, pos: QtCore.QPoint) -> None: ...
def isAncestorOf(self, child: 'QWidget') -> bool: ...
def ensurePolished(self) -> None: ...
def paintEngine(self) -> QtGui.QPaintEngine: ...
def setAttribute(self, attribute: QtCore.Qt.WidgetAttribute, on: bool = ...) -> None: ...
@typing.overload
def childAt(self, p: QtCore.QPoint) -> 'QWidget': ...
@typing.overload
def childAt(self, ax: int, ay: int) -> 'QWidget': ...
@staticmethod
def find(a0: sip.voidptr) -> 'QWidget': ...
def overrideWindowFlags(self, type: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType]) -> None: ...
def setWindowFlags(self, type: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType]) -> None: ...
def actions(self) -> typing.List['QAction']: ...
def removeAction(self, action: 'QAction') -> None: ...
def insertActions(self, before: 'QAction', actions: typing.Iterable['QAction']) -> None: ...
def insertAction(self, before: 'QAction', action: 'QAction') -> None: ...
def addActions(self, actions: typing.Iterable['QAction']) -> None: ...
def addAction(self, action: 'QAction') -> None: ...
def setAcceptDrops(self, on: bool) -> None: ...
def acceptDrops(self) -> bool: ...
def nextInFocusChain(self) -> 'QWidget': ...
def focusWidget(self) -> 'QWidget': ...
@typing.overload
def scroll(self, dx: int, dy: int) -> None: ...
@typing.overload
def scroll(self, dx: int, dy: int, a2: QtCore.QRect) -> None: ...
@typing.overload
def setParent(self, parent: 'QWidget') -> None: ...
@typing.overload
def setParent(self, parent: 'QWidget', f: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType]) -> None: ...
def updateGeometry(self) -> None: ...
def setLayout(self, a0: 'QLayout') -> None: ...
def layout(self) -> 'QLayout': ...
def contentsRect(self) -> QtCore.QRect: ...
def getContentsMargins(self) -> typing.Tuple[int, int, int, int]: ...
@typing.overload
def setContentsMargins(self, left: int, top: int, right: int, bottom: int) -> None: ...
@typing.overload
def setContentsMargins(self, margins: QtCore.QMargins) -> None: ...
def visibleRegion(self) -> QtGui.QRegion: ...
def heightForWidth(self, a0: int) -> int: ...
@typing.overload
def setSizePolicy(self, a0: 'QSizePolicy') -> None: ...
@typing.overload
def setSizePolicy(self, hor: 'QSizePolicy.Policy', ver: 'QSizePolicy.Policy') -> None: ...
def sizePolicy(self) -> 'QSizePolicy': ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def overrideWindowState(self, state: typing.Union[QtCore.Qt.WindowStates, QtCore.Qt.WindowState]) -> None: ...
def setWindowState(self, state: typing.Union[QtCore.Qt.WindowStates, QtCore.Qt.WindowState]) -> None: ...
def windowState(self) -> QtCore.Qt.WindowStates: ...
def isFullScreen(self) -> bool: ...
def isMaximized(self) -> bool: ...
def isMinimized(self) -> bool: ...
def isVisibleTo(self, a0: 'QWidget') -> bool: ...
def adjustSize(self) -> None: ...
@typing.overload
def setGeometry(self, a0: QtCore.QRect) -> None: ...
@typing.overload
def setGeometry(self, ax: int, ay: int, aw: int, ah: int) -> None: ...
@typing.overload
def resize(self, a0: QtCore.QSize) -> None: ...
@typing.overload
def resize(self, w: int, h: int) -> None: ...
@typing.overload
def move(self, a0: QtCore.QPoint) -> None: ...
@typing.overload
def move(self, ax: int, ay: int) -> None: ...
def stackUnder(self, a0: 'QWidget') -> None: ...
def lower(self) -> None: ...
def raise_(self) -> None: ...
def close(self) -> bool: ...
def showNormal(self) -> None: ...
def showFullScreen(self) -> None: ...
def showMaximized(self) -> None: ...
def showMinimized(self) -> None: ...
def hide(self) -> None: ...
def show(self) -> None: ...
def setHidden(self, hidden: bool) -> None: ...
def setVisible(self, visible: bool) -> None: ...
@typing.overload
def repaint(self) -> None: ...
@typing.overload
def repaint(self, x: int, y: int, w: int, h: int) -> None: ...
@typing.overload
def repaint(self, a0: QtCore.QRect) -> None: ...
@typing.overload
def repaint(self, a0: QtGui.QRegion) -> None: ...
@typing.overload
def update(self) -> None: ...
@typing.overload
def update(self, a0: QtCore.QRect) -> None: ...
@typing.overload
def update(self, a0: QtGui.QRegion) -> None: ...
@typing.overload
def update(self, ax: int, ay: int, aw: int, ah: int) -> None: ...
def setUpdatesEnabled(self, enable: bool) -> None: ...
@staticmethod
def keyboardGrabber() -> 'QWidget': ...
@staticmethod
def mouseGrabber() -> 'QWidget': ...
def setShortcutEnabled(self, id: int, enabled: bool = ...) -> None: ...
def releaseShortcut(self, id: int) -> None: ...
def grabShortcut(self, key: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int], context: QtCore.Qt.ShortcutContext = ...) -> int: ...
def releaseKeyboard(self) -> None: ...
def grabKeyboard(self) -> None: ...
def releaseMouse(self) -> None: ...
@typing.overload
def grabMouse(self) -> None: ...
@typing.overload
def grabMouse(self, a0: typing.Union[QtGui.QCursor, QtCore.Qt.CursorShape]) -> None: ...
def setContextMenuPolicy(self, policy: QtCore.Qt.ContextMenuPolicy) -> None: ...
def contextMenuPolicy(self) -> QtCore.Qt.ContextMenuPolicy: ...
def focusProxy(self) -> 'QWidget': ...
def setFocusProxy(self, a0: 'QWidget') -> None: ...
@staticmethod
def setTabOrder(a0: 'QWidget', a1: 'QWidget') -> None: ...
def hasFocus(self) -> bool: ...
def setFocusPolicy(self, policy: QtCore.Qt.FocusPolicy) -> None: ...
def focusPolicy(self) -> QtCore.Qt.FocusPolicy: ...
def clearFocus(self) -> None: ...
def activateWindow(self) -> None: ...
def isActiveWindow(self) -> bool: ...
@typing.overload
def setFocus(self) -> None: ...
@typing.overload
def setFocus(self, reason: QtCore.Qt.FocusReason) -> None: ...
def isLeftToRight(self) -> bool: ...
def isRightToLeft(self) -> bool: ...
def unsetLayoutDirection(self) -> None: ...
def layoutDirection(self) -> QtCore.Qt.LayoutDirection: ...
def setLayoutDirection(self, direction: QtCore.Qt.LayoutDirection) -> None: ...
def setAccessibleDescription(self, description: str) -> None: ...
def accessibleDescription(self) -> str: ...
def setAccessibleName(self, name: str) -> None: ...
def accessibleName(self) -> str: ...
def whatsThis(self) -> str: ...
def setWhatsThis(self, a0: str) -> None: ...
def statusTip(self) -> str: ...
def setStatusTip(self, a0: str) -> None: ...
def toolTip(self) -> str: ...
def setToolTip(self, a0: str) -> None: ...
def isWindowModified(self) -> bool: ...
def windowOpacity(self) -> float: ...
def setWindowOpacity(self, level: float) -> None: ...
def windowRole(self) -> str: ...
def setWindowRole(self, a0: str) -> None: ...
def windowIconText(self) -> str: ...
def setWindowIconText(self, a0: str) -> None: ...
def windowIcon(self) -> QtGui.QIcon: ...
def setWindowIcon(self, icon: QtGui.QIcon) -> None: ...
def windowTitle(self) -> str: ...
def setWindowTitle(self, a0: str) -> None: ...
def clearMask(self) -> None: ...
def mask(self) -> QtGui.QRegion: ...
@typing.overload
def setMask(self, a0: QtGui.QBitmap) -> None: ...
@typing.overload
def setMask(self, a0: QtGui.QRegion) -> None: ...
def unsetCursor(self) -> None: ...
def setCursor(self, a0: typing.Union[QtGui.QCursor, QtCore.Qt.CursorShape]) -> None: ...
def cursor(self) -> QtGui.QCursor: ...
def setFont(self, a0: QtGui.QFont) -> None: ...
def foregroundRole(self) -> QtGui.QPalette.ColorRole: ...
def setForegroundRole(self, a0: QtGui.QPalette.ColorRole) -> None: ...
def backgroundRole(self) -> QtGui.QPalette.ColorRole: ...
def setBackgroundRole(self, a0: QtGui.QPalette.ColorRole) -> None: ...
def setPalette(self, a0: QtGui.QPalette) -> None: ...
def palette(self) -> QtGui.QPalette: ...
def window(self) -> 'QWidget': ...
def mapFrom(self, a0: 'QWidget', a1: QtCore.QPoint) -> QtCore.QPoint: ...
def mapTo(self, a0: 'QWidget', a1: QtCore.QPoint) -> QtCore.QPoint: ...
def mapFromParent(self, a0: QtCore.QPoint) -> QtCore.QPoint: ...
def mapToParent(self, a0: QtCore.QPoint) -> QtCore.QPoint: ...
def mapFromGlobal(self, a0: QtCore.QPoint) -> QtCore.QPoint: ...
def mapToGlobal(self, a0: QtCore.QPoint) -> QtCore.QPoint: ...
def setFixedHeight(self, h: int) -> None: ...
def setFixedWidth(self, w: int) -> None: ...
@typing.overload
def setFixedSize(self, a0: QtCore.QSize) -> None: ...
@typing.overload
def setFixedSize(self, w: int, h: int) -> None: ...
@typing.overload
def setBaseSize(self, basew: int, baseh: int) -> None: ...
@typing.overload
def setBaseSize(self, s: QtCore.QSize) -> None: ...
def baseSize(self) -> QtCore.QSize: ...
@typing.overload
def setSizeIncrement(self, w: int, h: int) -> None: ...
@typing.overload
def setSizeIncrement(self, s: QtCore.QSize) -> None: ...
def sizeIncrement(self) -> QtCore.QSize: ...
def setMaximumHeight(self, maxh: int) -> None: ...
def setMaximumWidth(self, maxw: int) -> None: ...
def setMinimumHeight(self, minh: int) -> None: ...
def setMinimumWidth(self, minw: int) -> None: ...
@typing.overload
def setMaximumSize(self, maxw: int, maxh: int) -> None: ...
@typing.overload
def setMaximumSize(self, s: QtCore.QSize) -> None: ...
@typing.overload
def setMinimumSize(self, minw: int, minh: int) -> None: ...
@typing.overload
def setMinimumSize(self, s: QtCore.QSize) -> None: ...
def maximumSize(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def childrenRegion(self) -> QtGui.QRegion: ...
def childrenRect(self) -> QtCore.QRect: ...
def frameSize(self) -> QtCore.QSize: ...
def pos(self) -> QtCore.QPoint: ...
def y(self) -> int: ...
def x(self) -> int: ...
def normalGeometry(self) -> QtCore.QRect: ...
def frameGeometry(self) -> QtCore.QRect: ...
def setWindowModified(self, a0: bool) -> None: ...
def setDisabled(self, a0: bool) -> None: ...
def setEnabled(self, a0: bool) -> None: ...
def isEnabledTo(self, a0: 'QWidget') -> bool: ...
def setStyle(self, a0: 'QStyle') -> None: ...
def style(self) -> 'QStyle': ...
def devType(self) -> int: ...
class QAbstractButton(QWidget):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def timerEvent(self, e: QtCore.QTimerEvent) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def focusOutEvent(self, e: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def keyReleaseEvent(self, e: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def nextCheckState(self) -> None: ...
def checkStateSet(self) -> None: ...
def hitButton(self, pos: QtCore.QPoint) -> bool: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def toggled(self, checked: bool) -> None: ...
def clicked(self, checked: bool = ...) -> None: ...
def released(self) -> None: ...
def pressed(self) -> None: ...
def setChecked(self, a0: bool) -> None: ...
def toggle(self) -> None: ...
def click(self) -> None: ...
def animateClick(self, msecs: int = ...) -> None: ...
def setIconSize(self, size: QtCore.QSize) -> None: ...
def group(self) -> 'QButtonGroup': ...
def autoExclusive(self) -> bool: ...
def setAutoExclusive(self, a0: bool) -> None: ...
def autoRepeat(self) -> bool: ...
def setAutoRepeat(self, a0: bool) -> None: ...
def isDown(self) -> bool: ...
def setDown(self, a0: bool) -> None: ...
def isChecked(self) -> bool: ...
def isCheckable(self) -> bool: ...
def setCheckable(self, a0: bool) -> None: ...
def shortcut(self) -> QtGui.QKeySequence: ...
def setShortcut(self, key: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int]) -> None: ...
def iconSize(self) -> QtCore.QSize: ...
def icon(self) -> QtGui.QIcon: ...
def setIcon(self, icon: QtGui.QIcon) -> None: ...
def text(self) -> str: ...
def setText(self, text: str) -> None: ...
def autoRepeatInterval(self) -> int: ...
def setAutoRepeatInterval(self, a0: int) -> None: ...
def autoRepeatDelay(self) -> int: ...
def setAutoRepeatDelay(self, a0: int) -> None: ...
class QAbstractItemDelegate(QtCore.QObject):
class EndEditHint(int): ...
NoHint = ... # type: 'QAbstractItemDelegate.EndEditHint'
EditNextItem = ... # type: 'QAbstractItemDelegate.EndEditHint'
EditPreviousItem = ... # type: 'QAbstractItemDelegate.EndEditHint'
SubmitModelCache = ... # type: 'QAbstractItemDelegate.EndEditHint'
RevertModelCache = ... # type: 'QAbstractItemDelegate.EndEditHint'
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def sizeHintChanged(self, a0: QtCore.QModelIndex) -> None: ...
def closeEditor(self, editor: QWidget, hint: 'QAbstractItemDelegate.EndEditHint' = ...) -> None: ...
def commitData(self, editor: QWidget) -> None: ...
def helpEvent(self, event: QtGui.QHelpEvent, view: 'QAbstractItemView', option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> bool: ...
def editorEvent(self, event: QtCore.QEvent, model: QtCore.QAbstractItemModel, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> bool: ...
def destroyEditor(self, editor: QWidget, index: QtCore.QModelIndex) -> None: ...
def updateEditorGeometry(self, editor: QWidget, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
def setModelData(self, editor: QWidget, model: QtCore.QAbstractItemModel, index: QtCore.QModelIndex) -> None: ...
def setEditorData(self, editor: QWidget, index: QtCore.QModelIndex) -> None: ...
def createEditor(self, parent: QWidget, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> QWidget: ...
def sizeHint(self, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> QtCore.QSize: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
class QFrame(QWidget):
class StyleMask(int): ...
Shadow_Mask = ... # type: 'QFrame.StyleMask'
Shape_Mask = ... # type: 'QFrame.StyleMask'
class Shape(int): ...
NoFrame = ... # type: 'QFrame.Shape'
Box = ... # type: 'QFrame.Shape'
Panel = ... # type: 'QFrame.Shape'
WinPanel = ... # type: 'QFrame.Shape'
HLine = ... # type: 'QFrame.Shape'
VLine = ... # type: 'QFrame.Shape'
StyledPanel = ... # type: 'QFrame.Shape'
class Shadow(int): ...
Plain = ... # type: 'QFrame.Shadow'
Raised = ... # type: 'QFrame.Shadow'
Sunken = ... # type: 'QFrame.Shadow'
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def initStyleOption(self, option: 'QStyleOptionFrame') -> None: ...
def drawFrame(self, a0: QtGui.QPainter) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def setFrameRect(self, a0: QtCore.QRect) -> None: ...
def frameRect(self) -> QtCore.QRect: ...
def setMidLineWidth(self, a0: int) -> None: ...
def midLineWidth(self) -> int: ...
def setLineWidth(self, a0: int) -> None: ...
def lineWidth(self) -> int: ...
def setFrameShadow(self, a0: 'QFrame.Shadow') -> None: ...
def frameShadow(self) -> 'QFrame.Shadow': ...
def setFrameShape(self, a0: 'QFrame.Shape') -> None: ...
def frameShape(self) -> 'QFrame.Shape': ...
def sizeHint(self) -> QtCore.QSize: ...
def frameWidth(self) -> int: ...
def setFrameStyle(self, a0: int) -> None: ...
def frameStyle(self) -> int: ...
class QAbstractScrollArea(QFrame):
class SizeAdjustPolicy(int): ...
AdjustIgnored = ... # type: 'QAbstractScrollArea.SizeAdjustPolicy'
AdjustToContentsOnFirstShow = ... # type: 'QAbstractScrollArea.SizeAdjustPolicy'
AdjustToContents = ... # type: 'QAbstractScrollArea.SizeAdjustPolicy'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def setSizeAdjustPolicy(self, policy: 'QAbstractScrollArea.SizeAdjustPolicy') -> None: ...
def sizeAdjustPolicy(self) -> 'QAbstractScrollArea.SizeAdjustPolicy': ...
def setupViewport(self, viewport: QWidget) -> None: ...
def setViewport(self, widget: QWidget) -> None: ...
def scrollBarWidgets(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> typing.List[QWidget]: ...
def addScrollBarWidget(self, widget: QWidget, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def setCornerWidget(self, widget: QWidget) -> None: ...
def cornerWidget(self) -> QWidget: ...
def setHorizontalScrollBar(self, scrollbar: 'QScrollBar') -> None: ...
def setVerticalScrollBar(self, scrollbar: 'QScrollBar') -> None: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def eventFilter(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def dropEvent(self, a0: QtGui.QDropEvent) -> None: ...
def dragLeaveEvent(self, a0: QtGui.QDragLeaveEvent) -> None: ...
def dragMoveEvent(self, a0: QtGui.QDragMoveEvent) -> None: ...
def dragEnterEvent(self, a0: QtGui.QDragEnterEvent) -> None: ...
def contextMenuEvent(self, a0: QtGui.QContextMenuEvent) -> None: ...
def wheelEvent(self, a0: QtGui.QWheelEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseDoubleClickEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def viewportEvent(self, a0: QtCore.QEvent) -> bool: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def viewportSizeHint(self) -> QtCore.QSize: ...
def viewportMargins(self) -> QtCore.QMargins: ...
@typing.overload
def setViewportMargins(self, left: int, top: int, right: int, bottom: int) -> None: ...
@typing.overload
def setViewportMargins(self, margins: QtCore.QMargins) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def maximumViewportSize(self) -> QtCore.QSize: ...
def viewport(self) -> QWidget: ...
def horizontalScrollBar(self) -> 'QScrollBar': ...
def setHorizontalScrollBarPolicy(self, a0: QtCore.Qt.ScrollBarPolicy) -> None: ...
def horizontalScrollBarPolicy(self) -> QtCore.Qt.ScrollBarPolicy: ...
def verticalScrollBar(self) -> 'QScrollBar': ...
def setVerticalScrollBarPolicy(self, a0: QtCore.Qt.ScrollBarPolicy) -> None: ...
def verticalScrollBarPolicy(self) -> QtCore.Qt.ScrollBarPolicy: ...
class QAbstractItemView(QAbstractScrollArea):
class DropIndicatorPosition(int): ...
OnItem = ... # type: 'QAbstractItemView.DropIndicatorPosition'
AboveItem = ... # type: 'QAbstractItemView.DropIndicatorPosition'
BelowItem = ... # type: 'QAbstractItemView.DropIndicatorPosition'
OnViewport = ... # type: 'QAbstractItemView.DropIndicatorPosition'
class State(int): ...
NoState = ... # type: 'QAbstractItemView.State'
DraggingState = ... # type: 'QAbstractItemView.State'
DragSelectingState = ... # type: 'QAbstractItemView.State'
EditingState = ... # type: 'QAbstractItemView.State'
ExpandingState = ... # type: 'QAbstractItemView.State'
CollapsingState = ... # type: 'QAbstractItemView.State'
AnimatingState = ... # type: 'QAbstractItemView.State'
class CursorAction(int): ...
MoveUp = ... # type: 'QAbstractItemView.CursorAction'
MoveDown = ... # type: 'QAbstractItemView.CursorAction'
MoveLeft = ... # type: 'QAbstractItemView.CursorAction'
MoveRight = ... # type: 'QAbstractItemView.CursorAction'
MoveHome = ... # type: 'QAbstractItemView.CursorAction'
MoveEnd = ... # type: 'QAbstractItemView.CursorAction'
MovePageUp = ... # type: 'QAbstractItemView.CursorAction'
MovePageDown = ... # type: 'QAbstractItemView.CursorAction'
MoveNext = ... # type: 'QAbstractItemView.CursorAction'
MovePrevious = ... # type: 'QAbstractItemView.CursorAction'
class SelectionMode(int): ...
NoSelection = ... # type: 'QAbstractItemView.SelectionMode'
SingleSelection = ... # type: 'QAbstractItemView.SelectionMode'
MultiSelection = ... # type: 'QAbstractItemView.SelectionMode'
ExtendedSelection = ... # type: 'QAbstractItemView.SelectionMode'
ContiguousSelection = ... # type: 'QAbstractItemView.SelectionMode'
class SelectionBehavior(int): ...
SelectItems = ... # type: 'QAbstractItemView.SelectionBehavior'
SelectRows = ... # type: 'QAbstractItemView.SelectionBehavior'
SelectColumns = ... # type: 'QAbstractItemView.SelectionBehavior'
class ScrollMode(int): ...
ScrollPerItem = ... # type: 'QAbstractItemView.ScrollMode'
ScrollPerPixel = ... # type: 'QAbstractItemView.ScrollMode'
class ScrollHint(int): ...
EnsureVisible = ... # type: 'QAbstractItemView.ScrollHint'
PositionAtTop = ... # type: 'QAbstractItemView.ScrollHint'
PositionAtBottom = ... # type: 'QAbstractItemView.ScrollHint'
PositionAtCenter = ... # type: 'QAbstractItemView.ScrollHint'
class EditTrigger(int): ...
NoEditTriggers = ... # type: 'QAbstractItemView.EditTrigger'
CurrentChanged = ... # type: 'QAbstractItemView.EditTrigger'
DoubleClicked = ... # type: 'QAbstractItemView.EditTrigger'
SelectedClicked = ... # type: 'QAbstractItemView.EditTrigger'
EditKeyPressed = ... # type: 'QAbstractItemView.EditTrigger'
AnyKeyPressed = ... # type: 'QAbstractItemView.EditTrigger'
AllEditTriggers = ... # type: 'QAbstractItemView.EditTrigger'
class DragDropMode(int): ...
NoDragDrop = ... # type: 'QAbstractItemView.DragDropMode'
DragOnly = ... # type: 'QAbstractItemView.DragDropMode'
DropOnly = ... # type: 'QAbstractItemView.DragDropMode'
DragDrop = ... # type: 'QAbstractItemView.DragDropMode'
InternalMove = ... # type: 'QAbstractItemView.DragDropMode'
class EditTriggers(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QAbstractItemView.EditTriggers', 'QAbstractItemView.EditTrigger']) -> None: ...
@typing.overload
def __init__(self, a0: 'QAbstractItemView.EditTriggers') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QAbstractItemView.EditTriggers': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def isPersistentEditorOpen(self, index: QtCore.QModelIndex) -> bool: ...
def resetHorizontalScrollMode(self) -> None: ...
def resetVerticalScrollMode(self) -> None: ...
def defaultDropAction(self) -> QtCore.Qt.DropAction: ...
def setDefaultDropAction(self, dropAction: QtCore.Qt.DropAction) -> None: ...
def eventFilter(self, object: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def viewportSizeHint(self) -> QtCore.QSize: ...
def inputMethodEvent(self, event: QtGui.QInputMethodEvent) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def autoScrollMargin(self) -> int: ...
def setAutoScrollMargin(self, margin: int) -> None: ...
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
def itemDelegateForColumn(self, column: int) -> QAbstractItemDelegate: ...
def setItemDelegateForColumn(self, column: int, delegate: QAbstractItemDelegate) -> None: ...
def itemDelegateForRow(self, row: int) -> QAbstractItemDelegate: ...
def setItemDelegateForRow(self, row: int, delegate: QAbstractItemDelegate) -> None: ...
def dragDropMode(self) -> 'QAbstractItemView.DragDropMode': ...
def setDragDropMode(self, behavior: 'QAbstractItemView.DragDropMode') -> None: ...
def dragDropOverwriteMode(self) -> bool: ...
def setDragDropOverwriteMode(self, overwrite: bool) -> None: ...
def horizontalScrollMode(self) -> 'QAbstractItemView.ScrollMode': ...
def setHorizontalScrollMode(self, mode: 'QAbstractItemView.ScrollMode') -> None: ...
def verticalScrollMode(self) -> 'QAbstractItemView.ScrollMode': ...
def setVerticalScrollMode(self, mode: 'QAbstractItemView.ScrollMode') -> None: ...
def dropIndicatorPosition(self) -> 'QAbstractItemView.DropIndicatorPosition': ...
def timerEvent(self, e: QtCore.QTimerEvent) -> None: ...
def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
def focusOutEvent(self, e: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
def dropEvent(self, e: QtGui.QDropEvent) -> None: ...
def dragLeaveEvent(self, e: QtGui.QDragLeaveEvent) -> None: ...
def dragMoveEvent(self, e: QtGui.QDragMoveEvent) -> None: ...
def dragEnterEvent(self, e: QtGui.QDragEnterEvent) -> None: ...
def mouseDoubleClickEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def viewportEvent(self, e: QtCore.QEvent) -> bool: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def dirtyRegionOffset(self) -> QtCore.QPoint: ...
def setDirtyRegion(self, region: QtGui.QRegion) -> None: ...
def scrollDirtyRegion(self, dx: int, dy: int) -> None: ...
def executeDelayedItemsLayout(self) -> None: ...
def scheduleDelayedItemsLayout(self) -> None: ...
def setState(self, state: 'QAbstractItemView.State') -> None: ...
def state(self) -> 'QAbstractItemView.State': ...
def viewOptions(self) -> 'QStyleOptionViewItem': ...
def startDrag(self, supportedActions: typing.Union[QtCore.Qt.DropActions, QtCore.Qt.DropAction]) -> None: ...
def selectionCommand(self, index: QtCore.QModelIndex, event: typing.Optional[QtCore.QEvent] = ...) -> QtCore.QItemSelectionModel.SelectionFlags: ...
def selectedIndexes(self) -> typing.List[QtCore.QModelIndex]: ...
def visualRegionForSelection(self, selection: QtCore.QItemSelection) -> QtGui.QRegion: ...
def setSelection(self, rect: QtCore.QRect, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def isIndexHidden(self, index: QtCore.QModelIndex) -> bool: ...
def verticalOffset(self) -> int: ...
def horizontalOffset(self) -> int: ...
def moveCursor(self, cursorAction: 'QAbstractItemView.CursorAction', modifiers: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> QtCore.QModelIndex: ...
def iconSizeChanged(self, size: QtCore.QSize) -> None: ...
def viewportEntered(self) -> None: ...
def entered(self, index: QtCore.QModelIndex) -> None: ...
def activated(self, index: QtCore.QModelIndex) -> None: ...
def doubleClicked(self, index: QtCore.QModelIndex) -> None: ...
def clicked(self, index: QtCore.QModelIndex) -> None: ...
def pressed(self, index: QtCore.QModelIndex) -> None: ...
def editorDestroyed(self, editor: QtCore.QObject) -> None: ...
def commitData(self, editor: QWidget) -> None: ...
def closeEditor(self, editor: QWidget, hint: QAbstractItemDelegate.EndEditHint) -> None: ...
def horizontalScrollbarValueChanged(self, value: int) -> None: ...
def verticalScrollbarValueChanged(self, value: int) -> None: ...
def horizontalScrollbarAction(self, action: int) -> None: ...
def verticalScrollbarAction(self, action: int) -> None: ...
def updateGeometries(self) -> None: ...
def updateEditorGeometries(self) -> None: ...
def updateEditorData(self) -> None: ...
def currentChanged(self, current: QtCore.QModelIndex, previous: QtCore.QModelIndex) -> None: ...
def selectionChanged(self, selected: QtCore.QItemSelection, deselected: QtCore.QItemSelection) -> None: ...
def rowsAboutToBeRemoved(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def rowsInserted(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def dataChanged(self, topLeft: QtCore.QModelIndex, bottomRight: QtCore.QModelIndex, roles: typing.Iterable[int] = ...) -> None: ...
@typing.overload
def update(self) -> None: ...
@typing.overload
def update(self, index: QtCore.QModelIndex) -> None: ...
def scrollToBottom(self) -> None: ...
def scrollToTop(self) -> None: ...
def setCurrentIndex(self, index: QtCore.QModelIndex) -> None: ...
def clearSelection(self) -> None: ...
@typing.overload
def edit(self, index: QtCore.QModelIndex) -> None: ...
@typing.overload
def edit(self, index: QtCore.QModelIndex, trigger: 'QAbstractItemView.EditTrigger', event: QtCore.QEvent) -> bool: ...
def selectAll(self) -> None: ...
def setRootIndex(self, index: QtCore.QModelIndex) -> None: ...
def reset(self) -> None: ...
def indexWidget(self, index: QtCore.QModelIndex) -> QWidget: ...
def setIndexWidget(self, index: QtCore.QModelIndex, widget: QWidget) -> None: ...
def closePersistentEditor(self, index: QtCore.QModelIndex) -> None: ...
def openPersistentEditor(self, index: QtCore.QModelIndex) -> None: ...
def sizeHintForColumn(self, column: int) -> int: ...
def sizeHintForRow(self, row: int) -> int: ...
def sizeHintForIndex(self, index: QtCore.QModelIndex) -> QtCore.QSize: ...
def indexAt(self, p: QtCore.QPoint) -> QtCore.QModelIndex: ...
def scrollTo(self, index: QtCore.QModelIndex, hint: 'QAbstractItemView.ScrollHint' = ...) -> None: ...
def visualRect(self, index: QtCore.QModelIndex) -> QtCore.QRect: ...
def keyboardSearch(self, search: str) -> None: ...
def textElideMode(self) -> QtCore.Qt.TextElideMode: ...
def setTextElideMode(self, mode: QtCore.Qt.TextElideMode) -> None: ...
def iconSize(self) -> QtCore.QSize: ...
def setIconSize(self, size: QtCore.QSize) -> None: ...
def alternatingRowColors(self) -> bool: ...
def setAlternatingRowColors(self, enable: bool) -> None: ...
def dragEnabled(self) -> bool: ...
def setDragEnabled(self, enable: bool) -> None: ...
def showDropIndicator(self) -> bool: ...
def setDropIndicatorShown(self, enable: bool) -> None: ...
def tabKeyNavigation(self) -> bool: ...
def setTabKeyNavigation(self, enable: bool) -> None: ...
def hasAutoScroll(self) -> bool: ...
def setAutoScroll(self, enable: bool) -> None: ...
def editTriggers(self) -> 'QAbstractItemView.EditTriggers': ...
def setEditTriggers(self, triggers: typing.Union['QAbstractItemView.EditTriggers', 'QAbstractItemView.EditTrigger']) -> None: ...
def rootIndex(self) -> QtCore.QModelIndex: ...
def currentIndex(self) -> QtCore.QModelIndex: ...
def selectionBehavior(self) -> 'QAbstractItemView.SelectionBehavior': ...
def setSelectionBehavior(self, behavior: 'QAbstractItemView.SelectionBehavior') -> None: ...
def selectionMode(self) -> 'QAbstractItemView.SelectionMode': ...
def setSelectionMode(self, mode: 'QAbstractItemView.SelectionMode') -> None: ...
@typing.overload
def itemDelegate(self) -> QAbstractItemDelegate: ...
@typing.overload
def itemDelegate(self, index: QtCore.QModelIndex) -> QAbstractItemDelegate: ...
def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ...
def selectionModel(self) -> QtCore.QItemSelectionModel: ...
def setSelectionModel(self, selectionModel: QtCore.QItemSelectionModel) -> None: ...
def model(self) -> QtCore.QAbstractItemModel: ...
def setModel(self, model: QtCore.QAbstractItemModel) -> None: ...
class QAbstractSlider(QWidget):
class SliderChange(int): ...
SliderRangeChange = ... # type: 'QAbstractSlider.SliderChange'
SliderOrientationChange = ... # type: 'QAbstractSlider.SliderChange'
SliderStepsChange = ... # type: 'QAbstractSlider.SliderChange'
SliderValueChange = ... # type: 'QAbstractSlider.SliderChange'
class SliderAction(int): ...
SliderNoAction = ... # type: 'QAbstractSlider.SliderAction'
SliderSingleStepAdd = ... # type: 'QAbstractSlider.SliderAction'
SliderSingleStepSub = ... # type: 'QAbstractSlider.SliderAction'
SliderPageStepAdd = ... # type: 'QAbstractSlider.SliderAction'
SliderPageStepSub = ... # type: 'QAbstractSlider.SliderAction'
SliderToMinimum = ... # type: 'QAbstractSlider.SliderAction'
SliderToMaximum = ... # type: 'QAbstractSlider.SliderAction'
SliderMove = ... # type: 'QAbstractSlider.SliderAction'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def wheelEvent(self, e: QtGui.QWheelEvent) -> None: ...
def timerEvent(self, a0: QtCore.QTimerEvent) -> None: ...
def keyPressEvent(self, ev: QtGui.QKeyEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def sliderChange(self, change: 'QAbstractSlider.SliderChange') -> None: ...
def repeatAction(self) -> 'QAbstractSlider.SliderAction': ...
def setRepeatAction(self, action: 'QAbstractSlider.SliderAction', thresholdTime: int = ..., repeatTime: int = ...) -> None: ...
def actionTriggered(self, action: int) -> None: ...
def rangeChanged(self, min: int, max: int) -> None: ...
def sliderReleased(self) -> None: ...
def sliderMoved(self, position: int) -> None: ...
def sliderPressed(self) -> None: ...
def valueChanged(self, value: int) -> None: ...
def setOrientation(self, a0: QtCore.Qt.Orientation) -> None: ...
def setValue(self, a0: int) -> None: ...
def triggerAction(self, action: 'QAbstractSlider.SliderAction') -> None: ...
def value(self) -> int: ...
def invertedControls(self) -> bool: ...
def setInvertedControls(self, a0: bool) -> None: ...
def invertedAppearance(self) -> bool: ...
def setInvertedAppearance(self, a0: bool) -> None: ...
def sliderPosition(self) -> int: ...
def setSliderPosition(self, a0: int) -> None: ...
def isSliderDown(self) -> bool: ...
def setSliderDown(self, a0: bool) -> None: ...
def hasTracking(self) -> bool: ...
def setTracking(self, enable: bool) -> None: ...
def pageStep(self) -> int: ...
def setPageStep(self, a0: int) -> None: ...
def singleStep(self) -> int: ...
def setSingleStep(self, a0: int) -> None: ...
def setRange(self, min: int, max: int) -> None: ...
def maximum(self) -> int: ...
def setMaximum(self, a0: int) -> None: ...
def minimum(self) -> int: ...
def setMinimum(self, a0: int) -> None: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
class QAbstractSpinBox(QWidget):
class StepType(int): ...
DefaultStepType = ... # type: 'QAbstractSpinBox.StepType'
AdaptiveDecimalStepType = ... # type: 'QAbstractSpinBox.StepType'
class CorrectionMode(int): ...
CorrectToPreviousValue = ... # type: 'QAbstractSpinBox.CorrectionMode'
CorrectToNearestValue = ... # type: 'QAbstractSpinBox.CorrectionMode'
class ButtonSymbols(int): ...
UpDownArrows = ... # type: 'QAbstractSpinBox.ButtonSymbols'
PlusMinus = ... # type: 'QAbstractSpinBox.ButtonSymbols'
NoButtons = ... # type: 'QAbstractSpinBox.ButtonSymbols'
class StepEnabledFlag(int): ...
StepNone = ... # type: 'QAbstractSpinBox.StepEnabledFlag'
StepUpEnabled = ... # type: 'QAbstractSpinBox.StepEnabledFlag'
StepDownEnabled = ... # type: 'QAbstractSpinBox.StepEnabledFlag'
class StepEnabled(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QAbstractSpinBox.StepEnabled', 'QAbstractSpinBox.StepEnabledFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QAbstractSpinBox.StepEnabled') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QAbstractSpinBox.StepEnabled': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def isGroupSeparatorShown(self) -> bool: ...
def setGroupSeparatorShown(self, shown: bool) -> None: ...
def inputMethodQuery(self, a0: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
def keyboardTracking(self) -> bool: ...
def setKeyboardTracking(self, kt: bool) -> None: ...
def isAccelerated(self) -> bool: ...
def setAccelerated(self, on: bool) -> None: ...
def hasAcceptableInput(self) -> bool: ...
def correctionMode(self) -> 'QAbstractSpinBox.CorrectionMode': ...
def setCorrectionMode(self, cm: 'QAbstractSpinBox.CorrectionMode') -> None: ...
def initStyleOption(self, option: 'QStyleOptionSpinBox') -> None: ...
def stepEnabled(self) -> 'QAbstractSpinBox.StepEnabled': ...
def setLineEdit(self, e: 'QLineEdit') -> None: ...
def lineEdit(self) -> 'QLineEdit': ...
def showEvent(self, e: QtGui.QShowEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def timerEvent(self, e: QtCore.QTimerEvent) -> None: ...
def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def hideEvent(self, e: QtGui.QHideEvent) -> None: ...
def closeEvent(self, e: QtGui.QCloseEvent) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def contextMenuEvent(self, e: QtGui.QContextMenuEvent) -> None: ...
def focusOutEvent(self, e: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
def wheelEvent(self, e: QtGui.QWheelEvent) -> None: ...
def keyReleaseEvent(self, e: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
def editingFinished(self) -> None: ...
def clear(self) -> None: ...
def selectAll(self) -> None: ...
def stepDown(self) -> None: ...
def stepUp(self) -> None: ...
def stepBy(self, steps: int) -> None: ...
def fixup(self, input: str) -> str: ...
def validate(self, input: str, pos: int) -> typing.Tuple[QtGui.QValidator.State, str, int]: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def interpretText(self) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def hasFrame(self) -> bool: ...
def setFrame(self, a0: bool) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def setAlignment(self, flag: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def isReadOnly(self) -> bool: ...
def setReadOnly(self, r: bool) -> None: ...
def setWrapping(self, w: bool) -> None: ...
def wrapping(self) -> bool: ...
def setSpecialValueText(self, s: str) -> None: ...
def specialValueText(self) -> str: ...
def text(self) -> str: ...
def setButtonSymbols(self, bs: 'QAbstractSpinBox.ButtonSymbols') -> None: ...
def buttonSymbols(self) -> 'QAbstractSpinBox.ButtonSymbols': ...
class QAction(QtCore.QObject):
class Priority(int): ...
LowPriority = ... # type: 'QAction.Priority'
NormalPriority = ... # type: 'QAction.Priority'
HighPriority = ... # type: 'QAction.Priority'
class MenuRole(int): ...
NoRole = ... # type: 'QAction.MenuRole'
TextHeuristicRole = ... # type: 'QAction.MenuRole'
ApplicationSpecificRole = ... # type: 'QAction.MenuRole'
AboutQtRole = ... # type: 'QAction.MenuRole'
AboutRole = ... # type: 'QAction.MenuRole'
PreferencesRole = ... # type: 'QAction.MenuRole'
QuitRole = ... # type: 'QAction.MenuRole'
class ActionEvent(int): ...
Trigger = ... # type: 'QAction.ActionEvent'
Hover = ... # type: 'QAction.ActionEvent'
@typing.overload
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, icon: QtGui.QIcon, text: str, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def isShortcutVisibleInContextMenu(self) -> bool: ...
def setShortcutVisibleInContextMenu(self, show: bool) -> None: ...
def priority(self) -> 'QAction.Priority': ...
def setPriority(self, priority: 'QAction.Priority') -> None: ...
def isIconVisibleInMenu(self) -> bool: ...
def setIconVisibleInMenu(self, visible: bool) -> None: ...
def associatedGraphicsWidgets(self) -> typing.List['QGraphicsWidget']: ...
def associatedWidgets(self) -> typing.List[QWidget]: ...
def menuRole(self) -> 'QAction.MenuRole': ...
def setMenuRole(self, menuRole: 'QAction.MenuRole') -> None: ...
def autoRepeat(self) -> bool: ...
def setAutoRepeat(self, a0: bool) -> None: ...
def shortcuts(self) -> typing.List[QtGui.QKeySequence]: ...
@typing.overload
def setShortcuts(self, shortcuts: typing.Iterable[typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int]]) -> None: ...
@typing.overload
def setShortcuts(self, a0: QtGui.QKeySequence.StandardKey) -> None: ...
def toggled(self, a0: bool) -> None: ...
def hovered(self) -> None: ...
def triggered(self, checked: bool = ...) -> None: ...
def changed(self) -> None: ...
def setVisible(self, a0: bool) -> None: ...
def setDisabled(self, b: bool) -> None: ...
def setEnabled(self, a0: bool) -> None: ...
def toggle(self) -> None: ...
def setChecked(self, a0: bool) -> None: ...
def hover(self) -> None: ...
def trigger(self) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def parentWidget(self) -> QWidget: ...
def showStatusText(self, widget: typing.Optional[QWidget] = ...) -> bool: ...
def activate(self, event: 'QAction.ActionEvent') -> None: ...
def isVisible(self) -> bool: ...
def isEnabled(self) -> bool: ...
def isChecked(self) -> bool: ...
def setData(self, var: typing.Any) -> None: ...
def data(self) -> typing.Any: ...
def isCheckable(self) -> bool: ...
def setCheckable(self, a0: bool) -> None: ...
def font(self) -> QtGui.QFont: ...
def setFont(self, font: QtGui.QFont) -> None: ...
def shortcutContext(self) -> QtCore.Qt.ShortcutContext: ...
def setShortcutContext(self, context: QtCore.Qt.ShortcutContext) -> None: ...
def shortcut(self) -> QtGui.QKeySequence: ...
def setShortcut(self, shortcut: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int]) -> None: ...
def isSeparator(self) -> bool: ...
def setSeparator(self, b: bool) -> None: ...
def setMenu(self, menu: 'QMenu') -> None: ...
def menu(self) -> 'QMenu': ...
def whatsThis(self) -> str: ...
def setWhatsThis(self, what: str) -> None: ...
def statusTip(self) -> str: ...
def setStatusTip(self, statusTip: str) -> None: ...
def toolTip(self) -> str: ...
def setToolTip(self, tip: str) -> None: ...
def iconText(self) -> str: ...
def setIconText(self, text: str) -> None: ...
def text(self) -> str: ...
def setText(self, text: str) -> None: ...
def icon(self) -> QtGui.QIcon: ...
def setIcon(self, icon: QtGui.QIcon) -> None: ...
def actionGroup(self) -> 'QActionGroup': ...
def setActionGroup(self, group: 'QActionGroup') -> None: ...
class QActionGroup(QtCore.QObject):
def __init__(self, parent: QtCore.QObject) -> None: ...
def hovered(self, a0: QAction) -> None: ...
def triggered(self, a0: QAction) -> None: ...
def setExclusive(self, a0: bool) -> None: ...
def setVisible(self, a0: bool) -> None: ...
def setDisabled(self, b: bool) -> None: ...
def setEnabled(self, a0: bool) -> None: ...
def isVisible(self) -> bool: ...
def isEnabled(self) -> bool: ...
def isExclusive(self) -> bool: ...
def checkedAction(self) -> QAction: ...
def actions(self) -> typing.List[QAction]: ...
def removeAction(self, a: QAction) -> None: ...
@typing.overload
def addAction(self, a: QAction) -> QAction: ...
@typing.overload
def addAction(self, text: str) -> QAction: ...
@typing.overload
def addAction(self, icon: QtGui.QIcon, text: str) -> QAction: ...
class QApplication(QtGui.QGuiApplication):
class ColorSpec(int): ...
NormalColor = ... # type: 'QApplication.ColorSpec'
CustomColor = ... # type: 'QApplication.ColorSpec'
ManyColor = ... # type: 'QApplication.ColorSpec'
def __init__(self, argv: typing.List[str]) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def setStyleSheet(self, sheet: str) -> None: ...
def setAutoSipEnabled(self, enabled: bool) -> None: ...
@staticmethod
def closeAllWindows() -> None: ...
@staticmethod
def aboutQt() -> None: ...
def focusChanged(self, old: QWidget, now: QWidget) -> None: ...
def styleSheet(self) -> str: ...
def autoSipEnabled(self) -> bool: ...
def notify(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
@staticmethod
def exec() -> int: ...
@staticmethod
def exec_() -> int: ...
@staticmethod
def setEffectEnabled(a0: QtCore.Qt.UIEffect, enabled: bool = ...) -> None: ...
@staticmethod
def isEffectEnabled(a0: QtCore.Qt.UIEffect) -> bool: ...
@staticmethod
def startDragDistance() -> int: ...
@staticmethod
def setStartDragDistance(l: int) -> None: ...
@staticmethod
def startDragTime() -> int: ...
@staticmethod
def setStartDragTime(ms: int) -> None: ...
@staticmethod
def globalStrut() -> QtCore.QSize: ...
@staticmethod
def setGlobalStrut(a0: QtCore.QSize) -> None: ...
@staticmethod
def wheelScrollLines() -> int: ...
@staticmethod
def setWheelScrollLines(a0: int) -> None: ...
@staticmethod
def keyboardInputInterval() -> int: ...
@staticmethod
def setKeyboardInputInterval(a0: int) -> None: ...
@staticmethod
def doubleClickInterval() -> int: ...
@staticmethod
def setDoubleClickInterval(a0: int) -> None: ...
@staticmethod
def cursorFlashTime() -> int: ...
@staticmethod
def setCursorFlashTime(a0: int) -> None: ...
@staticmethod
def alert(widget: QWidget, msecs: int = ...) -> None: ...
@staticmethod
def beep() -> None: ...
@typing.overload
@staticmethod
def topLevelAt(p: QtCore.QPoint) -> QWidget: ...
@typing.overload
@staticmethod
def topLevelAt(x: int, y: int) -> QWidget: ...
@typing.overload
@staticmethod
def widgetAt(p: QtCore.QPoint) -> QWidget: ...
@typing.overload
@staticmethod
def widgetAt(x: int, y: int) -> QWidget: ...
@staticmethod
def setActiveWindow(act: QWidget) -> None: ...
@staticmethod
def activeWindow() -> QWidget: ...
@staticmethod
def focusWidget() -> QWidget: ...
@staticmethod
def activeModalWidget() -> QWidget: ...
@staticmethod
def activePopupWidget() -> QWidget: ...
@staticmethod
def desktop() -> 'QDesktopWidget': ...
@staticmethod
def topLevelWidgets() -> typing.List[QWidget]: ...
@staticmethod
def allWidgets() -> typing.List[QWidget]: ...
@staticmethod
def windowIcon() -> QtGui.QIcon: ...
@staticmethod
def setWindowIcon(icon: QtGui.QIcon) -> None: ...
@staticmethod
def fontMetrics() -> QtGui.QFontMetrics: ...
@staticmethod
def setFont(a0: QtGui.QFont, className: typing.Optional[str] = ...) -> None: ...
@typing.overload
@staticmethod
def font() -> QtGui.QFont: ...
@typing.overload
@staticmethod
def font(a0: QWidget) -> QtGui.QFont: ...
@typing.overload
@staticmethod
def font(className: str) -> QtGui.QFont: ...
@staticmethod
def setPalette(a0: QtGui.QPalette, className: typing.Optional[str] = ...) -> None: ...
@typing.overload
@staticmethod
def palette() -> QtGui.QPalette: ...
@typing.overload
@staticmethod
def palette(a0: QWidget) -> QtGui.QPalette: ...
@typing.overload
@staticmethod
def palette(className: str) -> QtGui.QPalette: ...
@staticmethod
def setColorSpec(a0: int) -> None: ...
@staticmethod
def colorSpec() -> int: ...
@typing.overload
@staticmethod
def setStyle(a0: 'QStyle') -> None: ...
@typing.overload
@staticmethod
def setStyle(a0: str) -> 'QStyle': ...
@staticmethod
def style() -> 'QStyle': ...
class QLayoutItem(sip.wrapper):
@typing.overload
def __init__(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
@typing.overload
def __init__(self, a0: 'QLayoutItem') -> None: ...
def controlTypes(self) -> 'QSizePolicy.ControlTypes': ...
def setAlignment(self, a: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def spacerItem(self) -> 'QSpacerItem': ...
def layout(self) -> 'QLayout': ...
def widget(self) -> QWidget: ...
def invalidate(self) -> None: ...
def minimumHeightForWidth(self, a0: int) -> int: ...
def heightForWidth(self, a0: int) -> int: ...
def hasHeightForWidth(self) -> bool: ...
def isEmpty(self) -> bool: ...
def geometry(self) -> QtCore.QRect: ...
def setGeometry(self, a0: QtCore.QRect) -> None: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def maximumSize(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QLayout(QtCore.QObject, QLayoutItem):
class SizeConstraint(int): ...
SetDefaultConstraint = ... # type: 'QLayout.SizeConstraint'
SetNoConstraint = ... # type: 'QLayout.SizeConstraint'
SetMinimumSize = ... # type: 'QLayout.SizeConstraint'
SetFixedSize = ... # type: 'QLayout.SizeConstraint'
SetMaximumSize = ... # type: 'QLayout.SizeConstraint'
SetMinAndMaxSize = ... # type: 'QLayout.SizeConstraint'
@typing.overload
def __init__(self, parent: QWidget) -> None: ...
@typing.overload
def __init__(self) -> None: ...
def replaceWidget(self, from_: QWidget, to: QWidget, options: typing.Union[QtCore.Qt.FindChildOptions, QtCore.Qt.FindChildOption] = ...) -> QLayoutItem: ...
def controlTypes(self) -> 'QSizePolicy.ControlTypes': ...
def contentsMargins(self) -> QtCore.QMargins: ...
def contentsRect(self) -> QtCore.QRect: ...
def getContentsMargins(self) -> typing.Tuple[int, int, int, int]: ...
@typing.overload
def setContentsMargins(self, left: int, top: int, right: int, bottom: int) -> None: ...
@typing.overload
def setContentsMargins(self, margins: QtCore.QMargins) -> None: ...
def alignmentRect(self, a0: QtCore.QRect) -> QtCore.QRect: ...
def addChildWidget(self, w: QWidget) -> None: ...
def addChildLayout(self, l: 'QLayout') -> None: ...
def childEvent(self, e: QtCore.QChildEvent) -> None: ...
def widgetEvent(self, a0: QtCore.QEvent) -> None: ...
@staticmethod
def closestAcceptableSize(w: QWidget, s: QtCore.QSize) -> QtCore.QSize: ...
def isEnabled(self) -> bool: ...
def setEnabled(self, a0: bool) -> None: ...
def layout(self) -> 'QLayout': ...
def totalSizeHint(self) -> QtCore.QSize: ...
def totalMaximumSize(self) -> QtCore.QSize: ...
def totalMinimumSize(self) -> QtCore.QSize: ...
def totalHeightForWidth(self, w: int) -> int: ...
def isEmpty(self) -> bool: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
@typing.overload
def indexOf(self, a0: QWidget) -> int: ...
@typing.overload
def indexOf(self, a0: QLayoutItem) -> int: ...
def takeAt(self, index: int) -> QLayoutItem: ...
def itemAt(self, index: int) -> QLayoutItem: ...
def setGeometry(self, a0: QtCore.QRect) -> None: ...
def maximumSize(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def removeItem(self, a0: QLayoutItem) -> None: ...
def removeWidget(self, w: QWidget) -> None: ...
def addItem(self, a0: QLayoutItem) -> None: ...
def addWidget(self, w: QWidget) -> None: ...
def update(self) -> None: ...
def activate(self) -> bool: ...
def geometry(self) -> QtCore.QRect: ...
def invalidate(self) -> None: ...
def parentWidget(self) -> QWidget: ...
def menuBar(self) -> QWidget: ...
def setMenuBar(self, w: QWidget) -> None: ...
def sizeConstraint(self) -> 'QLayout.SizeConstraint': ...
def setSizeConstraint(self, a0: 'QLayout.SizeConstraint') -> None: ...
@typing.overload
def setAlignment(self, w: QWidget, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> bool: ...
@typing.overload
def setAlignment(self, l: 'QLayout', alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> bool: ...
@typing.overload
def setAlignment(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def setSpacing(self, a0: int) -> None: ...
def spacing(self) -> int: ...
class QBoxLayout(QLayout):
class Direction(int): ...
LeftToRight = ... # type: 'QBoxLayout.Direction'
RightToLeft = ... # type: 'QBoxLayout.Direction'
TopToBottom = ... # type: 'QBoxLayout.Direction'
BottomToTop = ... # type: 'QBoxLayout.Direction'
Down = ... # type: 'QBoxLayout.Direction'
Up = ... # type: 'QBoxLayout.Direction'
def __init__(self, direction: 'QBoxLayout.Direction', parent: typing.Optional[QWidget] = ...) -> None: ...
def insertItem(self, index: int, a1: QLayoutItem) -> None: ...
def stretch(self, index: int) -> int: ...
def setStretch(self, index: int, stretch: int) -> None: ...
def insertSpacerItem(self, index: int, spacerItem: 'QSpacerItem') -> None: ...
def addSpacerItem(self, spacerItem: 'QSpacerItem') -> None: ...
def setSpacing(self, spacing: int) -> None: ...
def spacing(self) -> int: ...
def setGeometry(self, a0: QtCore.QRect) -> None: ...
def count(self) -> int: ...
def takeAt(self, a0: int) -> QLayoutItem: ...
def itemAt(self, a0: int) -> QLayoutItem: ...
def invalidate(self) -> None: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def minimumHeightForWidth(self, a0: int) -> int: ...
def heightForWidth(self, a0: int) -> int: ...
def hasHeightForWidth(self) -> bool: ...
def maximumSize(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
@typing.overload
def setStretchFactor(self, w: QWidget, stretch: int) -> bool: ...
@typing.overload
def setStretchFactor(self, l: QLayout, stretch: int) -> bool: ...
def insertLayout(self, index: int, layout: QLayout, stretch: int = ...) -> None: ...
def insertWidget(self, index: int, widget: QWidget, stretch: int = ..., alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
def insertStretch(self, index: int, stretch: int = ...) -> None: ...
def insertSpacing(self, index: int, size: int) -> None: ...
def addItem(self, a0: QLayoutItem) -> None: ...
def addStrut(self, a0: int) -> None: ...
def addLayout(self, layout: QLayout, stretch: int = ...) -> None: ...
def addWidget(self, a0: QWidget, stretch: int = ..., alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
def addStretch(self, stretch: int = ...) -> None: ...
def addSpacing(self, size: int) -> None: ...
def setDirection(self, a0: 'QBoxLayout.Direction') -> None: ...
def direction(self) -> 'QBoxLayout.Direction': ...
class QHBoxLayout(QBoxLayout):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, parent: QWidget) -> None: ...
class QVBoxLayout(QBoxLayout):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, parent: QWidget) -> None: ...
class QButtonGroup(QtCore.QObject):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def buttonToggled(self, a0: QAbstractButton, a1: bool) -> None: ...
@typing.overload
def buttonToggled(self, a0: int, a1: bool) -> None: ...
@typing.overload
def buttonReleased(self, a0: QAbstractButton) -> None: ...
@typing.overload
def buttonReleased(self, a0: int) -> None: ...
@typing.overload
def buttonPressed(self, a0: QAbstractButton) -> None: ...
@typing.overload
def buttonPressed(self, a0: int) -> None: ...
@typing.overload
def buttonClicked(self, a0: QAbstractButton) -> None: ...
@typing.overload
def buttonClicked(self, a0: int) -> None: ...
def checkedId(self) -> int: ...
def id(self, button: QAbstractButton) -> int: ...
def setId(self, button: QAbstractButton, id: int) -> None: ...
def checkedButton(self) -> QAbstractButton: ...
def button(self, id: int) -> QAbstractButton: ...
def buttons(self) -> typing.List[QAbstractButton]: ...
def removeButton(self, a0: QAbstractButton) -> None: ...
def addButton(self, a0: QAbstractButton, id: int = ...) -> None: ...
def exclusive(self) -> bool: ...
def setExclusive(self, a0: bool) -> None: ...
class QCalendarWidget(QWidget):
class SelectionMode(int): ...
NoSelection = ... # type: 'QCalendarWidget.SelectionMode'
SingleSelection = ... # type: 'QCalendarWidget.SelectionMode'
class VerticalHeaderFormat(int): ...
NoVerticalHeader = ... # type: 'QCalendarWidget.VerticalHeaderFormat'
ISOWeekNumbers = ... # type: 'QCalendarWidget.VerticalHeaderFormat'
class HorizontalHeaderFormat(int): ...
NoHorizontalHeader = ... # type: 'QCalendarWidget.HorizontalHeaderFormat'
SingleLetterDayNames = ... # type: 'QCalendarWidget.HorizontalHeaderFormat'
ShortDayNames = ... # type: 'QCalendarWidget.HorizontalHeaderFormat'
LongDayNames = ... # type: 'QCalendarWidget.HorizontalHeaderFormat'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def setNavigationBarVisible(self, visible: bool) -> None: ...
def setDateEditAcceptDelay(self, delay: int) -> None: ...
def dateEditAcceptDelay(self) -> int: ...
def setDateEditEnabled(self, enable: bool) -> None: ...
def isDateEditEnabled(self) -> bool: ...
def isNavigationBarVisible(self) -> bool: ...
def selectionChanged(self) -> None: ...
def currentPageChanged(self, year: int, month: int) -> None: ...
def clicked(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def activated(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def showToday(self) -> None: ...
def showSelectedDate(self) -> None: ...
def showPreviousYear(self) -> None: ...
def showPreviousMonth(self) -> None: ...
def showNextYear(self) -> None: ...
def showNextMonth(self) -> None: ...
def setSelectedDate(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def setDateRange(self, min: typing.Union[QtCore.QDate, datetime.date], max: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def setCurrentPage(self, year: int, month: int) -> None: ...
def paintCell(self, painter: QtGui.QPainter, rect: QtCore.QRect, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None: ...
def resizeEvent(self, event: QtGui.QResizeEvent) -> None: ...
def mousePressEvent(self, event: QtGui.QMouseEvent) -> None: ...
def eventFilter(self, watched: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def updateCells(self) -> None: ...
def updateCell(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def setDateTextFormat(self, date: typing.Union[QtCore.QDate, datetime.date], color: QtGui.QTextCharFormat) -> None: ...
@typing.overload
def dateTextFormat(self) -> typing.Dict[QtCore.QDate, QtGui.QTextCharFormat]: ...
@typing.overload
def dateTextFormat(self, date: typing.Union[QtCore.QDate, datetime.date]) -> QtGui.QTextCharFormat: ...
def setWeekdayTextFormat(self, dayOfWeek: QtCore.Qt.DayOfWeek, format: QtGui.QTextCharFormat) -> None: ...
def weekdayTextFormat(self, dayOfWeek: QtCore.Qt.DayOfWeek) -> QtGui.QTextCharFormat: ...
def setHeaderTextFormat(self, format: QtGui.QTextCharFormat) -> None: ...
def headerTextFormat(self) -> QtGui.QTextCharFormat: ...
def setVerticalHeaderFormat(self, format: 'QCalendarWidget.VerticalHeaderFormat') -> None: ...
def verticalHeaderFormat(self) -> 'QCalendarWidget.VerticalHeaderFormat': ...
def setHorizontalHeaderFormat(self, format: 'QCalendarWidget.HorizontalHeaderFormat') -> None: ...
def horizontalHeaderFormat(self) -> 'QCalendarWidget.HorizontalHeaderFormat': ...
def setSelectionMode(self, mode: 'QCalendarWidget.SelectionMode') -> None: ...
def selectionMode(self) -> 'QCalendarWidget.SelectionMode': ...
def setGridVisible(self, show: bool) -> None: ...
def isGridVisible(self) -> bool: ...
def setFirstDayOfWeek(self, dayOfWeek: QtCore.Qt.DayOfWeek) -> None: ...
def firstDayOfWeek(self) -> QtCore.Qt.DayOfWeek: ...
def setMaximumDate(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def maximumDate(self) -> QtCore.QDate: ...
def setMinimumDate(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def minimumDate(self) -> QtCore.QDate: ...
def monthShown(self) -> int: ...
def yearShown(self) -> int: ...
def selectedDate(self) -> QtCore.QDate: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QCheckBox(QAbstractButton):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def initStyleOption(self, option: 'QStyleOptionButton') -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def nextCheckState(self) -> None: ...
def checkStateSet(self) -> None: ...
def hitButton(self, pos: QtCore.QPoint) -> bool: ...
def stateChanged(self, a0: int) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def setCheckState(self, state: QtCore.Qt.CheckState) -> None: ...
def checkState(self) -> QtCore.Qt.CheckState: ...
def isTristate(self) -> bool: ...
def setTristate(self, on: bool = ...) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
class QDialog(QWidget):
class DialogCode(int): ...
Rejected = ... # type: 'QDialog.DialogCode'
Accepted = ... # type: 'QDialog.DialogCode'
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def eventFilter(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
def contextMenuEvent(self, a0: QtGui.QContextMenuEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def closeEvent(self, a0: QtGui.QCloseEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def rejected(self) -> None: ...
def finished(self, result: int) -> None: ...
def accepted(self) -> None: ...
def open(self) -> None: ...
def reject(self) -> None: ...
def accept(self) -> None: ...
def done(self, a0: int) -> None: ...
def exec(self) -> int: ...
def exec_(self) -> int: ...
def setResult(self, r: int) -> None: ...
def setModal(self, modal: bool) -> None: ...
def isSizeGripEnabled(self) -> bool: ...
def setSizeGripEnabled(self, a0: bool) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def setVisible(self, visible: bool) -> None: ...
def result(self) -> int: ...
class QColorDialog(QDialog):
class ColorDialogOption(int): ...
ShowAlphaChannel = ... # type: 'QColorDialog.ColorDialogOption'
NoButtons = ... # type: 'QColorDialog.ColorDialogOption'
DontUseNativeDialog = ... # type: 'QColorDialog.ColorDialogOption'
class ColorDialogOptions(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QColorDialog.ColorDialogOptions', 'QColorDialog.ColorDialogOption']) -> None: ...
@typing.overload
def __init__(self, a0: 'QColorDialog.ColorDialogOptions') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QColorDialog.ColorDialogOptions': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, initial: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient], parent: typing.Optional[QWidget] = ...) -> None: ...
def setVisible(self, visible: bool) -> None: ...
@typing.overload
def open(self) -> None: ...
@typing.overload
def open(self, slot: PYQT_SLOT) -> None: ...
def options(self) -> 'QColorDialog.ColorDialogOptions': ...
def setOptions(self, options: typing.Union['QColorDialog.ColorDialogOptions', 'QColorDialog.ColorDialogOption']) -> None: ...
def testOption(self, option: 'QColorDialog.ColorDialogOption') -> bool: ...
def setOption(self, option: 'QColorDialog.ColorDialogOption', on: bool = ...) -> None: ...
def selectedColor(self) -> QtGui.QColor: ...
def currentColor(self) -> QtGui.QColor: ...
def setCurrentColor(self, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def done(self, result: int) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def currentColorChanged(self, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def colorSelected(self, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
@staticmethod
def setStandardColor(index: int, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
@staticmethod
def standardColor(index: int) -> QtGui.QColor: ...
@staticmethod
def setCustomColor(index: int, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
@staticmethod
def customColor(index: int) -> QtGui.QColor: ...
@staticmethod
def customCount() -> int: ...
@staticmethod
def getColor(initial: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ..., parent: typing.Optional[QWidget] = ..., title: str = ..., options: typing.Union['QColorDialog.ColorDialogOptions', 'QColorDialog.ColorDialogOption'] = ...) -> QtGui.QColor: ...
class QColumnView(QAbstractItemView):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def currentChanged(self, current: QtCore.QModelIndex, previous: QtCore.QModelIndex) -> None: ...
def rowsInserted(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def verticalOffset(self) -> int: ...
def horizontalOffset(self) -> int: ...
def visualRegionForSelection(self, selection: QtCore.QItemSelection) -> QtGui.QRegion: ...
def setSelection(self, rect: QtCore.QRect, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def resizeEvent(self, event: QtGui.QResizeEvent) -> None: ...
def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, modifiers: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> QtCore.QModelIndex: ...
def isIndexHidden(self, index: QtCore.QModelIndex) -> bool: ...
def initializeColumn(self, column: QAbstractItemView) -> None: ...
def createColumn(self, rootIndex: QtCore.QModelIndex) -> QAbstractItemView: ...
def updatePreviewWidget(self, index: QtCore.QModelIndex) -> None: ...
def selectAll(self) -> None: ...
def setRootIndex(self, index: QtCore.QModelIndex) -> None: ...
def setSelectionModel(self, selectionModel: QtCore.QItemSelectionModel) -> None: ...
def setModel(self, model: QtCore.QAbstractItemModel) -> None: ...
def visualRect(self, index: QtCore.QModelIndex) -> QtCore.QRect: ...
def sizeHint(self) -> QtCore.QSize: ...
def scrollTo(self, index: QtCore.QModelIndex, hint: QAbstractItemView.ScrollHint = ...) -> None: ...
def indexAt(self, point: QtCore.QPoint) -> QtCore.QModelIndex: ...
def setResizeGripsVisible(self, visible: bool) -> None: ...
def setPreviewWidget(self, widget: QWidget) -> None: ...
def setColumnWidths(self, list: typing.Iterable[int]) -> None: ...
def resizeGripsVisible(self) -> bool: ...
def previewWidget(self) -> QWidget: ...
def columnWidths(self) -> typing.List[int]: ...
class QComboBox(QWidget):
class SizeAdjustPolicy(int): ...
AdjustToContents = ... # type: 'QComboBox.SizeAdjustPolicy'
AdjustToContentsOnFirstShow = ... # type: 'QComboBox.SizeAdjustPolicy'
AdjustToMinimumContentsLength = ... # type: 'QComboBox.SizeAdjustPolicy'
AdjustToMinimumContentsLengthWithIcon = ... # type: 'QComboBox.SizeAdjustPolicy'
class InsertPolicy(int): ...
NoInsert = ... # type: 'QComboBox.InsertPolicy'
InsertAtTop = ... # type: 'QComboBox.InsertPolicy'
InsertAtCurrent = ... # type: 'QComboBox.InsertPolicy'
InsertAtBottom = ... # type: 'QComboBox.InsertPolicy'
InsertAfterCurrent = ... # type: 'QComboBox.InsertPolicy'
InsertBeforeCurrent = ... # type: 'QComboBox.InsertPolicy'
InsertAlphabetically = ... # type: 'QComboBox.InsertPolicy'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def currentData(self, role: int = ...) -> typing.Any: ...
@typing.overload
def inputMethodQuery(self, a0: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
@typing.overload
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery, argument: typing.Any) -> typing.Any: ...
def inputMethodEvent(self, a0: QtGui.QInputMethodEvent) -> None: ...
def contextMenuEvent(self, e: QtGui.QContextMenuEvent) -> None: ...
def wheelEvent(self, e: QtGui.QWheelEvent) -> None: ...
def keyReleaseEvent(self, e: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def hideEvent(self, e: QtGui.QHideEvent) -> None: ...
def showEvent(self, e: QtGui.QShowEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def focusOutEvent(self, e: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionComboBox') -> None: ...
@typing.overload
def highlighted(self, index: int) -> None: ...
@typing.overload
def highlighted(self, a0: str) -> None: ...
def currentTextChanged(self, a0: str) -> None: ...
@typing.overload
def currentIndexChanged(self, index: int) -> None: ...
@typing.overload
def currentIndexChanged(self, a0: str) -> None: ...
@typing.overload
def activated(self, index: int) -> None: ...
@typing.overload
def activated(self, a0: str) -> None: ...
def editTextChanged(self, a0: str) -> None: ...
def setCurrentText(self, text: str) -> None: ...
def setEditText(self, text: str) -> None: ...
def clearEditText(self) -> None: ...
def clear(self) -> None: ...
def insertSeparator(self, index: int) -> None: ...
def completer(self) -> 'QCompleter': ...
def setCompleter(self, c: 'QCompleter') -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def hidePopup(self) -> None: ...
def showPopup(self) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def setView(self, itemView: QAbstractItemView) -> None: ...
def view(self) -> QAbstractItemView: ...
def setItemData(self, index: int, value: typing.Any, role: int = ...) -> None: ...
def setItemIcon(self, index: int, icon: QtGui.QIcon) -> None: ...
def setItemText(self, index: int, text: str) -> None: ...
def removeItem(self, index: int) -> None: ...
def insertItems(self, index: int, texts: typing.Iterable[str]) -> None: ...
@typing.overload
def insertItem(self, index: int, text: str, userData: typing.Any = ...) -> None: ...
@typing.overload
def insertItem(self, index: int, icon: QtGui.QIcon, text: str, userData: typing.Any = ...) -> None: ...
@typing.overload
def addItem(self, text: str, userData: typing.Any = ...) -> None: ...
@typing.overload
def addItem(self, icon: QtGui.QIcon, text: str, userData: typing.Any = ...) -> None: ...
def addItems(self, texts: typing.Iterable[str]) -> None: ...
def itemData(self, index: int, role: int = ...) -> typing.Any: ...
def itemIcon(self, index: int) -> QtGui.QIcon: ...
def itemText(self, index: int) -> str: ...
def currentText(self) -> str: ...
def setCurrentIndex(self, index: int) -> None: ...
def currentIndex(self) -> int: ...
def setModelColumn(self, visibleColumn: int) -> None: ...
def modelColumn(self) -> int: ...
def setRootModelIndex(self, index: QtCore.QModelIndex) -> None: ...
def rootModelIndex(self) -> QtCore.QModelIndex: ...
def setModel(self, model: QtCore.QAbstractItemModel) -> None: ...
def model(self) -> QtCore.QAbstractItemModel: ...
def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ...
def itemDelegate(self) -> QAbstractItemDelegate: ...
def validator(self) -> QtGui.QValidator: ...
def setValidator(self, v: QtGui.QValidator) -> None: ...
def lineEdit(self) -> 'QLineEdit': ...
def setLineEdit(self, edit: 'QLineEdit') -> None: ...
def setEditable(self, editable: bool) -> None: ...
def isEditable(self) -> bool: ...
def setIconSize(self, size: QtCore.QSize) -> None: ...
def iconSize(self) -> QtCore.QSize: ...
def setMinimumContentsLength(self, characters: int) -> None: ...
def minimumContentsLength(self) -> int: ...
def setSizeAdjustPolicy(self, policy: 'QComboBox.SizeAdjustPolicy') -> None: ...
def sizeAdjustPolicy(self) -> 'QComboBox.SizeAdjustPolicy': ...
def setInsertPolicy(self, policy: 'QComboBox.InsertPolicy') -> None: ...
def insertPolicy(self) -> 'QComboBox.InsertPolicy': ...
def findData(self, data: typing.Any, role: int = ..., flags: typing.Union[QtCore.Qt.MatchFlags, QtCore.Qt.MatchFlag] = ...) -> int: ...
def findText(self, text: str, flags: typing.Union[QtCore.Qt.MatchFlags, QtCore.Qt.MatchFlag] = ...) -> int: ...
def hasFrame(self) -> bool: ...
def setFrame(self, a0: bool) -> None: ...
def setDuplicatesEnabled(self, enable: bool) -> None: ...
def duplicatesEnabled(self) -> bool: ...
def maxCount(self) -> int: ...
def setMaxCount(self, max: int) -> None: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def setMaxVisibleItems(self, maxItems: int) -> None: ...
def maxVisibleItems(self) -> int: ...
class QPushButton(QAbstractButton):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, icon: QtGui.QIcon, text: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def hitButton(self, pos: QtCore.QPoint) -> bool: ...
def focusOutEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: 'QStyleOptionButton') -> None: ...
def showMenu(self) -> None: ...
def isFlat(self) -> bool: ...
def setFlat(self, a0: bool) -> None: ...
def menu(self) -> 'QMenu': ...
def setMenu(self, menu: 'QMenu') -> None: ...
def setDefault(self, a0: bool) -> None: ...
def isDefault(self) -> bool: ...
def setAutoDefault(self, a0: bool) -> None: ...
def autoDefault(self) -> bool: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QCommandLinkButton(QPushButton):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, description: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def heightForWidth(self, a0: int) -> int: ...
def sizeHint(self) -> QtCore.QSize: ...
def setDescription(self, description: str) -> None: ...
def description(self) -> str: ...
class QStyle(QtCore.QObject):
class RequestSoftwareInputPanel(int): ...
RSIP_OnMouseClickAndAlreadyFocused = ... # type: 'QStyle.RequestSoftwareInputPanel'
RSIP_OnMouseClick = ... # type: 'QStyle.RequestSoftwareInputPanel'
class StandardPixmap(int): ...
SP_TitleBarMenuButton = ... # type: 'QStyle.StandardPixmap'
SP_TitleBarMinButton = ... # type: 'QStyle.StandardPixmap'
SP_TitleBarMaxButton = ... # type: 'QStyle.StandardPixmap'
SP_TitleBarCloseButton = ... # type: 'QStyle.StandardPixmap'
SP_TitleBarNormalButton = ... # type: 'QStyle.StandardPixmap'
SP_TitleBarShadeButton = ... # type: 'QStyle.StandardPixmap'
SP_TitleBarUnshadeButton = ... # type: 'QStyle.StandardPixmap'
SP_TitleBarContextHelpButton = ... # type: 'QStyle.StandardPixmap'
SP_DockWidgetCloseButton = ... # type: 'QStyle.StandardPixmap'
SP_MessageBoxInformation = ... # type: 'QStyle.StandardPixmap'
SP_MessageBoxWarning = ... # type: 'QStyle.StandardPixmap'
SP_MessageBoxCritical = ... # type: 'QStyle.StandardPixmap'
SP_MessageBoxQuestion = ... # type: 'QStyle.StandardPixmap'
SP_DesktopIcon = ... # type: 'QStyle.StandardPixmap'
SP_TrashIcon = ... # type: 'QStyle.StandardPixmap'
SP_ComputerIcon = ... # type: 'QStyle.StandardPixmap'
SP_DriveFDIcon = ... # type: 'QStyle.StandardPixmap'
SP_DriveHDIcon = ... # type: 'QStyle.StandardPixmap'
SP_DriveCDIcon = ... # type: 'QStyle.StandardPixmap'
SP_DriveDVDIcon = ... # type: 'QStyle.StandardPixmap'
SP_DriveNetIcon = ... # type: 'QStyle.StandardPixmap'
SP_DirOpenIcon = ... # type: 'QStyle.StandardPixmap'
SP_DirClosedIcon = ... # type: 'QStyle.StandardPixmap'
SP_DirLinkIcon = ... # type: 'QStyle.StandardPixmap'
SP_FileIcon = ... # type: 'QStyle.StandardPixmap'
SP_FileLinkIcon = ... # type: 'QStyle.StandardPixmap'
SP_ToolBarHorizontalExtensionButton = ... # type: 'QStyle.StandardPixmap'
SP_ToolBarVerticalExtensionButton = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogStart = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogEnd = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogToParent = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogNewFolder = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogDetailedView = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogInfoView = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogContentsView = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogListView = ... # type: 'QStyle.StandardPixmap'
SP_FileDialogBack = ... # type: 'QStyle.StandardPixmap'
SP_DirIcon = ... # type: 'QStyle.StandardPixmap'
SP_DialogOkButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogCancelButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogHelpButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogOpenButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogSaveButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogCloseButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogApplyButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogResetButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogDiscardButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogYesButton = ... # type: 'QStyle.StandardPixmap'
SP_DialogNoButton = ... # type: 'QStyle.StandardPixmap'
SP_ArrowUp = ... # type: 'QStyle.StandardPixmap'
SP_ArrowDown = ... # type: 'QStyle.StandardPixmap'
SP_ArrowLeft = ... # type: 'QStyle.StandardPixmap'
SP_ArrowRight = ... # type: 'QStyle.StandardPixmap'
SP_ArrowBack = ... # type: 'QStyle.StandardPixmap'
SP_ArrowForward = ... # type: 'QStyle.StandardPixmap'
SP_DirHomeIcon = ... # type: 'QStyle.StandardPixmap'
SP_CommandLink = ... # type: 'QStyle.StandardPixmap'
SP_VistaShield = ... # type: 'QStyle.StandardPixmap'
SP_BrowserReload = ... # type: 'QStyle.StandardPixmap'
SP_BrowserStop = ... # type: 'QStyle.StandardPixmap'
SP_MediaPlay = ... # type: 'QStyle.StandardPixmap'
SP_MediaStop = ... # type: 'QStyle.StandardPixmap'
SP_MediaPause = ... # type: 'QStyle.StandardPixmap'
SP_MediaSkipForward = ... # type: 'QStyle.StandardPixmap'
SP_MediaSkipBackward = ... # type: 'QStyle.StandardPixmap'
SP_MediaSeekForward = ... # type: 'QStyle.StandardPixmap'
SP_MediaSeekBackward = ... # type: 'QStyle.StandardPixmap'
SP_MediaVolume = ... # type: 'QStyle.StandardPixmap'
SP_MediaVolumeMuted = ... # type: 'QStyle.StandardPixmap'
SP_DirLinkOpenIcon = ... # type: 'QStyle.StandardPixmap'
SP_LineEditClearButton = ... # type: 'QStyle.StandardPixmap'
SP_CustomBase = ... # type: 'QStyle.StandardPixmap'
class StyleHint(int): ...
SH_EtchDisabledText = ... # type: 'QStyle.StyleHint'
SH_DitherDisabledText = ... # type: 'QStyle.StyleHint'
SH_ScrollBar_MiddleClickAbsolutePosition = ... # type: 'QStyle.StyleHint'
SH_ScrollBar_ScrollWhenPointerLeavesControl = ... # type: 'QStyle.StyleHint'
SH_TabBar_SelectMouseType = ... # type: 'QStyle.StyleHint'
SH_TabBar_Alignment = ... # type: 'QStyle.StyleHint'
SH_Header_ArrowAlignment = ... # type: 'QStyle.StyleHint'
SH_Slider_SnapToValue = ... # type: 'QStyle.StyleHint'
SH_Slider_SloppyKeyEvents = ... # type: 'QStyle.StyleHint'
SH_ProgressDialog_CenterCancelButton = ... # type: 'QStyle.StyleHint'
SH_ProgressDialog_TextLabelAlignment = ... # type: 'QStyle.StyleHint'
SH_PrintDialog_RightAlignButtons = ... # type: 'QStyle.StyleHint'
SH_MainWindow_SpaceBelowMenuBar = ... # type: 'QStyle.StyleHint'
SH_FontDialog_SelectAssociatedText = ... # type: 'QStyle.StyleHint'
SH_Menu_AllowActiveAndDisabled = ... # type: 'QStyle.StyleHint'
SH_Menu_SpaceActivatesItem = ... # type: 'QStyle.StyleHint'
SH_Menu_SubMenuPopupDelay = ... # type: 'QStyle.StyleHint'
SH_ScrollView_FrameOnlyAroundContents = ... # type: 'QStyle.StyleHint'
SH_MenuBar_AltKeyNavigation = ... # type: 'QStyle.StyleHint'
SH_ComboBox_ListMouseTracking = ... # type: 'QStyle.StyleHint'
SH_Menu_MouseTracking = ... # type: 'QStyle.StyleHint'
SH_MenuBar_MouseTracking = ... # type: 'QStyle.StyleHint'
SH_ItemView_ChangeHighlightOnFocus = ... # type: 'QStyle.StyleHint'
SH_Widget_ShareActivation = ... # type: 'QStyle.StyleHint'
SH_Workspace_FillSpaceOnMaximize = ... # type: 'QStyle.StyleHint'
SH_ComboBox_Popup = ... # type: 'QStyle.StyleHint'
SH_TitleBar_NoBorder = ... # type: 'QStyle.StyleHint'
SH_ScrollBar_StopMouseOverSlider = ... # type: 'QStyle.StyleHint'
SH_BlinkCursorWhenTextSelected = ... # type: 'QStyle.StyleHint'
SH_RichText_FullWidthSelection = ... # type: 'QStyle.StyleHint'
SH_Menu_Scrollable = ... # type: 'QStyle.StyleHint'
SH_GroupBox_TextLabelVerticalAlignment = ... # type: 'QStyle.StyleHint'
SH_GroupBox_TextLabelColor = ... # type: 'QStyle.StyleHint'
SH_Menu_SloppySubMenus = ... # type: 'QStyle.StyleHint'
SH_Table_GridLineColor = ... # type: 'QStyle.StyleHint'
SH_LineEdit_PasswordCharacter = ... # type: 'QStyle.StyleHint'
SH_DialogButtons_DefaultButton = ... # type: 'QStyle.StyleHint'
SH_ToolBox_SelectedPageTitleBold = ... # type: 'QStyle.StyleHint'
SH_TabBar_PreferNoArrows = ... # type: 'QStyle.StyleHint'
SH_ScrollBar_LeftClickAbsolutePosition = ... # type: 'QStyle.StyleHint'
SH_UnderlineShortcut = ... # type: 'QStyle.StyleHint'
SH_SpinBox_AnimateButton = ... # type: 'QStyle.StyleHint'
SH_SpinBox_KeyPressAutoRepeatRate = ... # type: 'QStyle.StyleHint'
SH_SpinBox_ClickAutoRepeatRate = ... # type: 'QStyle.StyleHint'
SH_Menu_FillScreenWithScroll = ... # type: 'QStyle.StyleHint'
SH_ToolTipLabel_Opacity = ... # type: 'QStyle.StyleHint'
SH_DrawMenuBarSeparator = ... # type: 'QStyle.StyleHint'
SH_TitleBar_ModifyNotification = ... # type: 'QStyle.StyleHint'
SH_Button_FocusPolicy = ... # type: 'QStyle.StyleHint'
SH_MessageBox_UseBorderForButtonSpacing = ... # type: 'QStyle.StyleHint'
SH_TitleBar_AutoRaise = ... # type: 'QStyle.StyleHint'
SH_ToolButton_PopupDelay = ... # type: 'QStyle.StyleHint'
SH_FocusFrame_Mask = ... # type: 'QStyle.StyleHint'
SH_RubberBand_Mask = ... # type: 'QStyle.StyleHint'
SH_WindowFrame_Mask = ... # type: 'QStyle.StyleHint'
SH_SpinControls_DisableOnBounds = ... # type: 'QStyle.StyleHint'
SH_Dial_BackgroundRole = ... # type: 'QStyle.StyleHint'
SH_ComboBox_LayoutDirection = ... # type: 'QStyle.StyleHint'
SH_ItemView_EllipsisLocation = ... # type: 'QStyle.StyleHint'
SH_ItemView_ShowDecorationSelected = ... # type: 'QStyle.StyleHint'
SH_ItemView_ActivateItemOnSingleClick = ... # type: 'QStyle.StyleHint'
SH_ScrollBar_ContextMenu = ... # type: 'QStyle.StyleHint'
SH_ScrollBar_RollBetweenButtons = ... # type: 'QStyle.StyleHint'
SH_Slider_StopMouseOverSlider = ... # type: 'QStyle.StyleHint'
SH_Slider_AbsoluteSetButtons = ... # type: 'QStyle.StyleHint'
SH_Slider_PageSetButtons = ... # type: 'QStyle.StyleHint'
SH_Menu_KeyboardSearch = ... # type: 'QStyle.StyleHint'
SH_TabBar_ElideMode = ... # type: 'QStyle.StyleHint'
SH_DialogButtonLayout = ... # type: 'QStyle.StyleHint'
SH_ComboBox_PopupFrameStyle = ... # type: 'QStyle.StyleHint'
SH_MessageBox_TextInteractionFlags = ... # type: 'QStyle.StyleHint'
SH_DialogButtonBox_ButtonsHaveIcons = ... # type: 'QStyle.StyleHint'
SH_SpellCheckUnderlineStyle = ... # type: 'QStyle.StyleHint'
SH_MessageBox_CenterButtons = ... # type: 'QStyle.StyleHint'
SH_Menu_SelectionWrap = ... # type: 'QStyle.StyleHint'
SH_ItemView_MovementWithoutUpdatingSelection = ... # type: 'QStyle.StyleHint'
SH_ToolTip_Mask = ... # type: 'QStyle.StyleHint'
SH_FocusFrame_AboveWidget = ... # type: 'QStyle.StyleHint'
SH_TextControl_FocusIndicatorTextCharFormat = ... # type: 'QStyle.StyleHint'
SH_WizardStyle = ... # type: 'QStyle.StyleHint'
SH_ItemView_ArrowKeysNavigateIntoChildren = ... # type: 'QStyle.StyleHint'
SH_Menu_Mask = ... # type: 'QStyle.StyleHint'
SH_Menu_FlashTriggeredItem = ... # type: 'QStyle.StyleHint'
SH_Menu_FadeOutOnHide = ... # type: 'QStyle.StyleHint'
SH_SpinBox_ClickAutoRepeatThreshold = ... # type: 'QStyle.StyleHint'
SH_ItemView_PaintAlternatingRowColorsForEmptyArea = ... # type: 'QStyle.StyleHint'
SH_FormLayoutWrapPolicy = ... # type: 'QStyle.StyleHint'
SH_TabWidget_DefaultTabPosition = ... # type: 'QStyle.StyleHint'
SH_ToolBar_Movable = ... # type: 'QStyle.StyleHint'
SH_FormLayoutFieldGrowthPolicy = ... # type: 'QStyle.StyleHint'
SH_FormLayoutFormAlignment = ... # type: 'QStyle.StyleHint'
SH_FormLayoutLabelAlignment = ... # type: 'QStyle.StyleHint'
SH_ItemView_DrawDelegateFrame = ... # type: 'QStyle.StyleHint'
SH_TabBar_CloseButtonPosition = ... # type: 'QStyle.StyleHint'
SH_DockWidget_ButtonsHaveFrame = ... # type: 'QStyle.StyleHint'
SH_ToolButtonStyle = ... # type: 'QStyle.StyleHint'
SH_RequestSoftwareInputPanel = ... # type: 'QStyle.StyleHint'
SH_ListViewExpand_SelectMouseType = ... # type: 'QStyle.StyleHint'
SH_ScrollBar_Transient = ... # type: 'QStyle.StyleHint'
SH_Menu_SupportsSections = ... # type: 'QStyle.StyleHint'
SH_ToolTip_WakeUpDelay = ... # type: 'QStyle.StyleHint'
SH_ToolTip_FallAsleepDelay = ... # type: 'QStyle.StyleHint'
SH_Widget_Animate = ... # type: 'QStyle.StyleHint'
SH_Splitter_OpaqueResize = ... # type: 'QStyle.StyleHint'
SH_LineEdit_PasswordMaskDelay = ... # type: 'QStyle.StyleHint'
SH_TabBar_ChangeCurrentDelay = ... # type: 'QStyle.StyleHint'
SH_Menu_SubMenuUniDirection = ... # type: 'QStyle.StyleHint'
SH_Menu_SubMenuUniDirectionFailCount = ... # type: 'QStyle.StyleHint'
SH_Menu_SubMenuSloppySelectOtherActions = ... # type: 'QStyle.StyleHint'
SH_Menu_SubMenuSloppyCloseTimeout = ... # type: 'QStyle.StyleHint'
SH_Menu_SubMenuResetWhenReenteringParent = ... # type: 'QStyle.StyleHint'
SH_Menu_SubMenuDontStartSloppyOnLeave = ... # type: 'QStyle.StyleHint'
SH_ItemView_ScrollMode = ... # type: 'QStyle.StyleHint'
SH_TitleBar_ShowToolTipsOnButtons = ... # type: 'QStyle.StyleHint'
SH_Widget_Animation_Duration = ... # type: 'QStyle.StyleHint'
SH_ComboBox_AllowWheelScrolling = ... # type: 'QStyle.StyleHint'
SH_SpinBox_ButtonsInsideFrame = ... # type: 'QStyle.StyleHint'
SH_SpinBox_StepModifier = ... # type: 'QStyle.StyleHint'
SH_CustomBase = ... # type: 'QStyle.StyleHint'
class ContentsType(int): ...
CT_PushButton = ... # type: 'QStyle.ContentsType'
CT_CheckBox = ... # type: 'QStyle.ContentsType'
CT_RadioButton = ... # type: 'QStyle.ContentsType'
CT_ToolButton = ... # type: 'QStyle.ContentsType'
CT_ComboBox = ... # type: 'QStyle.ContentsType'
CT_Splitter = ... # type: 'QStyle.ContentsType'
CT_ProgressBar = ... # type: 'QStyle.ContentsType'
CT_MenuItem = ... # type: 'QStyle.ContentsType'
CT_MenuBarItem = ... # type: 'QStyle.ContentsType'
CT_MenuBar = ... # type: 'QStyle.ContentsType'
CT_Menu = ... # type: 'QStyle.ContentsType'
CT_TabBarTab = ... # type: 'QStyle.ContentsType'
CT_Slider = ... # type: 'QStyle.ContentsType'
CT_ScrollBar = ... # type: 'QStyle.ContentsType'
CT_LineEdit = ... # type: 'QStyle.ContentsType'
CT_SpinBox = ... # type: 'QStyle.ContentsType'
CT_SizeGrip = ... # type: 'QStyle.ContentsType'
CT_TabWidget = ... # type: 'QStyle.ContentsType'
CT_DialogButtons = ... # type: 'QStyle.ContentsType'
CT_HeaderSection = ... # type: 'QStyle.ContentsType'
CT_GroupBox = ... # type: 'QStyle.ContentsType'
CT_MdiControls = ... # type: 'QStyle.ContentsType'
CT_ItemViewItem = ... # type: 'QStyle.ContentsType'
CT_CustomBase = ... # type: 'QStyle.ContentsType'
class PixelMetric(int): ...
PM_ButtonMargin = ... # type: 'QStyle.PixelMetric'
PM_ButtonDefaultIndicator = ... # type: 'QStyle.PixelMetric'
PM_MenuButtonIndicator = ... # type: 'QStyle.PixelMetric'
PM_ButtonShiftHorizontal = ... # type: 'QStyle.PixelMetric'
PM_ButtonShiftVertical = ... # type: 'QStyle.PixelMetric'
PM_DefaultFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_SpinBoxFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_ComboBoxFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_MaximumDragDistance = ... # type: 'QStyle.PixelMetric'
PM_ScrollBarExtent = ... # type: 'QStyle.PixelMetric'
PM_ScrollBarSliderMin = ... # type: 'QStyle.PixelMetric'
PM_SliderThickness = ... # type: 'QStyle.PixelMetric'
PM_SliderControlThickness = ... # type: 'QStyle.PixelMetric'
PM_SliderLength = ... # type: 'QStyle.PixelMetric'
PM_SliderTickmarkOffset = ... # type: 'QStyle.PixelMetric'
PM_SliderSpaceAvailable = ... # type: 'QStyle.PixelMetric'
PM_DockWidgetSeparatorExtent = ... # type: 'QStyle.PixelMetric'
PM_DockWidgetHandleExtent = ... # type: 'QStyle.PixelMetric'
PM_DockWidgetFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_TabBarTabOverlap = ... # type: 'QStyle.PixelMetric'
PM_TabBarTabHSpace = ... # type: 'QStyle.PixelMetric'
PM_TabBarTabVSpace = ... # type: 'QStyle.PixelMetric'
PM_TabBarBaseHeight = ... # type: 'QStyle.PixelMetric'
PM_TabBarBaseOverlap = ... # type: 'QStyle.PixelMetric'
PM_ProgressBarChunkWidth = ... # type: 'QStyle.PixelMetric'
PM_SplitterWidth = ... # type: 'QStyle.PixelMetric'
PM_TitleBarHeight = ... # type: 'QStyle.PixelMetric'
PM_MenuScrollerHeight = ... # type: 'QStyle.PixelMetric'
PM_MenuHMargin = ... # type: 'QStyle.PixelMetric'
PM_MenuVMargin = ... # type: 'QStyle.PixelMetric'
PM_MenuPanelWidth = ... # type: 'QStyle.PixelMetric'
PM_MenuTearoffHeight = ... # type: 'QStyle.PixelMetric'
PM_MenuDesktopFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_MenuBarPanelWidth = ... # type: 'QStyle.PixelMetric'
PM_MenuBarItemSpacing = ... # type: 'QStyle.PixelMetric'
PM_MenuBarVMargin = ... # type: 'QStyle.PixelMetric'
PM_MenuBarHMargin = ... # type: 'QStyle.PixelMetric'
PM_IndicatorWidth = ... # type: 'QStyle.PixelMetric'
PM_IndicatorHeight = ... # type: 'QStyle.PixelMetric'
PM_ExclusiveIndicatorWidth = ... # type: 'QStyle.PixelMetric'
PM_ExclusiveIndicatorHeight = ... # type: 'QStyle.PixelMetric'
PM_DialogButtonsSeparator = ... # type: 'QStyle.PixelMetric'
PM_DialogButtonsButtonWidth = ... # type: 'QStyle.PixelMetric'
PM_DialogButtonsButtonHeight = ... # type: 'QStyle.PixelMetric'
PM_MdiSubWindowFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_MDIFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_MdiSubWindowMinimizedWidth = ... # type: 'QStyle.PixelMetric'
PM_MDIMinimizedWidth = ... # type: 'QStyle.PixelMetric'
PM_HeaderMargin = ... # type: 'QStyle.PixelMetric'
PM_HeaderMarkSize = ... # type: 'QStyle.PixelMetric'
PM_HeaderGripMargin = ... # type: 'QStyle.PixelMetric'
PM_TabBarTabShiftHorizontal = ... # type: 'QStyle.PixelMetric'
PM_TabBarTabShiftVertical = ... # type: 'QStyle.PixelMetric'
PM_TabBarScrollButtonWidth = ... # type: 'QStyle.PixelMetric'
PM_ToolBarFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_ToolBarHandleExtent = ... # type: 'QStyle.PixelMetric'
PM_ToolBarItemSpacing = ... # type: 'QStyle.PixelMetric'
PM_ToolBarItemMargin = ... # type: 'QStyle.PixelMetric'
PM_ToolBarSeparatorExtent = ... # type: 'QStyle.PixelMetric'
PM_ToolBarExtensionExtent = ... # type: 'QStyle.PixelMetric'
PM_SpinBoxSliderHeight = ... # type: 'QStyle.PixelMetric'
PM_DefaultTopLevelMargin = ... # type: 'QStyle.PixelMetric'
PM_DefaultChildMargin = ... # type: 'QStyle.PixelMetric'
PM_DefaultLayoutSpacing = ... # type: 'QStyle.PixelMetric'
PM_ToolBarIconSize = ... # type: 'QStyle.PixelMetric'
PM_ListViewIconSize = ... # type: 'QStyle.PixelMetric'
PM_IconViewIconSize = ... # type: 'QStyle.PixelMetric'
PM_SmallIconSize = ... # type: 'QStyle.PixelMetric'
PM_LargeIconSize = ... # type: 'QStyle.PixelMetric'
PM_FocusFrameVMargin = ... # type: 'QStyle.PixelMetric'
PM_FocusFrameHMargin = ... # type: 'QStyle.PixelMetric'
PM_ToolTipLabelFrameWidth = ... # type: 'QStyle.PixelMetric'
PM_CheckBoxLabelSpacing = ... # type: 'QStyle.PixelMetric'
PM_TabBarIconSize = ... # type: 'QStyle.PixelMetric'
PM_SizeGripSize = ... # type: 'QStyle.PixelMetric'
PM_DockWidgetTitleMargin = ... # type: 'QStyle.PixelMetric'
PM_MessageBoxIconSize = ... # type: 'QStyle.PixelMetric'
PM_ButtonIconSize = ... # type: 'QStyle.PixelMetric'
PM_DockWidgetTitleBarButtonMargin = ... # type: 'QStyle.PixelMetric'
PM_RadioButtonLabelSpacing = ... # type: 'QStyle.PixelMetric'
PM_LayoutLeftMargin = ... # type: 'QStyle.PixelMetric'
PM_LayoutTopMargin = ... # type: 'QStyle.PixelMetric'
PM_LayoutRightMargin = ... # type: 'QStyle.PixelMetric'
PM_LayoutBottomMargin = ... # type: 'QStyle.PixelMetric'
PM_LayoutHorizontalSpacing = ... # type: 'QStyle.PixelMetric'
PM_LayoutVerticalSpacing = ... # type: 'QStyle.PixelMetric'
PM_TabBar_ScrollButtonOverlap = ... # type: 'QStyle.PixelMetric'
PM_TextCursorWidth = ... # type: 'QStyle.PixelMetric'
PM_TabCloseIndicatorWidth = ... # type: 'QStyle.PixelMetric'
PM_TabCloseIndicatorHeight = ... # type: 'QStyle.PixelMetric'
PM_ScrollView_ScrollBarSpacing = ... # type: 'QStyle.PixelMetric'
PM_SubMenuOverlap = ... # type: 'QStyle.PixelMetric'
PM_ScrollView_ScrollBarOverlap = ... # type: 'QStyle.PixelMetric'
PM_TreeViewIndentation = ... # type: 'QStyle.PixelMetric'
PM_HeaderDefaultSectionSizeHorizontal = ... # type: 'QStyle.PixelMetric'
PM_HeaderDefaultSectionSizeVertical = ... # type: 'QStyle.PixelMetric'
PM_TitleBarButtonIconSize = ... # type: 'QStyle.PixelMetric'
PM_TitleBarButtonSize = ... # type: 'QStyle.PixelMetric'
PM_CustomBase = ... # type: 'QStyle.PixelMetric'
class SubControl(int): ...
SC_None = ... # type: 'QStyle.SubControl'
SC_ScrollBarAddLine = ... # type: 'QStyle.SubControl'
SC_ScrollBarSubLine = ... # type: 'QStyle.SubControl'
SC_ScrollBarAddPage = ... # type: 'QStyle.SubControl'
SC_ScrollBarSubPage = ... # type: 'QStyle.SubControl'
SC_ScrollBarFirst = ... # type: 'QStyle.SubControl'
SC_ScrollBarLast = ... # type: 'QStyle.SubControl'
SC_ScrollBarSlider = ... # type: 'QStyle.SubControl'
SC_ScrollBarGroove = ... # type: 'QStyle.SubControl'
SC_SpinBoxUp = ... # type: 'QStyle.SubControl'
SC_SpinBoxDown = ... # type: 'QStyle.SubControl'
SC_SpinBoxFrame = ... # type: 'QStyle.SubControl'
SC_SpinBoxEditField = ... # type: 'QStyle.SubControl'
SC_ComboBoxFrame = ... # type: 'QStyle.SubControl'
SC_ComboBoxEditField = ... # type: 'QStyle.SubControl'
SC_ComboBoxArrow = ... # type: 'QStyle.SubControl'
SC_ComboBoxListBoxPopup = ... # type: 'QStyle.SubControl'
SC_SliderGroove = ... # type: 'QStyle.SubControl'
SC_SliderHandle = ... # type: 'QStyle.SubControl'
SC_SliderTickmarks = ... # type: 'QStyle.SubControl'
SC_ToolButton = ... # type: 'QStyle.SubControl'
SC_ToolButtonMenu = ... # type: 'QStyle.SubControl'
SC_TitleBarSysMenu = ... # type: 'QStyle.SubControl'
SC_TitleBarMinButton = ... # type: 'QStyle.SubControl'
SC_TitleBarMaxButton = ... # type: 'QStyle.SubControl'
SC_TitleBarCloseButton = ... # type: 'QStyle.SubControl'
SC_TitleBarNormalButton = ... # type: 'QStyle.SubControl'
SC_TitleBarShadeButton = ... # type: 'QStyle.SubControl'
SC_TitleBarUnshadeButton = ... # type: 'QStyle.SubControl'
SC_TitleBarContextHelpButton = ... # type: 'QStyle.SubControl'
SC_TitleBarLabel = ... # type: 'QStyle.SubControl'
SC_DialGroove = ... # type: 'QStyle.SubControl'
SC_DialHandle = ... # type: 'QStyle.SubControl'
SC_DialTickmarks = ... # type: 'QStyle.SubControl'
SC_GroupBoxCheckBox = ... # type: 'QStyle.SubControl'
SC_GroupBoxLabel = ... # type: 'QStyle.SubControl'
SC_GroupBoxContents = ... # type: 'QStyle.SubControl'
SC_GroupBoxFrame = ... # type: 'QStyle.SubControl'
SC_MdiMinButton = ... # type: 'QStyle.SubControl'
SC_MdiNormalButton = ... # type: 'QStyle.SubControl'
SC_MdiCloseButton = ... # type: 'QStyle.SubControl'
SC_CustomBase = ... # type: 'QStyle.SubControl'
SC_All = ... # type: 'QStyle.SubControl'
class ComplexControl(int): ...
CC_SpinBox = ... # type: 'QStyle.ComplexControl'
CC_ComboBox = ... # type: 'QStyle.ComplexControl'
CC_ScrollBar = ... # type: 'QStyle.ComplexControl'
CC_Slider = ... # type: 'QStyle.ComplexControl'
CC_ToolButton = ... # type: 'QStyle.ComplexControl'
CC_TitleBar = ... # type: 'QStyle.ComplexControl'
CC_Dial = ... # type: 'QStyle.ComplexControl'
CC_GroupBox = ... # type: 'QStyle.ComplexControl'
CC_MdiControls = ... # type: 'QStyle.ComplexControl'
CC_CustomBase = ... # type: 'QStyle.ComplexControl'
class SubElement(int): ...
SE_PushButtonContents = ... # type: 'QStyle.SubElement'
SE_PushButtonFocusRect = ... # type: 'QStyle.SubElement'
SE_CheckBoxIndicator = ... # type: 'QStyle.SubElement'
SE_CheckBoxContents = ... # type: 'QStyle.SubElement'
SE_CheckBoxFocusRect = ... # type: 'QStyle.SubElement'
SE_CheckBoxClickRect = ... # type: 'QStyle.SubElement'
SE_RadioButtonIndicator = ... # type: 'QStyle.SubElement'
SE_RadioButtonContents = ... # type: 'QStyle.SubElement'
SE_RadioButtonFocusRect = ... # type: 'QStyle.SubElement'
SE_RadioButtonClickRect = ... # type: 'QStyle.SubElement'
SE_ComboBoxFocusRect = ... # type: 'QStyle.SubElement'
SE_SliderFocusRect = ... # type: 'QStyle.SubElement'
SE_ProgressBarGroove = ... # type: 'QStyle.SubElement'
SE_ProgressBarContents = ... # type: 'QStyle.SubElement'
SE_ProgressBarLabel = ... # type: 'QStyle.SubElement'
SE_ToolBoxTabContents = ... # type: 'QStyle.SubElement'
SE_HeaderLabel = ... # type: 'QStyle.SubElement'
SE_HeaderArrow = ... # type: 'QStyle.SubElement'
SE_TabWidgetTabBar = ... # type: 'QStyle.SubElement'
SE_TabWidgetTabPane = ... # type: 'QStyle.SubElement'
SE_TabWidgetTabContents = ... # type: 'QStyle.SubElement'
SE_TabWidgetLeftCorner = ... # type: 'QStyle.SubElement'
SE_TabWidgetRightCorner = ... # type: 'QStyle.SubElement'
SE_ViewItemCheckIndicator = ... # type: 'QStyle.SubElement'
SE_TabBarTearIndicator = ... # type: 'QStyle.SubElement'
SE_TreeViewDisclosureItem = ... # type: 'QStyle.SubElement'
SE_LineEditContents = ... # type: 'QStyle.SubElement'
SE_FrameContents = ... # type: 'QStyle.SubElement'
SE_DockWidgetCloseButton = ... # type: 'QStyle.SubElement'
SE_DockWidgetFloatButton = ... # type: 'QStyle.SubElement'
SE_DockWidgetTitleBarText = ... # type: 'QStyle.SubElement'
SE_DockWidgetIcon = ... # type: 'QStyle.SubElement'
SE_CheckBoxLayoutItem = ... # type: 'QStyle.SubElement'
SE_ComboBoxLayoutItem = ... # type: 'QStyle.SubElement'
SE_DateTimeEditLayoutItem = ... # type: 'QStyle.SubElement'
SE_DialogButtonBoxLayoutItem = ... # type: 'QStyle.SubElement'
SE_LabelLayoutItem = ... # type: 'QStyle.SubElement'
SE_ProgressBarLayoutItem = ... # type: 'QStyle.SubElement'
SE_PushButtonLayoutItem = ... # type: 'QStyle.SubElement'
SE_RadioButtonLayoutItem = ... # type: 'QStyle.SubElement'
SE_SliderLayoutItem = ... # type: 'QStyle.SubElement'
SE_SpinBoxLayoutItem = ... # type: 'QStyle.SubElement'
SE_ToolButtonLayoutItem = ... # type: 'QStyle.SubElement'
SE_FrameLayoutItem = ... # type: 'QStyle.SubElement'
SE_GroupBoxLayoutItem = ... # type: 'QStyle.SubElement'
SE_TabWidgetLayoutItem = ... # type: 'QStyle.SubElement'
SE_ItemViewItemCheckIndicator = ... # type: 'QStyle.SubElement'
SE_ItemViewItemDecoration = ... # type: 'QStyle.SubElement'
SE_ItemViewItemText = ... # type: 'QStyle.SubElement'
SE_ItemViewItemFocusRect = ... # type: 'QStyle.SubElement'
SE_TabBarTabLeftButton = ... # type: 'QStyle.SubElement'
SE_TabBarTabRightButton = ... # type: 'QStyle.SubElement'
SE_TabBarTabText = ... # type: 'QStyle.SubElement'
SE_ShapedFrameContents = ... # type: 'QStyle.SubElement'
SE_ToolBarHandle = ... # type: 'QStyle.SubElement'
SE_TabBarTearIndicatorLeft = ... # type: 'QStyle.SubElement'
SE_TabBarScrollLeftButton = ... # type: 'QStyle.SubElement'
SE_TabBarScrollRightButton = ... # type: 'QStyle.SubElement'
SE_TabBarTearIndicatorRight = ... # type: 'QStyle.SubElement'
SE_CustomBase = ... # type: 'QStyle.SubElement'
class ControlElement(int): ...
CE_PushButton = ... # type: 'QStyle.ControlElement'
CE_PushButtonBevel = ... # type: 'QStyle.ControlElement'
CE_PushButtonLabel = ... # type: 'QStyle.ControlElement'
CE_CheckBox = ... # type: 'QStyle.ControlElement'
CE_CheckBoxLabel = ... # type: 'QStyle.ControlElement'
CE_RadioButton = ... # type: 'QStyle.ControlElement'
CE_RadioButtonLabel = ... # type: 'QStyle.ControlElement'
CE_TabBarTab = ... # type: 'QStyle.ControlElement'
CE_TabBarTabShape = ... # type: 'QStyle.ControlElement'
CE_TabBarTabLabel = ... # type: 'QStyle.ControlElement'
CE_ProgressBar = ... # type: 'QStyle.ControlElement'
CE_ProgressBarGroove = ... # type: 'QStyle.ControlElement'
CE_ProgressBarContents = ... # type: 'QStyle.ControlElement'
CE_ProgressBarLabel = ... # type: 'QStyle.ControlElement'
CE_MenuItem = ... # type: 'QStyle.ControlElement'
CE_MenuScroller = ... # type: 'QStyle.ControlElement'
CE_MenuVMargin = ... # type: 'QStyle.ControlElement'
CE_MenuHMargin = ... # type: 'QStyle.ControlElement'
CE_MenuTearoff = ... # type: 'QStyle.ControlElement'
CE_MenuEmptyArea = ... # type: 'QStyle.ControlElement'
CE_MenuBarItem = ... # type: 'QStyle.ControlElement'
CE_MenuBarEmptyArea = ... # type: 'QStyle.ControlElement'
CE_ToolButtonLabel = ... # type: 'QStyle.ControlElement'
CE_Header = ... # type: 'QStyle.ControlElement'
CE_HeaderSection = ... # type: 'QStyle.ControlElement'
CE_HeaderLabel = ... # type: 'QStyle.ControlElement'
CE_ToolBoxTab = ... # type: 'QStyle.ControlElement'
CE_SizeGrip = ... # type: 'QStyle.ControlElement'
CE_Splitter = ... # type: 'QStyle.ControlElement'
CE_RubberBand = ... # type: 'QStyle.ControlElement'
CE_DockWidgetTitle = ... # type: 'QStyle.ControlElement'
CE_ScrollBarAddLine = ... # type: 'QStyle.ControlElement'
CE_ScrollBarSubLine = ... # type: 'QStyle.ControlElement'
CE_ScrollBarAddPage = ... # type: 'QStyle.ControlElement'
CE_ScrollBarSubPage = ... # type: 'QStyle.ControlElement'
CE_ScrollBarSlider = ... # type: 'QStyle.ControlElement'
CE_ScrollBarFirst = ... # type: 'QStyle.ControlElement'
CE_ScrollBarLast = ... # type: 'QStyle.ControlElement'
CE_FocusFrame = ... # type: 'QStyle.ControlElement'
CE_ComboBoxLabel = ... # type: 'QStyle.ControlElement'
CE_ToolBar = ... # type: 'QStyle.ControlElement'
CE_ToolBoxTabShape = ... # type: 'QStyle.ControlElement'
CE_ToolBoxTabLabel = ... # type: 'QStyle.ControlElement'
CE_HeaderEmptyArea = ... # type: 'QStyle.ControlElement'
CE_ColumnViewGrip = ... # type: 'QStyle.ControlElement'
CE_ItemViewItem = ... # type: 'QStyle.ControlElement'
CE_ShapedFrame = ... # type: 'QStyle.ControlElement'
CE_CustomBase = ... # type: 'QStyle.ControlElement'
class PrimitiveElement(int): ...
PE_Frame = ... # type: 'QStyle.PrimitiveElement'
PE_FrameDefaultButton = ... # type: 'QStyle.PrimitiveElement'
PE_FrameDockWidget = ... # type: 'QStyle.PrimitiveElement'
PE_FrameFocusRect = ... # type: 'QStyle.PrimitiveElement'
PE_FrameGroupBox = ... # type: 'QStyle.PrimitiveElement'
PE_FrameLineEdit = ... # type: 'QStyle.PrimitiveElement'
PE_FrameMenu = ... # type: 'QStyle.PrimitiveElement'
PE_FrameStatusBar = ... # type: 'QStyle.PrimitiveElement'
PE_FrameTabWidget = ... # type: 'QStyle.PrimitiveElement'
PE_FrameWindow = ... # type: 'QStyle.PrimitiveElement'
PE_FrameButtonBevel = ... # type: 'QStyle.PrimitiveElement'
PE_FrameButtonTool = ... # type: 'QStyle.PrimitiveElement'
PE_FrameTabBarBase = ... # type: 'QStyle.PrimitiveElement'
PE_PanelButtonCommand = ... # type: 'QStyle.PrimitiveElement'
PE_PanelButtonBevel = ... # type: 'QStyle.PrimitiveElement'
PE_PanelButtonTool = ... # type: 'QStyle.PrimitiveElement'
PE_PanelMenuBar = ... # type: 'QStyle.PrimitiveElement'
PE_PanelToolBar = ... # type: 'QStyle.PrimitiveElement'
PE_PanelLineEdit = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorArrowDown = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorArrowLeft = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorArrowRight = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorArrowUp = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorBranch = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorButtonDropDown = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorViewItemCheck = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorCheckBox = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorDockWidgetResizeHandle = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorHeaderArrow = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorMenuCheckMark = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorProgressChunk = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorRadioButton = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorSpinDown = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorSpinMinus = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorSpinPlus = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorSpinUp = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorToolBarHandle = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorToolBarSeparator = ... # type: 'QStyle.PrimitiveElement'
PE_PanelTipLabel = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorTabTear = ... # type: 'QStyle.PrimitiveElement'
PE_PanelScrollAreaCorner = ... # type: 'QStyle.PrimitiveElement'
PE_Widget = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorColumnViewArrow = ... # type: 'QStyle.PrimitiveElement'
PE_FrameStatusBarItem = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorItemViewItemCheck = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorItemViewItemDrop = ... # type: 'QStyle.PrimitiveElement'
PE_PanelItemViewItem = ... # type: 'QStyle.PrimitiveElement'
PE_PanelItemViewRow = ... # type: 'QStyle.PrimitiveElement'
PE_PanelStatusBar = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorTabClose = ... # type: 'QStyle.PrimitiveElement'
PE_PanelMenu = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorTabTearLeft = ... # type: 'QStyle.PrimitiveElement'
PE_IndicatorTabTearRight = ... # type: 'QStyle.PrimitiveElement'
PE_CustomBase = ... # type: 'QStyle.PrimitiveElement'
class StateFlag(int): ...
State_None = ... # type: 'QStyle.StateFlag'
State_Enabled = ... # type: 'QStyle.StateFlag'
State_Raised = ... # type: 'QStyle.StateFlag'
State_Sunken = ... # type: 'QStyle.StateFlag'
State_Off = ... # type: 'QStyle.StateFlag'
State_NoChange = ... # type: 'QStyle.StateFlag'
State_On = ... # type: 'QStyle.StateFlag'
State_DownArrow = ... # type: 'QStyle.StateFlag'
State_Horizontal = ... # type: 'QStyle.StateFlag'
State_HasFocus = ... # type: 'QStyle.StateFlag'
State_Top = ... # type: 'QStyle.StateFlag'
State_Bottom = ... # type: 'QStyle.StateFlag'
State_FocusAtBorder = ... # type: 'QStyle.StateFlag'
State_AutoRaise = ... # type: 'QStyle.StateFlag'
State_MouseOver = ... # type: 'QStyle.StateFlag'
State_UpArrow = ... # type: 'QStyle.StateFlag'
State_Selected = ... # type: 'QStyle.StateFlag'
State_Active = ... # type: 'QStyle.StateFlag'
State_Open = ... # type: 'QStyle.StateFlag'
State_Children = ... # type: 'QStyle.StateFlag'
State_Item = ... # type: 'QStyle.StateFlag'
State_Sibling = ... # type: 'QStyle.StateFlag'
State_Editing = ... # type: 'QStyle.StateFlag'
State_KeyboardFocusChange = ... # type: 'QStyle.StateFlag'
State_ReadOnly = ... # type: 'QStyle.StateFlag'
State_Window = ... # type: 'QStyle.StateFlag'
State_Small = ... # type: 'QStyle.StateFlag'
State_Mini = ... # type: 'QStyle.StateFlag'
class State(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyle.State', 'QStyle.StateFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyle.State') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyle.State': ...
def __int__(self) -> int: ...
class SubControls(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyle.SubControls', 'QStyle.SubControl']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyle.SubControls') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyle.SubControls': ...
def __int__(self) -> int: ...
def __init__(self) -> None: ...
def proxy(self) -> 'QStyle': ...
def combinedLayoutSpacing(self, controls1: typing.Union['QSizePolicy.ControlTypes', 'QSizePolicy.ControlType'], controls2: typing.Union['QSizePolicy.ControlTypes', 'QSizePolicy.ControlType'], orientation: QtCore.Qt.Orientation, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> int: ...
def layoutSpacing(self, control1: 'QSizePolicy.ControlType', control2: 'QSizePolicy.ControlType', orientation: QtCore.Qt.Orientation, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> int: ...
@staticmethod
def alignedRect(direction: QtCore.Qt.LayoutDirection, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag], size: QtCore.QSize, rectangle: QtCore.QRect) -> QtCore.QRect: ...
@staticmethod
def visualAlignment(direction: QtCore.Qt.LayoutDirection, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> QtCore.Qt.Alignment: ...
@staticmethod
def sliderValueFromPosition(min: int, max: int, position: int, span: int, upsideDown: bool = ...) -> int: ...
@staticmethod
def sliderPositionFromValue(min: int, max: int, logicalValue: int, span: int, upsideDown: bool = ...) -> int: ...
@staticmethod
def visualPos(direction: QtCore.Qt.LayoutDirection, boundingRect: QtCore.QRect, logicalPos: QtCore.QPoint) -> QtCore.QPoint: ...
@staticmethod
def visualRect(direction: QtCore.Qt.LayoutDirection, boundingRect: QtCore.QRect, logicalRect: QtCore.QRect) -> QtCore.QRect: ...
def generatedIconPixmap(self, iconMode: QtGui.QIcon.Mode, pixmap: QtGui.QPixmap, opt: 'QStyleOption') -> QtGui.QPixmap: ...
def standardIcon(self, standardIcon: 'QStyle.StandardPixmap', option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> QtGui.QIcon: ...
def standardPixmap(self, standardPixmap: 'QStyle.StandardPixmap', option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> QtGui.QPixmap: ...
def styleHint(self, stylehint: 'QStyle.StyleHint', option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ..., returnData: typing.Optional['QStyleHintReturn'] = ...) -> int: ...
def sizeFromContents(self, ct: 'QStyle.ContentsType', opt: 'QStyleOption', contentsSize: QtCore.QSize, widget: typing.Optional[QWidget] = ...) -> QtCore.QSize: ...
def pixelMetric(self, metric: 'QStyle.PixelMetric', option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> int: ...
def subControlRect(self, cc: 'QStyle.ComplexControl', opt: 'QStyleOptionComplex', sc: 'QStyle.SubControl', widget: typing.Optional[QWidget] = ...) -> QtCore.QRect: ...
def hitTestComplexControl(self, cc: 'QStyle.ComplexControl', opt: 'QStyleOptionComplex', pt: QtCore.QPoint, widget: typing.Optional[QWidget] = ...) -> 'QStyle.SubControl': ...
def drawComplexControl(self, cc: 'QStyle.ComplexControl', opt: 'QStyleOptionComplex', p: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def subElementRect(self, subElement: 'QStyle.SubElement', option: 'QStyleOption', widget: typing.Optional[QWidget] = ...) -> QtCore.QRect: ...
def drawControl(self, element: 'QStyle.ControlElement', opt: 'QStyleOption', p: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def drawPrimitive(self, pe: 'QStyle.PrimitiveElement', opt: 'QStyleOption', p: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def standardPalette(self) -> QtGui.QPalette: ...
def drawItemPixmap(self, painter: QtGui.QPainter, rect: QtCore.QRect, alignment: int, pixmap: QtGui.QPixmap) -> None: ...
def drawItemText(self, painter: QtGui.QPainter, rectangle: QtCore.QRect, alignment: int, palette: QtGui.QPalette, enabled: bool, text: str, textRole: QtGui.QPalette.ColorRole = ...) -> None: ...
def itemPixmapRect(self, r: QtCore.QRect, flags: int, pixmap: QtGui.QPixmap) -> QtCore.QRect: ...
def itemTextRect(self, fm: QtGui.QFontMetrics, r: QtCore.QRect, flags: int, enabled: bool, text: str) -> QtCore.QRect: ...
@typing.overload
def unpolish(self, a0: QWidget) -> None: ...
@typing.overload
def unpolish(self, a0: QApplication) -> None: ...
@typing.overload
def polish(self, a0: QWidget) -> None: ...
@typing.overload
def polish(self, a0: QApplication) -> None: ...
@typing.overload
def polish(self, a0: QtGui.QPalette) -> QtGui.QPalette: ...
class QCommonStyle(QStyle):
def __init__(self) -> None: ...
def layoutSpacing(self, control1: 'QSizePolicy.ControlType', control2: 'QSizePolicy.ControlType', orientation: QtCore.Qt.Orientation, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> int: ...
def standardIcon(self, standardIcon: QStyle.StandardPixmap, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> QtGui.QIcon: ...
def generatedIconPixmap(self, iconMode: QtGui.QIcon.Mode, pixmap: QtGui.QPixmap, opt: 'QStyleOption') -> QtGui.QPixmap: ...
def standardPixmap(self, sp: QStyle.StandardPixmap, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> QtGui.QPixmap: ...
def styleHint(self, sh: QStyle.StyleHint, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ..., returnData: typing.Optional['QStyleHintReturn'] = ...) -> int: ...
def pixelMetric(self, m: QStyle.PixelMetric, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> int: ...
def sizeFromContents(self, ct: QStyle.ContentsType, opt: 'QStyleOption', contentsSize: QtCore.QSize, widget: typing.Optional[QWidget] = ...) -> QtCore.QSize: ...
def subControlRect(self, cc: QStyle.ComplexControl, opt: 'QStyleOptionComplex', sc: QStyle.SubControl, widget: typing.Optional[QWidget] = ...) -> QtCore.QRect: ...
def hitTestComplexControl(self, cc: QStyle.ComplexControl, opt: 'QStyleOptionComplex', pt: QtCore.QPoint, widget: typing.Optional[QWidget] = ...) -> QStyle.SubControl: ...
def drawComplexControl(self, cc: QStyle.ComplexControl, opt: 'QStyleOptionComplex', p: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def subElementRect(self, r: QStyle.SubElement, opt: 'QStyleOption', widget: typing.Optional[QWidget] = ...) -> QtCore.QRect: ...
def drawControl(self, element: QStyle.ControlElement, opt: 'QStyleOption', p: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: 'QStyleOption', p: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def unpolish(self, widget: QWidget) -> None: ...
@typing.overload
def unpolish(self, application: QApplication) -> None: ...
@typing.overload
def polish(self, widget: QWidget) -> None: ...
@typing.overload
def polish(self, app: QApplication) -> None: ...
@typing.overload
def polish(self, a0: QtGui.QPalette) -> QtGui.QPalette: ...
class QCompleter(QtCore.QObject):
class ModelSorting(int): ...
UnsortedModel = ... # type: 'QCompleter.ModelSorting'
CaseSensitivelySortedModel = ... # type: 'QCompleter.ModelSorting'
CaseInsensitivelySortedModel = ... # type: 'QCompleter.ModelSorting'
class CompletionMode(int): ...
PopupCompletion = ... # type: 'QCompleter.CompletionMode'
UnfilteredPopupCompletion = ... # type: 'QCompleter.CompletionMode'
InlineCompletion = ... # type: 'QCompleter.CompletionMode'
@typing.overload
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, model: QtCore.QAbstractItemModel, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, list: typing.Iterable[str], parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def filterMode(self) -> QtCore.Qt.MatchFlags: ...
def setFilterMode(self, filterMode: typing.Union[QtCore.Qt.MatchFlags, QtCore.Qt.MatchFlag]) -> None: ...
def setMaxVisibleItems(self, maxItems: int) -> None: ...
def maxVisibleItems(self) -> int: ...
@typing.overload
def highlighted(self, text: str) -> None: ...
@typing.overload
def highlighted(self, index: QtCore.QModelIndex) -> None: ...
@typing.overload
def activated(self, text: str) -> None: ...
@typing.overload
def activated(self, index: QtCore.QModelIndex) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def eventFilter(self, o: QtCore.QObject, e: QtCore.QEvent) -> bool: ...
def setWrapAround(self, wrap: bool) -> None: ...
def setCompletionPrefix(self, prefix: str) -> None: ...
def complete(self, rect: QtCore.QRect = ...) -> None: ...
def wrapAround(self) -> bool: ...
def splitPath(self, path: str) -> typing.List[str]: ...
def pathFromIndex(self, index: QtCore.QModelIndex) -> str: ...
def completionPrefix(self) -> str: ...
def completionModel(self) -> QtCore.QAbstractItemModel: ...
def currentCompletion(self) -> str: ...
def currentIndex(self) -> QtCore.QModelIndex: ...
def currentRow(self) -> int: ...
def setCurrentRow(self, row: int) -> bool: ...
def completionCount(self) -> int: ...
def completionRole(self) -> int: ...
def setCompletionRole(self, role: int) -> None: ...
def completionColumn(self) -> int: ...
def setCompletionColumn(self, column: int) -> None: ...
def modelSorting(self) -> 'QCompleter.ModelSorting': ...
def setModelSorting(self, sorting: 'QCompleter.ModelSorting') -> None: ...
def caseSensitivity(self) -> QtCore.Qt.CaseSensitivity: ...
def setCaseSensitivity(self, caseSensitivity: QtCore.Qt.CaseSensitivity) -> None: ...
def setPopup(self, popup: QAbstractItemView) -> None: ...
def popup(self) -> QAbstractItemView: ...
def completionMode(self) -> 'QCompleter.CompletionMode': ...
def setCompletionMode(self, mode: 'QCompleter.CompletionMode') -> None: ...
def model(self) -> QtCore.QAbstractItemModel: ...
def setModel(self, c: QtCore.QAbstractItemModel) -> None: ...
def widget(self) -> QWidget: ...
def setWidget(self, widget: QWidget) -> None: ...
class QDataWidgetMapper(QtCore.QObject):
class SubmitPolicy(int): ...
AutoSubmit = ... # type: 'QDataWidgetMapper.SubmitPolicy'
ManualSubmit = ... # type: 'QDataWidgetMapper.SubmitPolicy'
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def currentIndexChanged(self, index: int) -> None: ...
def toPrevious(self) -> None: ...
def toNext(self) -> None: ...
def toLast(self) -> None: ...
def toFirst(self) -> None: ...
def submit(self) -> bool: ...
def setCurrentModelIndex(self, index: QtCore.QModelIndex) -> None: ...
def setCurrentIndex(self, index: int) -> None: ...
def revert(self) -> None: ...
def currentIndex(self) -> int: ...
def clearMapping(self) -> None: ...
def mappedWidgetAt(self, section: int) -> QWidget: ...
def mappedSection(self, widget: QWidget) -> int: ...
def mappedPropertyName(self, widget: QWidget) -> QtCore.QByteArray: ...
def removeMapping(self, widget: QWidget) -> None: ...
@typing.overload
def addMapping(self, widget: QWidget, section: int) -> None: ...
@typing.overload
def addMapping(self, widget: QWidget, section: int, propertyName: typing.Union[QtCore.QByteArray, bytes, bytearray]) -> None: ...
def submitPolicy(self) -> 'QDataWidgetMapper.SubmitPolicy': ...
def setSubmitPolicy(self, policy: 'QDataWidgetMapper.SubmitPolicy') -> None: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def setOrientation(self, aOrientation: QtCore.Qt.Orientation) -> None: ...
def rootIndex(self) -> QtCore.QModelIndex: ...
def setRootIndex(self, index: QtCore.QModelIndex) -> None: ...
def itemDelegate(self) -> QAbstractItemDelegate: ...
def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ...
def model(self) -> QtCore.QAbstractItemModel: ...
def setModel(self, model: QtCore.QAbstractItemModel) -> None: ...
class QDateTimeEdit(QAbstractSpinBox):
class Section(int): ...
NoSection = ... # type: 'QDateTimeEdit.Section'
AmPmSection = ... # type: 'QDateTimeEdit.Section'
MSecSection = ... # type: 'QDateTimeEdit.Section'
SecondSection = ... # type: 'QDateTimeEdit.Section'
MinuteSection = ... # type: 'QDateTimeEdit.Section'
HourSection = ... # type: 'QDateTimeEdit.Section'
DaySection = ... # type: 'QDateTimeEdit.Section'
MonthSection = ... # type: 'QDateTimeEdit.Section'
YearSection = ... # type: 'QDateTimeEdit.Section'
TimeSections_Mask = ... # type: 'QDateTimeEdit.Section'
DateSections_Mask = ... # type: 'QDateTimeEdit.Section'
class Sections(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QDateTimeEdit.Sections', 'QDateTimeEdit.Section']) -> None: ...
@typing.overload
def __init__(self, a0: 'QDateTimeEdit.Sections') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QDateTimeEdit.Sections': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, datetime: typing.Union[QtCore.QDateTime, datetime.datetime], parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, date: typing.Union[QtCore.QDate, datetime.date], parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, time: typing.Union[QtCore.QTime, datetime.time], parent: typing.Optional[QWidget] = ...) -> None: ...
def setTimeSpec(self, spec: QtCore.Qt.TimeSpec) -> None: ...
def timeSpec(self) -> QtCore.Qt.TimeSpec: ...
def setCalendarWidget(self, calendarWidget: QCalendarWidget) -> None: ...
def calendarWidget(self) -> QCalendarWidget: ...
def setDateTimeRange(self, min: typing.Union[QtCore.QDateTime, datetime.datetime], max: typing.Union[QtCore.QDateTime, datetime.datetime]) -> None: ...
def setMaximumDateTime(self, dt: typing.Union[QtCore.QDateTime, datetime.datetime]) -> None: ...
def clearMaximumDateTime(self) -> None: ...
def maximumDateTime(self) -> QtCore.QDateTime: ...
def setMinimumDateTime(self, dt: typing.Union[QtCore.QDateTime, datetime.datetime]) -> None: ...
def clearMinimumDateTime(self) -> None: ...
def minimumDateTime(self) -> QtCore.QDateTime: ...
def stepEnabled(self) -> QAbstractSpinBox.StepEnabled: ...
def textFromDateTime(self, dt: typing.Union[QtCore.QDateTime, datetime.datetime]) -> str: ...
def dateTimeFromText(self, text: str) -> QtCore.QDateTime: ...
def fixup(self, input: str) -> str: ...
def validate(self, input: str, pos: int) -> typing.Tuple[QtGui.QValidator.State, str, int]: ...
def paintEvent(self, event: QtGui.QPaintEvent) -> None: ...
def mousePressEvent(self, event: QtGui.QMouseEvent) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
def wheelEvent(self, e: QtGui.QWheelEvent) -> None: ...
def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionSpinBox') -> None: ...
def setTime(self, time: typing.Union[QtCore.QTime, datetime.time]) -> None: ...
def setDate(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def setDateTime(self, dateTime: typing.Union[QtCore.QDateTime, datetime.datetime]) -> None: ...
def dateChanged(self, date: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def timeChanged(self, date: typing.Union[QtCore.QTime, datetime.time]) -> None: ...
def dateTimeChanged(self, date: typing.Union[QtCore.QDateTime, datetime.datetime]) -> None: ...
def sectionCount(self) -> int: ...
def setCurrentSectionIndex(self, index: int) -> None: ...
def currentSectionIndex(self) -> int: ...
def sectionAt(self, index: int) -> 'QDateTimeEdit.Section': ...
def event(self, e: QtCore.QEvent) -> bool: ...
def stepBy(self, steps: int) -> None: ...
def clear(self) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def setSelectedSection(self, section: 'QDateTimeEdit.Section') -> None: ...
def setCalendarPopup(self, enable: bool) -> None: ...
def calendarPopup(self) -> bool: ...
def setDisplayFormat(self, format: str) -> None: ...
def displayFormat(self) -> str: ...
def sectionText(self, s: 'QDateTimeEdit.Section') -> str: ...
def setCurrentSection(self, section: 'QDateTimeEdit.Section') -> None: ...
def currentSection(self) -> 'QDateTimeEdit.Section': ...
def displayedSections(self) -> 'QDateTimeEdit.Sections': ...
def setTimeRange(self, min: typing.Union[QtCore.QTime, datetime.time], max: typing.Union[QtCore.QTime, datetime.time]) -> None: ...
def clearMaximumTime(self) -> None: ...
def setMaximumTime(self, max: typing.Union[QtCore.QTime, datetime.time]) -> None: ...
def maximumTime(self) -> QtCore.QTime: ...
def clearMinimumTime(self) -> None: ...
def setMinimumTime(self, min: typing.Union[QtCore.QTime, datetime.time]) -> None: ...
def minimumTime(self) -> QtCore.QTime: ...
def setDateRange(self, min: typing.Union[QtCore.QDate, datetime.date], max: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def clearMaximumDate(self) -> None: ...
def setMaximumDate(self, max: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def maximumDate(self) -> QtCore.QDate: ...
def clearMinimumDate(self) -> None: ...
def setMinimumDate(self, min: typing.Union[QtCore.QDate, datetime.date]) -> None: ...
def minimumDate(self) -> QtCore.QDate: ...
def time(self) -> QtCore.QTime: ...
def date(self) -> QtCore.QDate: ...
def dateTime(self) -> QtCore.QDateTime: ...
class QTimeEdit(QDateTimeEdit):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, time: typing.Union[QtCore.QTime, datetime.time], parent: typing.Optional[QWidget] = ...) -> None: ...
class QDateEdit(QDateTimeEdit):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, date: typing.Union[QtCore.QDate, datetime.date], parent: typing.Optional[QWidget] = ...) -> None: ...
class QDesktopWidget(QWidget):
def __init__(self) -> None: ...
def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
def primaryScreenChanged(self) -> None: ...
def screenCountChanged(self, a0: int) -> None: ...
def workAreaResized(self, a0: int) -> None: ...
def resized(self, a0: int) -> None: ...
@typing.overload
def availableGeometry(self, screen: int = ...) -> QtCore.QRect: ...
@typing.overload
def availableGeometry(self, widget: QWidget) -> QtCore.QRect: ...
@typing.overload
def availableGeometry(self, point: QtCore.QPoint) -> QtCore.QRect: ...
@typing.overload
def screenGeometry(self, screen: int = ...) -> QtCore.QRect: ...
@typing.overload
def screenGeometry(self, widget: QWidget) -> QtCore.QRect: ...
@typing.overload
def screenGeometry(self, point: QtCore.QPoint) -> QtCore.QRect: ...
def screenCount(self) -> int: ...
def screen(self, screen: int = ...) -> QWidget: ...
@typing.overload
def screenNumber(self, widget: typing.Optional[QWidget] = ...) -> int: ...
@typing.overload
def screenNumber(self, a0: QtCore.QPoint) -> int: ...
def primaryScreen(self) -> int: ...
def isVirtualDesktop(self) -> bool: ...
class QDial(QAbstractSlider):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def sliderChange(self, change: QAbstractSlider.SliderChange) -> None: ...
def mouseMoveEvent(self, me: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, me: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, me: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, pe: QtGui.QPaintEvent) -> None: ...
def resizeEvent(self, re: QtGui.QResizeEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: 'QStyleOptionSlider') -> None: ...
def setWrapping(self, on: bool) -> None: ...
def setNotchesVisible(self, visible: bool) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def notchesVisible(self) -> bool: ...
def notchTarget(self) -> float: ...
def setNotchTarget(self, target: float) -> None: ...
def notchSize(self) -> int: ...
def wrapping(self) -> bool: ...
class QDialogButtonBox(QWidget):
class StandardButton(int): ...
NoButton = ... # type: 'QDialogButtonBox.StandardButton'
Ok = ... # type: 'QDialogButtonBox.StandardButton'
Save = ... # type: 'QDialogButtonBox.StandardButton'
SaveAll = ... # type: 'QDialogButtonBox.StandardButton'
Open = ... # type: 'QDialogButtonBox.StandardButton'
Yes = ... # type: 'QDialogButtonBox.StandardButton'
YesToAll = ... # type: 'QDialogButtonBox.StandardButton'
No = ... # type: 'QDialogButtonBox.StandardButton'
NoToAll = ... # type: 'QDialogButtonBox.StandardButton'
Abort = ... # type: 'QDialogButtonBox.StandardButton'
Retry = ... # type: 'QDialogButtonBox.StandardButton'
Ignore = ... # type: 'QDialogButtonBox.StandardButton'
Close = ... # type: 'QDialogButtonBox.StandardButton'
Cancel = ... # type: 'QDialogButtonBox.StandardButton'
Discard = ... # type: 'QDialogButtonBox.StandardButton'
Help = ... # type: 'QDialogButtonBox.StandardButton'
Apply = ... # type: 'QDialogButtonBox.StandardButton'
Reset = ... # type: 'QDialogButtonBox.StandardButton'
RestoreDefaults = ... # type: 'QDialogButtonBox.StandardButton'
class ButtonRole(int): ...
InvalidRole = ... # type: 'QDialogButtonBox.ButtonRole'
AcceptRole = ... # type: 'QDialogButtonBox.ButtonRole'
RejectRole = ... # type: 'QDialogButtonBox.ButtonRole'
DestructiveRole = ... # type: 'QDialogButtonBox.ButtonRole'
ActionRole = ... # type: 'QDialogButtonBox.ButtonRole'
HelpRole = ... # type: 'QDialogButtonBox.ButtonRole'
YesRole = ... # type: 'QDialogButtonBox.ButtonRole'
NoRole = ... # type: 'QDialogButtonBox.ButtonRole'
ResetRole = ... # type: 'QDialogButtonBox.ButtonRole'
ApplyRole = ... # type: 'QDialogButtonBox.ButtonRole'
class ButtonLayout(int): ...
WinLayout = ... # type: 'QDialogButtonBox.ButtonLayout'
MacLayout = ... # type: 'QDialogButtonBox.ButtonLayout'
KdeLayout = ... # type: 'QDialogButtonBox.ButtonLayout'
GnomeLayout = ... # type: 'QDialogButtonBox.ButtonLayout'
AndroidLayout = ... # type: 'QDialogButtonBox.ButtonLayout'
class StandardButtons(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QDialogButtonBox.StandardButtons', 'QDialogButtonBox.StandardButton']) -> None: ...
@typing.overload
def __init__(self, a0: 'QDialogButtonBox.StandardButtons') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QDialogButtonBox.StandardButtons': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, orientation: QtCore.Qt.Orientation, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, buttons: typing.Union['QDialogButtonBox.StandardButtons', 'QDialogButtonBox.StandardButton'], parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, buttons: typing.Union['QDialogButtonBox.StandardButtons', 'QDialogButtonBox.StandardButton'], orientation: QtCore.Qt.Orientation, parent: typing.Optional[QWidget] = ...) -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def changeEvent(self, event: QtCore.QEvent) -> None: ...
def rejected(self) -> None: ...
def helpRequested(self) -> None: ...
def clicked(self, button: QAbstractButton) -> None: ...
def accepted(self) -> None: ...
def centerButtons(self) -> bool: ...
def setCenterButtons(self, center: bool) -> None: ...
def button(self, which: 'QDialogButtonBox.StandardButton') -> QPushButton: ...
def standardButton(self, button: QAbstractButton) -> 'QDialogButtonBox.StandardButton': ...
def standardButtons(self) -> 'QDialogButtonBox.StandardButtons': ...
def setStandardButtons(self, buttons: typing.Union['QDialogButtonBox.StandardButtons', 'QDialogButtonBox.StandardButton']) -> None: ...
def buttonRole(self, button: QAbstractButton) -> 'QDialogButtonBox.ButtonRole': ...
def buttons(self) -> typing.List[QAbstractButton]: ...
def clear(self) -> None: ...
def removeButton(self, button: QAbstractButton) -> None: ...
@typing.overload
def addButton(self, button: QAbstractButton, role: 'QDialogButtonBox.ButtonRole') -> None: ...
@typing.overload
def addButton(self, text: str, role: 'QDialogButtonBox.ButtonRole') -> QPushButton: ...
@typing.overload
def addButton(self, button: 'QDialogButtonBox.StandardButton') -> QPushButton: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def setOrientation(self, orientation: QtCore.Qt.Orientation) -> None: ...
class QDirModel(QtCore.QAbstractItemModel):
class Roles(int): ...
FileIconRole = ... # type: 'QDirModel.Roles'
FilePathRole = ... # type: 'QDirModel.Roles'
FileNameRole = ... # type: 'QDirModel.Roles'
@typing.overload
def __init__(self, nameFilters: typing.Iterable[str], filters: typing.Union[QtCore.QDir.Filters, QtCore.QDir.Filter], sort: typing.Union[QtCore.QDir.SortFlags, QtCore.QDir.SortFlag], parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def fileInfo(self, index: QtCore.QModelIndex) -> QtCore.QFileInfo: ...
def fileIcon(self, index: QtCore.QModelIndex) -> QtGui.QIcon: ...
def fileName(self, index: QtCore.QModelIndex) -> str: ...
def filePath(self, index: QtCore.QModelIndex) -> str: ...
def remove(self, index: QtCore.QModelIndex) -> bool: ...
def rmdir(self, index: QtCore.QModelIndex) -> bool: ...
def mkdir(self, parent: QtCore.QModelIndex, name: str) -> QtCore.QModelIndex: ...
def isDir(self, index: QtCore.QModelIndex) -> bool: ...
def refresh(self, parent: QtCore.QModelIndex = ...) -> None: ...
def lazyChildCount(self) -> bool: ...
def setLazyChildCount(self, enable: bool) -> None: ...
def isReadOnly(self) -> bool: ...
def setReadOnly(self, enable: bool) -> None: ...
def resolveSymlinks(self) -> bool: ...
def setResolveSymlinks(self, enable: bool) -> None: ...
def sorting(self) -> QtCore.QDir.SortFlags: ...
def setSorting(self, sort: typing.Union[QtCore.QDir.SortFlags, QtCore.QDir.SortFlag]) -> None: ...
def filter(self) -> QtCore.QDir.Filters: ...
def setFilter(self, filters: typing.Union[QtCore.QDir.Filters, QtCore.QDir.Filter]) -> None: ...
def nameFilters(self) -> typing.List[str]: ...
def setNameFilters(self, filters: typing.Iterable[str]) -> None: ...
def iconProvider(self) -> 'QFileIconProvider': ...
def setIconProvider(self, provider: 'QFileIconProvider') -> None: ...
def supportedDropActions(self) -> QtCore.Qt.DropActions: ...
def dropMimeData(self, data: QtCore.QMimeData, action: QtCore.Qt.DropAction, row: int, column: int, parent: QtCore.QModelIndex) -> bool: ...
def mimeData(self, indexes: typing.Iterable[QtCore.QModelIndex]) -> QtCore.QMimeData: ...
def mimeTypes(self) -> typing.List[str]: ...
def sort(self, column: int, order: QtCore.Qt.SortOrder = ...) -> None: ...
def flags(self, index: QtCore.QModelIndex) -> QtCore.Qt.ItemFlags: ...
def hasChildren(self, parent: QtCore.QModelIndex = ...) -> bool: ...
def headerData(self, section: int, orientation: QtCore.Qt.Orientation, role: int = ...) -> typing.Any: ...
def setData(self, index: QtCore.QModelIndex, value: typing.Any, role: int = ...) -> bool: ...
def data(self, index: QtCore.QModelIndex, role: int = ...) -> typing.Any: ...
def columnCount(self, parent: QtCore.QModelIndex = ...) -> int: ...
def rowCount(self, parent: QtCore.QModelIndex = ...) -> int: ...
@typing.overload
def parent(self, child: QtCore.QModelIndex) -> QtCore.QModelIndex: ...
@typing.overload
def parent(self) -> QtCore.QObject: ...
@typing.overload
def index(self, row: int, column: int, parent: QtCore.QModelIndex = ...) -> QtCore.QModelIndex: ...
@typing.overload
def index(self, path: str, column: int = ...) -> QtCore.QModelIndex: ...
class QDockWidget(QWidget):
class DockWidgetFeature(int): ...
DockWidgetClosable = ... # type: 'QDockWidget.DockWidgetFeature'
DockWidgetMovable = ... # type: 'QDockWidget.DockWidgetFeature'
DockWidgetFloatable = ... # type: 'QDockWidget.DockWidgetFeature'
DockWidgetVerticalTitleBar = ... # type: 'QDockWidget.DockWidgetFeature'
AllDockWidgetFeatures = ... # type: 'QDockWidget.DockWidgetFeature'
NoDockWidgetFeatures = ... # type: 'QDockWidget.DockWidgetFeature'
class DockWidgetFeatures(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QDockWidget.DockWidgetFeatures', 'QDockWidget.DockWidgetFeature']) -> None: ...
@typing.overload
def __init__(self, a0: 'QDockWidget.DockWidgetFeatures') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QDockWidget.DockWidgetFeatures': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, title: str, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def paintEvent(self, event: QtGui.QPaintEvent) -> None: ...
def closeEvent(self, event: QtGui.QCloseEvent) -> None: ...
def changeEvent(self, event: QtCore.QEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionDockWidget') -> None: ...
def visibilityChanged(self, visible: bool) -> None: ...
def dockLocationChanged(self, area: QtCore.Qt.DockWidgetArea) -> None: ...
def allowedAreasChanged(self, allowedAreas: typing.Union[QtCore.Qt.DockWidgetAreas, QtCore.Qt.DockWidgetArea]) -> None: ...
def topLevelChanged(self, topLevel: bool) -> None: ...
def featuresChanged(self, features: typing.Union['QDockWidget.DockWidgetFeatures', 'QDockWidget.DockWidgetFeature']) -> None: ...
def titleBarWidget(self) -> QWidget: ...
def setTitleBarWidget(self, widget: QWidget) -> None: ...
def toggleViewAction(self) -> QAction: ...
def isAreaAllowed(self, area: QtCore.Qt.DockWidgetArea) -> bool: ...
def allowedAreas(self) -> QtCore.Qt.DockWidgetAreas: ...
def setAllowedAreas(self, areas: typing.Union[QtCore.Qt.DockWidgetAreas, QtCore.Qt.DockWidgetArea]) -> None: ...
def isFloating(self) -> bool: ...
def setFloating(self, floating: bool) -> None: ...
def features(self) -> 'QDockWidget.DockWidgetFeatures': ...
def setFeatures(self, features: typing.Union['QDockWidget.DockWidgetFeatures', 'QDockWidget.DockWidgetFeature']) -> None: ...
def setWidget(self, widget: QWidget) -> None: ...
def widget(self) -> QWidget: ...
class QErrorMessage(QDialog):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def done(self, a0: int) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
@typing.overload
def showMessage(self, message: str) -> None: ...
@typing.overload
def showMessage(self, message: str, type: str) -> None: ...
@staticmethod
def qtHandler() -> 'QErrorMessage': ...
class QFileDialog(QDialog):
class Option(int): ...
ShowDirsOnly = ... # type: 'QFileDialog.Option'
DontResolveSymlinks = ... # type: 'QFileDialog.Option'
DontConfirmOverwrite = ... # type: 'QFileDialog.Option'
DontUseSheet = ... # type: 'QFileDialog.Option'
DontUseNativeDialog = ... # type: 'QFileDialog.Option'
ReadOnly = ... # type: 'QFileDialog.Option'
HideNameFilterDetails = ... # type: 'QFileDialog.Option'
DontUseCustomDirectoryIcons = ... # type: 'QFileDialog.Option'
class DialogLabel(int): ...
LookIn = ... # type: 'QFileDialog.DialogLabel'
FileName = ... # type: 'QFileDialog.DialogLabel'
FileType = ... # type: 'QFileDialog.DialogLabel'
Accept = ... # type: 'QFileDialog.DialogLabel'
Reject = ... # type: 'QFileDialog.DialogLabel'
class AcceptMode(int): ...
AcceptOpen = ... # type: 'QFileDialog.AcceptMode'
AcceptSave = ... # type: 'QFileDialog.AcceptMode'
class FileMode(int): ...
AnyFile = ... # type: 'QFileDialog.FileMode'
ExistingFile = ... # type: 'QFileDialog.FileMode'
Directory = ... # type: 'QFileDialog.FileMode'
ExistingFiles = ... # type: 'QFileDialog.FileMode'
DirectoryOnly = ... # type: 'QFileDialog.FileMode'
class ViewMode(int): ...
Detail = ... # type: 'QFileDialog.ViewMode'
List = ... # type: 'QFileDialog.ViewMode'
class Options(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QFileDialog.Options', 'QFileDialog.Option']) -> None: ...
@typing.overload
def __init__(self, a0: 'QFileDialog.Options') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QFileDialog.Options': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: QWidget, f: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType]) -> None: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: str = ..., filter: str = ...) -> None: ...
def selectedMimeTypeFilter(self) -> str: ...
def supportedSchemes(self) -> typing.List[str]: ...
def setSupportedSchemes(self, schemes: typing.Iterable[str]) -> None: ...
@staticmethod
def getSaveFileUrl(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: QtCore.QUrl = ..., filter: str = ..., initialFilter: str = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ..., supportedSchemes: typing.Iterable[str] = ...) -> typing.Tuple[QtCore.QUrl, str]: ...
@staticmethod
def getOpenFileUrls(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: QtCore.QUrl = ..., filter: str = ..., initialFilter: str = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ..., supportedSchemes: typing.Iterable[str] = ...) -> typing.Tuple[typing.List[QtCore.QUrl], str]: ...
@staticmethod
def getOpenFileUrl(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: QtCore.QUrl = ..., filter: str = ..., initialFilter: str = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ..., supportedSchemes: typing.Iterable[str] = ...) -> typing.Tuple[QtCore.QUrl, str]: ...
def directoryUrlEntered(self, directory: QtCore.QUrl) -> None: ...
def currentUrlChanged(self, url: QtCore.QUrl) -> None: ...
def urlsSelected(self, urls: typing.Iterable[QtCore.QUrl]) -> None: ...
def urlSelected(self, url: QtCore.QUrl) -> None: ...
def selectMimeTypeFilter(self, filter: str) -> None: ...
def mimeTypeFilters(self) -> typing.List[str]: ...
def setMimeTypeFilters(self, filters: typing.Iterable[str]) -> None: ...
def selectedUrls(self) -> typing.List[QtCore.QUrl]: ...
def selectUrl(self, url: QtCore.QUrl) -> None: ...
def directoryUrl(self) -> QtCore.QUrl: ...
def setDirectoryUrl(self, directory: QtCore.QUrl) -> None: ...
def setVisible(self, visible: bool) -> None: ...
@typing.overload
def open(self) -> None: ...
@typing.overload
def open(self, slot: PYQT_SLOT) -> None: ...
def options(self) -> 'QFileDialog.Options': ...
def setOptions(self, options: typing.Union['QFileDialog.Options', 'QFileDialog.Option']) -> None: ...
def testOption(self, option: 'QFileDialog.Option') -> bool: ...
def setOption(self, option: 'QFileDialog.Option', on: bool = ...) -> None: ...
def setFilter(self, filters: typing.Union[QtCore.QDir.Filters, QtCore.QDir.Filter]) -> None: ...
def filter(self) -> QtCore.QDir.Filters: ...
def selectedNameFilter(self) -> str: ...
def selectNameFilter(self, filter: str) -> None: ...
def nameFilters(self) -> typing.List[str]: ...
def setNameFilters(self, filters: typing.Iterable[str]) -> None: ...
def setNameFilter(self, filter: str) -> None: ...
def proxyModel(self) -> QtCore.QAbstractProxyModel: ...
def setProxyModel(self, model: QtCore.QAbstractProxyModel) -> None: ...
def restoreState(self, state: typing.Union[QtCore.QByteArray, bytes, bytearray]) -> bool: ...
def saveState(self) -> QtCore.QByteArray: ...
def sidebarUrls(self) -> typing.List[QtCore.QUrl]: ...
def setSidebarUrls(self, urls: typing.Iterable[QtCore.QUrl]) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def accept(self) -> None: ...
def done(self, result: int) -> None: ...
@staticmethod
def getSaveFileName(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: str = ..., filter: str = ..., initialFilter: str = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ...) -> typing.Tuple[str, str]: ...
@staticmethod
def getOpenFileNames(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: str = ..., filter: str = ..., initialFilter: str = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ...) -> typing.Tuple[typing.List[str], str]: ...
@staticmethod
def getOpenFileName(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: str = ..., filter: str = ..., initialFilter: str = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ...) -> typing.Tuple[str, str]: ...
@staticmethod
def getExistingDirectoryUrl(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: QtCore.QUrl = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ..., supportedSchemes: typing.Iterable[str] = ...) -> QtCore.QUrl: ...
@staticmethod
def getExistingDirectory(parent: typing.Optional[QWidget] = ..., caption: str = ..., directory: str = ..., options: typing.Union['QFileDialog.Options', 'QFileDialog.Option'] = ...) -> str: ...
def fileSelected(self, file: str) -> None: ...
def filterSelected(self, filter: str) -> None: ...
def filesSelected(self, files: typing.Iterable[str]) -> None: ...
def directoryEntered(self, directory: str) -> None: ...
def currentChanged(self, path: str) -> None: ...
def labelText(self, label: 'QFileDialog.DialogLabel') -> str: ...
def setLabelText(self, label: 'QFileDialog.DialogLabel', text: str) -> None: ...
def iconProvider(self) -> 'QFileIconProvider': ...
def setIconProvider(self, provider: 'QFileIconProvider') -> None: ...
def itemDelegate(self) -> QAbstractItemDelegate: ...
def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ...
def history(self) -> typing.List[str]: ...
def setHistory(self, paths: typing.Iterable[str]) -> None: ...
def defaultSuffix(self) -> str: ...
def setDefaultSuffix(self, suffix: str) -> None: ...
def acceptMode(self) -> 'QFileDialog.AcceptMode': ...
def setAcceptMode(self, mode: 'QFileDialog.AcceptMode') -> None: ...
def fileMode(self) -> 'QFileDialog.FileMode': ...
def setFileMode(self, mode: 'QFileDialog.FileMode') -> None: ...
def viewMode(self) -> 'QFileDialog.ViewMode': ...
def setViewMode(self, mode: 'QFileDialog.ViewMode') -> None: ...
def selectedFiles(self) -> typing.List[str]: ...
def selectFile(self, filename: str) -> None: ...
def directory(self) -> QtCore.QDir: ...
@typing.overload
def setDirectory(self, directory: str) -> None: ...
@typing.overload
def setDirectory(self, adirectory: QtCore.QDir) -> None: ...
class QFileIconProvider(sip.simplewrapper):
class Option(int): ...
DontUseCustomDirectoryIcons = ... # type: 'QFileIconProvider.Option'
class IconType(int): ...
Computer = ... # type: 'QFileIconProvider.IconType'
Desktop = ... # type: 'QFileIconProvider.IconType'
Trashcan = ... # type: 'QFileIconProvider.IconType'
Network = ... # type: 'QFileIconProvider.IconType'
Drive = ... # type: 'QFileIconProvider.IconType'
Folder = ... # type: 'QFileIconProvider.IconType'
File = ... # type: 'QFileIconProvider.IconType'
class Options(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QFileIconProvider.Options', 'QFileIconProvider.Option']) -> None: ...
@typing.overload
def __init__(self, a0: 'QFileIconProvider.Options') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QFileIconProvider.Options': ...
def __int__(self) -> int: ...
def __init__(self) -> None: ...
def options(self) -> 'QFileIconProvider.Options': ...
def setOptions(self, options: typing.Union['QFileIconProvider.Options', 'QFileIconProvider.Option']) -> None: ...
def type(self, info: QtCore.QFileInfo) -> str: ...
@typing.overload
def icon(self, type: 'QFileIconProvider.IconType') -> QtGui.QIcon: ...
@typing.overload
def icon(self, info: QtCore.QFileInfo) -> QtGui.QIcon: ...
class QFileSystemModel(QtCore.QAbstractItemModel):
class Roles(int): ...
FileIconRole = ... # type: 'QFileSystemModel.Roles'
FilePathRole = ... # type: 'QFileSystemModel.Roles'
FileNameRole = ... # type: 'QFileSystemModel.Roles'
FilePermissions = ... # type: 'QFileSystemModel.Roles'
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def sibling(self, row: int, column: int, idx: QtCore.QModelIndex) -> QtCore.QModelIndex: ...
def timerEvent(self, event: QtCore.QTimerEvent) -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def directoryLoaded(self, path: str) -> None: ...
def rootPathChanged(self, newPath: str) -> None: ...
def fileRenamed(self, path: str, oldName: str, newName: str) -> None: ...
def remove(self, index: QtCore.QModelIndex) -> bool: ...
def fileInfo(self, aindex: QtCore.QModelIndex) -> QtCore.QFileInfo: ...
def fileIcon(self, aindex: QtCore.QModelIndex) -> QtGui.QIcon: ...
def fileName(self, aindex: QtCore.QModelIndex) -> str: ...
def rmdir(self, index: QtCore.QModelIndex) -> bool: ...
def permissions(self, index: QtCore.QModelIndex) -> QtCore.QFileDevice.Permissions: ...
def mkdir(self, parent: QtCore.QModelIndex, name: str) -> QtCore.QModelIndex: ...
def lastModified(self, index: QtCore.QModelIndex) -> QtCore.QDateTime: ...
def type(self, index: QtCore.QModelIndex) -> str: ...
def size(self, index: QtCore.QModelIndex) -> int: ...
def isDir(self, index: QtCore.QModelIndex) -> bool: ...
def filePath(self, index: QtCore.QModelIndex) -> str: ...
def nameFilters(self) -> typing.List[str]: ...
def setNameFilters(self, filters: typing.Iterable[str]) -> None: ...
def nameFilterDisables(self) -> bool: ...
def setNameFilterDisables(self, enable: bool) -> None: ...
def isReadOnly(self) -> bool: ...
def setReadOnly(self, enable: bool) -> None: ...
def resolveSymlinks(self) -> bool: ...
def setResolveSymlinks(self, enable: bool) -> None: ...
def filter(self) -> QtCore.QDir.Filters: ...
def setFilter(self, filters: typing.Union[QtCore.QDir.Filters, QtCore.QDir.Filter]) -> None: ...
def iconProvider(self) -> QFileIconProvider: ...
def setIconProvider(self, provider: QFileIconProvider) -> None: ...
def rootDirectory(self) -> QtCore.QDir: ...
def rootPath(self) -> str: ...
def setRootPath(self, path: str) -> QtCore.QModelIndex: ...
def supportedDropActions(self) -> QtCore.Qt.DropActions: ...
def dropMimeData(self, data: QtCore.QMimeData, action: QtCore.Qt.DropAction, row: int, column: int, parent: QtCore.QModelIndex) -> bool: ...
def mimeData(self, indexes: typing.Iterable[QtCore.QModelIndex]) -> QtCore.QMimeData: ...
def mimeTypes(self) -> typing.List[str]: ...
def sort(self, column: int, order: QtCore.Qt.SortOrder = ...) -> None: ...
def flags(self, index: QtCore.QModelIndex) -> QtCore.Qt.ItemFlags: ...
def headerData(self, section: int, orientation: QtCore.Qt.Orientation, role: int = ...) -> typing.Any: ...
def setData(self, idx: QtCore.QModelIndex, value: typing.Any, role: int = ...) -> bool: ...
def data(self, index: QtCore.QModelIndex, role: int = ...) -> typing.Any: ...
def myComputer(self, role: int = ...) -> typing.Any: ...
def columnCount(self, parent: QtCore.QModelIndex = ...) -> int: ...
def rowCount(self, parent: QtCore.QModelIndex = ...) -> int: ...
def fetchMore(self, parent: QtCore.QModelIndex) -> None: ...
def canFetchMore(self, parent: QtCore.QModelIndex) -> bool: ...
def hasChildren(self, parent: QtCore.QModelIndex = ...) -> bool: ...
def parent(self, child: QtCore.QModelIndex) -> QtCore.QModelIndex: ...
@typing.overload
def index(self, row: int, column: int, parent: QtCore.QModelIndex = ...) -> QtCore.QModelIndex: ...
@typing.overload
def index(self, path: str, column: int = ...) -> QtCore.QModelIndex: ...
class QFocusFrame(QWidget):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def eventFilter(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: 'QStyleOption') -> None: ...
def widget(self) -> QWidget: ...
def setWidget(self, widget: QWidget) -> None: ...
class QFontComboBox(QComboBox):
class FontFilter(int): ...
AllFonts = ... # type: 'QFontComboBox.FontFilter'
ScalableFonts = ... # type: 'QFontComboBox.FontFilter'
NonScalableFonts = ... # type: 'QFontComboBox.FontFilter'
MonospacedFonts = ... # type: 'QFontComboBox.FontFilter'
ProportionalFonts = ... # type: 'QFontComboBox.FontFilter'
class FontFilters(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QFontComboBox.FontFilters', 'QFontComboBox.FontFilter']) -> None: ...
@typing.overload
def __init__(self, a0: 'QFontComboBox.FontFilters') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QFontComboBox.FontFilters': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def currentFontChanged(self, f: QtGui.QFont) -> None: ...
def setCurrentFont(self, f: QtGui.QFont) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def currentFont(self) -> QtGui.QFont: ...
def setFontFilters(self, filters: typing.Union['QFontComboBox.FontFilters', 'QFontComboBox.FontFilter']) -> None: ...
def writingSystem(self) -> QtGui.QFontDatabase.WritingSystem: ...
def setWritingSystem(self, a0: QtGui.QFontDatabase.WritingSystem) -> None: ...
def fontFilters(self) -> 'QFontComboBox.FontFilters': ...
class QFontDialog(QDialog):
class FontDialogOption(int): ...
NoButtons = ... # type: 'QFontDialog.FontDialogOption'
DontUseNativeDialog = ... # type: 'QFontDialog.FontDialogOption'
ScalableFonts = ... # type: 'QFontDialog.FontDialogOption'
NonScalableFonts = ... # type: 'QFontDialog.FontDialogOption'
MonospacedFonts = ... # type: 'QFontDialog.FontDialogOption'
ProportionalFonts = ... # type: 'QFontDialog.FontDialogOption'
class FontDialogOptions(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QFontDialog.FontDialogOptions', 'QFontDialog.FontDialogOption']) -> None: ...
@typing.overload
def __init__(self, a0: 'QFontDialog.FontDialogOptions') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QFontDialog.FontDialogOptions': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, initial: QtGui.QFont, parent: typing.Optional[QWidget] = ...) -> None: ...
def fontSelected(self, font: QtGui.QFont) -> None: ...
def currentFontChanged(self, font: QtGui.QFont) -> None: ...
def setVisible(self, visible: bool) -> None: ...
@typing.overload
def open(self) -> None: ...
@typing.overload
def open(self, slot: PYQT_SLOT) -> None: ...
def options(self) -> 'QFontDialog.FontDialogOptions': ...
def setOptions(self, options: typing.Union['QFontDialog.FontDialogOptions', 'QFontDialog.FontDialogOption']) -> None: ...
def testOption(self, option: 'QFontDialog.FontDialogOption') -> bool: ...
def setOption(self, option: 'QFontDialog.FontDialogOption', on: bool = ...) -> None: ...
def selectedFont(self) -> QtGui.QFont: ...
def currentFont(self) -> QtGui.QFont: ...
def setCurrentFont(self, font: QtGui.QFont) -> None: ...
def eventFilter(self, object: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def done(self, result: int) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
@typing.overload
@staticmethod
def getFont(initial: QtGui.QFont, parent: typing.Optional[QWidget] = ..., caption: str = ..., options: typing.Union['QFontDialog.FontDialogOptions', 'QFontDialog.FontDialogOption'] = ...) -> typing.Tuple[QtGui.QFont, bool]: ...
@typing.overload
@staticmethod
def getFont(parent: typing.Optional[QWidget] = ...) -> typing.Tuple[QtGui.QFont, bool]: ...
class QFormLayout(QLayout):
class ItemRole(int): ...
LabelRole = ... # type: 'QFormLayout.ItemRole'
FieldRole = ... # type: 'QFormLayout.ItemRole'
SpanningRole = ... # type: 'QFormLayout.ItemRole'
class RowWrapPolicy(int): ...
DontWrapRows = ... # type: 'QFormLayout.RowWrapPolicy'
WrapLongRows = ... # type: 'QFormLayout.RowWrapPolicy'
WrapAllRows = ... # type: 'QFormLayout.RowWrapPolicy'
class FieldGrowthPolicy(int): ...
FieldsStayAtSizeHint = ... # type: 'QFormLayout.FieldGrowthPolicy'
ExpandingFieldsGrow = ... # type: 'QFormLayout.FieldGrowthPolicy'
AllNonFixedFieldsGrow = ... # type: 'QFormLayout.FieldGrowthPolicy'
class TakeRowResult(sip.simplewrapper):
fieldItem = ... # type: QLayoutItem
labelItem = ... # type: QLayoutItem
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QFormLayout.TakeRowResult') -> None: ...
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def takeRow(self, row: int) -> 'QFormLayout.TakeRowResult': ...
@typing.overload
def takeRow(self, widget: QWidget) -> 'QFormLayout.TakeRowResult': ...
@typing.overload
def takeRow(self, layout: QLayout) -> 'QFormLayout.TakeRowResult': ...
@typing.overload
def removeRow(self, row: int) -> None: ...
@typing.overload
def removeRow(self, widget: QWidget) -> None: ...
@typing.overload
def removeRow(self, layout: QLayout) -> None: ...
def rowCount(self) -> int: ...
def count(self) -> int: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def heightForWidth(self, width: int) -> int: ...
def hasHeightForWidth(self) -> bool: ...
def invalidate(self) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def setGeometry(self, rect: QtCore.QRect) -> None: ...
def takeAt(self, index: int) -> QLayoutItem: ...
def addItem(self, item: QLayoutItem) -> None: ...
@typing.overload
def labelForField(self, field: QWidget) -> QWidget: ...
@typing.overload
def labelForField(self, field: QLayout) -> QWidget: ...
def getLayoutPosition(self, layout: QLayout) -> typing.Tuple[int, 'QFormLayout.ItemRole']: ...
def getWidgetPosition(self, widget: QWidget) -> typing.Tuple[int, 'QFormLayout.ItemRole']: ...
def getItemPosition(self, index: int) -> typing.Tuple[int, 'QFormLayout.ItemRole']: ...
@typing.overload
def itemAt(self, row: int, role: 'QFormLayout.ItemRole') -> QLayoutItem: ...
@typing.overload
def itemAt(self, index: int) -> QLayoutItem: ...
def setLayout(self, row: int, role: 'QFormLayout.ItemRole', layout: QLayout) -> None: ...
def setWidget(self, row: int, role: 'QFormLayout.ItemRole', widget: QWidget) -> None: ...
def setItem(self, row: int, role: 'QFormLayout.ItemRole', item: QLayoutItem) -> None: ...
@typing.overload
def insertRow(self, row: int, label: QWidget, field: QWidget) -> None: ...
@typing.overload
def insertRow(self, row: int, label: QWidget, field: QLayout) -> None: ...
@typing.overload
def insertRow(self, row: int, labelText: str, field: QWidget) -> None: ...
@typing.overload
def insertRow(self, row: int, labelText: str, field: QLayout) -> None: ...
@typing.overload
def insertRow(self, row: int, widget: QWidget) -> None: ...
@typing.overload
def insertRow(self, row: int, layout: QLayout) -> None: ...
@typing.overload
def addRow(self, label: QWidget, field: QWidget) -> None: ...
@typing.overload
def addRow(self, label: QWidget, field: QLayout) -> None: ...
@typing.overload
def addRow(self, labelText: str, field: QWidget) -> None: ...
@typing.overload
def addRow(self, labelText: str, field: QLayout) -> None: ...
@typing.overload
def addRow(self, widget: QWidget) -> None: ...
@typing.overload
def addRow(self, layout: QLayout) -> None: ...
def setSpacing(self, a0: int) -> None: ...
def spacing(self) -> int: ...
def verticalSpacing(self) -> int: ...
def setVerticalSpacing(self, spacing: int) -> None: ...
def horizontalSpacing(self) -> int: ...
def setHorizontalSpacing(self, spacing: int) -> None: ...
def formAlignment(self) -> QtCore.Qt.Alignment: ...
def setFormAlignment(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def labelAlignment(self) -> QtCore.Qt.Alignment: ...
def setLabelAlignment(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def rowWrapPolicy(self) -> 'QFormLayout.RowWrapPolicy': ...
def setRowWrapPolicy(self, policy: 'QFormLayout.RowWrapPolicy') -> None: ...
def fieldGrowthPolicy(self) -> 'QFormLayout.FieldGrowthPolicy': ...
def setFieldGrowthPolicy(self, policy: 'QFormLayout.FieldGrowthPolicy') -> None: ...
class QGesture(QtCore.QObject):
class GestureCancelPolicy(int): ...
CancelNone = ... # type: 'QGesture.GestureCancelPolicy'
CancelAllInContext = ... # type: 'QGesture.GestureCancelPolicy'
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def gestureCancelPolicy(self) -> 'QGesture.GestureCancelPolicy': ...
def setGestureCancelPolicy(self, policy: 'QGesture.GestureCancelPolicy') -> None: ...
def unsetHotSpot(self) -> None: ...
def hasHotSpot(self) -> bool: ...
def setHotSpot(self, value: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def hotSpot(self) -> QtCore.QPointF: ...
def state(self) -> QtCore.Qt.GestureState: ...
def gestureType(self) -> QtCore.Qt.GestureType: ...
class QPanGesture(QGesture):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def setAcceleration(self, value: float) -> None: ...
def setOffset(self, value: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def setLastOffset(self, value: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def acceleration(self) -> float: ...
def delta(self) -> QtCore.QPointF: ...
def offset(self) -> QtCore.QPointF: ...
def lastOffset(self) -> QtCore.QPointF: ...
class QPinchGesture(QGesture):
class ChangeFlag(int): ...
ScaleFactorChanged = ... # type: 'QPinchGesture.ChangeFlag'
RotationAngleChanged = ... # type: 'QPinchGesture.ChangeFlag'
CenterPointChanged = ... # type: 'QPinchGesture.ChangeFlag'
class ChangeFlags(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QPinchGesture.ChangeFlags', 'QPinchGesture.ChangeFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QPinchGesture.ChangeFlags') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QPinchGesture.ChangeFlags': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def setRotationAngle(self, value: float) -> None: ...
def setLastRotationAngle(self, value: float) -> None: ...
def setTotalRotationAngle(self, value: float) -> None: ...
def rotationAngle(self) -> float: ...
def lastRotationAngle(self) -> float: ...
def totalRotationAngle(self) -> float: ...
def setScaleFactor(self, value: float) -> None: ...
def setLastScaleFactor(self, value: float) -> None: ...
def setTotalScaleFactor(self, value: float) -> None: ...
def scaleFactor(self) -> float: ...
def lastScaleFactor(self) -> float: ...
def totalScaleFactor(self) -> float: ...
def setCenterPoint(self, value: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def setLastCenterPoint(self, value: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def setStartCenterPoint(self, value: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def centerPoint(self) -> QtCore.QPointF: ...
def lastCenterPoint(self) -> QtCore.QPointF: ...
def startCenterPoint(self) -> QtCore.QPointF: ...
def setChangeFlags(self, value: typing.Union['QPinchGesture.ChangeFlags', 'QPinchGesture.ChangeFlag']) -> None: ...
def changeFlags(self) -> 'QPinchGesture.ChangeFlags': ...
def setTotalChangeFlags(self, value: typing.Union['QPinchGesture.ChangeFlags', 'QPinchGesture.ChangeFlag']) -> None: ...
def totalChangeFlags(self) -> 'QPinchGesture.ChangeFlags': ...
class QSwipeGesture(QGesture):
class SwipeDirection(int): ...
NoDirection = ... # type: 'QSwipeGesture.SwipeDirection'
Left = ... # type: 'QSwipeGesture.SwipeDirection'
Right = ... # type: 'QSwipeGesture.SwipeDirection'
Up = ... # type: 'QSwipeGesture.SwipeDirection'
Down = ... # type: 'QSwipeGesture.SwipeDirection'
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def setSwipeAngle(self, value: float) -> None: ...
def swipeAngle(self) -> float: ...
def verticalDirection(self) -> 'QSwipeGesture.SwipeDirection': ...
def horizontalDirection(self) -> 'QSwipeGesture.SwipeDirection': ...
class QTapGesture(QGesture):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def setPosition(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def position(self) -> QtCore.QPointF: ...
class QTapAndHoldGesture(QGesture):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@staticmethod
def timeout() -> int: ...
@staticmethod
def setTimeout(msecs: int) -> None: ...
def setPosition(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def position(self) -> QtCore.QPointF: ...
class QGestureEvent(QtCore.QEvent):
@typing.overload
def __init__(self, gestures: typing.Iterable[QGesture]) -> None: ...
@typing.overload
def __init__(self, a0: 'QGestureEvent') -> None: ...
def mapToGraphicsScene(self, gesturePoint: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPointF: ...
def widget(self) -> QWidget: ...
@typing.overload
def ignore(self) -> None: ...
@typing.overload
def ignore(self, a0: QGesture) -> None: ...
@typing.overload
def ignore(self, a0: QtCore.Qt.GestureType) -> None: ...
@typing.overload
def accept(self) -> None: ...
@typing.overload
def accept(self, a0: QGesture) -> None: ...
@typing.overload
def accept(self, a0: QtCore.Qt.GestureType) -> None: ...
@typing.overload
def isAccepted(self) -> bool: ...
@typing.overload
def isAccepted(self, a0: QGesture) -> bool: ...
@typing.overload
def isAccepted(self, a0: QtCore.Qt.GestureType) -> bool: ...
@typing.overload
def setAccepted(self, accepted: bool) -> None: ...
@typing.overload
def setAccepted(self, a0: QGesture, a1: bool) -> None: ...
@typing.overload
def setAccepted(self, a0: QtCore.Qt.GestureType, a1: bool) -> None: ...
def canceledGestures(self) -> typing.List[QGesture]: ...
def activeGestures(self) -> typing.List[QGesture]: ...
def gesture(self, type: QtCore.Qt.GestureType) -> QGesture: ...
def gestures(self) -> typing.List[QGesture]: ...
class QGestureRecognizer(sip.wrapper):
class ResultFlag(int): ...
Ignore = ... # type: 'QGestureRecognizer.ResultFlag'
MayBeGesture = ... # type: 'QGestureRecognizer.ResultFlag'
TriggerGesture = ... # type: 'QGestureRecognizer.ResultFlag'
FinishGesture = ... # type: 'QGestureRecognizer.ResultFlag'
CancelGesture = ... # type: 'QGestureRecognizer.ResultFlag'
ConsumeEventHint = ... # type: 'QGestureRecognizer.ResultFlag'
class Result(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QGestureRecognizer.Result', 'QGestureRecognizer.ResultFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QGestureRecognizer.Result') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QGestureRecognizer.Result': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QGestureRecognizer') -> None: ...
@staticmethod
def unregisterRecognizer(type: QtCore.Qt.GestureType) -> None: ...
@staticmethod
def registerRecognizer(recognizer: 'QGestureRecognizer') -> QtCore.Qt.GestureType: ...
def reset(self, state: QGesture) -> None: ...
def recognize(self, state: QGesture, watched: QtCore.QObject, event: QtCore.QEvent) -> 'QGestureRecognizer.Result': ...
def create(self, target: QtCore.QObject) -> QGesture: ...
class QGraphicsAnchor(QtCore.QObject):
def sizePolicy(self) -> 'QSizePolicy.Policy': ...
def setSizePolicy(self, policy: 'QSizePolicy.Policy') -> None: ...
def spacing(self) -> float: ...
def unsetSpacing(self) -> None: ...
def setSpacing(self, spacing: float) -> None: ...
class QGraphicsLayoutItem(sip.wrapper):
def __init__(self, parent: typing.Optional['QGraphicsLayoutItem'] = ..., isLayout: bool = ...) -> None: ...
def setOwnedByLayout(self, ownedByLayout: bool) -> None: ...
def setGraphicsItem(self, item: 'QGraphicsItem') -> None: ...
def sizeHint(self, which: QtCore.Qt.SizeHint, constraint: QtCore.QSizeF = ...) -> QtCore.QSizeF: ...
def ownedByLayout(self) -> bool: ...
def graphicsItem(self) -> 'QGraphicsItem': ...
def maximumHeight(self) -> float: ...
def maximumWidth(self) -> float: ...
def preferredHeight(self) -> float: ...
def preferredWidth(self) -> float: ...
def minimumHeight(self) -> float: ...
def minimumWidth(self) -> float: ...
def isLayout(self) -> bool: ...
def setParentLayoutItem(self, parent: 'QGraphicsLayoutItem') -> None: ...
def parentLayoutItem(self) -> 'QGraphicsLayoutItem': ...
def updateGeometry(self) -> None: ...
def effectiveSizeHint(self, which: QtCore.Qt.SizeHint, constraint: QtCore.QSizeF = ...) -> QtCore.QSizeF: ...
def contentsRect(self) -> QtCore.QRectF: ...
def getContentsMargins(self) -> typing.Tuple[float, float, float, float]: ...
def geometry(self) -> QtCore.QRectF: ...
def setGeometry(self, rect: QtCore.QRectF) -> None: ...
def setMaximumHeight(self, height: float) -> None: ...
def setMaximumWidth(self, width: float) -> None: ...
def maximumSize(self) -> QtCore.QSizeF: ...
@typing.overload
def setMaximumSize(self, size: QtCore.QSizeF) -> None: ...
@typing.overload
def setMaximumSize(self, aw: float, ah: float) -> None: ...
def setPreferredHeight(self, height: float) -> None: ...
def setPreferredWidth(self, width: float) -> None: ...
def preferredSize(self) -> QtCore.QSizeF: ...
@typing.overload
def setPreferredSize(self, size: QtCore.QSizeF) -> None: ...
@typing.overload
def setPreferredSize(self, aw: float, ah: float) -> None: ...
def setMinimumHeight(self, height: float) -> None: ...
def setMinimumWidth(self, width: float) -> None: ...
def minimumSize(self) -> QtCore.QSizeF: ...
@typing.overload
def setMinimumSize(self, size: QtCore.QSizeF) -> None: ...
@typing.overload
def setMinimumSize(self, aw: float, ah: float) -> None: ...
def sizePolicy(self) -> 'QSizePolicy': ...
@typing.overload
def setSizePolicy(self, policy: 'QSizePolicy') -> None: ...
@typing.overload
def setSizePolicy(self, hPolicy: 'QSizePolicy.Policy', vPolicy: 'QSizePolicy.Policy', controlType: 'QSizePolicy.ControlType' = ...) -> None: ...
class QGraphicsLayout(QGraphicsLayoutItem):
def __init__(self, parent: typing.Optional[QGraphicsLayoutItem] = ...) -> None: ...
def addChildLayoutItem(self, layoutItem: QGraphicsLayoutItem) -> None: ...
def updateGeometry(self) -> None: ...
def removeAt(self, index: int) -> None: ...
def itemAt(self, i: int) -> QGraphicsLayoutItem: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def widgetEvent(self, e: QtCore.QEvent) -> None: ...
def invalidate(self) -> None: ...
def isActivated(self) -> bool: ...
def activate(self) -> None: ...
def getContentsMargins(self) -> typing.Tuple[float, float, float, float]: ...
def setContentsMargins(self, left: float, top: float, right: float, bottom: float) -> None: ...
class QGraphicsAnchorLayout(QGraphicsLayout):
def __init__(self, parent: typing.Optional[QGraphicsLayoutItem] = ...) -> None: ...
def sizeHint(self, which: QtCore.Qt.SizeHint, constraint: QtCore.QSizeF = ...) -> QtCore.QSizeF: ...
def invalidate(self) -> None: ...
def itemAt(self, index: int) -> QGraphicsLayoutItem: ...
def count(self) -> int: ...
def setGeometry(self, rect: QtCore.QRectF) -> None: ...
def removeAt(self, index: int) -> None: ...
def verticalSpacing(self) -> float: ...
def horizontalSpacing(self) -> float: ...
def setSpacing(self, spacing: float) -> None: ...
def setVerticalSpacing(self, spacing: float) -> None: ...
def setHorizontalSpacing(self, spacing: float) -> None: ...
def addAnchors(self, firstItem: QGraphicsLayoutItem, secondItem: QGraphicsLayoutItem, orientations: typing.Union[QtCore.Qt.Orientations, QtCore.Qt.Orientation] = ...) -> None: ...
def addCornerAnchors(self, firstItem: QGraphicsLayoutItem, firstCorner: QtCore.Qt.Corner, secondItem: QGraphicsLayoutItem, secondCorner: QtCore.Qt.Corner) -> None: ...
def anchor(self, firstItem: QGraphicsLayoutItem, firstEdge: QtCore.Qt.AnchorPoint, secondItem: QGraphicsLayoutItem, secondEdge: QtCore.Qt.AnchorPoint) -> QGraphicsAnchor: ...
def addAnchor(self, firstItem: QGraphicsLayoutItem, firstEdge: QtCore.Qt.AnchorPoint, secondItem: QGraphicsLayoutItem, secondEdge: QtCore.Qt.AnchorPoint) -> QGraphicsAnchor: ...
class QGraphicsEffect(QtCore.QObject):
class PixmapPadMode(int): ...
NoPad = ... # type: 'QGraphicsEffect.PixmapPadMode'
PadToTransparentBorder = ... # type: 'QGraphicsEffect.PixmapPadMode'
PadToEffectiveBoundingRect = ... # type: 'QGraphicsEffect.PixmapPadMode'
class ChangeFlag(int): ...
SourceAttached = ... # type: 'QGraphicsEffect.ChangeFlag'
SourceDetached = ... # type: 'QGraphicsEffect.ChangeFlag'
SourceBoundingRectChanged = ... # type: 'QGraphicsEffect.ChangeFlag'
SourceInvalidated = ... # type: 'QGraphicsEffect.ChangeFlag'
class ChangeFlags(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QGraphicsEffect.ChangeFlags', 'QGraphicsEffect.ChangeFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QGraphicsEffect.ChangeFlags') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QGraphicsEffect.ChangeFlags': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def sourcePixmap(self, system: QtCore.Qt.CoordinateSystem = ..., mode: 'QGraphicsEffect.PixmapPadMode' = ...) -> typing.Tuple[QtGui.QPixmap, QtCore.QPoint]: ...
def drawSource(self, painter: QtGui.QPainter) -> None: ...
def sourceBoundingRect(self, system: QtCore.Qt.CoordinateSystem = ...) -> QtCore.QRectF: ...
def sourceIsPixmap(self) -> bool: ...
def updateBoundingRect(self) -> None: ...
def sourceChanged(self, flags: typing.Union['QGraphicsEffect.ChangeFlags', 'QGraphicsEffect.ChangeFlag']) -> None: ...
def draw(self, painter: QtGui.QPainter) -> None: ...
def enabledChanged(self, enabled: bool) -> None: ...
def update(self) -> None: ...
def setEnabled(self, enable: bool) -> None: ...
def isEnabled(self) -> bool: ...
def boundingRect(self) -> QtCore.QRectF: ...
def boundingRectFor(self, sourceRect: QtCore.QRectF) -> QtCore.QRectF: ...
class QGraphicsColorizeEffect(QGraphicsEffect):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def draw(self, painter: QtGui.QPainter) -> None: ...
def strengthChanged(self, strength: float) -> None: ...
def colorChanged(self, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def setStrength(self, strength: float) -> None: ...
def setColor(self, c: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def strength(self) -> float: ...
def color(self) -> QtGui.QColor: ...
class QGraphicsBlurEffect(QGraphicsEffect):
class BlurHint(int): ...
PerformanceHint = ... # type: 'QGraphicsBlurEffect.BlurHint'
QualityHint = ... # type: 'QGraphicsBlurEffect.BlurHint'
AnimationHint = ... # type: 'QGraphicsBlurEffect.BlurHint'
class BlurHints(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QGraphicsBlurEffect.BlurHints', 'QGraphicsBlurEffect.BlurHint']) -> None: ...
@typing.overload
def __init__(self, a0: 'QGraphicsBlurEffect.BlurHints') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QGraphicsBlurEffect.BlurHints': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def draw(self, painter: QtGui.QPainter) -> None: ...
def blurHintsChanged(self, hints: typing.Union['QGraphicsBlurEffect.BlurHints', 'QGraphicsBlurEffect.BlurHint']) -> None: ...
def blurRadiusChanged(self, blurRadius: float) -> None: ...
def setBlurHints(self, hints: typing.Union['QGraphicsBlurEffect.BlurHints', 'QGraphicsBlurEffect.BlurHint']) -> None: ...
def setBlurRadius(self, blurRadius: float) -> None: ...
def blurHints(self) -> 'QGraphicsBlurEffect.BlurHints': ...
def blurRadius(self) -> float: ...
def boundingRectFor(self, rect: QtCore.QRectF) -> QtCore.QRectF: ...
class QGraphicsDropShadowEffect(QGraphicsEffect):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def draw(self, painter: QtGui.QPainter) -> None: ...
def colorChanged(self, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def blurRadiusChanged(self, blurRadius: float) -> None: ...
def offsetChanged(self, offset: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def setColor(self, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def setBlurRadius(self, blurRadius: float) -> None: ...
def setYOffset(self, dy: float) -> None: ...
def setXOffset(self, dx: float) -> None: ...
@typing.overload
def setOffset(self, ofs: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
@typing.overload
def setOffset(self, dx: float, dy: float) -> None: ...
@typing.overload
def setOffset(self, d: float) -> None: ...
def color(self) -> QtGui.QColor: ...
def blurRadius(self) -> float: ...
def yOffset(self) -> float: ...
def xOffset(self) -> float: ...
def offset(self) -> QtCore.QPointF: ...
def boundingRectFor(self, rect: QtCore.QRectF) -> QtCore.QRectF: ...
class QGraphicsOpacityEffect(QGraphicsEffect):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def draw(self, painter: QtGui.QPainter) -> None: ...
def opacityMaskChanged(self, mask: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def opacityChanged(self, opacity: float) -> None: ...
def setOpacityMask(self, mask: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def setOpacity(self, opacity: float) -> None: ...
def opacityMask(self) -> QtGui.QBrush: ...
def opacity(self) -> float: ...
class QGraphicsGridLayout(QGraphicsLayout):
def __init__(self, parent: typing.Optional[QGraphicsLayoutItem] = ...) -> None: ...
def removeItem(self, item: QGraphicsLayoutItem) -> None: ...
def sizeHint(self, which: QtCore.Qt.SizeHint, constraint: QtCore.QSizeF = ...) -> QtCore.QSizeF: ...
def setGeometry(self, rect: QtCore.QRectF) -> None: ...
def invalidate(self) -> None: ...
def removeAt(self, index: int) -> None: ...
def count(self) -> int: ...
@typing.overload
def itemAt(self, row: int, column: int) -> QGraphicsLayoutItem: ...
@typing.overload
def itemAt(self, index: int) -> QGraphicsLayoutItem: ...
def columnCount(self) -> int: ...
def rowCount(self) -> int: ...
def alignment(self, item: QGraphicsLayoutItem) -> QtCore.Qt.Alignment: ...
def setAlignment(self, item: QGraphicsLayoutItem, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def columnAlignment(self, column: int) -> QtCore.Qt.Alignment: ...
def setColumnAlignment(self, column: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def rowAlignment(self, row: int) -> QtCore.Qt.Alignment: ...
def setRowAlignment(self, row: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def setColumnFixedWidth(self, column: int, width: float) -> None: ...
def columnMaximumWidth(self, column: int) -> float: ...
def setColumnMaximumWidth(self, column: int, width: float) -> None: ...
def columnPreferredWidth(self, column: int) -> float: ...
def setColumnPreferredWidth(self, column: int, width: float) -> None: ...
def columnMinimumWidth(self, column: int) -> float: ...
def setColumnMinimumWidth(self, column: int, width: float) -> None: ...
def setRowFixedHeight(self, row: int, height: float) -> None: ...
def rowMaximumHeight(self, row: int) -> float: ...
def setRowMaximumHeight(self, row: int, height: float) -> None: ...
def rowPreferredHeight(self, row: int) -> float: ...
def setRowPreferredHeight(self, row: int, height: float) -> None: ...
def rowMinimumHeight(self, row: int) -> float: ...
def setRowMinimumHeight(self, row: int, height: float) -> None: ...
def columnStretchFactor(self, column: int) -> int: ...
def setColumnStretchFactor(self, column: int, stretch: int) -> None: ...
def rowStretchFactor(self, row: int) -> int: ...
def setRowStretchFactor(self, row: int, stretch: int) -> None: ...
def columnSpacing(self, column: int) -> float: ...
def setColumnSpacing(self, column: int, spacing: float) -> None: ...
def rowSpacing(self, row: int) -> float: ...
def setRowSpacing(self, row: int, spacing: float) -> None: ...
def setSpacing(self, spacing: float) -> None: ...
def verticalSpacing(self) -> float: ...
def setVerticalSpacing(self, spacing: float) -> None: ...
def horizontalSpacing(self) -> float: ...
def setHorizontalSpacing(self, spacing: float) -> None: ...
@typing.overload
def addItem(self, item: QGraphicsLayoutItem, row: int, column: int, rowSpan: int, columnSpan: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
@typing.overload
def addItem(self, item: QGraphicsLayoutItem, row: int, column: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
class QGraphicsItem(sip.wrapper):
class PanelModality(int): ...
NonModal = ... # type: 'QGraphicsItem.PanelModality'
PanelModal = ... # type: 'QGraphicsItem.PanelModality'
SceneModal = ... # type: 'QGraphicsItem.PanelModality'
class GraphicsItemFlag(int): ...
ItemIsMovable = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemIsSelectable = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemIsFocusable = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemClipsToShape = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemClipsChildrenToShape = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemIgnoresTransformations = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemIgnoresParentOpacity = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemDoesntPropagateOpacityToChildren = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemStacksBehindParent = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemUsesExtendedStyleOption = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemHasNoContents = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemSendsGeometryChanges = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemAcceptsInputMethod = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemNegativeZStacksBehindParent = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemIsPanel = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemSendsScenePositionChanges = ... # type: 'QGraphicsItem.GraphicsItemFlag'
ItemContainsChildrenInShape = ... # type: 'QGraphicsItem.GraphicsItemFlag'
class GraphicsItemChange(int): ...
ItemPositionChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemMatrixChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemVisibleChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemEnabledChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemSelectedChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemParentChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemChildAddedChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemChildRemovedChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemTransformChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemPositionHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemTransformHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemSceneChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemVisibleHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemEnabledHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemSelectedHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemParentHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemSceneHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemCursorChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemCursorHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemToolTipChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemToolTipHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemFlagsChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemFlagsHaveChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemZValueChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemZValueHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemOpacityChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemOpacityHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemScenePositionHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemRotationChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemRotationHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemScaleChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemScaleHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemTransformOriginPointChange = ... # type: 'QGraphicsItem.GraphicsItemChange'
ItemTransformOriginPointHasChanged = ... # type: 'QGraphicsItem.GraphicsItemChange'
class CacheMode(int): ...
NoCache = ... # type: 'QGraphicsItem.CacheMode'
ItemCoordinateCache = ... # type: 'QGraphicsItem.CacheMode'
DeviceCoordinateCache = ... # type: 'QGraphicsItem.CacheMode'
class GraphicsItemFlags(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QGraphicsItem.GraphicsItemFlags', 'QGraphicsItem.GraphicsItemFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QGraphicsItem.GraphicsItemFlags') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QGraphicsItem.GraphicsItemFlags': ...
def __int__(self) -> int: ...
Type = ... # type: int
UserType = ... # type: int
def __init__(self, parent: typing.Optional['QGraphicsItem'] = ...) -> None: ...
def updateMicroFocus(self) -> None: ...
def setInputMethodHints(self, hints: typing.Union[QtCore.Qt.InputMethodHints, QtCore.Qt.InputMethodHint]) -> None: ...
def inputMethodHints(self) -> QtCore.Qt.InputMethodHints: ...
def stackBefore(self, sibling: 'QGraphicsItem') -> None: ...
@typing.overload
def setTransformOriginPoint(self, origin: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
@typing.overload
def setTransformOriginPoint(self, ax: float, ay: float) -> None: ...
def transformOriginPoint(self) -> QtCore.QPointF: ...
def setTransformations(self, transformations: typing.Iterable['QGraphicsTransform']) -> None: ...
def transformations(self) -> typing.List['QGraphicsTransform']: ...
def scale(self) -> float: ...
def setScale(self, scale: float) -> None: ...
def rotation(self) -> float: ...
def setRotation(self, angle: float) -> None: ...
def setY(self, y: float) -> None: ...
def setX(self, x: float) -> None: ...
def focusItem(self) -> 'QGraphicsItem': ...
def setFocusProxy(self, item: 'QGraphicsItem') -> None: ...
def focusProxy(self) -> 'QGraphicsItem': ...
def setActive(self, active: bool) -> None: ...
def isActive(self) -> bool: ...
def setFiltersChildEvents(self, enabled: bool) -> None: ...
def filtersChildEvents(self) -> bool: ...
def setAcceptTouchEvents(self, enabled: bool) -> None: ...
def acceptTouchEvents(self) -> bool: ...
def setGraphicsEffect(self, effect: QGraphicsEffect) -> None: ...
def graphicsEffect(self) -> QGraphicsEffect: ...
def isBlockedByModalPanel(self) -> typing.Tuple[bool, 'QGraphicsItem']: ...
def setPanelModality(self, panelModality: 'QGraphicsItem.PanelModality') -> None: ...
def panelModality(self) -> 'QGraphicsItem.PanelModality': ...
def toGraphicsObject(self) -> 'QGraphicsObject': ...
def isPanel(self) -> bool: ...
def panel(self) -> 'QGraphicsItem': ...
def parentObject(self) -> 'QGraphicsObject': ...
@typing.overload
def mapRectFromScene(self, rect: QtCore.QRectF) -> QtCore.QRectF: ...
@typing.overload
def mapRectFromScene(self, ax: float, ay: float, w: float, h: float) -> QtCore.QRectF: ...
@typing.overload
def mapRectFromParent(self, rect: QtCore.QRectF) -> QtCore.QRectF: ...
@typing.overload
def mapRectFromParent(self, ax: float, ay: float, w: float, h: float) -> QtCore.QRectF: ...
@typing.overload
def mapRectFromItem(self, item: 'QGraphicsItem', rect: QtCore.QRectF) -> QtCore.QRectF: ...
@typing.overload
def mapRectFromItem(self, item: 'QGraphicsItem', ax: float, ay: float, w: float, h: float) -> QtCore.QRectF: ...
@typing.overload
def mapRectToScene(self, rect: QtCore.QRectF) -> QtCore.QRectF: ...
@typing.overload
def mapRectToScene(self, ax: float, ay: float, w: float, h: float) -> QtCore.QRectF: ...
@typing.overload
def mapRectToParent(self, rect: QtCore.QRectF) -> QtCore.QRectF: ...
@typing.overload
def mapRectToParent(self, ax: float, ay: float, w: float, h: float) -> QtCore.QRectF: ...
@typing.overload
def mapRectToItem(self, item: 'QGraphicsItem', rect: QtCore.QRectF) -> QtCore.QRectF: ...
@typing.overload
def mapRectToItem(self, item: 'QGraphicsItem', ax: float, ay: float, w: float, h: float) -> QtCore.QRectF: ...
def clipPath(self) -> QtGui.QPainterPath: ...
def isClipped(self) -> bool: ...
def itemTransform(self, other: 'QGraphicsItem') -> typing.Tuple[QtGui.QTransform, bool]: ...
def setOpacity(self, opacity: float) -> None: ...
def effectiveOpacity(self) -> float: ...
def opacity(self) -> float: ...
def isUnderMouse(self) -> bool: ...
def commonAncestorItem(self, other: 'QGraphicsItem') -> 'QGraphicsItem': ...
def scroll(self, dx: float, dy: float, rect: QtCore.QRectF = ...) -> None: ...
def setBoundingRegionGranularity(self, granularity: float) -> None: ...
def boundingRegionGranularity(self) -> float: ...
def boundingRegion(self, itemToDeviceTransform: QtGui.QTransform) -> QtGui.QRegion: ...
def ungrabKeyboard(self) -> None: ...
def grabKeyboard(self) -> None: ...
def ungrabMouse(self) -> None: ...
def grabMouse(self) -> None: ...
def setAcceptHoverEvents(self, enabled: bool) -> None: ...
def acceptHoverEvents(self) -> bool: ...
def isVisibleTo(self, parent: 'QGraphicsItem') -> bool: ...
def setCacheMode(self, mode: 'QGraphicsItem.CacheMode', logicalCacheSize: QtCore.QSize = ...) -> None: ...
def cacheMode(self) -> 'QGraphicsItem.CacheMode': ...
def isWindow(self) -> bool: ...
def isWidget(self) -> bool: ...
def childItems(self) -> typing.List['QGraphicsItem']: ...
def window(self) -> 'QGraphicsWidget': ...
def topLevelWidget(self) -> 'QGraphicsWidget': ...
def parentWidget(self) -> 'QGraphicsWidget': ...
@typing.overload
def isObscured(self, rect: QtCore.QRectF = ...) -> bool: ...
@typing.overload
def isObscured(self, ax: float, ay: float, w: float, h: float) -> bool: ...
def resetTransform(self) -> None: ...
def setTransform(self, matrix: QtGui.QTransform, combine: bool = ...) -> None: ...
def deviceTransform(self, viewportTransform: QtGui.QTransform) -> QtGui.QTransform: ...
def sceneTransform(self) -> QtGui.QTransform: ...
def transform(self) -> QtGui.QTransform: ...
def wheelEvent(self, event: 'QGraphicsSceneWheelEvent') -> None: ...
def sceneEventFilter(self, watched: 'QGraphicsItem', event: QtCore.QEvent) -> bool: ...
def sceneEvent(self, event: QtCore.QEvent) -> bool: ...
def prepareGeometryChange(self) -> None: ...
def mouseReleaseEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mousePressEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseMoveEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseDoubleClickEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def keyReleaseEvent(self, event: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None: ...
def itemChange(self, change: 'QGraphicsItem.GraphicsItemChange', value: typing.Any) -> typing.Any: ...
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
def inputMethodEvent(self, event: QtGui.QInputMethodEvent) -> None: ...
def hoverMoveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def hoverLeaveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def hoverEnterEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def focusOutEvent(self, event: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, event: QtGui.QFocusEvent) -> None: ...
def dropEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragMoveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragLeaveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragEnterEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def contextMenuEvent(self, event: 'QGraphicsSceneContextMenuEvent') -> None: ...
def removeSceneEventFilter(self, filterItem: 'QGraphicsItem') -> None: ...
def installSceneEventFilter(self, filterItem: 'QGraphicsItem') -> None: ...
def type(self) -> int: ...
def setData(self, key: int, value: typing.Any) -> None: ...
def data(self, key: int) -> typing.Any: ...
def isAncestorOf(self, child: 'QGraphicsItem') -> bool: ...
@typing.overload
def mapFromScene(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPointF: ...
@typing.overload
def mapFromScene(self, rect: QtCore.QRectF) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromScene(self, polygon: QtGui.QPolygonF) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromScene(self, path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapFromScene(self, ax: float, ay: float) -> QtCore.QPointF: ...
@typing.overload
def mapFromScene(self, ax: float, ay: float, w: float, h: float) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromParent(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPointF: ...
@typing.overload
def mapFromParent(self, rect: QtCore.QRectF) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromParent(self, polygon: QtGui.QPolygonF) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromParent(self, path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapFromParent(self, ax: float, ay: float) -> QtCore.QPointF: ...
@typing.overload
def mapFromParent(self, ax: float, ay: float, w: float, h: float) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromItem(self, item: 'QGraphicsItem', point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPointF: ...
@typing.overload
def mapFromItem(self, item: 'QGraphicsItem', rect: QtCore.QRectF) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromItem(self, item: 'QGraphicsItem', polygon: QtGui.QPolygonF) -> QtGui.QPolygonF: ...
@typing.overload
def mapFromItem(self, item: 'QGraphicsItem', path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapFromItem(self, item: 'QGraphicsItem', ax: float, ay: float) -> QtCore.QPointF: ...
@typing.overload
def mapFromItem(self, item: 'QGraphicsItem', ax: float, ay: float, w: float, h: float) -> QtGui.QPolygonF: ...
@typing.overload
def mapToScene(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPointF: ...
@typing.overload
def mapToScene(self, rect: QtCore.QRectF) -> QtGui.QPolygonF: ...
@typing.overload
def mapToScene(self, polygon: QtGui.QPolygonF) -> QtGui.QPolygonF: ...
@typing.overload
def mapToScene(self, path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapToScene(self, ax: float, ay: float) -> QtCore.QPointF: ...
@typing.overload
def mapToScene(self, ax: float, ay: float, w: float, h: float) -> QtGui.QPolygonF: ...
@typing.overload
def mapToParent(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPointF: ...
@typing.overload
def mapToParent(self, rect: QtCore.QRectF) -> QtGui.QPolygonF: ...
@typing.overload
def mapToParent(self, polygon: QtGui.QPolygonF) -> QtGui.QPolygonF: ...
@typing.overload
def mapToParent(self, path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapToParent(self, ax: float, ay: float) -> QtCore.QPointF: ...
@typing.overload
def mapToParent(self, ax: float, ay: float, w: float, h: float) -> QtGui.QPolygonF: ...
@typing.overload
def mapToItem(self, item: 'QGraphicsItem', point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPointF: ...
@typing.overload
def mapToItem(self, item: 'QGraphicsItem', rect: QtCore.QRectF) -> QtGui.QPolygonF: ...
@typing.overload
def mapToItem(self, item: 'QGraphicsItem', polygon: QtGui.QPolygonF) -> QtGui.QPolygonF: ...
@typing.overload
def mapToItem(self, item: 'QGraphicsItem', path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapToItem(self, item: 'QGraphicsItem', ax: float, ay: float) -> QtCore.QPointF: ...
@typing.overload
def mapToItem(self, item: 'QGraphicsItem', ax: float, ay: float, w: float, h: float) -> QtGui.QPolygonF: ...
@typing.overload
def update(self, rect: QtCore.QRectF = ...) -> None: ...
@typing.overload
def update(self, ax: float, ay: float, width: float, height: float) -> None: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: 'QGraphicsItem') -> bool: ...
def collidingItems(self, mode: QtCore.Qt.ItemSelectionMode = ...) -> typing.List['QGraphicsItem']: ...
def collidesWithPath(self, path: QtGui.QPainterPath, mode: QtCore.Qt.ItemSelectionMode = ...) -> bool: ...
def collidesWithItem(self, other: 'QGraphicsItem', mode: QtCore.Qt.ItemSelectionMode = ...) -> bool: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def sceneBoundingRect(self) -> QtCore.QRectF: ...
def childrenBoundingRect(self) -> QtCore.QRectF: ...
def boundingRect(self) -> QtCore.QRectF: ...
def setZValue(self, z: float) -> None: ...
def zValue(self) -> float: ...
def advance(self, phase: int) -> None: ...
@typing.overload
def ensureVisible(self, rect: QtCore.QRectF = ..., xMargin: int = ..., yMargin: int = ...) -> None: ...
@typing.overload
def ensureVisible(self, x: float, y: float, w: float, h: float, xMargin: int = ..., yMargin: int = ...) -> None: ...
def moveBy(self, dx: float, dy: float) -> None: ...
@typing.overload
def setPos(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
@typing.overload
def setPos(self, ax: float, ay: float) -> None: ...
def scenePos(self) -> QtCore.QPointF: ...
def y(self) -> float: ...
def x(self) -> float: ...
def pos(self) -> QtCore.QPointF: ...
def clearFocus(self) -> None: ...
def setFocus(self, focusReason: QtCore.Qt.FocusReason = ...) -> None: ...
def hasFocus(self) -> bool: ...
def setAcceptedMouseButtons(self, buttons: typing.Union[QtCore.Qt.MouseButtons, QtCore.Qt.MouseButton]) -> None: ...
def acceptedMouseButtons(self) -> QtCore.Qt.MouseButtons: ...
def setAcceptDrops(self, on: bool) -> None: ...
def acceptDrops(self) -> bool: ...
def setSelected(self, selected: bool) -> None: ...
def isSelected(self) -> bool: ...
def setEnabled(self, enabled: bool) -> None: ...
def isEnabled(self) -> bool: ...
def show(self) -> None: ...
def hide(self) -> None: ...
def setVisible(self, visible: bool) -> None: ...
def isVisible(self) -> bool: ...
def unsetCursor(self) -> None: ...
def hasCursor(self) -> bool: ...
def setCursor(self, cursor: typing.Union[QtGui.QCursor, QtCore.Qt.CursorShape]) -> None: ...
def cursor(self) -> QtGui.QCursor: ...
def setToolTip(self, toolTip: str) -> None: ...
def toolTip(self) -> str: ...
def setFlags(self, flags: typing.Union['QGraphicsItem.GraphicsItemFlags', 'QGraphicsItem.GraphicsItemFlag']) -> None: ...
def setFlag(self, flag: 'QGraphicsItem.GraphicsItemFlag', enabled: bool = ...) -> None: ...
def flags(self) -> 'QGraphicsItem.GraphicsItemFlags': ...
def setGroup(self, group: 'QGraphicsItemGroup') -> None: ...
def group(self) -> 'QGraphicsItemGroup': ...
def setParentItem(self, parent: 'QGraphicsItem') -> None: ...
def topLevelItem(self) -> 'QGraphicsItem': ...
def parentItem(self) -> 'QGraphicsItem': ...
def scene(self) -> 'QGraphicsScene': ...
class QAbstractGraphicsShapeItem(QGraphicsItem):
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def setBrush(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def brush(self) -> QtGui.QBrush: ...
def setPen(self, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def pen(self) -> QtGui.QPen: ...
class QGraphicsPathItem(QAbstractGraphicsShapeItem):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, path: QtGui.QPainterPath, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
def setPath(self, path: QtGui.QPainterPath) -> None: ...
def path(self) -> QtGui.QPainterPath: ...
class QGraphicsRectItem(QAbstractGraphicsShapeItem):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, rect: QtCore.QRectF, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, x: float, y: float, w: float, h: float, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
@typing.overload
def setRect(self, rect: QtCore.QRectF) -> None: ...
@typing.overload
def setRect(self, ax: float, ay: float, w: float, h: float) -> None: ...
def rect(self) -> QtCore.QRectF: ...
class QGraphicsEllipseItem(QAbstractGraphicsShapeItem):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, rect: QtCore.QRectF, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, x: float, y: float, w: float, h: float, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
def setSpanAngle(self, angle: int) -> None: ...
def spanAngle(self) -> int: ...
def setStartAngle(self, angle: int) -> None: ...
def startAngle(self) -> int: ...
@typing.overload
def setRect(self, rect: QtCore.QRectF) -> None: ...
@typing.overload
def setRect(self, ax: float, ay: float, w: float, h: float) -> None: ...
def rect(self) -> QtCore.QRectF: ...
class QGraphicsPolygonItem(QAbstractGraphicsShapeItem):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, polygon: QtGui.QPolygonF, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
def setFillRule(self, rule: QtCore.Qt.FillRule) -> None: ...
def fillRule(self) -> QtCore.Qt.FillRule: ...
def setPolygon(self, polygon: QtGui.QPolygonF) -> None: ...
def polygon(self) -> QtGui.QPolygonF: ...
class QGraphicsLineItem(QGraphicsItem):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, line: QtCore.QLineF, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, x1: float, y1: float, x2: float, y2: float, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
@typing.overload
def setLine(self, line: QtCore.QLineF) -> None: ...
@typing.overload
def setLine(self, x1: float, y1: float, x2: float, y2: float) -> None: ...
def line(self) -> QtCore.QLineF: ...
def setPen(self, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def pen(self) -> QtGui.QPen: ...
class QGraphicsPixmapItem(QGraphicsItem):
class ShapeMode(int): ...
MaskShape = ... # type: 'QGraphicsPixmapItem.ShapeMode'
BoundingRectShape = ... # type: 'QGraphicsPixmapItem.ShapeMode'
HeuristicMaskShape = ... # type: 'QGraphicsPixmapItem.ShapeMode'
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, pixmap: QtGui.QPixmap, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def setShapeMode(self, mode: 'QGraphicsPixmapItem.ShapeMode') -> None: ...
def shapeMode(self) -> 'QGraphicsPixmapItem.ShapeMode': ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: QWidget) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
@typing.overload
def setOffset(self, offset: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
@typing.overload
def setOffset(self, ax: float, ay: float) -> None: ...
def offset(self) -> QtCore.QPointF: ...
def setTransformationMode(self, mode: QtCore.Qt.TransformationMode) -> None: ...
def transformationMode(self) -> QtCore.Qt.TransformationMode: ...
def setPixmap(self, pixmap: QtGui.QPixmap) -> None: ...
def pixmap(self) -> QtGui.QPixmap: ...
class QGraphicsSimpleTextItem(QAbstractGraphicsShapeItem):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: QWidget) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
def font(self) -> QtGui.QFont: ...
def setFont(self, font: QtGui.QFont) -> None: ...
def text(self) -> str: ...
def setText(self, text: str) -> None: ...
class QGraphicsItemGroup(QGraphicsItem):
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def boundingRect(self) -> QtCore.QRectF: ...
def removeFromGroup(self, item: QGraphicsItem) -> None: ...
def addToGroup(self, item: QGraphicsItem) -> None: ...
class QGraphicsObject(QtCore.QObject, QGraphicsItem):
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def event(self, ev: QtCore.QEvent) -> bool: ...
def updateMicroFocus(self) -> None: ...
def scaleChanged(self) -> None: ...
def rotationChanged(self) -> None: ...
def zChanged(self) -> None: ...
def yChanged(self) -> None: ...
def xChanged(self) -> None: ...
def enabledChanged(self) -> None: ...
def visibleChanged(self) -> None: ...
def opacityChanged(self) -> None: ...
def parentChanged(self) -> None: ...
def ungrabGesture(self, type: QtCore.Qt.GestureType) -> None: ...
def grabGesture(self, type: QtCore.Qt.GestureType, flags: typing.Union[QtCore.Qt.GestureFlags, QtCore.Qt.GestureFlag] = ...) -> None: ...
class QGraphicsTextItem(QGraphicsObject):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QGraphicsItem] = ...) -> None: ...
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
def hoverLeaveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def hoverMoveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def hoverEnterEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def inputMethodEvent(self, event: QtGui.QInputMethodEvent) -> None: ...
def dropEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragMoveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragLeaveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragEnterEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def focusOutEvent(self, event: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, event: QtGui.QFocusEvent) -> None: ...
def keyReleaseEvent(self, event: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None: ...
def contextMenuEvent(self, event: 'QGraphicsSceneContextMenuEvent') -> None: ...
def mouseDoubleClickEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseReleaseEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseMoveEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mousePressEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def sceneEvent(self, event: QtCore.QEvent) -> bool: ...
def linkHovered(self, a0: str) -> None: ...
def linkActivated(self, a0: str) -> None: ...
def textCursor(self) -> QtGui.QTextCursor: ...
def setTextCursor(self, cursor: QtGui.QTextCursor) -> None: ...
def openExternalLinks(self) -> bool: ...
def setOpenExternalLinks(self, open: bool) -> None: ...
def tabChangesFocus(self) -> bool: ...
def setTabChangesFocus(self, b: bool) -> None: ...
def textInteractionFlags(self) -> QtCore.Qt.TextInteractionFlags: ...
def setTextInteractionFlags(self, flags: typing.Union[QtCore.Qt.TextInteractionFlags, QtCore.Qt.TextInteractionFlag]) -> None: ...
def document(self) -> QtGui.QTextDocument: ...
def setDocument(self, document: QtGui.QTextDocument) -> None: ...
def adjustSize(self) -> None: ...
def textWidth(self) -> float: ...
def setTextWidth(self, width: float) -> None: ...
def type(self) -> int: ...
def opaqueArea(self) -> QtGui.QPainterPath: ...
def isObscuredBy(self, item: QGraphicsItem) -> bool: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: QWidget) -> None: ...
def contains(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
def defaultTextColor(self) -> QtGui.QColor: ...
def setDefaultTextColor(self, c: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def setFont(self, font: QtGui.QFont) -> None: ...
def font(self) -> QtGui.QFont: ...
def setPlainText(self, text: str) -> None: ...
def toPlainText(self) -> str: ...
def setHtml(self, html: str) -> None: ...
def toHtml(self) -> str: ...
class QGraphicsLinearLayout(QGraphicsLayout):
@typing.overload
def __init__(self, parent: typing.Optional[QGraphicsLayoutItem] = ...) -> None: ...
@typing.overload
def __init__(self, orientation: QtCore.Qt.Orientation, parent: typing.Optional[QGraphicsLayoutItem] = ...) -> None: ...
def sizeHint(self, which: QtCore.Qt.SizeHint, constraint: QtCore.QSizeF = ...) -> QtCore.QSizeF: ...
def invalidate(self) -> None: ...
def itemAt(self, index: int) -> QGraphicsLayoutItem: ...
def count(self) -> int: ...
def setGeometry(self, rect: QtCore.QRectF) -> None: ...
def alignment(self, item: QGraphicsLayoutItem) -> QtCore.Qt.Alignment: ...
def setAlignment(self, item: QGraphicsLayoutItem, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def stretchFactor(self, item: QGraphicsLayoutItem) -> int: ...
def setStretchFactor(self, item: QGraphicsLayoutItem, stretch: int) -> None: ...
def itemSpacing(self, index: int) -> float: ...
def setItemSpacing(self, index: int, spacing: float) -> None: ...
def spacing(self) -> float: ...
def setSpacing(self, spacing: float) -> None: ...
def removeAt(self, index: int) -> None: ...
def removeItem(self, item: QGraphicsLayoutItem) -> None: ...
def insertStretch(self, index: int, stretch: int = ...) -> None: ...
def insertItem(self, index: int, item: QGraphicsLayoutItem) -> None: ...
def addStretch(self, stretch: int = ...) -> None: ...
def addItem(self, item: QGraphicsLayoutItem) -> None: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def setOrientation(self, orientation: QtCore.Qt.Orientation) -> None: ...
class QGraphicsWidget(QGraphicsObject, QGraphicsLayoutItem):
def __init__(self, parent: typing.Optional[QGraphicsItem] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def geometryChanged(self) -> None: ...
def setAutoFillBackground(self, enabled: bool) -> None: ...
def autoFillBackground(self) -> bool: ...
def ungrabKeyboardEvent(self, event: QtCore.QEvent) -> None: ...
def grabKeyboardEvent(self, event: QtCore.QEvent) -> None: ...
def ungrabMouseEvent(self, event: QtCore.QEvent) -> None: ...
def grabMouseEvent(self, event: QtCore.QEvent) -> None: ...
def hoverLeaveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def hoverMoveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def showEvent(self, event: QtGui.QShowEvent) -> None: ...
def resizeEvent(self, event: 'QGraphicsSceneResizeEvent') -> None: ...
def polishEvent(self) -> None: ...
def moveEvent(self, event: 'QGraphicsSceneMoveEvent') -> None: ...
def hideEvent(self, event: QtGui.QHideEvent) -> None: ...
def focusOutEvent(self, event: QtGui.QFocusEvent) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def focusInEvent(self, event: QtGui.QFocusEvent) -> None: ...
def closeEvent(self, event: QtGui.QCloseEvent) -> None: ...
def changeEvent(self, event: QtCore.QEvent) -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def windowFrameSectionAt(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.Qt.WindowFrameSection: ...
def windowFrameEvent(self, e: QtCore.QEvent) -> bool: ...
def sceneEvent(self, event: QtCore.QEvent) -> bool: ...
def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: typing.Any) -> typing.Any: ...
def updateGeometry(self) -> None: ...
def sizeHint(self, which: QtCore.Qt.SizeHint, constraint: QtCore.QSizeF = ...) -> QtCore.QSizeF: ...
def initStyleOption(self, option: 'QStyleOption') -> None: ...
def close(self) -> bool: ...
def shape(self) -> QtGui.QPainterPath: ...
def boundingRect(self) -> QtCore.QRectF: ...
def paintWindowFrame(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: typing.Optional[QWidget] = ...) -> None: ...
def type(self) -> int: ...
def testAttribute(self, attribute: QtCore.Qt.WidgetAttribute) -> bool: ...
def setAttribute(self, attribute: QtCore.Qt.WidgetAttribute, on: bool = ...) -> None: ...
def actions(self) -> typing.List[QAction]: ...
def removeAction(self, action: QAction) -> None: ...
def insertActions(self, before: QAction, actions: typing.Iterable[QAction]) -> None: ...
def insertAction(self, before: QAction, action: QAction) -> None: ...
def addActions(self, actions: typing.Iterable[QAction]) -> None: ...
def addAction(self, action: QAction) -> None: ...
def setShortcutAutoRepeat(self, id: int, enabled: bool = ...) -> None: ...
def setShortcutEnabled(self, id: int, enabled: bool = ...) -> None: ...
def releaseShortcut(self, id: int) -> None: ...
def grabShortcut(self, sequence: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int], context: QtCore.Qt.ShortcutContext = ...) -> int: ...
def focusWidget(self) -> 'QGraphicsWidget': ...
@staticmethod
def setTabOrder(first: 'QGraphicsWidget', second: 'QGraphicsWidget') -> None: ...
def setFocusPolicy(self, policy: QtCore.Qt.FocusPolicy) -> None: ...
def focusPolicy(self) -> QtCore.Qt.FocusPolicy: ...
def windowTitle(self) -> str: ...
def setWindowTitle(self, title: str) -> None: ...
def isActiveWindow(self) -> bool: ...
def setWindowFlags(self, wFlags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType]) -> None: ...
def windowType(self) -> QtCore.Qt.WindowType: ...
def windowFlags(self) -> QtCore.Qt.WindowFlags: ...
def windowFrameRect(self) -> QtCore.QRectF: ...
def windowFrameGeometry(self) -> QtCore.QRectF: ...
def unsetWindowFrameMargins(self) -> None: ...
def getWindowFrameMargins(self) -> typing.Tuple[float, float, float, float]: ...
def setWindowFrameMargins(self, left: float, top: float, right: float, bottom: float) -> None: ...
def getContentsMargins(self) -> typing.Tuple[float, float, float, float]: ...
def setContentsMargins(self, left: float, top: float, right: float, bottom: float) -> None: ...
def rect(self) -> QtCore.QRectF: ...
@typing.overload
def setGeometry(self, rect: QtCore.QRectF) -> None: ...
@typing.overload
def setGeometry(self, ax: float, ay: float, aw: float, ah: float) -> None: ...
def size(self) -> QtCore.QSizeF: ...
@typing.overload
def resize(self, size: QtCore.QSizeF) -> None: ...
@typing.overload
def resize(self, w: float, h: float) -> None: ...
def setPalette(self, palette: QtGui.QPalette) -> None: ...
def palette(self) -> QtGui.QPalette: ...
def setFont(self, font: QtGui.QFont) -> None: ...
def font(self) -> QtGui.QFont: ...
def setStyle(self, style: QStyle) -> None: ...
def style(self) -> QStyle: ...
def unsetLayoutDirection(self) -> None: ...
def setLayoutDirection(self, direction: QtCore.Qt.LayoutDirection) -> None: ...
def layoutDirection(self) -> QtCore.Qt.LayoutDirection: ...
def adjustSize(self) -> None: ...
def setLayout(self, layout: QGraphicsLayout) -> None: ...
def layout(self) -> QGraphicsLayout: ...
class QGraphicsProxyWidget(QGraphicsWidget):
def __init__(self, parent: typing.Optional[QGraphicsItem] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def inputMethodEvent(self, event: QtGui.QInputMethodEvent) -> None: ...
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
def newProxyWidget(self, a0: QWidget) -> 'QGraphicsProxyWidget': ...
def dropEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragMoveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragLeaveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragEnterEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def resizeEvent(self, event: 'QGraphicsSceneResizeEvent') -> None: ...
def sizeHint(self, which: QtCore.Qt.SizeHint, constraint: QtCore.QSizeF = ...) -> QtCore.QSizeF: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def focusOutEvent(self, event: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, event: QtGui.QFocusEvent) -> None: ...
def keyReleaseEvent(self, event: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None: ...
def wheelEvent(self, event: 'QGraphicsSceneWheelEvent') -> None: ...
def mouseDoubleClickEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseReleaseEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mousePressEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseMoveEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def ungrabMouseEvent(self, event: QtCore.QEvent) -> None: ...
def grabMouseEvent(self, event: QtCore.QEvent) -> None: ...
def hoverMoveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def hoverLeaveEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def hoverEnterEvent(self, event: 'QGraphicsSceneHoverEvent') -> None: ...
def contextMenuEvent(self, event: 'QGraphicsSceneContextMenuEvent') -> None: ...
def hideEvent(self, event: QtGui.QHideEvent) -> None: ...
def showEvent(self, event: QtGui.QShowEvent) -> None: ...
def eventFilter(self, object: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: typing.Any) -> typing.Any: ...
def createProxyForChildWidget(self, child: QWidget) -> 'QGraphicsProxyWidget': ...
def type(self) -> int: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionGraphicsItem', widget: QWidget) -> None: ...
def setGeometry(self, rect: QtCore.QRectF) -> None: ...
def subWidgetRect(self, widget: QWidget) -> QtCore.QRectF: ...
def widget(self) -> QWidget: ...
def setWidget(self, widget: QWidget) -> None: ...
class QGraphicsScene(QtCore.QObject):
class SceneLayer(int): ...
ItemLayer = ... # type: 'QGraphicsScene.SceneLayer'
BackgroundLayer = ... # type: 'QGraphicsScene.SceneLayer'
ForegroundLayer = ... # type: 'QGraphicsScene.SceneLayer'
AllLayers = ... # type: 'QGraphicsScene.SceneLayer'
class ItemIndexMethod(int): ...
BspTreeIndex = ... # type: 'QGraphicsScene.ItemIndexMethod'
NoIndex = ... # type: 'QGraphicsScene.ItemIndexMethod'
class SceneLayers(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QGraphicsScene.SceneLayers', 'QGraphicsScene.SceneLayer']) -> None: ...
@typing.overload
def __init__(self, a0: 'QGraphicsScene.SceneLayers') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QGraphicsScene.SceneLayers': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, sceneRect: QtCore.QRectF, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, x: float, y: float, width: float, height: float, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def setFocusOnTouch(self, enabled: bool) -> None: ...
def focusOnTouch(self) -> bool: ...
def focusItemChanged(self, newFocus: QGraphicsItem, oldFocus: QGraphicsItem, reason: QtCore.Qt.FocusReason) -> None: ...
def setMinimumRenderSize(self, minSize: float) -> None: ...
def minimumRenderSize(self) -> float: ...
def sendEvent(self, item: QGraphicsItem, event: QtCore.QEvent) -> bool: ...
def setActivePanel(self, item: QGraphicsItem) -> None: ...
def activePanel(self) -> QGraphicsItem: ...
def isActive(self) -> bool: ...
@typing.overload
def itemAt(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint], deviceTransform: QtGui.QTransform) -> QGraphicsItem: ...
@typing.overload
def itemAt(self, x: float, y: float, deviceTransform: QtGui.QTransform) -> QGraphicsItem: ...
def stickyFocus(self) -> bool: ...
def setStickyFocus(self, enabled: bool) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def eventFilter(self, watched: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def setActiveWindow(self, widget: QGraphicsWidget) -> None: ...
def activeWindow(self) -> QGraphicsWidget: ...
def setPalette(self, palette: QtGui.QPalette) -> None: ...
def palette(self) -> QtGui.QPalette: ...
def setFont(self, font: QtGui.QFont) -> None: ...
def font(self) -> QtGui.QFont: ...
def setStyle(self, style: QStyle) -> None: ...
def style(self) -> QStyle: ...
def addWidget(self, widget: QWidget, flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> QGraphicsProxyWidget: ...
def selectionArea(self) -> QtGui.QPainterPath: ...
def setBspTreeDepth(self, depth: int) -> None: ...
def bspTreeDepth(self) -> int: ...
def drawForeground(self, painter: QtGui.QPainter, rect: QtCore.QRectF) -> None: ...
def drawBackground(self, painter: QtGui.QPainter, rect: QtCore.QRectF) -> None: ...
def inputMethodEvent(self, event: QtGui.QInputMethodEvent) -> None: ...
def wheelEvent(self, event: 'QGraphicsSceneWheelEvent') -> None: ...
def mouseDoubleClickEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseReleaseEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mouseMoveEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def mousePressEvent(self, event: 'QGraphicsSceneMouseEvent') -> None: ...
def keyReleaseEvent(self, event: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None: ...
def helpEvent(self, event: 'QGraphicsSceneHelpEvent') -> None: ...
def focusOutEvent(self, event: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, event: QtGui.QFocusEvent) -> None: ...
def dropEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragLeaveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragMoveEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def dragEnterEvent(self, event: 'QGraphicsSceneDragDropEvent') -> None: ...
def contextMenuEvent(self, event: 'QGraphicsSceneContextMenuEvent') -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def selectionChanged(self) -> None: ...
def sceneRectChanged(self, rect: QtCore.QRectF) -> None: ...
def changed(self, region: typing.Iterable[QtCore.QRectF]) -> None: ...
def clear(self) -> None: ...
@typing.overload
def invalidate(self, rect: QtCore.QRectF = ..., layers: typing.Union['QGraphicsScene.SceneLayers', 'QGraphicsScene.SceneLayer'] = ...) -> None: ...
@typing.overload
def invalidate(self, x: float, y: float, w: float, h: float, layers: typing.Union['QGraphicsScene.SceneLayers', 'QGraphicsScene.SceneLayer'] = ...) -> None: ...
@typing.overload
def update(self, rect: QtCore.QRectF = ...) -> None: ...
@typing.overload
def update(self, x: float, y: float, w: float, h: float) -> None: ...
def advance(self) -> None: ...
def views(self) -> typing.List['QGraphicsView']: ...
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
def setForegroundBrush(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def foregroundBrush(self) -> QtGui.QBrush: ...
def setBackgroundBrush(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def backgroundBrush(self) -> QtGui.QBrush: ...
def mouseGrabberItem(self) -> QGraphicsItem: ...
def clearFocus(self) -> None: ...
def setFocus(self, focusReason: QtCore.Qt.FocusReason = ...) -> None: ...
def hasFocus(self) -> bool: ...
def setFocusItem(self, item: QGraphicsItem, focusReason: QtCore.Qt.FocusReason = ...) -> None: ...
def focusItem(self) -> QGraphicsItem: ...
def removeItem(self, item: QGraphicsItem) -> None: ...
def addText(self, text: str, font: QtGui.QFont = ...) -> QGraphicsTextItem: ...
def addSimpleText(self, text: str, font: QtGui.QFont = ...) -> QGraphicsSimpleTextItem: ...
@typing.overload
def addRect(self, rect: QtCore.QRectF, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ..., brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsRectItem: ...
@typing.overload
def addRect(self, x: float, y: float, w: float, h: float, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ..., brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsRectItem: ...
def addPolygon(self, polygon: QtGui.QPolygonF, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ..., brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsPolygonItem: ...
def addPixmap(self, pixmap: QtGui.QPixmap) -> QGraphicsPixmapItem: ...
def addPath(self, path: QtGui.QPainterPath, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ..., brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsPathItem: ...
@typing.overload
def addLine(self, line: QtCore.QLineF, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsLineItem: ...
@typing.overload
def addLine(self, x1: float, y1: float, x2: float, y2: float, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsLineItem: ...
@typing.overload
def addEllipse(self, rect: QtCore.QRectF, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ..., brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsEllipseItem: ...
@typing.overload
def addEllipse(self, x: float, y: float, w: float, h: float, pen: typing.Union[QtGui.QPen, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ..., brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> QGraphicsEllipseItem: ...
def addItem(self, item: QGraphicsItem) -> None: ...
def destroyItemGroup(self, group: QGraphicsItemGroup) -> None: ...
def createItemGroup(self, items: typing.Iterable[QGraphicsItem]) -> QGraphicsItemGroup: ...
def clearSelection(self) -> None: ...
@typing.overload
def setSelectionArea(self, path: QtGui.QPainterPath, deviceTransform: QtGui.QTransform) -> None: ...
@typing.overload
def setSelectionArea(self, path: QtGui.QPainterPath, mode: QtCore.Qt.ItemSelectionMode = ..., deviceTransform: QtGui.QTransform = ...) -> None: ...
@typing.overload
def setSelectionArea(self, path: QtGui.QPainterPath, selectionOperation: QtCore.Qt.ItemSelectionOperation, mode: QtCore.Qt.ItemSelectionMode = ..., deviceTransform: QtGui.QTransform = ...) -> None: ...
def selectedItems(self) -> typing.List[QGraphicsItem]: ...
def collidingItems(self, item: QGraphicsItem, mode: QtCore.Qt.ItemSelectionMode = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, order: QtCore.Qt.SortOrder = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint], mode: QtCore.Qt.ItemSelectionMode = ..., order: QtCore.Qt.SortOrder = ..., deviceTransform: QtGui.QTransform = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, rect: QtCore.QRectF, mode: QtCore.Qt.ItemSelectionMode = ..., order: QtCore.Qt.SortOrder = ..., deviceTransform: QtGui.QTransform = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, polygon: QtGui.QPolygonF, mode: QtCore.Qt.ItemSelectionMode = ..., order: QtCore.Qt.SortOrder = ..., deviceTransform: QtGui.QTransform = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, path: QtGui.QPainterPath, mode: QtCore.Qt.ItemSelectionMode = ..., order: QtCore.Qt.SortOrder = ..., deviceTransform: QtGui.QTransform = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, x: float, y: float, w: float, h: float, mode: QtCore.Qt.ItemSelectionMode, order: QtCore.Qt.SortOrder, deviceTransform: QtGui.QTransform = ...) -> typing.List[QGraphicsItem]: ...
def itemsBoundingRect(self) -> QtCore.QRectF: ...
def setItemIndexMethod(self, method: 'QGraphicsScene.ItemIndexMethod') -> None: ...
def itemIndexMethod(self) -> 'QGraphicsScene.ItemIndexMethod': ...
def render(self, painter: QtGui.QPainter, target: QtCore.QRectF = ..., source: QtCore.QRectF = ..., mode: QtCore.Qt.AspectRatioMode = ...) -> None: ...
@typing.overload
def setSceneRect(self, rect: QtCore.QRectF) -> None: ...
@typing.overload
def setSceneRect(self, x: float, y: float, w: float, h: float) -> None: ...
def height(self) -> float: ...
def width(self) -> float: ...
def sceneRect(self) -> QtCore.QRectF: ...
class QGraphicsSceneEvent(QtCore.QEvent):
def widget(self) -> QWidget: ...
class QGraphicsSceneMouseEvent(QGraphicsSceneEvent):
def flags(self) -> QtCore.Qt.MouseEventFlags: ...
def source(self) -> QtCore.Qt.MouseEventSource: ...
def modifiers(self) -> QtCore.Qt.KeyboardModifiers: ...
def button(self) -> QtCore.Qt.MouseButton: ...
def buttons(self) -> QtCore.Qt.MouseButtons: ...
def lastScreenPos(self) -> QtCore.QPoint: ...
def lastScenePos(self) -> QtCore.QPointF: ...
def lastPos(self) -> QtCore.QPointF: ...
def buttonDownScreenPos(self, button: QtCore.Qt.MouseButton) -> QtCore.QPoint: ...
def buttonDownScenePos(self, button: QtCore.Qt.MouseButton) -> QtCore.QPointF: ...
def buttonDownPos(self, button: QtCore.Qt.MouseButton) -> QtCore.QPointF: ...
def screenPos(self) -> QtCore.QPoint: ...
def scenePos(self) -> QtCore.QPointF: ...
def pos(self) -> QtCore.QPointF: ...
class QGraphicsSceneWheelEvent(QGraphicsSceneEvent):
def orientation(self) -> QtCore.Qt.Orientation: ...
def delta(self) -> int: ...
def modifiers(self) -> QtCore.Qt.KeyboardModifiers: ...
def buttons(self) -> QtCore.Qt.MouseButtons: ...
def screenPos(self) -> QtCore.QPoint: ...
def scenePos(self) -> QtCore.QPointF: ...
def pos(self) -> QtCore.QPointF: ...
class QGraphicsSceneContextMenuEvent(QGraphicsSceneEvent):
class Reason(int): ...
Mouse = ... # type: 'QGraphicsSceneContextMenuEvent.Reason'
Keyboard = ... # type: 'QGraphicsSceneContextMenuEvent.Reason'
Other = ... # type: 'QGraphicsSceneContextMenuEvent.Reason'
def reason(self) -> 'QGraphicsSceneContextMenuEvent.Reason': ...
def modifiers(self) -> QtCore.Qt.KeyboardModifiers: ...
def screenPos(self) -> QtCore.QPoint: ...
def scenePos(self) -> QtCore.QPointF: ...
def pos(self) -> QtCore.QPointF: ...
class QGraphicsSceneHoverEvent(QGraphicsSceneEvent):
def modifiers(self) -> QtCore.Qt.KeyboardModifiers: ...
def lastScreenPos(self) -> QtCore.QPoint: ...
def lastScenePos(self) -> QtCore.QPointF: ...
def lastPos(self) -> QtCore.QPointF: ...
def screenPos(self) -> QtCore.QPoint: ...
def scenePos(self) -> QtCore.QPointF: ...
def pos(self) -> QtCore.QPointF: ...
class QGraphicsSceneHelpEvent(QGraphicsSceneEvent):
def screenPos(self) -> QtCore.QPoint: ...
def scenePos(self) -> QtCore.QPointF: ...
class QGraphicsSceneDragDropEvent(QGraphicsSceneEvent):
def mimeData(self) -> QtCore.QMimeData: ...
def source(self) -> QWidget: ...
def setDropAction(self, action: QtCore.Qt.DropAction) -> None: ...
def dropAction(self) -> QtCore.Qt.DropAction: ...
def acceptProposedAction(self) -> None: ...
def proposedAction(self) -> QtCore.Qt.DropAction: ...
def possibleActions(self) -> QtCore.Qt.DropActions: ...
def modifiers(self) -> QtCore.Qt.KeyboardModifiers: ...
def buttons(self) -> QtCore.Qt.MouseButtons: ...
def screenPos(self) -> QtCore.QPoint: ...
def scenePos(self) -> QtCore.QPointF: ...
def pos(self) -> QtCore.QPointF: ...
class QGraphicsSceneResizeEvent(QGraphicsSceneEvent):
def __init__(self) -> None: ...
def newSize(self) -> QtCore.QSizeF: ...
def oldSize(self) -> QtCore.QSizeF: ...
class QGraphicsSceneMoveEvent(QGraphicsSceneEvent):
def __init__(self) -> None: ...
def newPos(self) -> QtCore.QPointF: ...
def oldPos(self) -> QtCore.QPointF: ...
class QGraphicsTransform(QtCore.QObject):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def update(self) -> None: ...
def applyTo(self, matrix: QtGui.QMatrix4x4) -> None: ...
class QGraphicsScale(QGraphicsTransform):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def zScaleChanged(self) -> None: ...
def yScaleChanged(self) -> None: ...
def xScaleChanged(self) -> None: ...
def scaleChanged(self) -> None: ...
def originChanged(self) -> None: ...
def applyTo(self, matrix: QtGui.QMatrix4x4) -> None: ...
def setZScale(self, a0: float) -> None: ...
def zScale(self) -> float: ...
def setYScale(self, a0: float) -> None: ...
def yScale(self) -> float: ...
def setXScale(self, a0: float) -> None: ...
def xScale(self) -> float: ...
def setOrigin(self, point: QtGui.QVector3D) -> None: ...
def origin(self) -> QtGui.QVector3D: ...
class QGraphicsRotation(QGraphicsTransform):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def axisChanged(self) -> None: ...
def angleChanged(self) -> None: ...
def originChanged(self) -> None: ...
def applyTo(self, matrix: QtGui.QMatrix4x4) -> None: ...
@typing.overload
def setAxis(self, axis: QtGui.QVector3D) -> None: ...
@typing.overload
def setAxis(self, axis: QtCore.Qt.Axis) -> None: ...
def axis(self) -> QtGui.QVector3D: ...
def setAngle(self, a0: float) -> None: ...
def angle(self) -> float: ...
def setOrigin(self, point: QtGui.QVector3D) -> None: ...
def origin(self) -> QtGui.QVector3D: ...
class QGraphicsView(QAbstractScrollArea):
class OptimizationFlag(int): ...
DontClipPainter = ... # type: 'QGraphicsView.OptimizationFlag'
DontSavePainterState = ... # type: 'QGraphicsView.OptimizationFlag'
DontAdjustForAntialiasing = ... # type: 'QGraphicsView.OptimizationFlag'
class ViewportUpdateMode(int): ...
FullViewportUpdate = ... # type: 'QGraphicsView.ViewportUpdateMode'
MinimalViewportUpdate = ... # type: 'QGraphicsView.ViewportUpdateMode'
SmartViewportUpdate = ... # type: 'QGraphicsView.ViewportUpdateMode'
BoundingRectViewportUpdate = ... # type: 'QGraphicsView.ViewportUpdateMode'
NoViewportUpdate = ... # type: 'QGraphicsView.ViewportUpdateMode'
class ViewportAnchor(int): ...
NoAnchor = ... # type: 'QGraphicsView.ViewportAnchor'
AnchorViewCenter = ... # type: 'QGraphicsView.ViewportAnchor'
AnchorUnderMouse = ... # type: 'QGraphicsView.ViewportAnchor'
class DragMode(int): ...
NoDrag = ... # type: 'QGraphicsView.DragMode'
ScrollHandDrag = ... # type: 'QGraphicsView.DragMode'
RubberBandDrag = ... # type: 'QGraphicsView.DragMode'
class CacheModeFlag(int): ...
CacheNone = ... # type: 'QGraphicsView.CacheModeFlag'
CacheBackground = ... # type: 'QGraphicsView.CacheModeFlag'
class CacheMode(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QGraphicsView.CacheMode', 'QGraphicsView.CacheModeFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QGraphicsView.CacheMode') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QGraphicsView.CacheMode': ...
def __int__(self) -> int: ...
class OptimizationFlags(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QGraphicsView.OptimizationFlags', 'QGraphicsView.OptimizationFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QGraphicsView.OptimizationFlags') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QGraphicsView.OptimizationFlags': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, scene: QGraphicsScene, parent: typing.Optional[QWidget] = ...) -> None: ...
def rubberBandChanged(self, viewportRect: QtCore.QRect, fromScenePoint: typing.Union[QtCore.QPointF, QtCore.QPoint], toScenePoint: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
def rubberBandRect(self) -> QtCore.QRect: ...
def isTransformed(self) -> bool: ...
def resetTransform(self) -> None: ...
def setTransform(self, matrix: QtGui.QTransform, combine: bool = ...) -> None: ...
def viewportTransform(self) -> QtGui.QTransform: ...
def transform(self) -> QtGui.QTransform: ...
def setRubberBandSelectionMode(self, mode: QtCore.Qt.ItemSelectionMode) -> None: ...
def rubberBandSelectionMode(self) -> QtCore.Qt.ItemSelectionMode: ...
def setOptimizationFlags(self, flags: typing.Union['QGraphicsView.OptimizationFlags', 'QGraphicsView.OptimizationFlag']) -> None: ...
def setOptimizationFlag(self, flag: 'QGraphicsView.OptimizationFlag', enabled: bool = ...) -> None: ...
def optimizationFlags(self) -> 'QGraphicsView.OptimizationFlags': ...
def setViewportUpdateMode(self, mode: 'QGraphicsView.ViewportUpdateMode') -> None: ...
def viewportUpdateMode(self) -> 'QGraphicsView.ViewportUpdateMode': ...
def drawForeground(self, painter: QtGui.QPainter, rect: QtCore.QRectF) -> None: ...
def drawBackground(self, painter: QtGui.QPainter, rect: QtCore.QRectF) -> None: ...
def inputMethodEvent(self, event: QtGui.QInputMethodEvent) -> None: ...
def showEvent(self, event: QtGui.QShowEvent) -> None: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def resizeEvent(self, event: QtGui.QResizeEvent) -> None: ...
def paintEvent(self, event: QtGui.QPaintEvent) -> None: ...
def wheelEvent(self, event: QtGui.QWheelEvent) -> None: ...
def mouseReleaseEvent(self, event: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, event: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, event: QtGui.QMouseEvent) -> None: ...
def mouseDoubleClickEvent(self, event: QtGui.QMouseEvent) -> None: ...
def keyReleaseEvent(self, event: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def focusOutEvent(self, event: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, event: QtGui.QFocusEvent) -> None: ...
def dropEvent(self, event: QtGui.QDropEvent) -> None: ...
def dragMoveEvent(self, event: QtGui.QDragMoveEvent) -> None: ...
def dragLeaveEvent(self, event: QtGui.QDragLeaveEvent) -> None: ...
def dragEnterEvent(self, event: QtGui.QDragEnterEvent) -> None: ...
def contextMenuEvent(self, event: QtGui.QContextMenuEvent) -> None: ...
def viewportEvent(self, event: QtCore.QEvent) -> bool: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def setupViewport(self, widget: QWidget) -> None: ...
def updateSceneRect(self, rect: QtCore.QRectF) -> None: ...
def updateScene(self, rects: typing.Iterable[QtCore.QRectF]) -> None: ...
def invalidateScene(self, rect: QtCore.QRectF = ..., layers: typing.Union[QGraphicsScene.SceneLayers, QGraphicsScene.SceneLayer] = ...) -> None: ...
def setForegroundBrush(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def foregroundBrush(self) -> QtGui.QBrush: ...
def setBackgroundBrush(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def backgroundBrush(self) -> QtGui.QBrush: ...
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
@typing.overload
def mapFromScene(self, point: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> QtCore.QPoint: ...
@typing.overload
def mapFromScene(self, rect: QtCore.QRectF) -> QtGui.QPolygon: ...
@typing.overload
def mapFromScene(self, polygon: QtGui.QPolygonF) -> QtGui.QPolygon: ...
@typing.overload
def mapFromScene(self, path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapFromScene(self, ax: float, ay: float) -> QtCore.QPoint: ...
@typing.overload
def mapFromScene(self, ax: float, ay: float, w: float, h: float) -> QtGui.QPolygon: ...
@typing.overload
def mapToScene(self, point: QtCore.QPoint) -> QtCore.QPointF: ...
@typing.overload
def mapToScene(self, rect: QtCore.QRect) -> QtGui.QPolygonF: ...
@typing.overload
def mapToScene(self, polygon: QtGui.QPolygon) -> QtGui.QPolygonF: ...
@typing.overload
def mapToScene(self, path: QtGui.QPainterPath) -> QtGui.QPainterPath: ...
@typing.overload
def mapToScene(self, ax: int, ay: int) -> QtCore.QPointF: ...
@typing.overload
def mapToScene(self, ax: int, ay: int, w: int, h: int) -> QtGui.QPolygonF: ...
@typing.overload
def itemAt(self, pos: QtCore.QPoint) -> QGraphicsItem: ...
@typing.overload
def itemAt(self, ax: int, ay: int) -> QGraphicsItem: ...
@typing.overload
def items(self) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, pos: QtCore.QPoint) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, x: int, y: int) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, x: int, y: int, w: int, h: int, mode: QtCore.Qt.ItemSelectionMode = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, rect: QtCore.QRect, mode: QtCore.Qt.ItemSelectionMode = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, polygon: QtGui.QPolygon, mode: QtCore.Qt.ItemSelectionMode = ...) -> typing.List[QGraphicsItem]: ...
@typing.overload
def items(self, path: QtGui.QPainterPath, mode: QtCore.Qt.ItemSelectionMode = ...) -> typing.List[QGraphicsItem]: ...
def render(self, painter: QtGui.QPainter, target: QtCore.QRectF = ..., source: QtCore.QRect = ..., mode: QtCore.Qt.AspectRatioMode = ...) -> None: ...
@typing.overload
def fitInView(self, rect: QtCore.QRectF, mode: QtCore.Qt.AspectRatioMode = ...) -> None: ...
@typing.overload
def fitInView(self, item: QGraphicsItem, mode: QtCore.Qt.AspectRatioMode = ...) -> None: ...
@typing.overload
def fitInView(self, x: float, y: float, w: float, h: float, mode: QtCore.Qt.AspectRatioMode = ...) -> None: ...
@typing.overload
def ensureVisible(self, rect: QtCore.QRectF, xMargin: int = ..., yMargin: int = ...) -> None: ...
@typing.overload
def ensureVisible(self, item: QGraphicsItem, xMargin: int = ..., yMargin: int = ...) -> None: ...
@typing.overload
def ensureVisible(self, x: float, y: float, w: float, h: float, xMargin: int = ..., yMargin: int = ...) -> None: ...
@typing.overload
def centerOn(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
@typing.overload
def centerOn(self, item: QGraphicsItem) -> None: ...
@typing.overload
def centerOn(self, ax: float, ay: float) -> None: ...
def translate(self, dx: float, dy: float) -> None: ...
def shear(self, sh: float, sv: float) -> None: ...
def scale(self, sx: float, sy: float) -> None: ...
def rotate(self, angle: float) -> None: ...
@typing.overload
def setSceneRect(self, rect: QtCore.QRectF) -> None: ...
@typing.overload
def setSceneRect(self, ax: float, ay: float, aw: float, ah: float) -> None: ...
def sceneRect(self) -> QtCore.QRectF: ...
def setScene(self, scene: QGraphicsScene) -> None: ...
def scene(self) -> QGraphicsScene: ...
def setInteractive(self, allowed: bool) -> None: ...
def isInteractive(self) -> bool: ...
def resetCachedContent(self) -> None: ...
def setCacheMode(self, mode: typing.Union['QGraphicsView.CacheMode', 'QGraphicsView.CacheModeFlag']) -> None: ...
def cacheMode(self) -> 'QGraphicsView.CacheMode': ...
def setDragMode(self, mode: 'QGraphicsView.DragMode') -> None: ...
def dragMode(self) -> 'QGraphicsView.DragMode': ...
def setResizeAnchor(self, anchor: 'QGraphicsView.ViewportAnchor') -> None: ...
def resizeAnchor(self) -> 'QGraphicsView.ViewportAnchor': ...
def setTransformationAnchor(self, anchor: 'QGraphicsView.ViewportAnchor') -> None: ...
def transformationAnchor(self) -> 'QGraphicsView.ViewportAnchor': ...
def setAlignment(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def setRenderHints(self, hints: typing.Union[QtGui.QPainter.RenderHints, QtGui.QPainter.RenderHint]) -> None: ...
def setRenderHint(self, hint: QtGui.QPainter.RenderHint, on: bool = ...) -> None: ...
def renderHints(self) -> QtGui.QPainter.RenderHints: ...
def sizeHint(self) -> QtCore.QSize: ...
class QGridLayout(QLayout):
@typing.overload
def __init__(self, parent: QWidget) -> None: ...
@typing.overload
def __init__(self) -> None: ...
def itemAtPosition(self, row: int, column: int) -> QLayoutItem: ...
def spacing(self) -> int: ...
def setSpacing(self, spacing: int) -> None: ...
def verticalSpacing(self) -> int: ...
def setVerticalSpacing(self, spacing: int) -> None: ...
def horizontalSpacing(self) -> int: ...
def setHorizontalSpacing(self, spacing: int) -> None: ...
def getItemPosition(self, idx: int) -> typing.Tuple[int, int, int, int]: ...
def setDefaultPositioning(self, n: int, orient: QtCore.Qt.Orientation) -> None: ...
@typing.overload
def addItem(self, item: QLayoutItem, row: int, column: int, rowSpan: int = ..., columnSpan: int = ..., alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
@typing.overload
def addItem(self, a0: QLayoutItem) -> None: ...
def setGeometry(self, a0: QtCore.QRect) -> None: ...
def count(self) -> int: ...
def takeAt(self, a0: int) -> QLayoutItem: ...
def itemAt(self, a0: int) -> QLayoutItem: ...
def originCorner(self) -> QtCore.Qt.Corner: ...
def setOriginCorner(self, a0: QtCore.Qt.Corner) -> None: ...
@typing.overload
def addLayout(self, a0: QLayout, row: int, column: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
@typing.overload
def addLayout(self, a0: QLayout, row: int, column: int, rowSpan: int, columnSpan: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
@typing.overload
def addWidget(self, w: QWidget) -> None: ...
@typing.overload
def addWidget(self, a0: QWidget, row: int, column: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
@typing.overload
def addWidget(self, a0: QWidget, row: int, column: int, rowSpan: int, columnSpan: int, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag] = ...) -> None: ...
def invalidate(self) -> None: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def minimumHeightForWidth(self, a0: int) -> int: ...
def heightForWidth(self, a0: int) -> int: ...
def hasHeightForWidth(self) -> bool: ...
def cellRect(self, row: int, column: int) -> QtCore.QRect: ...
def rowCount(self) -> int: ...
def columnCount(self) -> int: ...
def columnMinimumWidth(self, column: int) -> int: ...
def rowMinimumHeight(self, row: int) -> int: ...
def setColumnMinimumWidth(self, column: int, minSize: int) -> None: ...
def setRowMinimumHeight(self, row: int, minSize: int) -> None: ...
def columnStretch(self, column: int) -> int: ...
def rowStretch(self, row: int) -> int: ...
def setColumnStretch(self, column: int, stretch: int) -> None: ...
def setRowStretch(self, row: int, stretch: int) -> None: ...
def maximumSize(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QGroupBox(QWidget):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, title: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def mouseReleaseEvent(self, event: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, event: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, event: QtGui.QMouseEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def focusInEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def childEvent(self, a0: QtCore.QChildEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: 'QStyleOptionGroupBox') -> None: ...
def toggled(self, a0: bool) -> None: ...
def clicked(self, checked: bool = ...) -> None: ...
def setChecked(self, b: bool) -> None: ...
def isChecked(self) -> bool: ...
def setCheckable(self, b: bool) -> None: ...
def isCheckable(self) -> bool: ...
def setFlat(self, b: bool) -> None: ...
def isFlat(self) -> bool: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def setAlignment(self, a0: int) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def setTitle(self, a0: str) -> None: ...
def title(self) -> str: ...
class QHeaderView(QAbstractItemView):
class ResizeMode(int): ...
Interactive = ... # type: 'QHeaderView.ResizeMode'
Fixed = ... # type: 'QHeaderView.ResizeMode'
Stretch = ... # type: 'QHeaderView.ResizeMode'
ResizeToContents = ... # type: 'QHeaderView.ResizeMode'
Custom = ... # type: 'QHeaderView.ResizeMode'
def __init__(self, orientation: QtCore.Qt.Orientation, parent: typing.Optional[QWidget] = ...) -> None: ...
def isFirstSectionMovable(self) -> bool: ...
def setFirstSectionMovable(self, movable: bool) -> None: ...
def resetDefaultSectionSize(self) -> None: ...
def setMaximumSectionSize(self, size: int) -> None: ...
def maximumSectionSize(self) -> int: ...
def resizeContentsPrecision(self) -> int: ...
def setResizeContentsPrecision(self, precision: int) -> None: ...
def setVisible(self, v: bool) -> None: ...
@typing.overload
def setSectionResizeMode(self, logicalIndex: int, mode: 'QHeaderView.ResizeMode') -> None: ...
@typing.overload
def setSectionResizeMode(self, mode: 'QHeaderView.ResizeMode') -> None: ...
def sectionResizeMode(self, logicalIndex: int) -> 'QHeaderView.ResizeMode': ...
def sectionsClickable(self) -> bool: ...
def setSectionsClickable(self, clickable: bool) -> None: ...
def sectionsMovable(self) -> bool: ...
def setSectionsMovable(self, movable: bool) -> None: ...
def initStyleOption(self, option: 'QStyleOptionHeader') -> None: ...
def sortIndicatorChanged(self, logicalIndex: int, order: QtCore.Qt.SortOrder) -> None: ...
def sectionEntered(self, logicalIndex: int) -> None: ...
def setOffsetToLastSection(self) -> None: ...
def reset(self) -> None: ...
def restoreState(self, state: typing.Union[QtCore.QByteArray, bytes, bytearray]) -> bool: ...
def saveState(self) -> QtCore.QByteArray: ...
def setMinimumSectionSize(self, size: int) -> None: ...
def minimumSectionSize(self) -> int: ...
def setCascadingSectionResizes(self, enable: bool) -> None: ...
def cascadingSectionResizes(self) -> bool: ...
def swapSections(self, first: int, second: int) -> None: ...
def sectionsHidden(self) -> bool: ...
def setDefaultAlignment(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def defaultAlignment(self) -> QtCore.Qt.Alignment: ...
def setDefaultSectionSize(self, size: int) -> None: ...
def defaultSectionSize(self) -> int: ...
def hiddenSectionCount(self) -> int: ...
def showSection(self, alogicalIndex: int) -> None: ...
def hideSection(self, alogicalIndex: int) -> None: ...
def visualRegionForSelection(self, selection: QtCore.QItemSelection) -> QtGui.QRegion: ...
def setSelection(self, rect: QtCore.QRect, flags: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def moveCursor(self, a0: QAbstractItemView.CursorAction, a1: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> QtCore.QModelIndex: ...
def isIndexHidden(self, index: QtCore.QModelIndex) -> bool: ...
def indexAt(self, p: QtCore.QPoint) -> QtCore.QModelIndex: ...
def scrollTo(self, index: QtCore.QModelIndex, hint: QAbstractItemView.ScrollHint) -> None: ...
def visualRect(self, index: QtCore.QModelIndex) -> QtCore.QRect: ...
def rowsInserted(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def dataChanged(self, topLeft: QtCore.QModelIndex, bottomRight: QtCore.QModelIndex, roles: typing.Iterable[int] = ...) -> None: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def updateGeometries(self) -> None: ...
def verticalOffset(self) -> int: ...
def horizontalOffset(self) -> int: ...
def sectionSizeFromContents(self, logicalIndex: int) -> QtCore.QSize: ...
def paintSection(self, painter: QtGui.QPainter, rect: QtCore.QRect, logicalIndex: int) -> None: ...
def mouseDoubleClickEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def viewportEvent(self, e: QtCore.QEvent) -> bool: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def currentChanged(self, current: QtCore.QModelIndex, old: QtCore.QModelIndex) -> None: ...
@typing.overload
def initializeSections(self) -> None: ...
@typing.overload
def initializeSections(self, start: int, end: int) -> None: ...
def initialize(self) -> None: ...
def sectionsAboutToBeRemoved(self, parent: QtCore.QModelIndex, logicalFirst: int, logicalLast: int) -> None: ...
def sectionsInserted(self, parent: QtCore.QModelIndex, logicalFirst: int, logicalLast: int) -> None: ...
@typing.overload
def resizeSections(self) -> None: ...
@typing.overload
def resizeSections(self, mode: 'QHeaderView.ResizeMode') -> None: ...
def updateSection(self, logicalIndex: int) -> None: ...
def sectionHandleDoubleClicked(self, logicalIndex: int) -> None: ...
def sectionCountChanged(self, oldCount: int, newCount: int) -> None: ...
def sectionDoubleClicked(self, logicalIndex: int) -> None: ...
def sectionClicked(self, logicalIndex: int) -> None: ...
def sectionPressed(self, logicalIndex: int) -> None: ...
def sectionResized(self, logicalIndex: int, oldSize: int, newSize: int) -> None: ...
def sectionMoved(self, logicalIndex: int, oldVisualIndex: int, newVisualIndex: int) -> None: ...
def geometriesChanged(self) -> None: ...
def setOffsetToSectionPosition(self, visualIndex: int) -> None: ...
def headerDataChanged(self, orientation: QtCore.Qt.Orientation, logicalFirst: int, logicalLast: int) -> None: ...
def setOffset(self, offset: int) -> None: ...
def sectionsMoved(self) -> bool: ...
def setStretchLastSection(self, stretch: bool) -> None: ...
def stretchLastSection(self) -> bool: ...
def sortIndicatorOrder(self) -> QtCore.Qt.SortOrder: ...
def sortIndicatorSection(self) -> int: ...
def setSortIndicator(self, logicalIndex: int, order: QtCore.Qt.SortOrder) -> None: ...
def isSortIndicatorShown(self) -> bool: ...
def setSortIndicatorShown(self, show: bool) -> None: ...
def stretchSectionCount(self) -> int: ...
def highlightSections(self) -> bool: ...
def setHighlightSections(self, highlight: bool) -> None: ...
def logicalIndex(self, visualIndex: int) -> int: ...
def visualIndex(self, logicalIndex: int) -> int: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def setSectionHidden(self, logicalIndex: int, hide: bool) -> None: ...
def isSectionHidden(self, logicalIndex: int) -> bool: ...
def resizeSection(self, logicalIndex: int, size: int) -> None: ...
def moveSection(self, from_: int, to: int) -> None: ...
def sectionViewportPosition(self, logicalIndex: int) -> int: ...
def sectionPosition(self, logicalIndex: int) -> int: ...
def sectionSize(self, logicalIndex: int) -> int: ...
@typing.overload
def logicalIndexAt(self, position: int) -> int: ...
@typing.overload
def logicalIndexAt(self, ax: int, ay: int) -> int: ...
@typing.overload
def logicalIndexAt(self, apos: QtCore.QPoint) -> int: ...
def visualIndexAt(self, position: int) -> int: ...
def sectionSizeHint(self, logicalIndex: int) -> int: ...
def sizeHint(self) -> QtCore.QSize: ...
def length(self) -> int: ...
def offset(self) -> int: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def setModel(self, model: QtCore.QAbstractItemModel) -> None: ...
class QInputDialog(QDialog):
class InputMode(int): ...
TextInput = ... # type: 'QInputDialog.InputMode'
IntInput = ... # type: 'QInputDialog.InputMode'
DoubleInput = ... # type: 'QInputDialog.InputMode'
class InputDialogOption(int): ...
NoButtons = ... # type: 'QInputDialog.InputDialogOption'
UseListViewForComboBoxItems = ... # type: 'QInputDialog.InputDialogOption'
UsePlainTextEditForTextInput = ... # type: 'QInputDialog.InputDialogOption'
class InputDialogOptions(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QInputDialog.InputDialogOptions', 'QInputDialog.InputDialogOption']) -> None: ...
@typing.overload
def __init__(self, a0: 'QInputDialog.InputDialogOptions') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QInputDialog.InputDialogOptions': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def doubleStep(self) -> float: ...
def setDoubleStep(self, step: float) -> None: ...
def doubleValueSelected(self, value: float) -> None: ...
def doubleValueChanged(self, value: float) -> None: ...
def intValueSelected(self, value: int) -> None: ...
def intValueChanged(self, value: int) -> None: ...
def textValueSelected(self, text: str) -> None: ...
def textValueChanged(self, text: str) -> None: ...
def done(self, result: int) -> None: ...
def setVisible(self, visible: bool) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
@typing.overload
def open(self) -> None: ...
@typing.overload
def open(self, slot: PYQT_SLOT) -> None: ...
def cancelButtonText(self) -> str: ...
def setCancelButtonText(self, text: str) -> None: ...
def okButtonText(self) -> str: ...
def setOkButtonText(self, text: str) -> None: ...
def doubleDecimals(self) -> int: ...
def setDoubleDecimals(self, decimals: int) -> None: ...
def setDoubleRange(self, min: float, max: float) -> None: ...
def doubleMaximum(self) -> float: ...
def setDoubleMaximum(self, max: float) -> None: ...
def doubleMinimum(self) -> float: ...
def setDoubleMinimum(self, min: float) -> None: ...
def doubleValue(self) -> float: ...
def setDoubleValue(self, value: float) -> None: ...
def intStep(self) -> int: ...
def setIntStep(self, step: int) -> None: ...
def setIntRange(self, min: int, max: int) -> None: ...
def intMaximum(self) -> int: ...
def setIntMaximum(self, max: int) -> None: ...
def intMinimum(self) -> int: ...
def setIntMinimum(self, min: int) -> None: ...
def intValue(self) -> int: ...
def setIntValue(self, value: int) -> None: ...
def comboBoxItems(self) -> typing.List[str]: ...
def setComboBoxItems(self, items: typing.Iterable[str]) -> None: ...
def isComboBoxEditable(self) -> bool: ...
def setComboBoxEditable(self, editable: bool) -> None: ...
def textEchoMode(self) -> 'QLineEdit.EchoMode': ...
def setTextEchoMode(self, mode: 'QLineEdit.EchoMode') -> None: ...
def textValue(self) -> str: ...
def setTextValue(self, text: str) -> None: ...
def options(self) -> 'QInputDialog.InputDialogOptions': ...
def setOptions(self, options: typing.Union['QInputDialog.InputDialogOptions', 'QInputDialog.InputDialogOption']) -> None: ...
def testOption(self, option: 'QInputDialog.InputDialogOption') -> bool: ...
def setOption(self, option: 'QInputDialog.InputDialogOption', on: bool = ...) -> None: ...
def labelText(self) -> str: ...
def setLabelText(self, text: str) -> None: ...
def inputMode(self) -> 'QInputDialog.InputMode': ...
def setInputMode(self, mode: 'QInputDialog.InputMode') -> None: ...
@staticmethod
def getMultiLineText(parent: QWidget, title: str, label: str, text: str = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ..., inputMethodHints: typing.Union[QtCore.Qt.InputMethodHints, QtCore.Qt.InputMethodHint] = ...) -> typing.Tuple[str, bool]: ...
@staticmethod
def getItem(parent: QWidget, title: str, label: str, items: typing.Iterable[str], current: int = ..., editable: bool = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ..., inputMethodHints: typing.Union[QtCore.Qt.InputMethodHints, QtCore.Qt.InputMethodHint] = ...) -> typing.Tuple[str, bool]: ...
@typing.overload
@staticmethod
def getDouble(parent: QWidget, title: str, label: str, value: float = ..., min: float = ..., max: float = ..., decimals: int = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> typing.Tuple[float, bool]: ...
@typing.overload
@staticmethod
def getDouble(parent: QWidget, title: str, label: str, value: float, minValue: float, maxValue: float, decimals: int, flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType], step: float) -> typing.Tuple[float, bool]: ...
@staticmethod
def getInt(parent: QWidget, title: str, label: str, value: int = ..., min: int = ..., max: int = ..., step: int = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> typing.Tuple[int, bool]: ...
@staticmethod
def getText(parent: QWidget, title: str, label: str, echo: 'QLineEdit.EchoMode' = ..., text: str = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ..., inputMethodHints: typing.Union[QtCore.Qt.InputMethodHints, QtCore.Qt.InputMethodHint] = ...) -> typing.Tuple[str, bool]: ...
class QItemDelegate(QAbstractItemDelegate):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def editorEvent(self, event: QtCore.QEvent, model: QtCore.QAbstractItemModel, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> bool: ...
def eventFilter(self, object: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def drawFocus(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', rect: QtCore.QRect) -> None: ...
def drawDisplay(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', rect: QtCore.QRect, text: str) -> None: ...
def drawDecoration(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', rect: QtCore.QRect, pixmap: QtGui.QPixmap) -> None: ...
def drawCheck(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', rect: QtCore.QRect, state: QtCore.Qt.CheckState) -> None: ...
def drawBackground(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
def setClipping(self, clip: bool) -> None: ...
def hasClipping(self) -> bool: ...
def setItemEditorFactory(self, factory: 'QItemEditorFactory') -> None: ...
def itemEditorFactory(self) -> 'QItemEditorFactory': ...
def updateEditorGeometry(self, editor: QWidget, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
def setModelData(self, editor: QWidget, model: QtCore.QAbstractItemModel, index: QtCore.QModelIndex) -> None: ...
def setEditorData(self, editor: QWidget, index: QtCore.QModelIndex) -> None: ...
def createEditor(self, parent: QWidget, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> QWidget: ...
def sizeHint(self, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> QtCore.QSize: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
class QItemEditorCreatorBase(sip.wrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QItemEditorCreatorBase') -> None: ...
def valuePropertyName(self) -> QtCore.QByteArray: ...
def createWidget(self, parent: QWidget) -> QWidget: ...
class QItemEditorFactory(sip.wrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QItemEditorFactory') -> None: ...
@staticmethod
def setDefaultFactory(factory: 'QItemEditorFactory') -> None: ...
@staticmethod
def defaultFactory() -> 'QItemEditorFactory': ...
def registerEditor(self, userType: int, creator: QItemEditorCreatorBase) -> None: ...
def valuePropertyName(self, userType: int) -> QtCore.QByteArray: ...
def createEditor(self, userType: int, parent: QWidget) -> QWidget: ...
class QKeyEventTransition(QtCore.QEventTransition):
@typing.overload
def __init__(self, sourceState: typing.Optional[QtCore.QState] = ...) -> None: ...
@typing.overload
def __init__(self, object: QtCore.QObject, type: QtCore.QEvent.Type, key: int, sourceState: typing.Optional[QtCore.QState] = ...) -> None: ...
def eventTest(self, event: QtCore.QEvent) -> bool: ...
def onTransition(self, event: QtCore.QEvent) -> None: ...
def setModifierMask(self, modifiers: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> None: ...
def modifierMask(self) -> QtCore.Qt.KeyboardModifiers: ...
def setKey(self, key: int) -> None: ...
def key(self) -> int: ...
class QKeySequenceEdit(QWidget):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, keySequence: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int], parent: typing.Optional[QWidget] = ...) -> None: ...
def timerEvent(self, a0: QtCore.QTimerEvent) -> None: ...
def keyReleaseEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def keySequenceChanged(self, keySequence: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int]) -> None: ...
def editingFinished(self) -> None: ...
def clear(self) -> None: ...
def setKeySequence(self, keySequence: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int]) -> None: ...
def keySequence(self) -> QtGui.QKeySequence: ...
class QLabel(QFrame):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def selectionStart(self) -> int: ...
def selectedText(self) -> str: ...
def hasSelectedText(self) -> bool: ...
def setSelection(self, a0: int, a1: int) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def focusOutEvent(self, ev: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, ev: QtGui.QFocusEvent) -> None: ...
def contextMenuEvent(self, ev: QtGui.QContextMenuEvent) -> None: ...
def mouseReleaseEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def keyPressEvent(self, ev: QtGui.QKeyEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def linkHovered(self, link: str) -> None: ...
def linkActivated(self, link: str) -> None: ...
def setText(self, a0: str) -> None: ...
def setPixmap(self, a0: QtGui.QPixmap) -> None: ...
def setPicture(self, a0: QtGui.QPicture) -> None: ...
@typing.overload
def setNum(self, a0: float) -> None: ...
@typing.overload
def setNum(self, a0: int) -> None: ...
def setMovie(self, movie: QtGui.QMovie) -> None: ...
def clear(self) -> None: ...
def setOpenExternalLinks(self, open: bool) -> None: ...
def textInteractionFlags(self) -> QtCore.Qt.TextInteractionFlags: ...
def setTextInteractionFlags(self, flags: typing.Union[QtCore.Qt.TextInteractionFlags, QtCore.Qt.TextInteractionFlag]) -> None: ...
def openExternalLinks(self) -> bool: ...
def heightForWidth(self, a0: int) -> int: ...
def buddy(self) -> QWidget: ...
def setBuddy(self, a0: QWidget) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def setScaledContents(self, a0: bool) -> None: ...
def hasScaledContents(self) -> bool: ...
def setMargin(self, a0: int) -> None: ...
def margin(self) -> int: ...
def setIndent(self, a0: int) -> None: ...
def indent(self) -> int: ...
def wordWrap(self) -> bool: ...
def setWordWrap(self, on: bool) -> None: ...
def setAlignment(self, a0: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def setTextFormat(self, a0: QtCore.Qt.TextFormat) -> None: ...
def textFormat(self) -> QtCore.Qt.TextFormat: ...
def movie(self) -> QtGui.QMovie: ...
def picture(self) -> QtGui.QPicture: ...
def pixmap(self) -> QtGui.QPixmap: ...
def text(self) -> str: ...
class QSpacerItem(QLayoutItem):
@typing.overload
def __init__(self, w: int, h: int, hPolicy: 'QSizePolicy.Policy' = ..., vPolicy: 'QSizePolicy.Policy' = ...) -> None: ...
@typing.overload
def __init__(self, a0: 'QSpacerItem') -> None: ...
def sizePolicy(self) -> 'QSizePolicy': ...
def spacerItem(self) -> 'QSpacerItem': ...
def geometry(self) -> QtCore.QRect: ...
def setGeometry(self, a0: QtCore.QRect) -> None: ...
def isEmpty(self) -> bool: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def maximumSize(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def changeSize(self, w: int, h: int, hPolicy: 'QSizePolicy.Policy' = ..., vPolicy: 'QSizePolicy.Policy' = ...) -> None: ...
class QWidgetItem(QLayoutItem):
def __init__(self, w: QWidget) -> None: ...
def controlTypes(self) -> 'QSizePolicy.ControlTypes': ...
def heightForWidth(self, a0: int) -> int: ...
def hasHeightForWidth(self) -> bool: ...
def widget(self) -> QWidget: ...
def geometry(self) -> QtCore.QRect: ...
def setGeometry(self, a0: QtCore.QRect) -> None: ...
def isEmpty(self) -> bool: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def maximumSize(self) -> QtCore.QSize: ...
def minimumSize(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QLCDNumber(QFrame):
class SegmentStyle(int): ...
Outline = ... # type: 'QLCDNumber.SegmentStyle'
Filled = ... # type: 'QLCDNumber.SegmentStyle'
Flat = ... # type: 'QLCDNumber.SegmentStyle'
class Mode(int): ...
Hex = ... # type: 'QLCDNumber.Mode'
Dec = ... # type: 'QLCDNumber.Mode'
Oct = ... # type: 'QLCDNumber.Mode'
Bin = ... # type: 'QLCDNumber.Mode'
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, numDigits: int, parent: typing.Optional[QWidget] = ...) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def overflow(self) -> None: ...
def setSmallDecimalPoint(self, a0: bool) -> None: ...
def setBinMode(self) -> None: ...
def setOctMode(self) -> None: ...
def setDecMode(self) -> None: ...
def setHexMode(self) -> None: ...
@typing.overload
def display(self, str: str) -> None: ...
@typing.overload
def display(self, num: float) -> None: ...
@typing.overload
def display(self, num: int) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def intValue(self) -> int: ...
def value(self) -> float: ...
def setSegmentStyle(self, a0: 'QLCDNumber.SegmentStyle') -> None: ...
def segmentStyle(self) -> 'QLCDNumber.SegmentStyle': ...
def setMode(self, a0: 'QLCDNumber.Mode') -> None: ...
def mode(self) -> 'QLCDNumber.Mode': ...
@typing.overload
def checkOverflow(self, num: float) -> bool: ...
@typing.overload
def checkOverflow(self, num: int) -> bool: ...
def setNumDigits(self, nDigits: int) -> None: ...
def setDigitCount(self, nDigits: int) -> None: ...
def digitCount(self) -> int: ...
def smallDecimalPoint(self) -> bool: ...
class QLineEdit(QWidget):
class ActionPosition(int): ...
LeadingPosition = ... # type: 'QLineEdit.ActionPosition'
TrailingPosition = ... # type: 'QLineEdit.ActionPosition'
class EchoMode(int): ...
Normal = ... # type: 'QLineEdit.EchoMode'
NoEcho = ... # type: 'QLineEdit.EchoMode'
Password = ... # type: 'QLineEdit.EchoMode'
PasswordEchoOnEdit = ... # type: 'QLineEdit.EchoMode'
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, contents: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def inputRejected(self) -> None: ...
def selectionLength(self) -> int: ...
def selectionEnd(self) -> int: ...
@typing.overload
def addAction(self, action: QAction) -> None: ...
@typing.overload
def addAction(self, action: QAction, position: 'QLineEdit.ActionPosition') -> None: ...
@typing.overload
def addAction(self, icon: QtGui.QIcon, position: 'QLineEdit.ActionPosition') -> QAction: ...
def isClearButtonEnabled(self) -> bool: ...
def setClearButtonEnabled(self, enable: bool) -> None: ...
def cursorMoveStyle(self) -> QtCore.Qt.CursorMoveStyle: ...
def setCursorMoveStyle(self, style: QtCore.Qt.CursorMoveStyle) -> None: ...
def setPlaceholderText(self, a0: str) -> None: ...
def placeholderText(self) -> str: ...
def textMargins(self) -> QtCore.QMargins: ...
def getTextMargins(self) -> typing.Tuple[int, int, int, int]: ...
@typing.overload
def setTextMargins(self, left: int, top: int, right: int, bottom: int) -> None: ...
@typing.overload
def setTextMargins(self, margins: QtCore.QMargins) -> None: ...
def completer(self) -> QCompleter: ...
def setCompleter(self, completer: QCompleter) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
@typing.overload
def inputMethodQuery(self, a0: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
@typing.overload
def inputMethodQuery(self, property: QtCore.Qt.InputMethodQuery, argument: typing.Any) -> typing.Any: ...
def cursorRect(self) -> QtCore.QRect: ...
def inputMethodEvent(self, a0: QtGui.QInputMethodEvent) -> None: ...
def contextMenuEvent(self, a0: QtGui.QContextMenuEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def dropEvent(self, a0: QtGui.QDropEvent) -> None: ...
def dragLeaveEvent(self, e: QtGui.QDragLeaveEvent) -> None: ...
def dragMoveEvent(self, e: QtGui.QDragMoveEvent) -> None: ...
def dragEnterEvent(self, a0: QtGui.QDragEnterEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def focusOutEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def mouseDoubleClickEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionFrame') -> None: ...
def selectionChanged(self) -> None: ...
def editingFinished(self) -> None: ...
def returnPressed(self) -> None: ...
def cursorPositionChanged(self, a0: int, a1: int) -> None: ...
def textEdited(self, a0: str) -> None: ...
def textChanged(self, a0: str) -> None: ...
def createStandardContextMenu(self) -> 'QMenu': ...
def insert(self, a0: str) -> None: ...
def deselect(self) -> None: ...
def paste(self) -> None: ...
def copy(self) -> None: ...
def cut(self) -> None: ...
def redo(self) -> None: ...
def undo(self) -> None: ...
def selectAll(self) -> None: ...
def clear(self) -> None: ...
def setText(self, a0: str) -> None: ...
def hasAcceptableInput(self) -> bool: ...
def setInputMask(self, inputMask: str) -> None: ...
def inputMask(self) -> str: ...
def dragEnabled(self) -> bool: ...
def setDragEnabled(self, b: bool) -> None: ...
def isRedoAvailable(self) -> bool: ...
def isUndoAvailable(self) -> bool: ...
def selectionStart(self) -> int: ...
def selectedText(self) -> str: ...
def hasSelectedText(self) -> bool: ...
def setSelection(self, a0: int, a1: int) -> None: ...
def setModified(self, a0: bool) -> None: ...
def isModified(self) -> bool: ...
def end(self, mark: bool) -> None: ...
def home(self, mark: bool) -> None: ...
def del_(self) -> None: ...
def backspace(self) -> None: ...
def cursorWordBackward(self, mark: bool) -> None: ...
def cursorWordForward(self, mark: bool) -> None: ...
def cursorBackward(self, mark: bool, steps: int = ...) -> None: ...
def cursorForward(self, mark: bool, steps: int = ...) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def setAlignment(self, flag: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def cursorPositionAt(self, pos: QtCore.QPoint) -> int: ...
def setCursorPosition(self, a0: int) -> None: ...
def cursorPosition(self) -> int: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def validator(self) -> QtGui.QValidator: ...
def setValidator(self, a0: QtGui.QValidator) -> None: ...
def setReadOnly(self, a0: bool) -> None: ...
def isReadOnly(self) -> bool: ...
def setEchoMode(self, a0: 'QLineEdit.EchoMode') -> None: ...
def echoMode(self) -> 'QLineEdit.EchoMode': ...
def hasFrame(self) -> bool: ...
def setFrame(self, a0: bool) -> None: ...
def setMaxLength(self, a0: int) -> None: ...
def maxLength(self) -> int: ...
def displayText(self) -> str: ...
def text(self) -> str: ...
class QListView(QAbstractItemView):
class ViewMode(int): ...
ListMode = ... # type: 'QListView.ViewMode'
IconMode = ... # type: 'QListView.ViewMode'
class LayoutMode(int): ...
SinglePass = ... # type: 'QListView.LayoutMode'
Batched = ... # type: 'QListView.LayoutMode'
class ResizeMode(int): ...
Fixed = ... # type: 'QListView.ResizeMode'
Adjust = ... # type: 'QListView.ResizeMode'
class Flow(int): ...
LeftToRight = ... # type: 'QListView.Flow'
TopToBottom = ... # type: 'QListView.Flow'
class Movement(int): ...
Static = ... # type: 'QListView.Movement'
Free = ... # type: 'QListView.Movement'
Snap = ... # type: 'QListView.Movement'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def itemAlignment(self) -> QtCore.Qt.Alignment: ...
def setItemAlignment(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def currentChanged(self, current: QtCore.QModelIndex, previous: QtCore.QModelIndex) -> None: ...
def selectionChanged(self, selected: QtCore.QItemSelection, deselected: QtCore.QItemSelection) -> None: ...
def isSelectionRectVisible(self) -> bool: ...
def setSelectionRectVisible(self, show: bool) -> None: ...
def wordWrap(self) -> bool: ...
def setWordWrap(self, on: bool) -> None: ...
def batchSize(self) -> int: ...
def setBatchSize(self, batchSize: int) -> None: ...
def viewportSizeHint(self) -> QtCore.QSize: ...
def isIndexHidden(self, index: QtCore.QModelIndex) -> bool: ...
def updateGeometries(self) -> None: ...
def selectedIndexes(self) -> typing.List[QtCore.QModelIndex]: ...
def visualRegionForSelection(self, selection: QtCore.QItemSelection) -> QtGui.QRegion: ...
def setSelection(self, rect: QtCore.QRect, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def setPositionForIndex(self, position: QtCore.QPoint, index: QtCore.QModelIndex) -> None: ...
def rectForIndex(self, index: QtCore.QModelIndex) -> QtCore.QRect: ...
def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, modifiers: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> QtCore.QModelIndex: ...
def verticalOffset(self) -> int: ...
def horizontalOffset(self) -> int: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def viewOptions(self) -> 'QStyleOptionViewItem': ...
def startDrag(self, supportedActions: typing.Union[QtCore.Qt.DropActions, QtCore.Qt.DropAction]) -> None: ...
def wheelEvent(self, e: QtGui.QWheelEvent) -> None: ...
def dropEvent(self, e: QtGui.QDropEvent) -> None: ...
def dragLeaveEvent(self, e: QtGui.QDragLeaveEvent) -> None: ...
def dragMoveEvent(self, e: QtGui.QDragMoveEvent) -> None: ...
def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
def timerEvent(self, e: QtCore.QTimerEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def rowsAboutToBeRemoved(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def rowsInserted(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def dataChanged(self, topLeft: QtCore.QModelIndex, bottomRight: QtCore.QModelIndex, roles: typing.Iterable[int] = ...) -> None: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def indexesMoved(self, indexes: typing.Iterable[QtCore.QModelIndex]) -> None: ...
def setRootIndex(self, index: QtCore.QModelIndex) -> None: ...
def reset(self) -> None: ...
def indexAt(self, p: QtCore.QPoint) -> QtCore.QModelIndex: ...
def scrollTo(self, index: QtCore.QModelIndex, hint: QAbstractItemView.ScrollHint = ...) -> None: ...
def visualRect(self, index: QtCore.QModelIndex) -> QtCore.QRect: ...
def uniformItemSizes(self) -> bool: ...
def setUniformItemSizes(self, enable: bool) -> None: ...
def modelColumn(self) -> int: ...
def setModelColumn(self, column: int) -> None: ...
def setRowHidden(self, row: int, hide: bool) -> None: ...
def isRowHidden(self, row: int) -> bool: ...
def clearPropertyFlags(self) -> None: ...
def viewMode(self) -> 'QListView.ViewMode': ...
def setViewMode(self, mode: 'QListView.ViewMode') -> None: ...
def gridSize(self) -> QtCore.QSize: ...
def setGridSize(self, size: QtCore.QSize) -> None: ...
def spacing(self) -> int: ...
def setSpacing(self, space: int) -> None: ...
def layoutMode(self) -> 'QListView.LayoutMode': ...
def setLayoutMode(self, mode: 'QListView.LayoutMode') -> None: ...
def resizeMode(self) -> 'QListView.ResizeMode': ...
def setResizeMode(self, mode: 'QListView.ResizeMode') -> None: ...
def isWrapping(self) -> bool: ...
def setWrapping(self, enable: bool) -> None: ...
def flow(self) -> 'QListView.Flow': ...
def setFlow(self, flow: 'QListView.Flow') -> None: ...
def movement(self) -> 'QListView.Movement': ...
def setMovement(self, movement: 'QListView.Movement') -> None: ...
class QListWidgetItem(sip.wrapper):
class ItemType(int): ...
Type = ... # type: 'QListWidgetItem.ItemType'
UserType = ... # type: 'QListWidgetItem.ItemType'
@typing.overload
def __init__(self, parent: typing.Optional['QListWidget'] = ..., type: int = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional['QListWidget'] = ..., type: int = ...) -> None: ...
@typing.overload
def __init__(self, icon: QtGui.QIcon, text: str, parent: typing.Optional['QListWidget'] = ..., type: int = ...) -> None: ...
@typing.overload
def __init__(self, other: 'QListWidgetItem') -> None: ...
def isHidden(self) -> bool: ...
def setHidden(self, ahide: bool) -> None: ...
def isSelected(self) -> bool: ...
def setSelected(self, aselect: bool) -> None: ...
def setForeground(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def foreground(self) -> QtGui.QBrush: ...
def setBackground(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def background(self) -> QtGui.QBrush: ...
def setFont(self, afont: QtGui.QFont) -> None: ...
def setWhatsThis(self, awhatsThis: str) -> None: ...
def setToolTip(self, atoolTip: str) -> None: ...
def setStatusTip(self, astatusTip: str) -> None: ...
def setIcon(self, aicon: QtGui.QIcon) -> None: ...
def setText(self, atext: str) -> None: ...
def setFlags(self, aflags: typing.Union[QtCore.Qt.ItemFlags, QtCore.Qt.ItemFlag]) -> None: ...
def type(self) -> int: ...
def write(self, out: QtCore.QDataStream) -> None: ...
def read(self, in_: QtCore.QDataStream) -> None: ...
def setData(self, role: int, value: typing.Any) -> None: ...
def data(self, role: int) -> typing.Any: ...
def setSizeHint(self, size: QtCore.QSize) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def setCheckState(self, state: QtCore.Qt.CheckState) -> None: ...
def checkState(self) -> QtCore.Qt.CheckState: ...
def setTextAlignment(self, alignment: int) -> None: ...
def textAlignment(self) -> int: ...
def font(self) -> QtGui.QFont: ...
def whatsThis(self) -> str: ...
def toolTip(self) -> str: ...
def statusTip(self) -> str: ...
def icon(self) -> QtGui.QIcon: ...
def text(self) -> str: ...
def flags(self) -> QtCore.Qt.ItemFlags: ...
def listWidget(self) -> 'QListWidget': ...
def clone(self) -> 'QListWidgetItem': ...
class QListWidget(QListView):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def isPersistentEditorOpen(self, item: QListWidgetItem) -> bool: ...
def setSelectionModel(self, selectionModel: QtCore.QItemSelectionModel) -> None: ...
def removeItemWidget(self, aItem: QListWidgetItem) -> None: ...
def dropEvent(self, event: QtGui.QDropEvent) -> None: ...
def isSortingEnabled(self) -> bool: ...
def setSortingEnabled(self, enable: bool) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def itemFromIndex(self, index: QtCore.QModelIndex) -> QListWidgetItem: ...
def indexFromItem(self, item: QListWidgetItem) -> QtCore.QModelIndex: ...
def items(self, data: QtCore.QMimeData) -> typing.List[QListWidgetItem]: ...
def supportedDropActions(self) -> QtCore.Qt.DropActions: ...
def dropMimeData(self, index: int, data: QtCore.QMimeData, action: QtCore.Qt.DropAction) -> bool: ...
def mimeData(self, items: typing.Iterable[QListWidgetItem]) -> QtCore.QMimeData: ...
def mimeTypes(self) -> typing.List[str]: ...
def itemSelectionChanged(self) -> None: ...
def currentRowChanged(self, currentRow: int) -> None: ...
def currentTextChanged(self, currentText: str) -> None: ...
def currentItemChanged(self, current: QListWidgetItem, previous: QListWidgetItem) -> None: ...
def itemChanged(self, item: QListWidgetItem) -> None: ...
def itemEntered(self, item: QListWidgetItem) -> None: ...
def itemActivated(self, item: QListWidgetItem) -> None: ...
def itemDoubleClicked(self, item: QListWidgetItem) -> None: ...
def itemClicked(self, item: QListWidgetItem) -> None: ...
def itemPressed(self, item: QListWidgetItem) -> None: ...
def scrollToItem(self, item: QListWidgetItem, hint: QAbstractItemView.ScrollHint = ...) -> None: ...
def clear(self) -> None: ...
def findItems(self, text: str, flags: typing.Union[QtCore.Qt.MatchFlags, QtCore.Qt.MatchFlag]) -> typing.List[QListWidgetItem]: ...
def selectedItems(self) -> typing.List[QListWidgetItem]: ...
def closePersistentEditor(self, item: QListWidgetItem) -> None: ...
def openPersistentEditor(self, item: QListWidgetItem) -> None: ...
def editItem(self, item: QListWidgetItem) -> None: ...
def sortItems(self, order: QtCore.Qt.SortOrder = ...) -> None: ...
def visualItemRect(self, item: QListWidgetItem) -> QtCore.QRect: ...
def setItemWidget(self, item: QListWidgetItem, widget: QWidget) -> None: ...
def itemWidget(self, item: QListWidgetItem) -> QWidget: ...
@typing.overload
def itemAt(self, p: QtCore.QPoint) -> QListWidgetItem: ...
@typing.overload
def itemAt(self, ax: int, ay: int) -> QListWidgetItem: ...
@typing.overload
def setCurrentRow(self, row: int) -> None: ...
@typing.overload
def setCurrentRow(self, row: int, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def currentRow(self) -> int: ...
@typing.overload
def setCurrentItem(self, item: QListWidgetItem) -> None: ...
@typing.overload
def setCurrentItem(self, item: QListWidgetItem, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def currentItem(self) -> QListWidgetItem: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def takeItem(self, row: int) -> QListWidgetItem: ...
def addItems(self, labels: typing.Iterable[str]) -> None: ...
@typing.overload
def addItem(self, aitem: QListWidgetItem) -> None: ...
@typing.overload
def addItem(self, label: str) -> None: ...
def insertItems(self, row: int, labels: typing.Iterable[str]) -> None: ...
@typing.overload
def insertItem(self, row: int, item: QListWidgetItem) -> None: ...
@typing.overload
def insertItem(self, row: int, label: str) -> None: ...
def row(self, item: QListWidgetItem) -> int: ...
def item(self, row: int) -> QListWidgetItem: ...
class QMainWindow(QWidget):
class DockOption(int): ...
AnimatedDocks = ... # type: 'QMainWindow.DockOption'
AllowNestedDocks = ... # type: 'QMainWindow.DockOption'
AllowTabbedDocks = ... # type: 'QMainWindow.DockOption'
ForceTabbedDocks = ... # type: 'QMainWindow.DockOption'
VerticalTabs = ... # type: 'QMainWindow.DockOption'
GroupedDragging = ... # type: 'QMainWindow.DockOption'
class DockOptions(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QMainWindow.DockOptions', 'QMainWindow.DockOption']) -> None: ...
@typing.overload
def __init__(self, a0: 'QMainWindow.DockOptions') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QMainWindow.DockOptions': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def resizeDocks(self, docks: typing.Iterable[QDockWidget], sizes: typing.Iterable[int], orientation: QtCore.Qt.Orientation) -> None: ...
def takeCentralWidget(self) -> QWidget: ...
def tabifiedDockWidgets(self, dockwidget: QDockWidget) -> typing.List[QDockWidget]: ...
def setTabPosition(self, areas: typing.Union[QtCore.Qt.DockWidgetAreas, QtCore.Qt.DockWidgetArea], tabPosition: 'QTabWidget.TabPosition') -> None: ...
def tabPosition(self, area: QtCore.Qt.DockWidgetArea) -> 'QTabWidget.TabPosition': ...
def setTabShape(self, tabShape: 'QTabWidget.TabShape') -> None: ...
def tabShape(self) -> 'QTabWidget.TabShape': ...
def setDocumentMode(self, enabled: bool) -> None: ...
def documentMode(self) -> bool: ...
def restoreDockWidget(self, dockwidget: QDockWidget) -> bool: ...
def unifiedTitleAndToolBarOnMac(self) -> bool: ...
def setUnifiedTitleAndToolBarOnMac(self, set: bool) -> None: ...
def toolBarBreak(self, toolbar: 'QToolBar') -> bool: ...
def removeToolBarBreak(self, before: 'QToolBar') -> None: ...
def dockOptions(self) -> 'QMainWindow.DockOptions': ...
def setDockOptions(self, options: typing.Union['QMainWindow.DockOptions', 'QMainWindow.DockOption']) -> None: ...
def tabifyDockWidget(self, first: QDockWidget, second: QDockWidget) -> None: ...
def setMenuWidget(self, menubar: QWidget) -> None: ...
def menuWidget(self) -> QWidget: ...
def isSeparator(self, pos: QtCore.QPoint) -> bool: ...
def isDockNestingEnabled(self) -> bool: ...
def isAnimated(self) -> bool: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def contextMenuEvent(self, event: QtGui.QContextMenuEvent) -> None: ...
def tabifiedDockWidgetActivated(self, dockWidget: QDockWidget) -> None: ...
def toolButtonStyleChanged(self, toolButtonStyle: QtCore.Qt.ToolButtonStyle) -> None: ...
def iconSizeChanged(self, iconSize: QtCore.QSize) -> None: ...
def setDockNestingEnabled(self, enabled: bool) -> None: ...
def setAnimated(self, enabled: bool) -> None: ...
def createPopupMenu(self) -> 'QMenu': ...
def restoreState(self, state: typing.Union[QtCore.QByteArray, bytes, bytearray], version: int = ...) -> bool: ...
def saveState(self, version: int = ...) -> QtCore.QByteArray: ...
def dockWidgetArea(self, dockwidget: QDockWidget) -> QtCore.Qt.DockWidgetArea: ...
def removeDockWidget(self, dockwidget: QDockWidget) -> None: ...
def splitDockWidget(self, after: QDockWidget, dockwidget: QDockWidget, orientation: QtCore.Qt.Orientation) -> None: ...
@typing.overload
def addDockWidget(self, area: QtCore.Qt.DockWidgetArea, dockwidget: QDockWidget) -> None: ...
@typing.overload
def addDockWidget(self, area: QtCore.Qt.DockWidgetArea, dockwidget: QDockWidget, orientation: QtCore.Qt.Orientation) -> None: ...
def toolBarArea(self, toolbar: 'QToolBar') -> QtCore.Qt.ToolBarArea: ...
def removeToolBar(self, toolbar: 'QToolBar') -> None: ...
def insertToolBar(self, before: 'QToolBar', toolbar: 'QToolBar') -> None: ...
@typing.overload
def addToolBar(self, area: QtCore.Qt.ToolBarArea, toolbar: 'QToolBar') -> None: ...
@typing.overload
def addToolBar(self, toolbar: 'QToolBar') -> None: ...
@typing.overload
def addToolBar(self, title: str) -> 'QToolBar': ...
def insertToolBarBreak(self, before: 'QToolBar') -> None: ...
def addToolBarBreak(self, area: QtCore.Qt.ToolBarArea = ...) -> None: ...
def corner(self, corner: QtCore.Qt.Corner) -> QtCore.Qt.DockWidgetArea: ...
def setCorner(self, corner: QtCore.Qt.Corner, area: QtCore.Qt.DockWidgetArea) -> None: ...
def setCentralWidget(self, widget: QWidget) -> None: ...
def centralWidget(self) -> QWidget: ...
def setStatusBar(self, statusbar: 'QStatusBar') -> None: ...
def statusBar(self) -> 'QStatusBar': ...
def setMenuBar(self, menubar: 'QMenuBar') -> None: ...
def menuBar(self) -> 'QMenuBar': ...
def setToolButtonStyle(self, toolButtonStyle: QtCore.Qt.ToolButtonStyle) -> None: ...
def toolButtonStyle(self) -> QtCore.Qt.ToolButtonStyle: ...
def setIconSize(self, iconSize: QtCore.QSize) -> None: ...
def iconSize(self) -> QtCore.QSize: ...
class QMdiArea(QAbstractScrollArea):
class WindowOrder(int): ...
CreationOrder = ... # type: 'QMdiArea.WindowOrder'
StackingOrder = ... # type: 'QMdiArea.WindowOrder'
ActivationHistoryOrder = ... # type: 'QMdiArea.WindowOrder'
class ViewMode(int): ...
SubWindowView = ... # type: 'QMdiArea.ViewMode'
TabbedView = ... # type: 'QMdiArea.ViewMode'
class AreaOption(int): ...
DontMaximizeSubWindowOnActivation = ... # type: 'QMdiArea.AreaOption'
class AreaOptions(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QMdiArea.AreaOptions', 'QMdiArea.AreaOption']) -> None: ...
@typing.overload
def __init__(self, a0: 'QMdiArea.AreaOptions') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QMdiArea.AreaOptions': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def tabsMovable(self) -> bool: ...
def setTabsMovable(self, movable: bool) -> None: ...
def tabsClosable(self) -> bool: ...
def setTabsClosable(self, closable: bool) -> None: ...
def setDocumentMode(self, enabled: bool) -> None: ...
def documentMode(self) -> bool: ...
def tabPosition(self) -> 'QTabWidget.TabPosition': ...
def setTabPosition(self, position: 'QTabWidget.TabPosition') -> None: ...
def tabShape(self) -> 'QTabWidget.TabShape': ...
def setTabShape(self, shape: 'QTabWidget.TabShape') -> None: ...
def viewMode(self) -> 'QMdiArea.ViewMode': ...
def setViewMode(self, mode: 'QMdiArea.ViewMode') -> None: ...
def setActivationOrder(self, order: 'QMdiArea.WindowOrder') -> None: ...
def activationOrder(self) -> 'QMdiArea.WindowOrder': ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def viewportEvent(self, event: QtCore.QEvent) -> bool: ...
def showEvent(self, showEvent: QtGui.QShowEvent) -> None: ...
def timerEvent(self, timerEvent: QtCore.QTimerEvent) -> None: ...
def resizeEvent(self, resizeEvent: QtGui.QResizeEvent) -> None: ...
def childEvent(self, childEvent: QtCore.QChildEvent) -> None: ...
def paintEvent(self, paintEvent: QtGui.QPaintEvent) -> None: ...
def eventFilter(self, object: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def setupViewport(self, viewport: QWidget) -> None: ...
def activatePreviousSubWindow(self) -> None: ...
def activateNextSubWindow(self) -> None: ...
def closeAllSubWindows(self) -> None: ...
def closeActiveSubWindow(self) -> None: ...
def cascadeSubWindows(self) -> None: ...
def tileSubWindows(self) -> None: ...
def setActiveSubWindow(self, window: 'QMdiSubWindow') -> None: ...
def subWindowActivated(self, a0: 'QMdiSubWindow') -> None: ...
def testOption(self, opton: 'QMdiArea.AreaOption') -> bool: ...
def setOption(self, option: 'QMdiArea.AreaOption', on: bool = ...) -> None: ...
def setBackground(self, background: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def background(self) -> QtGui.QBrush: ...
def removeSubWindow(self, widget: QWidget) -> None: ...
def currentSubWindow(self) -> 'QMdiSubWindow': ...
def subWindowList(self, order: 'QMdiArea.WindowOrder' = ...) -> typing.List['QMdiSubWindow']: ...
def addSubWindow(self, widget: QWidget, flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> 'QMdiSubWindow': ...
def activeSubWindow(self) -> 'QMdiSubWindow': ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QMdiSubWindow(QWidget):
class SubWindowOption(int): ...
RubberBandResize = ... # type: 'QMdiSubWindow.SubWindowOption'
RubberBandMove = ... # type: 'QMdiSubWindow.SubWindowOption'
class SubWindowOptions(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QMdiSubWindow.SubWindowOptions', 'QMdiSubWindow.SubWindowOption']) -> None: ...
@typing.overload
def __init__(self, a0: 'QMdiSubWindow.SubWindowOptions') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QMdiSubWindow.SubWindowOptions': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def childEvent(self, childEvent: QtCore.QChildEvent) -> None: ...
def focusOutEvent(self, focusOutEvent: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, focusInEvent: QtGui.QFocusEvent) -> None: ...
def contextMenuEvent(self, contextMenuEvent: QtGui.QContextMenuEvent) -> None: ...
def keyPressEvent(self, keyEvent: QtGui.QKeyEvent) -> None: ...
def mouseMoveEvent(self, mouseEvent: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, mouseEvent: QtGui.QMouseEvent) -> None: ...
def mouseDoubleClickEvent(self, mouseEvent: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, mouseEvent: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, paintEvent: QtGui.QPaintEvent) -> None: ...
def moveEvent(self, moveEvent: QtGui.QMoveEvent) -> None: ...
def timerEvent(self, timerEvent: QtCore.QTimerEvent) -> None: ...
def resizeEvent(self, resizeEvent: QtGui.QResizeEvent) -> None: ...
def leaveEvent(self, leaveEvent: QtCore.QEvent) -> None: ...
def closeEvent(self, closeEvent: QtGui.QCloseEvent) -> None: ...
def changeEvent(self, changeEvent: QtCore.QEvent) -> None: ...
def hideEvent(self, hideEvent: QtGui.QHideEvent) -> None: ...
def showEvent(self, showEvent: QtGui.QShowEvent) -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def eventFilter(self, object: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def showShaded(self) -> None: ...
def showSystemMenu(self) -> None: ...
def aboutToActivate(self) -> None: ...
def windowStateChanged(self, oldState: typing.Union[QtCore.Qt.WindowStates, QtCore.Qt.WindowState], newState: typing.Union[QtCore.Qt.WindowStates, QtCore.Qt.WindowState]) -> None: ...
def mdiArea(self) -> QMdiArea: ...
def systemMenu(self) -> 'QMenu': ...
def setSystemMenu(self, systemMenu: 'QMenu') -> None: ...
def keyboardPageStep(self) -> int: ...
def setKeyboardPageStep(self, step: int) -> None: ...
def keyboardSingleStep(self) -> int: ...
def setKeyboardSingleStep(self, step: int) -> None: ...
def testOption(self, a0: 'QMdiSubWindow.SubWindowOption') -> bool: ...
def setOption(self, option: 'QMdiSubWindow.SubWindowOption', on: bool = ...) -> None: ...
def isShaded(self) -> bool: ...
def widget(self) -> QWidget: ...
def setWidget(self, widget: QWidget) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QMenu(QWidget):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, title: str, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def showTearOffMenu(self) -> None: ...
@typing.overload
def showTearOffMenu(self, pos: QtCore.QPoint) -> None: ...
def setAsDockMenu(self) -> None: ...
def setToolTipsVisible(self, visible: bool) -> None: ...
def toolTipsVisible(self) -> bool: ...
@typing.overload
def insertSection(self, before: QAction, text: str) -> QAction: ...
@typing.overload
def insertSection(self, before: QAction, icon: QtGui.QIcon, text: str) -> QAction: ...
@typing.overload
def addSection(self, text: str) -> QAction: ...
@typing.overload
def addSection(self, icon: QtGui.QIcon, text: str) -> QAction: ...
def setSeparatorsCollapsible(self, collapse: bool) -> None: ...
def separatorsCollapsible(self) -> bool: ...
def isEmpty(self) -> bool: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def timerEvent(self, a0: QtCore.QTimerEvent) -> None: ...
def actionEvent(self, a0: QtGui.QActionEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def hideEvent(self, a0: QtGui.QHideEvent) -> None: ...
def leaveEvent(self, a0: QtCore.QEvent) -> None: ...
def enterEvent(self, a0: QtCore.QEvent) -> None: ...
def wheelEvent(self, a0: QtGui.QWheelEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionMenuItem', action: QAction) -> None: ...
def columnCount(self) -> int: ...
def triggered(self, action: QAction) -> None: ...
def hovered(self, action: QAction) -> None: ...
def aboutToShow(self) -> None: ...
def aboutToHide(self) -> None: ...
def setNoReplayFor(self, widget: QWidget) -> None: ...
def setIcon(self, icon: QtGui.QIcon) -> None: ...
def icon(self) -> QtGui.QIcon: ...
def setTitle(self, title: str) -> None: ...
def title(self) -> str: ...
def menuAction(self) -> QAction: ...
def actionAt(self, a0: QtCore.QPoint) -> QAction: ...
def actionGeometry(self, a0: QAction) -> QtCore.QRect: ...
def sizeHint(self) -> QtCore.QSize: ...
@typing.overload
def exec(self) -> QAction: ...
@typing.overload
def exec(self, pos: QtCore.QPoint, action: typing.Optional[QAction] = ...) -> QAction: ...
@typing.overload
@staticmethod
def exec(actions: typing.Iterable[QAction], pos: QtCore.QPoint, at: typing.Optional[QAction] = ..., parent: typing.Optional[QWidget] = ...) -> QAction: ...
@typing.overload
def exec_(self) -> QAction: ...
@typing.overload
def exec_(self, p: QtCore.QPoint, action: typing.Optional[QAction] = ...) -> QAction: ...
@typing.overload
@staticmethod
def exec_(actions: typing.Iterable[QAction], pos: QtCore.QPoint, at: typing.Optional[QAction] = ..., parent: typing.Optional[QWidget] = ...) -> QAction: ...
def popup(self, p: QtCore.QPoint, action: typing.Optional[QAction] = ...) -> None: ...
def activeAction(self) -> QAction: ...
def setActiveAction(self, act: QAction) -> None: ...
def defaultAction(self) -> QAction: ...
def setDefaultAction(self, a0: QAction) -> None: ...
def hideTearOffMenu(self) -> None: ...
def isTearOffMenuVisible(self) -> bool: ...
def isTearOffEnabled(self) -> bool: ...
def setTearOffEnabled(self, a0: bool) -> None: ...
def clear(self) -> None: ...
def insertSeparator(self, before: QAction) -> QAction: ...
def insertMenu(self, before: QAction, menu: 'QMenu') -> QAction: ...
def addSeparator(self) -> QAction: ...
@typing.overload
def addMenu(self, menu: 'QMenu') -> QAction: ...
@typing.overload
def addMenu(self, title: str) -> 'QMenu': ...
@typing.overload
def addMenu(self, icon: QtGui.QIcon, title: str) -> 'QMenu': ...
@typing.overload
def addAction(self, action: QAction) -> None: ...
@typing.overload
def addAction(self, text: str) -> QAction: ...
@typing.overload
def addAction(self, icon: QtGui.QIcon, text: str) -> QAction: ...
@typing.overload
def addAction(self, text: str, slot: PYQT_SLOT, shortcut: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int] = ...) -> QAction: ...
@typing.overload
def addAction(self, icon: QtGui.QIcon, text: str, slot: PYQT_SLOT, shortcut: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int] = ...) -> QAction: ...
class QMenuBar(QWidget):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def setNativeMenuBar(self, nativeMenuBar: bool) -> None: ...
def isNativeMenuBar(self) -> bool: ...
def timerEvent(self, a0: QtCore.QTimerEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def eventFilter(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
def focusInEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def focusOutEvent(self, a0: QtGui.QFocusEvent) -> None: ...
def actionEvent(self, a0: QtGui.QActionEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def leaveEvent(self, a0: QtCore.QEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionMenuItem', action: QAction) -> None: ...
def hovered(self, action: QAction) -> None: ...
def triggered(self, action: QAction) -> None: ...
def setVisible(self, visible: bool) -> None: ...
def cornerWidget(self, corner: QtCore.Qt.Corner = ...) -> QWidget: ...
def setCornerWidget(self, widget: QWidget, corner: QtCore.Qt.Corner = ...) -> None: ...
def actionAt(self, a0: QtCore.QPoint) -> QAction: ...
def actionGeometry(self, a0: QAction) -> QtCore.QRect: ...
def heightForWidth(self, a0: int) -> int: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def isDefaultUp(self) -> bool: ...
def setDefaultUp(self, a0: bool) -> None: ...
def setActiveAction(self, action: QAction) -> None: ...
def activeAction(self) -> QAction: ...
def clear(self) -> None: ...
def insertSeparator(self, before: QAction) -> QAction: ...
def insertMenu(self, before: QAction, menu: QMenu) -> QAction: ...
def addSeparator(self) -> QAction: ...
@typing.overload
def addMenu(self, menu: QMenu) -> QAction: ...
@typing.overload
def addMenu(self, title: str) -> QMenu: ...
@typing.overload
def addMenu(self, icon: QtGui.QIcon, title: str) -> QMenu: ...
@typing.overload
def addAction(self, action: QAction) -> None: ...
@typing.overload
def addAction(self, text: str) -> QAction: ...
@typing.overload
def addAction(self, text: str, slot: PYQT_SLOT) -> QAction: ...
class QMessageBox(QDialog):
class StandardButton(int): ...
NoButton = ... # type: 'QMessageBox.StandardButton'
Ok = ... # type: 'QMessageBox.StandardButton'
Save = ... # type: 'QMessageBox.StandardButton'
SaveAll = ... # type: 'QMessageBox.StandardButton'
Open = ... # type: 'QMessageBox.StandardButton'
Yes = ... # type: 'QMessageBox.StandardButton'
YesToAll = ... # type: 'QMessageBox.StandardButton'
No = ... # type: 'QMessageBox.StandardButton'
NoToAll = ... # type: 'QMessageBox.StandardButton'
Abort = ... # type: 'QMessageBox.StandardButton'
Retry = ... # type: 'QMessageBox.StandardButton'
Ignore = ... # type: 'QMessageBox.StandardButton'
Close = ... # type: 'QMessageBox.StandardButton'
Cancel = ... # type: 'QMessageBox.StandardButton'
Discard = ... # type: 'QMessageBox.StandardButton'
Help = ... # type: 'QMessageBox.StandardButton'
Apply = ... # type: 'QMessageBox.StandardButton'
Reset = ... # type: 'QMessageBox.StandardButton'
RestoreDefaults = ... # type: 'QMessageBox.StandardButton'
FirstButton = ... # type: 'QMessageBox.StandardButton'
LastButton = ... # type: 'QMessageBox.StandardButton'
YesAll = ... # type: 'QMessageBox.StandardButton'
NoAll = ... # type: 'QMessageBox.StandardButton'
Default = ... # type: 'QMessageBox.StandardButton'
Escape = ... # type: 'QMessageBox.StandardButton'
FlagMask = ... # type: 'QMessageBox.StandardButton'
ButtonMask = ... # type: 'QMessageBox.StandardButton'
class Icon(int): ...
NoIcon = ... # type: 'QMessageBox.Icon'
Information = ... # type: 'QMessageBox.Icon'
Warning = ... # type: 'QMessageBox.Icon'
Critical = ... # type: 'QMessageBox.Icon'
Question = ... # type: 'QMessageBox.Icon'
class ButtonRole(int): ...
InvalidRole = ... # type: 'QMessageBox.ButtonRole'
AcceptRole = ... # type: 'QMessageBox.ButtonRole'
RejectRole = ... # type: 'QMessageBox.ButtonRole'
DestructiveRole = ... # type: 'QMessageBox.ButtonRole'
ActionRole = ... # type: 'QMessageBox.ButtonRole'
HelpRole = ... # type: 'QMessageBox.ButtonRole'
YesRole = ... # type: 'QMessageBox.ButtonRole'
NoRole = ... # type: 'QMessageBox.ButtonRole'
ResetRole = ... # type: 'QMessageBox.ButtonRole'
ApplyRole = ... # type: 'QMessageBox.ButtonRole'
class StandardButtons(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QMessageBox.StandardButtons', 'QMessageBox.StandardButton']) -> None: ...
@typing.overload
def __init__(self, a0: 'QMessageBox.StandardButtons') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QMessageBox.StandardButtons': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, icon: 'QMessageBox.Icon', title: str, text: str, buttons: typing.Union['QMessageBox.StandardButtons', 'QMessageBox.StandardButton'] = ..., parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def checkBox(self) -> QCheckBox: ...
def setCheckBox(self, cb: QCheckBox) -> None: ...
def textInteractionFlags(self) -> QtCore.Qt.TextInteractionFlags: ...
def setTextInteractionFlags(self, flags: typing.Union[QtCore.Qt.TextInteractionFlags, QtCore.Qt.TextInteractionFlag]) -> None: ...
def buttonClicked(self, button: QAbstractButton) -> None: ...
def buttonRole(self, button: QAbstractButton) -> 'QMessageBox.ButtonRole': ...
def buttons(self) -> typing.List[QAbstractButton]: ...
@typing.overload
def open(self) -> None: ...
@typing.overload
def open(self, slot: PYQT_SLOT) -> None: ...
def setWindowModality(self, windowModality: QtCore.Qt.WindowModality) -> None: ...
def setWindowTitle(self, title: str) -> None: ...
def setDetailedText(self, text: str) -> None: ...
def detailedText(self) -> str: ...
def setInformativeText(self, text: str) -> None: ...
def informativeText(self) -> str: ...
def clickedButton(self) -> QAbstractButton: ...
@typing.overload
def setEscapeButton(self, button: QAbstractButton) -> None: ...
@typing.overload
def setEscapeButton(self, button: 'QMessageBox.StandardButton') -> None: ...
def escapeButton(self) -> QAbstractButton: ...
@typing.overload
def setDefaultButton(self, button: QPushButton) -> None: ...
@typing.overload
def setDefaultButton(self, button: 'QMessageBox.StandardButton') -> None: ...
def defaultButton(self) -> QPushButton: ...
def button(self, which: 'QMessageBox.StandardButton') -> QAbstractButton: ...
def standardButton(self, button: QAbstractButton) -> 'QMessageBox.StandardButton': ...
def standardButtons(self) -> 'QMessageBox.StandardButtons': ...
def setStandardButtons(self, buttons: typing.Union['QMessageBox.StandardButtons', 'QMessageBox.StandardButton']) -> None: ...
def removeButton(self, button: QAbstractButton) -> None: ...
@typing.overload
def addButton(self, button: QAbstractButton, role: 'QMessageBox.ButtonRole') -> None: ...
@typing.overload
def addButton(self, text: str, role: 'QMessageBox.ButtonRole') -> QPushButton: ...
@typing.overload
def addButton(self, button: 'QMessageBox.StandardButton') -> QPushButton: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def closeEvent(self, a0: QtGui.QCloseEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
@staticmethod
def standardIcon(icon: 'QMessageBox.Icon') -> QtGui.QPixmap: ...
@staticmethod
def aboutQt(parent: QWidget, title: str = ...) -> None: ...
@staticmethod
def about(parent: QWidget, caption: str, text: str) -> None: ...
@staticmethod
def critical(parent: QWidget, title: str, text: str, buttons: typing.Union['QMessageBox.StandardButtons', 'QMessageBox.StandardButton'] = ..., defaultButton: 'QMessageBox.StandardButton' = ...) -> 'QMessageBox.StandardButton': ...
@staticmethod
def warning(parent: QWidget, title: str, text: str, buttons: typing.Union['QMessageBox.StandardButtons', 'QMessageBox.StandardButton'] = ..., defaultButton: 'QMessageBox.StandardButton' = ...) -> 'QMessageBox.StandardButton': ...
@staticmethod
def question(parent: QWidget, title: str, text: str, buttons: typing.Union['QMessageBox.StandardButtons', 'QMessageBox.StandardButton'] = ..., defaultButton: 'QMessageBox.StandardButton' = ...) -> 'QMessageBox.StandardButton': ...
@staticmethod
def information(parent: QWidget, title: str, text: str, buttons: typing.Union['QMessageBox.StandardButtons', 'QMessageBox.StandardButton'] = ..., defaultButton: 'QMessageBox.StandardButton' = ...) -> 'QMessageBox.StandardButton': ...
def setTextFormat(self, a0: QtCore.Qt.TextFormat) -> None: ...
def textFormat(self) -> QtCore.Qt.TextFormat: ...
def setIconPixmap(self, a0: QtGui.QPixmap) -> None: ...
def iconPixmap(self) -> QtGui.QPixmap: ...
def setIcon(self, a0: 'QMessageBox.Icon') -> None: ...
def icon(self) -> 'QMessageBox.Icon': ...
def setText(self, a0: str) -> None: ...
def text(self) -> str: ...
class QMouseEventTransition(QtCore.QEventTransition):
@typing.overload
def __init__(self, sourceState: typing.Optional[QtCore.QState] = ...) -> None: ...
@typing.overload
def __init__(self, object: QtCore.QObject, type: QtCore.QEvent.Type, button: QtCore.Qt.MouseButton, sourceState: typing.Optional[QtCore.QState] = ...) -> None: ...
def eventTest(self, event: QtCore.QEvent) -> bool: ...
def onTransition(self, event: QtCore.QEvent) -> None: ...
def setHitTestPath(self, path: QtGui.QPainterPath) -> None: ...
def hitTestPath(self) -> QtGui.QPainterPath: ...
def setModifierMask(self, modifiers: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> None: ...
def modifierMask(self) -> QtCore.Qt.KeyboardModifiers: ...
def setButton(self, button: QtCore.Qt.MouseButton) -> None: ...
def button(self) -> QtCore.Qt.MouseButton: ...
class QOpenGLWidget(QWidget):
class UpdateBehavior(int): ...
NoPartialUpdate = ... # type: 'QOpenGLWidget.UpdateBehavior'
PartialUpdate = ... # type: 'QOpenGLWidget.UpdateBehavior'
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def setTextureFormat(self, texFormat: int) -> None: ...
def textureFormat(self) -> int: ...
def updateBehavior(self) -> 'QOpenGLWidget.UpdateBehavior': ...
def setUpdateBehavior(self, updateBehavior: 'QOpenGLWidget.UpdateBehavior') -> None: ...
def paintEngine(self) -> QtGui.QPaintEngine: ...
def metric(self, metric: QtGui.QPaintDevice.PaintDeviceMetric) -> int: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def paintGL(self) -> None: ...
def resizeGL(self, w: int, h: int) -> None: ...
def initializeGL(self) -> None: ...
def resized(self) -> None: ...
def aboutToResize(self) -> None: ...
def frameSwapped(self) -> None: ...
def aboutToCompose(self) -> None: ...
def grabFramebuffer(self) -> QtGui.QImage: ...
def defaultFramebufferObject(self) -> int: ...
def context(self) -> QtGui.QOpenGLContext: ...
def doneCurrent(self) -> None: ...
def makeCurrent(self) -> None: ...
def isValid(self) -> bool: ...
def format(self) -> QtGui.QSurfaceFormat: ...
def setFormat(self, format: QtGui.QSurfaceFormat) -> None: ...
class QPlainTextEdit(QAbstractScrollArea):
class LineWrapMode(int): ...
NoWrap = ... # type: 'QPlainTextEdit.LineWrapMode'
WidgetWidth = ... # type: 'QPlainTextEdit.LineWrapMode'
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def setTabStopDistance(self, distance: float) -> None: ...
def tabStopDistance(self) -> float: ...
def placeholderText(self) -> str: ...
def setPlaceholderText(self, placeholderText: str) -> None: ...
def zoomOut(self, range: int = ...) -> None: ...
def zoomIn(self, range: int = ...) -> None: ...
def anchorAt(self, pos: QtCore.QPoint) -> str: ...
def getPaintContext(self) -> QtGui.QAbstractTextDocumentLayout.PaintContext: ...
def blockBoundingGeometry(self, block: QtGui.QTextBlock) -> QtCore.QRectF: ...
def blockBoundingRect(self, block: QtGui.QTextBlock) -> QtCore.QRectF: ...
def contentOffset(self) -> QtCore.QPointF: ...
def firstVisibleBlock(self) -> QtGui.QTextBlock: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def insertFromMimeData(self, source: QtCore.QMimeData) -> None: ...
def canInsertFromMimeData(self, source: QtCore.QMimeData) -> bool: ...
def createMimeDataFromSelection(self) -> QtCore.QMimeData: ...
@typing.overload
def inputMethodQuery(self, property: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
@typing.overload
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery, argument: typing.Any) -> typing.Any: ...
def inputMethodEvent(self, a0: QtGui.QInputMethodEvent) -> None: ...
def wheelEvent(self, e: QtGui.QWheelEvent) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def focusOutEvent(self, e: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
def dropEvent(self, e: QtGui.QDropEvent) -> None: ...
def dragMoveEvent(self, e: QtGui.QDragMoveEvent) -> None: ...
def dragLeaveEvent(self, e: QtGui.QDragLeaveEvent) -> None: ...
def dragEnterEvent(self, e: QtGui.QDragEnterEvent) -> None: ...
def contextMenuEvent(self, e: QtGui.QContextMenuEvent) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def mouseDoubleClickEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def resizeEvent(self, e: QtGui.QResizeEvent) -> None: ...
def keyReleaseEvent(self, e: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
def timerEvent(self, e: QtCore.QTimerEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def modificationChanged(self, a0: bool) -> None: ...
def blockCountChanged(self, newBlockCount: int) -> None: ...
def updateRequest(self, rect: QtCore.QRect, dy: int) -> None: ...
def cursorPositionChanged(self) -> None: ...
def selectionChanged(self) -> None: ...
def copyAvailable(self, b: bool) -> None: ...
def redoAvailable(self, b: bool) -> None: ...
def undoAvailable(self, b: bool) -> None: ...
def textChanged(self) -> None: ...
def centerCursor(self) -> None: ...
def appendHtml(self, html: str) -> None: ...
def appendPlainText(self, text: str) -> None: ...
def insertPlainText(self, text: str) -> None: ...
def selectAll(self) -> None: ...
def clear(self) -> None: ...
def redo(self) -> None: ...
def undo(self) -> None: ...
def paste(self) -> None: ...
def copy(self) -> None: ...
def cut(self) -> None: ...
def setPlainText(self, text: str) -> None: ...
def blockCount(self) -> int: ...
def print(self, printer: QtGui.QPagedPaintDevice) -> None: ...
def print_(self, printer: QtGui.QPagedPaintDevice) -> None: ...
def canPaste(self) -> bool: ...
def moveCursor(self, operation: QtGui.QTextCursor.MoveOperation, mode: QtGui.QTextCursor.MoveMode = ...) -> None: ...
def extraSelections(self) -> typing.List['QTextEdit.ExtraSelection']: ...
def setExtraSelections(self, selections: typing.Iterable['QTextEdit.ExtraSelection']) -> None: ...
def setCursorWidth(self, width: int) -> None: ...
def cursorWidth(self) -> int: ...
def setTabStopWidth(self, width: int) -> None: ...
def tabStopWidth(self) -> int: ...
def setOverwriteMode(self, overwrite: bool) -> None: ...
def overwriteMode(self) -> bool: ...
@typing.overload
def cursorRect(self, cursor: QtGui.QTextCursor) -> QtCore.QRect: ...
@typing.overload
def cursorRect(self) -> QtCore.QRect: ...
def cursorForPosition(self, pos: QtCore.QPoint) -> QtGui.QTextCursor: ...
@typing.overload
def createStandardContextMenu(self) -> QMenu: ...
@typing.overload
def createStandardContextMenu(self, position: QtCore.QPoint) -> QMenu: ...
def loadResource(self, type: int, name: QtCore.QUrl) -> typing.Any: ...
def ensureCursorVisible(self) -> None: ...
def toPlainText(self) -> str: ...
@typing.overload
def find(self, exp: str, options: typing.Union[QtGui.QTextDocument.FindFlags, QtGui.QTextDocument.FindFlag] = ...) -> bool: ...
@typing.overload
def find(self, exp: QtCore.QRegExp, options: typing.Union[QtGui.QTextDocument.FindFlags, QtGui.QTextDocument.FindFlag] = ...) -> bool: ...
@typing.overload
def find(self, exp: QtCore.QRegularExpression, options: typing.Union[QtGui.QTextDocument.FindFlags, QtGui.QTextDocument.FindFlag] = ...) -> bool: ...
def centerOnScroll(self) -> bool: ...
def setCenterOnScroll(self, enabled: bool) -> None: ...
def backgroundVisible(self) -> bool: ...
def setBackgroundVisible(self, visible: bool) -> None: ...
def setWordWrapMode(self, policy: QtGui.QTextOption.WrapMode) -> None: ...
def wordWrapMode(self) -> QtGui.QTextOption.WrapMode: ...
def setLineWrapMode(self, mode: 'QPlainTextEdit.LineWrapMode') -> None: ...
def lineWrapMode(self) -> 'QPlainTextEdit.LineWrapMode': ...
def maximumBlockCount(self) -> int: ...
def setMaximumBlockCount(self, maximum: int) -> None: ...
def setUndoRedoEnabled(self, enable: bool) -> None: ...
def isUndoRedoEnabled(self) -> bool: ...
def documentTitle(self) -> str: ...
def setDocumentTitle(self, title: str) -> None: ...
def setTabChangesFocus(self, b: bool) -> None: ...
def tabChangesFocus(self) -> bool: ...
def currentCharFormat(self) -> QtGui.QTextCharFormat: ...
def setCurrentCharFormat(self, format: QtGui.QTextCharFormat) -> None: ...
def mergeCurrentCharFormat(self, modifier: QtGui.QTextCharFormat) -> None: ...
def textInteractionFlags(self) -> QtCore.Qt.TextInteractionFlags: ...
def setTextInteractionFlags(self, flags: typing.Union[QtCore.Qt.TextInteractionFlags, QtCore.Qt.TextInteractionFlag]) -> None: ...
def setReadOnly(self, ro: bool) -> None: ...
def isReadOnly(self) -> bool: ...
def textCursor(self) -> QtGui.QTextCursor: ...
def setTextCursor(self, cursor: QtGui.QTextCursor) -> None: ...
def document(self) -> QtGui.QTextDocument: ...
def setDocument(self, document: QtGui.QTextDocument) -> None: ...
class QPlainTextDocumentLayout(QtGui.QAbstractTextDocumentLayout):
def __init__(self, document: QtGui.QTextDocument) -> None: ...
def documentChanged(self, from_: int, a1: int, charsAdded: int) -> None: ...
def requestUpdate(self) -> None: ...
def cursorWidth(self) -> int: ...
def setCursorWidth(self, width: int) -> None: ...
def ensureBlockLayout(self, block: QtGui.QTextBlock) -> None: ...
def blockBoundingRect(self, block: QtGui.QTextBlock) -> QtCore.QRectF: ...
def frameBoundingRect(self, a0: QtGui.QTextFrame) -> QtCore.QRectF: ...
def documentSize(self) -> QtCore.QSizeF: ...
def pageCount(self) -> int: ...
def hitTest(self, a0: typing.Union[QtCore.QPointF, QtCore.QPoint], a1: QtCore.Qt.HitTestAccuracy) -> int: ...
def draw(self, a0: QtGui.QPainter, a1: QtGui.QAbstractTextDocumentLayout.PaintContext) -> None: ...
class QProgressBar(QWidget):
class Direction(int): ...
TopToBottom = ... # type: 'QProgressBar.Direction'
BottomToTop = ... # type: 'QProgressBar.Direction'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: 'QStyleOptionProgressBar') -> None: ...
def valueChanged(self, value: int) -> None: ...
def setOrientation(self, a0: QtCore.Qt.Orientation) -> None: ...
def setValue(self, value: int) -> None: ...
def setMaximum(self, maximum: int) -> None: ...
def setMinimum(self, minimum: int) -> None: ...
def reset(self) -> None: ...
def resetFormat(self) -> None: ...
def format(self) -> str: ...
def setFormat(self, format: str) -> None: ...
def setTextDirection(self, textDirection: 'QProgressBar.Direction') -> None: ...
def setInvertedAppearance(self, invert: bool) -> None: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def setAlignment(self, alignment: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def isTextVisible(self) -> bool: ...
def setTextVisible(self, visible: bool) -> None: ...
def text(self) -> str: ...
def value(self) -> int: ...
def setRange(self, minimum: int, maximum: int) -> None: ...
def maximum(self) -> int: ...
def minimum(self) -> int: ...
class QProgressDialog(QDialog):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
@typing.overload
def __init__(self, labelText: str, cancelButtonText: str, minimum: int, maximum: int, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
@typing.overload
def open(self) -> None: ...
@typing.overload
def open(self, slot: PYQT_SLOT) -> None: ...
def forceShow(self) -> None: ...
def showEvent(self, e: QtGui.QShowEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def closeEvent(self, a0: QtGui.QCloseEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def canceled(self) -> None: ...
def setMinimumDuration(self, ms: int) -> None: ...
def setCancelButtonText(self, a0: str) -> None: ...
def setLabelText(self, a0: str) -> None: ...
def setValue(self, progress: int) -> None: ...
def setMinimum(self, minimum: int) -> None: ...
def setMaximum(self, maximum: int) -> None: ...
def reset(self) -> None: ...
def cancel(self) -> None: ...
def autoClose(self) -> bool: ...
def setAutoClose(self, b: bool) -> None: ...
def autoReset(self) -> bool: ...
def setAutoReset(self, b: bool) -> None: ...
def minimumDuration(self) -> int: ...
def labelText(self) -> str: ...
def sizeHint(self) -> QtCore.QSize: ...
def value(self) -> int: ...
def setRange(self, minimum: int, maximum: int) -> None: ...
def maximum(self) -> int: ...
def minimum(self) -> int: ...
def wasCanceled(self) -> bool: ...
def setBar(self, bar: QProgressBar) -> None: ...
def setCancelButton(self, button: QPushButton) -> None: ...
def setLabel(self, label: QLabel) -> None: ...
class QProxyStyle(QCommonStyle):
@typing.overload
def __init__(self, style: typing.Optional[QStyle] = ...) -> None: ...
@typing.overload
def __init__(self, key: str) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
@typing.overload
def unpolish(self, widget: QWidget) -> None: ...
@typing.overload
def unpolish(self, app: QApplication) -> None: ...
@typing.overload
def polish(self, widget: QWidget) -> None: ...
@typing.overload
def polish(self, pal: QtGui.QPalette) -> QtGui.QPalette: ...
@typing.overload
def polish(self, app: QApplication) -> None: ...
def standardPalette(self) -> QtGui.QPalette: ...
def generatedIconPixmap(self, iconMode: QtGui.QIcon.Mode, pixmap: QtGui.QPixmap, opt: 'QStyleOption') -> QtGui.QPixmap: ...
def standardPixmap(self, standardPixmap: QStyle.StandardPixmap, opt: 'QStyleOption', widget: typing.Optional[QWidget] = ...) -> QtGui.QPixmap: ...
def standardIcon(self, standardIcon: QStyle.StandardPixmap, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> QtGui.QIcon: ...
def layoutSpacing(self, control1: 'QSizePolicy.ControlType', control2: 'QSizePolicy.ControlType', orientation: QtCore.Qt.Orientation, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> int: ...
def pixelMetric(self, metric: QStyle.PixelMetric, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ...) -> int: ...
def styleHint(self, hint: QStyle.StyleHint, option: typing.Optional['QStyleOption'] = ..., widget: typing.Optional[QWidget] = ..., returnData: typing.Optional['QStyleHintReturn'] = ...) -> int: ...
def hitTestComplexControl(self, control: QStyle.ComplexControl, option: 'QStyleOptionComplex', pos: QtCore.QPoint, widget: typing.Optional[QWidget] = ...) -> QStyle.SubControl: ...
def itemPixmapRect(self, r: QtCore.QRect, flags: int, pixmap: QtGui.QPixmap) -> QtCore.QRect: ...
def itemTextRect(self, fm: QtGui.QFontMetrics, r: QtCore.QRect, flags: int, enabled: bool, text: str) -> QtCore.QRect: ...
def subControlRect(self, cc: QStyle.ComplexControl, opt: 'QStyleOptionComplex', sc: QStyle.SubControl, widget: QWidget) -> QtCore.QRect: ...
def subElementRect(self, element: QStyle.SubElement, option: 'QStyleOption', widget: QWidget) -> QtCore.QRect: ...
def sizeFromContents(self, type: QStyle.ContentsType, option: 'QStyleOption', size: QtCore.QSize, widget: QWidget) -> QtCore.QSize: ...
def drawItemPixmap(self, painter: QtGui.QPainter, rect: QtCore.QRect, alignment: int, pixmap: QtGui.QPixmap) -> None: ...
def drawItemText(self, painter: QtGui.QPainter, rect: QtCore.QRect, flags: int, pal: QtGui.QPalette, enabled: bool, text: str, textRole: QtGui.QPalette.ColorRole = ...) -> None: ...
def drawComplexControl(self, control: QStyle.ComplexControl, option: 'QStyleOptionComplex', painter: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def drawControl(self, element: QStyle.ControlElement, option: 'QStyleOption', painter: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def drawPrimitive(self, element: QStyle.PrimitiveElement, option: 'QStyleOption', painter: QtGui.QPainter, widget: typing.Optional[QWidget] = ...) -> None: ...
def setBaseStyle(self, style: QStyle) -> None: ...
def baseStyle(self) -> QStyle: ...
class QRadioButton(QAbstractButton):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def hitButton(self, a0: QtCore.QPoint) -> bool: ...
def initStyleOption(self, button: 'QStyleOptionButton') -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QRubberBand(QWidget):
class Shape(int): ...
Line = ... # type: 'QRubberBand.Shape'
Rectangle = ... # type: 'QRubberBand.Shape'
def __init__(self, a0: 'QRubberBand.Shape', parent: typing.Optional[QWidget] = ...) -> None: ...
def moveEvent(self, a0: QtGui.QMoveEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: 'QStyleOptionRubberBand') -> None: ...
@typing.overload
def resize(self, w: int, h: int) -> None: ...
@typing.overload
def resize(self, s: QtCore.QSize) -> None: ...
@typing.overload
def move(self, p: QtCore.QPoint) -> None: ...
@typing.overload
def move(self, ax: int, ay: int) -> None: ...
@typing.overload
def setGeometry(self, r: QtCore.QRect) -> None: ...
@typing.overload
def setGeometry(self, ax: int, ay: int, aw: int, ah: int) -> None: ...
def shape(self) -> 'QRubberBand.Shape': ...
class QScrollArea(QAbstractScrollArea):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def viewportSizeHint(self) -> QtCore.QSize: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def eventFilter(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def ensureWidgetVisible(self, childWidget: QWidget, xMargin: int = ..., yMargin: int = ...) -> None: ...
def ensureVisible(self, x: int, y: int, xMargin: int = ..., yMargin: int = ...) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def sizeHint(self) -> QtCore.QSize: ...
def setAlignment(self, a0: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def setWidgetResizable(self, resizable: bool) -> None: ...
def widgetResizable(self) -> bool: ...
def takeWidget(self) -> QWidget: ...
def setWidget(self, w: QWidget) -> None: ...
def widget(self) -> QWidget: ...
class QScrollBar(QAbstractSlider):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, orientation: QtCore.Qt.Orientation, parent: typing.Optional[QWidget] = ...) -> None: ...
def sliderChange(self, change: QAbstractSlider.SliderChange) -> None: ...
def wheelEvent(self, a0: QtGui.QWheelEvent) -> None: ...
def contextMenuEvent(self, a0: QtGui.QContextMenuEvent) -> None: ...
def hideEvent(self, a0: QtGui.QHideEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionSlider') -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def sizeHint(self) -> QtCore.QSize: ...
class QScroller(QtCore.QObject):
class Input(int): ...
InputPress = ... # type: 'QScroller.Input'
InputMove = ... # type: 'QScroller.Input'
InputRelease = ... # type: 'QScroller.Input'
class ScrollerGestureType(int): ...
TouchGesture = ... # type: 'QScroller.ScrollerGestureType'
LeftMouseButtonGesture = ... # type: 'QScroller.ScrollerGestureType'
RightMouseButtonGesture = ... # type: 'QScroller.ScrollerGestureType'
MiddleMouseButtonGesture = ... # type: 'QScroller.ScrollerGestureType'
class State(int): ...
Inactive = ... # type: 'QScroller.State'
Pressed = ... # type: 'QScroller.State'
Dragging = ... # type: 'QScroller.State'
Scrolling = ... # type: 'QScroller.State'
def scrollerPropertiesChanged(self, a0: 'QScrollerProperties') -> None: ...
def stateChanged(self, newstate: 'QScroller.State') -> None: ...
def resendPrepareEvent(self) -> None: ...
@typing.overload
def ensureVisible(self, rect: QtCore.QRectF, xmargin: float, ymargin: float) -> None: ...
@typing.overload
def ensureVisible(self, rect: QtCore.QRectF, xmargin: float, ymargin: float, scrollTime: int) -> None: ...
@typing.overload
def scrollTo(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint]) -> None: ...
@typing.overload
def scrollTo(self, pos: typing.Union[QtCore.QPointF, QtCore.QPoint], scrollTime: int) -> None: ...
def setScrollerProperties(self, prop: 'QScrollerProperties') -> None: ...
@typing.overload
def setSnapPositionsY(self, positions: typing.Iterable[float]) -> None: ...
@typing.overload
def setSnapPositionsY(self, first: float, interval: float) -> None: ...
@typing.overload
def setSnapPositionsX(self, positions: typing.Iterable[float]) -> None: ...
@typing.overload
def setSnapPositionsX(self, first: float, interval: float) -> None: ...
def scrollerProperties(self) -> 'QScrollerProperties': ...
def pixelPerMeter(self) -> QtCore.QPointF: ...
def finalPosition(self) -> QtCore.QPointF: ...
def velocity(self) -> QtCore.QPointF: ...
def stop(self) -> None: ...
def handleInput(self, input: 'QScroller.Input', position: typing.Union[QtCore.QPointF, QtCore.QPoint], timestamp: int = ...) -> bool: ...
def state(self) -> 'QScroller.State': ...
def target(self) -> QtCore.QObject: ...
@staticmethod
def activeScrollers() -> typing.List['QScroller']: ...
@staticmethod
def ungrabGesture(target: QtCore.QObject) -> None: ...
@staticmethod
def grabbedGesture(target: QtCore.QObject) -> QtCore.Qt.GestureType: ...
@staticmethod
def grabGesture(target: QtCore.QObject, scrollGestureType: 'QScroller.ScrollerGestureType' = ...) -> QtCore.Qt.GestureType: ...
@staticmethod
def scroller(target: QtCore.QObject) -> 'QScroller': ...
@staticmethod
def hasScroller(target: QtCore.QObject) -> bool: ...
class QScrollerProperties(sip.simplewrapper):
class ScrollMetric(int): ...
MousePressEventDelay = ... # type: 'QScrollerProperties.ScrollMetric'
DragStartDistance = ... # type: 'QScrollerProperties.ScrollMetric'
DragVelocitySmoothingFactor = ... # type: 'QScrollerProperties.ScrollMetric'
AxisLockThreshold = ... # type: 'QScrollerProperties.ScrollMetric'
ScrollingCurve = ... # type: 'QScrollerProperties.ScrollMetric'
DecelerationFactor = ... # type: 'QScrollerProperties.ScrollMetric'
MinimumVelocity = ... # type: 'QScrollerProperties.ScrollMetric'
MaximumVelocity = ... # type: 'QScrollerProperties.ScrollMetric'
MaximumClickThroughVelocity = ... # type: 'QScrollerProperties.ScrollMetric'
AcceleratingFlickMaximumTime = ... # type: 'QScrollerProperties.ScrollMetric'
AcceleratingFlickSpeedupFactor = ... # type: 'QScrollerProperties.ScrollMetric'
SnapPositionRatio = ... # type: 'QScrollerProperties.ScrollMetric'
SnapTime = ... # type: 'QScrollerProperties.ScrollMetric'
OvershootDragResistanceFactor = ... # type: 'QScrollerProperties.ScrollMetric'
OvershootDragDistanceFactor = ... # type: 'QScrollerProperties.ScrollMetric'
OvershootScrollDistanceFactor = ... # type: 'QScrollerProperties.ScrollMetric'
OvershootScrollTime = ... # type: 'QScrollerProperties.ScrollMetric'
HorizontalOvershootPolicy = ... # type: 'QScrollerProperties.ScrollMetric'
VerticalOvershootPolicy = ... # type: 'QScrollerProperties.ScrollMetric'
FrameRate = ... # type: 'QScrollerProperties.ScrollMetric'
ScrollMetricCount = ... # type: 'QScrollerProperties.ScrollMetric'
class FrameRates(int): ...
Standard = ... # type: 'QScrollerProperties.FrameRates'
Fps60 = ... # type: 'QScrollerProperties.FrameRates'
Fps30 = ... # type: 'QScrollerProperties.FrameRates'
Fps20 = ... # type: 'QScrollerProperties.FrameRates'
class OvershootPolicy(int): ...
OvershootWhenScrollable = ... # type: 'QScrollerProperties.OvershootPolicy'
OvershootAlwaysOff = ... # type: 'QScrollerProperties.OvershootPolicy'
OvershootAlwaysOn = ... # type: 'QScrollerProperties.OvershootPolicy'
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, sp: 'QScrollerProperties') -> None: ...
def setScrollMetric(self, metric: 'QScrollerProperties.ScrollMetric', value: typing.Any) -> None: ...
def scrollMetric(self, metric: 'QScrollerProperties.ScrollMetric') -> typing.Any: ...
@staticmethod
def unsetDefaultScrollerProperties() -> None: ...
@staticmethod
def setDefaultScrollerProperties(sp: 'QScrollerProperties') -> None: ...
class QShortcut(QtCore.QObject):
@typing.overload
def __init__(self, parent: QWidget) -> None: ...
@typing.overload
def __init__(self, key: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int], parent: QWidget, member: PYQT_SLOT = ..., ambiguousMember: PYQT_SLOT = ..., context: QtCore.Qt.ShortcutContext = ...) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def activatedAmbiguously(self) -> None: ...
def activated(self) -> None: ...
def autoRepeat(self) -> bool: ...
def setAutoRepeat(self, on: bool) -> None: ...
def parentWidget(self) -> QWidget: ...
def id(self) -> int: ...
def whatsThis(self) -> str: ...
def setWhatsThis(self, text: str) -> None: ...
def context(self) -> QtCore.Qt.ShortcutContext: ...
def setContext(self, context: QtCore.Qt.ShortcutContext) -> None: ...
def isEnabled(self) -> bool: ...
def setEnabled(self, enable: bool) -> None: ...
def key(self) -> QtGui.QKeySequence: ...
def setKey(self, key: typing.Union[QtGui.QKeySequence, QtGui.QKeySequence.StandardKey, str, int]) -> None: ...
class QSizeGrip(QWidget):
def __init__(self, parent: QWidget) -> None: ...
def hideEvent(self, hideEvent: QtGui.QHideEvent) -> None: ...
def showEvent(self, showEvent: QtGui.QShowEvent) -> None: ...
def moveEvent(self, moveEvent: QtGui.QMoveEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def eventFilter(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, mouseEvent: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def setVisible(self, a0: bool) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
class QSizePolicy(sip.simplewrapper):
class ControlType(int): ...
DefaultType = ... # type: 'QSizePolicy.ControlType'
ButtonBox = ... # type: 'QSizePolicy.ControlType'
CheckBox = ... # type: 'QSizePolicy.ControlType'
ComboBox = ... # type: 'QSizePolicy.ControlType'
Frame = ... # type: 'QSizePolicy.ControlType'
GroupBox = ... # type: 'QSizePolicy.ControlType'
Label = ... # type: 'QSizePolicy.ControlType'
Line = ... # type: 'QSizePolicy.ControlType'
LineEdit = ... # type: 'QSizePolicy.ControlType'
PushButton = ... # type: 'QSizePolicy.ControlType'
RadioButton = ... # type: 'QSizePolicy.ControlType'
Slider = ... # type: 'QSizePolicy.ControlType'
SpinBox = ... # type: 'QSizePolicy.ControlType'
TabWidget = ... # type: 'QSizePolicy.ControlType'
ToolButton = ... # type: 'QSizePolicy.ControlType'
class Policy(int): ...
Fixed = ... # type: 'QSizePolicy.Policy'
Minimum = ... # type: 'QSizePolicy.Policy'
Maximum = ... # type: 'QSizePolicy.Policy'
Preferred = ... # type: 'QSizePolicy.Policy'
MinimumExpanding = ... # type: 'QSizePolicy.Policy'
Expanding = ... # type: 'QSizePolicy.Policy'
Ignored = ... # type: 'QSizePolicy.Policy'
class PolicyFlag(int): ...
GrowFlag = ... # type: 'QSizePolicy.PolicyFlag'
ExpandFlag = ... # type: 'QSizePolicy.PolicyFlag'
ShrinkFlag = ... # type: 'QSizePolicy.PolicyFlag'
IgnoreFlag = ... # type: 'QSizePolicy.PolicyFlag'
class ControlTypes(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QSizePolicy.ControlTypes', 'QSizePolicy.ControlType']) -> None: ...
@typing.overload
def __init__(self, a0: 'QSizePolicy.ControlTypes') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QSizePolicy.ControlTypes': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, horizontal: 'QSizePolicy.Policy', vertical: 'QSizePolicy.Policy', type: 'QSizePolicy.ControlType' = ...) -> None: ...
@typing.overload
def __init__(self, variant: typing.Any) -> None: ...
@typing.overload
def __init__(self, a0: 'QSizePolicy') -> None: ...
def __hash__(self) -> int: ...
def setRetainSizeWhenHidden(self, retainSize: bool) -> None: ...
def retainSizeWhenHidden(self) -> bool: ...
def hasWidthForHeight(self) -> bool: ...
def setWidthForHeight(self, b: bool) -> None: ...
def setControlType(self, type: 'QSizePolicy.ControlType') -> None: ...
def controlType(self) -> 'QSizePolicy.ControlType': ...
def transposed(self) -> 'QSizePolicy': ...
def transpose(self) -> None: ...
def setVerticalStretch(self, stretchFactor: int) -> None: ...
def setHorizontalStretch(self, stretchFactor: int) -> None: ...
def verticalStretch(self) -> int: ...
def horizontalStretch(self) -> int: ...
def hasHeightForWidth(self) -> bool: ...
def setHeightForWidth(self, b: bool) -> None: ...
def expandingDirections(self) -> QtCore.Qt.Orientations: ...
def setVerticalPolicy(self, d: 'QSizePolicy.Policy') -> None: ...
def setHorizontalPolicy(self, d: 'QSizePolicy.Policy') -> None: ...
def verticalPolicy(self) -> 'QSizePolicy.Policy': ...
def horizontalPolicy(self) -> 'QSizePolicy.Policy': ...
class QSlider(QAbstractSlider):
class TickPosition(int): ...
NoTicks = ... # type: 'QSlider.TickPosition'
TicksAbove = ... # type: 'QSlider.TickPosition'
TicksLeft = ... # type: 'QSlider.TickPosition'
TicksBelow = ... # type: 'QSlider.TickPosition'
TicksRight = ... # type: 'QSlider.TickPosition'
TicksBothSides = ... # type: 'QSlider.TickPosition'
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, orientation: QtCore.Qt.Orientation, parent: typing.Optional[QWidget] = ...) -> None: ...
def mouseMoveEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, ev: QtGui.QPaintEvent) -> None: ...
def initStyleOption(self, option: 'QStyleOptionSlider') -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def tickInterval(self) -> int: ...
def setTickInterval(self, ti: int) -> None: ...
def tickPosition(self) -> 'QSlider.TickPosition': ...
def setTickPosition(self, position: 'QSlider.TickPosition') -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QSpinBox(QAbstractSpinBox):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def setStepType(self, stepType: QAbstractSpinBox.StepType) -> None: ...
def stepType(self) -> QAbstractSpinBox.StepType: ...
def setDisplayIntegerBase(self, base: int) -> None: ...
def displayIntegerBase(self) -> int: ...
@typing.overload
def valueChanged(self, a0: int) -> None: ...
@typing.overload
def valueChanged(self, a0: str) -> None: ...
def setValue(self, val: int) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def fixup(self, str: str) -> str: ...
def textFromValue(self, v: int) -> str: ...
def valueFromText(self, text: str) -> int: ...
def validate(self, input: str, pos: int) -> typing.Tuple[QtGui.QValidator.State, str, int]: ...
def setRange(self, min: int, max: int) -> None: ...
def setMaximum(self, max: int) -> None: ...
def maximum(self) -> int: ...
def setMinimum(self, min: int) -> None: ...
def minimum(self) -> int: ...
def setSingleStep(self, val: int) -> None: ...
def singleStep(self) -> int: ...
def cleanText(self) -> str: ...
def setSuffix(self, s: str) -> None: ...
def suffix(self) -> str: ...
def setPrefix(self, p: str) -> None: ...
def prefix(self) -> str: ...
def value(self) -> int: ...
class QDoubleSpinBox(QAbstractSpinBox):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def setStepType(self, stepType: QAbstractSpinBox.StepType) -> None: ...
def stepType(self) -> QAbstractSpinBox.StepType: ...
@typing.overload
def valueChanged(self, a0: float) -> None: ...
@typing.overload
def valueChanged(self, a0: str) -> None: ...
def setValue(self, val: float) -> None: ...
def fixup(self, str: str) -> str: ...
def textFromValue(self, v: float) -> str: ...
def valueFromText(self, text: str) -> float: ...
def validate(self, input: str, pos: int) -> typing.Tuple[QtGui.QValidator.State, str, int]: ...
def setDecimals(self, prec: int) -> None: ...
def decimals(self) -> int: ...
def setRange(self, min: float, max: float) -> None: ...
def setMaximum(self, max: float) -> None: ...
def maximum(self) -> float: ...
def setMinimum(self, min: float) -> None: ...
def minimum(self) -> float: ...
def setSingleStep(self, val: float) -> None: ...
def singleStep(self) -> float: ...
def cleanText(self) -> str: ...
def setSuffix(self, s: str) -> None: ...
def suffix(self) -> str: ...
def setPrefix(self, p: str) -> None: ...
def prefix(self) -> str: ...
def value(self) -> float: ...
class QSplashScreen(QWidget):
@typing.overload
def __init__(self, pixmap: QtGui.QPixmap = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
@typing.overload
def __init__(self, parent: QWidget, pixmap: QtGui.QPixmap = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def drawContents(self, painter: QtGui.QPainter) -> None: ...
def messageChanged(self, message: str) -> None: ...
def clearMessage(self) -> None: ...
def showMessage(self, message: str, alignment: int = ..., color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient] = ...) -> None: ...
def message(self) -> str: ...
def repaint(self) -> None: ...
def finish(self, w: QWidget) -> None: ...
def pixmap(self) -> QtGui.QPixmap: ...
def setPixmap(self, pixmap: QtGui.QPixmap) -> None: ...
class QSplitter(QFrame):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, orientation: QtCore.Qt.Orientation, parent: typing.Optional[QWidget] = ...) -> None: ...
def closestLegalPosition(self, a0: int, a1: int) -> int: ...
def setRubberBand(self, position: int) -> None: ...
def moveSplitter(self, pos: int, index: int) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def childEvent(self, a0: QtCore.QChildEvent) -> None: ...
def createHandle(self) -> 'QSplitterHandle': ...
def splitterMoved(self, pos: int, index: int) -> None: ...
def replaceWidget(self, index: int, widget: QWidget) -> QWidget: ...
def setStretchFactor(self, index: int, stretch: int) -> None: ...
def handle(self, index: int) -> 'QSplitterHandle': ...
def getRange(self, index: int) -> typing.Tuple[int, int]: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def widget(self, index: int) -> QWidget: ...
def indexOf(self, w: QWidget) -> int: ...
def setHandleWidth(self, a0: int) -> None: ...
def handleWidth(self) -> int: ...
def restoreState(self, state: typing.Union[QtCore.QByteArray, bytes, bytearray]) -> bool: ...
def saveState(self) -> QtCore.QByteArray: ...
def setSizes(self, list: typing.Iterable[int]) -> None: ...
def sizes(self) -> typing.List[int]: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def refresh(self) -> None: ...
def opaqueResize(self) -> bool: ...
def setOpaqueResize(self, opaque: bool = ...) -> None: ...
def isCollapsible(self, index: int) -> bool: ...
def setCollapsible(self, index: int, a1: bool) -> None: ...
def childrenCollapsible(self) -> bool: ...
def setChildrenCollapsible(self, a0: bool) -> None: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def setOrientation(self, a0: QtCore.Qt.Orientation) -> None: ...
def insertWidget(self, index: int, widget: QWidget) -> None: ...
def addWidget(self, widget: QWidget) -> None: ...
class QSplitterHandle(QWidget):
def __init__(self, o: QtCore.Qt.Orientation, parent: QSplitter) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def closestLegalPosition(self, p: int) -> int: ...
def moveSplitter(self, p: int) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def splitter(self) -> QSplitter: ...
def opaqueResize(self) -> bool: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def setOrientation(self, o: QtCore.Qt.Orientation) -> None: ...
class QStackedLayout(QLayout):
class StackingMode(int): ...
StackOne = ... # type: 'QStackedLayout.StackingMode'
StackAll = ... # type: 'QStackedLayout.StackingMode'
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, parent: QWidget) -> None: ...
@typing.overload
def __init__(self, parentLayout: QLayout) -> None: ...
def heightForWidth(self, width: int) -> int: ...
def hasHeightForWidth(self) -> bool: ...
def setStackingMode(self, stackingMode: 'QStackedLayout.StackingMode') -> None: ...
def stackingMode(self) -> 'QStackedLayout.StackingMode': ...
def setCurrentWidget(self, w: QWidget) -> None: ...
def setCurrentIndex(self, index: int) -> None: ...
def currentChanged(self, index: int) -> None: ...
def widgetRemoved(self, index: int) -> None: ...
def setGeometry(self, rect: QtCore.QRect) -> None: ...
def takeAt(self, a0: int) -> QLayoutItem: ...
def itemAt(self, a0: int) -> QLayoutItem: ...
def minimumSize(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def addItem(self, item: QLayoutItem) -> None: ...
def count(self) -> int: ...
@typing.overload
def widget(self, a0: int) -> QWidget: ...
@typing.overload
def widget(self) -> QWidget: ...
def currentIndex(self) -> int: ...
def currentWidget(self) -> QWidget: ...
def insertWidget(self, index: int, w: QWidget) -> int: ...
def addWidget(self, w: QWidget) -> int: ...
class QStackedWidget(QFrame):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def widgetRemoved(self, index: int) -> None: ...
def currentChanged(self, a0: int) -> None: ...
def setCurrentWidget(self, w: QWidget) -> None: ...
def setCurrentIndex(self, index: int) -> None: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def widget(self, a0: int) -> QWidget: ...
def indexOf(self, a0: QWidget) -> int: ...
def currentIndex(self) -> int: ...
def currentWidget(self) -> QWidget: ...
def removeWidget(self, w: QWidget) -> None: ...
def insertWidget(self, index: int, w: QWidget) -> int: ...
def addWidget(self, w: QWidget) -> int: ...
class QStatusBar(QWidget):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def hideOrShow(self) -> None: ...
def reformat(self) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def messageChanged(self, text: str) -> None: ...
def clearMessage(self) -> None: ...
def showMessage(self, message: str, msecs: int = ...) -> None: ...
def insertPermanentWidget(self, index: int, widget: QWidget, stretch: int = ...) -> int: ...
def insertWidget(self, index: int, widget: QWidget, stretch: int = ...) -> int: ...
def currentMessage(self) -> str: ...
def isSizeGripEnabled(self) -> bool: ...
def setSizeGripEnabled(self, a0: bool) -> None: ...
def removeWidget(self, widget: QWidget) -> None: ...
def addPermanentWidget(self, widget: QWidget, stretch: int = ...) -> None: ...
def addWidget(self, widget: QWidget, stretch: int = ...) -> None: ...
class QStyledItemDelegate(QAbstractItemDelegate):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def editorEvent(self, event: QtCore.QEvent, model: QtCore.QAbstractItemModel, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> bool: ...
def eventFilter(self, object: QtCore.QObject, event: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
def displayText(self, value: typing.Any, locale: QtCore.QLocale) -> str: ...
def setItemEditorFactory(self, factory: QItemEditorFactory) -> None: ...
def itemEditorFactory(self) -> QItemEditorFactory: ...
def updateEditorGeometry(self, editor: QWidget, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
def setModelData(self, editor: QWidget, model: QtCore.QAbstractItemModel, index: QtCore.QModelIndex) -> None: ...
def setEditorData(self, editor: QWidget, index: QtCore.QModelIndex) -> None: ...
def createEditor(self, parent: QWidget, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> QWidget: ...
def sizeHint(self, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> QtCore.QSize: ...
def paint(self, painter: QtGui.QPainter, option: 'QStyleOptionViewItem', index: QtCore.QModelIndex) -> None: ...
class QStyleFactory(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleFactory') -> None: ...
@staticmethod
def create(a0: str) -> QStyle: ...
@staticmethod
def keys() -> typing.List[str]: ...
class QStyleOption(sip.simplewrapper):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOption.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOption.StyleOptionType'
class OptionType(int): ...
SO_Default = ... # type: 'QStyleOption.OptionType'
SO_FocusRect = ... # type: 'QStyleOption.OptionType'
SO_Button = ... # type: 'QStyleOption.OptionType'
SO_Tab = ... # type: 'QStyleOption.OptionType'
SO_MenuItem = ... # type: 'QStyleOption.OptionType'
SO_Frame = ... # type: 'QStyleOption.OptionType'
SO_ProgressBar = ... # type: 'QStyleOption.OptionType'
SO_ToolBox = ... # type: 'QStyleOption.OptionType'
SO_Header = ... # type: 'QStyleOption.OptionType'
SO_DockWidget = ... # type: 'QStyleOption.OptionType'
SO_ViewItem = ... # type: 'QStyleOption.OptionType'
SO_TabWidgetFrame = ... # type: 'QStyleOption.OptionType'
SO_TabBarBase = ... # type: 'QStyleOption.OptionType'
SO_RubberBand = ... # type: 'QStyleOption.OptionType'
SO_ToolBar = ... # type: 'QStyleOption.OptionType'
SO_Complex = ... # type: 'QStyleOption.OptionType'
SO_Slider = ... # type: 'QStyleOption.OptionType'
SO_SpinBox = ... # type: 'QStyleOption.OptionType'
SO_ToolButton = ... # type: 'QStyleOption.OptionType'
SO_ComboBox = ... # type: 'QStyleOption.OptionType'
SO_TitleBar = ... # type: 'QStyleOption.OptionType'
SO_GroupBox = ... # type: 'QStyleOption.OptionType'
SO_ComplexCustomBase = ... # type: 'QStyleOption.OptionType'
SO_GraphicsItem = ... # type: 'QStyleOption.OptionType'
SO_SizeGrip = ... # type: 'QStyleOption.OptionType'
SO_CustomBase = ... # type: 'QStyleOption.OptionType'
direction = ... # type: QtCore.Qt.LayoutDirection
fontMetrics = ... # type: QtGui.QFontMetrics
palette = ... # type: QtGui.QPalette
rect = ... # type: QtCore.QRect
state = ... # type: typing.Union[QStyle.State, QStyle.StateFlag]
styleObject = ... # type: QtCore.QObject
type = ... # type: int
version = ... # type: int
@typing.overload
def __init__(self, version: int = ..., type: int = ...) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOption') -> None: ...
def initFrom(self, w: QWidget) -> None: ...
class QStyleOptionFocusRect(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionFocusRect.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionFocusRect.StyleOptionType'
backgroundColor = ... # type: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionFocusRect') -> None: ...
class QStyleOptionFrame(QStyleOption):
class FrameFeature(int): ...
None_ = ... # type: 'QStyleOptionFrame.FrameFeature'
Flat = ... # type: 'QStyleOptionFrame.FrameFeature'
Rounded = ... # type: 'QStyleOptionFrame.FrameFeature'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionFrame.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionFrame.StyleOptionType'
class FrameFeatures(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyleOptionFrame.FrameFeatures', 'QStyleOptionFrame.FrameFeature']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleOptionFrame.FrameFeatures') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyleOptionFrame.FrameFeatures': ...
def __int__(self) -> int: ...
features = ... # type: typing.Union['QStyleOptionFrame.FrameFeatures', 'QStyleOptionFrame.FrameFeature']
frameShape = ... # type: QFrame.Shape
lineWidth = ... # type: int
midLineWidth = ... # type: int
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionFrame') -> None: ...
class QStyleOptionTabWidgetFrame(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionTabWidgetFrame.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionTabWidgetFrame.StyleOptionType'
leftCornerWidgetSize = ... # type: QtCore.QSize
lineWidth = ... # type: int
midLineWidth = ... # type: int
rightCornerWidgetSize = ... # type: QtCore.QSize
selectedTabRect = ... # type: QtCore.QRect
shape = ... # type: 'QTabBar.Shape'
tabBarRect = ... # type: QtCore.QRect
tabBarSize = ... # type: QtCore.QSize
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionTabWidgetFrame') -> None: ...
class QStyleOptionTabBarBase(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionTabBarBase.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionTabBarBase.StyleOptionType'
documentMode = ... # type: bool
selectedTabRect = ... # type: QtCore.QRect
shape = ... # type: 'QTabBar.Shape'
tabBarRect = ... # type: QtCore.QRect
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionTabBarBase') -> None: ...
class QStyleOptionHeader(QStyleOption):
class SortIndicator(int): ...
None_ = ... # type: 'QStyleOptionHeader.SortIndicator'
SortUp = ... # type: 'QStyleOptionHeader.SortIndicator'
SortDown = ... # type: 'QStyleOptionHeader.SortIndicator'
class SelectedPosition(int): ...
NotAdjacent = ... # type: 'QStyleOptionHeader.SelectedPosition'
NextIsSelected = ... # type: 'QStyleOptionHeader.SelectedPosition'
PreviousIsSelected = ... # type: 'QStyleOptionHeader.SelectedPosition'
NextAndPreviousAreSelected = ... # type: 'QStyleOptionHeader.SelectedPosition'
class SectionPosition(int): ...
Beginning = ... # type: 'QStyleOptionHeader.SectionPosition'
Middle = ... # type: 'QStyleOptionHeader.SectionPosition'
End = ... # type: 'QStyleOptionHeader.SectionPosition'
OnlyOneSection = ... # type: 'QStyleOptionHeader.SectionPosition'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionHeader.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionHeader.StyleOptionType'
icon = ... # type: QtGui.QIcon
iconAlignment = ... # type: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]
orientation = ... # type: QtCore.Qt.Orientation
position = ... # type: 'QStyleOptionHeader.SectionPosition'
section = ... # type: int
selectedPosition = ... # type: 'QStyleOptionHeader.SelectedPosition'
sortIndicator = ... # type: 'QStyleOptionHeader.SortIndicator'
text = ... # type: str
textAlignment = ... # type: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionHeader') -> None: ...
class QStyleOptionButton(QStyleOption):
class ButtonFeature(int): ...
None_ = ... # type: 'QStyleOptionButton.ButtonFeature'
Flat = ... # type: 'QStyleOptionButton.ButtonFeature'
HasMenu = ... # type: 'QStyleOptionButton.ButtonFeature'
DefaultButton = ... # type: 'QStyleOptionButton.ButtonFeature'
AutoDefaultButton = ... # type: 'QStyleOptionButton.ButtonFeature'
CommandLinkButton = ... # type: 'QStyleOptionButton.ButtonFeature'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionButton.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionButton.StyleOptionType'
class ButtonFeatures(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyleOptionButton.ButtonFeatures', 'QStyleOptionButton.ButtonFeature']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleOptionButton.ButtonFeatures') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyleOptionButton.ButtonFeatures': ...
def __int__(self) -> int: ...
features = ... # type: typing.Union['QStyleOptionButton.ButtonFeatures', 'QStyleOptionButton.ButtonFeature']
icon = ... # type: QtGui.QIcon
iconSize = ... # type: QtCore.QSize
text = ... # type: str
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionButton') -> None: ...
class QStyleOptionTab(QStyleOption):
class TabFeature(int): ...
None_ = ... # type: 'QStyleOptionTab.TabFeature'
HasFrame = ... # type: 'QStyleOptionTab.TabFeature'
class CornerWidget(int): ...
NoCornerWidgets = ... # type: 'QStyleOptionTab.CornerWidget'
LeftCornerWidget = ... # type: 'QStyleOptionTab.CornerWidget'
RightCornerWidget = ... # type: 'QStyleOptionTab.CornerWidget'
class SelectedPosition(int): ...
NotAdjacent = ... # type: 'QStyleOptionTab.SelectedPosition'
NextIsSelected = ... # type: 'QStyleOptionTab.SelectedPosition'
PreviousIsSelected = ... # type: 'QStyleOptionTab.SelectedPosition'
class TabPosition(int): ...
Beginning = ... # type: 'QStyleOptionTab.TabPosition'
Middle = ... # type: 'QStyleOptionTab.TabPosition'
End = ... # type: 'QStyleOptionTab.TabPosition'
OnlyOneTab = ... # type: 'QStyleOptionTab.TabPosition'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionTab.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionTab.StyleOptionType'
class CornerWidgets(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyleOptionTab.CornerWidgets', 'QStyleOptionTab.CornerWidget']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleOptionTab.CornerWidgets') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyleOptionTab.CornerWidgets': ...
def __int__(self) -> int: ...
class TabFeatures(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyleOptionTab.TabFeatures', 'QStyleOptionTab.TabFeature']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleOptionTab.TabFeatures') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyleOptionTab.TabFeatures': ...
def __int__(self) -> int: ...
cornerWidgets = ... # type: typing.Union['QStyleOptionTab.CornerWidgets', 'QStyleOptionTab.CornerWidget']
documentMode = ... # type: bool
features = ... # type: typing.Union['QStyleOptionTab.TabFeatures', 'QStyleOptionTab.TabFeature']
icon = ... # type: QtGui.QIcon
iconSize = ... # type: QtCore.QSize
leftButtonSize = ... # type: QtCore.QSize
position = ... # type: 'QStyleOptionTab.TabPosition'
rightButtonSize = ... # type: QtCore.QSize
row = ... # type: int
selectedPosition = ... # type: 'QStyleOptionTab.SelectedPosition'
shape = ... # type: 'QTabBar.Shape'
text = ... # type: str
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionTab') -> None: ...
class QStyleOptionProgressBar(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionProgressBar.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionProgressBar.StyleOptionType'
bottomToTop = ... # type: bool
invertedAppearance = ... # type: bool
maximum = ... # type: int
minimum = ... # type: int
orientation = ... # type: QtCore.Qt.Orientation
progress = ... # type: int
text = ... # type: str
textAlignment = ... # type: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]
textVisible = ... # type: bool
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionProgressBar') -> None: ...
class QStyleOptionMenuItem(QStyleOption):
class CheckType(int): ...
NotCheckable = ... # type: 'QStyleOptionMenuItem.CheckType'
Exclusive = ... # type: 'QStyleOptionMenuItem.CheckType'
NonExclusive = ... # type: 'QStyleOptionMenuItem.CheckType'
class MenuItemType(int): ...
Normal = ... # type: 'QStyleOptionMenuItem.MenuItemType'
DefaultItem = ... # type: 'QStyleOptionMenuItem.MenuItemType'
Separator = ... # type: 'QStyleOptionMenuItem.MenuItemType'
SubMenu = ... # type: 'QStyleOptionMenuItem.MenuItemType'
Scroller = ... # type: 'QStyleOptionMenuItem.MenuItemType'
TearOff = ... # type: 'QStyleOptionMenuItem.MenuItemType'
Margin = ... # type: 'QStyleOptionMenuItem.MenuItemType'
EmptyArea = ... # type: 'QStyleOptionMenuItem.MenuItemType'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionMenuItem.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionMenuItem.StyleOptionType'
checkType = ... # type: 'QStyleOptionMenuItem.CheckType'
checked = ... # type: bool
font = ... # type: QtGui.QFont
icon = ... # type: QtGui.QIcon
maxIconWidth = ... # type: int
menuHasCheckableItems = ... # type: bool
menuItemType = ... # type: 'QStyleOptionMenuItem.MenuItemType'
menuRect = ... # type: QtCore.QRect
tabWidth = ... # type: int
text = ... # type: str
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionMenuItem') -> None: ...
class QStyleOptionDockWidget(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionDockWidget.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionDockWidget.StyleOptionType'
closable = ... # type: bool
floatable = ... # type: bool
movable = ... # type: bool
title = ... # type: str
verticalTitleBar = ... # type: bool
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionDockWidget') -> None: ...
class QStyleOptionViewItem(QStyleOption):
class ViewItemPosition(int): ...
Invalid = ... # type: 'QStyleOptionViewItem.ViewItemPosition'
Beginning = ... # type: 'QStyleOptionViewItem.ViewItemPosition'
Middle = ... # type: 'QStyleOptionViewItem.ViewItemPosition'
End = ... # type: 'QStyleOptionViewItem.ViewItemPosition'
OnlyOne = ... # type: 'QStyleOptionViewItem.ViewItemPosition'
class ViewItemFeature(int): ...
None_ = ... # type: 'QStyleOptionViewItem.ViewItemFeature'
WrapText = ... # type: 'QStyleOptionViewItem.ViewItemFeature'
Alternate = ... # type: 'QStyleOptionViewItem.ViewItemFeature'
HasCheckIndicator = ... # type: 'QStyleOptionViewItem.ViewItemFeature'
HasDisplay = ... # type: 'QStyleOptionViewItem.ViewItemFeature'
HasDecoration = ... # type: 'QStyleOptionViewItem.ViewItemFeature'
class Position(int): ...
Left = ... # type: 'QStyleOptionViewItem.Position'
Right = ... # type: 'QStyleOptionViewItem.Position'
Top = ... # type: 'QStyleOptionViewItem.Position'
Bottom = ... # type: 'QStyleOptionViewItem.Position'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionViewItem.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionViewItem.StyleOptionType'
class ViewItemFeatures(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyleOptionViewItem.ViewItemFeatures', 'QStyleOptionViewItem.ViewItemFeature']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleOptionViewItem.ViewItemFeatures') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyleOptionViewItem.ViewItemFeatures': ...
def __int__(self) -> int: ...
backgroundBrush = ... # type: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]
checkState = ... # type: QtCore.Qt.CheckState
decorationAlignment = ... # type: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]
decorationPosition = ... # type: 'QStyleOptionViewItem.Position'
decorationSize = ... # type: QtCore.QSize
displayAlignment = ... # type: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]
features = ... # type: typing.Union['QStyleOptionViewItem.ViewItemFeatures', 'QStyleOptionViewItem.ViewItemFeature']
font = ... # type: QtGui.QFont
icon = ... # type: QtGui.QIcon
index = ... # type: QtCore.QModelIndex
locale = ... # type: QtCore.QLocale
showDecorationSelected = ... # type: bool
text = ... # type: str
textElideMode = ... # type: QtCore.Qt.TextElideMode
viewItemPosition = ... # type: 'QStyleOptionViewItem.ViewItemPosition'
widget = ... # type: QWidget
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionViewItem') -> None: ...
class QStyleOptionToolBox(QStyleOption):
class SelectedPosition(int): ...
NotAdjacent = ... # type: 'QStyleOptionToolBox.SelectedPosition'
NextIsSelected = ... # type: 'QStyleOptionToolBox.SelectedPosition'
PreviousIsSelected = ... # type: 'QStyleOptionToolBox.SelectedPosition'
class TabPosition(int): ...
Beginning = ... # type: 'QStyleOptionToolBox.TabPosition'
Middle = ... # type: 'QStyleOptionToolBox.TabPosition'
End = ... # type: 'QStyleOptionToolBox.TabPosition'
OnlyOneTab = ... # type: 'QStyleOptionToolBox.TabPosition'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionToolBox.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionToolBox.StyleOptionType'
icon = ... # type: QtGui.QIcon
position = ... # type: 'QStyleOptionToolBox.TabPosition'
selectedPosition = ... # type: 'QStyleOptionToolBox.SelectedPosition'
text = ... # type: str
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionToolBox') -> None: ...
class QStyleOptionRubberBand(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionRubberBand.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionRubberBand.StyleOptionType'
opaque = ... # type: bool
shape = ... # type: QRubberBand.Shape
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionRubberBand') -> None: ...
class QStyleOptionComplex(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionComplex.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionComplex.StyleOptionType'
activeSubControls = ... # type: typing.Union[QStyle.SubControls, QStyle.SubControl]
subControls = ... # type: typing.Union[QStyle.SubControls, QStyle.SubControl]
@typing.overload
def __init__(self, version: int = ..., type: int = ...) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionComplex') -> None: ...
class QStyleOptionSlider(QStyleOptionComplex):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionSlider.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionSlider.StyleOptionType'
dialWrapping = ... # type: bool
maximum = ... # type: int
minimum = ... # type: int
notchTarget = ... # type: float
orientation = ... # type: QtCore.Qt.Orientation
pageStep = ... # type: int
singleStep = ... # type: int
sliderPosition = ... # type: int
sliderValue = ... # type: int
tickInterval = ... # type: int
tickPosition = ... # type: QSlider.TickPosition
upsideDown = ... # type: bool
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionSlider') -> None: ...
class QStyleOptionSpinBox(QStyleOptionComplex):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionSpinBox.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionSpinBox.StyleOptionType'
buttonSymbols = ... # type: QAbstractSpinBox.ButtonSymbols
frame = ... # type: bool
stepEnabled = ... # type: typing.Union[QAbstractSpinBox.StepEnabled, QAbstractSpinBox.StepEnabledFlag]
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionSpinBox') -> None: ...
class QStyleOptionToolButton(QStyleOptionComplex):
class ToolButtonFeature(int): ...
None_ = ... # type: 'QStyleOptionToolButton.ToolButtonFeature'
Arrow = ... # type: 'QStyleOptionToolButton.ToolButtonFeature'
Menu = ... # type: 'QStyleOptionToolButton.ToolButtonFeature'
PopupDelay = ... # type: 'QStyleOptionToolButton.ToolButtonFeature'
MenuButtonPopup = ... # type: 'QStyleOptionToolButton.ToolButtonFeature'
HasMenu = ... # type: 'QStyleOptionToolButton.ToolButtonFeature'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionToolButton.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionToolButton.StyleOptionType'
class ToolButtonFeatures(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyleOptionToolButton.ToolButtonFeatures', 'QStyleOptionToolButton.ToolButtonFeature']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleOptionToolButton.ToolButtonFeatures') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyleOptionToolButton.ToolButtonFeatures': ...
def __int__(self) -> int: ...
arrowType = ... # type: QtCore.Qt.ArrowType
features = ... # type: typing.Union['QStyleOptionToolButton.ToolButtonFeatures', 'QStyleOptionToolButton.ToolButtonFeature']
font = ... # type: QtGui.QFont
icon = ... # type: QtGui.QIcon
iconSize = ... # type: QtCore.QSize
pos = ... # type: QtCore.QPoint
text = ... # type: str
toolButtonStyle = ... # type: QtCore.Qt.ToolButtonStyle
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionToolButton') -> None: ...
class QStyleOptionComboBox(QStyleOptionComplex):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionComboBox.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionComboBox.StyleOptionType'
currentIcon = ... # type: QtGui.QIcon
currentText = ... # type: str
editable = ... # type: bool
frame = ... # type: bool
iconSize = ... # type: QtCore.QSize
popupRect = ... # type: QtCore.QRect
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionComboBox') -> None: ...
class QStyleOptionTitleBar(QStyleOptionComplex):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionTitleBar.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionTitleBar.StyleOptionType'
icon = ... # type: QtGui.QIcon
text = ... # type: str
titleBarFlags = ... # type: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType]
titleBarState = ... # type: int
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionTitleBar') -> None: ...
class QStyleHintReturn(sip.simplewrapper):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleHintReturn.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleHintReturn.StyleOptionType'
class HintReturnType(int): ...
SH_Default = ... # type: 'QStyleHintReturn.HintReturnType'
SH_Mask = ... # type: 'QStyleHintReturn.HintReturnType'
SH_Variant = ... # type: 'QStyleHintReturn.HintReturnType'
type = ... # type: int
version = ... # type: int
@typing.overload
def __init__(self, version: int = ..., type: int = ...) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleHintReturn') -> None: ...
class QStyleHintReturnMask(QStyleHintReturn):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleHintReturnMask.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleHintReturnMask.StyleOptionType'
region = ... # type: QtGui.QRegion
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleHintReturnMask') -> None: ...
class QStyleOptionToolBar(QStyleOption):
class ToolBarFeature(int): ...
None_ = ... # type: 'QStyleOptionToolBar.ToolBarFeature'
Movable = ... # type: 'QStyleOptionToolBar.ToolBarFeature'
class ToolBarPosition(int): ...
Beginning = ... # type: 'QStyleOptionToolBar.ToolBarPosition'
Middle = ... # type: 'QStyleOptionToolBar.ToolBarPosition'
End = ... # type: 'QStyleOptionToolBar.ToolBarPosition'
OnlyOne = ... # type: 'QStyleOptionToolBar.ToolBarPosition'
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionToolBar.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionToolBar.StyleOptionType'
class ToolBarFeatures(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QStyleOptionToolBar.ToolBarFeatures', 'QStyleOptionToolBar.ToolBarFeature']) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleOptionToolBar.ToolBarFeatures') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QStyleOptionToolBar.ToolBarFeatures': ...
def __int__(self) -> int: ...
features = ... # type: typing.Union['QStyleOptionToolBar.ToolBarFeatures', 'QStyleOptionToolBar.ToolBarFeature']
lineWidth = ... # type: int
midLineWidth = ... # type: int
positionOfLine = ... # type: 'QStyleOptionToolBar.ToolBarPosition'
positionWithinLine = ... # type: 'QStyleOptionToolBar.ToolBarPosition'
toolBarArea = ... # type: QtCore.Qt.ToolBarArea
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionToolBar') -> None: ...
class QStyleOptionGroupBox(QStyleOptionComplex):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionGroupBox.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionGroupBox.StyleOptionType'
features = ... # type: typing.Union[QStyleOptionFrame.FrameFeatures, QStyleOptionFrame.FrameFeature]
lineWidth = ... # type: int
midLineWidth = ... # type: int
text = ... # type: str
textAlignment = ... # type: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]
textColor = ... # type: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionGroupBox') -> None: ...
class QStyleOptionSizeGrip(QStyleOptionComplex):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionSizeGrip.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionSizeGrip.StyleOptionType'
corner = ... # type: QtCore.Qt.Corner
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionSizeGrip') -> None: ...
class QStyleOptionGraphicsItem(QStyleOption):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleOptionGraphicsItem.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleOptionGraphicsItem.StyleOptionType'
exposedRect = ... # type: QtCore.QRectF
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, other: 'QStyleOptionGraphicsItem') -> None: ...
@staticmethod
def levelOfDetailFromTransform(worldTransform: QtGui.QTransform) -> float: ...
class QStyleHintReturnVariant(QStyleHintReturn):
class StyleOptionVersion(int): ...
Version = ... # type: 'QStyleHintReturnVariant.StyleOptionVersion'
class StyleOptionType(int): ...
Type = ... # type: 'QStyleHintReturnVariant.StyleOptionType'
variant = ... # type: typing.Any
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QStyleHintReturnVariant') -> None: ...
class QStylePainter(QtGui.QPainter):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, w: QWidget) -> None: ...
@typing.overload
def __init__(self, pd: QtGui.QPaintDevice, w: QWidget) -> None: ...
def drawItemPixmap(self, r: QtCore.QRect, flags: int, pixmap: QtGui.QPixmap) -> None: ...
def drawItemText(self, rect: QtCore.QRect, flags: int, pal: QtGui.QPalette, enabled: bool, text: str, textRole: QtGui.QPalette.ColorRole = ...) -> None: ...
def drawComplexControl(self, cc: QStyle.ComplexControl, opt: QStyleOptionComplex) -> None: ...
def drawControl(self, ce: QStyle.ControlElement, opt: QStyleOption) -> None: ...
def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: QStyleOption) -> None: ...
def style(self) -> QStyle: ...
@typing.overload
def begin(self, w: QWidget) -> bool: ...
@typing.overload
def begin(self, pd: QtGui.QPaintDevice, w: QWidget) -> bool: ...
class QSystemTrayIcon(QtCore.QObject):
class MessageIcon(int): ...
NoIcon = ... # type: 'QSystemTrayIcon.MessageIcon'
Information = ... # type: 'QSystemTrayIcon.MessageIcon'
Warning = ... # type: 'QSystemTrayIcon.MessageIcon'
Critical = ... # type: 'QSystemTrayIcon.MessageIcon'
class ActivationReason(int): ...
Unknown = ... # type: 'QSystemTrayIcon.ActivationReason'
Context = ... # type: 'QSystemTrayIcon.ActivationReason'
DoubleClick = ... # type: 'QSystemTrayIcon.ActivationReason'
Trigger = ... # type: 'QSystemTrayIcon.ActivationReason'
MiddleClick = ... # type: 'QSystemTrayIcon.ActivationReason'
@typing.overload
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
@typing.overload
def __init__(self, icon: QtGui.QIcon, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def messageClicked(self) -> None: ...
def activated(self, reason: 'QSystemTrayIcon.ActivationReason') -> None: ...
def show(self) -> None: ...
def setVisible(self, visible: bool) -> None: ...
def hide(self) -> None: ...
def isVisible(self) -> bool: ...
@typing.overload
def showMessage(self, title: str, msg: str, icon: 'QSystemTrayIcon.MessageIcon' = ..., msecs: int = ...) -> None: ...
@typing.overload
def showMessage(self, title: str, msg: str, icon: QtGui.QIcon, msecs: int = ...) -> None: ...
@staticmethod
def supportsMessages() -> bool: ...
@staticmethod
def isSystemTrayAvailable() -> bool: ...
def setToolTip(self, tip: str) -> None: ...
def toolTip(self) -> str: ...
def setIcon(self, icon: QtGui.QIcon) -> None: ...
def icon(self) -> QtGui.QIcon: ...
def geometry(self) -> QtCore.QRect: ...
def contextMenu(self) -> QMenu: ...
def setContextMenu(self, menu: QMenu) -> None: ...
class QTabBar(QWidget):
class SelectionBehavior(int): ...
SelectLeftTab = ... # type: 'QTabBar.SelectionBehavior'
SelectRightTab = ... # type: 'QTabBar.SelectionBehavior'
SelectPreviousTab = ... # type: 'QTabBar.SelectionBehavior'
class ButtonPosition(int): ...
LeftSide = ... # type: 'QTabBar.ButtonPosition'
RightSide = ... # type: 'QTabBar.ButtonPosition'
class Shape(int): ...
RoundedNorth = ... # type: 'QTabBar.Shape'
RoundedSouth = ... # type: 'QTabBar.Shape'
RoundedWest = ... # type: 'QTabBar.Shape'
RoundedEast = ... # type: 'QTabBar.Shape'
TriangularNorth = ... # type: 'QTabBar.Shape'
TriangularSouth = ... # type: 'QTabBar.Shape'
TriangularWest = ... # type: 'QTabBar.Shape'
TriangularEast = ... # type: 'QTabBar.Shape'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def setAccessibleTabName(self, index: int, name: str) -> None: ...
def accessibleTabName(self, index: int) -> str: ...
def timerEvent(self, event: QtCore.QTimerEvent) -> None: ...
def setChangeCurrentOnDrag(self, change: bool) -> None: ...
def changeCurrentOnDrag(self) -> bool: ...
def setAutoHide(self, hide: bool) -> None: ...
def autoHide(self) -> bool: ...
def tabBarDoubleClicked(self, index: int) -> None: ...
def tabBarClicked(self, index: int) -> None: ...
def minimumTabSizeHint(self, index: int) -> QtCore.QSize: ...
def wheelEvent(self, event: QtGui.QWheelEvent) -> None: ...
def hideEvent(self, a0: QtGui.QHideEvent) -> None: ...
def tabMoved(self, from_: int, to: int) -> None: ...
def tabCloseRequested(self, index: int) -> None: ...
def setDocumentMode(self, set: bool) -> None: ...
def documentMode(self) -> bool: ...
def setMovable(self, movable: bool) -> None: ...
def isMovable(self) -> bool: ...
def setExpanding(self, enabled: bool) -> None: ...
def expanding(self) -> bool: ...
def setSelectionBehaviorOnRemove(self, behavior: 'QTabBar.SelectionBehavior') -> None: ...
def selectionBehaviorOnRemove(self) -> 'QTabBar.SelectionBehavior': ...
def tabButton(self, index: int, position: 'QTabBar.ButtonPosition') -> QWidget: ...
def setTabButton(self, index: int, position: 'QTabBar.ButtonPosition', widget: QWidget) -> None: ...
def setTabsClosable(self, closable: bool) -> None: ...
def tabsClosable(self) -> bool: ...
def moveTab(self, from_: int, to: int) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def tabLayoutChange(self) -> None: ...
def tabRemoved(self, index: int) -> None: ...
def tabInserted(self, index: int) -> None: ...
def tabSizeHint(self, index: int) -> QtCore.QSize: ...
def initStyleOption(self, option: QStyleOptionTab, tabIndex: int) -> None: ...
def currentChanged(self, index: int) -> None: ...
def setCurrentIndex(self, index: int) -> None: ...
def usesScrollButtons(self) -> bool: ...
def setUsesScrollButtons(self, useButtons: bool) -> None: ...
def setElideMode(self, a0: QtCore.Qt.TextElideMode) -> None: ...
def elideMode(self) -> QtCore.Qt.TextElideMode: ...
def setIconSize(self, size: QtCore.QSize) -> None: ...
def iconSize(self) -> QtCore.QSize: ...
def drawBase(self) -> bool: ...
def setDrawBase(self, drawTheBase: bool) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def currentIndex(self) -> int: ...
def tabRect(self, index: int) -> QtCore.QRect: ...
def tabAt(self, pos: QtCore.QPoint) -> int: ...
def tabData(self, index: int) -> typing.Any: ...
def setTabData(self, index: int, data: typing.Any) -> None: ...
def tabWhatsThis(self, index: int) -> str: ...
def setTabWhatsThis(self, index: int, text: str) -> None: ...
def tabToolTip(self, index: int) -> str: ...
def setTabToolTip(self, index: int, tip: str) -> None: ...
def setTabIcon(self, index: int, icon: QtGui.QIcon) -> None: ...
def tabIcon(self, index: int) -> QtGui.QIcon: ...
def setTabTextColor(self, index: int, color: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def tabTextColor(self, index: int) -> QtGui.QColor: ...
def setTabText(self, index: int, text: str) -> None: ...
def tabText(self, index: int) -> str: ...
def setTabEnabled(self, index: int, a1: bool) -> None: ...
def isTabEnabled(self, index: int) -> bool: ...
def removeTab(self, index: int) -> None: ...
@typing.overload
def insertTab(self, index: int, text: str) -> int: ...
@typing.overload
def insertTab(self, index: int, icon: QtGui.QIcon, text: str) -> int: ...
@typing.overload
def addTab(self, text: str) -> int: ...
@typing.overload
def addTab(self, icon: QtGui.QIcon, text: str) -> int: ...
def setShape(self, shape: 'QTabBar.Shape') -> None: ...
def shape(self) -> 'QTabBar.Shape': ...
class QTableView(QAbstractItemView):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def currentChanged(self, current: QtCore.QModelIndex, previous: QtCore.QModelIndex) -> None: ...
def selectionChanged(self, selected: QtCore.QItemSelection, deselected: QtCore.QItemSelection) -> None: ...
def clearSpans(self) -> None: ...
def isCornerButtonEnabled(self) -> bool: ...
def setCornerButtonEnabled(self, enable: bool) -> None: ...
def wordWrap(self) -> bool: ...
def setWordWrap(self, on: bool) -> None: ...
def sortByColumn(self, column: int, order: QtCore.Qt.SortOrder) -> None: ...
def columnSpan(self, row: int, column: int) -> int: ...
def rowSpan(self, row: int, column: int) -> int: ...
def setSpan(self, row: int, column: int, rowSpan: int, columnSpan: int) -> None: ...
def isSortingEnabled(self) -> bool: ...
def setSortingEnabled(self, enable: bool) -> None: ...
def viewportSizeHint(self) -> QtCore.QSize: ...
def isIndexHidden(self, index: QtCore.QModelIndex) -> bool: ...
def horizontalScrollbarAction(self, action: int) -> None: ...
def verticalScrollbarAction(self, action: int) -> None: ...
def sizeHintForColumn(self, column: int) -> int: ...
def sizeHintForRow(self, row: int) -> int: ...
def updateGeometries(self) -> None: ...
def selectedIndexes(self) -> typing.List[QtCore.QModelIndex]: ...
def visualRegionForSelection(self, selection: QtCore.QItemSelection) -> QtGui.QRegion: ...
def setSelection(self, rect: QtCore.QRect, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, modifiers: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> QtCore.QModelIndex: ...
def verticalOffset(self) -> int: ...
def horizontalOffset(self) -> int: ...
def timerEvent(self, event: QtCore.QTimerEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def viewOptions(self) -> QStyleOptionViewItem: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def columnCountChanged(self, oldCount: int, newCount: int) -> None: ...
def rowCountChanged(self, oldCount: int, newCount: int) -> None: ...
def columnResized(self, column: int, oldWidth: int, newWidth: int) -> None: ...
def rowResized(self, row: int, oldHeight: int, newHeight: int) -> None: ...
def columnMoved(self, column: int, oldIndex: int, newIndex: int) -> None: ...
def rowMoved(self, row: int, oldIndex: int, newIndex: int) -> None: ...
def resizeColumnsToContents(self) -> None: ...
def resizeColumnToContents(self, column: int) -> None: ...
def resizeRowsToContents(self) -> None: ...
def resizeRowToContents(self, row: int) -> None: ...
def showColumn(self, column: int) -> None: ...
def showRow(self, row: int) -> None: ...
def hideColumn(self, column: int) -> None: ...
def hideRow(self, row: int) -> None: ...
def selectColumn(self, column: int) -> None: ...
def selectRow(self, row: int) -> None: ...
def indexAt(self, p: QtCore.QPoint) -> QtCore.QModelIndex: ...
def scrollTo(self, index: QtCore.QModelIndex, hint: QAbstractItemView.ScrollHint = ...) -> None: ...
def visualRect(self, index: QtCore.QModelIndex) -> QtCore.QRect: ...
def setGridStyle(self, style: QtCore.Qt.PenStyle) -> None: ...
def gridStyle(self) -> QtCore.Qt.PenStyle: ...
def setShowGrid(self, show: bool) -> None: ...
def showGrid(self) -> bool: ...
def setColumnHidden(self, column: int, hide: bool) -> None: ...
def isColumnHidden(self, column: int) -> bool: ...
def setRowHidden(self, row: int, hide: bool) -> None: ...
def isRowHidden(self, row: int) -> bool: ...
def columnAt(self, x: int) -> int: ...
def columnWidth(self, column: int) -> int: ...
def setColumnWidth(self, column: int, width: int) -> None: ...
def columnViewportPosition(self, column: int) -> int: ...
def rowAt(self, y: int) -> int: ...
def rowHeight(self, row: int) -> int: ...
def setRowHeight(self, row: int, height: int) -> None: ...
def rowViewportPosition(self, row: int) -> int: ...
def setVerticalHeader(self, header: QHeaderView) -> None: ...
def setHorizontalHeader(self, header: QHeaderView) -> None: ...
def verticalHeader(self) -> QHeaderView: ...
def horizontalHeader(self) -> QHeaderView: ...
def setSelectionModel(self, selectionModel: QtCore.QItemSelectionModel) -> None: ...
def setRootIndex(self, index: QtCore.QModelIndex) -> None: ...
def setModel(self, model: QtCore.QAbstractItemModel) -> None: ...
class QTableWidgetSelectionRange(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, top: int, left: int, bottom: int, right: int) -> None: ...
@typing.overload
def __init__(self, other: 'QTableWidgetSelectionRange') -> None: ...
def columnCount(self) -> int: ...
def rowCount(self) -> int: ...
def rightColumn(self) -> int: ...
def leftColumn(self) -> int: ...
def bottomRow(self) -> int: ...
def topRow(self) -> int: ...
class QTableWidgetItem(sip.wrapper):
class ItemType(int): ...
Type = ... # type: 'QTableWidgetItem.ItemType'
UserType = ... # type: 'QTableWidgetItem.ItemType'
@typing.overload
def __init__(self, type: int = ...) -> None: ...
@typing.overload
def __init__(self, text: str, type: int = ...) -> None: ...
@typing.overload
def __init__(self, icon: QtGui.QIcon, text: str, type: int = ...) -> None: ...
@typing.overload
def __init__(self, other: 'QTableWidgetItem') -> None: ...
def isSelected(self) -> bool: ...
def setSelected(self, aselect: bool) -> None: ...
def column(self) -> int: ...
def row(self) -> int: ...
def setForeground(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def foreground(self) -> QtGui.QBrush: ...
def setBackground(self, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def background(self) -> QtGui.QBrush: ...
def setSizeHint(self, size: QtCore.QSize) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def setFont(self, afont: QtGui.QFont) -> None: ...
def setWhatsThis(self, awhatsThis: str) -> None: ...
def setToolTip(self, atoolTip: str) -> None: ...
def setStatusTip(self, astatusTip: str) -> None: ...
def setIcon(self, aicon: QtGui.QIcon) -> None: ...
def setText(self, atext: str) -> None: ...
def setFlags(self, aflags: typing.Union[QtCore.Qt.ItemFlags, QtCore.Qt.ItemFlag]) -> None: ...
def type(self) -> int: ...
def write(self, out: QtCore.QDataStream) -> None: ...
def read(self, in_: QtCore.QDataStream) -> None: ...
def setData(self, role: int, value: typing.Any) -> None: ...
def data(self, role: int) -> typing.Any: ...
def setCheckState(self, state: QtCore.Qt.CheckState) -> None: ...
def checkState(self) -> QtCore.Qt.CheckState: ...
def setTextAlignment(self, alignment: int) -> None: ...
def textAlignment(self) -> int: ...
def font(self) -> QtGui.QFont: ...
def whatsThis(self) -> str: ...
def toolTip(self) -> str: ...
def statusTip(self) -> str: ...
def icon(self) -> QtGui.QIcon: ...
def text(self) -> str: ...
def flags(self) -> QtCore.Qt.ItemFlags: ...
def tableWidget(self) -> 'QTableWidget': ...
def clone(self) -> 'QTableWidgetItem': ...
class QTableWidget(QTableView):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, rows: int, columns: int, parent: typing.Optional[QWidget] = ...) -> None: ...
def isPersistentEditorOpen(self, item: QTableWidgetItem) -> bool: ...
def dropEvent(self, event: QtGui.QDropEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def itemFromIndex(self, index: QtCore.QModelIndex) -> QTableWidgetItem: ...
def indexFromItem(self, item: QTableWidgetItem) -> QtCore.QModelIndex: ...
def items(self, data: QtCore.QMimeData) -> typing.List[QTableWidgetItem]: ...
def supportedDropActions(self) -> QtCore.Qt.DropActions: ...
def dropMimeData(self, row: int, column: int, data: QtCore.QMimeData, action: QtCore.Qt.DropAction) -> bool: ...
def mimeData(self, items: typing.Iterable[QTableWidgetItem]) -> QtCore.QMimeData: ...
def mimeTypes(self) -> typing.List[str]: ...
def currentCellChanged(self, currentRow: int, currentColumn: int, previousRow: int, previousColumn: int) -> None: ...
def cellChanged(self, row: int, column: int) -> None: ...
def cellEntered(self, row: int, column: int) -> None: ...
def cellActivated(self, row: int, column: int) -> None: ...
def cellDoubleClicked(self, row: int, column: int) -> None: ...
def cellClicked(self, row: int, column: int) -> None: ...
def cellPressed(self, row: int, column: int) -> None: ...
def itemSelectionChanged(self) -> None: ...
def currentItemChanged(self, current: QTableWidgetItem, previous: QTableWidgetItem) -> None: ...
def itemChanged(self, item: QTableWidgetItem) -> None: ...
def itemEntered(self, item: QTableWidgetItem) -> None: ...
def itemActivated(self, item: QTableWidgetItem) -> None: ...
def itemDoubleClicked(self, item: QTableWidgetItem) -> None: ...
def itemClicked(self, item: QTableWidgetItem) -> None: ...
def itemPressed(self, item: QTableWidgetItem) -> None: ...
def clearContents(self) -> None: ...
def clear(self) -> None: ...
def removeColumn(self, column: int) -> None: ...
def removeRow(self, row: int) -> None: ...
def insertColumn(self, column: int) -> None: ...
def insertRow(self, row: int) -> None: ...
def scrollToItem(self, item: QTableWidgetItem, hint: QAbstractItemView.ScrollHint = ...) -> None: ...
def setItemPrototype(self, item: QTableWidgetItem) -> None: ...
def itemPrototype(self) -> QTableWidgetItem: ...
def visualItemRect(self, item: QTableWidgetItem) -> QtCore.QRect: ...
@typing.overload
def itemAt(self, p: QtCore.QPoint) -> QTableWidgetItem: ...
@typing.overload
def itemAt(self, ax: int, ay: int) -> QTableWidgetItem: ...
def visualColumn(self, logicalColumn: int) -> int: ...
def visualRow(self, logicalRow: int) -> int: ...
def findItems(self, text: str, flags: typing.Union[QtCore.Qt.MatchFlags, QtCore.Qt.MatchFlag]) -> typing.List[QTableWidgetItem]: ...
def selectedItems(self) -> typing.List[QTableWidgetItem]: ...
def selectedRanges(self) -> typing.List[QTableWidgetSelectionRange]: ...
def setRangeSelected(self, range: QTableWidgetSelectionRange, select: bool) -> None: ...
def removeCellWidget(self, arow: int, acolumn: int) -> None: ...
def setCellWidget(self, row: int, column: int, widget: QWidget) -> None: ...
def cellWidget(self, row: int, column: int) -> QWidget: ...
def closePersistentEditor(self, item: QTableWidgetItem) -> None: ...
def openPersistentEditor(self, item: QTableWidgetItem) -> None: ...
def editItem(self, item: QTableWidgetItem) -> None: ...
def isSortingEnabled(self) -> bool: ...
def setSortingEnabled(self, enable: bool) -> None: ...
def sortItems(self, column: int, order: QtCore.Qt.SortOrder = ...) -> None: ...
@typing.overload
def setCurrentCell(self, row: int, column: int) -> None: ...
@typing.overload
def setCurrentCell(self, row: int, column: int, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
@typing.overload
def setCurrentItem(self, item: QTableWidgetItem) -> None: ...
@typing.overload
def setCurrentItem(self, item: QTableWidgetItem, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def currentItem(self) -> QTableWidgetItem: ...
def currentColumn(self) -> int: ...
def currentRow(self) -> int: ...
def setHorizontalHeaderLabels(self, labels: typing.Iterable[str]) -> None: ...
def setVerticalHeaderLabels(self, labels: typing.Iterable[str]) -> None: ...
def takeHorizontalHeaderItem(self, column: int) -> QTableWidgetItem: ...
def setHorizontalHeaderItem(self, column: int, item: QTableWidgetItem) -> None: ...
def horizontalHeaderItem(self, column: int) -> QTableWidgetItem: ...
def takeVerticalHeaderItem(self, row: int) -> QTableWidgetItem: ...
def setVerticalHeaderItem(self, row: int, item: QTableWidgetItem) -> None: ...
def verticalHeaderItem(self, row: int) -> QTableWidgetItem: ...
def takeItem(self, row: int, column: int) -> QTableWidgetItem: ...
def setItem(self, row: int, column: int, item: QTableWidgetItem) -> None: ...
def item(self, row: int, column: int) -> QTableWidgetItem: ...
def column(self, item: QTableWidgetItem) -> int: ...
def row(self, item: QTableWidgetItem) -> int: ...
def columnCount(self) -> int: ...
def setColumnCount(self, columns: int) -> None: ...
def rowCount(self) -> int: ...
def setRowCount(self, rows: int) -> None: ...
class QTabWidget(QWidget):
class TabShape(int): ...
Rounded = ... # type: 'QTabWidget.TabShape'
Triangular = ... # type: 'QTabWidget.TabShape'
class TabPosition(int): ...
North = ... # type: 'QTabWidget.TabPosition'
South = ... # type: 'QTabWidget.TabPosition'
West = ... # type: 'QTabWidget.TabPosition'
East = ... # type: 'QTabWidget.TabPosition'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def setTabBarAutoHide(self, enabled: bool) -> None: ...
def tabBarAutoHide(self) -> bool: ...
def tabBarDoubleClicked(self, index: int) -> None: ...
def tabBarClicked(self, index: int) -> None: ...
def hasHeightForWidth(self) -> bool: ...
def heightForWidth(self, width: int) -> int: ...
def tabCloseRequested(self, index: int) -> None: ...
def setDocumentMode(self, set: bool) -> None: ...
def documentMode(self) -> bool: ...
def setMovable(self, movable: bool) -> None: ...
def isMovable(self) -> bool: ...
def setTabsClosable(self, closeable: bool) -> None: ...
def tabsClosable(self) -> bool: ...
def setUsesScrollButtons(self, useButtons: bool) -> None: ...
def usesScrollButtons(self) -> bool: ...
def setIconSize(self, size: QtCore.QSize) -> None: ...
def iconSize(self) -> QtCore.QSize: ...
def setElideMode(self, a0: QtCore.Qt.TextElideMode) -> None: ...
def elideMode(self) -> QtCore.Qt.TextElideMode: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def tabBar(self) -> QTabBar: ...
def setTabBar(self, a0: QTabBar) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def tabRemoved(self, index: int) -> None: ...
def tabInserted(self, index: int) -> None: ...
def initStyleOption(self, option: QStyleOptionTabWidgetFrame) -> None: ...
def currentChanged(self, index: int) -> None: ...
def setCurrentWidget(self, widget: QWidget) -> None: ...
def setCurrentIndex(self, index: int) -> None: ...
def cornerWidget(self, corner: QtCore.Qt.Corner = ...) -> QWidget: ...
def setCornerWidget(self, widget: QWidget, corner: QtCore.Qt.Corner = ...) -> None: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
def setTabShape(self, s: 'QTabWidget.TabShape') -> None: ...
def tabShape(self) -> 'QTabWidget.TabShape': ...
def setTabPosition(self, a0: 'QTabWidget.TabPosition') -> None: ...
def tabPosition(self) -> 'QTabWidget.TabPosition': ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def indexOf(self, widget: QWidget) -> int: ...
def widget(self, index: int) -> QWidget: ...
def currentWidget(self) -> QWidget: ...
def currentIndex(self) -> int: ...
def tabWhatsThis(self, index: int) -> str: ...
def setTabWhatsThis(self, index: int, text: str) -> None: ...
def tabToolTip(self, index: int) -> str: ...
def setTabToolTip(self, index: int, tip: str) -> None: ...
def setTabIcon(self, index: int, icon: QtGui.QIcon) -> None: ...
def tabIcon(self, index: int) -> QtGui.QIcon: ...
def setTabText(self, index: int, a1: str) -> None: ...
def tabText(self, index: int) -> str: ...
def setTabEnabled(self, index: int, a1: bool) -> None: ...
def isTabEnabled(self, index: int) -> bool: ...
def removeTab(self, index: int) -> None: ...
@typing.overload
def insertTab(self, index: int, widget: QWidget, a2: str) -> int: ...
@typing.overload
def insertTab(self, index: int, widget: QWidget, icon: QtGui.QIcon, label: str) -> int: ...
@typing.overload
def addTab(self, widget: QWidget, a1: str) -> int: ...
@typing.overload
def addTab(self, widget: QWidget, icon: QtGui.QIcon, label: str) -> int: ...
def clear(self) -> None: ...
class QTextEdit(QAbstractScrollArea):
class AutoFormattingFlag(int): ...
AutoNone = ... # type: 'QTextEdit.AutoFormattingFlag'
AutoBulletList = ... # type: 'QTextEdit.AutoFormattingFlag'
AutoAll = ... # type: 'QTextEdit.AutoFormattingFlag'
class LineWrapMode(int): ...
NoWrap = ... # type: 'QTextEdit.LineWrapMode'
WidgetWidth = ... # type: 'QTextEdit.LineWrapMode'
FixedPixelWidth = ... # type: 'QTextEdit.LineWrapMode'
FixedColumnWidth = ... # type: 'QTextEdit.LineWrapMode'
class ExtraSelection(sip.simplewrapper):
cursor = ... # type: QtGui.QTextCursor
format = ... # type: QtGui.QTextCharFormat
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, a0: 'QTextEdit.ExtraSelection') -> None: ...
class AutoFormatting(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QTextEdit.AutoFormatting', 'QTextEdit.AutoFormattingFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QTextEdit.AutoFormatting') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QTextEdit.AutoFormatting': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional[QWidget] = ...) -> None: ...
def setTabStopDistance(self, distance: float) -> None: ...
def tabStopDistance(self) -> float: ...
def placeholderText(self) -> str: ...
def setPlaceholderText(self, placeholderText: str) -> None: ...
def setTextBackgroundColor(self, c: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def textBackgroundColor(self) -> QtGui.QColor: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
@typing.overload
def inputMethodQuery(self, property: QtCore.Qt.InputMethodQuery) -> typing.Any: ...
@typing.overload
def inputMethodQuery(self, query: QtCore.Qt.InputMethodQuery, argument: typing.Any) -> typing.Any: ...
def inputMethodEvent(self, a0: QtGui.QInputMethodEvent) -> None: ...
def insertFromMimeData(self, source: QtCore.QMimeData) -> None: ...
def canInsertFromMimeData(self, source: QtCore.QMimeData) -> bool: ...
def createMimeDataFromSelection(self) -> QtCore.QMimeData: ...
def wheelEvent(self, e: QtGui.QWheelEvent) -> None: ...
def changeEvent(self, e: QtCore.QEvent) -> None: ...
def showEvent(self, a0: QtGui.QShowEvent) -> None: ...
def focusOutEvent(self, e: QtGui.QFocusEvent) -> None: ...
def focusInEvent(self, e: QtGui.QFocusEvent) -> None: ...
def dropEvent(self, e: QtGui.QDropEvent) -> None: ...
def dragMoveEvent(self, e: QtGui.QDragMoveEvent) -> None: ...
def dragLeaveEvent(self, e: QtGui.QDragLeaveEvent) -> None: ...
def dragEnterEvent(self, e: QtGui.QDragEnterEvent) -> None: ...
def contextMenuEvent(self, e: QtGui.QContextMenuEvent) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def mouseDoubleClickEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseReleaseEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def resizeEvent(self, a0: QtGui.QResizeEvent) -> None: ...
def keyReleaseEvent(self, e: QtGui.QKeyEvent) -> None: ...
def keyPressEvent(self, e: QtGui.QKeyEvent) -> None: ...
def timerEvent(self, e: QtCore.QTimerEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def cursorPositionChanged(self) -> None: ...
def selectionChanged(self) -> None: ...
def copyAvailable(self, b: bool) -> None: ...
def currentCharFormatChanged(self, format: QtGui.QTextCharFormat) -> None: ...
def redoAvailable(self, b: bool) -> None: ...
def undoAvailable(self, b: bool) -> None: ...
def textChanged(self) -> None: ...
def zoomOut(self, range: int = ...) -> None: ...
def zoomIn(self, range: int = ...) -> None: ...
def undo(self) -> None: ...
def redo(self) -> None: ...
def scrollToAnchor(self, name: str) -> None: ...
def insertHtml(self, text: str) -> None: ...
def insertPlainText(self, text: str) -> None: ...
def selectAll(self) -> None: ...
def clear(self) -> None: ...
def paste(self) -> None: ...
def copy(self) -> None: ...
def cut(self) -> None: ...
def setHtml(self, text: str) -> None: ...
def setPlainText(self, text: str) -> None: ...
def setAlignment(self, a: typing.Union[QtCore.Qt.Alignment, QtCore.Qt.AlignmentFlag]) -> None: ...
def setCurrentFont(self, f: QtGui.QFont) -> None: ...
def setTextColor(self, c: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def setText(self, text: str) -> None: ...
def setFontItalic(self, b: bool) -> None: ...
def setFontUnderline(self, b: bool) -> None: ...
def setFontWeight(self, w: int) -> None: ...
def setFontFamily(self, fontFamily: str) -> None: ...
def setFontPointSize(self, s: float) -> None: ...
def print(self, printer: QtGui.QPagedPaintDevice) -> None: ...
def print_(self, printer: QtGui.QPagedPaintDevice) -> None: ...
def moveCursor(self, operation: QtGui.QTextCursor.MoveOperation, mode: QtGui.QTextCursor.MoveMode = ...) -> None: ...
def canPaste(self) -> bool: ...
def extraSelections(self) -> typing.List['QTextEdit.ExtraSelection']: ...
def setExtraSelections(self, selections: typing.Iterable['QTextEdit.ExtraSelection']) -> None: ...
def cursorWidth(self) -> int: ...
def setCursorWidth(self, width: int) -> None: ...
def textInteractionFlags(self) -> QtCore.Qt.TextInteractionFlags: ...
def setTextInteractionFlags(self, flags: typing.Union[QtCore.Qt.TextInteractionFlags, QtCore.Qt.TextInteractionFlag]) -> None: ...
def setAcceptRichText(self, accept: bool) -> None: ...
def acceptRichText(self) -> bool: ...
def setTabStopWidth(self, width: int) -> None: ...
def tabStopWidth(self) -> int: ...
def setOverwriteMode(self, overwrite: bool) -> None: ...
def overwriteMode(self) -> bool: ...
def anchorAt(self, pos: QtCore.QPoint) -> str: ...
@typing.overload
def cursorRect(self, cursor: QtGui.QTextCursor) -> QtCore.QRect: ...
@typing.overload
def cursorRect(self) -> QtCore.QRect: ...
def cursorForPosition(self, pos: QtCore.QPoint) -> QtGui.QTextCursor: ...
@typing.overload
def createStandardContextMenu(self) -> QMenu: ...
@typing.overload
def createStandardContextMenu(self, position: QtCore.QPoint) -> QMenu: ...
def loadResource(self, type: int, name: QtCore.QUrl) -> typing.Any: ...
def ensureCursorVisible(self) -> None: ...
def append(self, text: str) -> None: ...
def toHtml(self) -> str: ...
def toPlainText(self) -> str: ...
@typing.overload
def find(self, exp: str, options: typing.Union[QtGui.QTextDocument.FindFlags, QtGui.QTextDocument.FindFlag] = ...) -> bool: ...
@typing.overload
def find(self, exp: QtCore.QRegExp, options: typing.Union[QtGui.QTextDocument.FindFlags, QtGui.QTextDocument.FindFlag] = ...) -> bool: ...
@typing.overload
def find(self, exp: QtCore.QRegularExpression, options: typing.Union[QtGui.QTextDocument.FindFlags, QtGui.QTextDocument.FindFlag] = ...) -> bool: ...
def setWordWrapMode(self, policy: QtGui.QTextOption.WrapMode) -> None: ...
def wordWrapMode(self) -> QtGui.QTextOption.WrapMode: ...
def setLineWrapColumnOrWidth(self, w: int) -> None: ...
def lineWrapColumnOrWidth(self) -> int: ...
def setLineWrapMode(self, mode: 'QTextEdit.LineWrapMode') -> None: ...
def lineWrapMode(self) -> 'QTextEdit.LineWrapMode': ...
def setUndoRedoEnabled(self, enable: bool) -> None: ...
def isUndoRedoEnabled(self) -> bool: ...
def documentTitle(self) -> str: ...
def setDocumentTitle(self, title: str) -> None: ...
def setTabChangesFocus(self, b: bool) -> None: ...
def tabChangesFocus(self) -> bool: ...
def setAutoFormatting(self, features: typing.Union['QTextEdit.AutoFormatting', 'QTextEdit.AutoFormattingFlag']) -> None: ...
def autoFormatting(self) -> 'QTextEdit.AutoFormatting': ...
def currentCharFormat(self) -> QtGui.QTextCharFormat: ...
def setCurrentCharFormat(self, format: QtGui.QTextCharFormat) -> None: ...
def mergeCurrentCharFormat(self, modifier: QtGui.QTextCharFormat) -> None: ...
def alignment(self) -> QtCore.Qt.Alignment: ...
def currentFont(self) -> QtGui.QFont: ...
def textColor(self) -> QtGui.QColor: ...
def fontItalic(self) -> bool: ...
def fontUnderline(self) -> bool: ...
def fontWeight(self) -> int: ...
def fontFamily(self) -> str: ...
def fontPointSize(self) -> float: ...
def setReadOnly(self, ro: bool) -> None: ...
def isReadOnly(self) -> bool: ...
def textCursor(self) -> QtGui.QTextCursor: ...
def setTextCursor(self, cursor: QtGui.QTextCursor) -> None: ...
def document(self) -> QtGui.QTextDocument: ...
def setDocument(self, document: QtGui.QTextDocument) -> None: ...
class QTextBrowser(QTextEdit):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def historyChanged(self) -> None: ...
def forwardHistoryCount(self) -> int: ...
def backwardHistoryCount(self) -> int: ...
def historyUrl(self, a0: int) -> QtCore.QUrl: ...
def historyTitle(self, a0: int) -> str: ...
def setOpenLinks(self, open: bool) -> None: ...
def openLinks(self) -> bool: ...
def setOpenExternalLinks(self, open: bool) -> None: ...
def openExternalLinks(self) -> bool: ...
def clearHistory(self) -> None: ...
def isForwardAvailable(self) -> bool: ...
def isBackwardAvailable(self) -> bool: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def focusNextPrevChild(self, next: bool) -> bool: ...
def focusOutEvent(self, ev: QtGui.QFocusEvent) -> None: ...
def mouseReleaseEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, ev: QtGui.QMouseEvent) -> None: ...
def keyPressEvent(self, ev: QtGui.QKeyEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def anchorClicked(self, a0: QtCore.QUrl) -> None: ...
@typing.overload
def highlighted(self, a0: QtCore.QUrl) -> None: ...
@typing.overload
def highlighted(self, a0: str) -> None: ...
def sourceChanged(self, a0: QtCore.QUrl) -> None: ...
def forwardAvailable(self, a0: bool) -> None: ...
def backwardAvailable(self, a0: bool) -> None: ...
def reload(self) -> None: ...
def home(self) -> None: ...
def forward(self) -> None: ...
def backward(self) -> None: ...
def setSource(self, name: QtCore.QUrl) -> None: ...
def loadResource(self, type: int, name: QtCore.QUrl) -> typing.Any: ...
def setSearchPaths(self, paths: typing.Iterable[str]) -> None: ...
def searchPaths(self) -> typing.List[str]: ...
def source(self) -> QtCore.QUrl: ...
class QToolBar(QWidget):
@typing.overload
def __init__(self, title: str, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def isFloating(self) -> bool: ...
def setFloatable(self, floatable: bool) -> None: ...
def isFloatable(self) -> bool: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def paintEvent(self, event: QtGui.QPaintEvent) -> None: ...
def changeEvent(self, event: QtCore.QEvent) -> None: ...
def actionEvent(self, event: QtGui.QActionEvent) -> None: ...
def initStyleOption(self, option: QStyleOptionToolBar) -> None: ...
def visibilityChanged(self, visible: bool) -> None: ...
def topLevelChanged(self, topLevel: bool) -> None: ...
def toolButtonStyleChanged(self, toolButtonStyle: QtCore.Qt.ToolButtonStyle) -> None: ...
def iconSizeChanged(self, iconSize: QtCore.QSize) -> None: ...
def orientationChanged(self, orientation: QtCore.Qt.Orientation) -> None: ...
def allowedAreasChanged(self, allowedAreas: typing.Union[QtCore.Qt.ToolBarAreas, QtCore.Qt.ToolBarArea]) -> None: ...
def movableChanged(self, movable: bool) -> None: ...
def actionTriggered(self, action: QAction) -> None: ...
def setToolButtonStyle(self, toolButtonStyle: QtCore.Qt.ToolButtonStyle) -> None: ...
def setIconSize(self, iconSize: QtCore.QSize) -> None: ...
def widgetForAction(self, action: QAction) -> QWidget: ...
def toolButtonStyle(self) -> QtCore.Qt.ToolButtonStyle: ...
def iconSize(self) -> QtCore.QSize: ...
def toggleViewAction(self) -> QAction: ...
@typing.overload
def actionAt(self, p: QtCore.QPoint) -> QAction: ...
@typing.overload
def actionAt(self, ax: int, ay: int) -> QAction: ...
def actionGeometry(self, action: QAction) -> QtCore.QRect: ...
def insertWidget(self, before: QAction, widget: QWidget) -> QAction: ...
def addWidget(self, widget: QWidget) -> QAction: ...
def insertSeparator(self, before: QAction) -> QAction: ...
def addSeparator(self) -> QAction: ...
@typing.overload
def addAction(self, action: QAction) -> None: ...
@typing.overload
def addAction(self, text: str) -> QAction: ...
@typing.overload
def addAction(self, icon: QtGui.QIcon, text: str) -> QAction: ...
@typing.overload
def addAction(self, text: str, slot: PYQT_SLOT) -> QAction: ...
@typing.overload
def addAction(self, icon: QtGui.QIcon, text: str, slot: PYQT_SLOT) -> QAction: ...
def clear(self) -> None: ...
def orientation(self) -> QtCore.Qt.Orientation: ...
def setOrientation(self, orientation: QtCore.Qt.Orientation) -> None: ...
def isAreaAllowed(self, area: QtCore.Qt.ToolBarArea) -> bool: ...
def allowedAreas(self) -> QtCore.Qt.ToolBarAreas: ...
def setAllowedAreas(self, areas: typing.Union[QtCore.Qt.ToolBarAreas, QtCore.Qt.ToolBarArea]) -> None: ...
def isMovable(self) -> bool: ...
def setMovable(self, movable: bool) -> None: ...
class QToolBox(QFrame):
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def showEvent(self, e: QtGui.QShowEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def itemRemoved(self, index: int) -> None: ...
def itemInserted(self, index: int) -> None: ...
def currentChanged(self, index: int) -> None: ...
def setCurrentWidget(self, widget: QWidget) -> None: ...
def setCurrentIndex(self, index: int) -> None: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def indexOf(self, widget: QWidget) -> int: ...
def widget(self, index: int) -> QWidget: ...
def currentWidget(self) -> QWidget: ...
def currentIndex(self) -> int: ...
def itemToolTip(self, index: int) -> str: ...
def setItemToolTip(self, index: int, toolTip: str) -> None: ...
def itemIcon(self, index: int) -> QtGui.QIcon: ...
def setItemIcon(self, index: int, icon: QtGui.QIcon) -> None: ...
def itemText(self, index: int) -> str: ...
def setItemText(self, index: int, text: str) -> None: ...
def isItemEnabled(self, index: int) -> bool: ...
def setItemEnabled(self, index: int, enabled: bool) -> None: ...
def removeItem(self, index: int) -> None: ...
@typing.overload
def insertItem(self, index: int, item: QWidget, text: str) -> int: ...
@typing.overload
def insertItem(self, index: int, widget: QWidget, icon: QtGui.QIcon, text: str) -> int: ...
@typing.overload
def addItem(self, item: QWidget, text: str) -> int: ...
@typing.overload
def addItem(self, item: QWidget, iconSet: QtGui.QIcon, text: str) -> int: ...
class QToolButton(QAbstractButton):
class ToolButtonPopupMode(int): ...
DelayedPopup = ... # type: 'QToolButton.ToolButtonPopupMode'
MenuButtonPopup = ... # type: 'QToolButton.ToolButtonPopupMode'
InstantPopup = ... # type: 'QToolButton.ToolButtonPopupMode'
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def hitButton(self, pos: QtCore.QPoint) -> bool: ...
def nextCheckState(self) -> None: ...
def mouseReleaseEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def changeEvent(self, a0: QtCore.QEvent) -> None: ...
def timerEvent(self, a0: QtCore.QTimerEvent) -> None: ...
def leaveEvent(self, a0: QtCore.QEvent) -> None: ...
def enterEvent(self, a0: QtCore.QEvent) -> None: ...
def actionEvent(self, a0: QtGui.QActionEvent) -> None: ...
def paintEvent(self, a0: QtGui.QPaintEvent) -> None: ...
def mousePressEvent(self, a0: QtGui.QMouseEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def initStyleOption(self, option: QStyleOptionToolButton) -> None: ...
def triggered(self, a0: QAction) -> None: ...
def setDefaultAction(self, a0: QAction) -> None: ...
def setToolButtonStyle(self, style: QtCore.Qt.ToolButtonStyle) -> None: ...
def showMenu(self) -> None: ...
def autoRaise(self) -> bool: ...
def setAutoRaise(self, enable: bool) -> None: ...
def defaultAction(self) -> QAction: ...
def popupMode(self) -> 'QToolButton.ToolButtonPopupMode': ...
def setPopupMode(self, mode: 'QToolButton.ToolButtonPopupMode') -> None: ...
def menu(self) -> QMenu: ...
def setMenu(self, menu: QMenu) -> None: ...
def setArrowType(self, type: QtCore.Qt.ArrowType) -> None: ...
def arrowType(self) -> QtCore.Qt.ArrowType: ...
def toolButtonStyle(self) -> QtCore.Qt.ToolButtonStyle: ...
def minimumSizeHint(self) -> QtCore.QSize: ...
def sizeHint(self) -> QtCore.QSize: ...
class QToolTip(sip.simplewrapper):
def __init__(self, a0: 'QToolTip') -> None: ...
@staticmethod
def text() -> str: ...
@staticmethod
def isVisible() -> bool: ...
@staticmethod
def setFont(a0: QtGui.QFont) -> None: ...
@staticmethod
def font() -> QtGui.QFont: ...
@staticmethod
def setPalette(a0: QtGui.QPalette) -> None: ...
@staticmethod
def hideText() -> None: ...
@staticmethod
def palette() -> QtGui.QPalette: ...
@typing.overload
@staticmethod
def showText(pos: QtCore.QPoint, text: str, widget: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
@staticmethod
def showText(pos: QtCore.QPoint, text: str, w: QWidget, rect: QtCore.QRect) -> None: ...
@typing.overload
@staticmethod
def showText(pos: QtCore.QPoint, text: str, w: QWidget, rect: QtCore.QRect, msecShowTime: int) -> None: ...
class QTreeView(QAbstractItemView):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def expandRecursively(self, index: QtCore.QModelIndex, depth: int = ...) -> None: ...
def resetIndentation(self) -> None: ...
def viewportSizeHint(self) -> QtCore.QSize: ...
def treePosition(self) -> int: ...
def setTreePosition(self, logicalIndex: int) -> None: ...
def setHeaderHidden(self, hide: bool) -> None: ...
def isHeaderHidden(self) -> bool: ...
def setExpandsOnDoubleClick(self, enable: bool) -> None: ...
def expandsOnDoubleClick(self) -> bool: ...
def currentChanged(self, current: QtCore.QModelIndex, previous: QtCore.QModelIndex) -> None: ...
def selectionChanged(self, selected: QtCore.QItemSelection, deselected: QtCore.QItemSelection) -> None: ...
def rowHeight(self, index: QtCore.QModelIndex) -> int: ...
def viewportEvent(self, event: QtCore.QEvent) -> bool: ...
def dragMoveEvent(self, event: QtGui.QDragMoveEvent) -> None: ...
def expandToDepth(self, depth: int) -> None: ...
def wordWrap(self) -> bool: ...
def setWordWrap(self, on: bool) -> None: ...
def setFirstColumnSpanned(self, row: int, parent: QtCore.QModelIndex, span: bool) -> None: ...
def isFirstColumnSpanned(self, row: int, parent: QtCore.QModelIndex) -> bool: ...
def setAutoExpandDelay(self, delay: int) -> None: ...
def autoExpandDelay(self) -> int: ...
def sortByColumn(self, column: int, order: QtCore.Qt.SortOrder) -> None: ...
def allColumnsShowFocus(self) -> bool: ...
def setAllColumnsShowFocus(self, enable: bool) -> None: ...
def isAnimated(self) -> bool: ...
def setAnimated(self, enable: bool) -> None: ...
def isSortingEnabled(self) -> bool: ...
def setSortingEnabled(self, enable: bool) -> None: ...
def setColumnWidth(self, column: int, width: int) -> None: ...
def isIndexHidden(self, index: QtCore.QModelIndex) -> bool: ...
def horizontalScrollbarAction(self, action: int) -> None: ...
def indexRowSizeHint(self, index: QtCore.QModelIndex) -> int: ...
def sizeHintForColumn(self, column: int) -> int: ...
def updateGeometries(self) -> None: ...
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None: ...
def mouseDoubleClickEvent(self, e: QtGui.QMouseEvent) -> None: ...
def mouseMoveEvent(self, event: QtGui.QMouseEvent) -> None: ...
def mousePressEvent(self, e: QtGui.QMouseEvent) -> None: ...
def drawTree(self, painter: QtGui.QPainter, region: QtGui.QRegion) -> None: ...
def drawBranches(self, painter: QtGui.QPainter, rect: QtCore.QRect, index: QtCore.QModelIndex) -> None: ...
def drawRow(self, painter: QtGui.QPainter, options: QStyleOptionViewItem, index: QtCore.QModelIndex) -> None: ...
def mouseReleaseEvent(self, event: QtGui.QMouseEvent) -> None: ...
def timerEvent(self, event: QtCore.QTimerEvent) -> None: ...
def paintEvent(self, e: QtGui.QPaintEvent) -> None: ...
def selectedIndexes(self) -> typing.List[QtCore.QModelIndex]: ...
def visualRegionForSelection(self, selection: QtCore.QItemSelection) -> QtGui.QRegion: ...
def setSelection(self, rect: QtCore.QRect, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def verticalOffset(self) -> int: ...
def horizontalOffset(self) -> int: ...
def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, modifiers: typing.Union[QtCore.Qt.KeyboardModifiers, QtCore.Qt.KeyboardModifier]) -> QtCore.QModelIndex: ...
def rowsAboutToBeRemoved(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def rowsInserted(self, parent: QtCore.QModelIndex, start: int, end: int) -> None: ...
def scrollContentsBy(self, dx: int, dy: int) -> None: ...
def rowsRemoved(self, parent: QtCore.QModelIndex, first: int, last: int) -> None: ...
def reexpand(self) -> None: ...
def columnMoved(self) -> None: ...
def columnCountChanged(self, oldCount: int, newCount: int) -> None: ...
def columnResized(self, column: int, oldSize: int, newSize: int) -> None: ...
def selectAll(self) -> None: ...
def resizeColumnToContents(self, column: int) -> None: ...
def collapseAll(self) -> None: ...
def collapse(self, index: QtCore.QModelIndex) -> None: ...
def expandAll(self) -> None: ...
def expand(self, index: QtCore.QModelIndex) -> None: ...
def showColumn(self, column: int) -> None: ...
def hideColumn(self, column: int) -> None: ...
def dataChanged(self, topLeft: QtCore.QModelIndex, bottomRight: QtCore.QModelIndex, roles: typing.Iterable[int] = ...) -> None: ...
def collapsed(self, index: QtCore.QModelIndex) -> None: ...
def expanded(self, index: QtCore.QModelIndex) -> None: ...
def reset(self) -> None: ...
def indexBelow(self, index: QtCore.QModelIndex) -> QtCore.QModelIndex: ...
def indexAbove(self, index: QtCore.QModelIndex) -> QtCore.QModelIndex: ...
def indexAt(self, p: QtCore.QPoint) -> QtCore.QModelIndex: ...
def scrollTo(self, index: QtCore.QModelIndex, hint: QAbstractItemView.ScrollHint = ...) -> None: ...
def visualRect(self, index: QtCore.QModelIndex) -> QtCore.QRect: ...
def keyboardSearch(self, search: str) -> None: ...
def setExpanded(self, index: QtCore.QModelIndex, expand: bool) -> None: ...
def isExpanded(self, index: QtCore.QModelIndex) -> bool: ...
def setRowHidden(self, row: int, parent: QtCore.QModelIndex, hide: bool) -> None: ...
def isRowHidden(self, row: int, parent: QtCore.QModelIndex) -> bool: ...
def setColumnHidden(self, column: int, hide: bool) -> None: ...
def isColumnHidden(self, column: int) -> bool: ...
def columnAt(self, x: int) -> int: ...
def columnWidth(self, column: int) -> int: ...
def columnViewportPosition(self, column: int) -> int: ...
def setItemsExpandable(self, enable: bool) -> None: ...
def itemsExpandable(self) -> bool: ...
def setUniformRowHeights(self, uniform: bool) -> None: ...
def uniformRowHeights(self) -> bool: ...
def setRootIsDecorated(self, show: bool) -> None: ...
def rootIsDecorated(self) -> bool: ...
def setIndentation(self, i: int) -> None: ...
def indentation(self) -> int: ...
def setHeader(self, header: QHeaderView) -> None: ...
def header(self) -> QHeaderView: ...
def setSelectionModel(self, selectionModel: QtCore.QItemSelectionModel) -> None: ...
def setRootIndex(self, index: QtCore.QModelIndex) -> None: ...
def setModel(self, model: QtCore.QAbstractItemModel) -> None: ...
class QTreeWidgetItem(sip.wrapper):
class ChildIndicatorPolicy(int): ...
ShowIndicator = ... # type: 'QTreeWidgetItem.ChildIndicatorPolicy'
DontShowIndicator = ... # type: 'QTreeWidgetItem.ChildIndicatorPolicy'
DontShowIndicatorWhenChildless = ... # type: 'QTreeWidgetItem.ChildIndicatorPolicy'
class ItemType(int): ...
Type = ... # type: 'QTreeWidgetItem.ItemType'
UserType = ... # type: 'QTreeWidgetItem.ItemType'
@typing.overload
def __init__(self, type: int = ...) -> None: ...
@typing.overload
def __init__(self, strings: typing.Iterable[str], type: int = ...) -> None: ...
@typing.overload
def __init__(self, parent: 'QTreeWidget', type: int = ...) -> None: ...
@typing.overload
def __init__(self, parent: 'QTreeWidget', strings: typing.Iterable[str], type: int = ...) -> None: ...
@typing.overload
def __init__(self, parent: 'QTreeWidget', preceding: 'QTreeWidgetItem', type: int = ...) -> None: ...
@typing.overload
def __init__(self, parent: 'QTreeWidgetItem', type: int = ...) -> None: ...
@typing.overload
def __init__(self, parent: 'QTreeWidgetItem', strings: typing.Iterable[str], type: int = ...) -> None: ...
@typing.overload
def __init__(self, parent: 'QTreeWidgetItem', preceding: 'QTreeWidgetItem', type: int = ...) -> None: ...
@typing.overload
def __init__(self, other: 'QTreeWidgetItem') -> None: ...
def emitDataChanged(self) -> None: ...
def isDisabled(self) -> bool: ...
def setDisabled(self, disabled: bool) -> None: ...
def isFirstColumnSpanned(self) -> bool: ...
def setFirstColumnSpanned(self, aspan: bool) -> None: ...
def removeChild(self, child: 'QTreeWidgetItem') -> None: ...
def childIndicatorPolicy(self) -> 'QTreeWidgetItem.ChildIndicatorPolicy': ...
def setChildIndicatorPolicy(self, policy: 'QTreeWidgetItem.ChildIndicatorPolicy') -> None: ...
def isExpanded(self) -> bool: ...
def setExpanded(self, aexpand: bool) -> None: ...
def isHidden(self) -> bool: ...
def setHidden(self, ahide: bool) -> None: ...
def isSelected(self) -> bool: ...
def setSelected(self, aselect: bool) -> None: ...
def sortChildren(self, column: int, order: QtCore.Qt.SortOrder) -> None: ...
def setForeground(self, column: int, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def foreground(self, column: int) -> QtGui.QBrush: ...
def setBackground(self, column: int, brush: typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]) -> None: ...
def background(self, column: int) -> QtGui.QBrush: ...
def takeChildren(self) -> typing.List['QTreeWidgetItem']: ...
def insertChildren(self, index: int, children: typing.Iterable['QTreeWidgetItem']) -> None: ...
def addChildren(self, children: typing.Iterable['QTreeWidgetItem']) -> None: ...
def setSizeHint(self, column: int, size: QtCore.QSize) -> None: ...
def sizeHint(self, column: int) -> QtCore.QSize: ...
def indexOfChild(self, achild: 'QTreeWidgetItem') -> int: ...
def setFont(self, column: int, afont: QtGui.QFont) -> None: ...
def setWhatsThis(self, column: int, awhatsThis: str) -> None: ...
def setToolTip(self, column: int, atoolTip: str) -> None: ...
def setStatusTip(self, column: int, astatusTip: str) -> None: ...
def setIcon(self, column: int, aicon: QtGui.QIcon) -> None: ...
def setText(self, column: int, atext: str) -> None: ...
def setFlags(self, aflags: typing.Union[QtCore.Qt.ItemFlags, QtCore.Qt.ItemFlag]) -> None: ...
def type(self) -> int: ...
def takeChild(self, index: int) -> 'QTreeWidgetItem': ...
def insertChild(self, index: int, child: 'QTreeWidgetItem') -> None: ...
def addChild(self, child: 'QTreeWidgetItem') -> None: ...
def columnCount(self) -> int: ...
def childCount(self) -> int: ...
def child(self, index: int) -> 'QTreeWidgetItem': ...
def parent(self) -> 'QTreeWidgetItem': ...
def write(self, out: QtCore.QDataStream) -> None: ...
def read(self, in_: QtCore.QDataStream) -> None: ...
def setData(self, column: int, role: int, value: typing.Any) -> None: ...
def data(self, column: int, role: int) -> typing.Any: ...
def setCheckState(self, column: int, state: QtCore.Qt.CheckState) -> None: ...
def checkState(self, column: int) -> QtCore.Qt.CheckState: ...
def setTextAlignment(self, column: int, alignment: int) -> None: ...
def textAlignment(self, column: int) -> int: ...
def font(self, column: int) -> QtGui.QFont: ...
def whatsThis(self, column: int) -> str: ...
def toolTip(self, column: int) -> str: ...
def statusTip(self, column: int) -> str: ...
def icon(self, column: int) -> QtGui.QIcon: ...
def text(self, column: int) -> str: ...
def flags(self) -> QtCore.Qt.ItemFlags: ...
def treeWidget(self) -> 'QTreeWidget': ...
def clone(self) -> 'QTreeWidgetItem': ...
class QTreeWidget(QTreeView):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def isPersistentEditorOpen(self, item: QTreeWidgetItem, column: int = ...) -> bool: ...
def setSelectionModel(self, selectionModel: QtCore.QItemSelectionModel) -> None: ...
def removeItemWidget(self, item: QTreeWidgetItem, column: int) -> None: ...
def itemBelow(self, item: QTreeWidgetItem) -> QTreeWidgetItem: ...
def itemAbove(self, item: QTreeWidgetItem) -> QTreeWidgetItem: ...
def setFirstItemColumnSpanned(self, item: QTreeWidgetItem, span: bool) -> None: ...
def isFirstItemColumnSpanned(self, item: QTreeWidgetItem) -> bool: ...
def setHeaderLabel(self, alabel: str) -> None: ...
def invisibleRootItem(self) -> QTreeWidgetItem: ...
def dropEvent(self, event: QtGui.QDropEvent) -> None: ...
def event(self, e: QtCore.QEvent) -> bool: ...
def itemFromIndex(self, index: QtCore.QModelIndex) -> QTreeWidgetItem: ...
def indexFromItem(self, item: QTreeWidgetItem, column: int = ...) -> QtCore.QModelIndex: ...
def supportedDropActions(self) -> QtCore.Qt.DropActions: ...
def dropMimeData(self, parent: QTreeWidgetItem, index: int, data: QtCore.QMimeData, action: QtCore.Qt.DropAction) -> bool: ...
def mimeData(self, items: typing.Iterable[QTreeWidgetItem]) -> QtCore.QMimeData: ...
def mimeTypes(self) -> typing.List[str]: ...
def itemSelectionChanged(self) -> None: ...
def currentItemChanged(self, current: QTreeWidgetItem, previous: QTreeWidgetItem) -> None: ...
def itemCollapsed(self, item: QTreeWidgetItem) -> None: ...
def itemExpanded(self, item: QTreeWidgetItem) -> None: ...
def itemChanged(self, item: QTreeWidgetItem, column: int) -> None: ...
def itemEntered(self, item: QTreeWidgetItem, column: int) -> None: ...
def itemActivated(self, item: QTreeWidgetItem, column: int) -> None: ...
def itemDoubleClicked(self, item: QTreeWidgetItem, column: int) -> None: ...
def itemClicked(self, item: QTreeWidgetItem, column: int) -> None: ...
def itemPressed(self, item: QTreeWidgetItem, column: int) -> None: ...
def clear(self) -> None: ...
def collapseItem(self, item: QTreeWidgetItem) -> None: ...
def expandItem(self, item: QTreeWidgetItem) -> None: ...
def scrollToItem(self, item: QTreeWidgetItem, hint: QAbstractItemView.ScrollHint = ...) -> None: ...
def findItems(self, text: str, flags: typing.Union[QtCore.Qt.MatchFlags, QtCore.Qt.MatchFlag], column: int = ...) -> typing.List[QTreeWidgetItem]: ...
def selectedItems(self) -> typing.List[QTreeWidgetItem]: ...
def setItemWidget(self, item: QTreeWidgetItem, column: int, widget: QWidget) -> None: ...
def itemWidget(self, item: QTreeWidgetItem, column: int) -> QWidget: ...
def closePersistentEditor(self, item: QTreeWidgetItem, column: int = ...) -> None: ...
def openPersistentEditor(self, item: QTreeWidgetItem, column: int = ...) -> None: ...
def editItem(self, item: QTreeWidgetItem, column: int = ...) -> None: ...
def sortItems(self, column: int, order: QtCore.Qt.SortOrder) -> None: ...
def sortColumn(self) -> int: ...
def visualItemRect(self, item: QTreeWidgetItem) -> QtCore.QRect: ...
@typing.overload
def itemAt(self, p: QtCore.QPoint) -> QTreeWidgetItem: ...
@typing.overload
def itemAt(self, ax: int, ay: int) -> QTreeWidgetItem: ...
@typing.overload
def setCurrentItem(self, item: QTreeWidgetItem) -> None: ...
@typing.overload
def setCurrentItem(self, item: QTreeWidgetItem, column: int) -> None: ...
@typing.overload
def setCurrentItem(self, item: QTreeWidgetItem, column: int, command: typing.Union[QtCore.QItemSelectionModel.SelectionFlags, QtCore.QItemSelectionModel.SelectionFlag]) -> None: ...
def currentColumn(self) -> int: ...
def currentItem(self) -> QTreeWidgetItem: ...
def setHeaderLabels(self, labels: typing.Iterable[str]) -> None: ...
def setHeaderItem(self, item: QTreeWidgetItem) -> None: ...
def headerItem(self) -> QTreeWidgetItem: ...
def addTopLevelItems(self, items: typing.Iterable[QTreeWidgetItem]) -> None: ...
def insertTopLevelItems(self, index: int, items: typing.Iterable[QTreeWidgetItem]) -> None: ...
def indexOfTopLevelItem(self, item: QTreeWidgetItem) -> int: ...
def takeTopLevelItem(self, index: int) -> QTreeWidgetItem: ...
def addTopLevelItem(self, item: QTreeWidgetItem) -> None: ...
def insertTopLevelItem(self, index: int, item: QTreeWidgetItem) -> None: ...
def topLevelItemCount(self) -> int: ...
def topLevelItem(self, index: int) -> QTreeWidgetItem: ...
def setColumnCount(self, columns: int) -> None: ...
def columnCount(self) -> int: ...
class QTreeWidgetItemIterator(sip.simplewrapper):
class IteratorFlag(int): ...
All = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Hidden = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
NotHidden = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Selected = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Unselected = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Selectable = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
NotSelectable = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
DragEnabled = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
DragDisabled = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
DropEnabled = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
DropDisabled = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
HasChildren = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
NoChildren = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Checked = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
NotChecked = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Enabled = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Disabled = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
Editable = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
NotEditable = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
UserFlag = ... # type: 'QTreeWidgetItemIterator.IteratorFlag'
class IteratorFlags(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QTreeWidgetItemIterator.IteratorFlags', 'QTreeWidgetItemIterator.IteratorFlag']) -> None: ...
@typing.overload
def __init__(self, a0: 'QTreeWidgetItemIterator.IteratorFlags') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QTreeWidgetItemIterator.IteratorFlags': ...
def __int__(self) -> int: ...
@typing.overload
def __init__(self, it: 'QTreeWidgetItemIterator') -> None: ...
@typing.overload
def __init__(self, widget: QTreeWidget, flags: 'QTreeWidgetItemIterator.IteratorFlags' = ...) -> None: ...
@typing.overload
def __init__(self, item: QTreeWidgetItem, flags: 'QTreeWidgetItemIterator.IteratorFlags' = ...) -> None: ...
def value(self) -> QTreeWidgetItem: ...
class QUndoGroup(QtCore.QObject):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def undoTextChanged(self, undoText: str) -> None: ...
def redoTextChanged(self, redoText: str) -> None: ...
def indexChanged(self, idx: int) -> None: ...
def cleanChanged(self, clean: bool) -> None: ...
def canUndoChanged(self, canUndo: bool) -> None: ...
def canRedoChanged(self, canRedo: bool) -> None: ...
def activeStackChanged(self, stack: 'QUndoStack') -> None: ...
def undo(self) -> None: ...
def setActiveStack(self, stack: 'QUndoStack') -> None: ...
def redo(self) -> None: ...
def isClean(self) -> bool: ...
def redoText(self) -> str: ...
def undoText(self) -> str: ...
def canRedo(self) -> bool: ...
def canUndo(self) -> bool: ...
def createUndoAction(self, parent: QtCore.QObject, prefix: str = ...) -> QAction: ...
def createRedoAction(self, parent: QtCore.QObject, prefix: str = ...) -> QAction: ...
def activeStack(self) -> 'QUndoStack': ...
def stacks(self) -> typing.List['QUndoStack']: ...
def removeStack(self, stack: 'QUndoStack') -> None: ...
def addStack(self, stack: 'QUndoStack') -> None: ...
class QUndoCommand(sip.wrapper):
@typing.overload
def __init__(self, parent: typing.Optional['QUndoCommand'] = ...) -> None: ...
@typing.overload
def __init__(self, text: str, parent: typing.Optional['QUndoCommand'] = ...) -> None: ...
def setObsolete(self, obsolete: bool) -> None: ...
def isObsolete(self) -> bool: ...
def actionText(self) -> str: ...
def child(self, index: int) -> 'QUndoCommand': ...
def childCount(self) -> int: ...
def undo(self) -> None: ...
def text(self) -> str: ...
def setText(self, text: str) -> None: ...
def redo(self) -> None: ...
def mergeWith(self, other: 'QUndoCommand') -> bool: ...
def id(self) -> int: ...
class QUndoStack(QtCore.QObject):
def __init__(self, parent: typing.Optional[QtCore.QObject] = ...) -> None: ...
def command(self, index: int) -> QUndoCommand: ...
def undoLimit(self) -> int: ...
def setUndoLimit(self, limit: int) -> None: ...
def undoTextChanged(self, undoText: str) -> None: ...
def redoTextChanged(self, redoText: str) -> None: ...
def indexChanged(self, idx: int) -> None: ...
def cleanChanged(self, clean: bool) -> None: ...
def canUndoChanged(self, canUndo: bool) -> None: ...
def canRedoChanged(self, canRedo: bool) -> None: ...
def resetClean(self) -> None: ...
def undo(self) -> None: ...
def setIndex(self, idx: int) -> None: ...
def setClean(self) -> None: ...
def setActive(self, active: bool = ...) -> None: ...
def redo(self) -> None: ...
def endMacro(self) -> None: ...
def beginMacro(self, text: str) -> None: ...
def cleanIndex(self) -> int: ...
def isClean(self) -> bool: ...
def isActive(self) -> bool: ...
def createRedoAction(self, parent: QtCore.QObject, prefix: str = ...) -> QAction: ...
def createUndoAction(self, parent: QtCore.QObject, prefix: str = ...) -> QAction: ...
def text(self, idx: int) -> str: ...
def index(self) -> int: ...
def __len__(self) -> int: ...
def count(self) -> int: ...
def redoText(self) -> str: ...
def undoText(self) -> str: ...
def canRedo(self) -> bool: ...
def canUndo(self) -> bool: ...
def push(self, cmd: QUndoCommand) -> None: ...
def clear(self) -> None: ...
class QUndoView(QListView):
@typing.overload
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, stack: QUndoStack, parent: typing.Optional[QWidget] = ...) -> None: ...
@typing.overload
def __init__(self, group: QUndoGroup, parent: typing.Optional[QWidget] = ...) -> None: ...
def setGroup(self, group: QUndoGroup) -> None: ...
def setStack(self, stack: QUndoStack) -> None: ...
def cleanIcon(self) -> QtGui.QIcon: ...
def setCleanIcon(self, icon: QtGui.QIcon) -> None: ...
def emptyLabel(self) -> str: ...
def setEmptyLabel(self, label: str) -> None: ...
def group(self) -> QUndoGroup: ...
def stack(self) -> QUndoStack: ...
class QWhatsThis(sip.simplewrapper):
def __init__(self, a0: 'QWhatsThis') -> None: ...
@staticmethod
def createAction(parent: typing.Optional[QtCore.QObject] = ...) -> QAction: ...
@staticmethod
def hideText() -> None: ...
@staticmethod
def showText(pos: QtCore.QPoint, text: str, widget: typing.Optional[QWidget] = ...) -> None: ...
@staticmethod
def leaveWhatsThisMode() -> None: ...
@staticmethod
def inWhatsThisMode() -> bool: ...
@staticmethod
def enterWhatsThisMode() -> None: ...
class QWidgetAction(QAction):
def __init__(self, parent: QtCore.QObject) -> None: ...
def createdWidgets(self) -> typing.List[QWidget]: ...
def deleteWidget(self, widget: QWidget) -> None: ...
def createWidget(self, parent: QWidget) -> QWidget: ...
def eventFilter(self, a0: QtCore.QObject, a1: QtCore.QEvent) -> bool: ...
def event(self, a0: QtCore.QEvent) -> bool: ...
def releaseWidget(self, widget: QWidget) -> None: ...
def requestWidget(self, parent: QWidget) -> QWidget: ...
def defaultWidget(self) -> QWidget: ...
def setDefaultWidget(self, w: QWidget) -> None: ...
class QWizard(QDialog):
class WizardOption(int): ...
IndependentPages = ... # type: 'QWizard.WizardOption'
IgnoreSubTitles = ... # type: 'QWizard.WizardOption'
ExtendedWatermarkPixmap = ... # type: 'QWizard.WizardOption'
NoDefaultButton = ... # type: 'QWizard.WizardOption'
NoBackButtonOnStartPage = ... # type: 'QWizard.WizardOption'
NoBackButtonOnLastPage = ... # type: 'QWizard.WizardOption'
DisabledBackButtonOnLastPage = ... # type: 'QWizard.WizardOption'
HaveNextButtonOnLastPage = ... # type: 'QWizard.WizardOption'
HaveFinishButtonOnEarlyPages = ... # type: 'QWizard.WizardOption'
NoCancelButton = ... # type: 'QWizard.WizardOption'
CancelButtonOnLeft = ... # type: 'QWizard.WizardOption'
HaveHelpButton = ... # type: 'QWizard.WizardOption'
HelpButtonOnRight = ... # type: 'QWizard.WizardOption'
HaveCustomButton1 = ... # type: 'QWizard.WizardOption'
HaveCustomButton2 = ... # type: 'QWizard.WizardOption'
HaveCustomButton3 = ... # type: 'QWizard.WizardOption'
NoCancelButtonOnLastPage = ... # type: 'QWizard.WizardOption'
class WizardStyle(int): ...
ClassicStyle = ... # type: 'QWizard.WizardStyle'
ModernStyle = ... # type: 'QWizard.WizardStyle'
MacStyle = ... # type: 'QWizard.WizardStyle'
AeroStyle = ... # type: 'QWizard.WizardStyle'
class WizardPixmap(int): ...
WatermarkPixmap = ... # type: 'QWizard.WizardPixmap'
LogoPixmap = ... # type: 'QWizard.WizardPixmap'
BannerPixmap = ... # type: 'QWizard.WizardPixmap'
BackgroundPixmap = ... # type: 'QWizard.WizardPixmap'
class WizardButton(int): ...
BackButton = ... # type: 'QWizard.WizardButton'
NextButton = ... # type: 'QWizard.WizardButton'
CommitButton = ... # type: 'QWizard.WizardButton'
FinishButton = ... # type: 'QWizard.WizardButton'
CancelButton = ... # type: 'QWizard.WizardButton'
HelpButton = ... # type: 'QWizard.WizardButton'
CustomButton1 = ... # type: 'QWizard.WizardButton'
CustomButton2 = ... # type: 'QWizard.WizardButton'
CustomButton3 = ... # type: 'QWizard.WizardButton'
Stretch = ... # type: 'QWizard.WizardButton'
class WizardOptions(sip.simplewrapper):
@typing.overload
def __init__(self) -> None: ...
@typing.overload
def __init__(self, f: typing.Union['QWizard.WizardOptions', 'QWizard.WizardOption']) -> None: ...
@typing.overload
def __init__(self, a0: 'QWizard.WizardOptions') -> None: ...
def __hash__(self) -> int: ...
def __bool__(self) -> int: ...
def __invert__(self) -> 'QWizard.WizardOptions': ...
def __int__(self) -> int: ...
def __init__(self, parent: typing.Optional[QWidget] = ..., flags: typing.Union[QtCore.Qt.WindowFlags, QtCore.Qt.WindowType] = ...) -> None: ...
def pageRemoved(self, id: int) -> None: ...
def pageAdded(self, id: int) -> None: ...
def sideWidget(self) -> QWidget: ...
def setSideWidget(self, widget: QWidget) -> None: ...
def pageIds(self) -> typing.List[int]: ...
def removePage(self, id: int) -> None: ...
def cleanupPage(self, id: int) -> None: ...
def initializePage(self, id: int) -> None: ...
def done(self, result: int) -> None: ...
def paintEvent(self, event: QtGui.QPaintEvent) -> None: ...
def resizeEvent(self, event: QtGui.QResizeEvent) -> None: ...
def event(self, event: QtCore.QEvent) -> bool: ...
def restart(self) -> None: ...
def next(self) -> None: ...
def back(self) -> None: ...
def customButtonClicked(self, which: int) -> None: ...
def helpRequested(self) -> None: ...
def currentIdChanged(self, id: int) -> None: ...
def sizeHint(self) -> QtCore.QSize: ...
def setVisible(self, visible: bool) -> None: ...
def setDefaultProperty(self, className: str, property: str, changedSignal: PYQT_SIGNAL) -> None: ...
def pixmap(self, which: 'QWizard.WizardPixmap') -> QtGui.QPixmap: ...
def setPixmap(self, which: 'QWizard.WizardPixmap', pixmap: QtGui.QPixmap) -> None: ...
def subTitleFormat(self) -> QtCore.Qt.TextFormat: ...
def setSubTitleFormat(self, format: QtCore.Qt.TextFormat) -> None: ...
def titleFormat(self) -> QtCore.Qt.TextFormat: ...
def setTitleFormat(self, format: QtCore.Qt.TextFormat) -> None: ...
def button(self, which: 'QWizard.WizardButton') -> QAbstractButton: ...
def setButton(self, which: 'QWizard.WizardButton', button: QAbstractButton) -> None: ...
def setButtonLayout(self, layout: typing.Iterable['QWizard.WizardButton']) -> None: ...
def buttonText(self, which: 'QWizard.WizardButton') -> str: ...
def setButtonText(self, which: 'QWizard.WizardButton', text: str) -> None: ...
def options(self) -> 'QWizard.WizardOptions': ...
def setOptions(self, options: typing.Union['QWizard.WizardOptions', 'QWizard.WizardOption']) -> None: ...
def testOption(self, option: 'QWizard.WizardOption') -> bool: ...
def setOption(self, option: 'QWizard.WizardOption', on: bool = ...) -> None: ...
def wizardStyle(self) -> 'QWizard.WizardStyle': ...
def setWizardStyle(self, style: 'QWizard.WizardStyle') -> None: ...
def field(self, name: str) -> typing.Any: ...
def setField(self, name: str, value: typing.Any) -> None: ...
def nextId(self) -> int: ...
def validateCurrentPage(self) -> bool: ...
def currentId(self) -> int: ...
def currentPage(self) -> 'QWizardPage': ...
def startId(self) -> int: ...
def setStartId(self, id: int) -> None: ...
def visitedPages(self) -> typing.List[int]: ...
def hasVisitedPage(self, id: int) -> bool: ...
def page(self, id: int) -> 'QWizardPage': ...
def setPage(self, id: int, page: 'QWizardPage') -> None: ...
def addPage(self, page: 'QWizardPage') -> int: ...
class QWizardPage(QWidget):
def __init__(self, parent: typing.Optional[QWidget] = ...) -> None: ...
def wizard(self) -> QWizard: ...
def registerField(self, name: str, widget: QWidget, property: typing.Optional[str] = ..., changedSignal: PYQT_SIGNAL = ...) -> None: ...
def field(self, name: str) -> typing.Any: ...
def setField(self, name: str, value: typing.Any) -> None: ...
def completeChanged(self) -> None: ...
def nextId(self) -> int: ...
def isComplete(self) -> bool: ...
def validatePage(self) -> bool: ...
def cleanupPage(self) -> None: ...
def initializePage(self) -> None: ...
def buttonText(self, which: QWizard.WizardButton) -> str: ...
def setButtonText(self, which: QWizard.WizardButton, text: str) -> None: ...
def isCommitPage(self) -> bool: ...
def setCommitPage(self, commitPage: bool) -> None: ...
def isFinalPage(self) -> bool: ...
def setFinalPage(self, finalPage: bool) -> None: ...
def pixmap(self, which: QWizard.WizardPixmap) -> QtGui.QPixmap: ...
def setPixmap(self, which: QWizard.WizardPixmap, pixmap: QtGui.QPixmap) -> None: ...
def subTitle(self) -> str: ...
def setSubTitle(self, subTitle: str) -> None: ...
def title(self) -> str: ...
def setTitle(self, title: str) -> None: ...
class QMacCocoaViewContainer(QWidget):
def __init__(self, cocoaViewToWrap: sip.voidptr, parent: typing.Optional[QWidget] = ...) -> None: ...
def cocoaView(self) -> sip.voidptr: ...
def setCocoaView(self, cocoaViewToWrap: sip.voidptr) -> None: ...
QWIDGETSIZE_MAX = ... # type: int
qApp = ... # type: QApplication
def qDrawBorderPixmap(painter: QtGui.QPainter, target: QtCore.QRect, margins: QtCore.QMargins, pixmap: QtGui.QPixmap) -> None: ...
@typing.overload
def qDrawPlainRect(p: QtGui.QPainter, x: int, y: int, w: int, h: int, a5: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient], lineWidth: int = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawPlainRect(p: QtGui.QPainter, r: QtCore.QRect, a2: typing.Union[QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient], lineWidth: int = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawWinPanel(p: QtGui.QPainter, x: int, y: int, w: int, h: int, pal: QtGui.QPalette, sunken: bool = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawWinPanel(p: QtGui.QPainter, r: QtCore.QRect, pal: QtGui.QPalette, sunken: bool = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawWinButton(p: QtGui.QPainter, x: int, y: int, w: int, h: int, pal: QtGui.QPalette, sunken: bool = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawWinButton(p: QtGui.QPainter, r: QtCore.QRect, pal: QtGui.QPalette, sunken: bool = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawShadePanel(p: QtGui.QPainter, x: int, y: int, w: int, h: int, pal: QtGui.QPalette, sunken: bool = ..., lineWidth: int = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawShadePanel(p: QtGui.QPainter, r: QtCore.QRect, pal: QtGui.QPalette, sunken: bool = ..., lineWidth: int = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawShadeRect(p: QtGui.QPainter, x: int, y: int, w: int, h: int, pal: QtGui.QPalette, sunken: bool = ..., lineWidth: int = ..., midLineWidth: int = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawShadeRect(p: QtGui.QPainter, r: QtCore.QRect, pal: QtGui.QPalette, sunken: bool = ..., lineWidth: int = ..., midLineWidth: int = ..., fill: typing.Optional[typing.Union[QtGui.QBrush, QtGui.QColor, QtCore.Qt.GlobalColor, QtGui.QGradient]] = ...) -> None: ...
@typing.overload
def qDrawShadeLine(p: QtGui.QPainter, x1: int, y1: int, x2: int, y2: int, pal: QtGui.QPalette, sunken: bool = ..., lineWidth: int = ..., midLineWidth: int = ...) -> None: ...
@typing.overload
def qDrawShadeLine(p: QtGui.QPainter, p1: QtCore.QPoint, p2: QtCore.QPoint, pal: QtGui.QPalette, sunken: bool = ..., lineWidth: int = ..., midLineWidth: int = ...) -> None: ...