summaryrefslogtreecommitdiffstats
blob: 51c4ade9702c9e968625fb26d4d9bf84b175f887 (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
/*
 * Copyright (c) 2010 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#pragma once

#include "Swiften/Base/String.h"
#include "Swiften/JID/JID.h"
#include "Swiften/Roster/RosterItem.h"
#include "Swiften/Elements/StatusShow.h"
#include "Swiften/Elements/Presence.h"

#include <map>
#include <boost/bind.hpp>
#include "Swiften/Base/boost_signalslib.h"
#include <boost/shared_ptr.hpp>

namespace Swift {

class GroupRosterItem;
class ContactRosterItem : public RosterItem {
	public:
		ContactRosterItem(const JID& jid, const String& name, GroupRosterItem* parent);
		virtual ~ContactRosterItem();

		StatusShow::Type getStatusShow() const;
		StatusShow::Type getSimplifiedStatusShow() const;
		String getStatusText() const;
		void setAvatarPath(const String& path);
		const String& getAvatarPath() const;
		const JID& getJID() const;
		void applyPresence(const String& resource, boost::shared_ptr<Presence> presence);
		void clearPresence();
		void calculateShownPresence();
	private:
		JID jid_;
		String avatarPath_;
		bool hidden_;
		std::map<String, boost::shared_ptr<Presence> > presences_;
		boost::shared_ptr<Presence> offlinePresence_;
		boost::shared_ptr<Presence> shownPresence_;
};

}