mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
before task parser
This commit is contained in:
@@ -15,10 +15,8 @@
|
||||
#include <QtWidgets/QGridLayout>
|
||||
#include <QtWidgets/QGroupBox>
|
||||
#include <QtWidgets/QHBoxLayout>
|
||||
#include <QtWidgets/QHeaderView>
|
||||
#include <QtWidgets/QSpacerItem>
|
||||
#include <QtWidgets/QToolButton>
|
||||
#include <QtWidgets/QTreeWidget>
|
||||
#include <QtWidgets/QVBoxLayout>
|
||||
#include <QtWidgets/QWidget>
|
||||
|
||||
@@ -35,7 +33,6 @@ public:
|
||||
QVBoxLayout *verticalLayout;
|
||||
QToolButton *btnEditorTrainees;
|
||||
QSpacerItem *verticalSpacer;
|
||||
QTreeWidget *treeWidget;
|
||||
|
||||
void setupUi(QWidget *ViewerTrainees)
|
||||
{
|
||||
@@ -44,6 +41,7 @@ public:
|
||||
ViewerTrainees->resize(400, 300);
|
||||
QFont font;
|
||||
font.setFamily(QString::fromUtf8("Tahoma"));
|
||||
font.setPointSize(10);
|
||||
ViewerTrainees->setFont(font);
|
||||
gridLayout = new QGridLayout(ViewerTrainees);
|
||||
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
||||
@@ -62,6 +60,7 @@ public:
|
||||
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
|
||||
btnEditorTrainees = new QToolButton(groupBox);
|
||||
btnEditorTrainees->setObjectName(QString::fromUtf8("btnEditorTrainees"));
|
||||
btnEditorTrainees->setEnabled(false);
|
||||
btnEditorTrainees->setMinimumSize(QSize(130, 58));
|
||||
QIcon icon;
|
||||
icon.addFile(QString::fromUtf8(":/icons/DB-trainees.png"), QSize(), QIcon::Normal, QIcon::Off);
|
||||
@@ -78,20 +77,6 @@ public:
|
||||
|
||||
horizontalLayout_2->addLayout(verticalLayout);
|
||||
|
||||
treeWidget = new QTreeWidget(groupBox);
|
||||
QTreeWidgetItem *__qtreewidgetitem = new QTreeWidgetItem();
|
||||
__qtreewidgetitem->setText(0, QString::fromUtf8("1"));
|
||||
treeWidget->setHeaderItem(__qtreewidgetitem);
|
||||
treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
|
||||
QFont font2;
|
||||
font2.setFamily(QString::fromUtf8("Tahoma"));
|
||||
font2.setPointSize(10);
|
||||
treeWidget->setFont(font2);
|
||||
treeWidget->setIconSize(QSize(20, 20));
|
||||
treeWidget->setColumnCount(1);
|
||||
|
||||
horizontalLayout_2->addWidget(treeWidget);
|
||||
|
||||
|
||||
gridLayout_2->addLayout(horizontalLayout_2, 0, 0, 1, 1);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user