discord-screenaudio/src/discordpage.h

65 lines
1.9 KiB
C
Raw Normal View History

2022-07-09 20:07:14 +00:00
#pragma once
#include "streamdialog.h"
#include "virtmic.h"
2022-10-10 19:50:26 +00:00
#ifdef KXMLGUI
#include <KActionCollection>
#include <KHelpMenu>
#include <KShortcutsDialog>
#endif
2022-07-09 20:07:14 +00:00
#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;
2022-10-10 19:50:26 +00:00
#ifdef KXMLGUI
KHelpMenu *m_helpMenu;
#ifdef KGLOBALACCEL
KActionCollection *m_actionCollection;
KShortcutsDialog *m_shortcutsDialog;
#endif
#endif
2022-07-09 20:07:14 +00:00
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;
2022-10-11 17:48:57 +00:00
void injectScriptText(QString name, QString content);
void injectScriptFile(QString name, QString source);
2022-07-09 20:07:14 +00:00
void stopVirtmic();
void startVirtmic(QString target);
2022-10-10 19:50:26 +00:00
void toggleMute();
void toggleDeafen();
2022-07-09 20:07:14 +00:00
private Q_SLOTS:
void featurePermissionRequested(const QUrl &securityOrigin,
QWebEnginePage::Feature feature);
2022-11-22 15:35:47 +00:00
void startStream(bool video, bool audio, uint width, uint height,
uint frameRate, QString target);
2022-07-09 20:07:14 +00:00
};
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;
};