34 lines
1009 B
C
34 lines
1009 B
C
|
#pragma once
|
||
|
|
||
|
#include "streamdialog.h"
|
||
|
#include "virtmic.h"
|
||
|
|
||
|
#include <QProcess>
|
||
|
#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;
|
||
|
void
|
||
|
javaScriptConsoleMessage(QWebEnginePage::JavaScriptConsoleMessageLevel level,
|
||
|
const QString &message, int lineNumber,
|
||
|
const QString &sourceID) override;
|
||
|
void injectScript(QString source);
|
||
|
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);
|
||
|
};
|