mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
PSQL 01.11.2024
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
/********************************************************************************
|
||||
** Form generated from reading UI file 'dialogeditgroup.ui'
|
||||
**
|
||||
** Created by: Qt User Interface Compiler version 5.14.2
|
||||
**
|
||||
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||
********************************************************************************/
|
||||
|
||||
#ifndef UI_DIALOGEDITGROUP_H
|
||||
#define UI_DIALOGEDITGROUP_H
|
||||
|
||||
#include <QtCore/QLocale>
|
||||
#include <QtCore/QVariant>
|
||||
#include <QtGui/QIcon>
|
||||
#include <QtWidgets/QApplication>
|
||||
#include <QtWidgets/QDialog>
|
||||
#include <QtWidgets/QDialogButtonBox>
|
||||
#include <QtWidgets/QHBoxLayout>
|
||||
#include <QtWidgets/QLabel>
|
||||
#include <QtWidgets/QLineEdit>
|
||||
#include <QtWidgets/QVBoxLayout>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class Ui_DialogEditGroup
|
||||
{
|
||||
public:
|
||||
QVBoxLayout *verticalLayout_2;
|
||||
QVBoxLayout *verticalLayout;
|
||||
QHBoxLayout *horizontalLayout;
|
||||
QLabel *label_2;
|
||||
QLineEdit *editName;
|
||||
QDialogButtonBox *buttonBox;
|
||||
|
||||
void setupUi(QDialog *DialogEditGroup)
|
||||
{
|
||||
if (DialogEditGroup->objectName().isEmpty())
|
||||
DialogEditGroup->setObjectName(QString::fromUtf8("DialogEditGroup"));
|
||||
DialogEditGroup->resize(300, 96);
|
||||
QFont font;
|
||||
font.setFamily(QString::fromUtf8("Tahoma"));
|
||||
DialogEditGroup->setFont(font);
|
||||
QIcon icon;
|
||||
icon.addFile(QString::fromUtf8(":/icons/group.png"), QSize(), QIcon::Normal, QIcon::Off);
|
||||
DialogEditGroup->setWindowIcon(icon);
|
||||
verticalLayout_2 = new QVBoxLayout(DialogEditGroup);
|
||||
verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
|
||||
verticalLayout = new QVBoxLayout();
|
||||
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
|
||||
horizontalLayout = new QHBoxLayout();
|
||||
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
|
||||
label_2 = new QLabel(DialogEditGroup);
|
||||
label_2->setObjectName(QString::fromUtf8("label_2"));
|
||||
|
||||
horizontalLayout->addWidget(label_2);
|
||||
|
||||
editName = new QLineEdit(DialogEditGroup);
|
||||
editName->setObjectName(QString::fromUtf8("editName"));
|
||||
|
||||
horizontalLayout->addWidget(editName);
|
||||
|
||||
|
||||
verticalLayout->addLayout(horizontalLayout);
|
||||
|
||||
|
||||
verticalLayout_2->addLayout(verticalLayout);
|
||||
|
||||
buttonBox = new QDialogButtonBox(DialogEditGroup);
|
||||
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
|
||||
buttonBox->setLocale(QLocale(QLocale::English, QLocale::UnitedStates));
|
||||
buttonBox->setOrientation(Qt::Horizontal);
|
||||
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
||||
|
||||
verticalLayout_2->addWidget(buttonBox);
|
||||
|
||||
|
||||
retranslateUi(DialogEditGroup);
|
||||
QObject::connect(buttonBox, SIGNAL(accepted()), DialogEditGroup, SLOT(accept()));
|
||||
QObject::connect(buttonBox, SIGNAL(rejected()), DialogEditGroup, SLOT(reject()));
|
||||
|
||||
QMetaObject::connectSlotsByName(DialogEditGroup);
|
||||
} // setupUi
|
||||
|
||||
void retranslateUi(QDialog *DialogEditGroup)
|
||||
{
|
||||
DialogEditGroup->setWindowTitle(QCoreApplication::translate("DialogEditGroup", "Group", nullptr));
|
||||
label_2->setText(QCoreApplication::translate("DialogEditGroup", "Name", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
||||
namespace Ui {
|
||||
class DialogEditGroup: public Ui_DialogEditGroup {};
|
||||
} // namespace Ui
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // UI_DIALOGEDITGROUP_H
|
||||
Reference in New Issue
Block a user