aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index db8e958..75948e9 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -46,6 +46,11 @@ public slots:
void updateWindowTheme();
void updatePageTheme();
+ void handleWebViewTitleChanged(QString title);
+ void handleLoadStarted();
+ void handleLoadProgress(int progress);
+ void handleLoadFinished(bool loaded);
+ void handleDownloadRequested(QWebEngineDownloadItem *download);
protected slots:
void closeEvent(QCloseEvent *event) override;
@@ -94,10 +99,6 @@ private:
private slots:
- void handleWebViewTitleChanged(QString title);
- void handleLoadStarted();
- void handleLoadProgress(int progress);
- void handleDownloadRequested(QWebEngineDownloadItem *download);
void iconActivated(QSystemTrayIcon::ActivationReason reason);
void messageClicked();
void doReload();
@@ -105,7 +106,6 @@ private slots:
void notify(QString title, QString message);
void showSettings();
void handleCookieAdded(const QNetworkCookie &cookie);
- void handleLoadFinished(bool loaded);
QString getPageTheme();
void toggleMute(const bool checked);
@@ -124,6 +124,7 @@ private slots:
void checkLoadedCorrectly();
void loadingQuirk(QString test);
+ void setNotificationPresenter(QWebEngineProfile *profile);
};
#endif // MAINWINDOW_H