[23e1110] | 1 | /* Copyright (c) 2006-2009 The BarnOwl Developers. All rights reserved. |
---|
[81001c0] | 2 | * Copyright (c) 2004 James Kretchmar. All rights reserved. |
---|
[5ca5f8e] | 3 | * |
---|
[81001c0] | 4 | * This program is free software. You can redistribute it and/or |
---|
| 5 | * modify under the terms of the Sleepycat License. See the COPYING |
---|
| 6 | * file included with the distribution for more information. |
---|
[5ca5f8e] | 7 | */ |
---|
| 8 | |
---|
[7d4fbcd] | 9 | #ifndef INC_OWL_H |
---|
| 10 | #define INC_OWL_H |
---|
| 11 | |
---|
[1bdffcb] | 12 | #ifndef OWL_PERL |
---|
| 13 | #include <curses.h> |
---|
| 14 | #endif |
---|
[7d4fbcd] | 15 | #include <sys/param.h> |
---|
| 16 | #include <EXTERN.h> |
---|
| 17 | #include <netdb.h> |
---|
| 18 | #include <regex.h> |
---|
[d09e5a1] | 19 | #include <time.h> |
---|
[c9e72d1] | 20 | #include <signal.h> |
---|
[8232149] | 21 | #include <termios.h> |
---|
[731dd1e] | 22 | #include "libfaim/aim.h" |
---|
[dd24b6a] | 23 | #include <wchar.h> |
---|
[7d4fbcd] | 24 | #include "config.h" |
---|
[34509d5] | 25 | #include "glib.h" |
---|
[be0a79f] | 26 | #ifdef HAVE_LIBZEPHYR |
---|
[373b7e7] | 27 | #include <zephyr/zephyr.h> |
---|
[be0a79f] | 28 | #endif |
---|
[e6449bc] | 29 | #ifdef HAVE_COM_ERR_H |
---|
| 30 | #include <com_err.h> |
---|
| 31 | #endif |
---|
| 32 | |
---|
[6922edd] | 33 | /* Perl and curses don't play nice. */ |
---|
| 34 | #ifdef OWL_PERL |
---|
| 35 | typedef void WINDOW; |
---|
[18e28a4] | 36 | /* logout is defined in FreeBSD. */ |
---|
| 37 | #define logout logout_ |
---|
[88dc766] | 38 | /* aim.h defines bool */ |
---|
| 39 | #define HAS_BOOL |
---|
[6922edd] | 40 | #include <perl.h> |
---|
[120291c] | 41 | #include "owl_perl.h" |
---|
[18e28a4] | 42 | #undef logout |
---|
[6922edd] | 43 | #include "XSUB.h" |
---|
| 44 | #else |
---|
| 45 | typedef void SV; |
---|
| 46 | #endif |
---|
| 47 | |
---|
[37f27bc] | 48 | #define OWL_VERSION_STRING PACKAGE_VERSION |
---|
[2a2bb60] | 49 | |
---|
| 50 | /* Feature that is being tested to redirect stderr through a pipe. |
---|
| 51 | * There may still be some portability problems with this. */ |
---|
| 52 | #define OWL_STDERR_REDIR 1 |
---|
[7d4fbcd] | 53 | |
---|
| 54 | #define OWL_DEBUG 0 |
---|
| 55 | #define OWL_DEBUG_FILE "/var/tmp/owldebug" |
---|
| 56 | |
---|
[bd3f232] | 57 | #define OWL_CONFIG_DIR "/.owl" /* this is relative to the user's home directory */ |
---|
[38cf544c] | 58 | #define OWL_STARTUP_FILE "/.owl/startup" /* this is relative to the user's home directory */ |
---|
| 59 | |
---|
[7d4fbcd] | 60 | #define OWL_FMTEXT_ATTR_NONE 0 |
---|
| 61 | #define OWL_FMTEXT_ATTR_BOLD 1 |
---|
| 62 | #define OWL_FMTEXT_ATTR_REVERSE 2 |
---|
| 63 | #define OWL_FMTEXT_ATTR_UNDERLINE 4 |
---|
| 64 | |
---|
[9866c3a] | 65 | #define OWL_FMTEXT_UC_BASE 0x100000 /* Unicode Plane 16 - Supplementary Private Use Area-B*/ |
---|
| 66 | #define OWL_FMTEXT_UC_ATTR ( OWL_FMTEXT_UC_BASE | 0x800 ) |
---|
| 67 | #define OWL_FMTEXT_UC_ATTR_MASK 0x7 |
---|
| 68 | #define OWL_FMTEXT_UC_COLOR_BASE ( OWL_FMTEXT_UC_BASE | 0x400 ) |
---|
| 69 | #define OWL_FMTEXT_UC_FGCOLOR OWL_FMTEXT_UC_COLOR_BASE |
---|
| 70 | #define OWL_FMTEXT_UC_BGCOLOR ( OWL_FMTEXT_UC_COLOR_BASE | 0x200 ) |
---|
| 71 | #define OWL_FMTEXT_UC_DEFAULT_COLOR 0x100 |
---|
| 72 | #define OWL_FMTEXT_UC_FGDEFAULT ( OWL_FMTEXT_UC_FGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR ) |
---|
| 73 | #define OWL_FMTEXT_UC_BGDEFAULT ( OWL_FMTEXT_UC_BGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR ) |
---|
| 74 | #define OWL_FMTEXT_UC_COLOR_MASK 0xFF |
---|
| 75 | #define OWL_FMTEXT_UC_ALLCOLOR_MASK ( OWL_FMTEXT_UC_COLOR_MASK | OWL_FMTEXT_UC_DEFAULT_COLOR | 0x200) |
---|
| 76 | #define OWL_FMTEXT_UC_STARTBYTE_UTF8 '\xf4' |
---|
| 77 | |
---|
| 78 | #define OWL_FMTEXT_UTF8_ATTR_NONE "\xf4\x80\xa0\x80" |
---|
| 79 | #define OWL_FMTEXT_UTF8_FGDEFAULT "\xf4\x80\x94\x80" |
---|
[6f6330b] | 80 | #define OWL_FMTEXT_UTF8_BGDEFAULT "\xf4\x80\x9C\x80" |
---|
[9866c3a] | 81 | |
---|
[7d4fbcd] | 82 | #define OWL_COLOR_BLACK 0 |
---|
| 83 | #define OWL_COLOR_RED 1 |
---|
| 84 | #define OWL_COLOR_GREEN 2 |
---|
| 85 | #define OWL_COLOR_YELLOW 3 |
---|
| 86 | #define OWL_COLOR_BLUE 4 |
---|
| 87 | #define OWL_COLOR_MAGENTA 5 |
---|
| 88 | #define OWL_COLOR_CYAN 6 |
---|
| 89 | #define OWL_COLOR_WHITE 7 |
---|
[c2c5c77] | 90 | #define OWL_COLOR_DEFAULT -1 |
---|
[601733d] | 91 | #define OWL_COLOR_INVALID -2 |
---|
[7d4fbcd] | 92 | |
---|
| 93 | #define OWL_EDITWIN_STYLE_MULTILINE 0 |
---|
| 94 | #define OWL_EDITWIN_STYLE_ONELINE 1 |
---|
| 95 | |
---|
[f4d0975] | 96 | #define OWL_PROTOCOL_ZEPHYR 0 |
---|
| 97 | #define OWL_PROTOCOL_AIM 1 |
---|
| 98 | #define OWL_PROTOCOL_JABBER 2 |
---|
| 99 | #define OWL_PROTOCOL_ICQ 3 |
---|
| 100 | #define OWL_PROTOCOL_YAHOO 4 |
---|
| 101 | #define OWL_PROTOCOL_MSN 5 |
---|
| 102 | |
---|
[4b464a4] | 103 | #define OWL_MESSAGE_DIRECTION_NONE 0 |
---|
| 104 | #define OWL_MESSAGE_DIRECTION_IN 1 |
---|
| 105 | #define OWL_MESSAGE_DIRECTION_OUT 2 |
---|
[7d4fbcd] | 106 | |
---|
[afbf668] | 107 | #define OWL_MUX_READ 1 |
---|
| 108 | #define OWL_MUX_WRITE 2 |
---|
| 109 | #define OWL_MUX_EXCEPT 4 |
---|
| 110 | |
---|
[7d4fbcd] | 111 | #define OWL_DIRECTION_NONE 0 |
---|
| 112 | #define OWL_DIRECTION_DOWNWARDS 1 |
---|
| 113 | #define OWL_DIRECTION_UPWARDS 2 |
---|
| 114 | |
---|
[12c35df] | 115 | #define OWL_LOGGING_DIRECTION_BOTH 0 |
---|
| 116 | #define OWL_LOGGING_DIRECTION_IN 1 |
---|
| 117 | #define OWL_LOGGING_DIRECTION_OUT 2 |
---|
| 118 | |
---|
[88736cb] | 119 | #define OWL_SCROLLMODE_NORMAL 0 |
---|
| 120 | #define OWL_SCROLLMODE_TOP 1 |
---|
| 121 | #define OWL_SCROLLMODE_NEARTOP 2 |
---|
| 122 | #define OWL_SCROLLMODE_CENTER 3 |
---|
| 123 | #define OWL_SCROLLMODE_PAGED 4 |
---|
[aa2f33b3] | 124 | #define OWL_SCROLLMODE_PAGEDCENTER 5 |
---|
| 125 | |
---|
[7d4fbcd] | 126 | #define OWL_TAB 3 /* This *HAS* to be the size of TABSTR below */ |
---|
| 127 | #define OWL_TABSTR " " |
---|
| 128 | #define OWL_MSGTAB 7 |
---|
| 129 | #define OWL_TYPWIN_SIZE 8 |
---|
| 130 | #define OWL_HISTORYSIZE 50 |
---|
| 131 | |
---|
| 132 | /* Indicate current state, as well as what is allowed */ |
---|
| 133 | #define OWL_CTX_ANY 0xffff |
---|
| 134 | /* Only one of these may be active at a time... */ |
---|
| 135 | #define OWL_CTX_MODE_BITS 0x000f |
---|
| 136 | #define OWL_CTX_STARTUP 0x0001 |
---|
| 137 | #define OWL_CTX_READCONFIG 0x0002 |
---|
| 138 | #define OWL_CTX_INTERACTIVE 0x0004 |
---|
| 139 | /* Only one of these may be active at a time... */ |
---|
| 140 | #define OWL_CTX_ACTIVE_BITS 0xfff0 |
---|
| 141 | #define OWL_CTX_POPWIN 0x00f0 |
---|
| 142 | #define OWL_CTX_POPLESS 0x0010 |
---|
| 143 | #define OWL_CTX_RECWIN 0x0f00 |
---|
| 144 | #define OWL_CTX_RECV 0x0100 |
---|
| 145 | #define OWL_CTX_TYPWIN 0xf000 |
---|
[cf83b7a] | 146 | #define OWL_CTX_EDIT 0x7000 |
---|
[7d4fbcd] | 147 | #define OWL_CTX_EDITLINE 0x1000 |
---|
| 148 | #define OWL_CTX_EDITMULTI 0x2000 |
---|
[cf83b7a] | 149 | #define OWL_CTX_EDITRESPONSE 0x4000 |
---|
[7d4fbcd] | 150 | |
---|
| 151 | #define OWL_USERCLUE_NONE 0 |
---|
| 152 | #define OWL_USERCLUE_CLASSES 1 |
---|
| 153 | #define OWL_USERCLUE_FOOBAR 2 |
---|
| 154 | #define OWL_USERCLUE_BAZ 4 |
---|
| 155 | |
---|
| 156 | #define OWL_WEBBROWSER_NONE 0 |
---|
| 157 | #define OWL_WEBBROWSER_NETSCAPE 1 |
---|
| 158 | #define OWL_WEBBROWSER_GALEON 2 |
---|
[ae9e6be] | 159 | #define OWL_WEBBROWSER_OPERA 3 |
---|
[7d4fbcd] | 160 | |
---|
| 161 | #define OWL_VARIABLE_OTHER 0 |
---|
| 162 | #define OWL_VARIABLE_INT 1 |
---|
| 163 | #define OWL_VARIABLE_BOOL 2 |
---|
| 164 | #define OWL_VARIABLE_STRING 3 |
---|
| 165 | |
---|
| 166 | #define OWL_FILTER_MAX_DEPTH 300 |
---|
| 167 | |
---|
[4b464a4] | 168 | #define OWL_KEYMAP_MAXSTACK 20 |
---|
[7d4fbcd] | 169 | |
---|
[4b464a4] | 170 | #define OWL_KEYBINDING_COMMAND 1 /* command string */ |
---|
| 171 | #define OWL_KEYBINDING_FUNCTION 2 /* function taking no args */ |
---|
[7d4fbcd] | 172 | |
---|
[4b464a4] | 173 | #define OWL_DEFAULT_ZAWAYMSG "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n" |
---|
[4b660cc] | 174 | #define OWL_DEFAULT_AAWAYMSG "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n" |
---|
[7d4fbcd] | 175 | |
---|
[1c7a4e0] | 176 | #define OWL_CMD_ALIAS_SUMMARY_PREFIX "command alias to: " |
---|
[7d4fbcd] | 177 | |
---|
[e7cc1c3] | 178 | #define OWL_WEBZEPHYR_PRINCIPAL "daemon.webzephyr" |
---|
[1d3e925] | 179 | #define OWL_WEBZEPHYR_CLASS "webzephyr" |
---|
| 180 | #define OWL_WEBZEPHYR_OPCODE "webzephyr" |
---|
[e7cc1c3] | 181 | |
---|
[80e54a7] | 182 | #define OWL_REGEX_QUOTECHARS "+*.?[]^\\${}()" |
---|
[bc08664] | 183 | #define OWL_REGEX_QUOTEWITH "\\" |
---|
| 184 | |
---|
[0435c7d] | 185 | #if defined(HAVE_DES_STRING_TO_KEY) && defined(HAVE_DES_KEY_SCHED) && defined(HAVE_DES_ECB_ENCRYPT) |
---|
[c86a35c] | 186 | #define OWL_ENABLE_ZCRYPT 1 |
---|
[c269e22] | 187 | #endif |
---|
| 188 | |
---|
[62fdd29] | 189 | #define OWL_META(key) ((key)|010000) |
---|
[f87c490] | 190 | /* OWL_CTRL is definied in kepress.c */ |
---|
[7d4fbcd] | 191 | |
---|
| 192 | #define LINE 2048 |
---|
| 193 | |
---|
[712caac] | 194 | #ifdef HAVE_LIBZEPHYR |
---|
| 195 | /* libzephyr doesn't use const, so we appease the type system with this cast. */ |
---|
| 196 | static inline char *zstr(const char *str) |
---|
| 197 | { |
---|
| 198 | return (char *)str; |
---|
| 199 | } |
---|
| 200 | #endif |
---|
| 201 | |
---|
[e19eb97] | 202 | /* Convert char *const * into const char *const *. This conversion is safe, |
---|
[c529ac8] | 203 | * and implicit in C++ (conv.qual 4) but for some reason not in C. */ |
---|
[e19eb97] | 204 | static inline const char *const *strs(char *const *pstr) |
---|
[c529ac8] | 205 | { |
---|
[e19eb97] | 206 | return (const char *const *)pstr; |
---|
[c529ac8] | 207 | } |
---|
| 208 | |
---|
[7d4fbcd] | 209 | typedef struct _owl_variable { |
---|
| 210 | char *name; |
---|
| 211 | int type; /* OWL_VARIABLE_* */ |
---|
| 212 | void *pval_default; /* for types other and string */ |
---|
| 213 | int ival_default; /* for types int and bool */ |
---|
| 214 | char *validsettings; /* documentation of valid settings */ |
---|
[aa2f33b3] | 215 | char *summary; /* summary of usage */ |
---|
| 216 | char *description; /* detailed description */ |
---|
[7d4fbcd] | 217 | void *val; /* current value */ |
---|
[64735f0] | 218 | int (*validate_fn)(const struct _owl_variable *v, const void *newval); |
---|
[7d4fbcd] | 219 | /* returns 1 if newval is valid */ |
---|
[e19eb97] | 220 | int (*set_fn)(struct _owl_variable *v, const void *newval); |
---|
[7d4fbcd] | 221 | /* sets the variable to a value |
---|
| 222 | * of the appropriate type. |
---|
| 223 | * unless documented, this |
---|
| 224 | * should make a copy. |
---|
| 225 | * returns 0 on success. */ |
---|
[e19eb97] | 226 | int (*set_fromstring_fn)(struct _owl_variable *v, const char *newval); |
---|
[7d4fbcd] | 227 | /* sets the variable to a value |
---|
| 228 | * of the appropriate type. |
---|
| 229 | * unless documented, this |
---|
| 230 | * should make a copy. |
---|
| 231 | * returns 0 on success. */ |
---|
[64735f0] | 232 | const void *(*get_fn)(const struct _owl_variable *v); |
---|
[7d4fbcd] | 233 | /* returns a reference to the current value. |
---|
| 234 | * WARNING: this approach is hard to make |
---|
| 235 | * thread-safe... */ |
---|
[64735f0] | 236 | int (*get_tostring_fn)(const struct _owl_variable *v, |
---|
[e19eb97] | 237 | char *buf, int bufsize, const void *val); |
---|
[7d4fbcd] | 238 | /* converts val to a string |
---|
| 239 | * and puts into buf */ |
---|
| 240 | void (*free_fn)(struct _owl_variable *v); |
---|
| 241 | /* frees val as needed */ |
---|
| 242 | } owl_variable; |
---|
| 243 | |
---|
[428834d] | 244 | typedef struct _owl_input { |
---|
| 245 | int ch; |
---|
| 246 | gunichar uch; |
---|
| 247 | } owl_input; |
---|
| 248 | |
---|
[7d4fbcd] | 249 | typedef struct _owl_fmtext { |
---|
| 250 | int textlen; |
---|
[a387d12e] | 251 | int bufflen; |
---|
[7d4fbcd] | 252 | char *textbuff; |
---|
[9866c3a] | 253 | char default_attrs; |
---|
| 254 | short default_fgcolor; |
---|
| 255 | short default_bgcolor; |
---|
[7d4fbcd] | 256 | } owl_fmtext; |
---|
| 257 | |
---|
| 258 | typedef struct _owl_list { |
---|
| 259 | int size; |
---|
| 260 | int avail; |
---|
| 261 | void **list; |
---|
| 262 | } owl_list; |
---|
| 263 | |
---|
| 264 | typedef struct _owl_dict_el { |
---|
| 265 | char *k; /* key */ |
---|
| 266 | void *v; /* value */ |
---|
| 267 | } owl_dict_el; |
---|
| 268 | |
---|
| 269 | typedef struct _owl_dict { |
---|
| 270 | int size; |
---|
| 271 | int avail; |
---|
| 272 | owl_dict_el *els; /* invariant: sorted by k */ |
---|
| 273 | } owl_dict; |
---|
| 274 | typedef owl_dict owl_vardict; /* dict of variables */ |
---|
| 275 | typedef owl_dict owl_cmddict; /* dict of commands */ |
---|
| 276 | |
---|
| 277 | typedef struct _owl_context { |
---|
| 278 | int mode; |
---|
| 279 | void *data; /* determined by mode */ |
---|
| 280 | } owl_context; |
---|
| 281 | |
---|
| 282 | typedef struct _owl_cmd { /* command */ |
---|
| 283 | char *name; |
---|
| 284 | |
---|
| 285 | char *summary; /* one line summary of command */ |
---|
| 286 | char *usage; /* usage synopsis */ |
---|
| 287 | char *description; /* long description of command */ |
---|
| 288 | |
---|
| 289 | int validctx; /* bitmask of valid contexts */ |
---|
| 290 | |
---|
| 291 | /* we should probably have a type here that says which of |
---|
| 292 | * the following is valid, and maybe make the below into a union... */ |
---|
| 293 | |
---|
| 294 | /* Only one of these may be non-NULL ... */ |
---|
| 295 | |
---|
| 296 | char *cmd_aliased_to; /* what this command is aliased to... */ |
---|
| 297 | |
---|
| 298 | /* These don't take any context */ |
---|
[e19eb97] | 299 | char *(*cmd_args_fn)(int argc, const char *const *argv, const char *buff); |
---|
[7d4fbcd] | 300 | /* takes argv and the full command as buff. |
---|
| 301 | * caller must free return value if !NULL */ |
---|
| 302 | void (*cmd_v_fn)(void); /* takes no args */ |
---|
| 303 | void (*cmd_i_fn)(int i); /* takes an int as an arg */ |
---|
| 304 | |
---|
| 305 | /* The following also take the active context if it's valid */ |
---|
[e19eb97] | 306 | char *(*cmd_ctxargs_fn)(void *ctx, int argc, const char *const *argv, const char *buff); |
---|
[7d4fbcd] | 307 | /* takes argv and the full command as buff. |
---|
| 308 | * caller must free return value if !NULL */ |
---|
| 309 | void (*cmd_ctxv_fn)(void *ctx); /* takes no args */ |
---|
| 310 | void (*cmd_ctxi_fn)(void *ctx, int i); /* takes an int as an arg */ |
---|
[6922edd] | 311 | SV *cmd_perl; /* Perl closure that takes a list of args */ |
---|
[7d4fbcd] | 312 | } owl_cmd; |
---|
| 313 | |
---|
| 314 | |
---|
| 315 | typedef struct _owl_zwrite { |
---|
[24ccc01] | 316 | char *zwriteline; |
---|
[ce7db4d] | 317 | char *class; |
---|
| 318 | char *inst; |
---|
| 319 | char *realm; |
---|
| 320 | char *opcode; |
---|
[56330ff] | 321 | char *zsig; |
---|
[ce7db4d] | 322 | char *message; |
---|
[7d4fbcd] | 323 | owl_list recips; |
---|
| 324 | int cc; |
---|
| 325 | int noping; |
---|
| 326 | } owl_zwrite; |
---|
| 327 | |
---|
[d0d65df] | 328 | typedef struct _owl_pair { |
---|
[e19eb97] | 329 | const char *key; |
---|
[de1c8a5] | 330 | char *value; |
---|
[d0d65df] | 331 | } owl_pair; |
---|
| 332 | |
---|
[a387d12e] | 333 | struct _owl_fmtext_cache; |
---|
| 334 | |
---|
[7d4fbcd] | 335 | typedef struct _owl_message { |
---|
| 336 | int id; |
---|
[4b464a4] | 337 | int direction; |
---|
[be0a79f] | 338 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 339 | ZNotice_t notice; |
---|
[be0a79f] | 340 | #endif |
---|
[a387d12e] | 341 | struct _owl_fmtext_cache * fmtext; |
---|
[7d4fbcd] | 342 | int delete; |
---|
[e19eb97] | 343 | const char *hostname; |
---|
[65ad073] | 344 | owl_list attributes; /* this is a list of pairs */ |
---|
[25dd31a] | 345 | char *timestr; |
---|
| 346 | time_t time; |
---|
[7d4fbcd] | 347 | } owl_message; |
---|
| 348 | |
---|
[a387d12e] | 349 | #define OWL_FMTEXT_CACHE_SIZE 1000 |
---|
| 350 | /* We cache the saved fmtexts for the last bunch of messages we |
---|
| 351 | rendered */ |
---|
| 352 | typedef struct _owl_fmtext_cache { |
---|
| 353 | owl_message * message; |
---|
| 354 | owl_fmtext fmtext; |
---|
| 355 | } owl_fmtext_cache; |
---|
| 356 | |
---|
[bd3f232] | 357 | typedef struct _owl_style { |
---|
| 358 | char *name; |
---|
[120291c] | 359 | SV *perlobj; |
---|
[bd3f232] | 360 | } owl_style; |
---|
| 361 | |
---|
[7d4fbcd] | 362 | typedef struct _owl_mainwin { |
---|
| 363 | int curtruncated; |
---|
[f2e36b5] | 364 | int lasttruncated; |
---|
[7d4fbcd] | 365 | int lastdisplayed; |
---|
| 366 | } owl_mainwin; |
---|
| 367 | |
---|
| 368 | typedef struct _owl_viewwin { |
---|
| 369 | owl_fmtext fmtext; |
---|
| 370 | int textlines; |
---|
| 371 | int topline; |
---|
| 372 | int rightshift; |
---|
| 373 | int winlines, wincols; |
---|
| 374 | WINDOW *curswin; |
---|
[afbf668] | 375 | void (*onclose_hook) (struct _owl_viewwin *vwin, void *data); |
---|
| 376 | void *onclose_hook_data; |
---|
[7d4fbcd] | 377 | } owl_viewwin; |
---|
| 378 | |
---|
| 379 | typedef struct _owl_popwin { |
---|
| 380 | WINDOW *borderwin; |
---|
| 381 | WINDOW *popwin; |
---|
| 382 | int lines; |
---|
| 383 | int cols; |
---|
| 384 | int active; |
---|
| 385 | int needsfirstrefresh; |
---|
| 386 | } owl_popwin; |
---|
| 387 | |
---|
| 388 | typedef struct _owl_messagelist { |
---|
| 389 | owl_list list; |
---|
| 390 | } owl_messagelist; |
---|
| 391 | |
---|
| 392 | typedef struct _owl_regex { |
---|
| 393 | int negate; |
---|
| 394 | char *string; |
---|
| 395 | regex_t re; |
---|
| 396 | } owl_regex; |
---|
| 397 | |
---|
| 398 | typedef struct _owl_filterelement { |
---|
[bd65108] | 399 | int (*match_message)(const struct _owl_filterelement *fe, const owl_message *m); |
---|
[cb769bb] | 400 | /* Append a string representation of the filterelement onto buf*/ |
---|
[bd65108] | 401 | void (*print_elt)(const struct _owl_filterelement *fe, GString *buf); |
---|
[cb769bb] | 402 | /* Operands for and,or,not*/ |
---|
| 403 | struct _owl_filterelement *left, *right; |
---|
| 404 | /* For regex filters*/ |
---|
[7d4fbcd] | 405 | owl_regex re; |
---|
[cb769bb] | 406 | /* Used by regexes, filter references, and perl */ |
---|
| 407 | char *field; |
---|
[7d4fbcd] | 408 | } owl_filterelement; |
---|
| 409 | |
---|
| 410 | typedef struct _owl_filter { |
---|
| 411 | char *name; |
---|
[cb769bb] | 412 | owl_filterelement * root; |
---|
[8fa9562] | 413 | int fgcolor; |
---|
| 414 | int bgcolor; |
---|
[59cf91c] | 415 | int cachedmsgid; /* cached msgid: should move into view eventually */ |
---|
[7d4fbcd] | 416 | } owl_filter; |
---|
| 417 | |
---|
| 418 | typedef struct _owl_view { |
---|
[c3ab155] | 419 | char *name; |
---|
[7d4fbcd] | 420 | owl_filter *filter; |
---|
| 421 | owl_messagelist ml; |
---|
[1fdab04] | 422 | const owl_style *style; |
---|
[7d4fbcd] | 423 | } owl_view; |
---|
| 424 | |
---|
| 425 | typedef struct _owl_history { |
---|
| 426 | owl_list hist; |
---|
| 427 | int cur; |
---|
| 428 | int touched; |
---|
| 429 | int partial; |
---|
[12c35df] | 430 | int repeats; |
---|
[7d4fbcd] | 431 | } owl_history; |
---|
| 432 | |
---|
[a556caa] | 433 | typedef struct _owl_editwin owl_editwin; |
---|
[a88f35a] | 434 | typedef struct _owl_editwin_excursion owl_editwin_excursion; |
---|
[10b866d] | 435 | |
---|
[7d4fbcd] | 436 | typedef struct _owl_keybinding { |
---|
[e1b136bf] | 437 | int *keys; /* keypress stack */ |
---|
| 438 | int len; /* length of stack */ |
---|
[7d4fbcd] | 439 | int type; /* command or function? */ |
---|
| 440 | char *desc; /* description (or "*user*") */ |
---|
| 441 | char *command; /* command, if of type command */ |
---|
| 442 | void (*function_fn)(void); /* function ptr, if of type function */ |
---|
| 443 | } owl_keybinding; |
---|
| 444 | |
---|
| 445 | typedef struct _owl_keymap { |
---|
| 446 | char *name; /* name of keymap */ |
---|
| 447 | char *desc; /* description */ |
---|
| 448 | owl_list bindings; /* key bindings */ |
---|
[afa200a] | 449 | const struct _owl_keymap *submap; /* submap */ |
---|
[428834d] | 450 | void (*default_fn)(owl_input j); /* default action (takes a keypress) */ |
---|
| 451 | void (*prealways_fn)(owl_input j); /* always called before a keypress is received */ |
---|
| 452 | void (*postalways_fn)(owl_input j); /* always called after keypress is processed */ |
---|
[7d4fbcd] | 453 | } owl_keymap; |
---|
| 454 | |
---|
| 455 | typedef struct _owl_keyhandler { |
---|
| 456 | owl_dict keymaps; /* dictionary of keymaps */ |
---|
[afa200a] | 457 | const owl_keymap *active; /* currently active keymap */ |
---|
[7d4fbcd] | 458 | int in_esc; /* escape pressed? */ |
---|
| 459 | int kpstack[OWL_KEYMAP_MAXSTACK+1]; /* current stack of keypresses */ |
---|
| 460 | int kpstackpos; /* location in stack (-1 = none) */ |
---|
| 461 | } owl_keyhandler; |
---|
| 462 | |
---|
[f4d0975] | 463 | typedef struct _owl_buddy { |
---|
| 464 | int proto; |
---|
| 465 | char *name; |
---|
| 466 | int isidle; |
---|
| 467 | int idlesince; |
---|
| 468 | } owl_buddy; |
---|
| 469 | |
---|
[aa5f725] | 470 | typedef struct _owl_buddylist { |
---|
| 471 | owl_list buddies; |
---|
| 472 | } owl_buddylist; |
---|
| 473 | |
---|
[5a95b69] | 474 | typedef struct _owl_zbuddylist { |
---|
| 475 | owl_list zusers; |
---|
| 476 | } owl_zbuddylist; |
---|
| 477 | |
---|
[6a415e9] | 478 | typedef struct _owl_timer { |
---|
[b7bb454] | 479 | time_t time; |
---|
| 480 | int interval; |
---|
| 481 | void (*callback)(struct _owl_timer *, void *); |
---|
[c675b39] | 482 | void (*destroy)(struct _owl_timer *); |
---|
[b7bb454] | 483 | void *data; |
---|
[6a415e9] | 484 | } owl_timer; |
---|
[aa5f725] | 485 | |
---|
[ec6ff52] | 486 | typedef struct _owl_errqueue { |
---|
| 487 | owl_list errlist; |
---|
| 488 | } owl_errqueue; |
---|
| 489 | |
---|
[8fa9562] | 490 | typedef struct _owl_colorpair_mgr { |
---|
[99c7549] | 491 | int next; |
---|
[c2c5c77] | 492 | short **pairs; |
---|
[8fa9562] | 493 | } owl_colorpair_mgr; |
---|
| 494 | |
---|
[124aebc] | 495 | typedef struct _owl_obarray { |
---|
| 496 | owl_list strings; |
---|
| 497 | } owl_obarray; |
---|
| 498 | |
---|
[9c7a701] | 499 | typedef struct _owl_dispatch { |
---|
[f36cd97] | 500 | int fd; /* FD to watch for dispatch. */ |
---|
[1895c29] | 501 | int needs_gc; |
---|
[f36cd97] | 502 | void (*cfunc)(struct _owl_dispatch*); /* C function to dispatch to. */ |
---|
| 503 | void (*destroy)(struct _owl_dispatch*); /* Destructor */ |
---|
| 504 | void *data; |
---|
[9c7a701] | 505 | } owl_dispatch; |
---|
| 506 | |
---|
[40c6657] | 507 | typedef struct _owl_popexec { |
---|
| 508 | int refcount; |
---|
| 509 | owl_viewwin *vwin; |
---|
| 510 | int winactive; |
---|
[0e5afa2] | 511 | pid_t pid; /* or 0 if it has terminated */ |
---|
[40c6657] | 512 | owl_dispatch dispatch; |
---|
| 513 | } owl_popexec; |
---|
| 514 | |
---|
[7d4fbcd] | 515 | typedef struct _owl_global { |
---|
| 516 | owl_mainwin mw; |
---|
| 517 | owl_popwin pw; |
---|
[10b866d] | 518 | owl_history cmdhist; /* command history */ |
---|
| 519 | owl_history msghist; /* outgoing message history */ |
---|
[7d4fbcd] | 520 | owl_keyhandler kh; |
---|
| 521 | owl_list filterlist; |
---|
| 522 | owl_list puntlist; |
---|
| 523 | owl_vardict vars; |
---|
| 524 | owl_cmddict cmds; |
---|
| 525 | owl_context ctx; |
---|
[ec6ff52] | 526 | owl_errqueue errqueue; |
---|
[7d4fbcd] | 527 | int lines, cols; |
---|
[bd783db] | 528 | int curmsg, topmsg; |
---|
[70110286] | 529 | int markedmsgid; /* for finding the marked message when it has moved. */ |
---|
[7d4fbcd] | 530 | int curmsg_vert_offset; |
---|
| 531 | owl_view current_view; |
---|
| 532 | owl_messagelist msglist; |
---|
| 533 | WINDOW *recwin, *sepwin, *msgwin, *typwin; |
---|
| 534 | int needrefresh; |
---|
| 535 | int rightshift; |
---|
| 536 | int resizepending; |
---|
| 537 | int recwinlines; |
---|
| 538 | int typwinactive; |
---|
[a8938c7] | 539 | char *thishost; |
---|
| 540 | char *homedir; |
---|
[b363d83] | 541 | char *confdir; |
---|
| 542 | char *startupfile; |
---|
[7d4fbcd] | 543 | int direction; |
---|
| 544 | int zaway; |
---|
| 545 | char *cur_zaway_msg; |
---|
| 546 | int haveconfig; |
---|
| 547 | int config_format; |
---|
[1b6b2f3] | 548 | void *buffercbdata; |
---|
[a556caa] | 549 | owl_editwin *tw; |
---|
[7d4fbcd] | 550 | owl_viewwin vw; |
---|
| 551 | void *perl; |
---|
| 552 | int debug; |
---|
[7f792c1] | 553 | time_t starttime; |
---|
| 554 | time_t lastinputtime; |
---|
[a8938c7] | 555 | char *startupargs; |
---|
[7d4fbcd] | 556 | int userclue; |
---|
| 557 | int nextmsgid; |
---|
| 558 | int hascolors; |
---|
| 559 | int colorpairs; |
---|
[8fa9562] | 560 | owl_colorpair_mgr cpmgr; |
---|
[0e5afa2] | 561 | pid_t newmsgproc_pid; |
---|
[8262340] | 562 | int malloced, freed; |
---|
[41c9a96] | 563 | owl_regex search_re; |
---|
[d09e5a1] | 564 | aim_session_t aimsess; |
---|
[c15bbfb] | 565 | aim_conn_t bosconn; |
---|
[6a415e9] | 566 | owl_timer aim_noop_timer; |
---|
| 567 | owl_timer aim_ignorelogin_timer; |
---|
[bd3f232] | 568 | int aim_loggedin; /* true if currently logged into AIM */ |
---|
[a352335c] | 569 | int aim_doprocessing; /* true if we should process AIM events (like pending login) */ |
---|
[bd3f232] | 570 | char *aim_screenname; /* currently logged in AIM screen name */ |
---|
[81655f8] | 571 | char *aim_screenname_for_filters; /* currently logged in AIM screen name */ |
---|
[bd3f232] | 572 | owl_buddylist buddylist; /* list of logged in AIM buddies */ |
---|
| 573 | owl_list messagequeue; /* for queueing up aim and other messages */ |
---|
[f1e629d] | 574 | owl_dict styledict; /* global dictionary of available styles */ |
---|
[cf83b7a] | 575 | char *response; /* response to the last question asked */ |
---|
[09489b89] | 576 | int havezephyr; |
---|
| 577 | int haveaim; |
---|
[b7bb454] | 578 | int ignoreaimlogin; |
---|
[c9e72d1] | 579 | int got_err_signal; /* 1 if we got an unexpected signal */ |
---|
[5a95b69] | 580 | siginfo_t err_signal_info; |
---|
| 581 | owl_zbuddylist zbuddies; |
---|
| 582 | owl_timer zephyr_buddycheck_timer; |
---|
[8232149] | 583 | struct termios startup_tio; |
---|
[8e401cae] | 584 | owl_obarray obarray; |
---|
[9c7a701] | 585 | owl_list dispatchlist; |
---|
[58d1f8a] | 586 | GList *timerlist; |
---|
[b7bb454] | 587 | owl_timer *aim_nop_timer; |
---|
[52a0f14] | 588 | int load_initial_subs; |
---|
[adee9cc] | 589 | int interrupted; |
---|
[7d4fbcd] | 590 | } owl_global; |
---|
| 591 | |
---|
| 592 | /* globals */ |
---|
[b2b0773] | 593 | extern owl_global g; |
---|
[7d4fbcd] | 594 | |
---|
| 595 | #include "owl_prototypes.h" |
---|
| 596 | |
---|
| 597 | /* these are missing from the zephyr includes for some reason */ |
---|
[be0a79f] | 598 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 599 | int ZGetSubscriptions(ZSubscription_t *, int *); |
---|
| 600 | int ZGetLocations(ZLocations_t *,int *); |
---|
[be0a79f] | 601 | #endif |
---|
[7d4fbcd] | 602 | |
---|
| 603 | #endif /* INC_OWL_H */ |
---|