blob: 4e20050cdabac5040ef0a300e19aef4cba37a4df (
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
|
#ifndef SWIFTEN_TreeWidgetItem_H
#define SWIFTEN_TreeWidgetItem_H
#include "Swiften/Base/String.h"
#include "Swiften/Roster/UserRosterAction.h"
#include <boost/signal.hpp>
#include <boost/shared_ptr.hpp>
namespace Swift {
class TreeWidgetItem {
public:
virtual ~TreeWidgetItem() {}
virtual void setText(const String& text) = 0;
virtual void setStatusText(const String& text) = 0;
virtual void setAvatarPath(const String& path) = 0;
virtual void setExpanded(bool b) = 0;
virtual void setTextColor(unsigned long color) = 0;
virtual void setBackgroundColor(unsigned long color) = 0;
boost::signal<void (boost::shared_ptr<UserRosterAction>)> onUserAction;
virtual void show() = 0;
virtual void hide() = 0;
void performUserAction(boost::shared_ptr<UserRosterAction> action) {
action->setTreeWidgetItem(this);
onUserAction(action);
}
};
}
#endif
|