mirror of
https://github.com/sheumann/hush.git
synced 2024-12-25 18:33:06 +00:00
resize: make it usable in in backticks; have a timeout (if display
doesn't respond to 'get cursor pos' ESC sequence...)
This commit is contained in:
parent
8a164052bf
commit
c9c893d4f5
@ -11,31 +11,60 @@
|
|||||||
|
|
||||||
#define ESC "\033"
|
#define ESC "\033"
|
||||||
|
|
||||||
|
struct termios old;
|
||||||
|
|
||||||
|
static void
|
||||||
|
onintr(int sig ATTRIBUTE_UNUSED)
|
||||||
|
{
|
||||||
|
tcsetattr(STDERR_FILENO, TCSANOW, &old);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int resize_main(int argc, char **argv);
|
int resize_main(int argc, char **argv);
|
||||||
int resize_main(int argc, char **argv)
|
int resize_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct termios old, new;
|
struct termios new;
|
||||||
struct winsize w = {0,0,0,0};
|
struct winsize w = { 0,0,0,0 };
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
tcgetattr(STDOUT_FILENO, &old); /* fiddle echo */
|
/* We use _stderr_ in order to make resize usable
|
||||||
|
* in shell backticks (those redirect stdout away from tty).
|
||||||
|
* NB: other versions of resize open "/dev/tty"
|
||||||
|
* and operate on it - should we do the same?
|
||||||
|
*/
|
||||||
|
|
||||||
|
tcgetattr(STDERR_FILENO, &old); /* fiddle echo */
|
||||||
new = old;
|
new = old;
|
||||||
new.c_cflag |= (CLOCAL | CREAD);
|
new.c_cflag |= (CLOCAL | CREAD);
|
||||||
new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
|
new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
|
||||||
tcsetattr(STDOUT_FILENO, TCSANOW, &new);
|
signal(SIGINT, onintr);
|
||||||
|
signal(SIGQUIT, onintr);
|
||||||
|
signal(SIGTERM, onintr);
|
||||||
|
signal(SIGALRM, onintr);
|
||||||
|
tcsetattr(STDERR_FILENO, TCSANOW, &new);
|
||||||
|
|
||||||
/* save_cursor_pos 7
|
/* save_cursor_pos 7
|
||||||
* scroll_whole_screen [r
|
* scroll_whole_screen [r
|
||||||
* put_cursor_waaaay_off [$x;$yH
|
* put_cursor_waaaay_off [$x;$yH
|
||||||
* get_cursor_pos [6n
|
* get_cursor_pos [6n
|
||||||
* restore_cursor_pos 8
|
* restore_cursor_pos 8
|
||||||
*/
|
*/
|
||||||
printf(ESC"7" ESC"[r" ESC"[999;999H" ESC"[6n");
|
fprintf(stderr, ESC"7" ESC"[r" ESC"[999;999H" ESC"[6n");
|
||||||
|
alarm(3); /* Just in case terminal won't answer */
|
||||||
scanf(ESC"[%hu;%huR", &w.ws_row, &w.ws_col);
|
scanf(ESC"[%hu;%huR", &w.ws_row, &w.ws_col);
|
||||||
ret = ioctl(STDOUT_FILENO, TIOCSWINSZ, &w);
|
fprintf(stderr, ESC"8");
|
||||||
printf(ESC"8");
|
|
||||||
tcsetattr(STDOUT_FILENO, TCSANOW, &old);
|
/* BTW, other versions of resize recalculate w.ws_xpixel, ws.ws_ypixel
|
||||||
|
* by calculating character cell HxW from old values
|
||||||
|
* (gotten via TIOCGWINSZ) and recomputing *pixel values */
|
||||||
|
ret = ioctl(STDERR_FILENO, TIOCSWINSZ, &w);
|
||||||
|
|
||||||
|
tcsetattr(STDERR_FILENO, TCSANOW, &old);
|
||||||
|
|
||||||
if (ENABLE_FEATURE_RESIZE_PRINT)
|
if (ENABLE_FEATURE_RESIZE_PRINT)
|
||||||
printf("COLUMNS=%d;LINES=%d;export COLUMNS LINES;\n",
|
printf("COLUMNS=%d;LINES=%d;export COLUMNS LINES;\n",
|
||||||
w.ws_col, w.ws_row);
|
w.ws_col, w.ws_row);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user