2012-10-25 03:33:23 +04:00
|
|
|
#ifndef HEXCHAT_URL_H
|
|
|
|
#define HEXCHAT_URL_H
|
2011-02-24 06:14:30 +03:00
|
|
|
|
|
|
|
extern void *url_tree;
|
|
|
|
|
|
|
|
#define WORD_URL 1
|
|
|
|
#define WORD_NICK 2
|
|
|
|
#define WORD_CHANNEL 3
|
|
|
|
#define WORD_HOST 4
|
|
|
|
#define WORD_EMAIL 5
|
2012-10-07 05:00:52 +04:00
|
|
|
/* anything >0 will be displayed as a link by gtk_xtext_motion_notify() */
|
2011-02-24 06:14:30 +03:00
|
|
|
#define WORD_DIALOG -1
|
2012-10-07 05:00:52 +04:00
|
|
|
#define WORD_PATH -2
|
2011-02-24 06:14:30 +03:00
|
|
|
|
|
|
|
void url_clear (void);
|
2012-10-13 12:03:39 +04:00
|
|
|
void url_save_tree (const char *fname, const char *mode, gboolean fullpath);
|
2013-01-03 02:50:26 +04:00
|
|
|
int url_last (int *, int *);
|
|
|
|
int url_check_word (const char *word);
|
2011-02-24 06:14:30 +03:00
|
|
|
void url_check_line (char *buf, int len);
|
|
|
|
|
|
|
|
#endif
|