/* * Copyright (C) by Duncan Mac-Vicar P. * * 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 APPLICATION_H #define APPLICATION_H #include #include #include #include #include #include "3rdparty/qtsingleapplication/qtsingleapplication.h" #include "syncresult.h" #include "logbrowser.h" #include "owncloudgui.h" #include "connectionvalidator.h" #include "progressdispatcher.h" #include "clientproxy.h" #include "folderman.h" class QMessageBox; class QSystemTrayIcon; class QSocket; namespace CrashReporter { class Handler; } namespace OCC { Q_DECLARE_LOGGING_CATEGORY(lcApplication) class Theme; class Folder; class SslErrorDialog; /** * @brief The Application class * @ingroup gui */ class Application : public SharedTools::QtSingleApplication { Q_OBJECT public: explicit Application(int &argc, char **argv); ~Application() override; bool debugMode(); void showSettingsDialog(); ownCloudGui *gui() const; QString displayLanguage() const; public slots: // TODO: this should not be public void slotownCloudWizardDone(int); void slotCrash(); void slotCrashEnforce(); void slotCrashFatal(); void slotShowGuiMessage(const QString &title, const QString &message); /** * Will download a virtual file, and open the result. * The argument is the filename of the virtual file (including the extension) */ void openVirtualFile(const QString &filename); /// Attempt to show() the tray icon again. Used if no systray was available initially. void tryTrayAgain(); protected: void parseOptions(const QStringList &); void setupTranslations(); void setupLogging(); bool event(QEvent *event) override; signals: void folderRemoved(); void folderStateChanged(Folder *); protected slots: void slotParseMessage(const QString &, QObject *); void slotCheckConnection(); void slotUseMonoIconsChanged(bool); void slotCleanup(); void slotAccountStateAdded(AccountState *accountState); void slotAccountStateRemoved(const AccountStatePtr &accountState); void slotSystemOnlineConfigurationChanged(QNetworkConfiguration); private: /** * Maybe a newer version of the client was used with this config file: * if so, backup, confirm with user and remove the config that can't be read. */ bool configVersionMigration(); QPointer _gui; Theme *_theme; // options from command line: bool _showSettings = false; bool _quitInstance = false; QString _logFile; QString _logDir; std::chrono::hours _logExpire; bool _logFlush; bool _logDebug; bool _userTriggeredConnect; bool _debugMode; QString _userEnforcedLanguage; QString _displayLanguage; ClientProxy _proxy; QNetworkConfigurationManager _networkConfigurationManager; QTimer _checkConnectionTimer; #if defined(WITH_CRASHREPORTER) QScopedPointer _crashHandler; #endif QScopedPointer _folderManager; }; inline Application *ocApp() { auto instance = qobject_cast(qApp); OC_ENFORCE(instance); return instance; } } // namespace OCC #endif // APPLICATION_H