2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2023-01-02 06:25:33 +03:00
|
|
|
// SPDX-FileCopyrightText: 2023 Nheko Contributors
|
2021-03-05 02:35:15 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2017-04-06 02:06:42 +03:00
|
|
|
|
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>
|
|
|
|
|
2022-05-07 19:53:16 +03:00
|
|
|
#include <QHash>
|
2022-01-12 21:09:46 +03:00
|
|
|
#include <QQuickView>
|
2017-04-11 17:45:47 +03:00
|
|
|
#include <QSharedPointer>
|
2017-10-28 15:46:39 +03:00
|
|
|
#include <QSystemTrayIcon>
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-13 18:52:23 +03:00
|
|
|
#include "UserSettingsPage.h"
|
2022-06-05 14:51:29 +03:00
|
|
|
#include "dock/Dock.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 WelcomePage;
|
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
class TrayIcon;
|
2017-11-02 01:41:13 +03:00
|
|
|
class UserSettings;
|
2022-01-12 21:09:46 +03:00
|
|
|
class MxcImageProvider;
|
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;
|
2018-05-01 19:35:28 +03:00
|
|
|
class MemberList;
|
2018-03-12 23:23:26 +03:00
|
|
|
class ReCaptcha;
|
2018-02-10 17:05:31 +03:00
|
|
|
}
|
|
|
|
|
2022-10-10 15:38:29 +03:00
|
|
|
class MainWindow final : public QQuickView
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
public:
|
2022-01-12 21:09:46 +03:00
|
|
|
explicit MainWindow(QWindow *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();
|
2017-06-02 18:04:51 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
void openJoinRoomDialog(std::function<void(const QString &room_id)> callback);
|
2018-08-11 13:50:56 +03:00
|
|
|
|
2022-01-12 21:09:46 +03:00
|
|
|
MxcImageProvider *imageProvider() { return imgProvider; }
|
|
|
|
|
2022-01-24 02:41:55 +03:00
|
|
|
//! Show the chat page and start communicating with the given access token.
|
|
|
|
void showChatPage();
|
|
|
|
|
2022-04-14 18:02:55 +03:00
|
|
|
#ifdef NHEKO_DBUS_SYS
|
2022-10-01 16:26:33 +03:00
|
|
|
bool dbusAvailable() const { return dbusAvailable_; }
|
2022-04-14 18:02:55 +03:00
|
|
|
#endif
|
|
|
|
|
2022-05-07 19:53:16 +03:00
|
|
|
Q_INVOKABLE void addPerRoomWindow(const QString &room, QWindow *window);
|
|
|
|
Q_INVOKABLE void removePerRoomWindow(const QString &room, QWindow *window);
|
2022-05-07 20:03:58 +03:00
|
|
|
QWindow *windowForRoom(const QString &room);
|
2022-05-07 19:53:16 +03:00
|
|
|
QString focusedRoom() const;
|
2022-05-06 01:36:38 +03:00
|
|
|
|
2017-05-21 16:36:06 +03:00
|
|
|
protected:
|
2022-01-12 21:09:46 +03:00
|
|
|
void closeEvent(QCloseEvent *event);
|
2021-09-18 01:22:33 +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:
|
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
|
|
|
virtual void setWindowTitle(int notificationCount);
|
2020-10-22 02:20:02 +03:00
|
|
|
|
2021-01-27 01:23:28 +03:00
|
|
|
signals:
|
2021-09-18 01:22:33 +03:00
|
|
|
void reload();
|
2022-01-09 02:28:03 +03:00
|
|
|
void secretsChanged();
|
2021-01-27 01:23:28 +03:00
|
|
|
|
2022-01-30 21:14:33 +03:00
|
|
|
void showNotification(QString msg);
|
|
|
|
|
2022-01-12 21:09:46 +03:00
|
|
|
void switchToChatPage();
|
|
|
|
void switchToWelcomePage();
|
2022-01-24 02:41:55 +03:00
|
|
|
void switchToLoginPage(QString error);
|
2022-01-12 21:09:46 +03:00
|
|
|
|
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 the current page supports the "minimize to tray" functionality.
|
|
|
|
bool pageSupportsTray() const;
|
|
|
|
|
2022-01-12 21:09:46 +03:00
|
|
|
void registerQmlTypes();
|
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
static MainWindow *instance_;
|
|
|
|
|
|
|
|
//! The initial welcome screen.
|
|
|
|
WelcomePage *welcome_page_;
|
|
|
|
//! The register page.
|
|
|
|
RegisterPage *register_page_;
|
|
|
|
//! The main chat area.
|
|
|
|
ChatPage *chat_page_;
|
|
|
|
QSharedPointer<UserSettings> userSettings_;
|
|
|
|
//! Tray icon that shows the unread message count.
|
|
|
|
TrayIcon *trayIcon_;
|
2022-06-05 14:51:29 +03:00
|
|
|
Dock *dock_;
|
2022-01-12 21:09:46 +03:00
|
|
|
|
|
|
|
MxcImageProvider *imgProvider = nullptr;
|
2022-04-14 18:02:55 +03:00
|
|
|
|
2022-05-07 19:53:16 +03:00
|
|
|
QMultiHash<QString, QWindow *> roomWindows_;
|
2022-05-06 01:36:38 +03:00
|
|
|
|
2022-04-14 18:02:55 +03:00
|
|
|
#ifdef NHEKO_DBUS_SYS
|
|
|
|
bool dbusAvailable_{false};
|
|
|
|
#endif
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|