forked from necrosis/slack-libpurple
-
Notifications
You must be signed in to change notification settings - Fork 39
/
slack-message.h
34 lines (29 loc) · 1.35 KB
/
slack-message.h
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
#ifndef _PURPLE_SLACK_MESSAGE_H
#define _PURPLE_SLACK_MESSAGE_H
#include "json.h"
#include "slack.h"
#include "slack-object.h"
gchar *slack_html_to_message(SlackAccount *sa, const char *s, PurpleMessageFlags flags);
void slack_message_to_html(GString *html, SlackAccount *sa, gchar *s, PurpleMessageFlags *flags, gchar *prepend_newline_str);
void slack_json_to_html(GString *html, SlackAccount *sa, json_value *json, PurpleMessageFlags *flags);
/**
* Display a pre-formatted string message
*
* @param html the HTML formatted message
* @param flags additional flags for message
*/
void slack_write_message(SlackAccount *sa, SlackObject *obj, const char *html, PurpleMessageFlags flags);
/**
* Display a JSON message
*
* @param json the json message object (should contain "subtype" field)
* @param flags additional flags for message
* @param force_threads Whether threads should be displayed despite "display_threads" setting.
*/
void slack_handle_message(SlackAccount *sa, SlackObject *conv, json_value *json, PurpleMessageFlags flags, gboolean force_threads);
/* RTM event handlers */
gboolean slack_message(SlackAccount *sa, json_value *json);
void slack_user_typing(SlackAccount *sa, json_value *json);
/* Purple protocol handlers */
unsigned int slack_send_typing(PurpleConnection *gc, const char *who, PurpleTypingState state);
#endif // _PURPLE_SLACK_MESSAGE_H