11from PySide6.QtCore
import (QCoreApplication, QDate, QDateTime, QLocale,
12 QMetaObject, QObject, QPoint, QRect,
13 QSize, QTime, QUrl, Qt)
14from PySide6.QtGui
import (QBrush, QColor, QConicalGradient, QCursor,
15 QFont, QFontDatabase, QGradient, QIcon,
16 QImage, QKeySequence, QLinearGradient, QPainter,
17 QPalette, QPixmap, QRadialGradient, QTransform)
18from PySide6.QtWidgets
import (QApplication, QHBoxLayout, QHeaderView, QLabel,
19 QPushButton, QSizePolicy, QTableWidget, QTableWidgetItem,
24 if not Column.objectName():
25 Column.setObjectName(
u"Column")
26 Column.resize(400, 300)
27 Column.setMinimumSize(QSize(0, 0))
31 self.
label.setObjectName(
u"label")
69 QMetaObject.connectSlotsByName(Column)
73 Column.setWindowTitle(QCoreApplication.translate(
"Column",
u"Table Column",
None))
74 self.
label.setText(QCoreApplication.translate(
"Column",
u"Configure metadata keys to display as table columns.",
None))
76 self.
cancelButton.setToolTip(QCoreApplication.translate(
"Column",
u"Cancel and Close",
None))
78 self.
cancelButton.setText(QCoreApplication.translate(
"Column",
u"Cancel",
None))
80 self.
confirmButton.setToolTip(QCoreApplication.translate(
"Column",
u"Confirm your selections",
None))
82 self.
confirmButton.setText(QCoreApplication.translate(
"Column",
u"Confirm",
None))
retranslateUi(self, Column)