123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- #ifndef ETI_MENU
- #define ETI_MENU
- #ifdef AMIGA
- #define TEXT TEXT_ncurses
- #endif
- #include <curses.h>
- #include <eti.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef int Menu_Options;
- typedef int Item_Options;
- #define O_ONEVALUE (0x01)
- #define O_SHOWDESC (0x02)
- #define O_ROWMAJOR (0x04)
- #define O_IGNORECASE (0x08)
- #define O_SHOWMATCH (0x10)
- #define O_NONCYCLIC (0x20)
- #define O_MOUSE_MENU (0x40)
- #define O_SELECTABLE (0x01)
- typedef struct
- {
- const char* str;
- unsigned short length;
- } TEXT;
- typedef struct tagITEM
- {
- TEXT name;
- TEXT description;
- struct tagMENU *imenu;
- void *userptr;
- Item_Options opt;
- short index;
- short y;
- short x;
- bool value;
-
- struct tagITEM *left;
- struct tagITEM *right;
- struct tagITEM *up;
- struct tagITEM *down;
- } ITEM;
- typedef void (*Menu_Hook)(struct tagMENU *);
- typedef struct tagMENU
- {
- short height;
- short width;
- short rows;
- short cols;
- short frows;
- short fcols;
- short arows;
- short namelen;
- short desclen;
- short marklen;
- short itemlen;
- short spc_desc;
- short spc_cols;
- short spc_rows;
- char *pattern;
- short pindex;
- WINDOW *win;
- WINDOW *sub;
- WINDOW *userwin;
- WINDOW *usersub;
- ITEM **items;
- short nitems;
- ITEM *curitem;
- short toprow;
- chtype fore;
- chtype back;
- chtype grey;
- unsigned char pad;
- Menu_Hook menuinit;
- Menu_Hook menuterm;
- Menu_Hook iteminit;
- Menu_Hook itemterm;
- void *userptr;
- char *mark;
- Menu_Options opt;
- unsigned short status;
- } MENU;
- #define REQ_LEFT_ITEM (KEY_MAX + 1)
- #define REQ_RIGHT_ITEM (KEY_MAX + 2)
- #define REQ_UP_ITEM (KEY_MAX + 3)
- #define REQ_DOWN_ITEM (KEY_MAX + 4)
- #define REQ_SCR_ULINE (KEY_MAX + 5)
- #define REQ_SCR_DLINE (KEY_MAX + 6)
- #define REQ_SCR_DPAGE (KEY_MAX + 7)
- #define REQ_SCR_UPAGE (KEY_MAX + 8)
- #define REQ_FIRST_ITEM (KEY_MAX + 9)
- #define REQ_LAST_ITEM (KEY_MAX + 10)
- #define REQ_NEXT_ITEM (KEY_MAX + 11)
- #define REQ_PREV_ITEM (KEY_MAX + 12)
- #define REQ_TOGGLE_ITEM (KEY_MAX + 13)
- #define REQ_CLEAR_PATTERN (KEY_MAX + 14)
- #define REQ_BACK_PATTERN (KEY_MAX + 15)
- #define REQ_NEXT_MATCH (KEY_MAX + 16)
- #define REQ_PREV_MATCH (KEY_MAX + 17)
- #define MIN_MENU_COMMAND (KEY_MAX + 1)
- #define MAX_MENU_COMMAND (KEY_MAX + 17)
- #if defined(MAX_COMMAND)
- # if (MAX_MENU_COMMAND > MAX_COMMAND)
- # error Something is wrong -- MAX_MENU_COMMAND is greater than MAX_COMMAND
- # elif (MAX_COMMAND != (KEY_MAX + 128))
- # error Something is wrong -- MAX_COMMAND is already inconsistently defined.
- # endif
- #else
- # define MAX_COMMAND (KEY_MAX + 128)
- #endif
- extern NCURSES_EXPORT(ITEM **) menu_items (const MENU *);
- extern NCURSES_EXPORT(ITEM *) current_item (const MENU *);
- extern NCURSES_EXPORT(ITEM *) new_item (const char *,const char *);
- extern NCURSES_EXPORT(MENU *) new_menu (ITEM **);
- extern NCURSES_EXPORT(Item_Options) item_opts (const ITEM *);
- extern NCURSES_EXPORT(Menu_Options) menu_opts (const MENU *);
- extern NCURSES_EXPORT(Menu_Hook) item_init (const MENU *);
- extern NCURSES_EXPORT(Menu_Hook) item_term (const MENU *);
- extern NCURSES_EXPORT(Menu_Hook) menu_init (const MENU *);
- extern NCURSES_EXPORT(Menu_Hook) menu_term (const MENU *);
- extern NCURSES_EXPORT(WINDOW *) menu_sub (const MENU *);
- extern NCURSES_EXPORT(WINDOW *) menu_win (const MENU *);
- extern NCURSES_EXPORT(const char *) item_description (const ITEM *);
- extern NCURSES_EXPORT(const char *) item_name (const ITEM *);
- extern NCURSES_EXPORT(const char *) menu_mark (const MENU *);
- extern NCURSES_EXPORT(const char *) menu_request_name (int);
- extern NCURSES_EXPORT(char *) menu_pattern (const MENU *);
- extern NCURSES_EXPORT(void *) menu_userptr (const MENU *);
- extern NCURSES_EXPORT(void *) item_userptr (const ITEM *);
- extern NCURSES_EXPORT(chtype) menu_back (const MENU *);
- extern NCURSES_EXPORT(chtype) menu_fore (const MENU *);
- extern NCURSES_EXPORT(chtype) menu_grey (const MENU *);
- extern NCURSES_EXPORT(int) free_item (ITEM *);
- extern NCURSES_EXPORT(int) free_menu (MENU *);
- extern NCURSES_EXPORT(int) item_count (const MENU *);
- extern NCURSES_EXPORT(int) item_index (const ITEM *);
- extern NCURSES_EXPORT(int) item_opts_off (ITEM *,Item_Options);
- extern NCURSES_EXPORT(int) item_opts_on (ITEM *,Item_Options);
- extern NCURSES_EXPORT(int) menu_driver (MENU *,int);
- extern NCURSES_EXPORT(int) menu_opts_off (MENU *,Menu_Options);
- extern NCURSES_EXPORT(int) menu_opts_on (MENU *,Menu_Options);
- extern NCURSES_EXPORT(int) menu_pad (const MENU *);
- extern NCURSES_EXPORT(int) pos_menu_cursor (const MENU *);
- extern NCURSES_EXPORT(int) post_menu (MENU *);
- extern NCURSES_EXPORT(int) scale_menu (const MENU *,int *,int *);
- extern NCURSES_EXPORT(int) set_current_item (MENU *menu,ITEM *item);
- extern NCURSES_EXPORT(int) set_item_init (MENU *, Menu_Hook);
- extern NCURSES_EXPORT(int) set_item_opts (ITEM *,Item_Options);
- extern NCURSES_EXPORT(int) set_item_term (MENU *, Menu_Hook);
- extern NCURSES_EXPORT(int) set_item_userptr (ITEM *, void *);
- extern NCURSES_EXPORT(int) set_item_value (ITEM *,bool);
- extern NCURSES_EXPORT(int) set_menu_back (MENU *,chtype);
- extern NCURSES_EXPORT(int) set_menu_fore (MENU *,chtype);
- extern NCURSES_EXPORT(int) set_menu_format (MENU *,int,int);
- extern NCURSES_EXPORT(int) set_menu_grey (MENU *,chtype);
- extern NCURSES_EXPORT(int) set_menu_init (MENU *, Menu_Hook);
- extern NCURSES_EXPORT(int) set_menu_items (MENU *,ITEM **);
- extern NCURSES_EXPORT(int) set_menu_mark (MENU *, const char *);
- extern NCURSES_EXPORT(int) set_menu_opts (MENU *,Menu_Options);
- extern NCURSES_EXPORT(int) set_menu_pad (MENU *,int);
- extern NCURSES_EXPORT(int) set_menu_pattern (MENU *,const char *);
- extern NCURSES_EXPORT(int) set_menu_sub (MENU *,WINDOW *);
- extern NCURSES_EXPORT(int) set_menu_term (MENU *, Menu_Hook);
- extern NCURSES_EXPORT(int) set_menu_userptr (MENU *,void *);
- extern NCURSES_EXPORT(int) set_menu_win (MENU *,WINDOW *);
- extern NCURSES_EXPORT(int) set_top_row (MENU *,int);
- extern NCURSES_EXPORT(int) top_row (const MENU *);
- extern NCURSES_EXPORT(int) unpost_menu (MENU *);
- extern NCURSES_EXPORT(int) menu_request_by_name (const char *);
- extern NCURSES_EXPORT(int) set_menu_spacing (MENU *,int,int,int);
- extern NCURSES_EXPORT(int) menu_spacing (const MENU *,int *,int *,int *);
- extern NCURSES_EXPORT(bool) item_value (const ITEM *);
- extern NCURSES_EXPORT(bool) item_visible (const ITEM *);
- extern NCURSES_EXPORT(void) menu_format (const MENU *,int *,int *);
- #if NCURSES_SP_FUNCS
- extern NCURSES_EXPORT(MENU *) NCURSES_SP_NAME(new_menu) (SCREEN*, ITEM **);
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|