2014-11-19 02:23:05 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2008 by Pino Toscano <pino@kde.org> *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _OKULAR_VIDEOWIDGET_H_
|
|
|
|
#define _OKULAR_VIDEOWIDGET_H_
|
|
|
|
|
|
|
|
#include <qwidget.h>
|
|
|
|
|
|
|
|
namespace Okular {
|
|
|
|
class Annotation;
|
|
|
|
class Document;
|
|
|
|
class Movie;
|
|
|
|
class NormalizedRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
class VideoWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
VideoWidget( const Okular::Annotation *annot, Okular::Movie *movie, Okular::Document *document, QWidget *parent = 0 );
|
|
|
|
~VideoWidget();
|
|
|
|
|
|
|
|
void setNormGeometry( const Okular::NormalizedRect &rect );
|
|
|
|
Okular::NormalizedRect normGeometry() const;
|
|
|
|
|
|
|
|
bool isPlaying() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called when the page the video widget is located on has been initialized.
|
|
|
|
*/
|
|
|
|
void pageInitialized();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called when the page the video widget is located on has been entered.
|
|
|
|
*/
|
|
|
|
void pageEntered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called when the page the video widget is located on has been left.
|
|
|
|
*/
|
|
|
|
void pageLeft();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void play();
|
|
|
|
void pause();
|
|
|
|
void stop();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/* reimp */ bool event( QEvent * event );
|
|
|
|
|
|
|
|
private:
|
|
|
|
Q_PRIVATE_SLOT( d, void finished() )
|
|
|
|
Q_PRIVATE_SLOT( d, void setPosterImage( const QImage& ) )
|
2016-03-31 06:40:57 +00:00
|
|
|
Q_PRIVATE_SLOT( d, void stateChanged( bool paused ) )
|
2014-11-19 02:23:05 +00:00
|
|
|
|
|
|
|
// private storage
|
|
|
|
class Private;
|
|
|
|
Private *d;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|