Advertisement
Guest User

Untitled

a guest
Apr 15th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. #ifndef VSVIDEOWIDGET_H
  2. #define VSVIDEOWIDGET_H
  3.  
  4. #include <MWidget>
  5.  
  6. class VSAbstractVideoWidget;
  7.  
  8. class VSVideoWidget : public VSAbstractVideoWidget {
  9.     Q_OBJECT
  10.    
  11. public:
  12.     VSVideoWidget(QGraphicsItem *parent);
  13.     MWidget* VSVideoWidget::controlsWidget();
  14.    
  15. public slots:
  16.     void resume();
  17.     void pause();
  18.     void stop();
  19.     void relativeSeek(int seconds);
  20.     void play(QString uri);
  21.     void initView();
  22.     void setOutputRectOverride(bool override);
  23.     void useScaling(bool use);
  24.     void resetSeekbar();
  25. };
  26.  
  27. #endif // VSVIDEOWIDGET_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement