00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_LINEEDIT_DIALOG_BASE_H
00011 #define UI_LINEEDIT_DIALOG_BASE_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QDialog>
00018 #include <QtGui/QDialogButtonBox>
00019 #include <QtGui/QGridLayout>
00020 #include <QtGui/QLabel>
00021 #include <QtGui/QLineEdit>
00022
00023 class Ui_LineEdit_Dialog_BASE
00024 {
00025 public:
00026 QGridLayout *gridLayout;
00027 QLabel *label_Question;
00028 QLineEdit *lineEdit;
00029 QDialogButtonBox *buttonBox;
00030
00031 void setupUi(QDialog *LineEdit_Dialog_BASE)
00032 {
00033 if (LineEdit_Dialog_BASE->objectName().isEmpty())
00034 LineEdit_Dialog_BASE->setObjectName(QString::fromUtf8("LineEdit_Dialog_BASE"));
00035 LineEdit_Dialog_BASE->setWindowModality(Qt::WindowModal);
00036 LineEdit_Dialog_BASE->resize(387, 73);
00037 QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed);
00038 sizePolicy.setHorizontalStretch(0);
00039 sizePolicy.setVerticalStretch(0);
00040 sizePolicy.setHeightForWidth(LineEdit_Dialog_BASE->sizePolicy().hasHeightForWidth());
00041 LineEdit_Dialog_BASE->setSizePolicy(sizePolicy);
00042 LineEdit_Dialog_BASE->setSizeGripEnabled(false);
00043 LineEdit_Dialog_BASE->setModal(true);
00044 gridLayout = new QGridLayout(LineEdit_Dialog_BASE);
00045 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00046 label_Question = new QLabel(LineEdit_Dialog_BASE);
00047 label_Question->setObjectName(QString::fromUtf8("label_Question"));
00048
00049 gridLayout->addWidget(label_Question, 0, 0, 1, 1);
00050
00051 lineEdit = new QLineEdit(LineEdit_Dialog_BASE);
00052 lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
00053
00054 gridLayout->addWidget(lineEdit, 0, 1, 1, 1);
00055
00056 buttonBox = new QDialogButtonBox(LineEdit_Dialog_BASE);
00057 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
00058 buttonBox->setOrientation(Qt::Horizontal);
00059 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
00060 buttonBox->setCenterButtons(false);
00061
00062 gridLayout->addWidget(buttonBox, 1, 0, 1, 2);
00063
00064
00065 retranslateUi(LineEdit_Dialog_BASE);
00066 QObject::connect(buttonBox, SIGNAL(accepted()), LineEdit_Dialog_BASE, SLOT(accept()));
00067 QObject::connect(buttonBox, SIGNAL(rejected()), LineEdit_Dialog_BASE, SLOT(reject()));
00068
00069 QMetaObject::connectSlotsByName(LineEdit_Dialog_BASE);
00070 }
00071
00072 void retranslateUi(QDialog *LineEdit_Dialog_BASE)
00073 {
00074 LineEdit_Dialog_BASE->setWindowTitle(QApplication::translate("LineEdit_Dialog_BASE", "Line Edit Dialog", 0, QApplication::UnicodeUTF8));
00075 label_Question->setText(QApplication::translate("LineEdit_Dialog_BASE", "Enter value:", 0, QApplication::UnicodeUTF8));
00076 Q_UNUSED(LineEdit_Dialog_BASE);
00077 }
00078
00079 };
00080
00081 namespace Ui {
00082 class LineEdit_Dialog_BASE: public Ui_LineEdit_Dialog_BASE {};
00083 }
00084
00085 #endif // UI_LINEEDIT_DIALOG_BASE_H