mc/src/wtools.h

70 lines
2.0 KiB
C
Raw Normal View History

1998-02-27 07:54:42 +03:00
#ifndef __WTOOLS_H
#define __WTOOLS_H
struct WListbox;
1998-02-27 07:54:42 +03:00
/* Listbox utility functions */
typedef struct {
Dlg_head *dlg;
struct WListbox *list;
1998-02-27 07:54:42 +03:00
} Listbox;
Listbox *create_listbox_window (int cols, int lines, char *title, char *help);
#define LISTBOX_APPEND_TEXT(l,h,t,d) \
listbox_add_item (l->list, 0, h, t, d);
int run_listbox (Listbox *l);
/* Quick Widgets */
enum {
quick_end, quick_checkbox,
quick_button, quick_input,
quick_label, quick_radio
} /* quick_t */;
/* The widget is placed on relative_?/divisions_? of the parent widget */
/* Please note that the contents of the fields in the union are just */
/* used for setting up the dialog. They are a convenient place to put */
/* the values for a widget */
typedef struct {
int widget_type;
int relative_x;
int x_divisions;
int relative_y;
int y_divisions;
char *text; /* Text */
int hotkey_pos; /* the hotkey position */
int value; /* Buttons only: value of button */
int *result; /* Checkbutton: where to store result */
char **str_result; /* Input lines: destination */
char *tkname; /* Name of the widget used for Tk only */
} QuickWidget;
typedef struct {
int xlen, ylen;
int xpos, ypos; /* if -1, then center the dialog */
char *title;
char *help;
QuickWidget *widgets;
int i18n; /* If true, internationalization has happened */
1998-02-27 07:54:42 +03:00
} QuickDialog;
int quick_dialog (QuickDialog *qd);
int quick_dialog_skip (QuickDialog *qd, int nskip);
/* The input dialogs */
/* Pass this as def_text to request a password */
#define INPUT_PASSWORD ((char *) -1)
1998-02-27 07:54:42 +03:00
char *input_dialog (char *header, char *text, char *def_text);
char *input_dialog_help (char *header, char *text, char *help, char *def_text);
char *input_expand_dialog (char *header, char *text, char *def_text);
char *real_input_dialog (char *header, char *text, char *def_text);
char *real_input_dialog_help (char *header, char *text, char *help, char *def_text);
void query_set_sel (int new_sel);
#endif /* __WTOOLS_H */