2013-03-20 13:03:49 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Cédric Bellegarde <gnumdk@gmail.com>
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SYSTRAY_H
|
|
|
|
#define SYSTRAY_H
|
|
|
|
|
|
|
|
#include <QSystemTrayIcon>
|
2019-12-02 16:10:18 +03:00
|
|
|
#include <QQmlContext>
|
|
|
|
|
|
|
|
#include "accountmanager.h"
|
2019-12-03 20:50:34 +03:00
|
|
|
#include "tray/UserModel.h"
|
2013-03-20 13:03:49 +04:00
|
|
|
|
|
|
|
class QIcon;
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-10-01 15:51:40 +04:00
|
|
|
|
2015-02-07 20:23:09 +03:00
|
|
|
#ifdef Q_OS_OSX
|
|
|
|
bool canOsXSendUserNotification();
|
|
|
|
void sendOsXUserNotification(const QString &title, const QString &message);
|
|
|
|
#endif
|
|
|
|
|
2019-12-02 16:10:18 +03:00
|
|
|
namespace Ui {
|
|
|
|
class Systray;
|
|
|
|
}
|
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief The Systray class
|
|
|
|
* @ingroup gui
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2019-12-02 16:10:18 +03:00
|
|
|
class Systray
|
|
|
|
: public QSystemTrayIcon
|
2013-03-20 13:03:49 +04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-12-02 16:10:18 +03:00
|
|
|
explicit Systray();
|
|
|
|
~Systray();
|
2013-03-20 13:03:49 +04:00
|
|
|
void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int millisecondsTimeoutHint = 10000);
|
2013-11-23 03:05:50 +04:00
|
|
|
void setToolTip(const QString &tip);
|
2019-12-03 19:25:11 +03:00
|
|
|
|
2019-12-30 16:14:28 +03:00
|
|
|
Q_INVOKABLE int calcTrayWindowX();
|
|
|
|
Q_INVOKABLE int calcTrayWindowY();
|
|
|
|
|
2019-12-03 00:45:14 +03:00
|
|
|
signals:
|
|
|
|
void currentUserChanged();
|
2019-12-02 16:10:18 +03:00
|
|
|
|
2019-12-30 13:52:07 +03:00
|
|
|
Q_INVOKABLE void hideWindow();
|
|
|
|
Q_INVOKABLE void showWindow();
|
|
|
|
|
2019-12-02 16:10:18 +03:00
|
|
|
private slots:
|
2020-01-03 18:15:15 +03:00
|
|
|
void slotChangeActivityModel();
|
2019-12-02 16:10:18 +03:00
|
|
|
|
|
|
|
private:
|
2020-01-03 15:09:29 +03:00
|
|
|
QQmlEngine *_trayEngine;
|
2019-12-30 13:39:21 +03:00
|
|
|
QQmlComponent *_trayComponent;
|
2019-12-02 16:10:18 +03:00
|
|
|
QQmlContext *_trayContext;
|
2013-03-20 13:03:49 +04:00
|
|
|
};
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
} // namespace OCC
|
2013-10-01 15:51:40 +04:00
|
|
|
|
2013-07-30 16:53:42 +04:00
|
|
|
#endif //SYSTRAY_H
|