00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_IMAGECONTAINER_H
00011 #define UI_IMAGECONTAINER_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/QHeaderView>
00019 #include <QtGui/QLabel>
00020 #include <QtGui/QWidget>
00021
00022 QT_BEGIN_NAMESPACE
00023
00024 class Ui_ImageContainerFrame
00025 {
00026 public:
00027 QHBoxLayout *horizontalLayout;
00028 QLabel *m_pImagePlaceHolder;
00029
00030 void setupUi(QWidget *ImageContainerFrame)
00031 {
00032 if (ImageContainerFrame->objectName().isEmpty())
00033 ImageContainerFrame->setObjectName(QString::fromUtf8("ImageContainerFrame"));
00034 ImageContainerFrame->resize(400, 300);
00035 horizontalLayout = new QHBoxLayout(ImageContainerFrame);
00036 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
00037 m_pImagePlaceHolder = new QLabel(ImageContainerFrame);
00038 m_pImagePlaceHolder->setObjectName(QString::fromUtf8("m_pImagePlaceHolder"));
00039 m_pImagePlaceHolder->setAutoFillBackground(false);
00040
00041 horizontalLayout->addWidget(m_pImagePlaceHolder);
00042
00043
00044 retranslateUi(ImageContainerFrame);
00045
00046 QMetaObject::connectSlotsByName(ImageContainerFrame);
00047 }
00048
00049 void retranslateUi(QWidget *ImageContainerFrame)
00050 {
00051 ImageContainerFrame->setWindowTitle(QApplication::translate("ImageContainerFrame", "Form", 0, QApplication::UnicodeUTF8));
00052 m_pImagePlaceHolder->setText(QApplication::translate("ImageContainerFrame", "TextLabel", 0, QApplication::UnicodeUTF8));
00053 Q_UNUSED(ImageContainerFrame);
00054 }
00055
00056 };
00057
00058 namespace Ui {
00059 class ImageContainerFrame: public Ui_ImageContainerFrame {};
00060 }
00061
00062 QT_END_NAMESPACE
00063
00064 #endif // UI_IMAGECONTAINER_H