X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=ui%2Fncurses%2Fnc-boot-editor.c;h=57cc0dc1cfac4eb6bfd3761123f4962f3f8a5238;hp=79ca3a74269e7311140cb56de183d0152ac487e7;hb=350ef03d554a4c8f67e22bdf89fa888554f0b75e;hpb=c4b4ebc4c61b7f374582c621aec846aba3795954 diff --git a/ui/ncurses/nc-boot-editor.c b/ui/ncurses/nc-boot-editor.c index 79ca3a7..57cc0dc 100644 --- a/ui/ncurses/nc-boot-editor.c +++ b/ui/ncurses/nc-boot-editor.c @@ -33,6 +33,11 @@ struct boot_editor { struct cui *cui; void *data; struct pmenu_item *item; + enum { + STATE_EDIT, + STATE_CANCEL, + STATE_SAVE, + } state; void (*on_exit)(struct cui *cui, struct pmenu_item *item, struct pb_boot_data *bd); @@ -131,7 +136,7 @@ static char *conditional_prefix(struct pb_boot_data *ctx, if (!value || !*value) return NULL; - sep = NULL; + sep = ""; if (!prefix) prefix = ""; else if (prefix[strlen(prefix)] != '/') @@ -183,19 +188,30 @@ static struct pb_boot_data *boot_editor_prepare_data( static void boot_editor_process_key(struct nc_scr *scr, int key) { struct boot_editor *boot_editor = boot_editor_from_scr(scr); + struct pmenu_item *item; + struct pb_boot_data *bd; bool handled; handled = widgetset_process_key(boot_editor->widgetset, key); - if (handled) { + if (handled) pad_refresh(boot_editor); - return; - } - switch (key) { - case 'x': - case 27: /* ESC */ - boot_editor->on_exit(boot_editor->cui, NULL, NULL); - nc_flush_keys(); + else if (key == 'x' || key == 27) + boot_editor->state = STATE_CANCEL; + + item = NULL; + bd = NULL; + + switch (boot_editor->state) { + case STATE_SAVE: + item = boot_editor->item; + bd = boot_editor_prepare_data(boot_editor); + /* fall through */ + case STATE_CANCEL: + boot_editor->on_exit(boot_editor->cui, item, bd); + break; + default: + break; } } @@ -215,16 +231,13 @@ static int boot_editor_destructor(void *arg) static void ok_click(void *arg) { struct boot_editor *boot_editor = arg; - struct pb_boot_data *bd; - - bd = boot_editor_prepare_data(boot_editor); - boot_editor->on_exit(boot_editor->cui, boot_editor->item, bd); + boot_editor->state = STATE_SAVE; } static void cancel_click(void *arg) { struct boot_editor *boot_editor = arg; - boot_editor->on_exit(boot_editor->cui, NULL, NULL); + boot_editor->state = STATE_CANCEL; } static int layout_pair(struct boot_editor *boot_editor, int y, @@ -461,6 +474,8 @@ void boot_editor_update(struct boot_editor *boot_editor, boot_editor_populate_device_select(boot_editor, sysinfo); + boot_editor_layout_widgets(boot_editor); + widgetset_post(boot_editor->widgetset); pad_refresh(boot_editor); @@ -484,6 +499,7 @@ struct boot_editor *boot_editor_init(struct cui *cui, boot_editor->cui = cui; boot_editor->item = item; boot_editor->on_exit = on_exit; + boot_editor->state = STATE_EDIT; boot_editor->label_x = 1; boot_editor->field_x = 9; @@ -497,6 +513,7 @@ struct boot_editor *boot_editor_init(struct cui *cui, boot_editor->scr.frame.rtitle = NULL; boot_editor->scr.frame.help = talloc_strdup(boot_editor, "Enter=accept"); + nc_scr_frame_draw(&boot_editor->scr); if (item) { struct pb_boot_data *bd = cod_from_item(item)->bd; @@ -517,6 +534,7 @@ struct boot_editor *boot_editor_init(struct cui *cui, boot_editor_setup_widgets(boot_editor, sysinfo); boot_editor_layout_widgets(boot_editor); + wrefresh(boot_editor->scr.main_ncw); return boot_editor; }