summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-06-10 16:49:49 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-06-10 16:49:49 (GMT)
commit7214d768dca85a6d43892169d5008898249dce73 (patch)
tree0f8b2820c9cb58f058263c78306987d934fec526 /Swift/QtUI/QtTreeWidgetItem.h
parentfd89da91d12b270d56f60544cad6f1ddc809af28 (diff)
downloadswift-7214d768dca85a6d43892169d5008898249dce73.zip
swift-7214d768dca85a6d43892169d5008898249dce73.tar.bz2
Moved UI/Qt -> Swift/QtUI.
Diffstat (limited to 'Swift/QtUI/QtTreeWidgetItem.h')
-rw-r--r--Swift/QtUI/QtTreeWidgetItem.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/Swift/QtUI/QtTreeWidgetItem.h b/Swift/QtUI/QtTreeWidgetItem.h
new file mode 100644
index 0000000..34ad93c
--- /dev/null
+++ b/Swift/QtUI/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 "Swift/QtUI/QtTreeWidgetItem.h"
+#include "Swift/QtUI/QtTreeWidget.h"
+#include "Swift/QtUI/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
+