00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ADJUSTMENTBOTTOM_H
00011 #define ADJUSTMENTBOTTOM_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QHBoxLayout>
00018 #include <QtGui/QLabel>
00019 #include <QtGui/QLineEdit>
00020 #include <QtGui/QPushButton>
00021 #include <QtGui/QSpacerItem>
00022 #include <QtGui/QToolButton>
00023 #include <QtGui/QWidget>
00024
00025 class Ui_AdjustmentBottom
00026 {
00027 public:
00028 QHBoxLayout *hboxLayout;
00029 QPushButton *applyButton;
00030 QPushButton *saveButton;
00031 QPushButton *restoreButton;
00032 QLineEdit *dataName;
00033 QToolButton *tool;
00034 QLabel *labelOk;
00035 QSpacerItem *spacerItem;
00036 QPushButton *dismissButton;
00037
00038 void setupUi(QWidget *AdjustmentBottom)
00039 {
00040 if (AdjustmentBottom->objectName().isEmpty())
00041 AdjustmentBottom->setObjectName(QString::fromUtf8("AdjustmentBottom"));
00042 AdjustmentBottom->resize(529, 31);
00043 AdjustmentBottom->setBaseSize(QSize(100, 20));
00044 hboxLayout = new QHBoxLayout(AdjustmentBottom);
00045 hboxLayout->setSpacing(3);
00046 hboxLayout->setMargin(1);
00047 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00048 applyButton = new QPushButton(AdjustmentBottom);
00049 applyButton->setObjectName(QString::fromUtf8("applyButton"));
00050
00051 hboxLayout->addWidget(applyButton);
00052
00053 saveButton = new QPushButton(AdjustmentBottom);
00054 saveButton->setObjectName(QString::fromUtf8("saveButton"));
00055 saveButton->setEnabled(false);
00056
00057 hboxLayout->addWidget(saveButton);
00058
00059 restoreButton = new QPushButton(AdjustmentBottom);
00060 restoreButton->setObjectName(QString::fromUtf8("restoreButton"));
00061 restoreButton->setEnabled(false);
00062
00063 hboxLayout->addWidget(restoreButton);
00064
00065 dataName = new QLineEdit(AdjustmentBottom);
00066 dataName->setObjectName(QString::fromUtf8("dataName"));
00067 dataName->setEnabled(false);
00068
00069 hboxLayout->addWidget(dataName);
00070
00071 tool = new QToolButton(AdjustmentBottom);
00072 tool->setObjectName(QString::fromUtf8("tool"));
00073 tool->setEnabled(false);
00074 tool->setIcon(QIcon(QString::fromUtf8(":/icons/spanner.png")));
00075
00076 hboxLayout->addWidget(tool);
00077
00078 labelOk = new QLabel(AdjustmentBottom);
00079 labelOk->setObjectName(QString::fromUtf8("labelOk"));
00080 labelOk->setEnabled(false);
00081 labelOk->setPixmap(QPixmap(QString::fromUtf8(":/icons/tick.png")));
00082
00083 hboxLayout->addWidget(labelOk);
00084
00085 spacerItem = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum);
00086
00087 hboxLayout->addItem(spacerItem);
00088
00089 dismissButton = new QPushButton(AdjustmentBottom);
00090 dismissButton->setObjectName(QString::fromUtf8("dismissButton"));
00091
00092 hboxLayout->addWidget(dismissButton);
00093
00094
00095 retranslateUi(AdjustmentBottom);
00096
00097 QMetaObject::connectSlotsByName(AdjustmentBottom);
00098 }
00099
00100 void retranslateUi(QWidget *AdjustmentBottom)
00101 {
00102 AdjustmentBottom->setWindowTitle(QApplication::translate("AdjustmentBottom", "AdjustBottom", 0, QApplication::UnicodeUTF8));
00103 applyButton->setText(QApplication::translate("AdjustmentBottom", "Apply", 0, QApplication::UnicodeUTF8));
00104 saveButton->setText(QApplication::translate("AdjustmentBottom", "Save", 0, QApplication::UnicodeUTF8));
00105 restoreButton->setText(QApplication::translate("AdjustmentBottom", "Restore", 0, QApplication::UnicodeUTF8));
00106 tool->setText(QString());
00107 labelOk->setText(QString());
00108 dismissButton->setText(QApplication::translate("AdjustmentBottom", "Dismiss", 0, QApplication::UnicodeUTF8));
00109 Q_UNUSED(AdjustmentBottom);
00110 }
00111
00112 };
00113
00114 namespace Ui {
00115 class AdjustmentBottom: public Ui_AdjustmentBottom {};
00116 }
00117
00118 #endif // ADJUSTMENTBOTTOM_H