237 lines
6.3 KiB
C++
237 lines
6.3 KiB
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2025 Deskflow Developers
|
|
* SPDX-FileCopyrightText: (C) 2024 - 2026 Chris Rizzitello <sithord48@gmail.com>
|
|
* SPDX-FileCopyrightText: (C) 2012 - 2024 Symless Ltd.
|
|
* SPDX-FileCopyrightText: (C) 2008 Volker Lanz <vl@fidra.de>
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QHostAddress>
|
|
#include <QMainWindow>
|
|
#include <QMutex>
|
|
#include <QProcess>
|
|
#include <QRegularExpression>
|
|
#include <QSettings>
|
|
#include <QSystemTrayIcon>
|
|
#include <QThread>
|
|
|
|
#include "VersionChecker.h"
|
|
#include "config/ServerConfig.h"
|
|
#include "gui/core/ClientConnection.h"
|
|
#include "gui/core/CoreProcess.h"
|
|
#include "gui/core/NetworkMonitor.h"
|
|
#include "gui/core/ServerConnection.h"
|
|
#include "gui/core/WaylandWarnings.h"
|
|
#include "net/Fingerprint.h"
|
|
|
|
#ifdef Q_OS_MACOS
|
|
#include "gui/OSXHelpers.h"
|
|
#endif
|
|
|
|
class QAction;
|
|
class QMenu;
|
|
class QLabel;
|
|
class QLineEdit;
|
|
class QGroupBox;
|
|
class QPushButton;
|
|
class QTextEdit;
|
|
class QComboBox;
|
|
class QTabWidget;
|
|
class QCheckBox;
|
|
class QRadioButton;
|
|
class QMessageBox;
|
|
class QAbstractButton;
|
|
class QLocalServer;
|
|
|
|
class DeskflowApplication;
|
|
class LogDock;
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
namespace deskflow::gui::ipc {
|
|
class DaemonIpcClient;
|
|
}
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
using CoreMode = Settings::CoreMode;
|
|
using CoreProcess = deskflow::gui::CoreProcess;
|
|
using NetworkMonitor = deskflow::gui::NetworkMonitor;
|
|
|
|
Q_OBJECT
|
|
|
|
friend class DeskflowApplication;
|
|
friend class SettingsDialog;
|
|
|
|
public:
|
|
enum class LogLevel
|
|
{
|
|
Error,
|
|
Info
|
|
};
|
|
|
|
public:
|
|
explicit MainWindow();
|
|
~MainWindow() override;
|
|
|
|
[[nodiscard]] CoreMode coreMode() const
|
|
{
|
|
return m_coreProcess.mode();
|
|
}
|
|
void open();
|
|
ServerConfig &serverConfig()
|
|
{
|
|
return m_serverConfig;
|
|
}
|
|
|
|
void hide();
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e) override;
|
|
|
|
private:
|
|
/**
|
|
* @brief updateText Update all text not in the UI
|
|
*/
|
|
void updateText();
|
|
void toggleLogVisible(bool visible);
|
|
|
|
void settingsChanged(const QString &key = QString());
|
|
void serverConfigSaving();
|
|
void coreProcessError(CoreProcess::Error error);
|
|
void coreConnectionStateChanged(CoreProcess::ConnectionState state);
|
|
void coreProcessStateChanged(CoreProcess::ProcessState state);
|
|
void versionCheckerUpdateFound(const QString &version);
|
|
void trayIconActivated(QSystemTrayIcon::ActivationReason reason);
|
|
void serverConnectionConfigureClient(const QString &clientName);
|
|
|
|
void clearSettings();
|
|
void openAboutDialog();
|
|
void openHelpUrl() const;
|
|
void openGetNewVersionUrl() const;
|
|
void openSettings();
|
|
void startCore();
|
|
void stopCore();
|
|
bool saveServerConfig();
|
|
void resetCore();
|
|
|
|
void showMyFingerprint();
|
|
void updateSecurityIcon(bool visible);
|
|
void updateNetworkInfo();
|
|
|
|
void coreModeToggled(bool checked);
|
|
void updateModeControls();
|
|
void updateModeControlLabels();
|
|
std::unique_ptr<Ui::MainWindow> ui;
|
|
|
|
void createMenuBar();
|
|
void setupTrayIcon();
|
|
void applyConfig();
|
|
void setTrayIcon();
|
|
void setStatus(const QString &status);
|
|
void updateFromLogLine(const QString &line);
|
|
void checkConnected(const QString &line);
|
|
void checkFingerprint(const QString &line);
|
|
void closeEvent(QCloseEvent *event) override;
|
|
void secureSocket(bool secureSocket);
|
|
void connectSlots();
|
|
void handleLogLine(const QString &line);
|
|
void updateLocalFingerprint();
|
|
void updateScreenName();
|
|
void saveSettings() const;
|
|
void showConfigureServer(const QString &message);
|
|
void showConfigureClient();
|
|
void restoreWindow();
|
|
void setupControls();
|
|
void showFirstConnectedMessage();
|
|
void updateStatus();
|
|
void showAndActivate();
|
|
void showHostNameEditor();
|
|
void setHostName();
|
|
void daemonIpcClientConnectionFailed();
|
|
void toggleCanRunCore(bool enableButtons);
|
|
void remoteHostChanged(const QString &newRemoteHost);
|
|
void handleNewClientPromptRequest(const QString &clientName, bool usePeerAuth);
|
|
void updateIpLabel(const QStringList &addresses);
|
|
|
|
/**
|
|
* @brief showClientError
|
|
* @param error Error Type
|
|
* @param address
|
|
*/
|
|
void showClientError(deskflow::client::ErrorType error, const QString &address);
|
|
|
|
/**
|
|
* @brief trustedFingerprintDatabase get the FingerprintDatabase for the trusted clients or trusted servers.
|
|
* @return The path to the trusted fingerprint file
|
|
*/
|
|
QString trustedFingerprintDatabase() const;
|
|
|
|
/**
|
|
* @brief generateCertificate Generate a new certificate
|
|
* @return true when successful
|
|
*/
|
|
bool generateCertificate();
|
|
|
|
Fingerprint m_fingerprint;
|
|
|
|
void serverClientsChanged(const QStringList &clients);
|
|
|
|
inline static const auto m_guiSocketName = QStringLiteral("deskflow-gui");
|
|
inline static const auto m_nameRegEx = QRegularExpression(QStringLiteral("^[\\w\\-_\\.]{0,255}$"));
|
|
|
|
VersionChecker m_versionChecker;
|
|
bool m_secureSocket = false;
|
|
bool m_saveOnExit = true;
|
|
bool m_clientErrorVisible = false;
|
|
deskflow::gui::core::WaylandWarnings m_waylandWarnings;
|
|
ServerConfig m_serverConfig;
|
|
deskflow::gui::CoreProcess m_coreProcess;
|
|
deskflow::gui::ServerConnection m_serverConnection;
|
|
deskflow::gui::ClientConnection m_clientConnection;
|
|
QSize m_expandedSize = QSize();
|
|
QStringList m_checkedClients;
|
|
QStringList m_checkedServers;
|
|
QSystemTrayIcon *m_trayIcon = nullptr;
|
|
QLocalServer *m_guiDupeChecker = nullptr;
|
|
deskflow::gui::ipc::DaemonIpcClient *m_daemonIpcClient = nullptr;
|
|
|
|
LogDock *m_logDock;
|
|
QLabel *m_lblSecurityStatus = nullptr;
|
|
QLabel *m_lblStatus = nullptr;
|
|
QPushButton *m_btnFingerprint = nullptr;
|
|
QPushButton *m_btnUpdate = nullptr;
|
|
|
|
// Window Menu
|
|
QMenu *m_menuFile = nullptr;
|
|
QMenu *m_menuEdit = nullptr;
|
|
QMenu *m_menuView = nullptr;
|
|
QMenu *m_menuHelp = nullptr;
|
|
|
|
// Window Actions
|
|
QAction *m_actionAbout = nullptr;
|
|
QAction *m_actionClearSettings = nullptr;
|
|
QAction *m_actionReportBug = nullptr;
|
|
QAction *m_actionMinimize = nullptr;
|
|
QAction *m_actionQuit = nullptr;
|
|
QAction *m_actionTrayQuit = nullptr;
|
|
QAction *m_actionRestore = nullptr;
|
|
QAction *m_actionSettings = nullptr;
|
|
QAction *m_actionStartCore = nullptr;
|
|
QAction *m_actionRestartCore = nullptr;
|
|
QAction *m_actionStopCore = nullptr;
|
|
|
|
// Network monitoring
|
|
NetworkMonitor *m_networkMonitor = nullptr;
|
|
QString m_currentIpAddress;
|
|
|
|
// Server IP strategy optimization
|
|
QStringList m_serverStartIPs;
|
|
QString m_serverStartSuggestedIP;
|
|
};
|