summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/configdialog.h
blob: a0c40d0b40eb1058aeda8635ae0283f4ecca0f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef OPIE_CONFIG_DIALOG_H
#define OPIE_CONFIG_DIALOG_H

#include <qdialog.h>

#include "configurebase.h"
#include "profile.h"

class ConfigDialog : public ConfigureBase {
    Q_OBJECT
public:
    ConfigDialog( const Profile::ValueList&, QWidget* parent = 0l);
    ~ConfigDialog();

    Profile::ValueList list()const;
protected slots:
    void slotRemove();
    void slotEdit();
    void slotAdd();

};

#endif