Files
xsl-validator/src/ui/SaxonJarConfigDialog_ui.py
T

99 lines
4.4 KiB
Python
Raw Normal View History

2025-06-13 21:05:26 +02:00
# -*- coding: utf-8 -*-
################################################################################
## Form generated from reading UI file 'SaxonJarConfigDialog.ui'
##
## Created by: Qt User Interface Compiler version 6.9.0
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
QMetaObject, QObject, QPoint, QRect,
QSize, QTime, QUrl, Qt)
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
QFont, QFontDatabase, QGradient, QIcon,
QImage, QKeySequence, QLinearGradient, QPainter,
QPalette, QPixmap, QRadialGradient, QTransform)
from PySide6.QtWidgets import (QAbstractButton, QApplication, QDialog, QDialogButtonBox,
QFormLayout, QHBoxLayout, QLabel, QLineEdit,
QPushButton, QSizePolicy, QVBoxLayout, QWidget)
class Ui_SaxonJarConfigDialog(object):
def setupUi(self, SaxonJarConfigDialog):
if not SaxonJarConfigDialog.objectName():
SaxonJarConfigDialog.setObjectName(u"SaxonJarConfigDialog")
SaxonJarConfigDialog.resize(500, 130)
SaxonJarConfigDialog.setModal(True)
self.verticalLayout = QVBoxLayout(SaxonJarConfigDialog)
self.verticalLayout.setObjectName(u"verticalLayout")
self.formLayout = QFormLayout()
self.formLayout.setObjectName(u"formLayout")
self.versionLabel = QLabel(SaxonJarConfigDialog)
self.versionLabel.setObjectName(u"versionLabel")
self.formLayout.setWidget(0, QFormLayout.ItemRole.LabelRole, self.versionLabel)
self.versionEdit = QLineEdit(SaxonJarConfigDialog)
self.versionEdit.setObjectName(u"versionEdit")
self.formLayout.setWidget(0, QFormLayout.ItemRole.FieldRole, self.versionEdit)
self.pathLabel = QLabel(SaxonJarConfigDialog)
self.pathLabel.setObjectName(u"pathLabel")
self.formLayout.setWidget(1, QFormLayout.ItemRole.LabelRole, self.pathLabel)
self.pathLayout = QHBoxLayout()
self.pathLayout.setObjectName(u"pathLayout")
self.pathEdit = QLineEdit(SaxonJarConfigDialog)
self.pathEdit.setObjectName(u"pathEdit")
self.pathLayout.addWidget(self.pathEdit)
self.browseButton = QPushButton(SaxonJarConfigDialog)
self.browseButton.setObjectName(u"browseButton")
self.pathLayout.addWidget(self.browseButton)
self.formLayout.setLayout(1, QFormLayout.ItemRole.FieldRole, self.pathLayout)
self.extensionLabel = QLabel(SaxonJarConfigDialog)
self.extensionLabel.setObjectName(u"extensionLabel")
self.formLayout.setWidget(2, QFormLayout.ItemRole.LabelRole, self.extensionLabel)
self.extensionEdit = QLineEdit(SaxonJarConfigDialog)
self.extensionEdit.setObjectName(u"extensionEdit")
self.formLayout.setWidget(2, QFormLayout.ItemRole.FieldRole, self.extensionEdit)
self.verticalLayout.addLayout(self.formLayout)
self.buttonBox = QDialogButtonBox(SaxonJarConfigDialog)
self.buttonBox.setObjectName(u"buttonBox")
self.buttonBox.setOrientation(Qt.Orientation.Horizontal)
self.buttonBox.setStandardButtons(QDialogButtonBox.StandardButton.Cancel|QDialogButtonBox.StandardButton.Ok)
self.verticalLayout.addWidget(self.buttonBox)
self.retranslateUi(SaxonJarConfigDialog)
self.buttonBox.accepted.connect(SaxonJarConfigDialog.accept)
self.buttonBox.rejected.connect(SaxonJarConfigDialog.reject)
QMetaObject.connectSlotsByName(SaxonJarConfigDialog)
# setupUi
def retranslateUi(self, SaxonJarConfigDialog):
SaxonJarConfigDialog.setWindowTitle(QCoreApplication.translate("SaxonJarConfigDialog", u"Saxon JAR Konfiguration", None))
self.versionLabel.setText(QCoreApplication.translate("SaxonJarConfigDialog", u"Version:", None))
self.pathLabel.setText(QCoreApplication.translate("SaxonJarConfigDialog", u"Pfad zur JAR-Datei:", None))
self.browseButton.setText(QCoreApplication.translate("SaxonJarConfigDialog", u"Durchsuchen...", None))
self.extensionLabel.setText(QCoreApplication.translate("SaxonJarConfigDialog", u"Output-Dateierweiterung:", None))
self.extensionEdit.setText(QCoreApplication.translate("SaxonJarConfigDialog", u"fo", None))
# retranslateUi