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"
|
2021-10-25 12:37:58 +03:00
|
|
|
#include "tray/usermodel.h"
|
2013-03-20 13:03:49 +04:00
|
|
|
|
2021-11-17 12:36:05 +03:00
|
|
|
#include <QQmlNetworkAccessManagerFactory>
|
|
|
|
|
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;
|
2020-11-30 21:24:41 +03:00
|
|
|
class QWindow;
|
2021-06-21 14:33:22 +03:00
|
|
|
class QQuickWindow;
|
2022-02-04 05:39:38 +03:00
|
|
|
class QGuiApplication;
|
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
|
|
|
|
2021-11-17 12:36:05 +03:00
|
|
|
class AccessManagerFactory : public QQmlNetworkAccessManagerFactory
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AccessManagerFactory();
|
|
|
|
|
|
|
|
QNetworkAccessManager* create(QObject *parent) override;
|
|
|
|
};
|
|
|
|
|
2022-05-10 17:12:15 +03:00
|
|
|
#ifdef Q_OS_MACOS
|
2022-05-17 20:20:04 +03:00
|
|
|
enum MacNotificationAuthorizationOptions {
|
|
|
|
Default = 0,
|
|
|
|
Provisional
|
|
|
|
};
|
|
|
|
|
2022-05-10 17:12:15 +03:00
|
|
|
void setUserNotificationCenterDelegate();
|
2022-05-17 20:20:04 +03:00
|
|
|
void checkNotificationAuth(MacNotificationAuthorizationOptions authOptions = MacNotificationAuthorizationOptions::Provisional);
|
2022-05-10 17:12:15 +03:00
|
|
|
void registerNotificationCategories(const QString &localizedDownloadString);
|
2015-02-07 20:23:09 +03:00
|
|
|
bool canOsXSendUserNotification();
|
|
|
|
void sendOsXUserNotification(const QString &title, const QString &message);
|
2022-05-10 17:12:15 +03:00
|
|
|
void sendOsXUpdateNotification(const QString &title, const QString &message, const QUrl &webUrl);
|
2022-11-08 21:18:41 +03:00
|
|
|
void sendOsXTalkNotification(const QString &title, const QString &message, const QString &token, const QString &replyTo, const AccountStatePtr accountState);
|
2020-11-30 21:24:41 +03:00
|
|
|
void setTrayWindowLevelAndVisibleOnAllSpaces(QWindow *window);
|
2022-09-09 15:23:39 +03:00
|
|
|
double menuBarThickness();
|
2015-02-07 20:23:09 +03:00
|
|
|
#endif
|
|
|
|
|
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
|
2021-06-21 14:33:22 +03:00
|
|
|
|
|
|
|
Q_PROPERTY(QString windowTitle READ windowTitle CONSTANT)
|
|
|
|
Q_PROPERTY(bool useNormalWindow READ useNormalWindow CONSTANT)
|
2022-06-30 17:20:13 +03:00
|
|
|
Q_PROPERTY(bool syncIsPaused READ syncIsPaused WRITE setSyncIsPaused NOTIFY syncIsPausedChanged)
|
|
|
|
Q_PROPERTY(bool isOpen READ isOpen WRITE setIsOpen NOTIFY isOpenChanged)
|
2021-06-21 14:33:22 +03:00
|
|
|
|
2013-03-20 13:03:49 +04:00
|
|
|
public:
|
2020-01-11 19:34:56 +03:00
|
|
|
static Systray *instance();
|
2021-08-17 13:39:31 +03:00
|
|
|
~Systray() override = default;
|
2020-01-11 19:34:56 +03:00
|
|
|
|
2020-05-20 11:12:55 +03:00
|
|
|
enum class TaskBarPosition { Bottom, Left, Top, Right };
|
|
|
|
Q_ENUM(TaskBarPosition);
|
2022-06-30 18:42:39 +03:00
|
|
|
|
2022-04-22 01:32:01 +03:00
|
|
|
enum class NotificationPosition { Default, TopLeft, TopRight, BottomLeft, BottomRight };
|
|
|
|
Q_ENUM(NotificationPosition);
|
2020-05-20 11:12:55 +03:00
|
|
|
|
2022-06-29 20:57:52 +03:00
|
|
|
enum class WindowPosition { Default, Center };
|
|
|
|
Q_ENUM(WindowPosition);
|
|
|
|
|
2022-07-25 19:57:18 +03:00
|
|
|
enum class FileDetailsPage { Activity, Sharing };
|
|
|
|
Q_ENUM(FileDetailsPage);
|
|
|
|
|
2022-06-30 17:20:13 +03:00
|
|
|
Q_REQUIRED_RESULT QString windowTitle() const;
|
|
|
|
Q_REQUIRED_RESULT bool useNormalWindow() const;
|
|
|
|
|
|
|
|
Q_REQUIRED_RESULT bool syncIsPaused() const;
|
|
|
|
Q_REQUIRED_RESULT bool isOpen() const;
|
2019-12-30 16:14:28 +03:00
|
|
|
|
2022-10-01 02:16:52 +03:00
|
|
|
bool raiseDialogs();
|
2022-07-25 19:57:18 +03:00
|
|
|
|
2019-12-03 00:45:14 +03:00
|
|
|
signals:
|
|
|
|
void currentUserChanged();
|
2020-07-07 00:17:33 +03:00
|
|
|
void openAccountWizard();
|
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();
|
2019-12-02 16:10:18 +03:00
|
|
|
|
2022-10-24 17:00:50 +03:00
|
|
|
void showFileDetailsPage(const QString &fileLocalPath, const OCC::Systray::FileDetailsPage page);
|
2022-01-23 21:10:16 +03:00
|
|
|
void sendChatMessage(const QString &token, const QString &message, const QString &replyTo);
|
2022-04-20 14:44:19 +03:00
|
|
|
void showErrorMessageDialog(const QString &error);
|
2019-12-30 13:52:07 +03:00
|
|
|
|
2022-06-30 17:20:13 +03:00
|
|
|
void syncIsPausedChanged();
|
|
|
|
void isOpenChanged();
|
|
|
|
|
2020-01-12 19:52:51 +03:00
|
|
|
public slots:
|
2022-10-14 19:59:08 +03:00
|
|
|
void setTrayEngine(QQmlApplicationEngine *trayEngine);
|
|
|
|
void create();
|
|
|
|
|
2022-10-24 17:00:50 +03:00
|
|
|
void showMessage(const QString &title, const QString &message, QSystemTrayIcon::MessageIcon icon = Information);
|
2022-10-14 19:59:08 +03:00
|
|
|
void showUpdateMessage(const QString &title, const QString &message, const QUrl &webUrl);
|
2022-11-08 21:18:41 +03:00
|
|
|
void showTalkMessage(const QString &title, const QString &message, const QString &replyTo, const QString &token, const AccountStatePtr &accountState);
|
2022-10-14 19:59:08 +03:00
|
|
|
void setToolTip(const QString &tip);
|
|
|
|
|
2022-10-24 17:00:50 +03:00
|
|
|
void createCallDialog(const OCC::Activity &callNotification, const OCC::AccountStatePtr accountState);
|
2022-10-14 19:59:08 +03:00
|
|
|
void createEditFileLocallyLoadingDialog(const QString &fileName);
|
|
|
|
void destroyEditFileLocallyLoadingDialog();
|
|
|
|
|
2022-07-08 17:49:27 +03:00
|
|
|
void slotCurrentUserChanged();
|
2022-06-30 18:42:39 +03:00
|
|
|
|
|
|
|
void forceWindowInit(QQuickWindow *window) const;
|
2022-06-29 20:57:52 +03:00
|
|
|
void positionWindowAtTray(QQuickWindow *window) const;
|
|
|
|
void positionWindowAtScreenCenter(QQuickWindow *window) const;
|
2022-06-30 18:42:39 +03:00
|
|
|
void positionNotificationWindow(QQuickWindow *window) const;
|
|
|
|
|
2022-09-14 13:25:56 +03:00
|
|
|
// Do not use this for QQuickWindow components managed by the QML engine,
|
|
|
|
// only for those managed by the C++ engine
|
|
|
|
void destroyDialog(QQuickWindow *window) const;
|
|
|
|
|
2022-10-24 17:00:50 +03:00
|
|
|
void showWindow(OCC::Systray::WindowPosition position = OCC::Systray::WindowPosition::Default);
|
2022-06-30 18:42:39 +03:00
|
|
|
void hideWindow();
|
2019-12-02 16:10:18 +03:00
|
|
|
|
2022-06-30 17:20:13 +03:00
|
|
|
void setSyncIsPaused(const bool syncIsPaused);
|
|
|
|
void setIsOpen(const bool isOpen);
|
|
|
|
|
2022-07-25 19:57:18 +03:00
|
|
|
void createShareDialog(const QString &localPath);
|
|
|
|
void createFileActivityDialog(const QString &localPath);
|
|
|
|
|
2020-10-08 17:32:10 +03:00
|
|
|
private slots:
|
|
|
|
void slotUnpauseAllFolders();
|
|
|
|
void slotPauseAllFolders();
|
|
|
|
|
2019-12-02 16:10:18 +03:00
|
|
|
private:
|
2022-10-01 16:52:53 +03:00
|
|
|
// Argument allows user to specify a specific dialog to be raised
|
|
|
|
bool raiseFileDetailDialogs(const QString &localPath = {});
|
2020-10-08 17:32:10 +03:00
|
|
|
void setPauseOnAllFoldersHelper(bool pause);
|
|
|
|
|
2020-01-11 19:34:56 +03:00
|
|
|
static Systray *_instance;
|
|
|
|
Systray();
|
2020-05-20 20:36:57 +03:00
|
|
|
|
2022-05-05 13:10:17 +03:00
|
|
|
void setupContextMenu();
|
2022-07-25 19:57:18 +03:00
|
|
|
void createFileDetailsDialog(const QString &localPath);
|
2022-05-05 13:10:17 +03:00
|
|
|
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QScreen *currentScreen() const;
|
|
|
|
[[nodiscard]] QRect currentScreenRect() const;
|
|
|
|
[[nodiscard]] QPoint computeWindowReferencePoint() const;
|
|
|
|
[[nodiscard]] QPoint computeNotificationReferencePoint(int spacing = 20, NotificationPosition position = NotificationPosition::Default) const;
|
|
|
|
[[nodiscard]] QPoint calcTrayIconCenter() const;
|
|
|
|
[[nodiscard]] TaskBarPosition taskbarOrientation() const;
|
|
|
|
[[nodiscard]] QRect taskbarGeometry() const;
|
|
|
|
[[nodiscard]] QRect computeWindowRect(int spacing, const QPoint &topLeft, const QPoint &bottomRight) const;
|
|
|
|
[[nodiscard]] QPoint computeWindowPosition(int width, int height) const;
|
|
|
|
[[nodiscard]] QPoint computeNotificationPosition(int width, int height, int spacing = 20, NotificationPosition position = NotificationPosition::Default) const;
|
2020-05-20 20:36:57 +03:00
|
|
|
|
2020-05-28 17:59:24 +03:00
|
|
|
bool _isOpen = false;
|
2020-07-17 16:18:03 +03:00
|
|
|
bool _syncIsPaused = true;
|
2020-06-24 18:24:52 +03:00
|
|
|
QPointer<QQmlApplicationEngine> _trayEngine;
|
2022-05-05 13:10:17 +03:00
|
|
|
QPointer<QMenu> _contextMenu;
|
2022-06-30 18:42:39 +03:00
|
|
|
QSharedPointer<QQuickWindow> _trayWindow;
|
2021-11-17 12:36:05 +03:00
|
|
|
|
|
|
|
AccessManagerFactory _accessManagerFactory;
|
2022-04-22 01:32:01 +03:00
|
|
|
|
|
|
|
QSet<qlonglong> _callsAlreadyNotified;
|
2022-09-28 14:26:57 +03:00
|
|
|
QPointer<QObject> _editFileLocallyLoadingDialog;
|
2022-10-01 16:52:53 +03:00
|
|
|
QVector<QQuickWindow*> _fileDetailDialogs;
|
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
|