source: owl.h @ 5f8ec6b

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