aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/forms/profilemanagerdialog.h
blob: 9ce177de1d00b3329b4f01d40ca5d41d5ab6b32d (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
28
29
30
#ifndef PROFILEMANAGERDIALOG_H
#define PROFILEMANAGERDIALOG_H

#include <QDialog>
#include <QHash>

namespace Ui
{
class ProfileManagerDialog;
}

class QWebEngineProfile;
class QListWidgetItem;
class ProfileManagerDialog : public QDialog
{
    Q_OBJECT

public:
    explicit ProfileManagerDialog(QHash<QString, QWebEngineProfile *> &profiles, QWidget *parent = 0);
    ~ProfileManagerDialog();

private slots:
    void showProfile(QListWidgetItem *item);

private:
    Ui::ProfileManagerDialog *ui;
    const QHash<QString, QWebEngineProfile *> profiles;
};

#endif // PROFILEMANAGERDIALOG_H