blob: 98426d071215aa47861d8f96c8ed1acd0259ac2e (
plain)
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
|
#ifndef PROFILEDIALOG_H
#define PROFILEDIALOG_H
#include <QDialog>
#include <QWebEngineProfile>
namespace Ui {
class ProfileDialog;
}
class ProfileDialog : public QDialog
{
Q_OBJECT
public:
explicit ProfileDialog(QWebEngineProfile *profile, QWidget *parent = 0);
~ProfileDialog();
private slots:
void saveProfile();
private:
QWebEngineProfile *_profile;
Ui::ProfileDialog *ui;
};
#endif // PROFILEDIALOG_H
|