2008-02-04 12:55:13 -05:00
|
|
|
#ifndef RS_MSG_GUI_INTERFACE_H
|
|
|
|
#define RS_MSG_GUI_INTERFACE_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* libretroshare/src/rsiface: rsmsgs.h
|
|
|
|
*
|
|
|
|
* RetroShare C++ Interface.
|
|
|
|
*
|
|
|
|
* Copyright 2007-2008 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
|
2010-08-06 05:40:23 -04:00
|
|
|
#include "rstypes.h"
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
/********************** For Messages and Channels *****************/
|
|
|
|
|
|
|
|
#define RS_MSG_BOXMASK 0x000f /* Mask for determining Box */
|
|
|
|
|
|
|
|
#define RS_MSG_OUTGOING 0x0001 /* !Inbox */
|
|
|
|
#define RS_MSG_PENDING 0x0002 /* OutBox */
|
|
|
|
#define RS_MSG_DRAFT 0x0004 /* Draft */
|
|
|
|
|
|
|
|
/* ORs of above */
|
|
|
|
#define RS_MSG_INBOX 0x00 /* Inbox */
|
|
|
|
#define RS_MSG_SENTBOX 0x01 /* Sentbox */
|
|
|
|
#define RS_MSG_OUTBOX 0x03 /* Outbox */
|
|
|
|
#define RS_MSG_DRAFTBOX 0x05 /* Draftbox */
|
|
|
|
|
2010-05-28 10:42:54 -04:00
|
|
|
#define RS_MSG_NEW 0x0010 /* New */
|
|
|
|
#define RS_MSG_TRASH 0x0020 /* Trash */
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
class MessageInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MessageInfo() {}
|
|
|
|
std::string msgId;
|
|
|
|
std::string srcId;
|
|
|
|
|
|
|
|
unsigned int msgflags;
|
|
|
|
|
|
|
|
std::list<std::string> msgto;
|
|
|
|
std::list<std::string> msgcc;
|
|
|
|
std::list<std::string> msgbcc;
|
|
|
|
|
|
|
|
std::wstring title;
|
|
|
|
std::wstring msg;
|
|
|
|
|
|
|
|
std::wstring attach_title;
|
|
|
|
std::wstring attach_comment;
|
|
|
|
std::list<FileInfo> files;
|
|
|
|
int size; /* total of files */
|
|
|
|
int count; /* file count */
|
|
|
|
|
|
|
|
int ts;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgInfoSummary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MsgInfoSummary() {}
|
|
|
|
|
|
|
|
std::string msgId;
|
|
|
|
std::string srcId;
|
|
|
|
|
|
|
|
uint32_t msgflags;
|
|
|
|
|
|
|
|
std::wstring title;
|
|
|
|
int count; /* file count */
|
|
|
|
time_t ts;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2010-08-19 17:47:26 -04:00
|
|
|
class MsgTagInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MsgTagInfo() {}
|
|
|
|
|
|
|
|
uint32_t tagId;
|
|
|
|
std::string msgId;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgTagType
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MsgTagType() {}
|
|
|
|
|
|
|
|
/* map containing tagid-> pair (text, rgb color) */
|
|
|
|
std::map<uint32_t, std::pair<std::string, uint32_t> > types;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
#define RS_CHAT_PUBLIC 0x0001
|
|
|
|
#define RS_CHAT_PRIVATE 0x0002
|
|
|
|
#define RS_CHAT_AVATAR_AVAILABLE 0x0004
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
class ChatInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string rsid;
|
|
|
|
unsigned int chatflags;
|
|
|
|
std::string name;
|
|
|
|
std::wstring msg;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::ostream &operator<<(std::ostream &out, const MessageInfo &info);
|
|
|
|
std::ostream &operator<<(std::ostream &out, const ChatInfo &info);
|
2010-08-19 17:47:26 -04:00
|
|
|
//std::ostream &operator<<(std::ostream &out, const MsgTagInfo);
|
|
|
|
//std::ostream &operator<<(std::ostream &out, const MsgTagType);
|
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
class RsMsgs;
|
|
|
|
extern RsMsgs *rsMsgs;
|
|
|
|
|
|
|
|
class RsMsgs
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RsMsgs() { return; }
|
|
|
|
virtual ~RsMsgs() { return; }
|
|
|
|
|
|
|
|
/****************************************/
|
|
|
|
/* Message Items */
|
|
|
|
|
|
|
|
virtual bool getMessageSummaries(std::list<MsgInfoSummary> &msgList) = 0;
|
|
|
|
virtual bool getMessage(std::string mId, MessageInfo &msg) = 0;
|
2010-05-28 10:42:54 -04:00
|
|
|
virtual void getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxNew, unsigned int *pnOutbox, unsigned int *pnDraftbox, unsigned int *pnSentbox, unsigned int *pnTrashbox) = 0;
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
virtual bool MessageSend(MessageInfo &info) = 0;
|
2010-05-25 05:32:14 -04:00
|
|
|
virtual bool MessageToDraft(MessageInfo &info) = 0;
|
2010-05-28 10:42:54 -04:00
|
|
|
virtual bool MessageToTrash(std::string mid, bool bTrash) = 0;
|
2010-05-25 05:32:14 -04:00
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
virtual bool MessageDelete(std::string mid) = 0;
|
|
|
|
virtual bool MessageRead(std::string mid) = 0;
|
|
|
|
|
2010-08-19 17:47:26 -04:00
|
|
|
/* message tagging */
|
|
|
|
|
|
|
|
virtual bool MessageGetTagTypes(MsgTagType& tags) = 0;
|
|
|
|
virtual bool MessageGetMsgTag(std::string msgId, MsgTagInfo& info) = 0;
|
|
|
|
|
|
|
|
virtual bool MessageSetTagType(std::string& text, uint32_t tag_id, uint32_t rgb_color) = 0;
|
|
|
|
virtual bool MessageSetMsgTag(MsgTagInfo& ) = 0;
|
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
/****************************************/
|
|
|
|
/* Chat */
|
2008-04-04 08:19:50 -04:00
|
|
|
virtual bool chatAvailable() = 0;
|
2008-02-04 12:55:13 -05:00
|
|
|
virtual bool ChatSend(ChatInfo &ci) = 0;
|
|
|
|
virtual bool getNewChat(std::list<ChatInfo> &chats) = 0;
|
2009-05-05 09:18:53 -04:00
|
|
|
virtual void sendStatusString(const std::string& id,const std::string& status_string) = 0 ;
|
2009-09-29 16:37:20 -04:00
|
|
|
virtual void sendGroupChatStatusString(const std::string& status_string) = 0 ;
|
|
|
|
|
|
|
|
virtual void setCustomStateString(const std::string& status_string) = 0 ;
|
|
|
|
virtual std::string getCustomStateString() = 0 ;
|
2009-10-04 18:27:42 -04:00
|
|
|
virtual std::string getCustomStateString(const std::string& peer_id) = 0 ;
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
// get avatar data for peer pid
|
|
|
|
virtual void getAvatarData(std::string pid,unsigned char *& data,int& size) = 0 ;
|
|
|
|
// set own avatar data
|
|
|
|
virtual void setOwnAvatarData(const unsigned char *data,int size) = 0 ;
|
|
|
|
virtual void getOwnAvatarData(unsigned char *& data,int& size) = 0 ;
|
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
/****************************************/
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|