/* Copyright © 2015 by The qTox Project Contributors This file is part of qTox, a Qt-based graphical interface for Tox. qTox is libre 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 3 of the License, or (at your option) any later version. qTox 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. You should have received a copy of the GNU General Public License along with qTox. If not, see . */ #ifndef NEXUS_H #define NEXUS_H #include class Widget; class Profile; class LoginScreen; class Core; #ifdef Q_OS_MAC class QMenuBar; class QMenu; class QAction; class QWindow; class QActionGroup; class QSignalMapper; #endif class Nexus : public QObject { Q_OBJECT public: void start(); void showMainGUI(); void quit(); bool isRunning(); static Nexus& getInstance(); static void destroyInstance(); static Core* getCore(); static Profile* getProfile(); static void setProfile(Profile* profile); static Widget* getDesktopGUI(); static QString getSupportedImageFilter(); static bool tryRemoveFile(const QString& filepath); public slots: void showLogin(); void showLoginLater(); #ifdef Q_OS_MAC public: QMenuBar* globalMenuBar; QMenu* viewMenu; QMenu* windowMenu; QAction* minimizeAction; QAction* fullscreenAction; QAction* frontAction; QMenu* dockMenu; public slots: void retranslateUi(); void onWindowStateChanged(Qt::WindowStates state); void updateWindows(); void updateWindowsClosed(); void updateWindowsStates(); void onOpenWindow(QObject* object); void toggleFullscreen(); void bringAllToFront(); private: void updateWindowsArg(QWindow* closedWindow); QSignalMapper* windowMapper; QActionGroup* windowActions = nullptr; #endif private slots: void onLastWindowClosed(); private: explicit Nexus(QObject* parent = 0); ~Nexus(); private: Profile* profile; Widget* widget; LoginScreen* loginScreen; bool running; bool quitOnLastWindowClosed; }; #endif // NEXUS_H