/* * Copyright (C) by Klaas Freitag * * 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 OWNCLOUDGUI_H #define OWNCLOUDGUI_H #include "systray.h" #include "connectionvalidator.h" #include "progressdispatcher.h" #include #include #include #include #include #include #include namespace OCC { class Folder; class SettingsDialog; class SettingsDialogMac; class ShareDialog; class Application; class LogBrowser; class AccountState; /** * @brief The ownCloudGui class * @ingroup gui */ class ownCloudGui : public QObject { Q_OBJECT public: explicit ownCloudGui(Application *parent = 0); bool checkAccountExists(bool openSettings); static void raiseDialog(QWidget *raiseWidget); static QSize settingsDialogSize() { return QSize(800, 500); } void setupOverlayIcons(); /// Whether the tray menu is visible bool contextMenuVisible() const; signals: void setupProxy(); public slots: void setupContextMenu(); void updateContextMenu(); void updateContextMenuNeeded(); void slotContextMenuAboutToShow(); void slotContextMenuAboutToHide(); void slotComputeOverallSyncStatus(); void slotShowTrayMessage(const QString &title, const QString &msg); void slotShowOptionalTrayMessage(const QString &title, const QString &msg); void slotFolderOpenAction( const QString& alias ); void slotRebuildRecentMenus(); void slotUpdateProgress(const QString &folder, const ProgressInfo& progress); void slotShowGuiMessage(const QString &title, const QString &message); void slotFoldersChanged(); void slotShowSettings(); void slotShowSyncProtocol(); void slotShutdown(); void slotSyncStateChange(Folder*); void slotTrayClicked( QSystemTrayIcon::ActivationReason reason ); void slotToggleLogBrowser(); void slotOpenOwnCloud(); void slotOpenSettingsDialog(); void slotHelp(); void slotOpenPath(const QString& path); void slotAccountStateChanged(); void slotTrayMessageIfServerUnsupported(Account *account); void slotShowShareDialog(const QString &sharePath, const QString &localPath, bool resharingAllowed); void slotRemoveDestroyedShareDialogs(); private slots: void slotDisplayIdle(); void slotLogin(); void slotLogout(); void slotUnpauseAllFolders(); void slotPauseAllFolders(); private: void setPauseOnAllFoldersHelper(bool pause); void setupActions(); void addAccountContextMenu(AccountStatePtr accountState, QMenu* menu, bool separateMenu); QPointer _tray; #if defined(Q_OS_MAC) QPointer _settingsDialog; #else QPointer _settingsDialog; #endif QPointer_logBrowser; // tray's menu QScopedPointer _contextMenu; // Manually tracking whether the context menu is visible, but only works // on OSX because aboutToHide is not reliable everywhere. bool _contextMenuVisibleOsx; QMenu *_recentActionsMenu; QVector _accountMenus; bool _qdbusmenuWorkaround; QTimer _workaroundBatchTrayUpdate; QMap > _shareDialogs; QAction *_actionLogin; QAction *_actionLogout; QAction *_actionSettings; QAction *_actionStatus; QAction *_actionEstimate; QAction *_actionRecent; QAction *_actionHelp; QAction *_actionQuit; QAction *_actionCrash; QList _recentItemsActions; QSignalMapper *_folderOpenActionMapper; QSignalMapper *_recentItemsMapper; Application *_app; }; } // namespace OCC #endif // OWNCLOUDGUI_H