nheko/include/MainWindow.h

163 lines
5.4 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
2018-03-04 15:12:28 +01:00
#include <functional>
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
2018-01-13 16:52:23 +01:00
#include "LoginPage.h"
#include "RegisterPage.h"
#include "UserSettingsPage.h"
#include "WelcomePage.h"
2017-10-28 14:46:39 +02:00
class ChatPage;
class LoadingIndicator;
class MatrixClient;
class OverlayModal;
class SnackBar;
class TrayIcon;
2017-11-01 23:41:13 +01:00
class UserSettings;
2017-04-06 01:06:42 +02:00
namespace mtx {
namespace requests {
struct CreateRoom;
}
}
namespace dialogs {
class CreateRoom;
class InviteUsers;
class JoinRoom;
class LeaveRoom;
class Logout;
2018-05-01 18:35:28 +02:00
class MemberList;
class ReCaptcha;
2018-04-30 20:41:47 +02:00
class RoomSettings;
}
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);
2017-04-06 01:06:42 +02:00
2018-01-03 17:05:49 +01:00
static MainWindow *instance() { return instance_; };
2017-09-10 11:58:00 +02:00
void saveCurrentWindowSize();
void openLeaveRoomDialog(const QString &room_id = "");
void openInviteUsersDialog(std::function<void(const QStringList &invitees)> callback);
void openCreateRoomDialog(
std::function<void(const mtx::requests::CreateRoom &request)> callback);
void openJoinRoomDialog(std::function<void(const QString &room_id)> callback);
void openLogoutDialog(std::function<void()> callback);
2018-04-30 20:41:47 +02:00
void openRoomSettings(const QString &room_id = "");
2018-05-01 18:35:28 +02:00
void openMemberListDialog(const QString &room_id = "");
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:
2018-01-13 16:52:23 +01:00
//! Handle interaction with the tray icon.
2017-09-10 11:58:00 +02:00
void iconActivated(QSystemTrayIcon::ActivationReason reason);
2017-05-21 15:36:06 +02:00
2018-01-13 16:52:23 +01:00
//! Show the welcome page in the main window.
void showWelcomePage()
{
removeOverlayProgressBar();
pageStack_->setCurrentWidget(welcome_page_);
}
2018-01-13 16:52:23 +01:00
//! Show the login page in the main window.
void showLoginPage() { pageStack_->setCurrentWidget(login_page_); }
2017-04-06 01:06:42 +02:00
2018-01-13 16:52:23 +01:00
//! Show the register page in the main window.
void showRegisterPage() { pageStack_->setCurrentWidget(register_page_); }
2017-04-06 01:06:42 +02:00
2018-01-13 16:52:23 +01:00
//! Show user settings page.
void showUserSettingsPage() { pageStack_->setCurrentWidget(userSettingsPage_); }
2017-04-06 01:06:42 +02:00
2018-01-13 16:52:23 +01:00
//! Show the chat page and start communicating with the given access token.
2017-09-10 11:58:00 +02:00
void showChatPage(QString user_id, QString home_server, QString token);
2017-04-06 01:06:42 +02:00
void showOverlayProgressBar();
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();
//! Check if there is an open dialog.
bool hasActiveDialogs() const;
2017-09-10 11:58:00 +02:00
static MainWindow *instance_;
2018-01-13 16:52:23 +01:00
//! The initial welcome screen.
2017-09-10 11:58:00 +02:00
WelcomePage *welcome_page_;
2018-01-13 16:52:23 +01:00
//! The login screen.
2017-09-10 11:58:00 +02:00
LoginPage *login_page_;
2018-01-13 16:52:23 +01:00
//! The register page.
2017-09-10 11:58:00 +02:00
RegisterPage *register_page_;
2018-01-13 16:52:23 +01:00
//! A stacked widget that handles the transitions between widgets.
2017-09-30 16:05:05 +02:00
QStackedWidget *pageStack_;
2018-01-13 16:52:23 +01:00
//! The main chat area.
2017-09-10 11:58:00 +02:00
ChatPage *chat_page_;
2017-11-01 23:41:13 +01:00
UserSettingsPage *userSettingsPage_;
QSharedPointer<UserSettings> userSettings_;
2018-01-13 16:52:23 +01:00
//! Used to hide undefined states between page transitions.
2017-10-07 19:09:34 +02:00
QSharedPointer<OverlayModal> progressModal_;
QSharedPointer<LoadingIndicator> spinner_;
2018-01-13 16:52:23 +01:00
//! Matrix Client API provider.
2017-09-10 11:58:00 +02:00
QSharedPointer<MatrixClient> client_;
2018-01-13 16:52:23 +01:00
//! Tray icon that shows the unread message count.
2017-09-10 11:58:00 +02:00
TrayIcon *trayIcon_;
2018-01-13 16:52:23 +01:00
//! Notifications display.
2017-10-08 21:38:38 +02:00
QSharedPointer<SnackBar> snackBar_;
//! Leave room modal.
QSharedPointer<OverlayModal> leaveRoomModal_;
//! Leave room dialog.
QSharedPointer<dialogs::LeaveRoom> leaveRoomDialog_;
//! Invite users modal.
QSharedPointer<OverlayModal> inviteUsersModal_;
//! Invite users dialog.
QSharedPointer<dialogs::InviteUsers> inviteUsersDialog_;
//! Join room modal.
QSharedPointer<OverlayModal> joinRoomModal_;
//! Join room dialog.
QSharedPointer<dialogs::JoinRoom> joinRoomDialog_;
//! Create room modal.
QSharedPointer<OverlayModal> createRoomModal_;
//! Create room dialog.
QSharedPointer<dialogs::CreateRoom> createRoomDialog_;
//! Logout modal.
QSharedPointer<OverlayModal> logoutModal_;
//! Logout dialog.
QSharedPointer<dialogs::Logout> logoutDialog_;
2018-04-30 20:41:47 +02:00
//! Room settings modal.
QSharedPointer<OverlayModal> roomSettingsModal_;
//! Room settings dialog.
QSharedPointer<dialogs::RoomSettings> roomSettingsDialog_;
2018-05-01 18:35:28 +02:00
//! Member list modal.
QSharedPointer<OverlayModal> memberListModal_;
//! Member list dialog.
QSharedPointer<dialogs::MemberList> memberListDialog_;
2017-04-06 01:06:42 +02:00
};