mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
22
src/fe-common/core/hilight-text.h
Normal file
22
src/fe-common/core/hilight-text.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef __HILIGHT_TEXT_H
|
||||
#define __HILIGHT_TEXT_H
|
||||
|
||||
typedef struct {
|
||||
char *text;
|
||||
|
||||
char **channels; /* if non-NULL, check the text only from these channels */
|
||||
int level; /* match only messages with this level, 0=default */
|
||||
char *color; /* if starts with number, \003 is automatically
|
||||
inserted before it. */
|
||||
|
||||
int nickmask:1; /* `text 'is a nick mask - colorify the nick */
|
||||
int fullword:1; /* match `text' only for full words */
|
||||
int regexp:1; /* `text' is a regular expression */
|
||||
} HILIGHT_REC;
|
||||
|
||||
extern GSList *hilights;
|
||||
|
||||
void hilight_text_init(void);
|
||||
void hilight_text_deinit(void);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue