source: owl.h @ 7abfcf2

release-1.10release-1.9
Last change on this file since 7abfcf2 was cbc8657, checked in by David Benjamin <davidben@mit.edu>, 13 years ago
Don't hardcode regerror buffer size This lets us kill the silly LINE macro. regerror can be called first to get the length, and then the data.
  • Property mode set to 100644
File size: 17.1 KB
RevLine 
[b03c714]1/*  Copyright (c) 2006-2011 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
[06adc25]9#ifndef INC_BARNOWL_OWL_H
10#define INC_BARNOWL_OWL_H
[7d4fbcd]11
[691d012]12#include "config.h"
13
[12a6616]14#include "compat/compat.h"
15
[f8074e9]16#include <stdbool.h>
[75b0adb]17
[1bdffcb]18#ifndef OWL_PERL
[fe73d0c]19#define NCURSES_ENABLE_STDBOOL_H 1
[67e5ba36]20#include <ncursesw/curses.h>
21#include <ncursesw/panel.h>
[1bdffcb]22#endif
[7d4fbcd]23#include <sys/param.h>
24#include <EXTERN.h>
25#include <netdb.h>
26#include <regex.h>
[d09e5a1]27#include <time.h>
[c9e72d1]28#include <signal.h>
[8232149]29#include <termios.h>
[731dd1e]30#include "libfaim/aim.h"
[dd24b6a]31#include <wchar.h>
[34509d5]32#include "glib.h"
[be0a79f]33#ifdef HAVE_LIBZEPHYR
[373b7e7]34#include <zephyr/zephyr.h>
[be0a79f]35#endif
[e6449bc]36#ifdef HAVE_COM_ERR_H
37#include <com_err.h>
38#endif
39
[6922edd]40/* Perl and curses don't play nice. */
41#ifdef OWL_PERL
42typedef void WINDOW;
[be1ae91]43typedef void PANEL;
[18e28a4]44/* logout is defined in FreeBSD. */
45#define logout logout_
[88dc766]46#define HAS_BOOL
[6922edd]47#include <perl.h>
[120291c]48#include "owl_perl.h"
[18e28a4]49#undef logout
[6922edd]50#include "XSUB.h"
51#else
52typedef void SV;
[68c572a]53typedef void AV;
54typedef void HV;
[6922edd]55#endif
56
[e96b4ce]57#include "window.h"
58
[ede073c]59#ifndef OWL_VERSION_STRING
[8df704f]60#ifdef  GIT_VERSION
61#define stringify(x)       __stringify(x)
62#define __stringify(x)     #x
63#define OWL_VERSION_STRING stringify(GIT_VERSION)
64#else
[37f27bc]65#define OWL_VERSION_STRING PACKAGE_VERSION
[8df704f]66#endif
[ede073c]67#endif /* !OWL_VERSION_STRING */
[2a2bb60]68
69/* Feature that is being tested to redirect stderr through a pipe.
70 * There may still be some portability problems with this. */
71#define OWL_STDERR_REDIR 1
[7d4fbcd]72
73#define OWL_DEBUG 0
[26ad412]74#define OWL_DEBUG_FILE "/var/tmp/barnowl-debug"
[7d4fbcd]75
[bd3f232]76#define OWL_CONFIG_DIR "/.owl"             /* this is relative to the user's home directory */
[38cf544c]77
[7d4fbcd]78#define OWL_FMTEXT_ATTR_NONE      0
79#define OWL_FMTEXT_ATTR_BOLD      1
80#define OWL_FMTEXT_ATTR_REVERSE   2
81#define OWL_FMTEXT_ATTR_UNDERLINE 4
82
[9866c3a]83#define OWL_FMTEXT_UC_BASE 0x100000 /* Unicode Plane 16 - Supplementary Private Use Area-B*/
84#define OWL_FMTEXT_UC_ATTR ( OWL_FMTEXT_UC_BASE | 0x800 )
85#define OWL_FMTEXT_UC_ATTR_MASK 0x7
86#define OWL_FMTEXT_UC_COLOR_BASE ( OWL_FMTEXT_UC_BASE | 0x400 )
87#define OWL_FMTEXT_UC_FGCOLOR OWL_FMTEXT_UC_COLOR_BASE
88#define OWL_FMTEXT_UC_BGCOLOR ( OWL_FMTEXT_UC_COLOR_BASE | 0x200 )
89#define OWL_FMTEXT_UC_DEFAULT_COLOR 0x100
90#define OWL_FMTEXT_UC_FGDEFAULT ( OWL_FMTEXT_UC_FGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR )
91#define OWL_FMTEXT_UC_BGDEFAULT ( OWL_FMTEXT_UC_BGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR )
92#define OWL_FMTEXT_UC_COLOR_MASK 0xFF
93#define OWL_FMTEXT_UC_ALLCOLOR_MASK ( OWL_FMTEXT_UC_COLOR_MASK | OWL_FMTEXT_UC_DEFAULT_COLOR | 0x200)
94#define OWL_FMTEXT_UC_STARTBYTE_UTF8 '\xf4'
95
[7d4fbcd]96#define OWL_COLOR_BLACK     0
97#define OWL_COLOR_RED       1
98#define OWL_COLOR_GREEN     2
99#define OWL_COLOR_YELLOW    3
100#define OWL_COLOR_BLUE      4
101#define OWL_COLOR_MAGENTA   5
102#define OWL_COLOR_CYAN      6
103#define OWL_COLOR_WHITE     7
[c2c5c77]104#define OWL_COLOR_DEFAULT   -1
[601733d]105#define OWL_COLOR_INVALID   -2
[7d4fbcd]106
[2b83ad6]107#define OWL_TAB_WIDTH 8
108
[7d4fbcd]109#define OWL_EDITWIN_STYLE_MULTILINE 0
110#define OWL_EDITWIN_STYLE_ONELINE   1
111
[f4d0975]112#define OWL_PROTOCOL_ZEPHYR         0
113#define OWL_PROTOCOL_AIM            1
114#define OWL_PROTOCOL_JABBER         2
115#define OWL_PROTOCOL_ICQ            3
116#define OWL_PROTOCOL_YAHOO          4
117#define OWL_PROTOCOL_MSN            5
118
[4b464a4]119#define OWL_MESSAGE_DIRECTION_NONE  0
120#define OWL_MESSAGE_DIRECTION_IN    1
121#define OWL_MESSAGE_DIRECTION_OUT   2
[7d4fbcd]122
123#define OWL_DIRECTION_NONE      0
124#define OWL_DIRECTION_DOWNWARDS 1
125#define OWL_DIRECTION_UPWARDS   2
126
[12c35df]127#define OWL_LOGGING_DIRECTION_BOTH 0
128#define OWL_LOGGING_DIRECTION_IN   1
129#define OWL_LOGGING_DIRECTION_OUT  2
130
[88736cb]131#define OWL_SCROLLMODE_NORMAL      0
132#define OWL_SCROLLMODE_TOP         1
133#define OWL_SCROLLMODE_NEARTOP     2
134#define OWL_SCROLLMODE_CENTER      3
135#define OWL_SCROLLMODE_PAGED       4
[aa2f33b3]136#define OWL_SCROLLMODE_PAGEDCENTER 5
137
[7d4fbcd]138#define OWL_TAB               3  /* This *HAS* to be the size of TABSTR below */
139#define OWL_TABSTR        "   "
140#define OWL_MSGTAB            7
141#define OWL_TYPWIN_SIZE       8
142#define OWL_HISTORYSIZE       50
143
144/* Indicate current state, as well as what is allowed */
145#define OWL_CTX_ANY          0xffff
146/* Only one of these may be active at a time... */
147#define OWL_CTX_MODE_BITS    0x000f
148#define OWL_CTX_STARTUP      0x0001
149#define OWL_CTX_READCONFIG   0x0002
150#define OWL_CTX_INTERACTIVE  0x0004
151/* Only one of these may be active at a time... */
152#define OWL_CTX_ACTIVE_BITS  0xfff0
153#define OWL_CTX_POPWIN       0x00f0
154#define OWL_CTX_POPLESS      0x0010
155#define OWL_CTX_RECWIN       0x0f00
156#define OWL_CTX_RECV         0x0100
157#define OWL_CTX_TYPWIN       0xf000
[cf83b7a]158#define OWL_CTX_EDIT         0x7000
[7d4fbcd]159#define OWL_CTX_EDITLINE     0x1000
160#define OWL_CTX_EDITMULTI    0x2000
[cf83b7a]161#define OWL_CTX_EDITRESPONSE 0x4000
[7d4fbcd]162
163#define OWL_VARIABLE_OTHER      0
164#define OWL_VARIABLE_INT        1
165#define OWL_VARIABLE_BOOL       2
166#define OWL_VARIABLE_STRING     3
167
[7ba9e0de]168#define OWL_OUTPUT_RETURN       0
169#define OWL_OUTPUT_POPUP        1
170#define OWL_OUTPUT_ADMINMSG     2
171
[7d4fbcd]172#define OWL_FILTER_MAX_DEPTH    300
173
[4b464a4]174#define OWL_KEYMAP_MAXSTACK     20
[7d4fbcd]175
[b13daa0]176#define OWL_KEYBINDING_NOOP     0   /* dummy binding that does nothing */
[4b464a4]177#define OWL_KEYBINDING_COMMAND  1   /* command string */
178#define OWL_KEYBINDING_FUNCTION 2   /* function taking no args */
[7d4fbcd]179
[4b464a4]180#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]181#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]182
[1c7a4e0]183#define OWL_CMD_ALIAS_SUMMARY_PREFIX "command alias to: "
[7d4fbcd]184
[1522e5d]185#define OWL_WEBZEPHYR_PRINCIPAL "daemon/webzephyr.mit.edu"
[1d3e925]186#define OWL_WEBZEPHYR_CLASS     "webzephyr"
187#define OWL_WEBZEPHYR_OPCODE    "webzephyr"
[e7cc1c3]188
[9d21120]189#define OWL_ZEPHYR_NOSTRIP_HOST         "host/"
190#define OWL_ZEPHYR_NOSTRIP_RCMD         "rcmd."
191#define OWL_ZEPHYR_NOSTRIP_DAEMON5      "daemon/"
192#define OWL_ZEPHYR_NOSTRIP_DAEMON4      "daemon."
193
[41f0cf3]194#define OWL_REGEX_QUOTECHARS    "!+*.?[]^\\${}()|"
[bc08664]195#define OWL_REGEX_QUOTEWITH     "\\"
196
[0435c7d]197#if defined(HAVE_DES_STRING_TO_KEY) && defined(HAVE_DES_KEY_SCHED) && defined(HAVE_DES_ECB_ENCRYPT)
[c86a35c]198#define OWL_ENABLE_ZCRYPT 1
[c269e22]199#endif
200
[6829afc]201/* Annotate functions in which the caller owns the return value and is
202 * responsible for ensuring it is freed. */
203#define CALLER_OWN G_GNUC_WARN_UNUSED_RESULT
204
[62fdd29]205#define OWL_META(key) ((key)|010000)
[f87c490]206/* OWL_CTRL is definied in kepress.c */
[7d4fbcd]207
[712caac]208#ifdef HAVE_LIBZEPHYR
[6337cb5]209/* libzephyr doesn't use const, so we appease the type system with this kludge.
210 * This just casts const char * to char * in a way that doesn't yield a warning
211 * from gcc -Wcast-qual. */
[712caac]212static inline char *zstr(const char *str)
213{
[6337cb5]214  union { char *rw; const char *ro; } u;
215  u.ro = str;
216  return u.rw;
[712caac]217}
218#endif
219
[e19eb97]220/* Convert char *const * into const char *const *.  This conversion is safe,
[c529ac8]221 * and implicit in C++ (conv.qual 4) but for some reason not in C. */
[e19eb97]222static inline const char *const *strs(char *const *pstr)
[c529ac8]223{
[e19eb97]224  return (const char *const *)pstr;
[c529ac8]225}
226
[7d4fbcd]227typedef struct _owl_variable {
228  char *name;
229  int   type;  /* OWL_VARIABLE_* */
230  void *pval_default;  /* for types other and string */
231  int   ival_default;  /* for types int and bool     */
[24a791f]232  const char *validsettings;    /* documentation of valid settings */
[aa2f33b3]233  char *summary;                /* summary of usage */
234  char *description;            /* detailed description */
[7d4fbcd]235  void *val;                    /* current value */
[64735f0]236  int  (*validate_fn)(const struct _owl_variable *v, const void *newval);
[7d4fbcd]237                                /* returns 1 if newval is valid */
[e19eb97]238  int  (*set_fn)(struct _owl_variable *v, const void *newval); 
[7d4fbcd]239                                /* sets the variable to a value
240                                 * of the appropriate type.
241                                 * unless documented, this
242                                 * should make a copy.
243                                 * returns 0 on success. */
[e19eb97]244  int  (*set_fromstring_fn)(struct _owl_variable *v, const char *newval);
[7d4fbcd]245                                /* sets the variable to a value
246                                 * of the appropriate type.
247                                 * unless documented, this
248                                 * should make a copy.
249                                 * returns 0 on success. */
[64735f0]250  const void *(*get_fn)(const struct _owl_variable *v);
[7d4fbcd]251                                /* returns a reference to the current value.
252                                 * WARNING:  this approach is hard to make
253                                 * thread-safe... */
[2560529]254  CALLER_OWN char *(*get_tostring_fn)(const struct _owl_variable *v, const void *val);
[010a951]255                                /* converts val to a string;
256                                 * caller must free the result */
[bbd74a9]257  void (*delete_fn)(struct _owl_variable *v);
[7d4fbcd]258                                /* frees val as needed */
259} owl_variable;
260
[428834d]261typedef struct _owl_input {
262  int ch;
263  gunichar uch;
264} owl_input;
265
[7d4fbcd]266typedef struct _owl_fmtext {
[7e111f4]267  GString *buff;
[7d4fbcd]268} owl_fmtext;
269
270typedef struct _owl_dict_el {
271  char *k;                      /* key   */
272  void *v;                      /* value */
273} owl_dict_el;
274
275typedef struct _owl_dict {
276  int size;
277  int avail;
278  owl_dict_el *els;             /* invariant: sorted by k */
279} owl_dict;
280typedef owl_dict owl_vardict;   /* dict of variables */
281typedef owl_dict owl_cmddict;   /* dict of commands */
282
283typedef struct _owl_context {
284  int   mode;
285  void *data;           /* determined by mode */
[a999d9e]286  char *keymap;
[07b59ea]287  owl_window *cursor;
[1d74663]288  void (*deactivate_cb)(struct _owl_context*);
289  void (*delete_cb)(struct _owl_context*);
[fc5eef4]290  void *cbdata;
[7d4fbcd]291} owl_context;
292
293typedef struct _owl_cmd {       /* command */
294  char *name;
295
296  char *summary;                /* one line summary of command */
297  char *usage;                  /* usage synopsis */
298  char *description;            /* long description of command */
299
300  int validctx;                 /* bitmask of valid contexts */
301
302  /* we should probably have a type here that says which of
303   * the following is valid, and maybe make the below into a union... */
304
305  /* Only one of these may be non-NULL ... */
306
307  char *cmd_aliased_to;         /* what this command is aliased to... */
308 
309  /* These don't take any context */
[2560529]310  CALLER_OWN char *(*cmd_args_fn)(int argc, const char *const *argv, const char *buff);
[7d4fbcd]311                                /* takes argv and the full command as buff.
312                                 * caller must free return value if !NULL */
313  void (*cmd_v_fn)(void);       /* takes no args */
314  void (*cmd_i_fn)(int i);      /* takes an int as an arg */
315
316  /* The following also take the active context if it's valid */
[2560529]317  CALLER_OWN char *(*cmd_ctxargs_fn)(void *ctx, int argc, const char *const *argv, const char *buff);
[7d4fbcd]318                                /* takes argv and the full command as buff.
319                                 * caller must free return value if !NULL */
320  void (*cmd_ctxv_fn)(void *ctx);               /* takes no args */
321  void (*cmd_ctxi_fn)(void *ctx, int i);        /* takes an int as an arg */
[6922edd]322  SV *cmd_perl;                                /* Perl closure that takes a list of args */
[7d4fbcd]323} owl_cmd;
324
325
326typedef struct _owl_zwrite {
[987cf3f]327  char *cmd;
[24ccc01]328  char *zwriteline;
[ce7db4d]329  char *class;
330  char *inst;
331  char *realm;
332  char *opcode;
[56330ff]333  char *zsig;
[ce7db4d]334  char *message;
[12294d2]335  GPtrArray *recips;
[7d4fbcd]336  int cc;
337  int noping;
338} owl_zwrite;
339
[d0d65df]340typedef struct _owl_pair {
[e19eb97]341  const char *key;
[de1c8a5]342  char *value;
[d0d65df]343} owl_pair;
344
[a387d12e]345struct _owl_fmtext_cache;
346
[7d4fbcd]347typedef struct _owl_message {
348  int id;
[4b464a4]349  int direction;
[be0a79f]350#ifdef HAVE_LIBZEPHYR
[7d4fbcd]351  ZNotice_t notice;
[be0a79f]352#endif
[a387d12e]353  struct _owl_fmtext_cache * fmtext;
[7d4fbcd]354  int delete;
[e19eb97]355  const char *hostname;
[f9df2f0]356  GPtrArray *attributes;          /* this is a list of pairs */
[25dd31a]357  char *timestr;
358  time_t time;
[7d4fbcd]359} owl_message;
360
[a387d12e]361#define OWL_FMTEXT_CACHE_SIZE 1000
362/* We cache the saved fmtexts for the last bunch of messages we
363   rendered */
364typedef struct _owl_fmtext_cache {
365    owl_message * message;
366    owl_fmtext fmtext;
367} owl_fmtext_cache;
368
[bd3f232]369typedef struct _owl_style {
370  char *name;
[120291c]371  SV *perlobj;
[bd3f232]372} owl_style;
373
[7d4fbcd]374typedef struct _owl_mainwin {
375  int curtruncated;
[f2e36b5]376  int lasttruncated;
[7d4fbcd]377  int lastdisplayed;
[40d1eef]378  owl_window *window;
[7d4fbcd]379} owl_mainwin;
380
[60c1386]381typedef struct _owl_editwin owl_editwin;
382typedef struct _owl_editwin_excursion owl_editwin_excursion;
383
[7d4fbcd]384typedef struct _owl_viewwin {
385  owl_fmtext fmtext;
386  int textlines;
387  int topline;
388  int rightshift;
[68f63a2]389  owl_window *window;
[afbf668]390  void (*onclose_hook) (struct _owl_viewwin *vwin, void *data);
391  void *onclose_hook_data;
[60c1386]392
393  gulong sig_resize_id;
394  owl_window *content;
395  gulong sig_content_redraw_id;
396  owl_window *status;
397  gulong sig_status_redraw_id;
[09ceee3]398  owl_window *cmdwin;
[7d4fbcd]399} owl_viewwin;
400 
401typedef struct _owl_popwin {
[68f63a2]402  owl_window *border;
403  owl_window *content;
[b3b1b05]404  gulong sig_redraw_id;
405  gulong sig_resize_id;
[7d4fbcd]406} owl_popwin;
[d70f45f]407 
408typedef struct _owl_msgwin {
409  char *msg;
410  owl_window *window;
411  gulong redraw_id;
412} owl_msgwin;
[7d4fbcd]413
414typedef struct _owl_messagelist {
[fc8a87a]415  GPtrArray *list;
[7d4fbcd]416} owl_messagelist;
417
418typedef struct _owl_regex {
419  int negate;
420  char *string;
421  regex_t re;
422} owl_regex;
423
424typedef struct _owl_filterelement {
[bd65108]425  int (*match_message)(const struct _owl_filterelement *fe, const owl_message *m);
[cb769bb]426  /* Append a string representation of the filterelement onto buf*/
[bd65108]427  void (*print_elt)(const struct _owl_filterelement *fe, GString *buf);
[cb769bb]428  /* Operands for and,or,not*/
429  struct _owl_filterelement *left, *right;
430  /* For regex filters*/
[7d4fbcd]431  owl_regex re;
[cb769bb]432  /* Used by regexes, filter references, and perl */
433  char *field;
[7d4fbcd]434} owl_filterelement;
435
436typedef struct _owl_filter {
437  char *name;
[cb769bb]438  owl_filterelement * root;
[8fa9562]439  int fgcolor;
440  int bgcolor;
[7d4fbcd]441} owl_filter;
442
443typedef struct _owl_view {
[c3ab155]444  char *name;
[7d4fbcd]445  owl_filter *filter;
446  owl_messagelist ml;
[1fdab04]447  const owl_style *style;
[c3a47c9]448  int cachedmsgid;
[7d4fbcd]449} owl_view;
450
451typedef struct _owl_history {
[95b52d1]452  GQueue hist;
453  GList *cur;
[b470451]454  bool partial;
[7d4fbcd]455} owl_history;
456
[d2a4534]457typedef struct _owl_mainpanel {
458  owl_window *panel;
459  owl_window *typwin;
460  owl_window *sepwin;
461  owl_window *msgwin;
462  owl_window *recwin;
463  int recwinlines;
464} owl_mainpanel;
465
[7d4fbcd]466typedef struct _owl_keybinding {
[e1b136bf]467  int  *keys;                   /* keypress stack */
468  int   len;                    /* length of stack */
[7d4fbcd]469  int   type;                   /* command or function? */
470  char *desc;                   /* description (or "*user*") */
471  char *command;                /* command, if of type command */
472  void (*function_fn)(void);    /* function ptr, if of type function */
473} owl_keybinding;
474
475typedef struct _owl_keymap {
476  char     *name;               /* name of keymap */
477  char     *desc;               /* description */
[e4d7cb6]478  GPtrArray *bindings;          /* key bindings */
[44cc9ab]479  const struct _owl_keymap *parent;     /* parent */
[428834d]480  void (*default_fn)(owl_input j);      /* default action (takes a keypress) */
481  void (*prealways_fn)(owl_input  j);   /* always called before a keypress is received */
482  void (*postalways_fn)(owl_input  j);  /* always called after keypress is processed */
[7d4fbcd]483} owl_keymap;
484
485typedef struct _owl_keyhandler {
486  owl_dict  keymaps;            /* dictionary of keymaps */
[afa200a]487  const owl_keymap *active;             /* currently active keymap */
[7d4fbcd]488  int       in_esc;             /* escape pressed? */
489  int       kpstack[OWL_KEYMAP_MAXSTACK+1]; /* current stack of keypresses */
490  int       kpstackpos;         /* location in stack (-1 = none) */
491} owl_keyhandler;
492
[f4d0975]493typedef struct _owl_buddy {
494  int proto;
495  char *name;
496  int isidle;
497  int idlesince;
498} owl_buddy;
499
[aa5f725]500typedef struct _owl_buddylist {
[d191f45]501  GPtrArray *buddies;
[aa5f725]502} owl_buddylist;
503
[5a95b69]504typedef struct _owl_zbuddylist {
[7ed9bc6]505  GPtrArray *zusers;
[5a95b69]506} owl_zbuddylist;
507
[ec6ff52]508typedef struct _owl_errqueue {
[eb897c6]509  GPtrArray *errlist;
[ec6ff52]510} owl_errqueue;
511
[8fa9562]512typedef struct _owl_colorpair_mgr {
[99c7549]513  int next;
[c2c5c77]514  short **pairs;
[099597c]515  bool overflow;
[8fa9562]516} owl_colorpair_mgr;
517
[40c6657]518typedef struct _owl_popexec {
519  int refcount;
520  owl_viewwin *vwin;
521  int winactive;
[0e5afa2]522  pid_t pid;                    /* or 0 if it has terminated */
[a6a9ddb]523  guint io_watch;
[40c6657]524} owl_popexec;
525
[7d4fbcd]526typedef struct _owl_global {
527  owl_mainwin mw;
[03ca005]528  owl_popwin *pw;
[d70f45f]529  owl_msgwin msgwin;
[10b866d]530  owl_history cmdhist;          /* command history */
531  owl_history msghist;          /* outgoing message history */
[7d4fbcd]532  owl_keyhandler kh;
[129e609]533  owl_dict filters;
534  GList *filterlist;
[e6d7e4e]535  GPtrArray *puntlist;
[7d4fbcd]536  owl_vardict vars;
537  owl_cmddict cmds;
[a999d9e]538  GList *context_stack;
[ec6ff52]539  owl_errqueue errqueue;
[7d4fbcd]540  int lines, cols;
[bd783db]541  int curmsg, topmsg;
[70110286]542  int markedmsgid;              /* for finding the marked message when it has moved. */
[7d4fbcd]543  int curmsg_vert_offset;
544  owl_view current_view;
545  owl_messagelist msglist;
[0881cdd]546  WINDOW *input_pad;
[d2a4534]547  owl_mainpanel mainpanel;
[f6fae8d]548  gulong typwin_erase_id;
[7d4fbcd]549  int rightshift;
[3535a6e]550  bool resizepending;
[a8938c7]551  char *homedir;
[b363d83]552  char *confdir;
553  char *startupfile;
[7d4fbcd]554  int direction;
555  int haveconfig;
556  int config_format;
[a556caa]557  owl_editwin *tw;
[9eb38bb]558  owl_viewwin *vw;
[7d4fbcd]559  void *perl;
560  int debug;
[7f792c1]561  time_t starttime;
562  time_t lastinputtime;
[a8938c7]563  char *startupargs;
[7d4fbcd]564  int nextmsgid;
[8fa9562]565  owl_colorpair_mgr cpmgr;
[0e5afa2]566  pid_t newmsgproc_pid;
[41c9a96]567  owl_regex search_re;
[d09e5a1]568  aim_session_t aimsess;
[c15bbfb]569  aim_conn_t bosconn;
[bd3f232]570  int aim_loggedin;         /* true if currently logged into AIM */
[dc1edbd]571  GSource *aim_event_source; /* where we get our AIM events from */
[bd3f232]572  char *aim_screenname;     /* currently logged in AIM screen name */
[81655f8]573  char *aim_screenname_for_filters;     /* currently logged in AIM screen name */
[bd3f232]574  owl_buddylist buddylist;  /* list of logged in AIM buddies */
[20aced3]575  GQueue *messagequeue;     /* for queueing up aim and other messages */
[f1e629d]576  owl_dict styledict;       /* global dictionary of available styles */
[cf83b7a]577  char *response;           /* response to the last question asked */
[09489b89]578  int havezephyr;
579  int haveaim;
[b7bb454]580  int ignoreaimlogin;
[5a95b69]581  owl_zbuddylist zbuddies;
[f25812b]582  GList *zaldlist;
583  int pseudologin_notify;
[8232149]584  struct termios startup_tio;
[6b0b4f4]585  guint aim_nop_timer;
[52a0f14]586  int load_initial_subs;
[d12a8c7]587  FILE *debug_file;
[5f8ec6b]588  char *kill_buffer;
[47128d9]589  int interrupt_count;
590  GMutex *interrupt_lock;
[7d4fbcd]591} owl_global;
592
593/* globals */
[b2b0773]594extern owl_global g;
[7d4fbcd]595
596#include "owl_prototypes.h"
597
[d127638]598/* These were missing from the Zephyr includes before Zephyr 3. */
599#if defined HAVE_LIBZEPHYR && defined ZCONST
[7d4fbcd]600int ZGetSubscriptions(ZSubscription_t *, int *);
601int ZGetLocations(ZLocations_t *,int *);
[be0a79f]602#endif
[7d4fbcd]603
[06adc25]604#endif /* INC_BARNOWL_OWL_H */
Note: See TracBrowser for help on using the repository browser.