This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RescueBootCD/extra/dialog-1.0-20050306/dialog.h

646 lines
22 KiB
C

/*
* $Id: dialog.h,v 1.147 2004/12/20 00:01:11 Yura.Kalinichen Exp $
*
* dialog.h -- common declarations for all dialog modules
*
* AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
* and: Thomas E. Dickey
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef DIALOG_H_included
#define DIALOG_H_included 1
#include <dlg_config.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <signal.h> /* fork() etc. */
#include <math.h> /* sqrt() */
#if defined(HAVE_NCURSESW_NCURSES_H)
#include <ncursesw/ncurses.h>
#elif defined(HAVE_NCURSES_NCURSES_H)
#include <ncurses/ncurses.h>
#elif defined(HAVE_NCURSES_CURSES_H)
#include <ncurses/curses.h>
#elif defined(HAVE_NCURSES_H)
#include <ncurses.h>
#elif defined(ultrix)
#include <cursesX.h>
#else
#include <curses.h>
#endif
/* possible conflicts with <term.h> which may be included in <curses.h> */
#ifdef color_names
#undef color_names
#endif
#ifdef buttons
#undef buttons
#endif
#ifdef ENABLE_NLS
#include <libintl.h>
#include <langinfo.h>
#define _(s) gettext(s)
#else
#undef _
#define _(s) s
#endif
#ifndef GCC_NORETURN
#define GCC_NORETURN /*nothing*/
#endif
#ifndef GCC_UNUSED
#define GCC_UNUSED /*nothing*/
#endif
#ifndef HAVE_WGET_WCH
#undef USE_WIDE_CURSES
#endif
/*
* FIXME: a configure check would be useful
*/
#ifdef __hpux
#undef ACS_UARROW
#undef ACS_DARROW
#endif
/*
* Change these if you want
*/
#define USE_SHADOW TRUE
#define USE_COLORS TRUE
#ifdef HAVE_COLOR
#define SCOLS (COLS - (dialog_state.use_shadow ? 2 : 0))
#define SLINES (LINES - (dialog_state.use_shadow ? 1 : 0))
#else
#define SCOLS COLS
#define SLINES LINES
#endif
#define DLG_EXIT_ESC 255
#define DLG_EXIT_UNKNOWN -2 /* never return this (internal use) */
#define DLG_EXIT_ERROR -1 /* the shell sees this as 255 */
#define DLG_EXIT_OK 0
#define DLG_EXIT_CANCEL 1
#define DLG_EXIT_HELP 2
#define DLG_EXIT_EXTRA 3
#define DLG_EXIT_ITEM_HELP 4 /* actually DLG_EXIT_HELP */
#define CHR_BACKSPACE 8
#define CHR_REPAINT 12 /* control/L */
#define CHR_DELETE 127
#define CHR_NEXT ('n' & 0x1f)
#define CHR_PREVIOUS ('p' & 0x1f)
#define ESC 27
#define TAB 9
#define MARGIN 1
#define GUTTER 2
#define SHADOW_ROWS 1
#define SHADOW_COLS 2
#define MAX_LEN 2048
#define BUF_SIZE (10*1024)
#undef MIN
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#undef MAX
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#define DEFAULT_SEPARATE_STR "\t"
#define DEFAULT_ASPECT_RATIO 9
/* how many spaces is a tab long (default)? */
#define TAB_LEN 8
#define WTIMEOUT_VAL 10
#ifndef A_CHARTEXT
#define A_CHARTEXT 0xff
#endif
#define CharOf(ch) ((ch) & A_CHARTEXT)
#ifndef ACS_ULCORNER
#define ACS_ULCORNER '+'
#endif
#ifndef ACS_LLCORNER
#define ACS_LLCORNER '+'
#endif
#ifndef ACS_URCORNER
#define ACS_URCORNER '+'
#endif
#ifndef ACS_LRCORNER
#define ACS_LRCORNER '+'
#endif
#ifndef ACS_HLINE
#define ACS_HLINE '-'
#endif
#ifndef ACS_VLINE
#define ACS_VLINE '|'
#endif
#ifndef ACS_LTEE
#define ACS_LTEE '+'
#endif
#ifndef ACS_RTEE
#define ACS_RTEE '+'
#endif
#ifndef ACS_UARROW
#define ACS_UARROW '^'
#endif
#ifndef ACS_DARROW
#define ACS_DARROW 'v'
#endif
/* these definitions may work for antique versions of curses */
#ifndef HAVE_GETBEGYX
#undef getbegyx
#define getbegyx(win,y,x) (y = (win)?(win)->_begy:ERR, x = (win)?(win)->_begx:ERR)
#endif
#ifndef HAVE_GETMAXYX
#undef getmaxyx
#define getmaxyx(win,y,x) (y = (win)?(win)->_maxy:ERR, x = (win)?(win)->_maxx:ERR)
#endif
#ifndef HAVE_GETPARYX
#undef getparyx
#define getparyx(win,y,x) (y = (win)?(win)->_pary:ERR, x = (win)?(win)->_parx:ERR)
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* these definitions may be needed for bleeding-edge curses implementations */
#if !(defined(HAVE_GETBEGX) && defined(HAVE_GETBEGY))
#undef getbegx
#undef getbegy
#define getbegx(win) dlg_getbegx(win)
#define getbegy(win) dlg_getbegy(win)
extern int dlg_getbegx(WINDOW *);
extern int dlg_getbegy(WINDOW *);
#endif
#if !(defined(HAVE_GETCURX) && defined(HAVE_GETCURY))
#undef getcurx
#undef getcury
#define getcurx(win) dlg_getcurx(win)
#define getcury(win) dlg_getcury(win)
extern int dlg_getcurx(WINDOW *);
extern int dlg_getcury(WINDOW *);
#endif
#if !(defined(HAVE_GETMAXX) && defined(HAVE_GETMAXY))
#undef getmaxx
#undef getmaxy
#define getmaxx(win) dlg_getmaxx(win)
#define getmaxy(win) dlg_getmaxy(win)
extern int dlg_getmaxx(WINDOW *);
extern int dlg_getmaxy(WINDOW *);
#endif
#if !(defined(HAVE_GETPARX) && defined(HAVE_GETPARY))
#undef getparx
#undef getpary
#define getparx(win) dlg_getparx(win)
#define getpary(win) dlg_getpary(win)
extern int dlg_getparx(WINDOW *);
extern int dlg_getpary(WINDOW *);
#endif
/*
* This is a list of "old" names, which should be helpful in updating
* applications that use libdialog. Starting with 2003/11/26, all exported
* symbols from libdialog have "dlg_" prefix, or "dialog_" prefix or "_dialog"
* suffix.
*/
#ifdef __DIALOG_OLD_NAMES__
#define color_table dlg_color_table
#define attr_clear(win,h,w,a) dlg_attr_clear(win,h,w,a)
#define auto_size(t,s,h,w,xl,mc) dlg_auto_size(t,s,h,w,xl,mc)
#define auto_sizefile(t,f,h,w,xl,mc) dlg_auto_sizefile(t,f,h,w,xl,mc)
#define beeping() dlg_beeping()
#define box_x_ordinate(w) dlg_box_x_ordinate(w)
#define box_y_ordinate(h) dlg_box_y_ordinate(h)
#define calc_listh(h,lh,in) dlg_calc_listh(h,lh,in)
#define calc_listw(in,items,group) dlg_calc_listw(in,items,group)
#define color_setup() dlg_color_setup()
#define create_rc(f) dlg_create_rc(f)
#define ctl_size(h,w) dlg_ctl_size(h,w)
#define del_window(win) dlg_del_window(win)
#define dialog_clear() dlg_clear()
#define draw_bottom_box(win) dlg_draw_bottom_box(win)
#define draw_box(win,y,x,h,w,xc,bc) dlg_draw_box(win,y,x,h,w,xc,bc)
#define draw_shadow(win,h,w,y,x) dlg_draw_shadow(win,h,w,y,x)
#define draw_title(win,t) dlg_draw_title(win,t)
#define exiterr dlg_exiterr
#define killall_bg(n) dlg_killall_bg(n)
#define mouse_bigregion(y,x) dlg_mouse_bigregion(y,x)
#define mouse_free_regions() dlg_mouse_free_regions()
#define mouse_mkbigregion(y,x,h,w,n,ix,iy,m) dlg_mouse_mkbigregion(y,x,h,w,n,ix,iy,m)
#define mouse_mkregion(y,x,h,w,n) dlg_mouse_mkregion(y,x,h,w,n)
#define mouse_region(y,x) dlg_mouse_region(y,x)
#define mouse_setbase(x,y) dlg_mouse_setbase(x,y)
#define mouse_wgetch(w,c) dlg_mouse_wgetch(w,c)
#define new_window(h,w,y,x) dlg_new_window(h,w,y,x)
#define parse_rc() dlg_parse_rc()
#define print_autowrap(win,s,h,w) dlg_print_autowrap(win,s,h,w)
#define print_size(h,w) dlg_print_size(h,w)
#define put_backtitle() dlg_put_backtitle()
#define strclone(cprompt) dlg_strclone(cprompt)
#define sub_window(win,h,w,y,x) dlg_sub_window(win,h,w,y,x)
#define tab_correct_str(s) dlg_tab_correct_str(s)
#endif
/*
* Attribute names
*/
#define DIALOG_ATR(n) dlg_color_table[n].atr
#define screen_attr DIALOG_ATR(0)
#define shadow_attr DIALOG_ATR(1)
#define dialog_attr DIALOG_ATR(2)
#define title_attr DIALOG_ATR(3)
#define border_attr DIALOG_ATR(4)
#define button_active_attr DIALOG_ATR(5)
#define button_inactive_attr DIALOG_ATR(6)
#define button_key_active_attr DIALOG_ATR(7)
#define button_key_inactive_attr DIALOG_ATR(8)
#define button_label_active_attr DIALOG_ATR(9)
#define button_label_inactive_attr DIALOG_ATR(10)
#define inputbox_attr DIALOG_ATR(11)
#define inputbox_border_attr DIALOG_ATR(12)
#define searchbox_attr DIALOG_ATR(13)
#define searchbox_title_attr DIALOG_ATR(14)
#define searchbox_border_attr DIALOG_ATR(15)
#define position_indicator_attr DIALOG_ATR(16)
#define menubox_attr DIALOG_ATR(17)
#define menubox_border_attr DIALOG_ATR(18)
#define item_attr DIALOG_ATR(19)
#define item_selected_attr DIALOG_ATR(20)
#define tag_attr DIALOG_ATR(21)
#define tag_selected_attr DIALOG_ATR(22)
#define tag_key_attr DIALOG_ATR(23)
#define tag_key_selected_attr DIALOG_ATR(24)
#define check_attr DIALOG_ATR(25)
#define check_selected_attr DIALOG_ATR(26)
#define uarrow_attr DIALOG_ATR(27)
#define darrow_attr DIALOG_ATR(28)
#define itemhelp_attr DIALOG_ATR(29)
#define form_active_text_attr DIALOG_ATR(30)
#define form_text_attr DIALOG_ATR(31)
/*
* Internal keycodes are used for commands.
*/
typedef enum {
DLGK_min = KEY_MAX + 1
, DLGK_NEXT_FIELD
, DLGK_PREV_FIELD
} DLGK_xxx;
#define DLGK_max (KEY_MAX + 256)
/*
* Callbacks are used to implement the "background" tailbox.
*/
typedef struct _dlg_callback {
struct _dlg_callback *next;
FILE *input;
WINDOW *win;
bool keep_bg; /* keep in background, on exit */
bool bg_task; /* true if this is background task */
bool (*handle_getc)(struct _dlg_callback *p, int ch, int fkey, int *result);
} DIALOG_CALLBACK;
typedef struct _dlg_windows {
struct _dlg_windows *next;
WINDOW *normal;
WINDOW *shadow;
} DIALOG_WINDOWS;
/*
* Global variables, which are initialized as needed
*/
typedef struct {
DIALOG_CALLBACK *getc_callbacks;
DIALOG_CALLBACK *getc_redirect;
DIALOG_WINDOWS *all_windows;
FILE *output; /* option "--output-fd fd" */
FILE *pipe_input; /* used for gauge widget */
FILE *screen_output; /* newterm(), etc. */
bool screen_initialized;
bool use_colors; /* use colors by default? */
bool use_scrollbar; /* RESERVED */
bool use_shadow; /* shadow dialog boxes by default? */
bool visit_items; /* option "--visit-items" */
char *separate_str; /* option "--separate-widget string" */
int aspect_ratio; /* option "--aspect ratio" */
int output_count; /* # of widgets that may have done output */
int tab_len; /* option "--tab-len n" */
} DIALOG_STATE;
extern DIALOG_STATE dialog_state;
/*
* Global variables, which dialog resets before each widget
*/
typedef struct {
bool beep_after_signal; /* option "--beep-after" */
bool beep_signal; /* option "--beep" */
bool begin_set; /* option "--begin y x" was used */
bool cant_kill; /* option "--no-kill" */
bool colors; /* option "--colors" */
bool cr_wrap; /* option "--cr-wrap" */
bool defaultno; /* option "--defaultno" */
bool dlg_clear_screen; /* option "--clear" */
bool extra_button; /* option "--extra-button" */
bool help_button; /* option "--help-button" */
bool help_status; /* option "--help-status" */
bool input_menu; /* menu vs inputmenu widget */
bool insecure; /* option "--insecure" */
bool item_help; /* option "--item-help" */
bool keep_window; /* option "--keep-window" */
bool nocancel; /* option "--no-cancel" */
bool nocollapse; /* option "--no-collapse" */
bool print_siz; /* option "--print-size" */
bool separate_output; /* option "--separate-output" */
bool single_quoted; /* option "--single-quoted" */
bool size_err; /* option "--size-err" */
bool tab_correct; /* option "--tab-correct" */
bool trim_whitespace; /* option "--trim" */
char *backtitle; /* option "--backtitle backtitle" */
char *cancel_label; /* option "--cancel-label string" */
char *default_item; /* option "--default-item string" */
char *exit_label; /* option "--exit-label string" */
char *extra_label; /* option "--extra-label string" */
char *help_label; /* option "--help-label string" */
char *input_result;
char *no_label; /* option "--no-label string" */
char *ok_label; /* option "--ok-label string" */
char *title; /* option "--title title" */
char *yes_label; /* option "--yes-label string" */
int begin_x; /* option "--begin y x" (second value) */
int begin_y; /* option "--begin y x" (first value) */
int max_input; /* option "--max-input size" */
int scale_factor; /* RESERVED */
int sleep_secs; /* option "--sleep secs" */
int timeout_secs; /* option "--timeout secs" */
unsigned input_length; /* nonzero if input_result is allocated */
} DIALOG_VARS;
#define USE_ITEM_HELP(s) (dialog_vars.item_help && (s) != 0)
#define CHECKBOX_TAGS (dialog_vars.item_help ? 4 : 3)
#define MENUBOX_TAGS (dialog_vars.item_help ? 3 : 2)
#define FORMBOX_TAGS (dialog_vars.item_help ? 9 : 8)
extern DIALOG_VARS dialog_vars;
#ifndef HAVE_TYPE_CHTYPE
#define chtype long
#endif
#define UCH(ch) ((unsigned char)(ch))
#define assert_ptr(ptr,msg) if ((ptr) == 0) dlg_exiterr("cannot allocate memory in " msg)
/*
* Table for attribute- and color-values.
*/
typedef struct {
chtype atr;
#ifdef HAVE_COLOR
int fg;
int bg;
int hilite;
#endif
#ifdef HAVE_RC_FILE
char *name;
char *comment;
#endif
} DIALOG_COLORS;
extern DIALOG_COLORS dlg_color_table[];
/*
* Function prototypes
*/
extern char *dialog_version(void);
/* widgets, each in separate files */
extern int dialog_calendar(const char *title, const char *subtitle, int height, int width, int day, int month, int year);
extern int dialog_checklist(const char *title, const char *cprompt, int height, int width, int list_height, int item_no, char ** items, int flag);
extern int dialog_form(const char *title, const char *cprompt, int height, int width, int form_height, int item_no, char **items);
extern int dialog_fselect(const char *title, const char *path, int height, int width);
extern int dialog_gauge(const char *title, const char *cprompt, int height, int width, int percent);
extern int dialog_pause(const char *title, const char *cprompt, int height, int width, int seconds);
extern int dialog_inputbox(const char *title, const char *cprompt, int height, int width, const char *init, const int password);
extern int dialog_menu(const char *title, const char *cprompt, int height, int width, int menu_height, int item_no, char **items);
extern int dialog_msgbox(const char *title, const char *cprompt, int height, int width, int pauseopt);
extern int dialog_tailbox(const char *title, const char *file, int height, int width, int bg_task);
extern int dialog_textbox(const char *title, const char *file, int height, int width);
extern int dialog_timebox(const char *title, const char *subtitle, int height, int width, int hour, int minute, int second);
extern int dialog_yesno(const char *title, const char *cprompt, int height, int width);
/* arrows.c */
extern void dlg_draw_arrows(WINDOW *dialog, int top_arrow, int bottom_arrow, int x, int top, int bottom);
extern void dlg_draw_arrows2(WINDOW *dialog, int top_arrow, int bottom_arrow, int x, int top, int bottom, chtype attr, chtype borderattr);
/* buttons.c */
extern const char ** dlg_exit_label(void);
extern const char ** dlg_ok_label(void);
extern const char ** dlg_ok_labels(void);
extern const char ** dlg_yes_labels(void);
extern int dlg_button_count(const char **labels);
extern int dlg_button_x_step(const char **labels, int limit, int *gap, int *margin, int *step);
extern int dlg_char_to_button(int ch, const char **labels);
extern int dlg_match_char(int ch, const char *string);
extern int dlg_next_button(const char **labels, int button);
extern int dlg_next_ok_buttonindex(int current, int extra);
extern int dlg_ok_buttoncode(int button);
extern int dlg_prev_button(const char **labels, int button);
extern int dlg_prev_ok_buttonindex(int current, int extra);
extern void dlg_button_layout(const char **labels, int *limit);
extern void dlg_button_sizes(const char **labels, int vertical, int *longest, int *length);
extern void dlg_draw_buttons(WINDOW *win, int y, int x, const char **labels, int selected, int vertical, int limit);
/* inputstr.c */
extern bool dlg_edit_string(char *string, int *offset, int key, int fkey, bool force);
extern const int * dlg_index_columns(const char *string);
extern const int * dlg_index_wchars(const char *string);
extern int dlg_count_columns(const char *string);
extern int dlg_count_wchars(const char *string);
extern int dlg_edit_offset(char *string, int offset, int x_last);
extern int dlg_limit_columns(const char *string, int limit, int offset);
extern void dlg_show_string(WINDOW *win, const char *string, int offset, chtype attr, int y_base, int x_base, int x_last, bool hidden, bool force);
/* rc.c */
#ifdef HAVE_RC_FILE
extern int dlg_parse_rc(void);
extern void dlg_create_rc(const char *filename);
#endif
/* ui_getc.c */
extern int dlg_getc(WINDOW *win, int *fkey);
extern int dlg_getc_callbacks(int ch, int fkey, int *result);
extern int dlg_last_getc(void);
extern void dlg_add_callback(DIALOG_CALLBACK *p);
extern void dlg_flush_getc(void);
extern void dlg_remove_callback(DIALOG_CALLBACK *p);
extern void dlg_killall_bg(int *retval);
/* util.c */
extern WINDOW * dlg_new_window(int height, int width, int y, int x);
extern WINDOW * dlg_sub_window(WINDOW *win, int height, int width, int y, int x);
extern char * dlg_strclone(const char *cprompt);
extern int dlg_box_x_ordinate(int width);
extern int dlg_box_y_ordinate(int height);
extern int dlg_calc_listw(int item_no, char **items, int group);
extern int dlg_default_item(char **items, int llen);
extern int dlg_defaultno_button(void);
extern void dlg_add_quoted(char *string);
extern void dlg_add_result(char *string);
extern void dlg_attr_clear(WINDOW * win, int height, int width, chtype attr);
extern void dlg_auto_size(const char * title, const char *prompt, int *height, int *width, int boxlines, int mincols);
extern void dlg_auto_sizefile(const char * title, const char *file, int *height, int *width, int boxlines, int mincols);
extern void dlg_beeping(void);
extern void dlg_calc_listh(int *height, int *list_height, int item_no);
extern void dlg_clear(void);
extern void dlg_ctl_size(int height, int width);
extern void dlg_del_window(WINDOW *win);
extern void dlg_does_output(void);
extern void dlg_draw_bottom_box(WINDOW *win);
extern void dlg_draw_box(WINDOW * win, int y, int x, int height, int width, chtype boxchar, chtype borderchar);
extern void dlg_draw_title(WINDOW *win, const char *title);
extern void dlg_exit(int code) GCC_NORETURN;
extern void dlg_item_help(char *txt);
extern void dlg_print_autowrap(WINDOW *win, const char *prompt, int height, int width);
extern void dlg_print_size(int height, int width);
extern void dlg_print_text(WINDOW *win, const char *txt, int len, chtype *attr);
extern void dlg_put_backtitle(void);
extern void dlg_set_focus(WINDOW *parent, WINDOW *win);
extern void dlg_tab_correct_str(char *prompt);
extern void dlg_trim_string(char *src);
extern void end_dialog(void);
extern void init_dialog(FILE *input, FILE * output);
extern void dlg_exiterr(const char *, ...)
#if defined(__GNUC__) && !defined(printf)
__attribute__((format(printf,1,2)))
#endif
;
#ifdef HAVE_COLOR
extern chtype dlg_color_pair(int foreground, int background);
extern int dlg_color_count(void);
extern void dlg_color_setup(void);
extern void dlg_draw_shadow(WINDOW * win, int height, int width, int y, int x);
#endif
#ifdef HAVE_STRCASECMP
#define dlg_strcmp(a,b) strcasecmp(a,b)
#else
extern int dlg_strcmp(const char *a, const char *b);
#endif
/*
* The following stuff is needed for mouse support
*/
typedef struct mseRegion {
int x, y, X, Y, code;
int mode, step_x, step_y;
struct mseRegion *next;
} mseRegion;
#if defined(NCURSES_MOUSE_VERSION)
#define mouse_open() mousemask(BUTTON1_CLICKED, (mmask_t *) 0)
#define mouse_close() mousemask(0, (mmask_t *) 0)
extern mseRegion * dlg_mouse_mkregion (int y, int x, int height, int width, int code);
extern void dlg_mouse_free_regions (void);
extern void dlg_mouse_mkbigregion (int y, int x, int height, int width, int code, int step_x, int step_y, int mode);
extern void dlg_mouse_setbase (int x, int y);
#define USE_MOUSE 1
#else
#define mouse_open() /*nothing*/
#define mouse_close() /*nothing*/
#define dlg_mouse_free_regions() /* nothing */
#define dlg_mouse_mkregion(y, x, height, width, code) /*nothing*/
#define dlg_mouse_mkbigregion(y, x, height, width, code, step_x, step_y, mode) /*nothing*/
#define dlg_mouse_setbase(x, y) /*nothing*/
#define USE_MOUSE 0
#endif
extern mseRegion *dlg_mouse_region (int y, int x);
extern mseRegion *dlg_mouse_bigregion (int y, int x);
extern int dlg_mouse_wgetch (WINDOW *, int *);
extern int dlg_mouse_wgetch_nowait (WINDOW *, int *);
#define mouse_mkbutton(y,x,len,code) dlg_mouse_mkregion(y,x,1,len,code);
/*
* This is the base for fictitious keys, which activate
* the buttons.
*
* Mouse-generated keys are the following:
* -- the first 32 are used as numbers, in addition to '0'-'9'
* -- the lowercase are used to signal mouse-enter events (M_EVENT + 'o')
* -- uppercase chars are used to invoke the button (M_EVENT + 'O')
*/
#define M_EVENT (DLGK_max + 1)
/*
* The `flag' parameter in checklist is used to select between
* radiolist and checklist
*/
#define FLAG_CHECK 1
#define FLAG_RADIO 0
/*
* This is used only for debugging (FIXME: should have a separate header).
*/
#ifdef NO_LEAKS
extern void _dlg_inputstr_leaks(void);
#ifdef NCURSES_VERSION
extern void _nc_free_and_exit(int); /* nc_alloc.h normally not installed */
#endif
#endif
#ifdef __cplusplus
}
#endif
#endif /* DIALOG_H_included */