aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/forms/profilemanagerdialog.h
blob: 4f468c53de04ccd601b93cd909dfd305046e4682 (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
31
32
33
34
35
36
37
#ifndef PROFILEMANAGERDIALOG_H
#define PROFILEMANAGERDIALOG_H

#include <QDialog>
#include <QVector>

namespace Ui
{
class ProfileManagerDialog;
}

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

public:
    explicit ProfileManagerDialog(const QVector<WebProfile *> &profiles, QWidget *parent = 0);
    ~ProfileManagerDialog();

signals:
    void createProfile(const QString &id);
    void updateProfile(const QString &id);

public slots:
    void addProfile(WebProfile *profile);

private slots:
    void showProfile(QListWidgetItem *item);
    void deleteProfile(QListWidgetItem *item);

private:
    Ui::ProfileManagerDialog *ui;
};

#endif // PROFILEMANAGERDIALOG_H