From 8dd84f922e52697f08319e22cf7e30221289c407 Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 4 Oct 2021 02:06:37 -0400 Subject: [PATCH] ncplane_move_family_{below, above}() skeleton #2232 --- src/lib/notcurses.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/notcurses.c b/src/lib/notcurses.c index 9fa0cbcc9..86a440d2c 100644 --- a/src/lib/notcurses.c +++ b/src/lib/notcurses.c @@ -1454,6 +1454,16 @@ void ncplane_move_family_bottom(ncplane* n){ // FIXME walk above and below, moving descendants } +void ncplane_move_family_above(ncplane* restrict n, ncplane* restrict above){ + ncplane_move_above(n, above); + // FIXME walk above and below, moving descendants +} + +void ncplane_move_family_below(ncplane* restrict n, ncplane* restrict below){ + ncplane_move_below(n, below); + // FIXME walk above and below, moving descendants +} + void ncplane_cursor_yx(const ncplane* n, int* y, int* x){ if(y){ *y = n->y;