summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/listviewitemconf.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/confedit/listviewitemconf.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/listviewitemconf.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/noncore/apps/confedit/listviewitemconf.h b/noncore/apps/confedit/listviewitemconf.h
new file mode 100644
index 0000000..5837625
--- a/dev/null
+++ b/noncore/apps/confedit/listviewitemconf.h
@@ -0,0 +1,35 @@
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+#ifndef LISTVIEWITEMCONF_H
+#define LISTVIEWITEMCONF_H
+
+#include <qlistview.h>
+
+
+class ListViewItemConf : public QListViewItem
+{
+public:
+ enum {File, Group, Key};
+
+ ListViewItemConf(ListViewItemConf *parent);
+ ListViewItemConf(QListView *parent);
+ ~ListViewItemConf();
+
+ int getType();
+ virtual void displayText() = 0;
+ virtual void changed();
+ virtual void unchanged();
+
+protected:
+ int _type;
+ bool _changed;
+};
+
+#endif