2015-06-06 09:40:08 +08:00
|
|
|
/*
|
|
|
|
Copyright © 2015 by The qTox Project
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox is libre 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.
|
|
|
|
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-01-29 21:56:53 +08:00
|
|
|
#ifndef SYSTEMTRAYICON_H
|
|
|
|
#define SYSTEMTRAYICON_H
|
|
|
|
|
|
|
|
#include "systemtrayicon_private.h"
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class QSystemTrayIcon;
|
|
|
|
class QMenu;
|
|
|
|
|
|
|
|
class SystemTrayIcon : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-08-30 00:06:22 +08:00
|
|
|
SystemTrayIcon();
|
2015-02-07 02:38:08 +08:00
|
|
|
~SystemTrayIcon();
|
2015-01-29 21:56:53 +08:00
|
|
|
void setContextMenu(QMenu* menu);
|
|
|
|
void show();
|
|
|
|
void hide();
|
|
|
|
void setVisible(bool);
|
2015-03-11 19:01:10 +08:00
|
|
|
void setIcon(QIcon &icon);
|
2015-01-29 21:56:53 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void activated(QSystemTrayIcon::ActivationReason);
|
|
|
|
|
2015-01-30 00:33:17 +08:00
|
|
|
private:
|
|
|
|
QString extractIconToFile(QIcon icon, QString name="icon");
|
2016-06-14 07:00:28 +08:00
|
|
|
#if defined(ENABLE_SYSTRAY_GTK_BACKEND) || defined(ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND)
|
|
|
|
static GdkPixbuf* convertQIconToPixbuf(const QIcon &icon);
|
|
|
|
#endif
|
2015-01-30 00:33:17 +08:00
|
|
|
|
2015-01-29 21:56:53 +08:00
|
|
|
private:
|
|
|
|
SystrayBackendType backendType;
|
2016-06-09 00:56:31 +08:00
|
|
|
QSystemTrayIcon* qtIcon = nullptr;
|
2015-08-29 20:10:17 +08:00
|
|
|
|
2015-01-29 21:56:53 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
|
|
|
AppIndicator *unityIndicator;
|
|
|
|
GtkWidget *unityMenu;
|
|
|
|
#endif
|
2015-02-22 05:55:54 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND
|
|
|
|
StatusNotifier* statusNotifier;
|
2015-02-22 07:47:18 +08:00
|
|
|
GtkWidget* snMenu;
|
2015-02-22 05:55:54 +08:00
|
|
|
#endif
|
2015-02-25 06:27:08 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
|
|
|
GtkStatusIcon* gtkIcon;
|
|
|
|
GtkWidget* gtkMenu;
|
|
|
|
#endif
|
2015-01-29 21:56:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SYSTEMTRAYICON_H
|