summaryrefslogtreecommitdiff
path: root/src/fe-text/screen.c
blob: 19c79f5a1c1d9cfa92d917766f7f4228f2c3eb7e (plain)
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*
 screen.c : All virtual screen management, real screen management is in
            con_???.c files.

    Copyright (C) 1999 Timo Sirainen

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#include "module.h"
#include "signals.h"
#include "settings.h"

#include "screen.h"
#include "gui-readline.h"
#include "gui-windows.h"

#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include <signal.h>

#ifndef COLOR_PAIRS
#define COLOR_PAIRS 64
#endif

#define MIN_SCREEN_WIDTH 20

static gint scrx, scry;
gboolean use_colors;
static gint freeze_refresh;

#ifdef SIGWINCH

static void sig_winch(int p)
{
#ifdef TIOCGWINSZ
    struct winsize ws;
    gint ychange, xchange;

    /* Get new window size */
    if (ioctl(0, TIOCGWINSZ, &ws) < 0)
	return;

    if (ws.ws_row == LINES && ws.ws_col == COLS)
    {
	/* Same size, abort. */
	return;
    }

    if (ws.ws_col < MIN_SCREEN_WIDTH)
	ws.ws_col = MIN_SCREEN_WIDTH;

    /* Resize curses terminal */
    ychange = ws.ws_row-LINES;
    xchange = ws.ws_col-COLS;
#ifdef HAVE_CURSES_RESIZETERM
    resizeterm(ws.ws_row, ws.ws_col);
#else
    deinit_screen();
    init_screen();
#endif

    last_text_line += ychange;
    gui_windows_resize(ychange, xchange != 0);
#endif
}
#endif

/* SIGINT != ^C .. any better way to make this work? */
void sigint_handler(int p)
{
    ungetch(3);
    readline();
}

static void read_settings(void)
{
	use_colors = settings_get_bool("colors");
	irssi_redraw();
}

/* Initialize screen, detect screen length */
gint init_screen(void)
{
    gchar ansi_tab[8] = { 0, 4, 2, 6, 1, 5, 3, 7 };
    gint num;

    if (!initscr()) return 0;

    if (COLS < MIN_SCREEN_WIDTH)
	COLS = MIN_SCREEN_WIDTH;

    signal(SIGINT, sigint_handler);
    cbreak(); noecho(); idlok(stdscr, 1);
#ifdef HAVE_CURSES_IDCOK
    idcok(stdscr, 1);
#endif
    intrflush(stdscr, FALSE); halfdelay(1); keypad(stdscr, 1);

    settings_add_bool("lookandfeel", "colors", TRUE);

    use_colors = settings_get_bool("colors") && has_colors();
    if (has_colors()) start_color();

#ifdef HAVE_NCURSES_USE_DEFAULT_COLORS
    /* this lets us to use the "default" background color for colors <= 7 so
       background pixmaps etc. show up right */
    use_default_colors();

    for (num = 1; num < COLOR_PAIRS; num++)
	init_pair(num, ansi_tab[num & 7], num <= 7 ? -1 : ansi_tab[num >> 3]);

    init_pair(63, 0, -1); /* hm.. not THAT good idea, but probably more people
                             want dark grey than white on white.. */
#else
    for (num = 1; num < COLOR_PAIRS; num++)
	init_pair(num, ansi_tab[num & 7], ansi_tab[num >> 3]);
    init_pair(63, 0, 0);
#endif

    scrx = scry = 0;
    if (last_text_line == 0)
    {
	first_text_line = 0;
	last_text_line = LINES-1;
    }
#ifdef SIGWINCH
    signal(SIGWINCH, sig_winch);
#endif

    freeze_refresh = 0;
    clear();

    signal_add("setup changed", (SIGNAL_FUNC) read_settings);
    return 1;
}

/* Deinitialize screen */
void deinit_screen(void)
{
    signal_remove("setup changed", (SIGNAL_FUNC) read_settings);
    endwin();
}

void set_color(gint col)
{
    gint attr;

    if (!use_colors)
    {
        if ((col & 0x70) != 0)
            attr = A_REVERSE;
        else
            attr = 0;
    }
    else
    {
        if (col & ATTR_COLOR8)
            attr = A_DIM | COLOR_PAIR(63);
        else
            attr = COLOR_PAIR((col&7) + (col&0x70)/2);
    }

    if (col & 0x08) attr |= A_BOLD;
    if (col & 0x80) attr |= A_BLINK;

    if (col & ATTR_UNDERLINE) attr |= A_UNDERLINE;
    if (col & ATTR_REVERSE) attr |= A_REVERSE;

    attrset(attr);
}

void set_bg(gint col)
{
    gint attr;

    if (!use_colors)
    {
        if ((col & 0x70) != 0)
            attr = A_REVERSE;
        else
            attr = 0;
    }
    else
    {
        if (col == 8)
            attr = A_DIM | COLOR_PAIR(63);
        else
            attr = COLOR_PAIR((col&7) + (col&0x70)/2);
    }

    if (col & 0x08) attr |= A_BOLD;
    if (col & 0x80) attr |= A_BLINK;

    bkgdset(' ' | attr);
}

/* Scroll area up */
void scroll_up(gint y1, gint y2)
{
    scrollok(stdscr, TRUE);
    setscrreg(y1, y2); scrl(1);
    scrollok(stdscr, FALSE);
}

/* Scroll area down */
void scroll_down(gint y1, gint y2)
{
    scrollok(stdscr, TRUE);
    setscrreg(y1, y2); scrl(-1);
    scrollok(stdscr, FALSE);
}

void move_cursor(gint y, gint x)
{
    scry = y;
    scrx = x;
}

void screen_refresh_freeze(void)
{
    freeze_refresh++;
}

void screen_refresh_thaw(void)
{
    if (freeze_refresh > 0)
    {
	freeze_refresh--;
	if (freeze_refresh == 0) screen_refresh();
    }
}

void screen_refresh(void)
{
    if (freeze_refresh == 0)
    {
	move(scry, scrx);
	refresh();
    }
}