diff options
author | RichardHitt <rbh00@netcom.com> | 2012-08-28 19:10:03 -0700 |
---|---|---|
committer | RichardHitt <rbh00@netcom.com> | 2012-08-28 19:10:03 -0700 |
commit | ed034bf80a39a337803df0161d7f80fd226a6856 (patch) | |
tree | a7d0ad5580b7230660f41a77e0ceed72389ae121 /src/common/xchat.h | |
parent | b7f5f045c6b25ffe3957431acd1d5a9e0330ebfa (diff) |
Enhance LASTLOG to use gtk_xtext_search_textentry()
Diffstat (limited to 'src/common/xchat.h')
-rw-r--r-- | src/common/xchat.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/common/xchat.h b/src/common/xchat.h index 66f43522..0ebe83cf 100644 --- a/src/common/xchat.h +++ b/src/common/xchat.h @@ -346,6 +346,15 @@ struct xchatprefs #define SET_ON 1 #define SET_DEFAULT 2 /* use global setting */ +/* Moved from fe-gtk for use in outbound.c as well -- */ +typedef enum gtk_xtext_search_flags_e { + case_match = 1, + backward = 2, + highlight = 4, + follow = 8, + regexp = 16 +} gtk_xtext_search_flags; + typedef struct session { /* Per-Channel Alerts */ @@ -405,7 +414,7 @@ typedef struct session int end_of_names:1; int doing_who:1; /* /who sent on this channel */ int done_away_check:1; /* done checking for away status changes */ - unsigned int lastlog_regexp:1; /* this is a lastlog and using regexp */ + gtk_xtext_search_flags lastlog_flags; } session; struct msproxy_state_t |