Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_BERRYQTSHOWVIEWDIALOG_H
00011 #define UI_BERRYQTSHOWVIEWDIALOG_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/QHBoxLayout>
00020 #include <QtGui/QHeaderView>
00021 #include <QtGui/QLineEdit>
00022 #include <QtGui/QTreeView>
00023 #include <QtGui/QVBoxLayout>
00024
00025 QT_BEGIN_NAMESPACE
00026
00027 class Ui_QtShowViewDialog_
00028 {
00029 public:
00030 QHBoxLayout *hboxLayout;
00031 QVBoxLayout *vboxLayout;
00032 QLineEdit *m_Filter;
00033 QTreeView *m_TreeView;
00034 QDialogButtonBox *buttonBox;
00035
00036 void setupUi(QDialog *QtShowViewDialog_)
00037 {
00038 if (QtShowViewDialog_->objectName().isEmpty())
00039 QtShowViewDialog_->setObjectName(QString::fromUtf8("QtShowViewDialog_"));
00040 QtShowViewDialog_->setWindowModality(Qt::NonModal);
00041 QtShowViewDialog_->resize(406, 341);
00042 QtShowViewDialog_->setSizeGripEnabled(true);
00043 QtShowViewDialog_->setModal(true);
00044 hboxLayout = new QHBoxLayout(QtShowViewDialog_);
00045 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00046 vboxLayout = new QVBoxLayout();
00047 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00048 m_Filter = new QLineEdit(QtShowViewDialog_);
00049 m_Filter->setObjectName(QString::fromUtf8("m_Filter"));
00050
00051 vboxLayout->addWidget(m_Filter);
00052
00053 m_TreeView = new QTreeView(QtShowViewDialog_);
00054 m_TreeView->setObjectName(QString::fromUtf8("m_TreeView"));
00055
00056 vboxLayout->addWidget(m_TreeView);
00057
00058 buttonBox = new QDialogButtonBox(QtShowViewDialog_);
00059 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
00060 buttonBox->setOrientation(Qt::Horizontal);
00061 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
00062
00063 vboxLayout->addWidget(buttonBox);
00064
00065
00066 hboxLayout->addLayout(vboxLayout);
00067
00068
00069 retranslateUi(QtShowViewDialog_);
00070 QObject::connect(buttonBox, SIGNAL(accepted()), QtShowViewDialog_, SLOT(accept()));
00071 QObject::connect(buttonBox, SIGNAL(rejected()), QtShowViewDialog_, SLOT(reject()));
00072
00073 QMetaObject::connectSlotsByName(QtShowViewDialog_);
00074 }
00075
00076 void retranslateUi(QDialog *QtShowViewDialog_)
00077 {
00078 QtShowViewDialog_->setWindowTitle(QApplication::translate("QtShowViewDialog_", "Dialog", 0, QApplication::UnicodeUTF8));
00079 }
00080
00081 };
00082
00083 namespace Ui {
00084 class QtShowViewDialog_: public Ui_QtShowViewDialog_ {};
00085 }
00086
00087 QT_END_NAMESPACE
00088
00089 #endif // UI_BERRYQTSHOWVIEWDIALOG_H