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_PRIVATE_H
|
|
|
|
#define SYSTEMTRAYICON_PRIVATE_H
|
|
|
|
|
|
|
|
#include <QSystemTrayIcon>
|
|
|
|
|
2015-02-22 05:55:54 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND
|
|
|
|
#ifdef signals
|
|
|
|
#undef signals
|
|
|
|
#endif
|
|
|
|
extern "C" {
|
2015-02-22 07:47:18 +08:00
|
|
|
#include <gtk/gtk.h>
|
2015-02-22 05:55:54 +08:00
|
|
|
#include <glib.h>
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
#include "src/platform/statusnotifier/statusnotifier.h"
|
|
|
|
}
|
|
|
|
#define signals public
|
|
|
|
#endif
|
|
|
|
|
2015-01-29 21:56:53 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
|
|
|
#ifdef signals
|
|
|
|
#undef signals
|
|
|
|
#endif
|
|
|
|
extern "C" {
|
2015-01-30 00:44:23 +08:00
|
|
|
#include <libappindicator/app-indicator.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <libdbusmenu-glib/server.h>
|
2015-01-29 21:56:53 +08:00
|
|
|
}
|
|
|
|
#define signals public
|
|
|
|
#endif
|
|
|
|
|
2015-02-25 06:27:08 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
|
|
|
#ifdef signals
|
|
|
|
#undef signals
|
|
|
|
#endif
|
|
|
|
extern "C" {
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
}
|
|
|
|
#define signals public
|
|
|
|
#endif
|
|
|
|
|
2015-01-29 21:56:53 +08:00
|
|
|
enum class SystrayBackendType
|
|
|
|
{
|
|
|
|
Qt,
|
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
2015-02-22 05:55:54 +08:00
|
|
|
Unity,
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND
|
|
|
|
StatusNotifier,
|
2015-01-29 21:56:53 +08:00
|
|
|
#endif
|
2015-02-25 06:27:08 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
|
|
|
GTK,
|
2015-01-29 21:56:53 +08:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SYSTEMTRAYICON_PRIVATE_H
|