summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/rawconverter/clistviewitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/rawconverter/clistviewitem.h')
-rw-r--r--kipi-plugins/rawconverter/clistviewitem.h116
1 files changed, 116 insertions, 0 deletions
diff --git a/kipi-plugins/rawconverter/clistviewitem.h b/kipi-plugins/rawconverter/clistviewitem.h
new file mode 100644
index 0000000..f7e3065
--- /dev/null
+++ b/kipi-plugins/rawconverter/clistviewitem.h
@@ -0,0 +1,116 @@
+/* ============================================================
+ *
+ * This file is a part of kipi-plugins project
+ * http://www.kipi-plugins.org
+ *
+ * Date : 2003-10-25
+ * Description : Raw file list view used into batch converter.
+ *
+ * Copyright (C) 2003-2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ * Copyright (C) 2006-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ *
+ * 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 CLISTVIEWITEM_H
+#define CLISTVIEWITEM_H
+
+// Qt includes.
+
+#include <qstring.h>
+#include <qpainter.h>
+
+// KDE includes.
+
+#include <klistview.h>
+
+class QPixmap;
+
+namespace KIPIRawConverterPlugin
+{
+
+class CListViewItem;
+
+struct RawItem
+{
+ QString src;
+ QString dest;
+ QString directory;
+ QString identity;
+
+ CListViewItem *viewItem;
+};
+
+class CListViewItem : public KListViewItem
+{
+
+public:
+
+ struct RawItem *rawItem;
+
+public:
+
+ CListViewItem(KListView *view, const QPixmap& pixmap,
+ RawItem *item, QListViewItem *after)
+ : KListViewItem(view, after), rawItem(item)
+ {
+ rawItem->viewItem = this;
+ setThumbnail(pixmap);
+ setText(1, rawItem->src);
+ setText(2, rawItem->dest);
+ setEnabled(true);
+ }
+
+ ~CListViewItem(){}
+
+ void setThumbnail(const QPixmap& pixmap)
+ {
+ setPixmap(0, pixmap);
+ }
+
+ void setEnabled(bool d)
+ {
+ m_enabled = d;
+ repaint();
+ }
+
+ bool isEnabled(void)
+ {
+ return m_enabled;
+ }
+
+protected:
+
+ void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment)
+ {
+ if (m_enabled)
+ {
+ KListViewItem::paintCell(p, cg, column, width, alignment);
+ }
+ else
+ {
+ QColorGroup _cg( cg );
+ QColor c = _cg.text();
+ _cg.setColor( QColorGroup::Text, Qt::gray );
+ KListViewItem::paintCell( p, _cg, column, width, alignment );
+ _cg.setColor( QColorGroup::Text, c );
+ }
+ }
+
+private:
+
+ bool m_enabled;
+};
+
+} // NameSpace KIPIRawConverterPlugin
+
+#endif /* CLISTVIEWITEM_H */