Merge remote-tracking branch 'origin/master' into sheet
[pspp] / src / ui / terminal / terminal.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2007, 2010, 2017 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include "ui/terminal/terminal.h"
20
21 #include <stdbool.h>
22 #include <stdlib.h>
23
24 #include "data/settings.h"
25 #include "libpspp/compiler.h"
26
27 #include "gl/error.h"
28
29 #include "gettext.h"
30
31
32 #ifdef HAVE_TERMIOS_H
33 # include <termios.h>
34 #endif
35
36 #ifdef GWINSZ_IN_SYS_IOCTL
37 # include <sys/ioctl.h>
38 #endif
39
40 #define _(msgid) gettext (msgid)
41
42
43 /* Determines the size of the terminal, if possible, or at least
44    takes an educated guess. */
45 void
46 terminal_check_size (void)
47 {
48   int view_width = 0;
49   int view_length = 0;
50
51   struct winsize ws;
52   if (0 == ioctl (0, TIOCGWINSZ, &ws))
53     {
54       view_width = ws.ws_col;
55       view_length = ws.ws_row;
56     }
57   else
58     {
59       if (view_width <= 0 && getenv ("COLUMNS") != NULL)
60         view_width = atoi (getenv ("COLUMNS"));
61
62       if (view_length <= 0 && getenv ("LINES") != NULL)
63         view_length = atoi (getenv ("LINES"));
64     }
65
66   if (view_width > 0)
67     settings_set_viewwidth (view_width);
68
69   if (view_length > 0)
70     settings_set_viewlength (view_length);
71 }