blob: 4124546d2e02de25b1878b2adf79c42765f86dd1 (
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
|
#ifndef SWIFTEN_TreeWidgetItem_H
#define SWIFTEN_TreeWidgetItem_H
#include "Swiften/Base/String.h"
#include "Swiften/Roster/UserRosterAction.h"
#include "Swiften/Elements/StatusShow.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 setStatusShow(StatusShow::Type show) = 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
|