aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-22 20:56:58 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-22 20:56:58 +0000
commitdd4a3b24fc5b0d6e38e87b3a3c1bc0a47bdc9700 (patch)
treecb3ddc18839217458254cf79a484723b2fe16863 /tty.c
parentddad0be5f773978c09e7c86ad79596ce7af9ec71 (diff)
downloadrtmux-dd4a3b24fc5b0d6e38e87b3a3c1bc0a47bdc9700.tar.gz
rtmux-dd4a3b24fc5b0d6e38e87b3a3c1bc0a47bdc9700.tar.bz2
rtmux-dd4a3b24fc5b0d6e38e87b3a3c1bc0a47bdc9700.zip
tty_write is relatively short and the only function left in tty-write.c so move
it into tty.c.
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/tty.c b/tty.c
index cae894b8..05342b82 100644
--- a/tty.c
+++ b/tty.c
@@ -518,6 +518,37 @@ tty_draw_line(struct tty *tty, struct screen *s, u_int py, u_int ox, u_int oy)
}
void
+tty_write(void (*cmdfn)(struct tty *, struct tty_ctx *), struct tty_ctx *ctx)
+{
+ struct window_pane *wp = ctx->wp;
+ struct client *c;
+ u_int i;
+
+ if (wp == NULL)
+ return;
+
+ if (wp->window->flags & WINDOW_REDRAW || wp->flags & PANE_REDRAW)
+ return;
+ if (wp->window->flags & WINDOW_HIDDEN || !window_pane_visible(wp))
+ return;
+
+ for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
+ c = ARRAY_ITEM(&clients, i);
+ if (c == NULL || c->session == NULL)
+ continue;
+ if (c->flags & CLIENT_SUSPENDED)
+ continue;
+
+ if (c->session->curw->window == wp->window) {
+ if (c->tty.flags & TTY_FREEZE || c->tty.term == NULL)
+ continue;
+ tty_update_mode(&c->tty, c->tty.mode & ~MODE_CURSOR);
+ cmdfn(&c->tty, ctx);
+ }
+ }
+}
+
+void
tty_cmd_insertcharacter(struct tty *tty, struct tty_ctx *ctx)
{
struct window_pane *wp = ctx->wp;