2022-07-09 20:07:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "streamdialog.h"
|
|
|
|
#include "virtmic.h"
|
|
|
|
|
|
|
|
#include <QProcess>
|
2022-07-27 12:13:59 +00:00
|
|
|
#include <QWebEngineFullScreenRequest>
|
2022-07-09 20:07:14 +00:00
|
|
|
#include <QWebEnginePage>
|
|
|
|
|
|
|
|
class DiscordPage : public QWebEnginePage {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit DiscordPage(QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
private:
|
|
|
|
StreamDialog m_streamDialog;
|
|
|
|
QProcess m_virtmicProcess;
|
|
|
|
bool acceptNavigationRequest(const QUrl &url,
|
|
|
|
QWebEnginePage::NavigationType type,
|
|
|
|
bool isMainFrame) override;
|
2022-07-27 12:53:16 +00:00
|
|
|
QWebEnginePage *createWindow(QWebEnginePage::WebWindowType type) override;
|
2022-07-09 20:07:14 +00:00
|
|
|
void
|
|
|
|
javaScriptConsoleMessage(QWebEnginePage::JavaScriptConsoleMessageLevel level,
|
|
|
|
const QString &message, int lineNumber,
|
|
|
|
const QString &sourceID) override;
|
|
|
|
void injectScript(QString source);
|
2022-07-28 15:34:54 +00:00
|
|
|
void injectVersion(QString version);
|
2022-07-09 20:07:14 +00:00
|
|
|
void stopVirtmic();
|
|
|
|
void startVirtmic(QString target);
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void featurePermissionRequested(const QUrl &securityOrigin,
|
|
|
|
QWebEnginePage::Feature feature);
|
|
|
|
void startStream(QString target, uint width, uint height, uint frameRate);
|
|
|
|
};
|
2022-07-27 12:53:16 +00:00
|
|
|
|
|
|
|
// Will immediately get destroyed again but is needed for navigation to
|
|
|
|
// target="_blank" links, since QWebEnginePage::newWindowRequested is
|
|
|
|
// only available sinec Qt 6.3.
|
|
|
|
class ExternalPage : public QWebEnginePage {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool acceptNavigationRequest(const QUrl &url,
|
|
|
|
QWebEnginePage::NavigationType type,
|
|
|
|
bool isMainFrame) override;
|
|
|
|
};
|