Include dependency graph for lxdialog.c:

Go to the source code of this file.
Data Structures | |
| struct | Mode |
Typedefs | |
| typedef int( | jumperFn )(const char *title, int argc, const char *const *argv) |
Functions | |
| static void | Usage (const char *name) |
| int | main (int argc, const char *const *argv) |
| int | j_menu (const char *t, int ac, const char *const *av) |
| int | j_checklist (const char *t, int ac, const char *const *av) |
| int | j_radiolist (const char *t, int ac, const char *const *av) |
| int | j_textbox (const char *t, int ac, const char *const *av) |
| int | j_yesno (const char *t, int ac, const char *const *av) |
| int | j_inputbox (const char *t, int ac, const char *const *av) |
| int | j_msgbox (const char *t, int ac, const char *const *av) |
| int | j_infobox (const char *t, int ac, const char *const *av) |
Variables | |
| jumperFn | j_menu |
| jumperFn | j_checklist |
| jumperFn | j_radiolist |
| jumperFn | j_yesno |
| jumperFn | j_textbox |
| jumperFn | j_inputbox |
| jumperFn | j_msgbox |
| jumperFn | j_infobox |
| static struct Mode | modes [] |
| static struct Mode * | modePtr |
| typedef int( jumperFn)(const char *title, int argc, const char *const *argv) |
Definition at line 26 of file lxdialog.c.
| int j_checklist | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 180 of file lxdialog.c.
References dialog_checklist(), and FLAG_CHECK.
Here is the call graph for this function:

| int j_infobox | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 222 of file lxdialog.c.
References dialog_msgbox().
Here is the call graph for this function:

| int j_inputbox | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 206 of file lxdialog.c.
References dialog_input_result, and dialog_inputbox().
Here is the call graph for this function:

| int j_menu | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 173 of file lxdialog.c.
References dialog_menu().
Here is the call graph for this function:

| int j_msgbox | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 216 of file lxdialog.c.
References dialog_msgbox().
Here is the call graph for this function:

| int j_radiolist | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 187 of file lxdialog.c.
References dialog_checklist(), and FLAG_RADIO.
Here is the call graph for this function:

| int j_textbox | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 194 of file lxdialog.c.
References dialog_textbox().
Here is the call graph for this function:

| int j_yesno | ( | const char * | t, | |
| int | ac, | |||
| const char *const * | av | |||
| ) |
Definition at line 200 of file lxdialog.c.
References dialog_yesno().
Here is the call graph for this function:

| int main | ( | int | argc, | |
| const char *const * | argv | |||
| ) |
Definition at line 57 of file lxdialog.c.
References Mode::argmax, Mode::argmin, attr_clear(), backtitle, end_dialog(), init_dialog(), Mode::jumper, modePtr, modes, Mode::name, screen_attr, and Usage().
Here is the call graph for this function:

| static void Usage | ( | const char * | name | ) | [static] |
| jumperFn j_checklist |
Definition at line 34 of file lxdialog.c.
| jumperFn j_infobox |
Definition at line 35 of file lxdialog.c.
| jumperFn j_inputbox |
Definition at line 34 of file lxdialog.c.
| jumperFn j_menu |
Definition at line 34 of file lxdialog.c.
| jumperFn j_msgbox |
Definition at line 35 of file lxdialog.c.
| jumperFn j_radiolist |
Definition at line 34 of file lxdialog.c.
| jumperFn j_textbox |
Definition at line 34 of file lxdialog.c.
| jumperFn j_yesno |
Definition at line 34 of file lxdialog.c.
Initial value:
{
{"--menu", 9, 0, 3, j_menu},
{"--checklist", 9, 0, 3, j_checklist},
{"--radiolist", 9, 0, 3, j_radiolist},
{"--yesno", 5,5,1, j_yesno},
{"--textbox", 5,5,1, j_textbox},
{"--inputbox", 5, 6, 1, j_inputbox},
{"--msgbox", 5, 5, 1, j_msgbox},
{"--infobox", 5, 5, 1, j_infobox},
{NULL, 0, 0, 0, NULL}
}
Definition at line 37 of file lxdialog.c.
Referenced by main().
1.4.7