2010-06-22 13:52:55 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-06-22 13:52:55 +02:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTSYSTEMTRAYICON_H
|
|
|
|
#define QTSYSTEMTRAYICON_H
|
|
|
|
|
2020-09-18 16:15:19 +02:00
|
|
|
#include <QSystemTrayIcon>
|
|
|
|
|
2016-05-30 00:54:21 +02:00
|
|
|
#include "mainwindow.h"
|
2010-06-22 13:52:55 +02:00
|
|
|
#include "systemtrayicon.h"
|
|
|
|
|
|
|
|
class QtSystemTrayIcon : public SystemTrayIcon {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2014-02-10 16:03:54 +01:00
|
|
|
QtSystemTrayIcon(QObject* parent = nullptr);
|
2010-06-22 13:52:55 +02:00
|
|
|
~QtSystemTrayIcon();
|
|
|
|
|
|
|
|
void SetupMenu(QAction* previous, QAction* play, QAction* stop,
|
2010-11-21 22:36:27 +01:00
|
|
|
QAction* stop_after, QAction* next, QAction* mute,
|
2014-03-27 18:55:58 +01:00
|
|
|
QAction* love, QAction* quit);
|
2010-06-22 13:52:55 +02:00
|
|
|
bool IsVisible() const;
|
|
|
|
void SetVisible(bool visible);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void ShowPopup(const QString& summary, const QString& message, int timeout);
|
2010-06-22 13:52:55 +02:00
|
|
|
|
2010-12-06 00:41:41 +01:00
|
|
|
void SetNowPlaying(const Song& song, const QString& image_path);
|
2010-11-21 22:36:27 +01:00
|
|
|
void ClearNowPlaying();
|
2014-02-07 16:34:20 +01:00
|
|
|
|
|
|
|
protected:
|
2010-06-22 13:52:55 +02:00
|
|
|
// SystemTrayIcon
|
|
|
|
void UpdateIcon();
|
2011-03-07 22:33:01 +01:00
|
|
|
void SetPaused();
|
2014-03-27 18:55:58 +01:00
|
|
|
void SetPlaying(bool enable_play_pause = false, bool enable_love = false);
|
2011-03-07 22:33:01 +01:00
|
|
|
void SetStopped();
|
2011-04-22 00:19:28 +02:00
|
|
|
void LastFMButtonVisibilityChanged(bool value);
|
|
|
|
void LastFMButtonLoveStateChanged(bool value);
|
2011-06-22 23:50:25 +02:00
|
|
|
void MuteButtonStateChanged(bool value);
|
2010-06-22 13:52:55 +02:00
|
|
|
|
|
|
|
// QObject
|
2014-02-07 16:34:20 +01:00
|
|
|
bool eventFilter(QObject*, QEvent*);
|
2010-06-22 13:52:55 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private slots:
|
2010-06-22 13:52:55 +02:00
|
|
|
void Clicked(QSystemTrayIcon::ActivationReason);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-06-22 13:52:55 +02:00
|
|
|
QSystemTrayIcon* tray_;
|
|
|
|
QMenu* menu_;
|
2011-03-07 22:33:01 +01:00
|
|
|
QAction* action_play_pause_;
|
|
|
|
QAction* action_stop_;
|
|
|
|
QAction* action_stop_after_this_track_;
|
2011-06-22 23:50:25 +02:00
|
|
|
QAction* action_mute_;
|
2011-03-07 22:33:01 +01:00
|
|
|
QAction* action_love_;
|
2010-06-22 13:52:55 +02:00
|
|
|
|
|
|
|
QPixmap orange_icon_;
|
|
|
|
QPixmap grey_icon_;
|
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // QTSYSTEMTRAYICON_H
|