summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sync/galleryviewitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sync/galleryviewitem.h')
-rw-r--r--kipi-plugins/sync/galleryviewitem.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/kipi-plugins/sync/galleryviewitem.h b/kipi-plugins/sync/galleryviewitem.h
new file mode 100644
index 0000000..6c5077a
--- /dev/null
+++ b/kipi-plugins/sync/galleryviewitem.h
@@ -0,0 +1,55 @@
+/* ============================================================
+ * File : galleryviewitem.h
+ * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ * Date : 2004-12-01
+ * Copyright 2004 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 GALLERYVIEWITEM_H
+#define GALLERYVIEWITEM_H
+
+#include <qlistview.h>
+
+#include "galleryitem.h"
+
+namespace KIPIGalleryExportPlugin
+{
+
+class GAlbumViewItem : public QListViewItem
+{
+public:
+
+ GAlbumViewItem(QListView* parent, const QString& name,
+ const GAlbum& _album)
+ : QListViewItem(parent, name), album(_album) {}
+ GAlbumViewItem(QListViewItem* parent, const QString& name,
+ const GAlbum& _album)
+ : QListViewItem(parent, name), album(_album) {}
+
+ GAlbum album;
+
+ void paintCell(QPainter * p, const QColorGroup & cg,
+ int column, int width, int );
+ void paintFocus (QPainter*, const QColorGroup&,
+ const QRect&) {}
+
+protected:
+
+ void setup();
+
+};
+
+}
+
+#endif /* GALLERYVIEWITEM_H */