home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-26 | 1.3 KB | 38 lines | [TEXT/MMCC] |
- //------------------------------------------------------------------------------
- // File: menu.h
- // Date: 7/18/94
- // Author: Bretton Wade
- //
- // Description: this file contains declarations related to menu handling
- //
- //------------------------------------------------------------------------------
-
- #ifndef MENU
- #define MENU
-
- //------------------------------------------------------------------------------
- // constants
- //------------------------------------------------------------------------------
- const ulong kAppleMenu = 128;
- const ulong kAboutItemEvent = 1;
-
- const ulong kFileMenu = 129;
- const ulong kQuitItemEvent = 1;
-
- const ulong kEditMenu = 130;
- const ulong kUndoItemEvent = 1;
- const ulong kCutItemEvent = 3;
- const ulong kCopyItemEvent = 4;
- const ulong kPasteItemEvent = 5;
- const ulong kClearItemEvent = 6;
-
- //------------------------------------------------------------------------------
- // functions
- //------------------------------------------------------------------------------
- void InitAppMenus (void); // set up the menu bar
- bool HandleMenu (long); // handle a menu event
- void AdjustMenus (void); // adjust the menus for processing
-
- //------------------------------------------------------------------------------
-
- #endif //MENU