diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-03-29 19:10:12 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-03-29 19:10:12 (GMT) |
commit | 358e411668b5c4df093e86c86d39044f92ac552a (patch) | |
tree | e45307dba8452eac0dced9fbe3387ffff0c9333a /Swift/QtUI/ChatList | |
parent | d2b07202f6b71b0601d032dbf93778d0a656e808 (diff) | |
download | swift-358e411668b5c4df093e86c86d39044f92ac552a.zip swift-358e411668b5c4df093e86c86d39044f92ac552a.tar.bz2 |
Missing file
Diffstat (limited to 'Swift/QtUI/ChatList')
-rw-r--r-- | Swift/QtUI/ChatList/ChatListMUCItem.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Swift/QtUI/ChatList/ChatListMUCItem.cpp b/Swift/QtUI/ChatList/ChatListMUCItem.cpp new file mode 100644 index 0000000..428cf4b --- /dev/null +++ b/Swift/QtUI/ChatList/ChatListMUCItem.cpp @@ -0,0 +1,28 @@ +#include "Swift/QtUI/ChatList/ChatListMUCItem.h" + +#include "Swift/QtUI/QtSwiftUtil.h" + +namespace Swift { +ChatListMUCItem::ChatListMUCItem(boost::shared_ptr<MUCBookmark> bookmark, ChatListGroupItem* parent) : ChatListItem(parent), bookmark_(bookmark) { + +} + +boost::shared_ptr<MUCBookmark> ChatListMUCItem::getBookmark() { + return bookmark_; +} + +QVariant ChatListMUCItem::data(int role) { + printf("Getting role %d\n", role); + switch (role) { + case Qt::DisplayRole: return P2QSTRING(bookmark_->getName()); + /*case Qt::TextColorRole: return textColor_; + case Qt::BackgroundColorRole: return backgroundColor_; + case Qt::ToolTipRole: return isContact() ? toolTipString() : QVariant(); + case StatusTextRole: return statusText_; + case AvatarRole: return avatar_; + case PresenceIconRole: return getPresenceIcon();*/ + default: return QVariant(); + } +} + +} |