blob: 34ad93cafd293826275098b4452592c82d7fe27a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
|