1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/*
* hold.c: handles buffering of display output.
*
* Written By Michael Sandrof
*
* Copyright(c) 1990
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*/
#ifndef lint
static char rcsid[] = "@(#)$Id: hold.c,v 1.13 1996/06/19 07:18:51 mrg Exp $";
#endif /* lint */
#include "irc.h"
#include "ircaux.h"
#include "window.h"
#include "screen.h"
#include "vars.h"
#include "input.h"
/* reset_hold: Make hold_mode behave like VM CHAT, hold only
* when there is no user interaction, this should be called
* whenever the user does something in a window. -lynx
*/
void
reset_hold(win)
Window *win;
{
if (!win)
win = curr_scr_win;
if (!win->scrolled_lines)
win->line_cnt = 0;
}
/* add_to_hold_list: adds str to the hold list queue */
void
add_to_hold_list(window, str, logged)
Window *window;
char *str;
int logged;
{
Hold *new;
unsigned int max;
new = (Hold *) new_malloc(sizeof(Hold));
new->str = (char *) 0;
malloc_strcpy(&(new->str), str);
new->logged = logged;
window->held_lines++;
if ((max = get_int_var(HOLD_MODE_MAX_VAR)) != 0)
{
if (window->held_lines > max)
hold_mode(window, OFF, 1);
}
new->next = window->hold_head;
new->prev = (Hold *) 0;
if (window->hold_tail == (Hold *) 0)
window->hold_tail = new;
if (window->hold_head)
window->hold_head->prev = new;
window->hold_head = new;
update_all_status();
}
/* remove_from_hold_list: pops the next element off the hold list queue. */
void
remove_from_hold_list(window)
Window *window;
{
Hold *crap;
if (window->hold_tail)
{
window->held_lines--;
new_free(&window->hold_tail->str);
crap = window->hold_tail;
window->hold_tail = window->hold_tail->prev;
if (window->hold_tail == (Hold *) 0)
window->hold_head = window->hold_tail;
else
window->hold_tail->next = (Hold *) 0;
new_free(&crap);
update_all_status();
}
}
/*
* hold_mode: sets the "hold mode". Really. If the update flag is true,
* this will also update the status line, if needed, to display the hold mode
* state. If update is false, only the internal flag is set.
*/
void
hold_mode(window, flag, update)
Window *window;
int flag,
update;
{
if (window == (Window *) 0)
window = curr_scr_win;
if (flag != ON && window->scrolled_lines)
return;
if (flag == TOGGLE)
{
if (window->held == OFF)
window->held = ON;
else
window->held = OFF;
}
else
window->held = flag;
if (update)
{
if (window->held != window->last_held)
{
window->last_held = window->held;
/* This shouldn't be done
* this way */
update_window_status(window, 0);
if (window->update | UPDATE_STATUS)
window->update -= UPDATE_STATUS;
cursor_in_display();
update_input(NO_UPDATE);
}
}
else
window->last_held = -1;
}
/*
* hold_output: returns the state of the window->held, which is set in the
* hold_mode() routine.
*/
int
hold_output(window)
Window *window;
{
if (!window)
window = curr_scr_win;
return (window->held == ON) || (window->scrolled_lines != 0);
}
/*
* hold_queue: returns the string value of the next element on the hold
* quere. This does not change the hold queue
*/
char *
hold_queue(window)
Window *window;
{
if (window->hold_tail)
return (window->hold_tail->str);
else
return ((char *) 0);
}
int
hold_queue_logged(window)
Window *window;
{
if (window->hold_tail)
return window->hold_tail->logged;
else
return 0;
}
/* toggle_stop_screen: the BIND function TOGGLE_STOP_SCREEN */
void
#ifdef __STDC__
toggle_stop_screen(unsigned char key, char *ptr)
#else
toggle_stop_screen(key, ptr)
unsigned char key;
char * ptr;
#endif /* __STDC__ */
{
hold_mode((Window *) 0, TOGGLE, 1);
update_all_windows();
}
|