blob: 1718776e48dd042d28a4b8c3e532ae3cdcb77d1c (
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
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#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
|