[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" |
---|
[e20dd769] | 10 | #include "globalnotifier.h" |
---|
[7d4fbcd] | 11 | |
---|
| 12 | #ifndef MAXHOSTNAMELEN |
---|
| 13 | #define MAXHOSTNAMELEN 256 |
---|
| 14 | #endif |
---|
| 15 | |
---|
| 16 | void owl_global_init(owl_global *g) { |
---|
| 17 | struct hostent *hent; |
---|
| 18 | char hostname[MAXHOSTNAMELEN]; |
---|
[ad15610] | 19 | char *cd; |
---|
[e20dd769] | 20 | g->gn = owl_global_notifier_new(g); |
---|
[7d4fbcd] | 21 | |
---|
[8262340] | 22 | g->malloced=0; |
---|
| 23 | g->freed=0; |
---|
| 24 | |
---|
[7d4fbcd] | 25 | gethostname(hostname, MAXHOSTNAMELEN); |
---|
| 26 | hent=gethostbyname(hostname); |
---|
| 27 | if (!hent) { |
---|
[a8938c7] | 28 | g->thishost=owl_strdup("localhost"); |
---|
[7d4fbcd] | 29 | } else { |
---|
[a8938c7] | 30 | g->thishost=owl_strdup(hent->h_name); |
---|
[7d4fbcd] | 31 | } |
---|
| 32 | |
---|
[a999d9e] | 33 | g->context_stack = NULL; |
---|
| 34 | owl_global_push_context(g, OWL_CTX_STARTUP, NULL, NULL); |
---|
| 35 | |
---|
[7d4fbcd] | 36 | g->curmsg=0; |
---|
| 37 | g->topmsg=0; |
---|
[bd783db] | 38 | g->markedmsgid=-1; |
---|
[7d4fbcd] | 39 | g->needrefresh=1; |
---|
[a8938c7] | 40 | g->startupargs=NULL; |
---|
[7d4fbcd] | 41 | |
---|
| 42 | owl_variable_dict_setup(&(g->vars)); |
---|
| 43 | |
---|
| 44 | g->lines=LINES; |
---|
| 45 | g->cols=COLS; |
---|
| 46 | |
---|
| 47 | g->rightshift=0; |
---|
| 48 | |
---|
[38cc669] | 49 | g->tw = NULL; |
---|
[7d4fbcd] | 50 | |
---|
| 51 | owl_keyhandler_init(&g->kh); |
---|
| 52 | owl_keys_setup_keymaps(&g->kh); |
---|
| 53 | |
---|
[129e609] | 54 | owl_dict_create(&(g->filters)); |
---|
| 55 | g->filterlist = NULL; |
---|
[7d4fbcd] | 56 | owl_list_create(&(g->puntlist)); |
---|
[20aced3] | 57 | g->messagequeue = g_queue_new(); |
---|
[f1e629d] | 58 | owl_dict_create(&(g->styledict)); |
---|
[7d4fbcd] | 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; |
---|
[8fa9562] | 67 | owl_fmtext_init_colorpair_mgr(&(g->cpmgr)); |
---|
[7d4fbcd] | 68 | g->debug=OWL_DEBUG; |
---|
[41c9a96] | 69 | owl_regex_init(&g->search_re); |
---|
[7d4fbcd] | 70 | g->starttime=time(NULL); /* assumes we call init only a start time */ |
---|
[7f792c1] | 71 | g->lastinputtime=g->starttime; |
---|
[700c712] | 72 | g->newmsgproc_pid=0; |
---|
[61e79a9] | 73 | |
---|
[7d4fbcd] | 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); |
---|
[10b866d] | 77 | owl_history_init(&(g->msghist)); |
---|
| 78 | owl_history_init(&(g->cmdhist)); |
---|
[5a9f6fe] | 79 | owl_history_set_norepeats(&(g->cmdhist)); |
---|
[7d4fbcd] | 80 | g->nextmsgid=0; |
---|
| 81 | |
---|
[d2a4534] | 82 | owl_mainpanel_init(&(g->mainpanel)); |
---|
[7d4fbcd] | 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)); |
---|
[40d1eef] | 95 | owl_mainwin_init(&(g->mw), g->mainpanel.recwin); |
---|
[7d4fbcd] | 96 | owl_popwin_init(&(g->pw)); |
---|
[d70f45f] | 97 | owl_msgwin_init(&(g->msgwin), g->mainpanel.msgwin); |
---|
[385fda9] | 98 | g_signal_connect(g->mainpanel.sepwin, "redraw", G_CALLBACK(sepbar_redraw), NULL); |
---|
[d09e5a1] | 99 | |
---|
| 100 | g->aim_screenname=NULL; |
---|
[81655f8] | 101 | g->aim_screenname_for_filters=NULL; |
---|
[d09e5a1] | 102 | g->aim_loggedin=0; |
---|
[aa5f725] | 103 | owl_buddylist_init(&(g->buddylist)); |
---|
[b7bb454] | 104 | |
---|
[09489b89] | 105 | g->havezephyr=0; |
---|
| 106 | g->haveaim=0; |
---|
[b7bb454] | 107 | g->ignoreaimlogin=0; |
---|
[a352335c] | 108 | owl_global_set_no_doaimevents(g); |
---|
[ec6ff52] | 109 | |
---|
| 110 | owl_errqueue_init(&(g->errqueue)); |
---|
[c9e72d1] | 111 | g->got_err_signal=0; |
---|
[5a95b69] | 112 | |
---|
| 113 | owl_zbuddylist_create(&(g->zbuddies)); |
---|
[8e401cae] | 114 | |
---|
[f25812b] | 115 | g->zaldlist = NULL; |
---|
| 116 | g->pseudologin_notify = 0; |
---|
| 117 | |
---|
[a387d12e] | 118 | owl_message_init_fmtext_cache(); |
---|
[df0138f] | 119 | owl_list_create(&(g->io_dispatch_list)); |
---|
[4f2166b] | 120 | owl_list_create(&(g->psa_list)); |
---|
[58d1f8a] | 121 | g->timerlist = NULL; |
---|
[adee9cc] | 122 | g->interrupted = FALSE; |
---|
[0881cdd] | 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); |
---|
[7d4fbcd] | 129 | } |
---|
| 130 | |
---|
[eb6cedc] | 131 | /* Called once perl has been initialized */ |
---|
| 132 | void owl_global_complete_setup(owl_global *g) |
---|
| 133 | { |
---|
| 134 | owl_cmddict_setup(&(g->cmds)); |
---|
| 135 | } |
---|
| 136 | |
---|
[8ae2de9] | 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. */ |
---|
| 142 | void _owl_panel_set_window(PANEL **pan, WINDOW *win) |
---|
| 143 | { |
---|
| 144 | WINDOW *oldwin; |
---|
[b3adfb5] | 145 | |
---|
| 146 | if (win == NULL) { |
---|
[0e3cdf1] | 147 | owl_function_debugmsg("_owl_panel_set_window: passed NULL win (failed to allocate?)"); |
---|
[b3adfb5] | 148 | endwin(); |
---|
| 149 | exit(50); |
---|
| 150 | } |
---|
| 151 | |
---|
[8ae2de9] | 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 | |
---|
[7d4fbcd] | 161 | owl_context *owl_global_get_context(owl_global *g) { |
---|
[a999d9e] | 162 | if (!g->context_stack) |
---|
| 163 | return NULL; |
---|
| 164 | return g->context_stack->data; |
---|
| 165 | } |
---|
| 166 | |
---|
| 167 | static 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 | } |
---|
[7d4fbcd] | 175 | } |
---|
[a999d9e] | 176 | |
---|
| 177 | void 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 | |
---|
| 189 | void 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 | |
---|
[8742840] | 201 | int owl_global_get_lines(const owl_global *g) { |
---|
[7d4fbcd] | 202 | return(g->lines); |
---|
| 203 | } |
---|
| 204 | |
---|
[8742840] | 205 | int owl_global_get_cols(const owl_global *g) { |
---|
[7d4fbcd] | 206 | return(g->cols); |
---|
| 207 | } |
---|
| 208 | |
---|
[8742840] | 209 | int owl_global_get_recwin_lines(const owl_global *g) { |
---|
[d2a4534] | 210 | return g->mainpanel.recwinlines; |
---|
[7d4fbcd] | 211 | } |
---|
| 212 | |
---|
| 213 | /* curmsg */ |
---|
| 214 | |
---|
[8742840] | 215 | int owl_global_get_curmsg(const owl_global *g) { |
---|
[7d4fbcd] | 216 | return(g->curmsg); |
---|
| 217 | } |
---|
| 218 | |
---|
| 219 | void 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 | |
---|
[8742840] | 228 | int owl_global_get_topmsg(const owl_global *g) { |
---|
[7d4fbcd] | 229 | return(g->topmsg); |
---|
| 230 | } |
---|
| 231 | |
---|
| 232 | void owl_global_set_topmsg(owl_global *g, int i) { |
---|
| 233 | g->topmsg=i; |
---|
| 234 | } |
---|
| 235 | |
---|
[70110286] | 236 | /* markedmsgid */ |
---|
| 237 | |
---|
[8742840] | 238 | int owl_global_get_markedmsgid(const owl_global *g) { |
---|
[70110286] | 239 | return(g->markedmsgid); |
---|
| 240 | } |
---|
| 241 | |
---|
| 242 | void owl_global_set_markedmsgid(owl_global *g, int i) { |
---|
| 243 | g->markedmsgid=i; |
---|
| 244 | /* i; index of message in the current view. |
---|
[c08c70a] | 245 | const owl_message *m; |
---|
[70110286] | 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 | |
---|
[7d4fbcd] | 254 | /* windows */ |
---|
| 255 | |
---|
| 256 | owl_mainwin *owl_global_get_mainwin(owl_global *g) { |
---|
| 257 | return(&(g->mw)); |
---|
| 258 | } |
---|
| 259 | |
---|
| 260 | owl_popwin *owl_global_get_popwin(owl_global *g) { |
---|
| 261 | return(&(g->pw)); |
---|
| 262 | } |
---|
| 263 | |
---|
| 264 | /* msglist */ |
---|
| 265 | |
---|
| 266 | owl_messagelist *owl_global_get_msglist(owl_global *g) { |
---|
| 267 | return(&(g->msglist)); |
---|
| 268 | } |
---|
| 269 | |
---|
| 270 | /* keyhandler */ |
---|
| 271 | |
---|
| 272 | owl_keyhandler *owl_global_get_keyhandler(owl_global *g) { |
---|
| 273 | return(&(g->kh)); |
---|
| 274 | } |
---|
| 275 | |
---|
| 276 | /* curses windows */ |
---|
| 277 | |
---|
[385fda9] | 278 | owl_window *owl_global_get_curs_sepwin(const owl_global *g) { |
---|
| 279 | return g->mainpanel.sepwin; |
---|
[7d4fbcd] | 280 | } |
---|
| 281 | |
---|
[d70f45f] | 282 | owl_window *owl_global_get_curs_msgwin(const owl_global *g) { |
---|
| 283 | return g->msgwin.window; |
---|
[7d4fbcd] | 284 | } |
---|
| 285 | |
---|
[f6fae8d] | 286 | owl_window *owl_global_get_curs_typwin(const owl_global *g) { |
---|
| 287 | return g->mainpanel.typwin; |
---|
[7d4fbcd] | 288 | } |
---|
| 289 | |
---|
| 290 | /* typwin */ |
---|
| 291 | |
---|
[8742840] | 292 | owl_editwin *owl_global_get_typwin(const owl_global *g) { |
---|
[a556caa] | 293 | return(g->tw); |
---|
[7d4fbcd] | 294 | } |
---|
| 295 | |
---|
| 296 | /* refresh */ |
---|
| 297 | |
---|
[8742840] | 298 | int owl_global_is_needrefresh(const owl_global *g) { |
---|
[7d4fbcd] | 299 | if (g->needrefresh==1) return(1); |
---|
| 300 | return(0); |
---|
| 301 | } |
---|
| 302 | |
---|
| 303 | void owl_global_set_needrefresh(owl_global *g) { |
---|
| 304 | g->needrefresh=1; |
---|
| 305 | } |
---|
| 306 | |
---|
| 307 | void owl_global_set_noneedrefresh(owl_global *g) { |
---|
| 308 | g->needrefresh=0; |
---|
| 309 | } |
---|
| 310 | |
---|
| 311 | /* variable dictionary */ |
---|
| 312 | |
---|
| 313 | owl_vardict *owl_global_get_vardict(owl_global *g) { |
---|
| 314 | return &(g->vars); |
---|
| 315 | } |
---|
| 316 | |
---|
| 317 | /* command dictionary */ |
---|
| 318 | |
---|
| 319 | owl_cmddict *owl_global_get_cmddict(owl_global *g) { |
---|
| 320 | return &(g->cmds); |
---|
| 321 | } |
---|
| 322 | |
---|
| 323 | /* rightshift */ |
---|
| 324 | |
---|
| 325 | void owl_global_set_rightshift(owl_global *g, int i) { |
---|
[5b80b87] | 326 | g->rightshift = i; |
---|
| 327 | g_object_notify(G_OBJECT(g->gn), "rightshift"); |
---|
[7d4fbcd] | 328 | } |
---|
| 329 | |
---|
[8742840] | 330 | int owl_global_get_rightshift(const owl_global *g) { |
---|
[7d4fbcd] | 331 | return(g->rightshift); |
---|
| 332 | } |
---|
| 333 | |
---|
| 334 | /* typwin */ |
---|
| 335 | |
---|
[58d47ca] | 336 | owl_editwin *owl_global_set_typwin_active(owl_global *g, int style, owl_history *hist) { |
---|
[38cc669] | 337 | int d; |
---|
| 338 | d = owl_global_get_typewindelta(g); |
---|
[73eda8c] | 339 | if (d > 0 && style == OWL_EDITWIN_STYLE_MULTILINE) |
---|
[da466e0] | 340 | owl_function_resize_typwin(owl_global_get_typwin_lines(g) + d); |
---|
| 341 | |
---|
[f6fae8d] | 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 | |
---|
[38cc669] | 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); |
---|
[58d47ca] | 352 | return g->tw; |
---|
[7d4fbcd] | 353 | } |
---|
| 354 | |
---|
| 355 | void owl_global_set_typwin_inactive(owl_global *g) { |
---|
[da466e0] | 356 | int d = owl_global_get_typewindelta(g); |
---|
[73eda8c] | 357 | if (d > 0 && owl_editwin_get_style(g->tw) == OWL_EDITWIN_STYLE_MULTILINE) |
---|
[da466e0] | 358 | owl_function_resize_typwin(owl_global_get_typwin_lines(g) - d); |
---|
| 359 | |
---|
[f6fae8d] | 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 | |
---|
[38cc669] | 366 | g->tw = NULL; |
---|
[7d4fbcd] | 367 | } |
---|
| 368 | |
---|
| 369 | /* resize */ |
---|
| 370 | |
---|
| 371 | void owl_global_set_resize_pending(owl_global *g) { |
---|
| 372 | g->resizepending=1; |
---|
| 373 | } |
---|
| 374 | |
---|
[8742840] | 375 | const char *owl_global_get_homedir(const owl_global *g) { |
---|
[a8938c7] | 376 | if (g->homedir) return(g->homedir); |
---|
| 377 | return("/"); |
---|
[7d4fbcd] | 378 | } |
---|
| 379 | |
---|
[8742840] | 380 | const char *owl_global_get_confdir(const owl_global *g) { |
---|
[b363d83] | 381 | if (g->confdir) return(g->confdir); |
---|
| 382 | return("/"); |
---|
| 383 | } |
---|
| 384 | |
---|
| 385 | /* |
---|
| 386 | * Setting this also sets startupfile to confdir/startup |
---|
| 387 | */ |
---|
[e19eb97] | 388 | void owl_global_set_confdir(owl_global *g, const char *cd) { |
---|
[27f6487] | 389 | owl_free(g->confdir); |
---|
[b363d83] | 390 | g->confdir = owl_strdup(cd); |
---|
[27f6487] | 391 | owl_free(g->startupfile); |
---|
[b363d83] | 392 | g->startupfile = owl_sprintf("%s/startup", cd); |
---|
| 393 | } |
---|
| 394 | |
---|
[8742840] | 395 | const char *owl_global_get_startupfile(const owl_global *g) { |
---|
[b363d83] | 396 | if(g->startupfile) return(g->startupfile); |
---|
| 397 | return("/"); |
---|
| 398 | } |
---|
| 399 | |
---|
[8742840] | 400 | int owl_global_get_direction(const owl_global *g) { |
---|
[7d4fbcd] | 401 | return(g->direction); |
---|
| 402 | } |
---|
| 403 | |
---|
| 404 | void owl_global_set_direction_downwards(owl_global *g) { |
---|
| 405 | g->direction=OWL_DIRECTION_DOWNWARDS; |
---|
| 406 | } |
---|
| 407 | |
---|
| 408 | void owl_global_set_direction_upwards(owl_global *g) { |
---|
| 409 | g->direction=OWL_DIRECTION_UPWARDS; |
---|
| 410 | } |
---|
| 411 | |
---|
| 412 | /* perl stuff */ |
---|
| 413 | |
---|
| 414 | void owl_global_set_perlinterp(owl_global *g, void *p) { |
---|
| 415 | g->perl=p; |
---|
| 416 | } |
---|
| 417 | |
---|
[8742840] | 418 | void *owl_global_get_perlinterp(const owl_global *g) { |
---|
[7d4fbcd] | 419 | return(g->perl); |
---|
| 420 | } |
---|
| 421 | |
---|
[8742840] | 422 | int owl_global_is_config_format(const owl_global *g) { |
---|
[7d4fbcd] | 423 | if (g->config_format) return(1); |
---|
| 424 | return(0); |
---|
| 425 | } |
---|
| 426 | |
---|
| 427 | void 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 | |
---|
| 435 | void owl_global_set_have_config(owl_global *g) { |
---|
| 436 | g->haveconfig=1; |
---|
| 437 | } |
---|
| 438 | |
---|
| 439 | void owl_global_set_no_have_config(owl_global *g) { |
---|
| 440 | g->haveconfig=0; |
---|
| 441 | } |
---|
| 442 | |
---|
| 443 | int owl_global_have_config(owl_global *g) { |
---|
| 444 | if (g->haveconfig) return(1); |
---|
| 445 | return(0); |
---|
| 446 | } |
---|
| 447 | |
---|
[285bc9a] | 448 | /* |
---|
| 449 | * Compute the size of the terminal. Try a ioctl, fallback to other stuff on |
---|
| 450 | * fail. |
---|
| 451 | */ |
---|
[d39f68c] | 452 | void owl_global_get_terminal_size(int *lines, int *cols) { |
---|
[285bc9a] | 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 | |
---|
[99ce51c] | 469 | void owl_global_check_resize(owl_global *g) { |
---|
[3e0147f] | 470 | /* resize the screen. If lines or cols is 0 use the terminal size */ |
---|
[7d4fbcd] | 471 | if (!g->resizepending) return; |
---|
[8479494] | 472 | g->resizepending = 0; |
---|
[7d4fbcd] | 473 | |
---|
[99ce51c] | 474 | owl_global_get_terminal_size(&g->lines, &g->cols); |
---|
[7a6e6c7] | 475 | owl_window_resize(owl_window_get_screen(), g->lines, g->cols); |
---|
[7d4fbcd] | 476 | |
---|
[f9f88f3] | 477 | owl_function_debugmsg("New size is %i lines, %i cols.", g->lines, g->cols); |
---|
| 478 | } |
---|
| 479 | |
---|
[7d4fbcd] | 480 | /* debug */ |
---|
| 481 | |
---|
[8742840] | 482 | int owl_global_is_debug_fast(const owl_global *g) { |
---|
[7d4fbcd] | 483 | if (g->debug) return(1); |
---|
| 484 | return(0); |
---|
| 485 | } |
---|
| 486 | |
---|
| 487 | /* starttime */ |
---|
| 488 | |
---|
[8742840] | 489 | time_t owl_global_get_starttime(const owl_global *g) { |
---|
[7d4fbcd] | 490 | return(g->starttime); |
---|
| 491 | } |
---|
| 492 | |
---|
[8742840] | 493 | time_t owl_global_get_runtime(const owl_global *g) { |
---|
[7d4fbcd] | 494 | return(time(NULL)-g->starttime); |
---|
| 495 | } |
---|
| 496 | |
---|
[8742840] | 497 | time_t owl_global_get_lastinputtime(const owl_global *g) { |
---|
[7f792c1] | 498 | return(g->lastinputtime); |
---|
| 499 | } |
---|
| 500 | |
---|
[eebef19] | 501 | void owl_global_set_lastinputtime(owl_global *g, time_t time) { |
---|
| 502 | g->lastinputtime = time; |
---|
[7f792c1] | 503 | } |
---|
| 504 | |
---|
[8742840] | 505 | time_t owl_global_get_idletime(const owl_global *g) { |
---|
[7f792c1] | 506 | return(time(NULL)-g->lastinputtime); |
---|
| 507 | } |
---|
| 508 | |
---|
[8742840] | 509 | const char *owl_global_get_hostname(const owl_global *g) { |
---|
[a8938c7] | 510 | if (g->thishost) return(g->thishost); |
---|
| 511 | return(""); |
---|
[61e79a9] | 512 | } |
---|
| 513 | |
---|
[7d4fbcd] | 514 | /* userclue */ |
---|
| 515 | |
---|
| 516 | void owl_global_set_userclue(owl_global *g, int clue) { |
---|
| 517 | g->userclue=clue; |
---|
| 518 | } |
---|
| 519 | |
---|
| 520 | void owl_global_add_userclue(owl_global *g, int clue) { |
---|
| 521 | g->userclue|=clue; |
---|
| 522 | } |
---|
| 523 | |
---|
[8742840] | 524 | int owl_global_get_userclue(const owl_global *g) { |
---|
[7d4fbcd] | 525 | return(g->userclue); |
---|
| 526 | } |
---|
| 527 | |
---|
[8742840] | 528 | int owl_global_is_userclue(const owl_global *g, int clue) { |
---|
[7d4fbcd] | 529 | if (g->userclue & clue) return(1); |
---|
| 530 | return(0); |
---|
| 531 | } |
---|
| 532 | |
---|
| 533 | /* viewwin */ |
---|
| 534 | |
---|
| 535 | owl_viewwin *owl_global_get_viewwin(owl_global *g) { |
---|
| 536 | return(&(g->vw)); |
---|
| 537 | } |
---|
| 538 | |
---|
| 539 | |
---|
| 540 | /* vert offset */ |
---|
| 541 | |
---|
[8742840] | 542 | int owl_global_get_curmsg_vert_offset(const owl_global *g) { |
---|
[7d4fbcd] | 543 | return(g->curmsg_vert_offset); |
---|
| 544 | } |
---|
| 545 | |
---|
| 546 | void owl_global_set_curmsg_vert_offset(owl_global *g, int i) { |
---|
[5b80b87] | 547 | g->curmsg_vert_offset = i; |
---|
| 548 | g_object_notify(G_OBJECT(g->gn), "curmsg-vert-offset"); |
---|
[7d4fbcd] | 549 | } |
---|
| 550 | |
---|
| 551 | /* startup args */ |
---|
| 552 | |
---|
[e19eb97] | 553 | void owl_global_set_startupargs(owl_global *g, int argc, const char *const *argv) { |
---|
[a8938c7] | 554 | int i, len; |
---|
| 555 | |
---|
| 556 | if (g->startupargs) owl_free(g->startupargs); |
---|
| 557 | |
---|
| 558 | len=0; |
---|
| 559 | for (i=0; i<argc; i++) { |
---|
[591e6aa7] | 560 | len+=strlen(argv[i])+5; |
---|
[a8938c7] | 561 | } |
---|
[34509d5] | 562 | g->startupargs=owl_malloc(len+5); |
---|
[7d4fbcd] | 563 | |
---|
| 564 | strcpy(g->startupargs, ""); |
---|
| 565 | for (i=0; i<argc; i++) { |
---|
[b9cb41b] | 566 | sprintf(g->startupargs + strlen(g->startupargs), "%s ", argv[i]); |
---|
[7d4fbcd] | 567 | } |
---|
| 568 | g->startupargs[strlen(g->startupargs)-1]='\0'; |
---|
| 569 | } |
---|
| 570 | |
---|
[8742840] | 571 | const char *owl_global_get_startupargs(const owl_global *g) { |
---|
[a8938c7] | 572 | if (g->startupargs) return(g->startupargs); |
---|
| 573 | return(""); |
---|
[7d4fbcd] | 574 | } |
---|
| 575 | |
---|
| 576 | /* history */ |
---|
| 577 | |
---|
[10b866d] | 578 | owl_history *owl_global_get_msg_history(owl_global *g) { |
---|
| 579 | return(&(g->msghist)); |
---|
| 580 | } |
---|
| 581 | |
---|
| 582 | owl_history *owl_global_get_cmd_history(owl_global *g) { |
---|
| 583 | return(&(g->cmdhist)); |
---|
[7d4fbcd] | 584 | } |
---|
| 585 | |
---|
| 586 | /* filterlist */ |
---|
[129e609] | 587 | typedef struct _owl_global_filter_ent { /* noproto */ |
---|
| 588 | owl_global *g; |
---|
| 589 | owl_filter *f; |
---|
| 590 | } owl_global_filter_ent; |
---|
[7d4fbcd] | 591 | |
---|
[8742840] | 592 | owl_filter *owl_global_get_filter(const owl_global *g, const char *name) { |
---|
[129e609] | 593 | owl_global_filter_ent *e = owl_dict_find_element(&(g->filters), name); |
---|
| 594 | if (e) return e->f; |
---|
| 595 | return NULL; |
---|
| 596 | } |
---|
[7d4fbcd] | 597 | |
---|
[5294cbf] | 598 | static void owl_global_delete_filter_ent(void *data) |
---|
| 599 | { |
---|
[129e609] | 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); |
---|
[7d4fbcd] | 604 | } |
---|
| 605 | |
---|
| 606 | void owl_global_add_filter(owl_global *g, owl_filter *f) { |
---|
[129e609] | 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), |
---|
[5294cbf] | 612 | e, owl_global_delete_filter_ent); |
---|
[129e609] | 613 | g->filterlist = g_list_append(g->filterlist, f); |
---|
[7d4fbcd] | 614 | } |
---|
| 615 | |
---|
[e19eb97] | 616 | void owl_global_remove_filter(owl_global *g, const char *name) { |
---|
[129e609] | 617 | owl_global_filter_ent *e = owl_dict_remove_element(&(g->filters), name); |
---|
| 618 | if (e) |
---|
[5294cbf] | 619 | owl_global_delete_filter_ent(e); |
---|
[7d4fbcd] | 620 | } |
---|
| 621 | |
---|
| 622 | /* nextmsgid */ |
---|
| 623 | |
---|
| 624 | int owl_global_get_nextmsgid(owl_global *g) { |
---|
| 625 | return(g->nextmsgid++); |
---|
| 626 | } |
---|
| 627 | |
---|
| 628 | /* current view */ |
---|
| 629 | |
---|
| 630 | owl_view *owl_global_get_current_view(owl_global *g) { |
---|
| 631 | return(&(g->current_view)); |
---|
| 632 | } |
---|
| 633 | |
---|
| 634 | /* has colors */ |
---|
| 635 | |
---|
[8742840] | 636 | int owl_global_get_hascolors(const owl_global *g) { |
---|
[7d4fbcd] | 637 | if (g->hascolors) return(1); |
---|
| 638 | return(0); |
---|
| 639 | } |
---|
| 640 | |
---|
| 641 | /* color pairs */ |
---|
| 642 | |
---|
[8742840] | 643 | int owl_global_get_colorpairs(const owl_global *g) { |
---|
[7d4fbcd] | 644 | return(g->colorpairs); |
---|
| 645 | } |
---|
| 646 | |
---|
[8fa9562] | 647 | owl_colorpair_mgr *owl_global_get_colorpair_mgr(owl_global *g) { |
---|
| 648 | return(&(g->cpmgr)); |
---|
| 649 | } |
---|
| 650 | |
---|
[7d4fbcd] | 651 | /* puntlist */ |
---|
| 652 | |
---|
| 653 | owl_list *owl_global_get_puntlist(owl_global *g) { |
---|
| 654 | return(&(g->puntlist)); |
---|
| 655 | } |
---|
| 656 | |
---|
[c08c70a] | 657 | int owl_global_message_is_puntable(owl_global *g, const owl_message *m) { |
---|
[77bced3] | 658 | const owl_list *pl; |
---|
[7d4fbcd] | 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 | |
---|
| 669 | int owl_global_should_followlast(owl_global *g) { |
---|
[9e5c9f3] | 670 | const owl_view *v; |
---|
[7d4fbcd] | 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 | } |
---|
[1fd0b25] | 679 | |
---|
[8742840] | 680 | int owl_global_is_search_active(const owl_global *g) { |
---|
[41c9a96] | 681 | if (owl_regex_is_set(&g->search_re)) return(1); |
---|
[1fd0b25] | 682 | return(0); |
---|
| 683 | } |
---|
| 684 | |
---|
[89b2daf] | 685 | void owl_global_set_search_re(owl_global *g, const owl_regex *re) { |
---|
[41c9a96] | 686 | if (owl_regex_is_set(&g->search_re)) { |
---|
[5cbc929] | 687 | owl_regex_cleanup(&g->search_re); |
---|
[41c9a96] | 688 | owl_regex_init(&g->search_re); |
---|
| 689 | } |
---|
| 690 | if (re != NULL) |
---|
| 691 | owl_regex_copy(re, &g->search_re); |
---|
[1fd0b25] | 692 | } |
---|
| 693 | |
---|
[8742840] | 694 | const owl_regex *owl_global_get_search_re(const owl_global *g) { |
---|
[41c9a96] | 695 | return &g->search_re; |
---|
[1fd0b25] | 696 | } |
---|
[700c712] | 697 | |
---|
[0e5afa2] | 698 | void owl_global_set_newmsgproc_pid(owl_global *g, pid_t i) { |
---|
[700c712] | 699 | g->newmsgproc_pid=i; |
---|
| 700 | } |
---|
| 701 | |
---|
[0e5afa2] | 702 | pid_t owl_global_get_newmsgproc_pid(const owl_global *g) { |
---|
[700c712] | 703 | return(g->newmsgproc_pid); |
---|
| 704 | } |
---|
| 705 | |
---|
[d09e5a1] | 706 | /* AIM stuff */ |
---|
| 707 | |
---|
[8742840] | 708 | int owl_global_is_aimloggedin(const owl_global *g) |
---|
[6a415e9] | 709 | { |
---|
[d09e5a1] | 710 | if (g->aim_loggedin) return(1); |
---|
| 711 | return(0); |
---|
| 712 | } |
---|
| 713 | |
---|
[8742840] | 714 | const char *owl_global_get_aim_screenname(const owl_global *g) |
---|
[6a415e9] | 715 | { |
---|
[a352335c] | 716 | if (owl_global_is_aimloggedin(g)) { |
---|
| 717 | return (g->aim_screenname); |
---|
| 718 | } |
---|
| 719 | return(""); |
---|
[d09e5a1] | 720 | } |
---|
| 721 | |
---|
[8742840] | 722 | const char *owl_global_get_aim_screenname_for_filters(const owl_global *g) |
---|
[81655f8] | 723 | { |
---|
| 724 | if (owl_global_is_aimloggedin(g)) { |
---|
| 725 | return (g->aim_screenname_for_filters); |
---|
| 726 | } |
---|
| 727 | return(""); |
---|
| 728 | } |
---|
| 729 | |
---|
[e19eb97] | 730 | void owl_global_set_aimloggedin(owl_global *g, const char *screenname) |
---|
[6a415e9] | 731 | { |
---|
[65b2173] | 732 | char *sn_escaped; |
---|
[e19eb97] | 733 | const char *quote; |
---|
[d09e5a1] | 734 | g->aim_loggedin=1; |
---|
| 735 | if (g->aim_screenname) owl_free(g->aim_screenname); |
---|
[81655f8] | 736 | if (g->aim_screenname_for_filters) owl_free(g->aim_screenname_for_filters); |
---|
[d09e5a1] | 737 | g->aim_screenname=owl_strdup(screenname); |
---|
[81655f8] | 738 | sn_escaped = owl_text_quote(screenname, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
| 739 | quote = owl_getquoting(sn_escaped); |
---|
[9f4e3f8] | 740 | g->aim_screenname_for_filters=owl_sprintf("%s%s%s", quote, sn_escaped, quote); |
---|
[81655f8] | 741 | owl_free(sn_escaped); |
---|
[d09e5a1] | 742 | } |
---|
| 743 | |
---|
[6a415e9] | 744 | void owl_global_set_aimnologgedin(owl_global *g) |
---|
| 745 | { |
---|
[d09e5a1] | 746 | g->aim_loggedin=0; |
---|
| 747 | } |
---|
| 748 | |
---|
[8742840] | 749 | int owl_global_is_doaimevents(const owl_global *g) |
---|
[a352335c] | 750 | { |
---|
| 751 | if (g->aim_doprocessing) return(1); |
---|
| 752 | return(0); |
---|
| 753 | } |
---|
| 754 | |
---|
| 755 | void owl_global_set_doaimevents(owl_global *g) |
---|
| 756 | { |
---|
| 757 | g->aim_doprocessing=1; |
---|
| 758 | } |
---|
| 759 | |
---|
| 760 | void owl_global_set_no_doaimevents(owl_global *g) |
---|
| 761 | { |
---|
| 762 | g->aim_doprocessing=0; |
---|
| 763 | } |
---|
| 764 | |
---|
[6a415e9] | 765 | aim_session_t *owl_global_get_aimsess(owl_global *g) |
---|
| 766 | { |
---|
[d09e5a1] | 767 | return(&(g->aimsess)); |
---|
| 768 | } |
---|
| 769 | |
---|
[c15bbfb] | 770 | aim_conn_t *owl_global_get_bosconn(owl_global *g) |
---|
| 771 | { |
---|
| 772 | return(&(g->bosconn)); |
---|
| 773 | } |
---|
| 774 | |
---|
| 775 | void owl_global_set_bossconn(owl_global *g, aim_conn_t *conn) |
---|
[6a415e9] | 776 | { |
---|
[c15bbfb] | 777 | g->bosconn=*conn; |
---|
[d09e5a1] | 778 | } |
---|
| 779 | |
---|
| 780 | /* message queue */ |
---|
| 781 | |
---|
[6a415e9] | 782 | void owl_global_messagequeue_addmsg(owl_global *g, owl_message *m) |
---|
| 783 | { |
---|
[20aced3] | 784 | g_queue_push_tail(g->messagequeue, m); |
---|
[d09e5a1] | 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 | */ |
---|
[13a3c1db] | 791 | owl_message *owl_global_messagequeue_popmsg(owl_global *g) |
---|
[6a415e9] | 792 | { |
---|
[d09e5a1] | 793 | owl_message *out; |
---|
| 794 | |
---|
[20aced3] | 795 | if (g_queue_is_empty(g->messagequeue)) |
---|
| 796 | return NULL; |
---|
| 797 | out = g_queue_pop_head(g->messagequeue); |
---|
| 798 | return out; |
---|
[d09e5a1] | 799 | } |
---|
| 800 | |
---|
[6a415e9] | 801 | int owl_global_messagequeue_pending(owl_global *g) |
---|
| 802 | { |
---|
[20aced3] | 803 | return !g_queue_is_empty(g->messagequeue); |
---|
[d09e5a1] | 804 | } |
---|
[aa5f725] | 805 | |
---|
[6a415e9] | 806 | owl_buddylist *owl_global_get_buddylist(owl_global *g) |
---|
| 807 | { |
---|
[aa5f725] | 808 | return(&(g->buddylist)); |
---|
| 809 | } |
---|
| 810 | |
---|
[bd3f232] | 811 | /* style */ |
---|
| 812 | |
---|
| 813 | /* Return the style with name 'name'. If it does not exist return |
---|
| 814 | * NULL */ |
---|
[8742840] | 815 | const owl_style *owl_global_get_style_by_name(const owl_global *g, const char *name) |
---|
[bd3f232] | 816 | { |
---|
[f1e629d] | 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. */ |
---|
[8742840] | 822 | int owl_global_get_style_names(const owl_global *g, owl_list *l) { |
---|
[f1e629d] | 823 | return owl_dict_get_keys(&(g->styledict), l); |
---|
[bd3f232] | 824 | } |
---|
| 825 | |
---|
[cf83b7a] | 826 | void owl_global_add_style(owl_global *g, owl_style *s) |
---|
| 827 | { |
---|
[f1fc47f] | 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), |
---|
[516c27e] | 837 | s, (void (*)(void *))owl_style_delete); |
---|
[bd3f232] | 838 | } |
---|
[cf83b7a] | 839 | |
---|
[09489b89] | 840 | void owl_global_set_haveaim(owl_global *g) |
---|
| 841 | { |
---|
| 842 | g->haveaim=1; |
---|
| 843 | } |
---|
| 844 | |
---|
[8742840] | 845 | int owl_global_is_haveaim(const owl_global *g) |
---|
[09489b89] | 846 | { |
---|
| 847 | if (g->haveaim) return(1); |
---|
| 848 | return(0); |
---|
| 849 | } |
---|
| 850 | |
---|
[b7bb454] | 851 | void owl_global_set_ignore_aimlogin(owl_global *g) |
---|
| 852 | { |
---|
| 853 | g->ignoreaimlogin = 1; |
---|
| 854 | } |
---|
| 855 | |
---|
| 856 | void owl_global_unset_ignore_aimlogin(owl_global *g) |
---|
| 857 | { |
---|
| 858 | g->ignoreaimlogin = 0; |
---|
| 859 | } |
---|
| 860 | |
---|
[8742840] | 861 | int owl_global_is_ignore_aimlogin(const owl_global *g) |
---|
[b7bb454] | 862 | { |
---|
| 863 | return g->ignoreaimlogin; |
---|
| 864 | } |
---|
| 865 | |
---|
[09489b89] | 866 | void owl_global_set_havezephyr(owl_global *g) |
---|
| 867 | { |
---|
| 868 | g->havezephyr=1; |
---|
| 869 | } |
---|
| 870 | |
---|
[8742840] | 871 | int owl_global_is_havezephyr(const owl_global *g) |
---|
[09489b89] | 872 | { |
---|
| 873 | if (g->havezephyr) return(1); |
---|
| 874 | return(0); |
---|
| 875 | } |
---|
[de03334] | 876 | |
---|
[ec6ff52] | 877 | owl_errqueue *owl_global_get_errqueue(owl_global *g) |
---|
| 878 | { |
---|
| 879 | return(&(g->errqueue)); |
---|
| 880 | } |
---|
[c9e72d1] | 881 | |
---|
| 882 | void 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 { |
---|
[7892963] | 888 | siginfo_t si; |
---|
| 889 | memset(&si, 0, sizeof(si)); |
---|
| 890 | g->err_signal_info = si; |
---|
[c9e72d1] | 891 | } |
---|
| 892 | } |
---|
| 893 | |
---|
| 894 | int 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 | |
---|
[5a95b69] | 905 | |
---|
| 906 | owl_zbuddylist *owl_global_get_zephyr_buddylist(owl_global *g) |
---|
| 907 | { |
---|
| 908 | return(&(g->zbuddies)); |
---|
| 909 | } |
---|
[8232149] | 910 | |
---|
[f25812b] | 911 | GList **owl_global_get_zaldlist(owl_global *g) |
---|
| 912 | { |
---|
| 913 | return &(g->zaldlist); |
---|
| 914 | } |
---|
| 915 | |
---|
| 916 | int owl_global_get_pseudologin_notify(owl_global *g) |
---|
| 917 | { |
---|
| 918 | return g->pseudologin_notify; |
---|
| 919 | } |
---|
| 920 | |
---|
| 921 | void owl_global_set_pseudologin_notify(owl_global *g, int notify) |
---|
| 922 | { |
---|
| 923 | g->pseudologin_notify = notify; |
---|
| 924 | } |
---|
| 925 | |
---|
[8232149] | 926 | struct termios *owl_global_get_startup_tio(owl_global *g) |
---|
| 927 | { |
---|
| 928 | return(&(g->startup_tio)); |
---|
| 929 | } |
---|
[8e401cae] | 930 | |
---|
[df0138f] | 931 | owl_list *owl_global_get_io_dispatch_list(owl_global *g) |
---|
| 932 | { |
---|
| 933 | return &(g->io_dispatch_list); |
---|
| 934 | } |
---|
| 935 | |
---|
[4f2166b] | 936 | owl_list *owl_global_get_psa_list(owl_global *g) |
---|
| 937 | { |
---|
| 938 | return &(g->psa_list); |
---|
| 939 | } |
---|
| 940 | |
---|
[58d1f8a] | 941 | GList **owl_global_get_timerlist(owl_global *g) |
---|
[b7bb454] | 942 | { |
---|
[58d1f8a] | 943 | return &(g->timerlist); |
---|
[b7bb454] | 944 | } |
---|
[adee9cc] | 945 | |
---|
[8742840] | 946 | int owl_global_is_interrupted(const owl_global *g) { |
---|
[0cb6c26] | 947 | return g->interrupted; |
---|
[adee9cc] | 948 | } |
---|
| 949 | |
---|
| 950 | void owl_global_set_interrupted(owl_global *g) { |
---|
| 951 | g->interrupted = 1; |
---|
| 952 | } |
---|
| 953 | |
---|
| 954 | void owl_global_unset_interrupted(owl_global *g) { |
---|
| 955 | g->interrupted = 0; |
---|
| 956 | } |
---|