00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef LISTVIEWCONFDIR_H
00013 #define LISTVIEWCONFDIR_H
00014
00015 #include <qwidget.h>
00016 #include <qlistview.h>
00017 #include <qdir.h>
00018
00019 class QDir;
00020
00021 class ListViewConfDir : public QListView {
00022 Q_OBJECT
00023 public:
00024 ListViewConfDir(QString settingsPath, QWidget *parent=0, const char *name=0);
00025 ~ListViewConfDir();
00026 protected slots:
00027 void expand(QListViewItem*);
00028 private:
00029 QDir confDir;
00030
00031 void readConfFiles();
00032 };
00033
00034 #endif