summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/listviewitemconfigentry.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/confedit/listviewitemconfigentry.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/listviewitemconfigentry.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/noncore/apps/confedit/listviewitemconfigentry.h b/noncore/apps/confedit/listviewitemconfigentry.h
new file mode 100644
index 0000000..d2b331f
--- a/dev/null
+++ b/noncore/apps/confedit/listviewitemconfigentry.h
@@ -0,0 +1,43 @@
+/***************************************************************************
+ * *
+ * 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 LISTVIEWITEMCONFIGENTRY_H
+#define LISTVIEWITEMCONFIGENTRY_H
+
+#include <qwidget.h>
+#include <qlistview.h>
+#include "listviewitemconffile.h"
+#include "listviewitemconf.h"
+
+class ListViewItemConfigEntry : public ListViewItemConf {
+public:
+ ListViewItemConfigEntry(ListViewItemConfFile *parent, QString group, QString key="");
+ ~ListViewItemConfigEntry();
+ bool isGroup();
+ bool isKey();
+ QString getFile();
+ void setGroup(QString);
+ QString getGroup();
+ void setKey(QString);
+ QString getKey();
+ QString getValue();
+ void keyChanged(QString);
+ void valueChanged(QString);
+ virtual void displayText();
+ virtual void changed();
+private:
+ QString _file;
+ QString _group;
+ QString _key;
+ QString _value;
+ ListViewItemConfFile *_fileItem;
+};
+
+#endif