Files
cantata/gui/trayitem.cpp
2013-04-12 18:50:49 +00:00

201 lines
6.7 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2013 Craig Drummond <craig.p.drummond@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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "trayitem.h"
#ifdef ENABLE_KDE_SUPPORT
#include <KDE/KMenu>
#include <QPixmap>
#endif
#ifndef Q_OS_WIN
#include "notify.h"
#endif
#include "localize.h"
#include "mainwindow.h"
#include "settings.h"
#include "action.h"
#include "icons.h"
#include "song.h"
TrayItem::TrayItem(MainWindow *p)
: QObject(p)
, mw(p)
, trayItem(0)
, trayItemMenu(0)
#ifndef Q_OS_WIN
, notification(0)
#endif
{
}
void TrayItem::setup()
{
if (!Settings::self()->useSystemTray()) {
if (trayItem) {
#ifndef ENABLE_KDE_SUPPORT
trayItem->setVisible(false);
#endif
trayItem->deleteLater();
trayItem=0;
trayItemMenu->deleteLater();
trayItemMenu=0;
}
return;
}
if (trayItem) {
return;
}
#ifdef ENABLE_KDE_SUPPORT
trayItem = new KStatusNotifierItem(this);
trayItem->setCategory(KStatusNotifierItem::ApplicationStatus);
trayItem->setTitle(i18n("Cantata"));
trayItem->setIconByName("cantata");
trayItem->setToolTip("cantata", i18n("Cantata"), QString());
trayItemMenu = new KMenu(0);
trayItemMenu->addAction(mw->prevTrackAction);
trayItemMenu->addAction(mw->playPauseTrackAction);
trayItemMenu->addAction(mw->stopPlaybackAction);
trayItemMenu->addAction(mw->nextTrackAction);
trayItem->setContextMenu(trayItemMenu);
trayItem->setStatus(KStatusNotifierItem::Active);
trayItemMenu->addSeparator();
trayItemMenu->addAction(mw->restoreAction);
connect(trayItem, SIGNAL(scrollRequested(int, Qt::Orientation)), this, SLOT(trayItemScrollRequested(int, Qt::Orientation)));
connect(trayItem, SIGNAL(secondaryActivateRequested(const QPoint &)), mw, SLOT(playPauseTrack()));
connect(trayItem, SIGNAL(activateRequested(bool, const QPoint &)), this, SLOT(clicked()));
#else
if (!QSystemTrayIcon::isSystemTrayAvailable()) {
trayItem = NULL;
return;
}
trayItem = new QSystemTrayIcon(this);
trayItem->installEventFilter(mw->volumeSliderEventHandler);
trayItemMenu = new QMenu(0);
trayItemMenu->addAction(mw->prevTrackAction);
trayItemMenu->addAction(mw->playPauseTrackAction);
trayItemMenu->addAction(mw->stopPlaybackAction);
trayItemMenu->addAction(mw->nextTrackAction);
trayItemMenu->addSeparator();
trayItemMenu->addAction(mw->restoreAction);
trayItemMenu->addSeparator();
trayItemMenu->addAction(mw->quitAction);
trayItem->setContextMenu(trayItemMenu);
trayItem->setIcon(Icons::appIcon);
trayItem->setToolTip(i18n("Cantata"));
trayItem->show();
connect(trayItem, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayItemClicked(QSystemTrayIcon::ActivationReason)));
#endif
}
#ifdef ENABLE_KDE_SUPPORT
void TrayItem::clicked()
{
if (mw->isHidden()) {
mw->restoreWindow();
} else {
mw->hideWindow();
}
}
void TrayItem::trayItemScrollRequested(int delta, Qt::Orientation orientation)
{
if (Qt::Vertical==orientation) {
if (delta>0) {
mw->increaseVolumeAction->trigger();
} else if(delta<0) {
mw->decreaseVolumeAction->trigger();
}
}
}
#else
void TrayItem::trayItemClicked(QSystemTrayIcon::ActivationReason reason)
{
switch (reason) {
case QSystemTrayIcon::Trigger:
if (mw->isHidden()) {
mw->restoreWindow();
} else {
mw->hideWindow();
}
break;
case QSystemTrayIcon::MiddleClick:
mw->playPauseTrack();
break;
default:
break;
}
}
#endif
void TrayItem::songChanged(const Song &song, bool isPlaying)
{
if (Settings::self()->showPopups() || trayItem) {
if (!song.title.isEmpty() && !song.artist.isEmpty() &&
(!song.album.isEmpty() || (song.isStream() && !song.name.isEmpty()))) {
QString album=song.album.isEmpty() ? song.name : song.album;
QString text=song.time<=0
? i18nc("Song by Artist on Album", "%1 by %2 on %3")
.arg(song.title).arg(song.artist).arg(album)
: i18nc("Song by Artist on Album (track duration)", "%1 by %2 on %3 (%4)")
.arg(song.title).arg(song.artist).arg(album).arg(Song::formattedTime(song.time));
if (trayItem) {
#ifdef ENABLE_KDE_SUPPORT
trayItem->setToolTip("cantata", i18n("Cantata"), text);
// Use the cover as icon pixmap.
if (mw->coverWidget->isValid()) {
QPixmap *coverPixmap = const_cast<QPixmap*>(mw->coverWidget->pixmap());
if (coverPixmap) {
trayItem->setToolTipIconByPixmap(*coverPixmap);
}
}
#elif defined Q_OS_WIN
trayItem->setToolTip(i18n("Cantata")+"\n\n"+text);
// The pure Qt implementation needs both, the tray icon and the setting checked.
if (Settings::self()->showPopups() && isPlaying) {
trayItem->showMessage(i18n("Cantata"), text, QSystemTrayIcon::Information, 5000);
}
#else
trayItem->setToolTip(i18n("Cantata")+"\n\n"+text);
#endif // ENABLE_KDE_SUPPORT
}
#ifndef Q_OS_WIN
if (Settings::self()->showPopups() && isPlaying) {
if (!notification) {
notification=new Notify(this);
}
notification->show(i18n("Now playing"), text, mw->coverWidget->image());
}
#endif
} else if (trayItem) {
#ifdef ENABLE_KDE_SUPPORT
trayItem->setToolTip("cantata", i18n("Cantata"), QString());
#else
trayItem->setToolTip(i18n("Cantata"));
#endif
}
}
}