summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorSamuel Mendoza-Jonas <sam@mendozajonas.com>2017-08-10 11:04:58 +1000
committerSamuel Mendoza-Jonas <sam@mendozajonas.com>2017-08-10 11:23:36 +1000
commit4974b691020cca86ce6c7f1f62c7c3fee4f52c61 (patch)
treed6c659327b814d2ce8e86da01395162f51c3b6a2 /ui
parent52f76a247293597715700eb73bbe102f5a2cd4cf (diff)
downloadtalos-petitboot-4974b691020cca86ce6c7f1f62c7c3fee4f52c61.tar.gz
talos-petitboot-4974b691020cca86ce6c7f1f62c7c3fee4f52c61.zip
ui/ncurses: Create pad for nc-add-url screen
Bring setup for the add-url screen into line with other screens. This fixes an issue with a proper redraw not occurring on help screen init or screen exit, and facilitates other work on simplifying screen init. Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/ncurses/nc-add-url.c54
1 files changed, 52 insertions, 2 deletions
diff --git a/ui/ncurses/nc-add-url.c b/ui/ncurses/nc-add-url.c
index 451b050..4abca38 100644
--- a/ui/ncurses/nc-add-url.c
+++ b/ui/ncurses/nc-add-url.c
@@ -40,12 +40,15 @@ struct add_url_screen {
struct nc_scr scr;
struct cui *cui;
struct nc_widgetset *widgetset;
+ WINDOW *pad;
bool exit;
bool show_help;
bool need_redraw;
void (*on_exit)(struct cui *);
+ int scroll_y;
+
int label_x;
int field_x;
@@ -70,6 +73,16 @@ static struct add_url_screen *add_url_screen_from_scr(struct nc_scr *scr)
return add_url_screen;
}
+static void pad_refresh(struct add_url_screen *screen)
+{
+ int y, x, rows, cols;
+
+ getmaxyx(screen->scr.sub_ncw, rows, cols);
+ getbegyx(screen->scr.sub_ncw, y, x);
+
+ prefresh(screen->pad, screen->scroll_y, 0, y, x, rows, cols);
+}
+
static void add_url_screen_process_key(struct nc_scr *scr, int key)
{
struct add_url_screen *screen = add_url_screen_from_scr(scr);
@@ -99,7 +112,7 @@ static void add_url_screen_process_key(struct nc_scr *scr, int key)
&add_url_help_text);
} else if (handled) {
- wrefresh(screen->scr.main_ncw);
+ pad_refresh(screen);
}
}
@@ -113,6 +126,7 @@ static int add_url_screen_post(struct nc_scr *scr)
screen->need_redraw = false;
}
wrefresh(screen->scr.main_ncw);
+ pad_refresh(screen);
return 0;
}
@@ -199,6 +213,30 @@ static void add_url_screen_layout_widgets(struct add_url_screen *screen)
y, screen->field_x + 28);
}
+static void add_url_screen_widget_focus(struct nc_widget *widget, void *arg)
+{
+ struct add_url_screen *screen = arg;
+ int w_y, w_height, w_focus, s_max, adjust;
+
+ w_height = widget_height(widget);
+ w_focus = widget_focus_y(widget);
+ w_y = widget_y(widget) + w_focus;
+ s_max = getmaxy(screen->scr.sub_ncw) - 1;
+
+ if (w_y < screen->scroll_y)
+ screen->scroll_y = w_y;
+
+ else if (w_y + screen->scroll_y + 1 > s_max) {
+ /* Fit as much of the widget into the screen as possible */
+ adjust = min(s_max - 1, w_height - w_focus);
+ if (w_y + adjust >= screen->scroll_y + s_max)
+ screen->scroll_y = max(0, 1 + w_y + adjust - s_max);
+ } else
+ return;
+
+ pad_refresh(screen);
+}
+
static void add_url_screen_setup_widgets(struct add_url_screen *screen)
{
struct nc_widgetset *set = screen->widgetset;
@@ -218,12 +256,21 @@ static void add_url_screen_setup_widgets(struct add_url_screen *screen)
cancel_click, screen);
}
+static int add_url_screen_destroy(void *arg)
+{
+ struct add_url_screen *screen = arg;
+ if (screen->pad)
+ delwin(screen->pad);
+ return 0;
+}
+
struct add_url_screen *add_url_screen_init(struct cui *cui,
void (*on_exit)(struct cui *))
{
struct add_url_screen *screen;
screen = talloc_zero(cui, struct add_url_screen);
+ talloc_set_destructor(screen, add_url_screen_destroy);
screen->cui = cui;
screen->on_exit = on_exit;
@@ -243,8 +290,11 @@ struct add_url_screen *add_url_screen_init(struct cui *cui,
_("tab=next, shift+tab=previous, x=exit, h=help"));
nc_scr_frame_draw(&screen->scr);
+ screen->pad = newpad(LINES, COLS);
screen->widgetset = widgetset_create(screen, screen->scr.main_ncw,
- NULL);
+ screen->pad);
+ widgetset_set_widget_focus(screen->widgetset,
+ add_url_screen_widget_focus, screen);
add_url_screen_setup_widgets(screen);
add_url_screen_layout_widgets(screen);
OpenPOWER on IntegriCloud