summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/kameraklient/camerafolderitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/kameraklient/camerafolderitem.h')
-rw-r--r--kipi-plugins/kameraklient/camerafolderitem.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/kipi-plugins/kameraklient/camerafolderitem.h b/kipi-plugins/kameraklient/camerafolderitem.h
new file mode 100644
index 0000000..7294c87
--- /dev/null
+++ b/kipi-plugins/kameraklient/camerafolderitem.h
@@ -0,0 +1,54 @@
+/* ============================================================
+ * File : camerafolderitem.h
+ * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ * Date : 2003-01-23
+ * Description :
+ *
+ * Copyright 2003 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
+
+ * 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, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * ============================================================ */
+
+#ifndef CAMERAFOLDERITEM_H
+#define CAMERAFOLDERITEM_H
+
+#include <klistview.h>
+#include <qstring.h>
+
+namespace KIPIKameraKlientPlugin
+{
+
+class CameraFolderItem : public KListViewItem {
+public:
+ CameraFolderItem(KListView* parent, const QString& name);
+ CameraFolderItem(KListViewItem* parent, const QString& folderName, const QString& folderPath);
+ ~CameraFolderItem();
+ QString folderName();
+ QString folderPath();
+ bool isVirtualFolder();
+ void changeCount(int val);
+ void setCount(int val);
+ int count();
+
+private:
+ QString folderName_;
+ QString folderPath_;
+ QString name_;
+ bool virtualFolder_;
+ int count_;
+};
+
+} // NameSpace KIPIKameraKlientPlugin
+
+#endif
+