⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resmenu.h

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻 H
字号:
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#ifndef RESMENU_INCLUDED
#define RESMENU_INCLUDED

#include "watcom.h"

typedef uint_16             MenuFlags;
#define MENU_GRAYED         0x0001
#define MENU_INACTIVE       0x0002
#define MENU_BITMAP         0x0004
#define MENU_CHECKED        0x0008
#define MENU_POPUP          0x0010
#define MENU_MENUBARBREAK   0x0020
#define MENU_MENUBREAK      0x0040
#define MENU_ENDMENU        0x0080
#define MENU_OWNERDRAWN     0x0100
#define MENU_SEPARATOR      0x0800
#define MENU_HELP           0x4000

#define MENUEX_POPUP        0x0001
#define MENUEX_SEPARATOR    0x0800

#define MENUEX_VERSION_SIG  0x0001

#if !defined( NATURAL_PACK )
#include "pshpk1.h"
#endif

typedef struct MenuHeader {
    uint_16         Version;        /* currently 0 */
    uint_16         HeaderSize;     /* currently 0 */
} MenuHeader;

typedef struct MenuItemPopup {      /* if (ItemFlags & MENU_POPUP) */
    MenuFlags          ItemFlags;
    char              *ItemText;
} _WCUNALIGNED MenuItemPopup;

typedef struct MenuExItemPopup {
    uint_32         ItemId;
    uint_32         ItemType;
    uint_32         ItemState;
    uint_32         HelpId;
} MenuExItemPopup;

typedef struct MenuItemNormal {     /* if !(ItemFlags & MENU_POPUP) */
    MenuFlags           ItemFlags;
    uint_32             ItemID;    /* Note! This was changed from uint_16!! */
    char               *ItemText;
} _WCUNALIGNED MenuItemNormal;

typedef struct MenuExItemNormal {
    uint_32         ItemType;
    uint_32         ItemState;
} MenuExItemNormal;

typedef struct MenuItem {
    uint_8          IsPopup;
    union {
        MenuItemNormal  Normal;
        MenuItemPopup   Popup;
    } Item;
} _WCUNALIGNED MenuItem;

typedef struct MenuExItemNormalData {
    MenuItemNormal              Normal;
    MenuExItemNormal            ExData;
} MenuExItemNormalData;

typedef struct MenuExItemPopupData {
    MenuItemPopup               Popup;
    MenuExItemPopup             ExData;
} MenuExItemPopupData;

typedef struct MenuExItem {
    uint_8        IsPopup;
    union {
        MenuExItemNormalData    ExNormal;
        MenuExItemPopupData     ExPopup;
    } Item;
} MenuExItem;

#if !defined( NATURAL_PACK )
#include "poppk.h"
#endif

int ResWriteMenuItemNormal( const MenuItemNormal * curritem, uint_8 use_unicode,
                                                    WResFileID handle );
int ResWriteMenuItemPopup( const MenuItemPopup * curritem, uint_8 use_unicode,
                                            WResFileID handle );
int ResWriteMenuItem( const MenuItem * curritem, uint_8 use_unicode,
                                             WResFileID handle );
int ResWriteMenuHeader( MenuHeader * currhead, WResFileID handle );
int ResReadMenuHeader( MenuHeader * currhead, WResFileID handle );
int ResReadMenuItem( MenuItem * curritem, WResFileID handle );
int ResReadMenuItem32( MenuItem * curritem, WResFileID handle );
MenuItem * ResNewMenuItem( void );
void ResFreeMenuItem( MenuItem * olditem );
int ResReadMenuExtraBytes( MenuHeader *header, WResFileID handle,
                           char *buf );


int ResWriteMenuExHeader( MenuHeader *currhead, WResFileID handle, uint_8 *data );
int ResWriteMenuExItemPopup( const MenuItemPopup *curritem, const MenuExItemPopup *exdata,
                             uint_8 use_unicode, WResFileID handle );
int ResWriteMenuExItemNormal( const MenuItemNormal *, const MenuExItemNormal *,
                              uint_8, WResFileID );
int ResReadMenuExItem( MenuExItem *curritem, WResFileID handle );
int ResIsMenuEx( WResFileID handle );
int ResIsHeaderMenuEx( MenuHeader *hdr );
#endif

⌨️ 快捷键说明

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