mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 08:56:06 +03:00
40 lines
2.1 KiB
Python
40 lines
2.1 KiB
Python
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/ui/idlepc_dialog.ui'
|
|
#
|
|
# Created by: PyQt6 UI code generator 6.10.1
|
|
#
|
|
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
|
|
# run again. Do not edit this file unless you know what you are doing.
|
|
|
|
|
|
from PyQt6 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
class Ui_IdlePCDialog(object):
|
|
def setupUi(self, IdlePCDialog):
|
|
IdlePCDialog.setObjectName("IdlePCDialog")
|
|
IdlePCDialog.setModal(True)
|
|
self.gridLayout = QtWidgets.QGridLayout(IdlePCDialog)
|
|
self.gridLayout.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetFixedSize)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
self.uiLabel = QtWidgets.QLabel(parent=IdlePCDialog)
|
|
self.uiLabel.setObjectName("uiLabel")
|
|
self.gridLayout.addWidget(self.uiLabel, 0, 0, 1, 1)
|
|
self.uiComboBox = QtWidgets.QComboBox(parent=IdlePCDialog)
|
|
self.uiComboBox.setObjectName("uiComboBox")
|
|
self.gridLayout.addWidget(self.uiComboBox, 1, 0, 1, 1)
|
|
self.uiButtonBox = QtWidgets.QDialogButtonBox(parent=IdlePCDialog)
|
|
self.uiButtonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
|
|
self.uiButtonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Apply|QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Help|QtWidgets.QDialogButtonBox.StandardButton.Ok)
|
|
self.uiButtonBox.setObjectName("uiButtonBox")
|
|
self.gridLayout.addWidget(self.uiButtonBox, 2, 0, 1, 1)
|
|
|
|
self.retranslateUi(IdlePCDialog)
|
|
self.uiButtonBox.accepted.connect(IdlePCDialog.accept) # type: ignore
|
|
self.uiButtonBox.rejected.connect(IdlePCDialog.reject) # type: ignore
|
|
QtCore.QMetaObject.connectSlotsByName(IdlePCDialog)
|
|
|
|
def retranslateUi(self, IdlePCDialog):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
IdlePCDialog.setWindowTitle(_translate("IdlePCDialog", "Idle-PC values"))
|
|
self.uiLabel.setText(_translate("IdlePCDialog", "Potentially better Idle-PC values are marked with \'*\'"))
|