blob: 977fa3a24452242a52fdd605c8f5b10147c40e57 [file] [log] [blame]
/*
Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "PlatformVideoWindow.h"
#if ENABLE(VIDEO) && USE(GSTREAMER) && !defined(GST_API_VERSION_1)
#include "HTMLVideoElement.h"
#include "PlatformVideoWindowPrivate.h"
#include <QCursor>
#include <QGuiApplication>
#include <QKeyEvent>
#include <QPalette>
using namespace WebCore;
#ifndef QT_NO_CURSOR
static const int gHideMouseCursorDelay = 3000;
#endif
FullScreenVideoWindow::FullScreenVideoWindow()
: m_mediaElement(0)
{
setWindowModality(Qt::ApplicationModal);
#ifndef QT_NO_CURSOR
m_cursorTimer.setSingleShot(true);
connect(&m_cursorTimer, SIGNAL(timeout()), this, SLOT(hideCursor()));
#endif
}
void FullScreenVideoWindow::setVideoElement(HTMLVideoElement* element)
{
m_mediaElement = element;
}
void FullScreenVideoWindow::keyPressEvent(QKeyEvent* ev)
{
if (m_mediaElement && ev->key() == Qt::Key_Space) {
if (!m_mediaElement->paused())
m_mediaElement->pause();
else
m_mediaElement->play();
} else if (ev->key() == Qt::Key_Escape)
emit closed();
QWindow::keyPressEvent(ev);
}
bool FullScreenVideoWindow::event(QEvent* ev)
{
switch (ev->type()) {
case QEvent::MouseMove:
showCursor();
ev->accept();
return true;
case QEvent::MouseButtonDblClick:
emit closed();
ev->accept();
return true;
case QEvent::Close:
#ifndef QT_NO_CURSOR
m_cursorTimer.stop();
#endif
#ifndef QT_NO_CURSOR
QGuiApplication::restoreOverrideCursor();
#endif
break;
default:
break;
}
return QWindow::event(ev);
}
void FullScreenVideoWindow::showFullScreen()
{
QWindow::showFullScreen();
raise();
hideCursor();
}
void FullScreenVideoWindow::hideCursor()
{
#ifndef QT_NO_CURSOR
QGuiApplication::setOverrideCursor(QCursor(Qt::BlankCursor));
#endif
}
void FullScreenVideoWindow::showCursor()
{
#ifndef QT_NO_CURSOR
QGuiApplication::restoreOverrideCursor();
m_cursorTimer.start(gHideMouseCursorDelay);
#endif
}
PlatformVideoWindow::PlatformVideoWindow()
{
QWindow* win = new FullScreenVideoWindow();
m_window = win;
win->setWindowFlags(win->windowFlags() | Qt::FramelessWindowHint);
// FIXME: Port to Qt 5.
win->showFullScreen();
m_videoWindowId = win->winId();
}
PlatformVideoWindow::~PlatformVideoWindow()
{
delete m_window;
m_videoWindowId = 0;
}
void PlatformVideoWindow::prepareForOverlay(GstMessage*)
{
}
#endif // ENABLE(VIDEO) && USE(GSTREAMER) && !defined(GST_API_VERSION_1)