Go to the documentation of this file.00001 #ifndef VPLAYER_H
00002 #define VPLAYER_H
00003
00004 #include <QWidget>
00005 #include <Phonon/MediaSource>
00006 #include <QDir>
00007 #include <qtimer.h>
00008 #include <string>
00009 #include <iostream>
00010
00011 using namespace std;
00012
00013 namespace Ui {
00014 class Vplayer;
00015 }
00017 class Vplayer : public QWidget {
00018 Q_OBJECT
00019 public:
00020 Vplayer(QWidget *parent = 0);
00021 ~Vplayer();
00022
00023 protected:
00024 void changeEvent(QEvent *e);
00025
00026 private:
00027 Ui::Vplayer *ui;
00028
00029 private slots:
00030 void on_play_button_clicked();
00031 void update();
00032 };
00033
00034 #endif // VPLAYER_H