Clementine-audio-player-Mac.../src/osd.cpp

106 lines
3.0 KiB
C++
Raw Normal View History

/* This file is part of Clementine.
Clementine 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 3 of the License, or
(at your option) any later version.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
2010-01-08 15:52:05 +01:00
#include "osd.h"
2010-01-08 17:21:22 +01:00
#include <QCoreApplication>
#include <QtDebug>
2010-02-03 18:21:25 +01:00
#include <QSettings>
const char* OSD::kSettingsGroup = "OSD";
2010-01-08 17:21:22 +01:00
2010-01-08 15:52:05 +01:00
OSD::OSD(QSystemTrayIcon* tray_icon, QObject* parent)
: QObject(parent),
2010-01-08 16:37:35 +01:00
tray_icon_(tray_icon),
2010-02-03 18:21:25 +01:00
timeout_(5000),
behaviour_(Native),
show_on_volume_change_(false),
show_art_(true)
2010-01-08 15:52:05 +01:00
{
2010-02-03 18:21:25 +01:00
ReloadSettings();
2010-01-08 15:52:05 +01:00
Init();
}
2010-02-03 18:21:25 +01:00
void OSD::ReloadSettings() {
QSettings s;
s.beginGroup(kSettingsGroup);
behaviour_ = OSD::Behaviour(s.value("Behaviour", Native).toInt());
timeout_ = s.value("Timeout", 5000).toInt();
show_on_volume_change_ = s.value("ShowOnVolumeChange", false).toBool();
show_art_ = s.value("ShowArt", true).toBool();
2010-02-03 18:21:25 +01:00
if (!SupportsNativeNotifications() && behaviour_ == Native)
2010-02-03 18:21:25 +01:00
behaviour_ = TrayPopup;
if (!SupportsTrayPopups() && behaviour_ == TrayPopup)
behaviour_ = Disabled;
2010-02-03 18:21:25 +01:00
}
2010-01-08 15:52:05 +01:00
void OSD::SongChanged(const Song &song) {
qDebug() << __PRETTY_FUNCTION__;
2010-01-08 17:40:34 +01:00
QString summary(song.PrettyTitle());
if (!song.artist().isEmpty())
2010-01-08 17:40:34 +01:00
summary = QString("%1 - %2").arg(song.artist(), summary);
2010-01-08 15:52:05 +01:00
2010-01-08 17:40:34 +01:00
QStringList message_parts;
2010-01-08 15:52:05 +01:00
if (!song.album().isEmpty())
message_parts << song.album();
if (song.disc() > 0)
message_parts << QString("disc %1").arg(song.disc());
2010-01-08 15:52:05 +01:00
if (song.track() > 0)
message_parts << QString("track %1").arg(song.track());
2010-01-08 15:52:05 +01:00
ShowMessage(summary, message_parts.join(", "), "notification-audio-play",
show_art_ ? song.GetBestImage() : QImage());
2010-01-08 15:52:05 +01:00
}
void OSD::Paused() {
2010-02-23 19:33:09 +01:00
ShowMessage(QCoreApplication::applicationName(), tr("Paused"));
2010-01-08 15:52:05 +01:00
}
void OSD::Stopped() {
2010-02-23 19:33:09 +01:00
ShowMessage(QCoreApplication::applicationName(), tr("Playlist finished"));
2010-01-08 15:52:05 +01:00
}
2010-01-08 17:40:34 +01:00
void OSD::VolumeChanged(int value) {
if (!show_on_volume_change_)
return;
2010-02-23 19:33:09 +01:00
ShowMessage(QCoreApplication::applicationName(), tr("Volume %1%").arg(value));
2010-01-08 17:40:34 +01:00
}
2010-02-03 18:21:25 +01:00
void OSD::ShowMessage(const QString& summary,
const QString& message,
const QString& icon,
const QImage& image) {
2010-02-03 18:21:25 +01:00
switch (behaviour_) {
case Native:
if (image.isNull()) {
ShowMessageNative(summary, message, icon);
} else {
ShowMessageNative(summary, message, image);
}
2010-02-03 18:21:25 +01:00
break;
case TrayPopup:
tray_icon_->showMessage(summary, message, QSystemTrayIcon::NoIcon, timeout_);
break;
case Disabled:
default:
break;
}
}