aboutsummaryrefslogtreecommitdiff
path: root/src/forms/profiledialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/forms/profiledialog.cpp')
-rw-r--r--src/forms/profiledialog.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/forms/profiledialog.cpp b/src/forms/profiledialog.cpp
new file mode 100644
index 0000000..14279c4
--- /dev/null
+++ b/src/forms/profiledialog.cpp
@@ -0,0 +1,25 @@
+#include "profiledialog.h"
+#include "ui_profiledialog.h"
+
+ProfileDialog::ProfileDialog(QWebEngineProfile *profile, QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::ProfileDialog)
+{
+ _profile = profile;
+
+ ui->setupUi(this);
+ ui->userAgent_lineEdit->setText(_profile->httpUserAgent());
+
+ connect(this, SIGNAL(accepted()), this, SLOT(saveProfile()));
+}
+
+ProfileDialog::~ProfileDialog()
+{
+ delete ui;
+}
+
+void ProfileDialog::saveProfile()
+{
+ qDebug("Saving profile...");
+ _profile->setHttpUserAgent(ui->userAgent_lineEdit->text());
+}