Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_VPLAYER_H
00011 #define UI_VPLAYER_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QGridLayout>
00018 #include <QtGui/QHeaderView>
00019 #include <QtGui/QPushButton>
00020 #include <QtGui/QWidget>
00021 #include <phonon/videoplayer.h>
00022 #include "qwt_analog_clock.h"
00023 #include "qwt_dial.h"
00024
00025 QT_BEGIN_NAMESPACE
00026
00027 class Ui_Vplayer
00028 {
00029 public:
00030 QGridLayout *gridLayout;
00031 Phonon::VideoPlayer *videobox;
00032 QPushButton *play_button;
00033 QwtAnalogClock *AnalogClock;
00034
00035 void setupUi(QWidget *Vplayer)
00036 {
00037 if (Vplayer->objectName().isEmpty())
00038 Vplayer->setObjectName(QString::fromUtf8("Vplayer"));
00039 Vplayer->resize(400, 300);
00040 gridLayout = new QGridLayout(Vplayer);
00041 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00042 videobox = new Phonon::VideoPlayer(Vplayer);
00043 videobox->setObjectName(QString::fromUtf8("videobox"));
00044
00045 gridLayout->addWidget(videobox, 0, 0, 1, 1);
00046
00047 play_button = new QPushButton(Vplayer);
00048 play_button->setObjectName(QString::fromUtf8("play_button"));
00049
00050 gridLayout->addWidget(play_button, 2, 0, 1, 1);
00051
00052 AnalogClock = new QwtAnalogClock(Vplayer);
00053 AnalogClock->setObjectName(QString::fromUtf8("AnalogClock"));
00054 AnalogClock->setLineWidth(4);
00055
00056 gridLayout->addWidget(AnalogClock, 1, 0, 1, 1);
00057
00058
00059 retranslateUi(Vplayer);
00060
00061 QMetaObject::connectSlotsByName(Vplayer);
00062 }
00063
00064 void retranslateUi(QWidget *Vplayer)
00065 {
00066 Vplayer->setWindowTitle(QApplication::translate("Vplayer", "Form", 0, QApplication::UnicodeUTF8));
00067 play_button->setText(QApplication::translate("Vplayer", "Play Video", 0, QApplication::UnicodeUTF8));
00068 }
00069
00070 };
00071
00072 namespace Ui {
00073 class Vplayer: public Ui_Vplayer {};
00074 }
00075
00076 QT_END_NAMESPACE
00077
00078 #endif // UI_VPLAYER_H