2017-04-06 02:06:42 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* 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 3 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
#include <QMainWindow>
|
2017-04-11 17:45:47 +03:00
|
|
|
#include <QSharedPointer>
|
2017-10-28 15:46:39 +03:00
|
|
|
#include <QStackedWidget>
|
|
|
|
#include <QSystemTrayIcon>
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
class ChatPage;
|
|
|
|
class LoadingIndicator;
|
|
|
|
class LoginPage;
|
|
|
|
class MatrixClient;
|
|
|
|
class OverlayModal;
|
|
|
|
class RegisterPage;
|
|
|
|
class SnackBar;
|
|
|
|
class TrayIcon;
|
2017-11-02 01:41:13 +03:00
|
|
|
class UserSettingsPage;
|
|
|
|
class UserSettings;
|
2017-10-28 15:46:39 +03:00
|
|
|
class WelcomePage;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
2017-09-10 12:58:00 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
public:
|
2017-09-10 12:58:00 +03:00
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
~MainWindow();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
static MainWindow *instance();
|
|
|
|
void saveCurrentWindowSize();
|
2017-06-02 18:04:51 +03:00
|
|
|
|
2017-05-21 16:36:06 +03:00
|
|
|
protected:
|
2017-09-10 12:58:00 +03:00
|
|
|
void closeEvent(QCloseEvent *event);
|
2017-10-20 21:39:05 +03:00
|
|
|
void keyPressEvent(QKeyEvent *event);
|
2017-05-21 16:36:06 +03:00
|
|
|
|
2017-04-26 02:23:12 +03:00
|
|
|
private slots:
|
2017-09-10 12:58:00 +03:00
|
|
|
// Handle interaction with the tray icon.
|
|
|
|
void iconActivated(QSystemTrayIcon::ActivationReason reason);
|
2017-05-21 16:36:06 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// Show the welcome page in the main window.
|
|
|
|
void showWelcomePage();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// Show the login page in the main window.
|
|
|
|
void showLoginPage();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// Show the register page in the main window.
|
|
|
|
void showRegisterPage();
|
2017-11-02 01:41:13 +03:00
|
|
|
void showUserSettingsPage();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// Show the chat page and start communicating with the given access token.
|
|
|
|
void showChatPage(QString user_id, QString home_server, QString token);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
void removeOverlayProgressBar();
|
2017-04-26 02:23:12 +03:00
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
private:
|
2017-09-10 12:58:00 +03:00
|
|
|
bool hasActiveUser();
|
|
|
|
void restoreWindowSize();
|
2017-05-22 18:03:37 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
static MainWindow *instance_;
|
2017-06-02 18:04:51 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// The initial welcome screen.
|
|
|
|
WelcomePage *welcome_page_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// The login screen.
|
|
|
|
LoginPage *login_page_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// The register page.
|
|
|
|
RegisterPage *register_page_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// A stacked widget that handles the transitions between widgets.
|
2017-09-30 17:05:05 +03:00
|
|
|
QStackedWidget *pageStack_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// The main chat area.
|
|
|
|
ChatPage *chat_page_;
|
2017-11-02 01:41:13 +03:00
|
|
|
UserSettingsPage *userSettingsPage_;
|
|
|
|
QSharedPointer<UserSettings> userSettings_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// Used to hide undefined states between page transitions.
|
2017-10-07 20:09:34 +03:00
|
|
|
QSharedPointer<OverlayModal> progressModal_;
|
|
|
|
QSharedPointer<LoadingIndicator> spinner_;
|
2017-04-26 02:23:12 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// Matrix Client API provider.
|
|
|
|
QSharedPointer<MatrixClient> client_;
|
2017-05-21 16:36:06 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
// Tray icon that shows the unread message count.
|
|
|
|
TrayIcon *trayIcon_;
|
2017-10-08 22:38:38 +03:00
|
|
|
|
|
|
|
// Notifications display.
|
|
|
|
QSharedPointer<SnackBar> snackBar_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|