From bd516ecdb218f4122acf077bef5a4dbde91653e5 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 21 Aug 2022 10:51:25 +0200 Subject: Implement GUI part of message sending --- data.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'data.c') diff --git a/data.c b/data.c index 7645679..3780fd0 100644 --- a/data.c +++ b/data.c @@ -102,3 +102,28 @@ void data_add_incoming_message(const char* sender_jid, const char* content) { // received message so that future responses go to this ressource } + +void data_add_outgoing_message(const char* sender_jid, const char* content, + chat_t* chat) { + + // allocate and initialize message_t + message_t* msg = malloc(sizeof(message_t)); + msg->sender_jid = malloc(sizeof(char)*strlen(sender_jid)); + strcpy(msg->sender_jid, sender_jid); + msg->recipient_jid = malloc(sizeof(char)*strlen(chat->jid)); + strcpy(msg->recipient_jid, chat->jid); + msg->content = malloc(sizeof(char)*strlen(content)); + strcpy(msg->content, content); + msg->next = NULL; + + // find pointer to next message of chat and add this message + message_t* m; + for (m = chat->messages; m != NULL; m=m->next); + m = msg; + + // TODO send this message via XMPP + + // create GUI widget for this message + gui_add_message_widget(msg, chat); + +} -- cgit v1.2.3-70-g09d2