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

#include "Swift/Controllers/Roster/RosterItem.h"

#include "Swift/Controllers/Roster/GroupRosterItem.h"

namespace Swift {

RosterItem::RosterItem(const String& name, GroupRosterItem* parent) : name_(name), sortableDisplayName_(name_.getLowerCase()), parent_(parent) {
	/* The following would be good, but because of C++'s inheritance not working in constructors, it's not going to work. */
	//if (parent) {
	//	parent_->addChild(this);
	//}
}

RosterItem::~RosterItem() {

}

GroupRosterItem* RosterItem::getParent() const {
	return parent_;
}

void RosterItem::setDisplayName(const String& name) {
	name_ = name;
	sortableDisplayName_ = name_.getLowerCase();
	onDataChanged();
}

String RosterItem::getDisplayName() const {
	return name_;
}

String RosterItem::getSortableDisplayName() const {
	return sortableDisplayName_;
}


}