strawberry-audio-player-win.../src/core/qtsystemtrayicon.cpp

207 lines
6.0 KiB
C++
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
2021-03-20 21:14:47 +01:00
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
*
* Strawberry 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.
*
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#include "config.h"
#include <QObject>
2018-02-27 18:06:05 +01:00
#include <QCoreApplication>
#include <QSystemTrayIcon>
#include <QAction>
#include <QMenu>
#include <QIcon>
#include <QString>
#include <QUrl>
#include <QSettings>
#include "song.h"
#include "iconloader.h"
#include "qtsystemtrayicon.h"
#include "settings/behavioursettingspage.h"
2021-05-20 21:40:08 +02:00
SystemTrayIcon::SystemTrayIcon(QObject *parent)
: QSystemTrayIcon(parent),
2018-02-27 18:06:05 +01:00
menu_(new QMenu),
app_name_(QCoreApplication::applicationName()),
2019-06-29 20:18:54 +02:00
icon_(IconLoader::Load("strawberry")),
normal_icon_(icon_.pixmap(48, QIcon::Normal)),
grey_icon_(icon_.pixmap(48, QIcon::Disabled)),
2021-05-20 21:40:08 +02:00
playing_icon_(":/pictures/tiny-play.png"),
paused_icon_(":/pictures/tiny-pause.png"),
2018-02-27 18:06:05 +01:00
action_play_pause_(nullptr),
action_stop_(nullptr),
action_stop_after_this_track_(nullptr),
2021-05-20 21:40:08 +02:00
action_mute_(nullptr),
2021-06-20 23:53:28 +02:00
action_love_(nullptr),
available_(false),
2021-05-20 21:40:08 +02:00
trayicon_progress_(false),
song_progress_(0) {
2018-02-27 18:06:05 +01:00
app_name_[0] = app_name_[0].toUpper();
QIcon theme_icon_grey = IconLoader::Load("strawberry-grey");
2020-11-11 22:55:56 +01:00
if (!theme_icon_grey.isNull()) {
grey_icon_ = theme_icon_grey.pixmap(48, QIcon::Disabled);
}
2018-02-27 18:06:05 +01:00
2021-05-20 21:40:08 +02:00
if (isSystemTrayAvailable()) {
available_ = true;
2021-05-20 21:40:08 +02:00
setIcon(normal_icon_);
setToolTip(app_name_);
}
QObject::connect(this, &QSystemTrayIcon::activated, this, &SystemTrayIcon::Clicked);
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
SystemTrayIcon::~SystemTrayIcon() {
2018-02-27 18:06:05 +01:00
delete menu_;
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::SetTrayiconProgress(const bool enabled) {
2018-02-27 18:06:05 +01:00
2021-05-20 21:40:08 +02:00
trayicon_progress_ = enabled;
UpdateIcon();
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::SetupMenu(QAction *previous, QAction *play, QAction *stop, QAction *stop_after, QAction *next, QAction *mute, QAction *love, QAction *quit) {
2018-02-27 18:06:05 +01:00
// Creating new actions and connecting them to old ones.
// This allows us to use old actions without displaying shortcuts that can not be used when Strawberry's window is hidden
2021-01-26 16:48:04 +01:00
menu_->addAction(previous->icon(), previous->text(), previous, &QAction::trigger);
action_play_pause_ = menu_->addAction(play->icon(), play->text(), play, &QAction::trigger);
action_stop_ = menu_->addAction(stop->icon(), stop->text(), stop, &QAction::trigger);
action_stop_after_this_track_ = menu_->addAction(stop_after->icon(), stop_after->text(), stop_after, &QAction::trigger);
menu_->addAction(next->icon(), next->text(), next, &QAction::trigger);
2018-02-27 18:06:05 +01:00
menu_->addSeparator();
2021-01-26 16:48:04 +01:00
action_mute_ = menu_->addAction(mute->icon(), mute->text(), mute, &QAction::trigger);
2018-02-27 18:06:05 +01:00
action_mute_->setCheckable(true);
action_mute_->setChecked(mute->isChecked());
menu_->addSeparator();
2021-01-26 16:48:04 +01:00
action_love_ = menu_->addAction(love->icon(), love->text(), love, &QAction::trigger);
2019-06-12 00:38:52 +02:00
action_love_->setVisible(love->isVisible());
action_love_->setEnabled(love->isEnabled());
2018-02-27 18:06:05 +01:00
menu_->addSeparator();
2021-01-26 16:48:04 +01:00
menu_->addAction(quit->icon(), quit->text(), quit, &QAction::trigger);
2018-02-27 18:06:05 +01:00
if (available_) setContextMenu(menu_);
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::Clicked(const QSystemTrayIcon::ActivationReason reason) {
2018-10-02 00:38:52 +02:00
2018-02-27 18:06:05 +01:00
switch (reason) {
case QSystemTrayIcon::DoubleClick:
case QSystemTrayIcon::Trigger:
emit ShowHide();
break;
case QSystemTrayIcon::MiddleClick:
emit PlayPause();
break;
default:
break;
}
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::ShowPopup(const QString &summary, const QString &message, const int timeout) {
if (available_) showMessage(summary, message, QSystemTrayIcon::NoIcon, timeout);
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::UpdateIcon() {
if (available_) setIcon(CreateIcon(normal_icon_, grey_icon_));
2021-05-20 21:40:08 +02:00
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::SetPlaying(bool enable_play_pause) {
2018-02-27 18:06:05 +01:00
2021-05-20 21:40:08 +02:00
current_state_icon_ = playing_icon_;
UpdateIcon();
2018-02-27 18:06:05 +01:00
action_stop_->setEnabled(true);
action_stop_after_this_track_->setEnabled(true);
2021-05-20 21:40:08 +02:00
action_play_pause_->setIcon(IconLoader::Load("media-playback-pause"));
action_play_pause_->setText(tr("Pause"));
action_play_pause_->setEnabled(enable_play_pause);
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::SetPaused() {
2018-02-27 18:06:05 +01:00
2021-05-20 21:40:08 +02:00
current_state_icon_ = paused_icon_;
UpdateIcon();
2018-02-27 18:06:05 +01:00
action_stop_->setEnabled(true);
action_stop_after_this_track_->setEnabled(true);
2021-05-20 21:40:08 +02:00
action_play_pause_->setIcon(IconLoader::Load("media-playback-start"));
action_play_pause_->setText(tr("Play"));
action_play_pause_->setEnabled(true);
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::SetStopped() {
2018-02-27 18:06:05 +01:00
2021-05-20 21:40:08 +02:00
current_state_icon_ = QPixmap();
UpdateIcon();
2018-02-27 18:06:05 +01:00
action_stop_->setEnabled(false);
action_stop_after_this_track_->setEnabled(false);
action_play_pause_->setIcon(IconLoader::Load("media-playback-start"));
2018-02-27 18:06:05 +01:00
action_play_pause_->setText(tr("Play"));
action_play_pause_->setEnabled(true);
2019-06-12 00:38:52 +02:00
action_love_->setEnabled(false);
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::SetProgress(const int percentage) {
2018-02-27 18:06:05 +01:00
2021-05-20 21:40:08 +02:00
song_progress_ = percentage;
UpdateIcon();
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::MuteButtonStateChanged(const bool value) {
if (action_mute_) action_mute_->setChecked(value);
}
2018-02-27 18:06:05 +01:00
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::SetNowPlaying(const Song &song, const QUrl&) {
if (available_) setToolTip(song.PrettyTitleWithArtist());
2018-02-27 18:06:05 +01:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::ClearNowPlaying() {
if (available_) setToolTip(app_name_);
2018-02-27 18:06:05 +01:00
}
2019-06-12 00:38:52 +02:00
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::LoveVisibilityChanged(const bool value) {
if (action_love_) action_love_->setVisible(value);
2019-06-12 00:38:52 +02:00
}
2021-05-20 21:40:08 +02:00
void SystemTrayIcon::LoveStateChanged(const bool value) {
if (action_love_) action_love_->setEnabled(value);
2019-06-12 00:38:52 +02:00
}