source: owl.h @ a82e091

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