summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/configdialog.h
blob: b81a0041472aa71d6ce4fbd60770ada8bb2d299a (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
#ifndef OPIE_CONFIG_DIALOG_H
#define OPIE_CONFIG_DIALOG_H

#include <qdialog.h>

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

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

    Profile::ValueList list()const;
protected slots:
    void slotRemove();
    void slotEdit();
    void slotAdd();
private:
    MetaFactory* m_fact;

};

#endif