mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 00:46:01 +03:00
69 lines
3.8 KiB
Python
69 lines
3.8 KiB
Python
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/ui/configuration_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_configurationDialog(object):
|
|
def setupUi(self, configurationDialog):
|
|
configurationDialog.setObjectName("configurationDialog")
|
|
configurationDialog.resize(585, 454)
|
|
configurationDialog.setModal(True)
|
|
self.gridlayout = QtWidgets.QGridLayout(configurationDialog)
|
|
self.gridlayout.setObjectName("gridlayout")
|
|
self.splitter = QtWidgets.QSplitter(parent=configurationDialog)
|
|
self.splitter.setOrientation(QtCore.Qt.Orientation.Horizontal)
|
|
self.splitter.setObjectName("splitter")
|
|
self.verticalLayout = QtWidgets.QWidget(parent=self.splitter)
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.vboxlayout = QtWidgets.QVBoxLayout(self.verticalLayout)
|
|
self.vboxlayout.setContentsMargins(0, 0, 0, 0)
|
|
self.vboxlayout.setSpacing(4)
|
|
self.vboxlayout.setObjectName("vboxlayout")
|
|
self.uiTitleLabel = QtWidgets.QLabel(parent=self.verticalLayout)
|
|
font = QtGui.QFont()
|
|
font.setPointSize(16)
|
|
self.uiTitleLabel.setFont(font)
|
|
self.uiTitleLabel.setFrameShape(QtWidgets.QFrame.Shape.Box)
|
|
self.uiTitleLabel.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
|
|
self.uiTitleLabel.setTextFormat(QtCore.Qt.TextFormat.PlainText)
|
|
self.uiTitleLabel.setObjectName("uiTitleLabel")
|
|
self.vboxlayout.addWidget(self.uiTitleLabel)
|
|
self.uiConfigStackedWidget = QtWidgets.QStackedWidget(parent=self.verticalLayout)
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding)
|
|
sizePolicy.setHorizontalStretch(0)
|
|
sizePolicy.setVerticalStretch(0)
|
|
sizePolicy.setHeightForWidth(self.uiConfigStackedWidget.sizePolicy().hasHeightForWidth())
|
|
self.uiConfigStackedWidget.setSizePolicy(sizePolicy)
|
|
self.uiConfigStackedWidget.setFrameShape(QtWidgets.QFrame.Shape.Box)
|
|
self.uiConfigStackedWidget.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
|
|
self.uiConfigStackedWidget.setObjectName("uiConfigStackedWidget")
|
|
self.uiEmptyPageWidget = QtWidgets.QWidget()
|
|
self.uiEmptyPageWidget.setObjectName("uiEmptyPageWidget")
|
|
self.vboxlayout1 = QtWidgets.QVBoxLayout(self.uiEmptyPageWidget)
|
|
self.vboxlayout1.setContentsMargins(0, 4, 0, 0)
|
|
self.vboxlayout1.setSpacing(0)
|
|
self.vboxlayout1.setObjectName("vboxlayout1")
|
|
self.uiConfigStackedWidget.addWidget(self.uiEmptyPageWidget)
|
|
self.vboxlayout.addWidget(self.uiConfigStackedWidget)
|
|
self.gridlayout.addWidget(self.splitter, 0, 0, 1, 1)
|
|
self.uiButtonBox = QtWidgets.QDialogButtonBox(parent=configurationDialog)
|
|
self.uiButtonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
|
|
self.uiButtonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
|
|
self.uiButtonBox.setObjectName("uiButtonBox")
|
|
self.gridlayout.addWidget(self.uiButtonBox, 1, 0, 1, 1)
|
|
|
|
self.retranslateUi(configurationDialog)
|
|
self.uiConfigStackedWidget.setCurrentIndex(0)
|
|
QtCore.QMetaObject.connectSlotsByName(configurationDialog)
|
|
|
|
def retranslateUi(self, configurationDialog):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
configurationDialog.setWindowTitle(_translate("configurationDialog", "Configuration"))
|
|
self.uiTitleLabel.setText(_translate("configurationDialog", "Configuration"))
|