nheko/include/MainWindow.h

106 lines
2.9 KiB
C
Raw Normal View History

2017-04-06 01:06:42 +02: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/>.
*/
#pragma once
2017-04-06 01:06:42 +02:00
#include <QMainWindow>
#include <QSharedPointer>
2017-10-28 14:46:39 +02:00
#include <QStackedWidget>
#include <QSystemTrayIcon>
2017-04-06 01:06:42 +02:00
2017-10-28 14:46:39 +02:00
class ChatPage;
class LoadingIndicator;
class LoginPage;
class MatrixClient;
class OverlayModal;
class RegisterPage;
class SnackBar;
class TrayIcon;
2017-11-01 23:41:13 +01:00
class UserSettingsPage;
class UserSettings;
2017-10-28 14:46:39 +02:00
class WelcomePage;
2017-04-06 01:06:42 +02:00
class MainWindow : public QMainWindow
{
2017-09-10 11:58:00 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
2017-09-10 11:58:00 +02:00
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
static MainWindow *instance();
void saveCurrentWindowSize();
2017-05-21 15:36:06 +02:00
protected:
2017-09-10 11:58:00 +02:00
void closeEvent(QCloseEvent *event);
2017-05-21 15:36:06 +02:00
private slots:
2017-09-10 11:58:00 +02:00
// Handle interaction with the tray icon.
void iconActivated(QSystemTrayIcon::ActivationReason reason);
2017-05-21 15:36:06 +02:00
2017-09-10 11:58:00 +02:00
// Show the welcome page in the main window.
void showWelcomePage();
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
// Show the login page in the main window.
void showLoginPage();
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
// Show the register page in the main window.
void showRegisterPage();
2017-11-01 23:41:13 +01:00
void showUserSettingsPage();
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02: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 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
void removeOverlayProgressBar();
2017-04-06 01:06:42 +02:00
private:
2017-09-10 11:58:00 +02:00
bool hasActiveUser();
void restoreWindowSize();
2017-09-10 11:58:00 +02:00
static MainWindow *instance_;
2017-09-10 11:58:00 +02:00
// The initial welcome screen.
WelcomePage *welcome_page_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
// The login screen.
LoginPage *login_page_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
// The register page.
RegisterPage *register_page_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
// A stacked widget that handles the transitions between widgets.
2017-09-30 16:05:05 +02:00
QStackedWidget *pageStack_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
// The main chat area.
ChatPage *chat_page_;
2017-11-01 23:41:13 +01:00
UserSettingsPage *userSettingsPage_;
QSharedPointer<UserSettings> userSettings_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
// Used to hide undefined states between page transitions.
2017-10-07 19:09:34 +02:00
QSharedPointer<OverlayModal> progressModal_;
QSharedPointer<LoadingIndicator> spinner_;
2017-09-10 11:58:00 +02:00
// Matrix Client API provider.
QSharedPointer<MatrixClient> client_;
2017-05-21 15:36:06 +02:00
2017-09-10 11:58:00 +02:00
// Tray icon that shows the unread message count.
TrayIcon *trayIcon_;
2017-10-08 21:38:38 +02:00
// Notifications display.
QSharedPointer<SnackBar> snackBar_;
2017-04-06 01:06:42 +02:00
};