nheko/src/MainWindow.h

108 lines
2.4 KiB
C
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 00:35:15 +01:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 01:06:42 +02:00
#pragma once
2017-04-06 01:06:42 +02:00
2018-03-04 15:12:28 +01:00
#include <functional>
2022-01-12 19:09:46 +01:00
#include <QQuickView>
#include <QSharedPointer>
2017-10-28 14:46:39 +02:00
#include <QSystemTrayIcon>
2017-04-06 01:06:42 +02:00
2018-01-13 16:52:23 +01:00
#include "UserSettingsPage.h"
#include "jdenticoninterface.h"
2017-10-28 14:46:39 +02:00
class ChatPage;
2020-02-23 11:42:29 +01:00
class RegisterPage;
class WelcomePage;
2017-10-28 14:46:39 +02:00
class TrayIcon;
2017-11-01 23:41:13 +01:00
class UserSettings;
2022-01-12 19:09:46 +01:00
class MxcImageProvider;
2017-04-06 01:06:42 +02:00
namespace mtx {
namespace requests {
struct CreateRoom;
}
}
namespace dialogs {
class CreateRoom;
class InviteUsers;
2018-05-01 18:35:28 +02:00
class MemberList;
class ReCaptcha;
}
2022-01-12 19:09:46 +01:00
class MainWindow : public QQuickView
2017-04-06 01:06:42 +02:00
{
2021-09-18 00:22:33 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
2022-01-12 19:09:46 +01:00
explicit MainWindow(QWindow *parent = nullptr);
2017-04-06 01:06:42 +02:00
2021-09-18 00:22:33 +02:00
static MainWindow *instance() { return instance_; }
void saveCurrentWindowSize();
2021-09-18 00:22:33 +02:00
void openJoinRoomDialog(std::function<void(const QString &room_id)> callback);
2018-08-11 12:50:56 +02:00
2022-01-12 19:09:46 +01:00
MxcImageProvider *imageProvider() { return imgProvider; }
2022-01-24 00:41:55 +01:00
//! Show the chat page and start communicating with the given access token.
void showChatPage();
#ifdef NHEKO_DBUS_SYS
bool dbusAvailable() const { return dbusAvailable_; }
#endif
2017-05-21 15:36:06 +02:00
protected:
2022-01-12 19:09:46 +01:00
void closeEvent(QCloseEvent *event);
2021-09-18 00:22:33 +02:00
bool event(QEvent *event) override;
2017-05-21 15:36:06 +02:00
private slots:
2021-09-18 00:22:33 +02:00
//! Handle interaction with the tray icon.
void iconActivated(QSystemTrayIcon::ActivationReason reason);
2017-05-21 15:36:06 +02:00
2021-09-18 00:22:33 +02:00
virtual void setWindowTitle(int notificationCount);
2020-10-22 01:20:02 +02:00
signals:
2021-09-18 00:22:33 +02:00
void reload();
2022-01-09 00:28:03 +01:00
void secretsChanged();
2022-01-30 19:14:33 +01:00
void showNotification(QString msg);
2022-01-12 19:09:46 +01:00
void switchToChatPage();
void switchToWelcomePage();
2022-01-24 00:41:55 +01:00
void switchToLoginPage(QString error);
2022-01-12 19:09:46 +01:00
2017-04-06 01:06:42 +02:00
private:
2021-09-18 00:22:33 +02: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 19:09:46 +01:00
void registerQmlTypes();
2021-09-18 00:22:33 +02: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-01-12 19:09:46 +01:00
MxcImageProvider *imgProvider = nullptr;
#ifdef NHEKO_DBUS_SYS
bool dbusAvailable_{false};
#endif
2017-04-06 01:06:42 +02:00
};