1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/* $Id: menu.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
/*
* w3m menu.h
*/
#ifndef MENU_H
#define MENU_H
#define MENU_END 0
#define MENU_NOP 1
#define MENU_VALUE 2
#define MENU_FUNC 4
#define MENU_POPUP 8
#define MENU_NOTHING -1
#define MENU_CANCEL -2
#define MENU_CLOSE -3
typedef struct _MenuItem {
int type;
char *label;
int *variable;
int value;
void (*func) ();
struct _Menu *popup;
char *keys;
char *data;
} MenuItem;
typedef struct _Menu {
struct _Menu *parent;
int cursorX;
int cursorY;
int x;
int y;
int width;
int height;
int nitem;
MenuItem *item;
int initial;
int select;
int offset;
int active;
int (*keymap[128]) (char c);
int keyselect[128];
} Menu;
typedef struct _MenuList {
char *id;
Menu *menu;
MenuItem *item;
} MenuList;
#endif /* not MENU_H */
|