Mon, 07 Jun 2021 19:58:54 +0200
Started improving the Font Dialog Wizard.
# -*- coding: utf-8 -*- """ Module implementing FontDialogOptionsDialog. """ from PyQt6.QtCore import pyqtSlot from PyQt6.QtWidgets import QDialog from .Ui_FontDialogOptionsDialog import Ui_FontDialogOptionsDialog class FontDialogOptionsDialog(QDialog, Ui_FontDialogOptionsDialog): """ Class documentation goes here. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget (defaults to None) @type QWidget (optional) """ super(FontDialogOptionsDialog, self).__init__(parent) self.setupUi(self) @pyqtSlot(QObject) def on_noNativeDialogCheckBox_destroyed(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type QObject """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_noNativeDialogCheckBox_destroyed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_noNativeDialogCheckBox_objectNameChanged(self, objectName): """ Slot documentation goes here. @param objectName DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_noNativeDialogCheckBox_windowTitleChanged(self, title): """ Slot documentation goes here. @param title DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QIcon) def on_noNativeDialogCheckBox_windowIconChanged(self, icon): """ Slot documentation goes here. @param icon DESCRIPTION @type QIcon """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_noNativeDialogCheckBox_windowIconTextChanged(self, iconText): """ Slot documentation goes here. @param iconText DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QPoint) def on_noNativeDialogCheckBox_customContextMenuRequested(self, pos): """ Slot documentation goes here. @param pos DESCRIPTION @type QPoint """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_noNativeDialogCheckBox_pressed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_noNativeDialogCheckBox_released(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_noNativeDialogCheckBox_clicked(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_noNativeDialogCheckBox_clicked(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_noNativeDialogCheckBox_toggled(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(int) def on_noNativeDialogCheckBox_stateChanged(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type int """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QObject) def on_scalableCheckBox_destroyed(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type QObject """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_scalableCheckBox_destroyed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_scalableCheckBox_objectNameChanged(self, objectName): """ Slot documentation goes here. @param objectName DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_scalableCheckBox_windowTitleChanged(self, title): """ Slot documentation goes here. @param title DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QIcon) def on_scalableCheckBox_windowIconChanged(self, icon): """ Slot documentation goes here. @param icon DESCRIPTION @type QIcon """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_scalableCheckBox_windowIconTextChanged(self, iconText): """ Slot documentation goes here. @param iconText DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QPoint) def on_scalableCheckBox_customContextMenuRequested(self, pos): """ Slot documentation goes here. @param pos DESCRIPTION @type QPoint """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_scalableCheckBox_pressed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_scalableCheckBox_released(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_scalableCheckBox_clicked(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_scalableCheckBox_clicked(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_scalableCheckBox_toggled(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(int) def on_scalableCheckBox_stateChanged(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type int """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QObject) def on_nonScalableCheckBox_destroyed(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type QObject """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_nonScalableCheckBox_destroyed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_nonScalableCheckBox_objectNameChanged(self, objectName): """ Slot documentation goes here. @param objectName DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_nonScalableCheckBox_windowTitleChanged(self, title): """ Slot documentation goes here. @param title DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QIcon) def on_nonScalableCheckBox_windowIconChanged(self, icon): """ Slot documentation goes here. @param icon DESCRIPTION @type QIcon """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_nonScalableCheckBox_windowIconTextChanged(self, iconText): """ Slot documentation goes here. @param iconText DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QPoint) def on_nonScalableCheckBox_customContextMenuRequested(self, pos): """ Slot documentation goes here. @param pos DESCRIPTION @type QPoint """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_nonScalableCheckBox_pressed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_nonScalableCheckBox_released(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_nonScalableCheckBox_clicked(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_nonScalableCheckBox_clicked(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_nonScalableCheckBox_toggled(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(int) def on_nonScalableCheckBox_stateChanged(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type int """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QObject) def on_monospacedCheckBox_destroyed(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type QObject """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_monospacedCheckBox_destroyed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_monospacedCheckBox_objectNameChanged(self, objectName): """ Slot documentation goes here. @param objectName DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_monospacedCheckBox_windowTitleChanged(self, title): """ Slot documentation goes here. @param title DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QIcon) def on_monospacedCheckBox_windowIconChanged(self, icon): """ Slot documentation goes here. @param icon DESCRIPTION @type QIcon """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_monospacedCheckBox_windowIconTextChanged(self, iconText): """ Slot documentation goes here. @param iconText DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QPoint) def on_monospacedCheckBox_customContextMenuRequested(self, pos): """ Slot documentation goes here. @param pos DESCRIPTION @type QPoint """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_monospacedCheckBox_pressed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_monospacedCheckBox_released(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_monospacedCheckBox_clicked(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_monospacedCheckBox_clicked(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_monospacedCheckBox_toggled(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(int) def on_monospacedCheckBox_stateChanged(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type int """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QObject) def on_proportionalCheckBox_destroyed(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type QObject """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_proportionalCheckBox_destroyed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_proportionalCheckBox_objectNameChanged(self, objectName): """ Slot documentation goes here. @param objectName DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_proportionalCheckBox_windowTitleChanged(self, title): """ Slot documentation goes here. @param title DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QIcon) def on_proportionalCheckBox_windowIconChanged(self, icon): """ Slot documentation goes here. @param icon DESCRIPTION @type QIcon """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_proportionalCheckBox_windowIconTextChanged(self, iconText): """ Slot documentation goes here. @param iconText DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QPoint) def on_proportionalCheckBox_customContextMenuRequested(self, pos): """ Slot documentation goes here. @param pos DESCRIPTION @type QPoint """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_proportionalCheckBox_pressed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_proportionalCheckBox_released(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_proportionalCheckBox_clicked(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_proportionalCheckBox_clicked(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(bool) def on_proportionalCheckBox_toggled(self, checked): """ Slot documentation goes here. @param checked DESCRIPTION @type bool """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(int) def on_proportionalCheckBox_stateChanged(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type int """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QObject) def on_buttonBox_destroyed(self, p0): """ Slot documentation goes here. @param p0 DESCRIPTION @type QObject """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_buttonBox_destroyed(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_buttonBox_objectNameChanged(self, objectName): """ Slot documentation goes here. @param objectName DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_buttonBox_windowTitleChanged(self, title): """ Slot documentation goes here. @param title DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QIcon) def on_buttonBox_windowIconChanged(self, icon): """ Slot documentation goes here. @param icon DESCRIPTION @type QIcon """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(str) def on_buttonBox_windowIconTextChanged(self, iconText): """ Slot documentation goes here. @param iconText DESCRIPTION @type str """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QPoint) def on_buttonBox_customContextMenuRequested(self, pos): """ Slot documentation goes here. @param pos DESCRIPTION @type QPoint """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot(QAbstractButton) def on_buttonBox_clicked(self, button): """ Slot documentation goes here. @param button DESCRIPTION @type QAbstractButton """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_buttonBox_accepted(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_buttonBox_helpRequested(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError @pyqtSlot() def on_buttonBox_rejected(self): """ Slot documentation goes here. """ # TODO: not implemented yet raise NotImplementedError