matrixion/src/MainWindow.h

134 lines
3.5 KiB
C
Raw Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 02:06:42 +03:00
#pragma once
2017-04-06 02:06:42 +03:00
2018-03-04 17:12:28 +03:00
#include <functional>
2017-04-06 02:06:42 +03:00
#include <QMainWindow>
#include <QSharedPointer>
2017-10-28 15:46:39 +03:00
#include <QStackedWidget>
#include <QSystemTrayIcon>
2017-04-06 02:06:42 +03:00
2018-01-13 18:52:23 +03:00
#include "UserSettingsPage.h"
2018-08-11 13:50:56 +03:00
#include "ui/OverlayModal.h"
2018-01-13 18:52:23 +03:00
#include "jdenticoninterface.h"
2017-10-28 15:46:39 +03:00
class ChatPage;
2020-02-23 13:42:29 +03:00
class RegisterPage;
class LoginPage;
class WelcomePage;
2017-10-28 15:46:39 +03:00
class LoadingIndicator;
class OverlayModal;
class SnackBar;
class TrayIcon;
2017-11-02 01:41:13 +03:00
class UserSettings;
2017-04-06 02:06:42 +03:00
namespace mtx {
namespace requests {
struct CreateRoom;
}
}
namespace dialogs {
class CreateRoom;
class InviteUsers;
class Logout;
2018-05-01 19:35:28 +03:00
class MemberList;
class ReCaptcha;
}
2017-04-06 02:06:42 +03:00
class MainWindow : public QMainWindow
{
2021-09-18 01:22:33 +03:00
Q_OBJECT
2017-04-06 02:06:42 +03:00
2021-09-18 01:22:33 +03:00
Q_PROPERTY(int x READ x CONSTANT)
Q_PROPERTY(int y READ y CONSTANT)
Q_PROPERTY(int width READ width CONSTANT)
Q_PROPERTY(int height READ height CONSTANT)
2021-01-16 23:33:33 +03:00
2017-04-06 02:06:42 +03:00
public:
2021-09-18 01:22:33 +03:00
explicit MainWindow(QWidget *parent = nullptr);
2017-04-06 02:06:42 +03:00
2021-09-18 01:22:33 +03:00
static MainWindow *instance() { return instance_; }
void saveCurrentWindowSize();
2021-09-18 01:22:33 +03:00
void openCreateRoomDialog(
std::function<void(const mtx::requests::CreateRoom &request)> callback);
void openJoinRoomDialog(std::function<void(const QString &room_id)> callback);
2021-09-25 04:32:06 +03:00
void openLogoutDialog();
2018-08-11 13:50:56 +03:00
2021-09-18 01:22:33 +03:00
void hideOverlay();
void showSolidOverlayModal(QWidget *content, QFlags<Qt::AlignmentFlag> flags = Qt::AlignCenter);
void showTransparentOverlayModal(QWidget *content,
QFlags<Qt::AlignmentFlag> flags = Qt::AlignTop |
Qt::AlignHCenter);
2017-05-21 16:36:06 +03:00
protected:
2021-09-18 01:22:33 +03:00
void closeEvent(QCloseEvent *event) override;
bool event(QEvent *event) override;
2017-05-21 16:36:06 +03:00
private slots:
2021-09-18 01:22:33 +03:00
//! Handle interaction with the tray icon.
void iconActivated(QSystemTrayIcon::ActivationReason reason);
2017-05-21 16:36:06 +03:00
2021-09-18 01:22:33 +03:00
//! Show the welcome page in the main window.
void showWelcomePage();
2018-01-13 18:52:23 +03:00
2021-09-18 01:22:33 +03:00
//! Show the login page in the main window.
void showLoginPage();
2017-04-06 02:06:42 +03:00
2021-09-18 01:22:33 +03:00
//! Show the register page in the main window.
void showRegisterPage();
2017-04-06 02:06:42 +03:00
2021-09-18 01:22:33 +03:00
//! Show user settings page.
void showUserSettingsPage();
2017-04-06 02:06:42 +03:00
2021-09-18 01:22:33 +03:00
//! Show the chat page and start communicating with the given access token.
void showChatPage();
2017-04-06 02:06:42 +03:00
2021-09-18 01:22:33 +03:00
void showOverlayProgressBar();
void removeOverlayProgressBar();
2021-09-18 01:22:33 +03:00
virtual void setWindowTitle(int notificationCount);
2020-10-22 02:20:02 +03:00
signals:
2021-09-18 01:22:33 +03:00
void focusChanged(const bool focused);
void reload();
2017-04-06 02:06:42 +03:00
private:
2021-09-18 01:22:33 +03:00
void showDialog(QWidget *dialog);
bool hasActiveUser();
void restoreWindowSize();
//! Check if there is an open dialog.
bool hasActiveDialogs() const;
//! Check if the current page supports the "minimize to tray" functionality.
bool pageSupportsTray() const;
static MainWindow *instance_;
//! The initial welcome screen.
WelcomePage *welcome_page_;
//! The login screen.
LoginPage *login_page_;
//! The register page.
RegisterPage *register_page_;
//! A stacked widget that handles the transitions between widgets.
QStackedWidget *pageStack_;
//! The main chat area.
ChatPage *chat_page_;
UserSettingsPage *userSettingsPage_;
QSharedPointer<UserSettings> userSettings_;
//! Tray icon that shows the unread message count.
TrayIcon *trayIcon_;
//! Notifications display.
SnackBar *snackBar_ = nullptr;
//! Overlay modal used to project other widgets.
OverlayModal *modal_ = nullptr;
LoadingIndicator *spinner_ = nullptr;
2017-04-06 02:06:42 +03:00
};