|
|
|
@ -2715,6 +2715,8 @@ class QDial(QAbstractSlider):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QDialogButtonBox(QWidget): |
|
|
|
|
accepted = ... # type: PYQT_SIGNAL |
|
|
|
|
rejected = ... # type: PYQT_SIGNAL |
|
|
|
|
|
|
|
|
|
class StandardButton(int): ... |
|
|
|
|
NoButton = ... # type: 'QDialogButtonBox.StandardButton' |
|
|
|
@ -2780,10 +2782,10 @@ class QDialogButtonBox(QWidget):
|
|
|
|
|
|
|
|
|
|
def event(self, event: QtCore.QEvent) -> bool: ... |
|
|
|
|
def changeEvent(self, event: QtCore.QEvent) -> None: ... |
|
|
|
|
def rejected(self) -> None: ... |
|
|
|
|
#def rejected(self) -> None: ... |
|
|
|
|
def helpRequested(self) -> None: ... |
|
|
|
|
def clicked(self, button: QAbstractButton) -> None: ... |
|
|
|
|
def accepted(self) -> None: ... |
|
|
|
|
#def accepted(self) -> None: ... |
|
|
|
|
def centerButtons(self) -> bool: ... |
|
|
|
|
def setCenterButtons(self, center: bool) -> None: ... |
|
|
|
|
def button(self, which: 'QDialogButtonBox.StandardButton') -> QPushButton: ... |
|
|
|
|