blob: 25b085ac4a45ef848086f15a011644d02a55f274 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#pragma once
/**
* A module handling the conversion between IRC colors and XHTML-IM, and
* vice versa.
*/
#include <xmpp/body.hpp>
#include <string>
#include <memory>
#include <tuple>
#define IRC_FORMAT_BOLD_CHAR '\x02' // done
#define IRC_FORMAT_COLOR_CHAR '\x03' // done
#define IRC_FORMAT_RESET_CHAR '\x0F' // done
#define IRC_FORMAT_FIXED_CHAR '\x11' // ??
#define IRC_FORMAT_REVERSE_CHAR '\x12' // maybe one day
#define IRC_FORMAT_REVERSE2_CHAR '\x16' // wat
#define IRC_FORMAT_ITALIC_CHAR '\x1D' // done
#define IRC_FORMAT_UNDERLINE_CHAR '\x1F' // done
#define IRC_FORMAT_NEWLINE_CHAR '\n' // done
static const char irc_format_char[] = {
IRC_FORMAT_BOLD_CHAR,
IRC_FORMAT_COLOR_CHAR,
IRC_FORMAT_RESET_CHAR,
IRC_FORMAT_FIXED_CHAR,
IRC_FORMAT_REVERSE_CHAR,
IRC_FORMAT_REVERSE2_CHAR,
IRC_FORMAT_ITALIC_CHAR,
IRC_FORMAT_UNDERLINE_CHAR,
IRC_FORMAT_NEWLINE_CHAR,
'\x00'
};
/**
* Convert the passed string into an XML tree representing the XHTML version
* of the message, converting the IRC colors symbols into xhtml-im
* formatting.
*
* Returns the body cleaned from any IRC formatting (but without any xhtml),
* and the body as XHTML-IM
*/
Xmpp::body irc_format_to_xhtmlim(const std::string& s);
|