summaryrefslogtreecommitdiffstats
path: root/konq-plugins/domtreeviewer/domlistviewitem.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit84da08d7b7fcda12c85caeb5a10b4903770a6f69 (patch)
tree2a6aea76f2dfffb4cc04bb907c4725af94f70e72 /konq-plugins/domtreeviewer/domlistviewitem.h
downloadtdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.tar.gz
tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/domtreeviewer/domlistviewitem.h')
-rw-r--r--konq-plugins/domtreeviewer/domlistviewitem.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/konq-plugins/domtreeviewer/domlistviewitem.h b/konq-plugins/domtreeviewer/domlistviewitem.h
new file mode 100644
index 0000000..22f34b2
--- /dev/null
+++ b/konq-plugins/domtreeviewer/domlistviewitem.h
@@ -0,0 +1,57 @@
+/***************************************************************************
+ domlistviewitem.h
+ -------------------
+
+ author : Andreas Schlapbach
+ email : schlpbch@iam.unibe.ch
+ ***************************************************************************
+ * *
+ * 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 DOMLISTVIEWITEMS_H
+#define DOMLISTVIEWITEMS_H
+
+#include <dom/dom_node.h>
+
+#include <qlistview.h>
+#include <qcolor.h>
+#include <qfont.h>
+
+class DOMListViewItem : public QListViewItem
+{
+
+ public:
+ DOMListViewItem( const DOM::Node &, QListView *parent );
+ DOMListViewItem( const DOM::Node &, QListView *parent, QListViewItem *after );
+ DOMListViewItem( const DOM::Node &, QListViewItem *parent );
+ DOMListViewItem( const DOM::Node &, QListViewItem *parent, QListViewItem *after );
+ virtual ~DOMListViewItem();
+
+ virtual void paintCell( QPainter *p, const QColorGroup &cg,
+ int column, int width, int alignment );
+
+ void setColor( const QColor &color) { m_color = color; }
+
+ void setFont( const QFont &font) { m_font = font;}
+ void setItalic( bool b) {m_font.setItalic(b);}
+ void setBold( bool b) {m_font.setBold(b);}
+ void setUnderline(bool b) {m_font.setUnderline(b);}
+
+ bool isClosing() const { return clos; }
+ void setClosing(bool s) { clos = s; }
+
+ DOM::Node node() const { return m_node; }
+
+ private:
+ void init();
+ QColor m_color;
+ QFont m_font;
+ DOM::Node m_node;
+ bool clos;
+};
+#endif