2010-06-22 16:09:13 +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 16:09:13 +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 MACSYSTEMTRAYICON_H
|
|
|
|
#define MACSYSTEMTRAYICON_H
|
|
|
|
|
2014-02-06 14:48:00 +01:00
|
|
|
#include <memory>
|
2010-06-22 16:09:13 +02:00
|
|
|
|
2014-02-06 14:48:00 +01:00
|
|
|
#include "systemtrayicon.h"
|
2010-06-22 16:09:13 +02:00
|
|
|
|
|
|
|
class MacSystemTrayIconPrivate;
|
|
|
|
|
2014-02-06 14:48:00 +01:00
|
|
|
class MacSystemTrayIcon : public SystemTrayIcon {
|
2010-06-22 16:09:13 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2014-02-10 16:03:54 +01:00
|
|
|
MacSystemTrayIcon(QObject* parent = nullptr);
|
2010-06-22 16:09:13 +02:00
|
|
|
~MacSystemTrayIcon();
|
|
|
|
|
|
|
|
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 16:09:13 +02:00
|
|
|
|
2010-12-06 00:41:41 +01:00
|
|
|
void SetNowPlaying(const Song& song, const QString& image_path);
|
2010-09-08 13:53:35 +02:00
|
|
|
void ClearNowPlaying();
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-06-22 16:09:13 +02:00
|
|
|
void SetupMenuItem(QAction* action);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private slots:
|
2010-06-22 16:09:13 +02:00
|
|
|
void ActionChanged();
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
protected:
|
2010-06-22 16:09:13 +02:00
|
|
|
// SystemTrayIcon
|
|
|
|
void UpdateIcon();
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-06-22 16:09:13 +02:00
|
|
|
QPixmap orange_icon_;
|
|
|
|
QPixmap grey_icon_;
|
2014-02-06 14:48:00 +01:00
|
|
|
std::unique_ptr<MacSystemTrayIconPrivate> p_;
|
2019-11-10 00:30:18 +01:00
|
|
|
Q_DISABLE_COPY(MacSystemTrayIcon)
|
2010-06-22 16:09:13 +02:00
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // MACSYSTEMTRAYICON_H
|