forked from aniani/vim
patch 9.1.0854: cannot get terminal cell size
Problem: cannot get terminal cell size
Solution: add getcellpixels() function to return xpixel * ypixel
cell size on terminal Unix (mikoto2000)
closes: #16004
Signed-off-by: mikoto2000 <mikoto2000@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
6fbf63de86
commit
1083cae709
@@ -2077,6 +2077,14 @@ static funcentry_T global_functions[] =
|
||||
ret_string, f_getbufoneline},
|
||||
{"getbufvar", 2, 3, FEARG_1, arg3_buffer_string_any,
|
||||
ret_any, f_getbufvar},
|
||||
{"getcellpixels", 0, 0, 0, NULL,
|
||||
ret_list_any,
|
||||
#if (defined(UNIX) || defined(VMS)) && (defined(FEAT_EVAL) || defined(PROTO))
|
||||
f_getcellpixels
|
||||
#else
|
||||
NULL
|
||||
#endif
|
||||
},
|
||||
{"getcellwidths", 0, 0, 0, NULL,
|
||||
ret_list_any, f_getcellwidths},
|
||||
{"getchangelist", 0, 1, FEARG_1, arg1_buffer,
|
||||
|
||||
@@ -4348,6 +4348,68 @@ mch_get_shellsize(void)
|
||||
return OK;
|
||||
}
|
||||
|
||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||
void
|
||||
f_getcellpixels(typval_T *argvars UNUSED, typval_T *rettv)
|
||||
{
|
||||
struct cellsize cs;
|
||||
mch_calc_cell_size(&cs);
|
||||
|
||||
if (rettv_list_alloc(rettv) == FAIL)
|
||||
return;
|
||||
|
||||
list_append_number(rettv->vval.v_list, (varnumber_T)cs.cs_xpixel);
|
||||
list_append_number(rettv->vval.v_list, (varnumber_T)cs.cs_ypixel);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Try to get the current terminal cell size.
|
||||
* If faile get cell size, fallback 5x10 pixel.
|
||||
*/
|
||||
void
|
||||
mch_calc_cell_size(struct cellsize *cs_out)
|
||||
{
|
||||
#if defined(FEAT_GUI)
|
||||
if (!gui.in_use)
|
||||
{
|
||||
#endif
|
||||
// get current tty size.
|
||||
struct winsize ws;
|
||||
int fd = 1;
|
||||
int retval = -1;
|
||||
retval = ioctl(fd, TIOCGWINSZ, &ws);
|
||||
# ifdef FEAT_EVAL
|
||||
ch_log(NULL, "ioctl(TIOCGWINSZ) %s", retval == 0 ? "success" : "failed");
|
||||
# endif
|
||||
if (retval == -1)
|
||||
{
|
||||
cs_out->cs_xpixel = -1;
|
||||
cs_out->cs_ypixel = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
// calculate parent tty's pixel per cell.
|
||||
int x_cell_size = ws.ws_xpixel / ws.ws_col;
|
||||
int y_cell_size = ws.ws_ypixel / ws.ws_row;
|
||||
|
||||
// calculate current tty's pixel
|
||||
cs_out->cs_xpixel = x_cell_size;
|
||||
cs_out->cs_ypixel = y_cell_size;
|
||||
|
||||
# ifdef FEAT_EVAL
|
||||
ch_log(NULL, "Got cell pixel size with TIOCGWINSZ: %d x %d", x_cell_size, y_cell_size);
|
||||
# endif
|
||||
#if defined(FEAT_GUI)
|
||||
}
|
||||
else
|
||||
{
|
||||
cs_out->cs_xpixel = -1;
|
||||
cs_out->cs_ypixel = -1;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if defined(FEAT_TERMINAL) || defined(PROTO)
|
||||
/*
|
||||
* Report the windows size "rows" and "cols" to tty "fd".
|
||||
@@ -4367,8 +4429,13 @@ mch_report_winsize(int fd, int rows, int cols)
|
||||
|
||||
ws.ws_col = cols;
|
||||
ws.ws_row = rows;
|
||||
ws.ws_xpixel = cols * 5;
|
||||
ws.ws_ypixel = rows * 10;
|
||||
|
||||
// calcurate and set tty pixel size
|
||||
struct cellsize cs;
|
||||
mch_calc_cell_size(&cs);
|
||||
ws.ws_xpixel = cols * cs.cs_xpixel;
|
||||
ws.ws_ypixel = rows * cs.cs_ypixel;
|
||||
|
||||
retval = ioctl(tty_fd, TIOCSWINSZ, &ws);
|
||||
ch_log(NULL, "ioctl(TIOCSWINSZ) %s", retval == 0 ? "success" : "failed");
|
||||
# elif defined(TIOCSSIZE)
|
||||
|
||||
@@ -488,3 +488,9 @@ int mch_rename(const char *src, const char *dest);
|
||||
|
||||
// We have three kinds of ACL support.
|
||||
#define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL || HAVE_AIX_ACL)
|
||||
|
||||
struct cellsize {
|
||||
unsigned int cs_xpixel;
|
||||
unsigned int cs_ypixel;
|
||||
};
|
||||
|
||||
|
||||
@@ -91,4 +91,6 @@ void xsmp_close(void);
|
||||
void stop_timeout(void);
|
||||
volatile sig_atomic_t *start_timeout(long msec);
|
||||
void delete_timer(void);
|
||||
void f_getcellpixels(typval_T *argvars UNUSED, typval_T *rettv);
|
||||
void mch_calc_cell_size(struct cellsize *cs_out);
|
||||
/* vim: set ft=c : */
|
||||
|
||||
@@ -273,6 +273,14 @@ func Test_setcellwidths()
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
" Pixel size of a cell is terminal-dependent, so in the test, only the list and size 2 are checked.
|
||||
func Test_getcellpixels()
|
||||
" Not yet Windows-compatible
|
||||
CheckNotMSWindows
|
||||
let cellpixels = getcellpixels()
|
||||
call assert_equal(2, len(cellpixels))
|
||||
endfunc
|
||||
|
||||
func Test_getcellwidths()
|
||||
call setcellwidths([])
|
||||
call assert_equal([], getcellwidths())
|
||||
|
||||
@@ -704,6 +704,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
854,
|
||||
/**/
|
||||
853,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user