summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/listviewconfdir.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/confedit/listviewconfdir.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/listviewconfdir.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/noncore/apps/confedit/listviewconfdir.h b/noncore/apps/confedit/listviewconfdir.h
new file mode 100644
index 0000000..3131972
--- a/dev/null
+++ b/noncore/apps/confedit/listviewconfdir.h
@@ -0,0 +1,33 @@
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+ // (c) 2002 Patrick S. Vogtp <tille@handhelds.org>
+
+#ifndef LISTVIEWCONFDIR_H
+#define LISTVIEWCONFDIR_H
+
+#include <qwidget.h>
+#include <qlistview.h>
+#include <qdir.h>
+
+class QDir;
+
+class ListViewConfDir : public QListView {
+ Q_OBJECT
+public:
+ ListViewConfDir(QString settingsPath, QWidget *parent=0, const char *name=0);
+ ~ListViewConfDir();
+
+private:
+ QDir confDir;
+
+ void readConfFiles();
+};
+
+#endif