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
|
|
|
|
2018-03-04 17:12:28 +03:00
|
|
|
#include <functional>
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2019-01-26 21:03:49 +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
|
|
|
|
2018-03-04 14:40:30 +03:00
|
|
|
namespace mtx {
|
|
|
|
namespace requests {
|
|
|
|
struct CreateRoom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-10 17:05:31 +03:00
|
|
|
namespace dialogs {
|
2018-03-04 14:40:30 +03:00
|
|
|
class CreateRoom;
|
|
|
|
class InviteUsers;
|
|
|
|
class JoinRoom;
|
2018-02-10 17:05:31 +03:00
|
|
|
class LeaveRoom;
|
2018-03-04 14:40:30 +03:00
|
|
|
class Logout;
|
2018-05-01 19:35:28 +03:00
|
|
|
class MemberList;
|
2018-03-12 23:23:26 +03:00
|
|
|
class ReCaptcha;
|
2021-02-10 18:52:42 +03:00
|
|
|
class RoomSettingsOld;
|
2018-02-10 17:05:31 +03:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2021-01-30 01:34:56 +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:
|
2020-11-10 05:28:41 +03:00
|
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2021-01-16 23:33:33 +03:00
|
|
|
static MainWindow *instance() { return instance_; }
|
2017-09-10 12:58:00 +03:00
|
|
|
void saveCurrentWindowSize();
|
2017-06-02 18:04:51 +03:00
|
|
|
|
2020-09-03 20:34:17 +03:00
|
|
|
void openLeaveRoomDialog(const QString &room_id);
|
2018-03-04 14:40:30 +03:00
|
|
|
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);
|
2018-08-31 09:10:47 +03:00
|
|
|
void openLogoutDialog();
|
2020-09-03 20:34:17 +03:00
|
|
|
void openMemberListDialog(const QString &room_id);
|
2018-08-11 13:50:56 +03:00
|
|
|
void openReadReceiptsDialog(const QString &event_id);
|
|
|
|
|
|
|
|
void hideOverlay();
|
|
|
|
void showSolidOverlayModal(QWidget *content,
|
|
|
|
QFlags<Qt::AlignmentFlag> flags = Qt::AlignCenter);
|
|
|
|
void showTransparentOverlayModal(QWidget *content,
|
|
|
|
QFlags<Qt::AlignmentFlag> flags = Qt::AlignTop |
|
|
|
|
Qt::AlignHCenter);
|
2018-02-10 17:05:31 +03:00
|
|
|
|
2017-05-21 16:36:06 +03:00
|
|
|
protected:
|
2018-07-04 00:05:05 +03:00
|
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
|
|
void showEvent(QShowEvent *event) override;
|
2021-01-27 01:23:28 +03:00
|
|
|
bool event(QEvent *event) override;
|
2017-05-21 16:36:06 +03:00
|
|
|
|
2017-04-26 02:23:12 +03:00
|
|
|
private slots:
|
2018-07-04 00:05:05 +03:00
|
|
|
//! Show or hide the sidebars based on window's size.
|
|
|
|
void adjustSideBars();
|
2018-01-13 18:52:23 +03:00
|
|
|
//! Handle interaction with the tray icon.
|
2017-09-10 12:58:00 +03:00
|
|
|
void iconActivated(QSystemTrayIcon::ActivationReason reason);
|
2017-05-21 16:36:06 +03:00
|
|
|
|
2018-01-13 18:52:23 +03:00
|
|
|
//! Show the welcome page in the main window.
|
2020-02-23 13:42:29 +03:00
|
|
|
void showWelcomePage();
|
2018-01-13 18:52:23 +03:00
|
|
|
|
|
|
|
//! Show the login page in the main window.
|
2020-02-23 13:42:29 +03:00
|
|
|
void showLoginPage();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-13 18:52:23 +03:00
|
|
|
//! Show the register page in the main window.
|
2020-02-23 13:42:29 +03:00
|
|
|
void showRegisterPage();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-13 18:52:23 +03:00
|
|
|
//! Show user settings page.
|
2020-02-23 13:42:29 +03:00
|
|
|
void showUserSettingsPage();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-13 18:52:23 +03:00
|
|
|
//! Show the chat page and start communicating with the given access token.
|
2018-06-09 16:03:14 +03:00
|
|
|
void showChatPage();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-02-18 23:22:26 +03:00
|
|
|
void showOverlayProgressBar();
|
2017-09-10 12:58:00 +03:00
|
|
|
void removeOverlayProgressBar();
|
2017-04-26 02:23:12 +03:00
|
|
|
|
2020-10-22 02:20:02 +03:00
|
|
|
virtual void setWindowTitle(int notificationCount);
|
|
|
|
|
2021-01-27 01:23:28 +03:00
|
|
|
signals:
|
|
|
|
void focusChanged(const bool focused);
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
private:
|
2019-01-26 21:03:49 +03:00
|
|
|
bool loadJdenticonPlugin();
|
|
|
|
|
2018-09-21 11:30:02 +03:00
|
|
|
void showDialog(QWidget *dialog);
|
2017-09-10 12:58:00 +03:00
|
|
|
bool hasActiveUser();
|
|
|
|
void restoreWindowSize();
|
2018-02-26 14:17:04 +03:00
|
|
|
//! Check if there is an open dialog.
|
|
|
|
bool hasActiveDialogs() const;
|
2018-07-11 20:55:13 +03:00
|
|
|
//! Check if the current page supports the "minimize to tray" functionality.
|
|
|
|
bool pageSupportsTray() const;
|
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
|
|
|
|
2018-01-13 18:52:23 +03:00
|
|
|
//! The initial welcome screen.
|
2017-09-10 12:58:00 +03:00
|
|
|
WelcomePage *welcome_page_;
|
2018-01-13 18:52:23 +03:00
|
|
|
//! The login screen.
|
2017-09-10 12:58:00 +03:00
|
|
|
LoginPage *login_page_;
|
2018-01-13 18:52:23 +03:00
|
|
|
//! The register page.
|
2017-09-10 12:58:00 +03:00
|
|
|
RegisterPage *register_page_;
|
2018-01-13 18:52:23 +03:00
|
|
|
//! A stacked widget that handles the transitions between widgets.
|
2017-09-30 17:05:05 +03:00
|
|
|
QStackedWidget *pageStack_;
|
2018-01-13 18:52:23 +03:00
|
|
|
//! The main chat area.
|
2017-09-10 12:58:00 +03:00
|
|
|
ChatPage *chat_page_;
|
2017-11-02 01:41:13 +03:00
|
|
|
UserSettingsPage *userSettingsPage_;
|
|
|
|
QSharedPointer<UserSettings> userSettings_;
|
2018-01-13 18:52:23 +03:00
|
|
|
//! Tray icon that shows the unread message count.
|
2017-09-10 12:58:00 +03:00
|
|
|
TrayIcon *trayIcon_;
|
2018-01-13 18:52:23 +03:00
|
|
|
//! Notifications display.
|
2018-08-11 13:50:56 +03:00
|
|
|
SnackBar *snackBar_ = nullptr;
|
|
|
|
//! Overlay modal used to project other widgets.
|
|
|
|
OverlayModal *modal_ = nullptr;
|
|
|
|
LoadingIndicator *spinner_ = nullptr;
|
2019-01-26 21:03:49 +03:00
|
|
|
|
|
|
|
JdenticonInterface *jdenticonInteface_ = nullptr;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|