6e5107374ebc98ab268a504177e2ad0859927218
[silc.git] / apps / irssi / src / fe-common / core / hilight-text.h
1 #ifndef __HILIGHT_TEXT_H
2 #define __HILIGHT_TEXT_H
3
4 #ifdef HAVE_REGEX_H
5 #  include <regex.h>
6 #endif
7
8 typedef struct _HILIGHT_REC HILIGHT_REC;
9
10 struct _HILIGHT_REC {
11         char *text;
12
13         char **channels; /* if non-NULL, check the text only from these channels */
14         int level; /* match only messages with this level, 0=default */
15         char *color; /* if starts with number, \003 is automatically
16                         inserted before it. */
17         char *act_color; /* color for window activity */
18         int priority;
19
20         unsigned int nick:1; /* hilight only nick if possible */
21         unsigned int word:1; /* hilight only word, not full line */
22
23         unsigned int nickmask:1; /* `text' is a nick mask */
24         unsigned int fullword:1; /* match `text' only for full words */
25         unsigned int regexp:1; /* `text' is a regular expression */
26 #ifdef HAVE_REGEX_H
27         unsigned int regexp_compiled:1; /* should always be TRUE, unless regexp is invalid */
28         regex_t preg;
29 #endif
30 };
31
32 extern GSList *hilights;
33
34 HILIGHT_REC *hilight_match(SERVER_REC *server, const char *channel,
35                            const char *nick, const char *address,
36                            int level, const char *str,
37                            int *match_beg, int *match_end);
38
39 char *hilight_match_nick(SERVER_REC *server, const char *channel,
40                          const char *nick, const char *address,
41                          int level, const char *msg);
42
43 void hilight_create(HILIGHT_REC *rec);
44 void hilight_remove(HILIGHT_REC *rec);
45
46 void hilight_text_init(void);
47 void hilight_text_deinit(void);
48
49 #endif