This repository was archived by the owner on May 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui_taskdialog.h
More file actions
105 lines (81 loc) · 3.49 KB
/
Copy pathui_taskdialog.h
File metadata and controls
105 lines (81 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/********************************************************************************
** Form generated from reading ui file 'taskdialog.ui'
**
** Created: Wed Dec 9 19:26:52 2009
** by: Qt User Interface Compiler version 4.5.3
**
** WARNING! All changes made in this file will be lost when recompiling ui file!
********************************************************************************/
#ifndef UI_TASKDIALOG_H
#define UI_TASKDIALOG_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QGridLayout>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QLineEdit>
#include <QtGui/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_TaskDialog
{
public:
QVBoxLayout *verticalLayout;
QGridLayout *gridLayout;
QLabel *label;
QLineEdit *idLine;
QLabel *label_2;
QLineEdit *weightLine;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *TaskDialog)
{
if (TaskDialog->objectName().isEmpty())
TaskDialog->setObjectName(QString::fromUtf8("TaskDialog"));
TaskDialog->resize(319, 146);
verticalLayout = new QVBoxLayout(TaskDialog);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
gridLayout = new QGridLayout();
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(TaskDialog);
label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1);
idLine = new QLineEdit(TaskDialog);
idLine->setObjectName(QString::fromUtf8("idLine"));
gridLayout->addWidget(idLine, 0, 1, 1, 1);
label_2 = new QLabel(TaskDialog);
label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 1, 0, 1, 1);
weightLine = new QLineEdit(TaskDialog);
weightLine->setObjectName(QString::fromUtf8("weightLine"));
gridLayout->addWidget(weightLine, 1, 1, 1, 1);
verticalLayout->addLayout(gridLayout);
buttonBox = new QDialogButtonBox(TaskDialog);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
verticalLayout->addWidget(buttonBox);
QWidget::setTabOrder(idLine, weightLine);
QWidget::setTabOrder(weightLine, buttonBox);
retranslateUi(TaskDialog);
QObject::connect(buttonBox, SIGNAL(accepted()), TaskDialog, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), TaskDialog, SLOT(reject()));
QMetaObject::connectSlotsByName(TaskDialog);
} // setupUi
void retranslateUi(QDialog *TaskDialog)
{
TaskDialog->setWindowTitle(QApplication::translate("TaskDialog", "Dialog", 0, QApplication::UnicodeUTF8));
label->setText(QApplication::translate("TaskDialog", "Id:", 0, QApplication::UnicodeUTF8));
idLine->setInputMask(QApplication::translate("TaskDialog", ">Aa; ", 0, QApplication::UnicodeUTF8));
label_2->setText(QApplication::translate("TaskDialog", "Weight:", 0, QApplication::UnicodeUTF8));
weightLine->setInputMask(QApplication::translate("TaskDialog", "900; ", 0, QApplication::UnicodeUTF8));
Q_UNUSED(TaskDialog);
} // retranslateUi
};
namespace Ui {
class TaskDialog: public Ui_TaskDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_TASKDIALOG_H