2008-09-26 06:45:28 +00:00
|
|
|
/* $Id: window-more.c,v 1.20 2008-09-26 06:45:28 nicm Exp $ */
|
2007-11-21 19:44:05 +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"
|
|
|
|
|
2007-12-06 10:04:43 +00:00
|
|
|
struct screen *window_more_init(struct window *);
|
2007-12-06 09:46:23 +00:00
|
|
|
void window_more_free(struct window *);
|
2007-11-21 19:44:05 +00:00
|
|
|
void window_more_resize(struct window *, u_int, u_int);
|
2008-06-20 17:31:48 +00:00
|
|
|
void window_more_key(struct window *, struct client *, int);
|
2007-11-21 19:44:05 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
void window_more_redraw_screen(struct window *);
|
|
|
|
void window_more_write_line(
|
|
|
|
struct window *, struct screen_write_ctx *, u_int);
|
2007-11-21 19:44:05 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
void window_more_scroll_up(struct window *);
|
|
|
|
void window_more_scroll_down(struct window *);
|
2007-11-21 19:44:05 +00:00
|
|
|
|
|
|
|
const struct window_mode window_more_mode = {
|
|
|
|
window_more_init,
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_free,
|
2007-11-21 19:44:05 +00:00
|
|
|
window_more_resize,
|
|
|
|
window_more_key
|
|
|
|
};
|
|
|
|
|
|
|
|
struct window_more_mode_data {
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen screen;
|
|
|
|
|
2007-11-21 19:44:05 +00:00
|
|
|
ARRAY_DECL(, char *) list;
|
|
|
|
u_int top;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
window_more_vadd(struct window *w, const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = &data->screen;
|
|
|
|
struct screen_write_ctx ctx;
|
|
|
|
char *msg;
|
|
|
|
u_int size;
|
|
|
|
|
|
|
|
xvasprintf(&msg, fmt, ap);
|
|
|
|
ARRAY_ADD(&data->list, msg);
|
2007-11-21 19:44:05 +00:00
|
|
|
|
2007-12-07 09:26:56 +00:00
|
|
|
screen_write_start_window(&ctx, w);
|
2007-12-06 21:42:00 +00:00
|
|
|
size = ARRAY_LENGTH(&data->list) - 1;
|
2008-09-25 20:08:57 +00:00
|
|
|
if (size >= data->top && size <= data->top + screen_size_y(s) - 1) {
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_write_line(w, &ctx, size - data->top);
|
|
|
|
if (size != data->top)
|
|
|
|
window_more_write_line(w, &ctx, 0);
|
2007-12-07 09:26:56 +00:00
|
|
|
} else
|
|
|
|
window_more_write_line(w, &ctx, 0);
|
|
|
|
screen_write_stop(&ctx);
|
2007-11-21 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
window_more_add(struct window *w, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
window_more_vadd(w, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2007-12-06 10:04:43 +00:00
|
|
|
struct screen *
|
2007-11-21 19:44:05 +00:00
|
|
|
window_more_init(struct window *w)
|
|
|
|
{
|
|
|
|
struct window_more_mode_data *data;
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s;
|
2007-11-21 19:44:05 +00:00
|
|
|
|
|
|
|
w->modedata = data = xmalloc(sizeof *data);
|
|
|
|
ARRAY_INIT(&data->list);
|
|
|
|
data->top = 0;
|
2007-11-21 19:53:57 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
s = &data->screen;
|
2008-09-10 19:15:06 +00:00
|
|
|
screen_init(s, screen_size_x(&w->base), screen_size_y(&w->base), 0);
|
2008-01-03 21:32:11 +00:00
|
|
|
s->mode &= ~MODE_CURSOR;
|
2008-06-18 22:21:51 +00:00
|
|
|
|
2007-12-06 10:04:43 +00:00
|
|
|
return (s);
|
2007-11-21 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_free(struct window *w)
|
2007-11-21 19:44:05 +00:00
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
2007-12-06 09:46:23 +00:00
|
|
|
u_int i;
|
2007-11-21 19:44:05 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&data->list); i++)
|
|
|
|
xfree(ARRAY_ITEM(&data->list, i));
|
|
|
|
ARRAY_FREE(&data->list);
|
2007-11-27 19:23:34 +00:00
|
|
|
|
2008-09-10 19:15:06 +00:00
|
|
|
screen_free(&data->screen);
|
2007-12-06 10:04:43 +00:00
|
|
|
xfree(data);
|
2007-11-21 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_resize(struct window *w, u_int sx, u_int sy)
|
2007-11-21 19:44:05 +00:00
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = &data->screen;
|
2007-11-21 19:44:05 +00:00
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_resize(s, sx, sy);
|
|
|
|
window_more_redraw_screen(w);
|
2007-11-21 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-07-02 21:22:57 +00:00
|
|
|
window_more_key(struct window *w, struct client *c, int key)
|
2007-11-21 19:44:05 +00:00
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = &data->screen;
|
2008-07-02 21:22:57 +00:00
|
|
|
int table;
|
2007-11-21 19:44:05 +00:00
|
|
|
|
2008-07-02 21:22:57 +00:00
|
|
|
table = options_get_number(&c->session->options, "mode-keys");
|
|
|
|
switch (mode_key_lookup(table, key)) {
|
|
|
|
case MODEKEY_QUIT:
|
2007-12-06 10:04:43 +00:00
|
|
|
window_reset_mode(w);
|
2007-12-06 09:46:23 +00:00
|
|
|
break;
|
2008-07-02 21:22:57 +00:00
|
|
|
case MODEKEY_UP:
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_scroll_up(w);
|
|
|
|
break;
|
2008-07-02 21:22:57 +00:00
|
|
|
case MODEKEY_DOWN:
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_scroll_down(w);
|
|
|
|
break;
|
2008-07-02 21:22:57 +00:00
|
|
|
case MODEKEY_PPAGE:
|
2007-12-06 09:46:23 +00:00
|
|
|
if (data->top < screen_size_y(s))
|
2007-11-21 19:44:05 +00:00
|
|
|
data->top = 0;
|
|
|
|
else
|
2007-12-06 09:46:23 +00:00
|
|
|
data->top -= screen_size_y(s);
|
|
|
|
window_more_redraw_screen(w);
|
2007-11-21 19:44:05 +00:00
|
|
|
break;
|
2008-07-02 21:22:57 +00:00
|
|
|
case MODEKEY_NPAGE:
|
2007-12-06 09:46:23 +00:00
|
|
|
if (data->top + screen_size_y(s) > ARRAY_LENGTH(&data->list))
|
2007-11-21 19:44:05 +00:00
|
|
|
data->top = ARRAY_LENGTH(&data->list);
|
|
|
|
else
|
2007-12-06 09:46:23 +00:00
|
|
|
data->top += screen_size_y(s);
|
|
|
|
window_more_redraw_screen(w);
|
2007-11-21 19:44:05 +00:00
|
|
|
break;
|
2008-07-02 21:22:57 +00:00
|
|
|
default:
|
|
|
|
break;
|
2007-11-21 19:44:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_write_line(struct window *w, struct screen_write_ctx *ctx, u_int py)
|
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
|
|
|
struct screen *s = &data->screen;
|
2008-09-25 20:08:57 +00:00
|
|
|
struct grid_cell gc;
|
|
|
|
char *msg, hdr[32];
|
2007-12-06 09:46:23 +00:00
|
|
|
size_t size;
|
|
|
|
|
2008-09-25 20:08:57 +00:00
|
|
|
memcpy(&gc, &grid_default_cell, sizeof gc);
|
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
if (py == 0) {
|
2008-09-25 20:08:57 +00:00
|
|
|
size = xsnprintf(hdr, sizeof hdr,
|
2008-09-26 06:45:28 +00:00
|
|
|
"[%u/%u]", data->top, ARRAY_LENGTH(&data->list));
|
2008-09-25 20:08:57 +00:00
|
|
|
screen_write_cursormove(ctx, screen_size_x(s) - size, 0);
|
|
|
|
gc.attr |= GRID_ATTR_BRIGHT|GRID_ATTR_REVERSE;
|
|
|
|
screen_write_puts(ctx, &gc, "%s", hdr);
|
|
|
|
gc.attr &= ~(GRID_ATTR_BRIGHT|GRID_ATTR_REVERSE);
|
2007-12-06 09:46:23 +00:00
|
|
|
} else
|
|
|
|
size = 0;
|
|
|
|
|
2008-09-25 20:08:57 +00:00
|
|
|
screen_write_cursormove(ctx, 0, py);
|
2007-12-06 09:46:23 +00:00
|
|
|
if (data->top + py < ARRAY_LENGTH(&data->list)) {
|
|
|
|
msg = ARRAY_ITEM(&data->list, data->top + py);
|
2008-09-25 20:08:57 +00:00
|
|
|
screen_write_puts(
|
|
|
|
ctx, &gc, "%.*s", (int) (screen_size_x(s) - size), msg);
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
|
|
|
while (s->cx < screen_size_x(s) - size)
|
2008-09-25 20:08:57 +00:00
|
|
|
screen_write_putc(ctx, &gc, ' ');
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
window_more_redraw_screen(struct window *w)
|
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
|
|
|
struct screen *s = &data->screen;
|
|
|
|
struct screen_write_ctx ctx;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
screen_write_start_window(&ctx, w);
|
|
|
|
for (i = 0; i < screen_size_y(s); i++)
|
|
|
|
window_more_write_line(w, &ctx, i);
|
|
|
|
screen_write_stop(&ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
window_more_scroll_up(struct window *w)
|
2007-11-21 19:44:05 +00:00
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen_write_ctx ctx;
|
2007-11-21 19:44:05 +00:00
|
|
|
|
|
|
|
if (data->top == 0)
|
|
|
|
return;
|
|
|
|
data->top--;
|
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_start_window(&ctx, w);
|
2008-09-25 20:08:57 +00:00
|
|
|
screen_write_cursormove(&ctx, 0, 0);
|
|
|
|
screen_write_insertline(&ctx, 1);
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_write_line(w, &ctx, 0);
|
|
|
|
window_more_write_line(w, &ctx, 1);
|
|
|
|
screen_write_stop(&ctx);
|
2007-11-21 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_scroll_down(struct window *w)
|
2007-11-21 19:44:05 +00:00
|
|
|
{
|
|
|
|
struct window_more_mode_data *data = w->modedata;
|
2007-12-06 09:46:23 +00:00
|
|
|
struct screen *s = &data->screen;
|
|
|
|
struct screen_write_ctx ctx;
|
2007-11-21 19:44:05 +00:00
|
|
|
|
|
|
|
if (data->top >= ARRAY_LENGTH(&data->list))
|
|
|
|
return;
|
|
|
|
data->top++;
|
|
|
|
|
2007-12-06 09:46:23 +00:00
|
|
|
screen_write_start_window(&ctx, w);
|
2008-09-25 20:08:57 +00:00
|
|
|
screen_write_cursormove(&ctx, 0, 0);
|
|
|
|
screen_write_deleteline(&ctx, 1);
|
|
|
|
window_more_write_line(w, &ctx, screen_size_y(s) - 1);
|
2007-12-06 09:46:23 +00:00
|
|
|
window_more_write_line(w, &ctx, 0);
|
|
|
|
screen_write_stop(&ctx);
|
2007-11-21 19:44:05 +00:00
|
|
|
}
|