2001-10-28 06:30:26 -05:00
|
|
|
/*
|
|
|
|
term.c : irssi
|
|
|
|
|
|
|
|
Copyright (C) 2001 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 "commands.h"
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
#include "term.h"
|
|
|
|
#include "mainwindows.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
#endif
|
|
|
|
#include <signal.h>
|
|
|
|
#include <termios.h>
|
|
|
|
|
|
|
|
#define MIN_SCREEN_WIDTH 20
|
|
|
|
|
|
|
|
int term_use_colors;
|
|
|
|
|
2001-10-28 16:17:34 -05:00
|
|
|
static int resize_dirty;
|
2001-10-28 06:30:26 -05:00
|
|
|
|
2001-10-28 16:17:34 -05:00
|
|
|
/* Resize the terminal if needed */
|
|
|
|
void term_resize_dirty(void)
|
2001-10-28 06:30:26 -05:00
|
|
|
{
|
|
|
|
#ifdef TIOCGWINSZ
|
|
|
|
struct winsize ws;
|
|
|
|
#endif
|
2001-10-28 16:17:34 -05:00
|
|
|
int width, height;
|
2001-10-28 06:30:26 -05:00
|
|
|
|
2001-10-28 16:17:34 -05:00
|
|
|
if (!resize_dirty)
|
|
|
|
return;
|
2001-10-28 06:30:26 -05:00
|
|
|
|
2001-10-28 16:17:34 -05:00
|
|
|
resize_dirty = FALSE;
|
2001-10-28 06:30:26 -05:00
|
|
|
|
|
|
|
#ifdef TIOCGWINSZ
|
|
|
|
/* Get new window size */
|
|
|
|
if (ioctl(0, TIOCGWINSZ, &ws) < 0)
|
2001-10-28 16:17:34 -05:00
|
|
|
return;
|
2001-10-28 06:30:26 -05:00
|
|
|
|
|
|
|
if (ws.ws_row == term_height && ws.ws_col == term_width) {
|
|
|
|
/* Same size, abort. */
|
2001-10-28 16:17:34 -05:00
|
|
|
return;
|
2001-10-28 06:30:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ws.ws_col < MIN_SCREEN_WIDTH)
|
|
|
|
ws.ws_col = MIN_SCREEN_WIDTH;
|
|
|
|
|
2001-10-28 16:17:34 -05:00
|
|
|
width = ws.ws_col;
|
|
|
|
height = ws.ws_row;
|
2001-10-28 06:30:26 -05:00
|
|
|
#else
|
2001-10-28 16:17:34 -05:00
|
|
|
width = height = -1;
|
2001-10-28 06:30:26 -05:00
|
|
|
#endif
|
2001-10-28 16:17:34 -05:00
|
|
|
term_resize(width, height);
|
2001-10-28 06:30:26 -05:00
|
|
|
mainwindows_resize(term_width, term_height);
|
2001-10-28 16:17:34 -05:00
|
|
|
term_resize_final(width, height);
|
2001-10-28 06:30:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SIGWINCH
|
|
|
|
static void sig_winch(int p)
|
|
|
|
{
|
2001-10-28 16:17:34 -05:00
|
|
|
irssi_set_dirty();
|
|
|
|
resize_dirty = TRUE;
|
2001-10-28 06:30:26 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void cmd_resize(void)
|
|
|
|
{
|
2001-10-28 16:17:34 -05:00
|
|
|
resize_dirty = TRUE;
|
|
|
|
term_resize_dirty();
|
2001-10-28 06:30:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void read_settings(void)
|
|
|
|
{
|
|
|
|
int old_colors = term_use_colors;
|
|
|
|
|
2001-10-28 13:51:00 -05:00
|
|
|
if (settings_get_bool("force_colors")) {
|
|
|
|
if (!term_use_colors) {
|
|
|
|
term_force_colors(TRUE);
|
|
|
|
term_use_colors = TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!term_has_colors() && term_use_colors)
|
|
|
|
term_force_colors(FALSE);
|
2001-10-28 06:30:26 -05:00
|
|
|
term_use_colors = settings_get_bool("colors");
|
|
|
|
if (term_use_colors && !term_has_colors())
|
|
|
|
term_use_colors = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (term_use_colors != old_colors)
|
|
|
|
irssi_redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
void term_common_init(void)
|
|
|
|
{
|
|
|
|
#ifdef SIGWINCH
|
|
|
|
struct sigaction act;
|
|
|
|
#endif
|
|
|
|
settings_add_bool("lookandfeel", "colors", TRUE);
|
|
|
|
settings_add_bool("lookandfeel", "force_colors", FALSE);
|
2001-10-28 13:51:00 -05:00
|
|
|
|
|
|
|
term_use_colors = term_has_colors() && settings_get_bool("colors");
|
|
|
|
read_settings();
|
2001-10-28 06:30:26 -05:00
|
|
|
|
|
|
|
signal_add("beep", (SIGNAL_FUNC) term_beep);
|
|
|
|
signal_add("setup changed", (SIGNAL_FUNC) read_settings);
|
|
|
|
command_bind("resize", NULL, (SIGNAL_FUNC) cmd_resize);
|
|
|
|
|
|
|
|
#ifdef SIGWINCH
|
|
|
|
sigemptyset (&act.sa_mask);
|
|
|
|
act.sa_flags = 0;
|
|
|
|
act.sa_handler = sig_winch;
|
|
|
|
sigaction(SIGWINCH, &act, NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void term_common_deinit(void)
|
|
|
|
{
|
|
|
|
command_unbind("resize", (SIGNAL_FUNC) cmd_resize);
|
|
|
|
signal_remove("beep", (SIGNAL_FUNC) term_beep);
|
|
|
|
signal_remove("setup changed", (SIGNAL_FUNC) read_settings);
|
|
|
|
}
|