mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
270 lines
6.8 KiB
C++
270 lines
6.8 KiB
C++
/***************************************************************************
|
|
* Copyright 2008 by Marco Martin <notmart@gmail.com> *
|
|
* *
|
|
* 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. *
|
|
* *
|
|
* This program 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 General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
|
|
***************************************************************************/
|
|
|
|
#include "mediaplayer.h"
|
|
#include "plasmamediaplayeradaptor.h"
|
|
#include "dbus/playerdbushandler.h"
|
|
#include "dbus/rootdbushandler.h"
|
|
#include "dbus/tracklistdbushandler.h"
|
|
|
|
#include <QGraphicsProxyWidget>
|
|
#include <QGraphicsLinearLayout>
|
|
#include <QGraphicsSceneDragDropEvent>
|
|
#include <QDBusConnection>
|
|
#include <QTimer>
|
|
|
|
#include <KMimeType>
|
|
#include <KFileDialog>
|
|
|
|
#include <phonon/audiooutput.h>
|
|
|
|
|
|
#include <plasma/widgets/iconwidget.h>
|
|
#include <plasma/widgets/slider.h>
|
|
#include <plasma/widgets/videowidget.h>
|
|
|
|
MediaPlayer::MediaPlayer(QObject *parent, const QVariantList &args)
|
|
: Plasma::Applet(parent, args),
|
|
m_ticking(false),
|
|
m_raised(false)
|
|
{
|
|
setAcceptDrops(true);
|
|
setHasConfigurationInterface(true);
|
|
setAspectRatioMode(Plasma::IgnoreAspectRatio);
|
|
resize(200, 200);
|
|
setPreferredSize(200,200);
|
|
|
|
if (args.count()) {
|
|
m_currentUrl = args.value(0).toString();
|
|
}
|
|
|
|
QDBusConnection dbus = QDBusConnection::sessionBus();
|
|
dbus.registerService("org.mpris.PlasmaMediaPlayer");
|
|
new PlasmaMediaPlayerAdaptor(this);
|
|
|
|
dbus.registerObject("/PlasmaMediaPlayer", this);
|
|
}
|
|
|
|
|
|
MediaPlayer::~MediaPlayer()
|
|
{
|
|
delete m_hideTimer;
|
|
|
|
// tries to solve problems with videos keeping being played
|
|
m_video->stop();
|
|
delete m_video;
|
|
}
|
|
|
|
|
|
void MediaPlayer::init()
|
|
{
|
|
m_layout = new QGraphicsLinearLayout(Qt::Vertical, this);
|
|
|
|
m_video = new Plasma::VideoWidget(this);
|
|
|
|
m_video->setAcceptDrops(false);
|
|
|
|
m_layout->addItem(m_video);
|
|
|
|
m_video->setUrl(m_currentUrl);
|
|
|
|
Phonon::MediaObject *media = m_video->mediaObject();
|
|
connect(media, SIGNAL(currentSourceChanged(Phonon::MediaSource)), this, SLOT(captureCurrentUrl(Phonon::MediaSource)));
|
|
connect(media, SIGNAL(finished()), this, SLOT(resetPlaylist()));
|
|
|
|
media->setTickInterval(200);
|
|
|
|
media->play();
|
|
|
|
m_video->setUsedControls(Plasma::VideoWidget::DefaultControls);
|
|
|
|
m_hideTimer = new QTimer(this);
|
|
m_hideTimer->setSingleShot(true);
|
|
connect(m_hideTimer, SIGNAL(timeout()), this, SLOT(hideControls()));
|
|
|
|
new PlayerDBusHandler(this, media, m_video->audioOutput());
|
|
new TrackListDBusHandler(this, media);
|
|
new RootDBusHandler(this);
|
|
}
|
|
|
|
|
|
|
|
void MediaPlayer::constraintsEvent(Plasma::Constraints constraints)
|
|
{
|
|
}
|
|
|
|
void MediaPlayer::SetControlsVisible(bool visible)
|
|
{
|
|
m_video->setControlsVisible(visible);
|
|
}
|
|
|
|
bool MediaPlayer::ControlsVisible() const
|
|
{
|
|
return m_video->controlsVisible();
|
|
}
|
|
|
|
void MediaPlayer::ToggleControlsVisibility()
|
|
{
|
|
SetControlsVisible(!m_video->controlsVisible());
|
|
}
|
|
|
|
void MediaPlayer::PlayPause()
|
|
{
|
|
Phonon::MediaObject *media = m_video->mediaObject();
|
|
|
|
if (media->state() == Phonon::PlayingState) {
|
|
media->pause();
|
|
} else {
|
|
media->play();
|
|
}
|
|
}
|
|
|
|
void MediaPlayer::RaiseLower()
|
|
{
|
|
if (m_raised) {
|
|
Lower();
|
|
m_raised = false;
|
|
} else {
|
|
Raise();
|
|
m_raised = true;
|
|
}
|
|
}
|
|
|
|
void MediaPlayer::Raise()
|
|
{
|
|
Raise();
|
|
m_raised = true;
|
|
}
|
|
|
|
void MediaPlayer::Lower()
|
|
{
|
|
Lower();
|
|
m_raised = true;
|
|
}
|
|
|
|
void MediaPlayer::SetPosition(int progress)
|
|
{
|
|
if (!m_ticking) {
|
|
m_video->mediaObject()->seek(progress);
|
|
}
|
|
}
|
|
|
|
void MediaPlayer::SetVolume(int value)
|
|
{
|
|
m_video->audioOutput()->setVolume(qreal(value)/100.0);
|
|
}
|
|
|
|
void MediaPlayer::dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
|
|
QString text = event->mimeData()->text();
|
|
|
|
QUrl testPath(text);
|
|
|
|
if (QFile::exists(testPath.path())) {
|
|
KMimeType::Ptr type = KMimeType::findByPath(testPath.path());
|
|
|
|
if (type->name().indexOf("video/") != -1) {
|
|
OpenUrl(testPath.path());
|
|
}
|
|
}
|
|
}
|
|
|
|
void MediaPlayer::ShowOpenFileDialog()
|
|
{
|
|
OpenUrl(KFileDialog::getOpenFileName());
|
|
}
|
|
|
|
void MediaPlayer::OpenUrl(const QString &url)
|
|
{
|
|
m_currentUrl = url;
|
|
setAssociatedApplicationUrls(KUrl(m_currentUrl));
|
|
m_video->setUrl(m_currentUrl);
|
|
m_video->mediaObject()->play();
|
|
}
|
|
|
|
void MediaPlayer::hideControls()
|
|
{
|
|
SetControlsVisible(false);
|
|
}
|
|
|
|
void MediaPlayer::captureCurrentUrl(const Phonon::MediaSource &newSource)
|
|
{
|
|
m_currentUrl = newSource.url().toString();
|
|
setAssociatedApplicationUrls(KUrl(m_currentUrl));
|
|
}
|
|
|
|
void MediaPlayer::resetPlaylist()
|
|
{
|
|
m_video->setUrl(m_currentUrl);
|
|
}
|
|
|
|
void MediaPlayer::keyPressEvent(QKeyEvent *event)
|
|
{
|
|
Phonon::MediaObject *media = m_video->mediaObject();
|
|
Phonon::AudioOutput *audio = m_video->audioOutput();
|
|
const qreal step = 30;
|
|
|
|
switch (event->key())
|
|
{
|
|
case Qt::Key_Left:
|
|
media->seek(media->currentTime() - media->totalTime()/step);
|
|
break;
|
|
case Qt::Key_Right:
|
|
media->seek(media->currentTime() + media->totalTime()/step);
|
|
break;
|
|
case Qt::Key_Space:
|
|
PlayPause();
|
|
break;
|
|
case Qt::Key_Up:
|
|
audio->setVolume(qMin(qreal(1.0), (qreal)(audio->volume() + 0.1)));
|
|
break;
|
|
case Qt::Key_Down:
|
|
audio->setVolume(qMax(qreal(0.0), (qreal)(audio->volume() - 0.1)));
|
|
break;
|
|
case Qt::Key_R:
|
|
RaiseLower();
|
|
break;
|
|
case Qt::Key_V:
|
|
ToggleControlsVisibility();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (event->key() != Qt::Key_V) {
|
|
SetControlsVisible(true);
|
|
m_hideTimer->start(2000);
|
|
}
|
|
}
|
|
|
|
void MediaPlayer::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
event->accept();
|
|
}
|
|
|
|
void MediaPlayer::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
event->accept();
|
|
ToggleControlsVisibility();
|
|
}
|
|
|
|
K_EXPORT_PLASMA_APPLET(mediaplayer, MediaPlayer)
|
|
|
|
#include "moc_mediaplayer.cpp"
|