2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2017-12-22 23:16:41 +00:00
|
|
|
#include <stdlib.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2018-08-14 11:31:34 +00:00
|
|
|
struct screen_redraw_ctx {
|
|
|
|
struct client *c;
|
|
|
|
|
|
|
|
u_int lines;
|
|
|
|
int top;
|
|
|
|
|
|
|
|
int pane_status;
|
2018-08-14 11:38:05 +00:00
|
|
|
|
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
u_int ox;
|
|
|
|
u_int oy;
|
2018-08-14 11:31:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void screen_redraw_draw_borders(struct screen_redraw_ctx *);
|
|
|
|
static void screen_redraw_draw_panes(struct screen_redraw_ctx *);
|
|
|
|
static void screen_redraw_draw_status(struct screen_redraw_ctx *);
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
static void screen_redraw_draw_pane(struct screen_redraw_ctx *,
|
|
|
|
struct window_pane *);
|
2018-08-14 11:31:34 +00:00
|
|
|
static void screen_redraw_draw_number(struct screen_redraw_ctx *,
|
|
|
|
struct window_pane *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-07-24 16:21:42 +00:00
|
|
|
#define CELL_INSIDE 0
|
2009-07-24 19:14:38 +00:00
|
|
|
#define CELL_LEFTRIGHT 1
|
|
|
|
#define CELL_TOPBOTTOM 2
|
|
|
|
#define CELL_TOPLEFT 3
|
|
|
|
#define CELL_TOPRIGHT 4
|
|
|
|
#define CELL_BOTTOMLEFT 5
|
|
|
|
#define CELL_BOTTOMRIGHT 6
|
|
|
|
#define CELL_TOPJOIN 7
|
|
|
|
#define CELL_BOTTOMJOIN 8
|
|
|
|
#define CELL_LEFTJOIN 9
|
|
|
|
#define CELL_RIGHTJOIN 10
|
|
|
|
#define CELL_JOIN 11
|
|
|
|
#define CELL_OUTSIDE 12
|
|
|
|
|
2010-09-11 16:19:22 +00:00
|
|
|
#define CELL_BORDERS " xqlkmjwvtun~"
|
|
|
|
|
2016-04-29 15:00:48 +00:00
|
|
|
#define CELL_STATUS_OFF 0
|
|
|
|
#define CELL_STATUS_TOP 1
|
|
|
|
#define CELL_STATUS_BOTTOM 2
|
|
|
|
|
2010-01-03 12:51:05 +00:00
|
|
|
/* Check if cell is on the border of a particular pane. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static int
|
2010-01-03 12:51:05 +00:00
|
|
|
screen_redraw_cell_border1(struct window_pane *wp, u_int px, u_int py)
|
|
|
|
{
|
|
|
|
/* Inside pane. */
|
|
|
|
if (px >= wp->xoff && px < wp->xoff + wp->sx &&
|
|
|
|
py >= wp->yoff && py < wp->yoff + wp->sy)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
/* Left/right borders. */
|
|
|
|
if ((wp->yoff == 0 || py >= wp->yoff - 1) && py <= wp->yoff + wp->sy) {
|
|
|
|
if (wp->xoff != 0 && px == wp->xoff - 1)
|
|
|
|
return (1);
|
|
|
|
if (px == wp->xoff + wp->sx)
|
2016-04-29 15:00:48 +00:00
|
|
|
return (2);
|
2010-01-03 12:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Top/bottom borders. */
|
|
|
|
if ((wp->xoff == 0 || px >= wp->xoff - 1) && px <= wp->xoff + wp->sx) {
|
|
|
|
if (wp->yoff != 0 && py == wp->yoff - 1)
|
2016-04-29 15:00:48 +00:00
|
|
|
return (3);
|
2010-01-03 12:51:05 +00:00
|
|
|
if (py == wp->yoff + wp->sy)
|
2016-04-29 15:00:48 +00:00
|
|
|
return (4);
|
2010-01-03 12:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Outside pane. */
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2009-07-24 19:14:38 +00:00
|
|
|
/* Check if a cell is on the pane border. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static int
|
2009-07-24 19:14:38 +00:00
|
|
|
screen_redraw_cell_border(struct client *c, u_int px, u_int py)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct window_pane *wp;
|
2010-01-03 12:51:05 +00:00
|
|
|
int retval;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-07-24 19:14:38 +00:00
|
|
|
/* Check all the panes. */
|
2009-06-01 22:58:49 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2010-01-03 12:51:05 +00:00
|
|
|
if ((retval = screen_redraw_cell_border1(wp, px, py)) != -1)
|
2016-04-29 15:00:48 +00:00
|
|
|
return (!!retval);
|
2009-07-24 19:14:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if cell inside a pane. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static int
|
2016-04-29 15:00:48 +00:00
|
|
|
screen_redraw_check_cell(struct client *c, u_int px, u_int py, int pane_status,
|
2013-03-25 11:41:49 +00:00
|
|
|
struct window_pane **wpp)
|
2009-07-24 19:14:38 +00:00
|
|
|
{
|
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct window_pane *wp;
|
|
|
|
int borders;
|
2016-04-29 15:00:48 +00:00
|
|
|
u_int right, line;
|
2009-07-24 19:14:38 +00:00
|
|
|
|
2016-10-10 21:29:23 +00:00
|
|
|
*wpp = NULL;
|
|
|
|
|
2009-07-24 19:14:38 +00:00
|
|
|
if (px > w->sx || py > w->sy)
|
|
|
|
return (CELL_OUTSIDE);
|
|
|
|
|
2016-04-29 15:00:48 +00:00
|
|
|
if (pane_status != CELL_STATUS_OFF) {
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
if (pane_status == CELL_STATUS_TOP)
|
|
|
|
line = wp->yoff - 1;
|
|
|
|
else
|
|
|
|
line = wp->yoff + wp->sy;
|
|
|
|
right = wp->xoff + 2 + wp->status_size - 1;
|
|
|
|
|
|
|
|
if (py == line && px >= wp->xoff + 2 && px <= right)
|
|
|
|
return (CELL_INSIDE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-24 19:14:38 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2013-03-25 11:41:49 +00:00
|
|
|
*wpp = wp;
|
2009-07-24 19:14:38 +00:00
|
|
|
|
|
|
|
/* If outside the pane and its border, skip it. */
|
|
|
|
if ((wp->xoff != 0 && px < wp->xoff - 1) ||
|
|
|
|
px > wp->xoff + wp->sx ||
|
|
|
|
(wp->yoff != 0 && py < wp->yoff - 1) ||
|
|
|
|
py > wp->yoff + wp->sy)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If definitely inside, return so. */
|
|
|
|
if (!screen_redraw_cell_border(c, px, py))
|
|
|
|
return (CELL_INSIDE);
|
|
|
|
|
2009-12-03 22:50:09 +00:00
|
|
|
/*
|
2009-07-24 19:14:38 +00:00
|
|
|
* Construct a bitmask of whether the cells to the left (bit
|
|
|
|
* 4), right, top, and bottom (bit 1) of this cell are borders.
|
|
|
|
*/
|
|
|
|
borders = 0;
|
|
|
|
if (px == 0 || screen_redraw_cell_border(c, px - 1, py))
|
|
|
|
borders |= 8;
|
|
|
|
if (px <= w->sx && screen_redraw_cell_border(c, px + 1, py))
|
|
|
|
borders |= 4;
|
2016-04-29 15:00:48 +00:00
|
|
|
if (pane_status == CELL_STATUS_TOP) {
|
|
|
|
if (py != 0 && screen_redraw_cell_border(c, px, py - 1))
|
|
|
|
borders |= 2;
|
|
|
|
} else {
|
|
|
|
if (py == 0 || screen_redraw_cell_border(c, px, py - 1))
|
|
|
|
borders |= 2;
|
|
|
|
}
|
2009-07-24 19:14:38 +00:00
|
|
|
if (py <= w->sy && screen_redraw_cell_border(c, px, py + 1))
|
|
|
|
borders |= 1;
|
|
|
|
|
2009-12-03 22:50:09 +00:00
|
|
|
/*
|
2009-07-24 19:14:38 +00:00
|
|
|
* Figure out what kind of border this cell is. Only one bit
|
|
|
|
* set doesn't make sense (can't have a border cell with no
|
|
|
|
* others connected).
|
|
|
|
*/
|
|
|
|
switch (borders) {
|
|
|
|
case 15: /* 1111, left right top bottom */
|
|
|
|
return (CELL_JOIN);
|
|
|
|
case 14: /* 1110, left right top */
|
|
|
|
return (CELL_BOTTOMJOIN);
|
|
|
|
case 13: /* 1101, left right bottom */
|
|
|
|
return (CELL_TOPJOIN);
|
|
|
|
case 12: /* 1100, left right */
|
|
|
|
return (CELL_TOPBOTTOM);
|
|
|
|
case 11: /* 1011, left top bottom */
|
|
|
|
return (CELL_RIGHTJOIN);
|
|
|
|
case 10: /* 1010, left top */
|
|
|
|
return (CELL_BOTTOMRIGHT);
|
|
|
|
case 9: /* 1001, left bottom */
|
|
|
|
return (CELL_TOPRIGHT);
|
|
|
|
case 7: /* 0111, right top bottom */
|
|
|
|
return (CELL_LEFTJOIN);
|
|
|
|
case 6: /* 0110, right top */
|
|
|
|
return (CELL_BOTTOMLEFT);
|
|
|
|
case 5: /* 0101, right bottom */
|
|
|
|
return (CELL_TOPLEFT);
|
|
|
|
case 3: /* 0011, top bottom */
|
|
|
|
return (CELL_LEFTRIGHT);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-24 16:21:42 +00:00
|
|
|
return (CELL_OUTSIDE);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 11:43:51 +00:00
|
|
|
/* Check if the border of a particular pane. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static int
|
2016-04-29 15:00:48 +00:00
|
|
|
screen_redraw_check_is(u_int px, u_int py, int type, int pane_status,
|
|
|
|
struct window *w, struct window_pane *wantwp, struct window_pane *wp)
|
2013-03-25 11:41:49 +00:00
|
|
|
{
|
2016-04-29 15:00:48 +00:00
|
|
|
int border;
|
|
|
|
|
2013-03-25 11:41:49 +00:00
|
|
|
/* Is this off the active pane border? */
|
2016-04-29 15:00:48 +00:00
|
|
|
border = screen_redraw_cell_border1(wantwp, px, py);
|
|
|
|
if (border == 0 || border == -1)
|
|
|
|
return (0);
|
|
|
|
if (pane_status == CELL_STATUS_TOP && border == 4)
|
|
|
|
return (0);
|
|
|
|
if (pane_status == CELL_STATUS_BOTTOM && border == 3)
|
2013-03-25 11:41:49 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
/* If there are more than two panes, that's enough. */
|
|
|
|
if (window_count_panes(w) != 2)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
/* Else if the cell is not a border cell, forget it. */
|
|
|
|
if (wp == NULL || (type == CELL_OUTSIDE || type == CELL_INSIDE))
|
|
|
|
return (1);
|
|
|
|
|
2016-04-29 15:00:48 +00:00
|
|
|
/* With status lines mark the entire line. */
|
|
|
|
if (pane_status != CELL_STATUS_OFF)
|
|
|
|
return (1);
|
|
|
|
|
2013-03-25 11:41:49 +00:00
|
|
|
/* Check if the pane covers the whole width. */
|
|
|
|
if (wp->xoff == 0 && wp->sx == w->sx) {
|
|
|
|
/* This can either be the top pane or the bottom pane. */
|
|
|
|
if (wp->yoff == 0) { /* top pane */
|
2015-06-04 11:43:51 +00:00
|
|
|
if (wp == wantwp)
|
2013-03-25 11:41:49 +00:00
|
|
|
return (px <= wp->sx / 2);
|
|
|
|
return (px > wp->sx / 2);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the pane covers the whole height. */
|
|
|
|
if (wp->yoff == 0 && wp->sy == w->sy) {
|
|
|
|
/* This can either be the left pane or the right pane. */
|
|
|
|
if (wp->xoff == 0) { /* left pane */
|
2015-06-04 11:43:51 +00:00
|
|
|
if (wp == wantwp)
|
2013-03-25 11:41:49 +00:00
|
|
|
return (py <= wp->sy / 2);
|
|
|
|
return (py > wp->sy / 2);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2016-04-29 15:00:48 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update pane status. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static int
|
2016-04-29 15:00:48 +00:00
|
|
|
screen_redraw_make_pane_status(struct client *c, struct window *w,
|
|
|
|
struct window_pane *wp)
|
|
|
|
{
|
|
|
|
struct grid_cell gc;
|
|
|
|
const char *fmt;
|
|
|
|
struct format_tree *ft;
|
|
|
|
char *out;
|
2016-10-12 17:36:52 +00:00
|
|
|
size_t outlen;
|
2016-04-29 15:00:48 +00:00
|
|
|
struct screen_write_ctx ctx;
|
2016-10-12 17:36:52 +00:00
|
|
|
struct screen old;
|
2016-04-29 15:00:48 +00:00
|
|
|
|
|
|
|
if (wp == w->active)
|
|
|
|
style_apply(&gc, w->options, "pane-active-border-style");
|
|
|
|
else
|
|
|
|
style_apply(&gc, w->options, "pane-border-style");
|
|
|
|
|
|
|
|
fmt = options_get_string(w->options, "pane-border-format");
|
|
|
|
|
2017-05-01 12:20:55 +00:00
|
|
|
ft = format_create(c, NULL, FORMAT_PANE|wp->id, 0);
|
2016-04-29 15:00:48 +00:00
|
|
|
format_defaults(ft, c, NULL, NULL, wp);
|
|
|
|
|
2016-10-12 17:36:52 +00:00
|
|
|
memcpy(&old, &wp->status_screen, sizeof old);
|
2016-04-29 15:00:48 +00:00
|
|
|
screen_init(&wp->status_screen, wp->sx, 1, 0);
|
|
|
|
wp->status_screen.mode = 0;
|
|
|
|
|
|
|
|
out = format_expand(ft, fmt);
|
|
|
|
outlen = screen_write_cstrlen("%s", out);
|
|
|
|
if (outlen > wp->sx - 4)
|
|
|
|
outlen = wp->sx - 4;
|
|
|
|
screen_resize(&wp->status_screen, outlen, 1, 0);
|
|
|
|
|
|
|
|
screen_write_start(&ctx, NULL, &wp->status_screen);
|
|
|
|
screen_write_cursormove(&ctx, 0, 0);
|
2016-10-13 20:27:27 +00:00
|
|
|
screen_write_clearline(&ctx, 8);
|
2016-04-29 15:00:48 +00:00
|
|
|
screen_write_cnputs(&ctx, outlen, &gc, "%s", out);
|
|
|
|
screen_write_stop(&ctx);
|
|
|
|
|
2017-12-22 23:16:41 +00:00
|
|
|
free(out);
|
2016-04-29 15:00:48 +00:00
|
|
|
format_free(ft);
|
|
|
|
|
|
|
|
wp->status_size = outlen;
|
2016-10-12 17:36:52 +00:00
|
|
|
|
|
|
|
if (grid_compare(wp->status_screen.grid, old.grid) == 0) {
|
|
|
|
screen_free(&old);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
screen_free(&old);
|
|
|
|
return (1);
|
2016-04-29 15:00:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw pane status. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2018-08-18 16:14:03 +00:00
|
|
|
screen_redraw_draw_pane_status(struct screen_redraw_ctx *ctx)
|
2016-04-29 15:00:48 +00:00
|
|
|
{
|
2018-08-19 16:45:03 +00:00
|
|
|
struct client *c = ctx->c;
|
2016-04-29 15:00:48 +00:00
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct tty *tty = &c->tty;
|
|
|
|
struct window_pane *wp;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
struct screen *s;
|
|
|
|
u_int i, x, width, xoff, yoff, size;
|
|
|
|
|
|
|
|
log_debug("%s: %s @%u", __func__, c->name, w->id);
|
2016-04-29 15:00:48 +00:00
|
|
|
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
s = &wp->status_screen;
|
|
|
|
|
|
|
|
size = wp->status_size;
|
2018-08-18 16:14:03 +00:00
|
|
|
if (ctx->pane_status == CELL_STATUS_TOP)
|
2016-04-29 15:00:48 +00:00
|
|
|
yoff = wp->yoff - 1;
|
|
|
|
else
|
|
|
|
yoff = wp->yoff + wp->sy;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
xoff = wp->xoff + 2;
|
|
|
|
|
|
|
|
if (xoff + size <= ctx->ox ||
|
|
|
|
xoff >= ctx->ox + ctx->sx ||
|
|
|
|
yoff < ctx->oy ||
|
|
|
|
yoff >= ctx->oy + ctx->sy)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (xoff >= ctx->ox && xoff + size <= ctx->ox + ctx->sx) {
|
|
|
|
/* All visible. */
|
|
|
|
i = 0;
|
|
|
|
x = xoff - ctx->ox;
|
|
|
|
width = size;
|
|
|
|
} else if (xoff < ctx->ox && xoff + size > ctx->ox + ctx->sx) {
|
|
|
|
/* Both left and right not visible. */
|
|
|
|
i = ctx->ox;
|
|
|
|
x = 0;
|
|
|
|
width = ctx->sx;
|
|
|
|
} else if (xoff < ctx->ox) {
|
|
|
|
/* Left not visible. */
|
|
|
|
i = ctx->ox - xoff;
|
|
|
|
x = 0;
|
|
|
|
width = size - i;
|
|
|
|
} else {
|
|
|
|
/* Right not visible. */
|
|
|
|
i = 0;
|
|
|
|
x = xoff - ctx->ox;
|
|
|
|
width = size - (xoff + size - ctx->sx);
|
|
|
|
}
|
2016-04-29 15:00:48 +00:00
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
if (ctx->top)
|
|
|
|
yoff += ctx->lines;
|
|
|
|
tty_draw_line(tty, NULL, s, i, 0, width, x, yoff - ctx->oy);
|
2016-04-29 15:00:48 +00:00
|
|
|
}
|
|
|
|
tty_cursor(tty, 0, 0);
|
2013-03-25 11:41:49 +00:00
|
|
|
}
|
|
|
|
|
2016-10-09 16:24:34 +00:00
|
|
|
/* Update status line and change flags if unchanged. */
|
2018-08-19 20:13:07 +00:00
|
|
|
static int
|
|
|
|
screen_redraw_update(struct client *c, int flags)
|
2016-10-09 16:24:34 +00:00
|
|
|
{
|
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct options *wo = w->options;
|
|
|
|
int redraw;
|
|
|
|
|
|
|
|
if (c->message_string != NULL)
|
|
|
|
redraw = status_message_redraw(c);
|
|
|
|
else if (c->prompt_string != NULL)
|
|
|
|
redraw = status_prompt_redraw(c);
|
|
|
|
else
|
|
|
|
redraw = status_redraw(c);
|
2018-08-19 20:13:07 +00:00
|
|
|
if (!redraw && (~flags & CLIENT_REDRAWSTATUSALWAYS))
|
|
|
|
flags &= ~CLIENT_REDRAWSTATUS;
|
2016-10-09 16:24:34 +00:00
|
|
|
|
|
|
|
if (options_get_number(wo, "pane-border-status") != CELL_STATUS_OFF) {
|
|
|
|
redraw = 0;
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
if (screen_redraw_make_pane_status(c, w, wp))
|
|
|
|
redraw = 1;
|
|
|
|
}
|
|
|
|
if (redraw)
|
2018-08-19 20:13:07 +00:00
|
|
|
flags |= CLIENT_REDRAWBORDERS;
|
2016-10-09 16:24:34 +00:00
|
|
|
}
|
2018-08-19 20:13:07 +00:00
|
|
|
return (flags);
|
2016-10-09 16:24:34 +00:00
|
|
|
}
|
|
|
|
|
2018-08-18 16:14:03 +00:00
|
|
|
/* Set up redraw context. */
|
|
|
|
static void
|
|
|
|
screen_redraw_set_context(struct client *c, struct screen_redraw_ctx *ctx)
|
|
|
|
{
|
2018-08-19 16:45:03 +00:00
|
|
|
struct session *s = c->session;
|
|
|
|
struct options *oo = s->options;
|
|
|
|
struct window *w = s->curw->window;
|
|
|
|
struct options *wo = w->options;
|
2018-08-18 16:14:03 +00:00
|
|
|
|
|
|
|
memset(ctx, 0, sizeof *ctx);
|
|
|
|
ctx->c = c;
|
|
|
|
|
2018-08-20 19:05:34 +00:00
|
|
|
ctx->lines = status_line_size(c);
|
|
|
|
if (c->message_string != NULL || c->prompt_string != NULL)
|
|
|
|
ctx->lines = (ctx->lines == 0) ? 1 : ctx->lines;
|
2018-08-18 16:14:03 +00:00
|
|
|
if (ctx->lines != 0 && options_get_number(oo, "status-position") == 0)
|
|
|
|
ctx->top = 1;
|
|
|
|
ctx->pane_status = options_get_number(wo, "pane-border-status");
|
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
tty_window_offset(&c->tty, &ctx->ox, &ctx->oy, &ctx->sx, &ctx->sy);
|
|
|
|
|
|
|
|
log_debug("%s: %s @%u ox=%u oy=%u sx=%u sy=%u %u/%d", __func__, c->name,
|
|
|
|
w->id, ctx->ox, ctx->oy, ctx->sx, ctx->sy, ctx->lines, ctx->top);
|
2018-08-18 16:14:03 +00:00
|
|
|
}
|
|
|
|
|
2009-07-14 19:03:16 +00:00
|
|
|
/* Redraw entire screen. */
|
2009-06-01 22:58:49 +00:00
|
|
|
void
|
2018-08-19 16:45:03 +00:00
|
|
|
screen_redraw_screen(struct client *c)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2018-08-19 16:45:03 +00:00
|
|
|
struct screen_redraw_ctx ctx;
|
2018-08-19 20:13:07 +00:00
|
|
|
int flags;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-07-08 21:51:40 +00:00
|
|
|
if (c->flags & CLIENT_SUSPENDED)
|
|
|
|
return;
|
|
|
|
|
2018-08-19 20:13:07 +00:00
|
|
|
flags = screen_redraw_update(c, c->flags);
|
2018-08-18 16:14:03 +00:00
|
|
|
screen_redraw_set_context(c, &ctx);
|
2018-08-14 11:38:05 +00:00
|
|
|
|
2018-08-19 20:13:07 +00:00
|
|
|
if (flags & (CLIENT_REDRAWWINDOW|CLIENT_REDRAWBORDERS)) {
|
2018-08-19 16:45:03 +00:00
|
|
|
if (ctx.pane_status != CELL_STATUS_OFF)
|
|
|
|
screen_redraw_draw_pane_status(&ctx);
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_borders(&ctx);
|
2018-08-19 16:45:03 +00:00
|
|
|
}
|
2018-08-19 20:13:07 +00:00
|
|
|
if (flags & CLIENT_REDRAWWINDOW)
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_panes(&ctx);
|
2018-08-19 20:13:07 +00:00
|
|
|
if (ctx.lines != 0 &&
|
|
|
|
(flags & (CLIENT_REDRAWSTATUS|CLIENT_REDRAWSTATUSALWAYS)))
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_status(&ctx);
|
2018-08-18 16:14:03 +00:00
|
|
|
tty_reset(&c->tty);
|
2014-01-31 14:19:24 +00:00
|
|
|
}
|
2009-07-14 19:03:16 +00:00
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
/* Redraw a single pane. */
|
2014-01-31 14:19:24 +00:00
|
|
|
void
|
|
|
|
screen_redraw_pane(struct client *c, struct window_pane *wp)
|
|
|
|
{
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
struct screen_redraw_ctx ctx;
|
2014-01-31 14:19:24 +00:00
|
|
|
|
2018-08-25 12:55:50 +00:00
|
|
|
if (wp->layout_cell == NULL)
|
|
|
|
return;
|
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
screen_redraw_set_context(c, &ctx);
|
2017-02-08 15:41:41 +00:00
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
screen_redraw_draw_pane(&ctx, wp);
|
2014-01-31 14:19:24 +00:00
|
|
|
tty_reset(&c->tty);
|
|
|
|
}
|
|
|
|
|
2018-08-14 11:31:34 +00:00
|
|
|
/* Draw a border cell. */
|
|
|
|
static void
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
screen_redraw_draw_borders_cell(struct screen_redraw_ctx *ctx, u_int i, u_int j,
|
|
|
|
struct grid_cell *m_active_gc, struct grid_cell *active_gc,
|
|
|
|
struct grid_cell *m_other_gc, struct grid_cell *other_gc)
|
2018-08-14 11:31:34 +00:00
|
|
|
{
|
2018-08-19 16:45:03 +00:00
|
|
|
struct client *c = ctx->c;
|
|
|
|
struct session *s = c->session;
|
|
|
|
struct window *w = s->curw->window;
|
|
|
|
struct tty *tty = &c->tty;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct window_pane *active = w->active;
|
|
|
|
struct window_pane *marked = marked_pane.wp;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
u_int type, x = ctx->ox + i, y = ctx->oy + j;
|
2018-08-19 16:45:03 +00:00
|
|
|
int flag, pane_status = ctx->pane_status;
|
2018-08-14 11:31:34 +00:00
|
|
|
|
|
|
|
type = screen_redraw_check_cell(c, x, y, pane_status, &wp);
|
|
|
|
if (type == CELL_INSIDE)
|
|
|
|
return;
|
|
|
|
flag = screen_redraw_check_is(x, y, type, pane_status, w, active, wp);
|
|
|
|
|
|
|
|
if (server_is_marked(s, s->curw, marked_pane.wp) &&
|
|
|
|
screen_redraw_check_is(x, y, type, pane_status, w, marked, wp)) {
|
|
|
|
if (flag)
|
|
|
|
tty_attributes(tty, m_active_gc, NULL);
|
|
|
|
else
|
|
|
|
tty_attributes(tty, m_other_gc, NULL);
|
|
|
|
} else if (flag)
|
|
|
|
tty_attributes(tty, active_gc, NULL);
|
|
|
|
else
|
|
|
|
tty_attributes(tty, other_gc, NULL);
|
|
|
|
if (ctx->top)
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
tty_cursor(tty, i, ctx->lines + j);
|
2018-08-14 11:31:34 +00:00
|
|
|
else
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
tty_cursor(tty, i, j);
|
2018-08-14 11:31:34 +00:00
|
|
|
tty_putc(tty, CELL_BORDERS[type]);
|
|
|
|
}
|
|
|
|
|
2014-01-31 14:19:24 +00:00
|
|
|
/* Draw the borders. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_borders(struct screen_redraw_ctx *ctx)
|
2014-01-31 14:19:24 +00:00
|
|
|
{
|
2018-08-14 11:31:34 +00:00
|
|
|
struct client *c = ctx->c;
|
2015-06-04 11:43:51 +00:00
|
|
|
struct session *s = c->session;
|
|
|
|
struct window *w = s->curw->window;
|
2014-01-31 14:19:24 +00:00
|
|
|
struct tty *tty = &c->tty;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
struct options *oo = w->options;
|
2015-06-04 11:43:51 +00:00
|
|
|
struct grid_cell m_active_gc, active_gc, m_other_gc, other_gc;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
u_int i, j;
|
|
|
|
|
|
|
|
log_debug("%s: %s @%u", __func__, c->name, w->id);
|
2014-01-31 14:19:24 +00:00
|
|
|
|
2014-01-28 23:07:09 +00:00
|
|
|
style_apply(&other_gc, oo, "pane-border-style");
|
|
|
|
style_apply(&active_gc, oo, "pane-active-border-style");
|
2014-01-31 14:19:24 +00:00
|
|
|
active_gc.attr = other_gc.attr = GRID_ATTR_CHARSET;
|
2010-01-03 12:51:05 +00:00
|
|
|
|
2015-06-04 11:43:51 +00:00
|
|
|
memcpy(&m_other_gc, &other_gc, sizeof m_other_gc);
|
|
|
|
m_other_gc.attr ^= GRID_ATTR_REVERSE;
|
|
|
|
memcpy(&m_active_gc, &active_gc, sizeof m_active_gc);
|
|
|
|
m_active_gc.attr ^= GRID_ATTR_REVERSE;
|
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
for (j = 0; j < tty->sy - ctx->lines; j++) {
|
|
|
|
for (i = 0; i < tty->sx; i++) {
|
|
|
|
screen_redraw_draw_borders_cell(ctx, i, j,
|
|
|
|
&m_active_gc, &active_gc, &m_other_gc, &other_gc);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-31 14:19:24 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2014-01-31 14:19:24 +00:00
|
|
|
/* Draw the panes. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_panes(struct screen_redraw_ctx *ctx)
|
2014-01-31 14:19:24 +00:00
|
|
|
{
|
2018-08-14 11:31:34 +00:00
|
|
|
struct client *c = ctx->c;
|
2014-01-31 14:19:24 +00:00
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct window_pane *wp;
|
2017-10-16 19:30:53 +00:00
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
log_debug("%s: %s @%u", __func__, c->name, w->id);
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2018-08-25 12:55:50 +00:00
|
|
|
if (wp->layout_cell == NULL)
|
|
|
|
continue;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
screen_redraw_draw_pane(ctx, wp);
|
2009-08-31 20:46:19 +00:00
|
|
|
if (c->flags & CLIENT_IDENTIFY)
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_number(ctx, wp);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-31 14:19:24 +00:00
|
|
|
/* Draw the status line. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_status(struct screen_redraw_ctx *ctx)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2018-08-14 11:31:34 +00:00
|
|
|
struct client *c = ctx->c;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
struct window *w = c->session->curw->window;
|
2014-01-31 14:19:24 +00:00
|
|
|
struct tty *tty = &c->tty;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
struct screen *s = &c->status.status;
|
2017-10-16 19:30:53 +00:00
|
|
|
u_int i, y;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
log_debug("%s: %s @%u", __func__, c->name, w->id);
|
|
|
|
|
2018-08-14 11:31:34 +00:00
|
|
|
if (ctx->top)
|
2017-10-16 19:30:53 +00:00
|
|
|
y = 0;
|
2014-01-31 14:19:24 +00:00
|
|
|
else
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
y = c->tty.sy - ctx->lines;
|
2018-08-14 11:31:34 +00:00
|
|
|
for (i = 0; i < ctx->lines; i++)
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
tty_draw_line(tty, NULL, s, 0, i, UINT_MAX, 0, y + i);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw one pane. */
|
|
|
|
static void
|
|
|
|
screen_redraw_draw_pane(struct screen_redraw_ctx *ctx, struct window_pane *wp)
|
|
|
|
{
|
|
|
|
struct client *c = ctx->c;
|
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct tty *tty = &c->tty;
|
|
|
|
struct screen *s;
|
|
|
|
u_int i, j, top, x, y, width;
|
|
|
|
|
|
|
|
log_debug("%s: %s @%u %%%u", __func__, c->name, w->id, wp->id);
|
|
|
|
|
|
|
|
if (wp->xoff + wp->sx <= ctx->ox || wp->xoff >= ctx->ox + ctx->sx)
|
|
|
|
return;
|
|
|
|
if (ctx->top)
|
|
|
|
top = ctx->lines;
|
|
|
|
else
|
|
|
|
top = 0;
|
|
|
|
|
|
|
|
s = wp->screen;
|
|
|
|
for (j = 0; j < wp->sy; j++) {
|
|
|
|
if (wp->yoff + j < ctx->oy || wp->yoff + j >= ctx->oy + ctx->sy)
|
|
|
|
continue;
|
|
|
|
y = top + wp->yoff + j - ctx->oy;
|
|
|
|
|
|
|
|
if (wp->xoff >= ctx->ox &&
|
|
|
|
wp->xoff + wp->sx <= ctx->ox + ctx->sx) {
|
|
|
|
/* All visible. */
|
|
|
|
i = 0;
|
|
|
|
x = wp->xoff - ctx->ox;
|
|
|
|
width = wp->sx;
|
|
|
|
} else if (wp->xoff < ctx->ox &&
|
|
|
|
wp->xoff + wp->sx > ctx->ox + ctx->sx) {
|
|
|
|
/* Both left and right not visible. */
|
|
|
|
i = ctx->ox;
|
|
|
|
x = 0;
|
|
|
|
width = ctx->sx;
|
|
|
|
} else if (wp->xoff < ctx->ox) {
|
|
|
|
/* Left not visible. */
|
|
|
|
i = ctx->ox - wp->xoff;
|
|
|
|
x = 0;
|
|
|
|
width = wp->sx - i;
|
|
|
|
} else {
|
|
|
|
/* Right not visible. */
|
|
|
|
i = 0;
|
|
|
|
x = wp->xoff - ctx->ox;
|
|
|
|
width = wp->sx - (wp->xoff + wp->sx - ctx->sx);
|
|
|
|
}
|
|
|
|
log_debug("%s: %s %%%u line %u,%u at %u,%u, width %u",
|
|
|
|
__func__, c->name, wp->id, i, j, x, y, width);
|
|
|
|
|
|
|
|
tty_draw_line(tty, wp, s, i, j, width, x, y);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2009-08-31 20:46:19 +00:00
|
|
|
|
|
|
|
/* Draw number on a pane. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2018-08-14 11:31:34 +00:00
|
|
|
screen_redraw_draw_number(struct screen_redraw_ctx *ctx, struct window_pane *wp)
|
2009-08-31 20:46:19 +00:00
|
|
|
{
|
2018-08-14 11:31:34 +00:00
|
|
|
struct client *c = ctx->c;
|
2009-08-31 20:46:19 +00:00
|
|
|
struct tty *tty = &c->tty;
|
|
|
|
struct session *s = c->session;
|
2015-10-27 15:58:42 +00:00
|
|
|
struct options *oo = s->options;
|
2010-02-04 18:20:16 +00:00
|
|
|
struct window *w = wp->window;
|
2009-08-31 20:46:19 +00:00
|
|
|
struct grid_cell gc;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
u_int idx, px, py, i, j, xoff, yoff, sx, sy;
|
2010-02-04 18:20:16 +00:00
|
|
|
int colour, active_colour;
|
2009-08-31 20:46:19 +00:00
|
|
|
char buf[16], *ptr;
|
|
|
|
size_t len;
|
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
if (wp->xoff + wp->sx <= ctx->ox ||
|
|
|
|
wp->xoff >= ctx->ox + ctx->sx ||
|
|
|
|
wp->yoff + wp->sy <= ctx->oy ||
|
|
|
|
wp->yoff >= ctx->oy + ctx->sy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (wp->xoff >= ctx->ox && wp->xoff + wp->sx <= ctx->ox + ctx->sx) {
|
|
|
|
/* All visible. */
|
|
|
|
xoff = wp->xoff - ctx->ox;
|
|
|
|
sx = wp->sx;
|
|
|
|
} else if (wp->xoff < ctx->ox &&
|
|
|
|
wp->xoff + wp->sx > ctx->ox + ctx->sx) {
|
|
|
|
/* Both left and right not visible. */
|
|
|
|
xoff = 0;
|
|
|
|
sx = ctx->sx;
|
|
|
|
} else if (wp->xoff < ctx->ox) {
|
|
|
|
/* Left not visible. */
|
|
|
|
xoff = 0;
|
|
|
|
sx = wp->sx - (ctx->ox - wp->xoff);
|
|
|
|
} else {
|
|
|
|
/* Right not visible. */
|
|
|
|
xoff = wp->xoff - ctx->ox;
|
|
|
|
sx = wp->sx - (wp->xoff + wp->sx - ctx->sx);
|
|
|
|
}
|
|
|
|
if (wp->yoff >= ctx->oy && wp->yoff + wp->sy <= ctx->oy + ctx->sy) {
|
|
|
|
/* All visible. */
|
|
|
|
yoff = wp->yoff - ctx->oy;
|
|
|
|
sy = wp->sy;
|
|
|
|
} else if (wp->yoff < ctx->oy &&
|
|
|
|
wp->yoff + wp->sy > ctx->oy + ctx->sy) {
|
|
|
|
/* Both top and bottom not visible. */
|
|
|
|
yoff = 0;
|
|
|
|
sy = ctx->sy;
|
|
|
|
} else if (wp->yoff < ctx->oy) {
|
|
|
|
/* Top not visible. */
|
|
|
|
yoff = 0;
|
|
|
|
sy = wp->sy - (ctx->oy - wp->yoff);
|
|
|
|
} else {
|
|
|
|
/* Bottom not visible. */
|
|
|
|
yoff = wp->yoff - ctx->oy;
|
|
|
|
sy = wp->sy - (wp->yoff + wp->sy - ctx->sy);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->top)
|
|
|
|
yoff += ctx->lines;
|
|
|
|
px = sx / 2;
|
|
|
|
py = sy / 2;
|
|
|
|
|
2011-11-15 23:19:51 +00:00
|
|
|
if (window_pane_index(wp, &idx) != 0)
|
|
|
|
fatalx("index not found");
|
2009-08-31 20:46:19 +00:00
|
|
|
len = xsnprintf(buf, sizeof buf, "%u", idx);
|
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
if (sx < len)
|
2009-08-31 20:46:19 +00:00
|
|
|
return;
|
2010-02-04 18:20:16 +00:00
|
|
|
colour = options_get_number(oo, "display-panes-colour");
|
|
|
|
active_colour = options_get_number(oo, "display-panes-active-colour");
|
2009-08-31 20:46:19 +00:00
|
|
|
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
if (sx < len * 6 || sy < 5) {
|
2009-10-12 09:29:58 +00:00
|
|
|
tty_cursor(tty, xoff + px - len / 2, yoff + py);
|
2012-01-21 23:45:44 +00:00
|
|
|
goto draw_text;
|
2009-08-31 20:46:19 +00:00
|
|
|
}
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-08-31 20:46:19 +00:00
|
|
|
px -= len * 3;
|
|
|
|
py -= 2;
|
|
|
|
|
2014-01-28 23:07:09 +00:00
|
|
|
memcpy(&gc, &grid_default_cell, sizeof gc);
|
2010-02-04 18:20:16 +00:00
|
|
|
if (w->active == wp)
|
2016-07-15 00:42:56 +00:00
|
|
|
gc.bg = active_colour;
|
2010-02-04 18:20:16 +00:00
|
|
|
else
|
2016-07-15 00:42:56 +00:00
|
|
|
gc.bg = colour;
|
2017-01-07 15:28:13 +00:00
|
|
|
gc.flags |= GRID_FLAG_NOPALETTE;
|
|
|
|
|
2015-04-19 21:05:27 +00:00
|
|
|
tty_attributes(tty, &gc, wp);
|
2009-08-31 20:46:19 +00:00
|
|
|
for (ptr = buf; *ptr != '\0'; ptr++) {
|
|
|
|
if (*ptr < '0' || *ptr > '9')
|
|
|
|
continue;
|
|
|
|
idx = *ptr - '0';
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-08-31 20:46:19 +00:00
|
|
|
for (j = 0; j < 5; j++) {
|
|
|
|
for (i = px; i < px + 5; i++) {
|
2009-10-12 09:29:58 +00:00
|
|
|
tty_cursor(tty, xoff + i, yoff + py + j);
|
2014-03-31 21:34:08 +00:00
|
|
|
if (window_clock_table[idx][j][i - px])
|
2009-09-10 17:16:24 +00:00
|
|
|
tty_putc(tty, ' ');
|
2009-08-31 20:46:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
px += 6;
|
|
|
|
}
|
2012-01-21 23:45:44 +00:00
|
|
|
|
|
|
|
len = xsnprintf(buf, sizeof buf, "%ux%u", wp->sx, wp->sy);
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
if (sx < len || sy < 6)
|
2012-01-21 23:45:44 +00:00
|
|
|
return;
|
Support for windows larger than the client.
This adds two new options, window-size and default-size, and a new
command, resize-window.
The force-width and force-height options, and the session_width and
session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and
manual means that it does not automatically resize
windows. aggressive-resize modifies the choice of session for largest
and smallest as it did before.
If a window is in a session attached to a client that is too small,
only part of the window is shown. tmux attempts to keep the cursor
visible, so the part of the window displayed is changed as the cursor
moves (with a small delay, to try and avoid excess redrawing when
applications redraw status lines or similar that are not currently
visible).
Drawing windows which are larger than the client is not as efficient
as those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If
it is used, the window-size option is automatically set to manual for
the window (undo this with "setw -u window-size"). resize-window works
in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has
-a and -A flags. -a sets the window to the size of the smallest client
(what it would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use
resize-width -x or -y.
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications
to complain and higher memory use if you make a window that big. The
minimum size is the size required for the current layout including
borders.
This change allows some code improvements, most notably that since
windows can now never be cropped, that code can be removed from the
layout code, and since panes can now never be outside the size of the
window, window_pane_visible can be removed.
2018-08-20 14:22:14 +00:00
|
|
|
tty_cursor(tty, xoff + sx - len, yoff);
|
2012-01-21 23:45:44 +00:00
|
|
|
|
|
|
|
draw_text:
|
2014-01-28 23:07:09 +00:00
|
|
|
memcpy(&gc, &grid_default_cell, sizeof gc);
|
2012-01-21 23:45:44 +00:00
|
|
|
if (w->active == wp)
|
2016-07-15 00:42:56 +00:00
|
|
|
gc.fg = active_colour;
|
2012-01-21 23:45:44 +00:00
|
|
|
else
|
2016-07-15 00:42:56 +00:00
|
|
|
gc.fg = colour;
|
2017-01-07 15:28:13 +00:00
|
|
|
gc.flags |= GRID_FLAG_NOPALETTE;
|
|
|
|
|
2015-04-19 21:05:27 +00:00
|
|
|
tty_attributes(tty, &gc, wp);
|
2012-01-21 23:45:44 +00:00
|
|
|
tty_puts(tty, buf);
|
|
|
|
|
|
|
|
tty_cursor(tty, 0, 0);
|
2009-08-31 20:46:19 +00:00
|
|
|
}
|