aboutsummaryrefslogtreecommitdiff
path: root/src/forms/profiledialog.h
blob: c78f8921116108f4aec964e3dcadfb694b6e585e (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 updateProfile();

private:
    QWebEngineProfile *_profile;
    Ui::ProfileDialog *ui;
};

#endif // PROFILEDIALOG_H