2009-04-02 21:08:15 +00:00
|
|
|
/* $Id: screen-redraw.c,v 1.34 2009-04-02 21:08:13 nicm Exp $ */
|
2007-12-06 09:46:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
int screen_redraw_check_cell(struct client *, u_int, u_int);
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Check if cell inside a pane. */
|
|
|
|
int
|
|
|
|
screen_redraw_check_cell(struct client *c, u_int px, u_int py)
|
2007-12-06 09:46:23 +00:00
|
|
|
{
|
2009-01-12 18:22:47 +00:00
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct window_pane *wp;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
if (px > w->sx || py > w->sy)
|
|
|
|
return (0);
|
2009-01-14 19:29:32 +00:00
|
|
|
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Inside pane. */
|
|
|
|
if (px >= wp->xoff && px < wp->xoff + wp->sx &&
|
|
|
|
py >= wp->yoff && py < wp->yoff + wp->sy)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
/* Left/right borders. */
|
|
|
|
if (py >= wp->yoff && py < wp->yoff + wp->sy) {
|
|
|
|
if (wp->xoff != 0 && px == wp->xoff - 1)
|
|
|
|
return (1);
|
|
|
|
if (px == wp->xoff + wp->sx)
|
|
|
|
return (1);
|
2009-01-14 19:29:32 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Top/bottom borders. */
|
|
|
|
if (px >= wp->xoff && px < wp->xoff + wp->sx) {
|
|
|
|
if (wp->yoff != 0 && py == wp->yoff - 1)
|
|
|
|
return (1);
|
|
|
|
if (py == wp->yoff + wp->sy)
|
|
|
|
return (1);
|
2009-03-31 18:39:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
return (0);
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Redraw entire screen.. */
|
2007-12-06 09:46:23 +00:00
|
|
|
void
|
2009-04-01 18:21:42 +00:00
|
|
|
screen_redraw_screen(struct client *c)
|
2007-12-06 09:46:23 +00:00
|
|
|
{
|
2009-04-01 18:21:42 +00:00
|
|
|
struct window *w = c->session->curw->window;
|
|
|
|
struct tty *tty = &c->tty;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct screen *s;
|
|
|
|
u_int i, j, sx, sy;
|
|
|
|
int status;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Get status line, er, status. */
|
|
|
|
status = options_get_number(&c->session->options, "status");
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Clear the screen. */
|
|
|
|
tty_reset(tty);
|
|
|
|
for (j = 0; j < tty->sy - status; j++) {
|
|
|
|
for (i = 0; i < tty->sx; i++) {
|
|
|
|
if (!screen_redraw_check_cell(c, i, j)) {
|
|
|
|
tty_cursor(tty, i, j, 0, 0);
|
|
|
|
tty_putc(tty, '.');
|
|
|
|
}
|
|
|
|
}
|
2008-09-25 20:08:57 +00:00
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Draw the panes. */
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
2009-04-01 21:09:01 +00:00
|
|
|
if (wp->flags & PANE_HIDDEN)
|
|
|
|
continue;
|
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
tty_reset(tty);
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
s = wp->screen;
|
|
|
|
sx = wp->sx;
|
|
|
|
sy = wp->sy;
|
|
|
|
|
|
|
|
/* Draw left and right borders. */
|
|
|
|
if (wp->xoff > 0) {
|
|
|
|
for (i = wp->yoff; i < wp->yoff + sy; i++) {
|
|
|
|
tty_cursor(tty, wp->xoff - 1, i, 0, 0);
|
|
|
|
tty_putc(tty, '|');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (wp->xoff + sx < tty->sx) {
|
|
|
|
for (i = wp->yoff; i < wp->yoff + sy; i++) {
|
|
|
|
tty_cursor(tty, wp->xoff + sx, i, 0, 0);
|
|
|
|
tty_putc(&c->tty, '|');
|
|
|
|
}
|
2009-01-11 23:31:46 +00:00
|
|
|
}
|
2009-04-02 21:08:15 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Draw top and bottom borders. */
|
|
|
|
if (wp->yoff > 0) {
|
|
|
|
tty_cursor(tty, wp->xoff, wp->yoff - 1, 0, 0);
|
|
|
|
for (i = 0; i < sx; i++)
|
|
|
|
tty_putc(tty, '-');
|
|
|
|
}
|
2009-04-01 18:33:19 +00:00
|
|
|
if (wp->yoff + sy < tty->sy - status) {
|
2009-04-01 18:21:42 +00:00
|
|
|
tty_cursor(tty, wp->xoff, wp->yoff + sy, 0, 0);
|
|
|
|
for (i = 0; i < sx; i++)
|
|
|
|
tty_putc(tty, '-');
|
|
|
|
}
|
2009-04-02 21:08:15 +00:00
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Draw the pane. */
|
2009-04-02 21:08:15 +00:00
|
|
|
screen_redraw_pane(c, wp);
|
2009-04-01 18:21:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw the status line. */
|
|
|
|
screen_redraw_status(c);
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
|
|
|
|
2009-04-02 21:08:15 +00:00
|
|
|
/* Draw a single pane. */
|
|
|
|
void
|
|
|
|
screen_redraw_pane(struct client *c, struct window_pane *wp)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < wp->sy; i++)
|
|
|
|
tty_draw_line(&c->tty, wp->screen, i, wp->xoff, wp->yoff);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-01 18:21:42 +00:00
|
|
|
/* Draw the status line. */
|
2008-06-14 16:47:20 +00:00
|
|
|
void
|
2009-04-01 18:21:42 +00:00
|
|
|
screen_redraw_status(struct client *c)
|
2008-06-14 16:47:20 +00:00
|
|
|
{
|
2009-04-01 18:21:42 +00:00
|
|
|
tty_draw_line(&c->tty, &c->status, 0, 0, c->tty.sy - 1);
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|