source: global.c @ d2a4534

release-1.10release-1.7release-1.8release-1.9
Last change on this file since d2a4534 was d2a4534, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Maintain an owl_mainpanel structure This structure will contain all the other windows.
  • Property mode set to 100644
File size: 22.0 KB
RevLine 
[7d4fbcd]1#include <stdio.h>
2#include <unistd.h>
3#include <stdlib.h>
4#include <string.h>
5#include <netdb.h>
6#include <termios.h>
7#include <sys/ioctl.h>
8#include <time.h>
9#include "owl.h"
10
11#ifndef MAXHOSTNAMELEN
12#define MAXHOSTNAMELEN 256
13#endif
14
15void owl_global_init(owl_global *g) {
16  struct hostent *hent;
17  char hostname[MAXHOSTNAMELEN];
[ad15610]18  char *cd;
[7d4fbcd]19
[8262340]20  g->malloced=0;
21  g->freed=0;
22
[7d4fbcd]23  gethostname(hostname, MAXHOSTNAMELEN);
24  hent=gethostbyname(hostname);
25  if (!hent) {
[a8938c7]26    g->thishost=owl_strdup("localhost");
[7d4fbcd]27  } else {
[a8938c7]28    g->thishost=owl_strdup(hent->h_name);
[7d4fbcd]29  }
30
[a999d9e]31  g->context_stack = NULL;
32  owl_global_push_context(g, OWL_CTX_STARTUP, NULL, NULL);
33
[7d4fbcd]34  g->curmsg=0;
35  g->topmsg=0;
[bd783db]36  g->markedmsgid=-1;
[7d4fbcd]37  g->needrefresh=1;
[a8938c7]38  g->startupargs=NULL;
[7d4fbcd]39
40  owl_variable_dict_setup(&(g->vars));
41
42  g->lines=LINES;
43  g->cols=COLS;
44
45  g->rightshift=0;
46
[38cc669]47  g->tw = NULL;
[7d4fbcd]48
49  owl_keyhandler_init(&g->kh);
50  owl_keys_setup_keymaps(&g->kh);
51
[129e609]52  owl_dict_create(&(g->filters));
53  g->filterlist = NULL;
[7d4fbcd]54  owl_list_create(&(g->puntlist));
[20aced3]55  g->messagequeue = g_queue_new();
[f1e629d]56  owl_dict_create(&(g->styledict));
[7d4fbcd]57  g->curmsg_vert_offset=0;
58  g->resizepending=0;
[f7cf6c2]59  g->relayoutpending = 0;
[7d4fbcd]60  g->direction=OWL_DIRECTION_DOWNWARDS;
61  g->zaway=0;
62  if (has_colors()) {
63    g->hascolors=1;
64  }
65  g->colorpairs=COLOR_PAIRS;
[8fa9562]66  owl_fmtext_init_colorpair_mgr(&(g->cpmgr));
[7d4fbcd]67  g->debug=OWL_DEBUG;
[41c9a96]68  owl_regex_init(&g->search_re);
[7d4fbcd]69  g->starttime=time(NULL); /* assumes we call init only a start time */
[7f792c1]70  g->lastinputtime=g->starttime;
[700c712]71  g->newmsgproc_pid=0;
[61e79a9]72 
[7d4fbcd]73  owl_global_set_config_format(g, 0);
74  owl_global_set_userclue(g, OWL_USERCLUE_NONE);
75  owl_global_set_no_have_config(g);
[10b866d]76  owl_history_init(&(g->msghist));
77  owl_history_init(&(g->cmdhist));
[5a9f6fe]78  owl_history_set_norepeats(&(g->cmdhist));
[7d4fbcd]79  g->nextmsgid=0;
80
[d2a4534]81  owl_mainpanel_init(&(g->mainpanel));
[7d4fbcd]82  _owl_global_setup_windows(g);
83
84  /* Fill in some variables which don't have constant defaults */
85  /* TODO: come back later and check passwd file first */
[a8938c7]86  g->homedir=owl_strdup(getenv("HOME"));
[7d4fbcd]87
[b363d83]88  g->confdir = NULL;
89  g->startupfile = NULL;
[ad15610]90  cd = owl_sprintf("%s/%s", g->homedir, OWL_CONFIG_DIR);
[b363d83]91  owl_global_set_confdir(g, cd);
92  owl_free(cd);
93
[7d4fbcd]94  owl_messagelist_create(&(g->msglist));
95  owl_mainwin_init(&(g->mw));
96  owl_popwin_init(&(g->pw));
[d09e5a1]97
98  g->aim_screenname=NULL;
[81655f8]99  g->aim_screenname_for_filters=NULL;
[d09e5a1]100  g->aim_loggedin=0;
[aa5f725]101  owl_buddylist_init(&(g->buddylist));
[b7bb454]102
[09489b89]103  g->havezephyr=0;
104  g->haveaim=0;
[b7bb454]105  g->ignoreaimlogin=0;
[a352335c]106  owl_global_set_no_doaimevents(g);
[ec6ff52]107
108  owl_errqueue_init(&(g->errqueue));
[c9e72d1]109  g->got_err_signal=0;
[5a95b69]110
111  owl_zbuddylist_create(&(g->zbuddies));
[8e401cae]112
[f25812b]113  g->zaldlist = NULL;
114  g->pseudologin_notify = 0;
115
[a387d12e]116  owl_message_init_fmtext_cache();
[df0138f]117  owl_list_create(&(g->io_dispatch_list));
[4f2166b]118  owl_list_create(&(g->psa_list));
[58d1f8a]119  g->timerlist = NULL;
[adee9cc]120  g->interrupted = FALSE;
[0881cdd]121
122  /* set up a pad for input */
123  g->input_pad = newpad(1, 1);
124  nodelay(g->input_pad, 1);
125  keypad(g->input_pad, 1);
126  meta(g->input_pad, 1);
[7d4fbcd]127}
128
[eb6cedc]129/* Called once perl has been initialized */
130void owl_global_complete_setup(owl_global *g)
131{
132  owl_cmddict_setup(&(g->cmds));
133}
134
[8ae2de9]135/* If *pan does not exist, we create a new panel, otherwise we replace the
136   window in *pan with win.
137
138   libpanel PANEL objects cannot exist without owner a valid window. This
139   maintains the invariant for _owl_global_setup_windows. */
140void _owl_panel_set_window(PANEL **pan, WINDOW *win)
141{
142  WINDOW *oldwin;
[b3adfb5]143
144  if (win == NULL) {
[0e3cdf1]145    owl_function_debugmsg("_owl_panel_set_window: passed NULL win (failed to allocate?)");
[b3adfb5]146    endwin();
147    exit(50);
148  }
149
[8ae2de9]150  if (*pan) {
151    oldwin = panel_window(*pan);
152    replace_panel(*pan, win);
153    delwin(oldwin);
154  } else {
155    *pan = new_panel(win);
156  }
157}
158
[7d4fbcd]159void _owl_global_setup_windows(owl_global *g) {
[d2a4534]160  int cols, typwin_lines, recwinlines;
[7d4fbcd]161
162  cols=g->cols;
[ecd5dc5]163  typwin_lines=owl_global_get_typwin_lines(g);
[7d4fbcd]164
[d2a4534]165  recwinlines = owl_global_get_recwin_lines(g);
[7d4fbcd]166
167  /* create the new windows */
[d2a4534]168  _owl_panel_set_window(&g->recpan, newwin(recwinlines, cols, 0, 0));
169  _owl_panel_set_window(&g->seppan, newwin(1, cols, recwinlines, 0));
170  _owl_panel_set_window(&g->msgpan, newwin(1, cols, recwinlines+1, 0));
171  _owl_panel_set_window(&g->typpan, newwin(typwin_lines, cols, recwinlines+2, 0));
[b3adfb5]172
[38cc669]173  if (g->tw)
174      owl_editwin_set_curswin(g->tw, owl_global_get_curs_typwin(g), typwin_lines, g->cols);
[b3adfb5]175
176  wmove(owl_global_get_curs_typwin(g), 0, 0);
[7d4fbcd]177}
178
179owl_context *owl_global_get_context(owl_global *g) {
[a999d9e]180  if (!g->context_stack)
181    return NULL;
182  return g->context_stack->data;
183}
184
185static void owl_global_lookup_keymap(owl_global *g) {
186  owl_context *c = owl_global_get_context(g);
187  if (!c || !c->keymap)
188    return;
189
190  if (!owl_keyhandler_activate(owl_global_get_keyhandler(g), c->keymap)) {
191    owl_function_error("Unable to activate keymap '%s'", c->keymap);
192  }
[7d4fbcd]193}
[a999d9e]194
195void owl_global_push_context(owl_global *g, int mode, void *data, const char *keymap) {
196  owl_context *c;
197  if (!(mode & OWL_CTX_MODE_BITS))
198    mode |= OWL_CTX_INTERACTIVE;
199  c = owl_malloc(sizeof *c);
200  c->mode = mode;
201  c->data = data;
202  c->keymap = owl_strdup(keymap);
203  g->context_stack = g_list_prepend(g->context_stack, c);
204  owl_global_lookup_keymap(g);
205}
206
207void owl_global_pop_context(owl_global *g) {
208  owl_context *c;
209  if (!g->context_stack)
210    return;
211  c = owl_global_get_context(g);
212  g->context_stack = g_list_delete_link(g->context_stack,
213                                        g->context_stack);
214  owl_free(c->keymap);
215  owl_free(c);
216  owl_global_lookup_keymap(g);
217}
218
[8742840]219int owl_global_get_lines(const owl_global *g) {
[7d4fbcd]220  return(g->lines);
221}
222
[8742840]223int owl_global_get_cols(const owl_global *g) {
[7d4fbcd]224  return(g->cols);
225}
226
[8742840]227int owl_global_get_recwin_lines(const owl_global *g) {
[d2a4534]228  return g->mainpanel.recwinlines;
[7d4fbcd]229}
230
231/* curmsg */
232
[8742840]233int owl_global_get_curmsg(const owl_global *g) {
[7d4fbcd]234  return(g->curmsg);
235}
236
237void owl_global_set_curmsg(owl_global *g, int i) {
238  g->curmsg=i;
239  /* we will reset the vertical offset from here */
240  /* we might want to move this out to the functions later */
241  owl_global_set_curmsg_vert_offset(g, 0);
242}
243
244/* topmsg */
245
[8742840]246int owl_global_get_topmsg(const owl_global *g) {
[7d4fbcd]247  return(g->topmsg);
248}
249
250void owl_global_set_topmsg(owl_global *g, int i) {
251  g->topmsg=i;
252}
253
[70110286]254/* markedmsgid */
255
[8742840]256int owl_global_get_markedmsgid(const owl_global *g) {
[70110286]257  return(g->markedmsgid);
258}
259
260void owl_global_set_markedmsgid(owl_global *g, int i) {
261  g->markedmsgid=i;
262  /* i; index of message in the current view.
[c08c70a]263  const owl_message *m;
[70110286]264  owl_view *v;
265
266  v = owl_global_get_current_view(&g);
267  m = owl_view_get_element(v, i);
268  g->markedmsgid = m ? owl_message_get_id(m) : 0;
269  */
270}
271
[7d4fbcd]272/* windows */
273
274owl_mainwin *owl_global_get_mainwin(owl_global *g) {
275  return(&(g->mw));
276}
277
278owl_popwin *owl_global_get_popwin(owl_global *g) {
279  return(&(g->pw));
280}
281
282/* msglist */
283
284owl_messagelist *owl_global_get_msglist(owl_global *g) {
285  return(&(g->msglist));
286}
287
288/* keyhandler */
289
290owl_keyhandler *owl_global_get_keyhandler(owl_global *g) {
291  return(&(g->kh));
292}
293
294/* curses windows */
295
[8742840]296WINDOW *owl_global_get_curs_recwin(const owl_global *g) {
[b3adfb5]297  return panel_window(g->recpan);
[7d4fbcd]298}
299
[8742840]300WINDOW *owl_global_get_curs_sepwin(const owl_global *g) {
[b3adfb5]301  return panel_window(g->seppan);
[7d4fbcd]302}
303
[8742840]304WINDOW *owl_global_get_curs_msgwin(const owl_global *g) {
[b3adfb5]305  return panel_window(g->msgpan);
[7d4fbcd]306}
307
[8742840]308WINDOW *owl_global_get_curs_typwin(const owl_global *g) {
[b3adfb5]309  return panel_window(g->typpan);
[7d4fbcd]310}
311
312/* typwin */
313
[8742840]314owl_editwin *owl_global_get_typwin(const owl_global *g) {
[a556caa]315  return(g->tw);
[7d4fbcd]316}
317
318/* refresh */
319
[8742840]320int owl_global_is_needrefresh(const owl_global *g) {
[7d4fbcd]321  if (g->needrefresh==1) return(1);
322  return(0);
323}
324
325void owl_global_set_needrefresh(owl_global *g) {
326  g->needrefresh=1;
327}
328
329void owl_global_set_noneedrefresh(owl_global *g) {
330  g->needrefresh=0;
331}
332
333/* variable dictionary */
334
335owl_vardict *owl_global_get_vardict(owl_global *g) {
336  return &(g->vars);
337}
338
339/* command dictionary */
340
341owl_cmddict *owl_global_get_cmddict(owl_global *g) {
342  return &(g->cmds);
343}
344
345/* rightshift */
346
347void owl_global_set_rightshift(owl_global *g, int i) {
348  g->rightshift=i;
349}
350
[8742840]351int owl_global_get_rightshift(const owl_global *g) {
[7d4fbcd]352  return(g->rightshift);
353}
354
355/* typwin */
356
[58d47ca]357owl_editwin *owl_global_set_typwin_active(owl_global *g, int style, owl_history *hist) {
[38cc669]358  int d;
359  d = owl_global_get_typewindelta(g);
[73eda8c]360  if (d > 0 && style == OWL_EDITWIN_STYLE_MULTILINE)
[da466e0]361      owl_function_resize_typwin(owl_global_get_typwin_lines(g) + d);
362
[38cc669]363  g->tw = owl_editwin_new(owl_global_get_curs_typwin(g),
364                          owl_global_get_typwin_lines(g),
365                          g->cols,
366                          style,
367                          hist);
[58d47ca]368  return g->tw;
[7d4fbcd]369}
370
371void owl_global_set_typwin_inactive(owl_global *g) {
[da466e0]372  int d = owl_global_get_typewindelta(g);
[73eda8c]373  if (d > 0 && owl_editwin_get_style(g->tw) == OWL_EDITWIN_STYLE_MULTILINE)
[da466e0]374      owl_function_resize_typwin(owl_global_get_typwin_lines(g) - d);
375
[38cc669]376  werase(owl_global_get_curs_typwin(g));
377  g->tw = NULL;
[4e33cb2]378  owl_global_set_needrefresh(g);
[7d4fbcd]379}
380
381/* resize */
382
383void owl_global_set_resize_pending(owl_global *g) {
384  g->resizepending=1;
385}
386
[f7cf6c2]387void owl_global_set_relayout_pending(owl_global *g) {
388  g->relayoutpending = 1;
389}
390
[8742840]391const char *owl_global_get_homedir(const owl_global *g) {
[a8938c7]392  if (g->homedir) return(g->homedir);
393  return("/");
[7d4fbcd]394}
395
[8742840]396const char *owl_global_get_confdir(const owl_global *g) {
[b363d83]397  if (g->confdir) return(g->confdir);
398  return("/");
399}
400
401/*
402 * Setting this also sets startupfile to confdir/startup
403 */
[e19eb97]404void owl_global_set_confdir(owl_global *g, const char *cd) {
[27f6487]405  owl_free(g->confdir);
[b363d83]406  g->confdir = owl_strdup(cd);
[27f6487]407  owl_free(g->startupfile);
[b363d83]408  g->startupfile = owl_sprintf("%s/startup", cd);
409}
410
[8742840]411const char *owl_global_get_startupfile(const owl_global *g) {
[b363d83]412  if(g->startupfile) return(g->startupfile);
413  return("/");
414}
415
[8742840]416int owl_global_get_direction(const owl_global *g) {
[7d4fbcd]417  return(g->direction);
418}
419
420void owl_global_set_direction_downwards(owl_global *g) {
421  g->direction=OWL_DIRECTION_DOWNWARDS;
422}
423
424void owl_global_set_direction_upwards(owl_global *g) {
425  g->direction=OWL_DIRECTION_UPWARDS;
426}
427
428/* perl stuff */
429
430void owl_global_set_perlinterp(owl_global *g, void *p) {
431  g->perl=p;
432}
433
[8742840]434void *owl_global_get_perlinterp(const owl_global *g) {
[7d4fbcd]435  return(g->perl);
436}
437
[8742840]438int owl_global_is_config_format(const owl_global *g) {
[7d4fbcd]439  if (g->config_format) return(1);
440  return(0);
441}
442
443void owl_global_set_config_format(owl_global *g, int state) {
444  if (state==1) {
445    g->config_format=1;
446  } else {
447    g->config_format=0;
448  }
449}
450
451void owl_global_set_have_config(owl_global *g) {
452  g->haveconfig=1;
453}
454
455void owl_global_set_no_have_config(owl_global *g) {
456  g->haveconfig=0;
457}
458
459int owl_global_have_config(owl_global *g) {
460  if (g->haveconfig) return(1);
461  return(0);
462}
463
[285bc9a]464/*
465 * Compute the size of the terminal. Try a ioctl, fallback to other stuff on
466 * fail.
467 */
[d39f68c]468void owl_global_get_terminal_size(int *lines, int *cols) {
[285bc9a]469  struct winsize size;
470  /* get the new size */
471  ioctl(STDIN_FILENO, TIOCGWINSZ, &size);
472  if (size.ws_row) {
473    *lines = size.ws_row;
474  } else {
475    *lines = LINES;
476  }
477
478  if (size.ws_col) {
479    *cols = size.ws_col;
480  } else {
481    *cols = COLS;
482  }
483}
484
[d39f68c]485void owl_global_resize(owl_global *g, int lines, int cols) {
[7d4fbcd]486  /* resize the screen.  If x or y is 0 use the terminal size */
487  if (!g->resizepending) return;
[8479494]488  g->resizepending = 0;
[7d4fbcd]489
[7a6e6c7]490  owl_global_get_terminal_size(&lines, &cols);
491  if (lines) g->lines = lines;
492  if (cols)  g->cols  = cols;
493  owl_window_resize(owl_window_get_screen(), g->lines, g->cols);
[7d4fbcd]494
[f9f88f3]495  owl_function_debugmsg("New size is %i lines, %i cols.", g->lines, g->cols);
[f7cf6c2]496  owl_global_set_relayout_pending(g);
[f9f88f3]497}
498
499void owl_global_relayout(owl_global *g) {
[f7cf6c2]500  if (!g->relayoutpending) return;
501  g->relayoutpending = 0;
502
[f9f88f3]503  owl_function_debugmsg("Relayouting...");
504
[7d4fbcd]505  /* re-initialize the windows */
506  _owl_global_setup_windows(g);
507
[f1e629d]508  /* in case any styles rely on the current width */
509  owl_messagelist_invalidate_formats(owl_global_get_msglist(g));
510
[c0f9e30]511  /* recalculate the topmsg to make sure the current message is on
512   * screen */
513  owl_function_calculate_topmsg(OWL_DIRECTION_NONE);
514
[7d4fbcd]515  /* refresh stuff */
516  g->needrefresh=1;
517  owl_mainwin_redisplay(&(g->mw));
518  sepbar(NULL);
[38cc669]519  if (g->tw)
520      owl_editwin_redisplay(g->tw);
[59ab8dd]521  else
522    werase(owl_global_get_curs_typwin(g));
523
[8240bce]524  owl_function_full_redisplay();
[7d4fbcd]525
526  owl_function_makemsg("");
527}
528
529/* debug */
530
[8742840]531int owl_global_is_debug_fast(const owl_global *g) {
[7d4fbcd]532  if (g->debug) return(1);
533  return(0);
534}
535
536/* starttime */
537
[8742840]538time_t owl_global_get_starttime(const owl_global *g) {
[7d4fbcd]539  return(g->starttime);
540}
541
[8742840]542time_t owl_global_get_runtime(const owl_global *g) {
[7d4fbcd]543  return(time(NULL)-g->starttime);
544}
545
[8742840]546time_t owl_global_get_lastinputtime(const owl_global *g) {
[7f792c1]547  return(g->lastinputtime);
548}
549
[eebef19]550void owl_global_set_lastinputtime(owl_global *g, time_t time) {
551  g->lastinputtime = time;
[7f792c1]552}
553
[8742840]554time_t owl_global_get_idletime(const owl_global *g) {
[7f792c1]555  return(time(NULL)-g->lastinputtime);
556}
557
[8742840]558const char *owl_global_get_hostname(const owl_global *g) {
[a8938c7]559  if (g->thishost) return(g->thishost);
560  return("");
[61e79a9]561}
562
[7d4fbcd]563/* userclue */
564
565void owl_global_set_userclue(owl_global *g, int clue) {
566  g->userclue=clue;
567}
568
569void owl_global_add_userclue(owl_global *g, int clue) {
570  g->userclue|=clue;
571}
572
[8742840]573int owl_global_get_userclue(const owl_global *g) {
[7d4fbcd]574  return(g->userclue);
575}
576
[8742840]577int owl_global_is_userclue(const owl_global *g, int clue) {
[7d4fbcd]578  if (g->userclue & clue) return(1);
579  return(0);
580}
581
582/* viewwin */
583
584owl_viewwin *owl_global_get_viewwin(owl_global *g) {
585  return(&(g->vw));
586}
587
588
589/* vert offset */
590
[8742840]591int owl_global_get_curmsg_vert_offset(const owl_global *g) {
[7d4fbcd]592  return(g->curmsg_vert_offset);
593}
594
595void owl_global_set_curmsg_vert_offset(owl_global *g, int i) {
596  g->curmsg_vert_offset=i;
597}
598
599/* startup args */
600
[e19eb97]601void owl_global_set_startupargs(owl_global *g, int argc, const char *const *argv) {
[a8938c7]602  int i, len;
603
604  if (g->startupargs) owl_free(g->startupargs);
605 
606  len=0;
607  for (i=0; i<argc; i++) {
[591e6aa7]608    len+=strlen(argv[i])+5;
[a8938c7]609  }
[34509d5]610  g->startupargs=owl_malloc(len+5);
[7d4fbcd]611
612  strcpy(g->startupargs, "");
613  for (i=0; i<argc; i++) {
[b9cb41b]614    sprintf(g->startupargs + strlen(g->startupargs), "%s ", argv[i]);
[7d4fbcd]615  }
616  g->startupargs[strlen(g->startupargs)-1]='\0';
617}
618
[8742840]619const char *owl_global_get_startupargs(const owl_global *g) {
[a8938c7]620  if (g->startupargs) return(g->startupargs);
621  return("");
[7d4fbcd]622}
623
624/* history */
625
[10b866d]626owl_history *owl_global_get_msg_history(owl_global *g) {
627  return(&(g->msghist));
628}
629
630owl_history *owl_global_get_cmd_history(owl_global *g) {
631  return(&(g->cmdhist));
[7d4fbcd]632}
633
634/* filterlist */
[129e609]635typedef struct _owl_global_filter_ent {         /* noproto */
636  owl_global *g;
637  owl_filter *f;
638} owl_global_filter_ent;
[7d4fbcd]639
[8742840]640owl_filter *owl_global_get_filter(const owl_global *g, const char *name) {
[129e609]641  owl_global_filter_ent *e = owl_dict_find_element(&(g->filters), name);
642  if (e) return e->f;
643  return NULL;
644}
[7d4fbcd]645
[5294cbf]646static void owl_global_delete_filter_ent(void *data)
647{
[129e609]648  owl_global_filter_ent *e = data;
649  e->g->filterlist = g_list_remove(e->g->filterlist, e->f);
650  owl_filter_delete(e->f);
651  owl_free(e);
[7d4fbcd]652}
653
654void owl_global_add_filter(owl_global *g, owl_filter *f) {
[129e609]655  owl_global_filter_ent *e = owl_malloc(sizeof *e);
656  e->g = g;
657  e->f = f;
658
659  owl_dict_insert_element(&(g->filters), owl_filter_get_name(f),
[5294cbf]660                          e, owl_global_delete_filter_ent);
[129e609]661  g->filterlist = g_list_append(g->filterlist, f);
[7d4fbcd]662}
663
[e19eb97]664void owl_global_remove_filter(owl_global *g, const char *name) {
[129e609]665  owl_global_filter_ent *e = owl_dict_remove_element(&(g->filters), name);
666  if (e)
[5294cbf]667    owl_global_delete_filter_ent(e);
[7d4fbcd]668}
669
670/* nextmsgid */
671
672int owl_global_get_nextmsgid(owl_global *g) {
673  return(g->nextmsgid++);
674}
675
676/* current view */
677
678owl_view *owl_global_get_current_view(owl_global *g) {
679  return(&(g->current_view));
680}
681
682/* has colors */
683
[8742840]684int owl_global_get_hascolors(const owl_global *g) {
[7d4fbcd]685  if (g->hascolors) return(1);
686  return(0);
687}
688
689/* color pairs */
690
[8742840]691int owl_global_get_colorpairs(const owl_global *g) {
[7d4fbcd]692  return(g->colorpairs);
693}
694
[8fa9562]695owl_colorpair_mgr *owl_global_get_colorpair_mgr(owl_global *g) {
696  return(&(g->cpmgr));
697}
698
[7d4fbcd]699/* puntlist */
700
701owl_list *owl_global_get_puntlist(owl_global *g) {
702  return(&(g->puntlist));
703}
704
[c08c70a]705int owl_global_message_is_puntable(owl_global *g, const owl_message *m) {
[77bced3]706  const owl_list *pl;
[7d4fbcd]707  int i, j;
708
709  pl=owl_global_get_puntlist(g);
710  j=owl_list_get_size(pl);
711  for (i=0; i<j; i++) {
712    if (owl_filter_message_match(owl_list_get_element(pl, i), m)) return(1);
713  }
714  return(0);
715}
716
717int owl_global_should_followlast(owl_global *g) {
[9e5c9f3]718  const owl_view *v;
[7d4fbcd]719 
720  if (!owl_global_is__followlast(g)) return(0);
721 
722  v=owl_global_get_current_view(g);
723 
724  if (owl_global_get_curmsg(g)==owl_view_get_size(v)-1) return(1);
725  return(0);
726}
[1fd0b25]727
[8742840]728int owl_global_is_search_active(const owl_global *g) {
[41c9a96]729  if (owl_regex_is_set(&g->search_re)) return(1);
[1fd0b25]730  return(0);
731}
732
[89b2daf]733void owl_global_set_search_re(owl_global *g, const owl_regex *re) {
[41c9a96]734  if (owl_regex_is_set(&g->search_re)) {
[5cbc929]735    owl_regex_cleanup(&g->search_re);
[41c9a96]736    owl_regex_init(&g->search_re);
737  }
738  if (re != NULL)
739    owl_regex_copy(re, &g->search_re);
[1fd0b25]740}
741
[8742840]742const owl_regex *owl_global_get_search_re(const owl_global *g) {
[41c9a96]743  return &g->search_re;
[1fd0b25]744}
[700c712]745
[0e5afa2]746void owl_global_set_newmsgproc_pid(owl_global *g, pid_t i) {
[700c712]747  g->newmsgproc_pid=i;
748}
749
[0e5afa2]750pid_t owl_global_get_newmsgproc_pid(const owl_global *g) {
[700c712]751  return(g->newmsgproc_pid);
752}
753
[d09e5a1]754/* AIM stuff */
755
[8742840]756int owl_global_is_aimloggedin(const owl_global *g)
[6a415e9]757{
[d09e5a1]758  if (g->aim_loggedin) return(1);
759  return(0);
760}
761
[8742840]762const char *owl_global_get_aim_screenname(const owl_global *g)
[6a415e9]763{
[a352335c]764  if (owl_global_is_aimloggedin(g)) {
765    return (g->aim_screenname);
766  }
767  return("");
[d09e5a1]768}
769
[8742840]770const char *owl_global_get_aim_screenname_for_filters(const owl_global *g)
[81655f8]771{
772  if (owl_global_is_aimloggedin(g)) {
773    return (g->aim_screenname_for_filters);
774  }
775  return("");
776}
777
[e19eb97]778void owl_global_set_aimloggedin(owl_global *g, const char *screenname)
[6a415e9]779{
[65b2173]780  char *sn_escaped;
[e19eb97]781  const char *quote;
[d09e5a1]782  g->aim_loggedin=1;
783  if (g->aim_screenname) owl_free(g->aim_screenname);
[81655f8]784  if (g->aim_screenname_for_filters) owl_free(g->aim_screenname_for_filters);
[d09e5a1]785  g->aim_screenname=owl_strdup(screenname);
[81655f8]786  sn_escaped = owl_text_quote(screenname, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
787  quote = owl_getquoting(sn_escaped);
[9f4e3f8]788  g->aim_screenname_for_filters=owl_sprintf("%s%s%s", quote, sn_escaped, quote);
[81655f8]789  owl_free(sn_escaped);
[d09e5a1]790}
791
[6a415e9]792void owl_global_set_aimnologgedin(owl_global *g)
793{
[d09e5a1]794  g->aim_loggedin=0;
795}
796
[8742840]797int owl_global_is_doaimevents(const owl_global *g)
[a352335c]798{
799  if (g->aim_doprocessing) return(1);
800  return(0);
801}
802
803void owl_global_set_doaimevents(owl_global *g)
804{
805  g->aim_doprocessing=1;
806}
807
808void owl_global_set_no_doaimevents(owl_global *g)
809{
810  g->aim_doprocessing=0;
811}
812
[6a415e9]813aim_session_t *owl_global_get_aimsess(owl_global *g)
814{
[d09e5a1]815  return(&(g->aimsess));
816}
817
[c15bbfb]818aim_conn_t *owl_global_get_bosconn(owl_global *g)
819{
820  return(&(g->bosconn));
821}
822
823void owl_global_set_bossconn(owl_global *g, aim_conn_t *conn)
[6a415e9]824{
[c15bbfb]825  g->bosconn=*conn;
[d09e5a1]826}
827
828/* message queue */
829
[6a415e9]830void owl_global_messagequeue_addmsg(owl_global *g, owl_message *m)
831{
[20aced3]832  g_queue_push_tail(g->messagequeue, m);
[d09e5a1]833}
834
835/* pop off the first message and return it.  Return NULL if the queue
836 * is empty.  The caller should free the message after using it, if
837 * necessary.
838 */
[13a3c1db]839owl_message *owl_global_messagequeue_popmsg(owl_global *g)
[6a415e9]840{
[d09e5a1]841  owl_message *out;
842
[20aced3]843  if (g_queue_is_empty(g->messagequeue))
844    return NULL;
845  out = g_queue_pop_head(g->messagequeue);
846  return out;
[d09e5a1]847}
848
[6a415e9]849int owl_global_messagequeue_pending(owl_global *g)
850{
[20aced3]851  return !g_queue_is_empty(g->messagequeue);
[d09e5a1]852}
[aa5f725]853
[6a415e9]854owl_buddylist *owl_global_get_buddylist(owl_global *g)
855{
[aa5f725]856  return(&(g->buddylist));
857}
858 
[bd3f232]859/* style */
860
861/* Return the style with name 'name'.  If it does not exist return
862 * NULL */
[8742840]863const owl_style *owl_global_get_style_by_name(const owl_global *g, const char *name)
[bd3f232]864{
[f1e629d]865  return owl_dict_find_element(&(g->styledict), name);
866}
867
868/* creates a list and fills it in with keys.  duplicates the keys,
869 * so they will need to be freed by the caller. */
[8742840]870int owl_global_get_style_names(const owl_global *g, owl_list *l) {
[f1e629d]871  return owl_dict_get_keys(&(g->styledict), l);
[bd3f232]872}
873
[cf83b7a]874void owl_global_add_style(owl_global *g, owl_style *s)
875{
[f1fc47f]876  /*
877   * If we're redefining the current style, make sure to update
878   * pointers to it.
879   */
880  if(g->current_view.style
881     && !strcmp(owl_style_get_name(g->current_view.style),
882                owl_style_get_name(s)))
883    g->current_view.style = s;
884  owl_dict_insert_element(&(g->styledict), owl_style_get_name(s),
[516c27e]885                          s, (void (*)(void *))owl_style_delete);
[bd3f232]886}
[cf83b7a]887
[09489b89]888void owl_global_set_haveaim(owl_global *g)
889{
890  g->haveaim=1;
891}
892
[8742840]893int owl_global_is_haveaim(const owl_global *g)
[09489b89]894{
895  if (g->haveaim) return(1);
896  return(0);
897}
898
[b7bb454]899void owl_global_set_ignore_aimlogin(owl_global *g)
900{
901    g->ignoreaimlogin = 1;
902}
903
904void owl_global_unset_ignore_aimlogin(owl_global *g)
905{
906    g->ignoreaimlogin = 0;
907}
908
[8742840]909int owl_global_is_ignore_aimlogin(const owl_global *g)
[b7bb454]910{
911    return g->ignoreaimlogin;
912}
913
[09489b89]914void owl_global_set_havezephyr(owl_global *g)
915{
916  g->havezephyr=1;
917}
918
[8742840]919int owl_global_is_havezephyr(const owl_global *g)
[09489b89]920{
921  if (g->havezephyr) return(1);
922  return(0);
923}
[de03334]924
[ec6ff52]925owl_errqueue *owl_global_get_errqueue(owl_global *g)
926{
927  return(&(g->errqueue));
928}
[c9e72d1]929
930void owl_global_set_errsignal(owl_global *g, int signum, siginfo_t *siginfo)
931{
932  g->got_err_signal = signum;
933  if (siginfo) {
934    g->err_signal_info = *siginfo;
935  } else {
[7892963]936    siginfo_t si;
937    memset(&si, 0, sizeof(si));
938    g->err_signal_info = si;
[c9e72d1]939  }
940}
941
942int owl_global_get_errsignal_and_clear(owl_global *g, siginfo_t *siginfo)
943{
944  int signum;
945  if (siginfo && g->got_err_signal) {
946    *siginfo = g->err_signal_info;
947  } 
948  signum = g->got_err_signal;
949  g->got_err_signal = 0;
950  return signum;
951}
952
[5a95b69]953
954owl_zbuddylist *owl_global_get_zephyr_buddylist(owl_global *g)
955{
956  return(&(g->zbuddies));
957}
[8232149]958
[f25812b]959GList **owl_global_get_zaldlist(owl_global *g)
960{
961  return &(g->zaldlist);
962}
963
964int owl_global_get_pseudologin_notify(owl_global *g)
965{
966  return g->pseudologin_notify;
967}
968
969void owl_global_set_pseudologin_notify(owl_global *g, int notify)
970{
971  g->pseudologin_notify = notify;
972}
973
[8232149]974struct termios *owl_global_get_startup_tio(owl_global *g)
975{
976  return(&(g->startup_tio));
977}
[8e401cae]978
[df0138f]979owl_list *owl_global_get_io_dispatch_list(owl_global *g)
980{
981  return &(g->io_dispatch_list);
982}
983
[4f2166b]984owl_list *owl_global_get_psa_list(owl_global *g)
985{
986  return &(g->psa_list);
987}
988
[58d1f8a]989GList **owl_global_get_timerlist(owl_global *g)
[b7bb454]990{
[58d1f8a]991  return &(g->timerlist);
[b7bb454]992}
[adee9cc]993
[8742840]994int owl_global_is_interrupted(const owl_global *g) {
[0cb6c26]995  return g->interrupted;
[adee9cc]996}
997
998void owl_global_set_interrupted(owl_global *g) {
999  g->interrupted = 1;
1000}
1001
1002void owl_global_unset_interrupted(owl_global *g) {
1003  g->interrupted = 0;
1004}
Note: See TracBrowser for help on using the repository browser.