/*- * SPDX-License-Identifier: BSD-2-Clause * * Copyright (c) 2021 Alfonso Sabato Siciliano * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifndef _LIBBSDDIALOG_H_ #define _LIBBSDDIALOG_H_ #include #define LIBBSDDIALOG_VERSION "0.0.1" /* Exit status */ #define BSDDIALOG_ERROR -1 #define BSDDIALOG_OK 0 #define BSDDIALOG_YES BSDDIALOG_OK #define BSDDIALOG_CANCEL 1 #define BSDDIALOG_NO BSDDIALOG_CANCEL #define BSDDIALOG_HELP 2 #define BSDDIALOG_EXTRA 3 #define BSDDIALOG_ITEM_HELP 4 #define BSDDIALOG_TIMEOUT 5 #define BSDDIALOG_ESC 6 #define BSDDIALOG_GENERIC1 7 #define BSDDIALOG_GENERIC2 8 /* size and position */ #define BSDDIALOG_FULLSCREEN -1 #define BSDDIALOG_AUTOSIZE 0 #define BSDDIALOG_CENTER -1 struct bsddialog_conf { bool ascii_lines; unsigned int aspect_ratio; unsigned int auto_minheight; unsigned int auto_minwidth; char *bottomtitle; bool clear; char *f1_file; char *f1_message; int *get_height; int *get_width; bool no_lines; bool shadow; unsigned int sleep; char *title; int y; int x; struct { bool colors; } text; struct { bool align_left; char *default_item; bool no_desc; bool no_name; bool shortcut_buttons; } menu; struct { int securech; bool value_withcancel; bool value_withextra; bool value_withhelp; } form; struct { bool without_ok; char *ok_label; bool with_extra; char *extra_label; bool without_cancel; char *cancel_label; bool default_cancel; bool with_help; char *help_label; char *exit_label; char *generic1_label; char *generic2_label; char *default_label; } button; }; struct bsddialog_menuitem { char *prefix; bool on; unsigned int depth; char *name; char *desc; char *bottomdesc; }; enum bsddialog_grouptype { BSDDIALOG_CHECKLIST, BSDDIALOG_RADIOLIST, BSDDIALOG_SEPARATOR, }; struct bsddialog_menugroup { enum bsddialog_grouptype type; unsigned int nitems; struct bsddialog_menuitem *items; }; struct bsddialog_formitem { char *label; unsigned int ylabel; unsigned int xlabel; char *init; unsigned int yfield; unsigned int xfield; unsigned int fieldlen; unsigned int maxvaluelen; char *value; /* allocated memory */ #define BSDDIALOG_FIELDHIDDEN 1U #define BSDDIALOG_FIELDREADONLY 2U unsigned int flags; char *bottomdesc; }; int bsddialog_init(void); int bsddialog_end(void); int bsddialog_backtitle(struct bsddialog_conf *conf, char *backtitle); int bsddialog_initconf(struct bsddialog_conf *conf); int bsddialog_clearterminal(void); const char *bsddialog_geterror(void); /* widgets */ int bsddialog_buildlist(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int menurows, int nitems, struct bsddialog_menuitem *items, int *focusitem); int bsddialog_checklist(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int menurows, int nitems, struct bsddialog_menuitem *items, int *focusitem); int bsddialog_datebox(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int *yy, unsigned int *mm, unsigned int *dd); int bsddialog_form(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int formheight, unsigned int nitems, struct bsddialog_formitem *items); int bsddialog_gauge(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int perc); int bsddialog_infobox(struct bsddialog_conf *conf, char* text, int rows, int cols); int bsddialog_menu(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int menurows, int nitems, struct bsddialog_menuitem *items, int *focusitem); int bsddialog_mixedgauge(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int mainperc, unsigned int nminibars, char **minilabels, int *minipercs); int bsddialog_mixedlist(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int menurows, int ngroups, struct bsddialog_menugroup *groups, int *focuslist, int *focusitem); int bsddialog_msgbox(struct bsddialog_conf *conf, char* text, int rows, int cols); int bsddialog_pause(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int sec); int bsddialog_radiolist(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int menurows, int nitems, struct bsddialog_menuitem *items, int *focusitem); int bsddialog_rangebox(struct bsddialog_conf *conf, char* text, int rows, int cols, int min, int max, int *value); int bsddialog_textbox(struct bsddialog_conf *conf, char* file, int rows, int cols); int bsddialog_timebox(struct bsddialog_conf *conf, char* text, int rows, int cols, unsigned int *hh, unsigned int *mm, unsigned int *ss); int bsddialog_yesno(struct bsddialog_conf *conf, char* text, int rows, int cols); #endif