menu.h

来自「这是一个开放源代码的与WINNT/WIN2K/WIN2003兼容的操作系统」· C头文件 代码 · 共 64 行

H
64
字号
/* ------------ menu.h ------------- */

#ifndef MENU_H
#define MENU_H

#define DF_MAXPULLDOWNS 15
#define DF_MAXSELECTIONS 20
#define DF_MAXCASCADES 3  /* nesting level of cascaded menus */

/* ----------- popdown menu selection structure
       one for each selection on a popdown menu --------- */
struct DfPopDown {
    char *SelectionTitle;  /* title of the selection */
    int ActionId;          /* the command executed        */
    int Accelerator;       /* the accelerator key         */
    int Attrib;  /* DF_INACTIVE | DF_CHECKED | DF_TOGGLE | DF_CASCADED*/
    char *help;            /* Help mnemonic               */
};

/* ----------- popdown menu structure
       one for each popdown menu on the menu bar -------- */
typedef struct DfMenu {
    char *Title;           /* title on the menu bar       */
    void (*PrepMenu)(void *, struct DfMenu *); /* function  */
	char *StatusText;      /* text for the status bar     */
	int CascadeId;   /* command id of cascading selection */
    int Selection;         /* most recent selection       */
    struct DfPopDown Selections[DF_MAXSELECTIONS+1];
} DF_MENU;

/* ----- one for each menu bar ----- */
typedef struct DfMenuBar {
	int ActiveSelection;
	DF_MENU PullDown[DF_MAXPULLDOWNS+1];
} DF_MBAR;

/* --------- macros to define a menu bar with
                 popdowns and selections ------------- */
#define DF_SEPCHAR "\xc4"
#define DF_DEFMENU(m) DF_MBAR m = {-1,{
#define DF_POPDOWN(ttl,func,stat)     {ttl,func,stat,-1,0,{
#define DF_CASCADED_POPDOWN(id,func)  {NULL,func,NULL,id,0,{
#define DF_SELECTION(stxt,acc,id,attr)   {stxt,acc,id,attr,#acc},
#define DF_SEPARATOR                     {DF_SEPCHAR},
#define DF_ENDPOPDOWN                    {NULL}}},
#define DF_ENDMENU                {(void *)-1} }};

/* -------- menu selection attributes -------- */
#define DF_INACTIVE    1
#define DF_CHECKED     2
#define DF_TOGGLE      4
#define DF_CASCADED    8

/* --------- the standard menus ---------- */
extern DF_MBAR DfMainMenu;
extern DF_MBAR DfSystemMenu;
extern DF_MBAR *DfActiveMenuBar;

int DfMenuHeight(struct DfPopDown *);
int DfMenuWidth(struct DfPopDown *);

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?