added new msg tag feature for retroshare messages.

update rsmsg iface so need full recompile for gui
added serialiser test for new tag rsitems



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3379 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2010-08-19 21:47:26 +00:00
parent c6537bbe09
commit 331ed93720
10 changed files with 564 additions and 21 deletions

View file

@ -107,6 +107,26 @@ bool p3Msgs::MessageRead(std::string mid)
return 1;
}
bool p3Msgs::MessageGetTagTypes(MsgTagType& tags)
{
mMsgSrv->MessageGetTagTypes(tags);
}
bool p3Msgs::MessageGetMsgTag(std::string msgId, MsgTagInfo& info)
{
mMsgSrv->MessageGetMsgTag(msgId, info);
}
bool p3Msgs::MessageSetTagType(std::string& text, uint32_t tag_id, uint32_t rgb_color)
{
mMsgSrv->MessageSetTagType(text, tag_id, rgb_color);
}
bool p3Msgs::MessageSetMsgTag(MsgTagInfo& tagInfo)
{
mMsgSrv->MessageSetMsgTag(tagInfo);
}
/****************************************/
/****************************************/
bool p3Msgs::ChatSend(ChatInfo &ci)