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 "accountmanager.h"
|
2019-12-03 20:50:34 +03:00
|
|
|
#include "tray/UserModel.h"
|
2013-03-20 13:03:49 +04:00
|
|
|
|
2020-05-20 20:36:57 +03:00
|
|
|
class QScreen;
|
2020-03-22 18:14:26 +03:00
|
|
|
class QQmlApplicationEngine;
|
2020-06-23 12:20:30 +03:00
|
|
|
class QQuickWindow;
|
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
|
|
|
|
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:
|
2020-01-11 19:34:56 +03:00
|
|
|
static Systray *instance();
|
|
|
|
virtual ~Systray() {};
|
|
|
|
|
2020-05-20 11:12:55 +03:00
|
|
|
enum class TaskBarPosition { Bottom, Left, Top, Right };
|
|
|
|
Q_ENUM(TaskBarPosition);
|
|
|
|
|
2020-06-24 14:50:17 +03:00
|
|
|
void setTrayEngine(QQmlApplicationEngine *trayEngine);
|
2020-01-11 17:05:37 +03:00
|
|
|
void create();
|
2020-03-21 02:38:57 +03:00
|
|
|
void showMessage(const QString &title, const QString &message, MessageIcon icon = Information);
|
2013-11-23 03:05:50 +04:00
|
|
|
void setToolTip(const QString &tip);
|
2020-01-05 18:25:32 +03:00
|
|
|
bool isOpen();
|
2019-12-03 19:25:11 +03:00
|
|
|
|
2020-01-05 23:06:42 +03:00
|
|
|
Q_INVOKABLE void pauseResumeSync();
|
|
|
|
Q_INVOKABLE bool syncIsPaused();
|
2020-01-05 18:25:32 +03:00
|
|
|
Q_INVOKABLE void setOpened();
|
|
|
|
Q_INVOKABLE void setClosed();
|
2020-06-23 12:20:30 +03:00
|
|
|
Q_INVOKABLE void positionWindow(QQuickWindow *window) const;
|
2019-12-30 16:14:28 +03:00
|
|
|
|
2019-12-03 00:45:14 +03:00
|
|
|
signals:
|
|
|
|
void currentUserChanged();
|
2020-06-29 20:41:51 +03:00
|
|
|
void openMainDialog();
|
2020-01-04 19:22:56 +03:00
|
|
|
void openSettings();
|
2020-01-05 23:06:42 +03:00
|
|
|
void openHelp();
|
2020-01-04 19:22:56 +03:00
|
|
|
void shutdown();
|
2020-01-05 23:06:42 +03:00
|
|
|
void pauseSync();
|
|
|
|
void resumeSync();
|
2019-12-02 16:10:18 +03:00
|
|
|
|
2019-12-30 13:52:07 +03:00
|
|
|
Q_INVOKABLE void hideWindow();
|
|
|
|
Q_INVOKABLE void showWindow();
|
2020-05-20 00:25:21 +03:00
|
|
|
Q_INVOKABLE void openShareDialog(const QString &sharePath, const QString &localPath);
|
2019-12-30 13:52:07 +03:00
|
|
|
|
2020-01-12 19:52:51 +03:00
|
|
|
public slots:
|
2020-01-15 18:42:06 +03:00
|
|
|
void slotNewUserSelected();
|
2019-12-02 16:10:18 +03:00
|
|
|
|
|
|
|
private:
|
2020-01-11 19:34:56 +03:00
|
|
|
static Systray *_instance;
|
|
|
|
Systray();
|
2020-05-20 20:36:57 +03:00
|
|
|
|
|
|
|
QScreen *currentScreen() const;
|
|
|
|
QRect currentScreenRect() const;
|
2020-05-20 22:36:08 +03:00
|
|
|
QPoint computeWindowReferencePoint() const;
|
2020-06-25 13:46:16 +03:00
|
|
|
QPoint calcTrayIconCenter() const;
|
|
|
|
TaskBarPosition taskbarOrientation() const;
|
|
|
|
QRect taskbarGeometry() const;
|
|
|
|
QPoint computeWindowPosition(int width, int height) const;
|
2020-05-20 20:36:57 +03:00
|
|
|
|
2020-05-28 17:59:24 +03:00
|
|
|
bool _isOpen = false;
|
|
|
|
bool _syncIsPaused = false;
|
2020-06-24 18:24:52 +03:00
|
|
|
QPointer<QQmlApplicationEngine> _trayEngine;
|
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
|