source: global.c @ 99ce51c

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