From 84da08d7b7fcda12c85caeb5a10b4903770a6f69 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- konq-plugins/domtreeviewer/domlistviewitem.h | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 konq-plugins/domtreeviewer/domlistviewitem.h (limited to 'konq-plugins/domtreeviewer/domlistviewitem.h') 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 + +#include +#include +#include + +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 -- cgit v1.2.1