nextcloud-desktop/src/gui/systray.h

67 lines
1.6 KiB
C
Raw Normal View History

/*
* 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>
#include <QQmlContext>
#include "accountmanager.h"
class QIcon;
2014-11-10 00:34:07 +03:00
namespace OCC {
2013-10-01 15:51:40 +04:00
#ifdef Q_OS_OSX
bool canOsXSendUserNotification();
void sendOsXUserNotification(const QString &title, const QString &message);
#endif
namespace Ui {
class Systray;
}
2015-06-29 19:56:09 +03:00
/**
* @brief The Systray class
* @ingroup gui
*/
class Systray
: public QSystemTrayIcon
{
Q_OBJECT
public:
explicit Systray();
~Systray();
2017-05-17 11:55:42 +03: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);
Q_INVOKABLE QString currentAvatar() const;
Q_INVOKABLE QString currentAccountServer() const;
Q_INVOKABLE QString currentAccountUser() const;
signals:
void currentUserChanged();
private slots:
void slotChangeActivityModel(const AccountStatePtr account);
private:
AccountStatePtr _currentAccount;
QQmlContext *_trayContext;
};
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