blob: cb677ee0d3fefb763d59ae139a122c0ae647e6dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <QList>
#include <QWidget>
#include <QtCore>
#include <qwebengineprofile.h>
#include "WindowMediator.hpp"
#include "widgets/WebViewStack.hpp"
WindowMediator::WindowMediator(WebViewStack *webview_stack) : webview_stack(webview_stack) {
connect(webview_stack, &WebViewStack::new_window_requested, this,
&WindowMediator::new_window_requested);
connect(webview_stack, &WebViewStack::close_window_requested, this,
&WindowMediator::close_window_requested);
}
void WindowMediator::update_user_agent(const QString &user_agent) {
auto *profile = webview_stack->get_profile();
profile->setHttpUserAgent(user_agent);
}
void WindowMediator::update_downloads_dir(const QString &downloads_dir) {
auto *profile = webview_stack->get_profile();
profile->setDownloadPath(downloads_dir);
}
WindowMediator::~WindowMediator() {
disconnect(this);
delete webview_stack;
}
|