diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 08:48:42 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 09:24:28 (GMT) |
commit | 2812bddd81f8a1b804c7460f4e14cd0aa393d129 (patch) | |
tree | d46294f35150c4f0f43deaf2d31fceaf945ae715 /UI/Qt/QtTreeWidgetItem.h | |
download | swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.zip swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.tar.bz2 |
Import.
Diffstat (limited to 'UI/Qt/QtTreeWidgetItem.h')
-rw-r--r-- | UI/Qt/QtTreeWidgetItem.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/UI/Qt/QtTreeWidgetItem.h b/UI/Qt/QtTreeWidgetItem.h new file mode 100644 index 0000000..2a662a9 --- /dev/null +++ b/UI/Qt/QtTreeWidgetItem.h @@ -0,0 +1,57 @@ +#ifndef SWIFT_QtTreeWidgetItem_H +#define SWIFT_QtTreeWidgetItem_H + +#include <QColor> + +#include "Swiften/Base/String.h" +#include "Swiften/Roster/TreeWidgetFactory.h" +#include "Swiften/Roster/TreeWidget.h" +#include "Swiften/Roster/TreeWidgetItem.h" +#include "UI/Qt/QtTreeWidgetItem.h" +#include "UI/Qt/QtTreeWidget.h" +#include "UI/Qt/QtSwiftUtil.h" + +namespace Swift { + +class QtTreeWidgetItem : public QTreeWidgetItem, public TreeWidgetItem { + public: + QtTreeWidgetItem(QTreeWidget* parent) : QTreeWidgetItem(parent) { + } + + QtTreeWidgetItem(QTreeWidgetItem* parent) : QTreeWidgetItem(parent) { + } + + void setText(const String& text) { + QTreeWidgetItem::setText(0, P2QSTRING(text)); + } + + void setTextColor(unsigned long color) { + QTreeWidgetItem::setTextColor(0, QColor( + ((color & 0xFF0000)>>16), + ((color & 0xFF00)>>8), + (color & 0xFF))); + } + + void setBackgroundColor(unsigned long color) { + QTreeWidgetItem::setBackgroundColor(0, QColor( + ((color & 0xFF0000)>>16), + ((color & 0xFF00)>>8), + (color & 0xFF))); + } + + void setExpanded(bool b) { + treeWidget()->setItemExpanded(this, b); + } + + void hide() { + setHidden(true); + } + + void show() { + setHidden(false); + } +}; + +} +#endif + |