diff options
Diffstat (limited to 'src/3rdparty/phonon/mmf/videowidget.h')
-rw-r--r-- | src/3rdparty/phonon/mmf/videowidget.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/3rdparty/phonon/mmf/videowidget.h b/src/3rdparty/phonon/mmf/videowidget.h index 3c33a56..6967f7e 100644 --- a/src/3rdparty/phonon/mmf/videowidget.h +++ b/src/3rdparty/phonon/mmf/videowidget.h @@ -22,12 +22,13 @@ along with this library. If not, see <http://www.gnu.org/licenses/>. #include <QtGui/QWidget> #include <phonon/videowidget.h> #include <phonon/videowidgetinterface.h> +#include "videooutput.h" namespace Phonon { namespace MMF { - class VideoWidget : public QWidget + class VideoWidget : public QObject , public Phonon::VideoWidgetInterface { Q_OBJECT @@ -53,6 +54,8 @@ namespace Phonon virtual QWidget *widget(); private: + QScopedPointer<VideoOutput> m_widget; + Phonon::VideoWidget::AspectRatio m_aspectRatio; qreal m_brightness; Phonon::VideoWidget::ScaleMode m_scaleMode; |