source: owl.h @ 3b9ca71

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