TweetFollow Us on Twitter

Menu Command Unit
Volume Number:7
Issue Number:9
Column TagPascal Procedures

Related Info: Menu Manager

Menu Command Handler Unit

By David T. Craig, Kansas City, MO

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

[David has been involved with the Macintosh on the software side since its introduction in 1984. Currently he works as a Macintosh programmer for a small custom application development company in Kansas City, Kansas.]

Introduction

This unit manages menu commands in a manner similar to Apple’s MacApp “command menu” mechanism. Each application menu item should contain a unique “command number”, an integer value in the range 1 to 32767. This module scans the installed menus, parses the command numbers from each menu item, and stores the item command numbers in a table. When a menu item is selected, this module should be called to return the command number of the selected item. The parsed menu command number is also removed from the menu item.

Having each menu item define its own unique command value simplifies the job of the application programmer. Instead of using the menu id and menu item values for menu handling, the programmer needs only to use the unique command numbers. Using command numbers allows the programmer to move menu items around in the resource file without having to change the application source code. Users also benefit since they too can move menu items around via ResEdit as long as they don’t alter the item’s command number.

A menu item has a command number if the menu contains the character “#” followed by the command number. An example follows for a typical file menu (format compatible with Apple’s MPW Rez tool):

#1

“New#1”,noicon,nokey,nomark, plain;
“Open...#2”,noicon,”O”,nomark,plain;
“-”,noicon,nokey,nomark,plain;
“Quit#3”, noicon,”Q”,nomark,plain;

Note that the command number must exist at the menu item’s end.

Using this Unit

This module contains several routines which completely control access to menu command numbers.

Routine MC_Build_Menu_Command_Table builds the menu command table for an application. Call this at the start of an application after the application menus have been installed. This routine takes a pointer to a list of menu handles which define all the application menus. In Pascal a simple array of MenuHandle is adequate.

Once you are completely finished with all the menus call routine MC_UnBuild_Menu_Command_Table. This should generally be called when the application quits.

Routine MC_Fetch_Menu_Command should be called when the user selects a menu item via either the ROM MenuSelect or ROM MenuKey routines. This routine returns the command number for the selected menu item.

Routine MC_Fetch_Menu_ID_and_Item returns the menu id and item numbers for a menu command number. Once this routine is used you may use the command’s id and item numbers with the many routines supported by the Apple Menu Manager.

Routine MC_Version returns the version number and compilation date and time of this module.

Applications supporting menus that change may also use this module (MicroSoft Word is an example of an application with changing menus). Whenever the menus change you must deallocate the built menu command table and rebuild the new menu command table.

WARNING: The caller of these routines must not make any assumptions about the contents of a menu command table. This data structure, which is referenced thru a handle, must be considered off limits since its internal layout may change. Use only the public routines in this module and you will have no problems.

Unit Interface Routines
PROCEDURE MC_Version (VAR version_phrase: Str255);

PROCEDURE MC_Build_Menu_Command_Table
     (menu_list: Ptr;
      menu_count: INTEGER;
      VAR command_table: Handle;
      VAR good_build: BOOLEAN);  

PROCEDURE MC_UnBuild_Menu_Command_Table
      (VAR command_table: Handle;
       VAR good_unbuild: BOOLEAN);

PROCEDURE MC_Fetch_Menu_Command
     (command_table: Handle;
      menu_info: LONGINT;
      VAR menu_command: INTEGER);  

PROCEDURE MC_Fetch_Menu_ID_and_Item
     (command_table: Handle;
      menu_command: INTEGER;
      VAR menu_id: INTEGER;
      VAR menu_item: INTEGER);
Listing:  UMenuCommand.p

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                                                        • }
{ •     ----------------------------------------------     • }
{ •       APPLE MACINTOSH MENU COMMAND PARSER MODULE       • }
{ •     ----------------------------------------------     • }
{ •                                                        • }
{ • Author ...... David T. Craig                           • }
{ • Address ..... 736 Edgewater, Wichita, Kansas 67230     • }
{ • Date ........ 1989/1990                                • }
{ • Version ..... 1.0.0                                    • }
{ • Language .... Apple MPW and Think Pascal 3.0           • }
{ • Computer .... Apple Macintosh                          • }
{ •                                                        • }
{ • Copyright ... NOT Copyright (C) 1990 by David T. Craig • }
{ •                                                        • }
{ • PURPOSE:                                               • }
{ •                                                        • }
{ • This module manages menu commands  similar to Apple’s MacApp “command 
menu” mechanism.  • }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                                                        • }
{ •                   Modification Notes                   • }
{ •                                                        • }
{ • Originally written in Lisa Pascal on a Lisa, ported to MPW and thento 
Think Pascal.                                   • }
{ •                                                        • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •          NOT COPYRIGHT 1990 BY DAVID T. CRAIG          • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

UNIT UMenuCommand;
{ ########################################################## }
INTERFACE
{ ########################################################## }

{$DECL for_MPW}
{$SETC for_MPW:=FALSE}

{$DECL for_THINK}
{$SETC for_THINK:=TRUE}

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                    EXTERNAL MODULES                    • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{$IFC for_MPW}
USES
 MemTypes, QuickDraw, OSIntf, ToolIntf, PackIntf, Traps, PasLibIntf;
{$ENDC}

{$IFC for_THINK}
USES
 MemTypes, QuickDraw, OSIntf, ToolIntf, Packages;
{$ENDC}

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                   COMPILER DIRECTIVES                  • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

{$IFC for_MPW}
{$R+}
 { array, string, & subrange range checking [MPW PASCAL 3.0] }
{$OV+}
 { integer overflow checking [MPW PASCAL 3.0] }
{$SC+}
 { short-circuit boolean evaluation [MPW PASCAL 3.0] }
{$ENDC}

{$IFC for_THINK}
{$R+}
 { array, string,& subrange range checking [THINK PASCAL 3.0] }
{$N+}
 { routine name inclusion for debugger [THINK PASCAL 3.0] }
{$V+}
 { integer overflow checking [THINK PASCAL 3.0] }
{$ENDC}

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                PUBLIC MODULE INTERFACE                 • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
CONST
 MC_c_NoCommand = 0; { menu command value for NO COMMAND }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Version }
{ • Purpose ... Return the version number and compilation date of the 
module }
{ • Input ..... (none) }
{ • Output .... version_phrase - version number and compilation date 
info }
{ • Notes ..... Use this if you are interested in having this information. 
}
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

PROCEDURE MC_Version (VAR version_phrase: Str255);

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Build_Menu_Command_Table }
{ • Purpose ... Build a new menu command tabe from a list of menus }
{ • Input ..... menu_list     - pointer to list of menus to build from 
}
{ •             menu_count    - no. menus in the menu list }
{ • Output .... command_table - build menu command table }
{ •             good_build    - build went well flag }
{ • Notes ..... Call this routine after your application’s menus are 
defined. }
{ •             Using an array of MenuHandles for the menu list is an 
easy  way to pass the menus to this routine.  Duplicate command numbers 
are detected and result in good_build returning False. }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

PROCEDURE MC_Build_Menu_Command_Table (menu_list: Ptr; { in }
 menu_count: INTEGER; { in }
 VAR command_table: Handle; { out }
 VAR good_build: BOOLEAN); { out }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_UnBuild_Menu_Command_Table }
{ • Purpose ... Unbuild a build menu command table }
{ • Input ..... command_table - built menu command table }
{ • Output .... command_table - deallocated menu command table (=NIL) 
}
{ •             good_unbuild - unbuild process went well flag }
{ • Notes ..... This routine should be called when you are completely 
done with a menu command table. }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

PROCEDURE MC_UnBuild_Menu_Command_Table (VAR command_table: Handle;
 { in/out } VAR good_unbuild: BOOLEAN); { in }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Fetch_Menu_Command }
{ • Purpose ... Fetch the menu command command for a menu selected by 
 the ROM Menu Manager routine MenuSelect }
{ • Input ..... command_table - command table from MC_Build_Menu_Command_Table 
}
{ •             menu_info   - menu info from  ROM MenuSelect }
{ • Output .... menu_command  - selected menu command value (0=no command) 
}
{ • Notes ..... Call this routine when the user has selected a menu and 
you have called ROM MenuSelect or ROM MenuKey. }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE MC_Fetch_Menu_Command(command_table: Handle; {in}
 menu_info: LONGINT; { in }
 VAR menu_command: INTEGER); { out }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Fetch_Menu_ID_and_Item }
{ • Purpose ... Return the menu id and item numbers for a command number 
}
{ • Input ..... command_table - command table from MC_Build_Menu_Command_Table 
}
{ •             menu_command  - menu command number }
{ • Output .... menu_id       - menu id   value for the command number 
}
{ •             menu_item     - menu item value for the command number 
}
{ • Notes ..... If the command number is invalid, then menu_id and menu_item 
are set to -1, an invalid value for either of these numbers. }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE MC_Fetch_Menu_ID_and_Item(command_table:Handle;{in}
 menu_command: INTEGER; { in }
 VAR menu_id: INTEGER; { out }
 VAR menu_item: INTEGER); { out }

{ ########################################################## }
IMPLEMENTATION
{ ########################################################## }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                PRIVATE MODULE CONSTANTS                • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
CONST
 pc_module_version = ‘1.0.0’; { module version number }
 pc_command_identifier = ‘#’;{ command # character for menus}
 pc_command_num_min = 1; { min and max menu command values }
 pc_command_num_max = MAXINT;

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                PRIVATE MODULE TYPES                    • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
TYPE
 { general data types }
 pt_word = 0..MAXINT;

 { list of menu handles used indirectly by callers }
 pt_menu_list = ARRAY[1..1] OF MenuHandle;
 pt_menu_list_ptr = ^pt_menu_list;

 { menu command structure for a single menu item }
 pt_command_info = RECORD
 ci_command_number: INTEGER;{ unique command number }
 ci_menu_id: INTEGER; { menu id   number for command }
 ci_menu_item: pt_word;  { menu item number for command }
 END;

 pt_command_list = ARRAY[1..1] OF pt_command_info;

 pt_command_list_p = ^pt_command_list;
 pt_command_list_h = ^pt_command_list_p;

 { NOTE: The menu commands for all the menus in an application are stored 
as a dynamic array structure.  This structure acts just like a simple 
array, but its size may vary.  Access to the elements of this array requires 
disabling range       checking since the array from Pascal’s perspective 
contains only a single element                                     }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                                                        • }
{ •                PRIVATE MODULE ROUTINES                 • }
{ •                                                        • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... find_Command_in_Table }
{ • Purpose ... Attempt to locate a command number in a menu command 
table }
{ • Input ..... the_command_table - menu command table }
{ •             the_command       - command number to find }
{ • Output .... the_table_index   - index of found command number (0=not 
found) }
{ •             the_command_info  - info about the found command }
{ • Notes ..... Output parm the_table_index is set to 0 (zero) if the 
command number does not exist in menu command table. }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE find_Command_in_Table (the_command_table: pt_command_list_h;
 { in }
 the_command: INTEGER; { in }
 VAR the_table_index: pt_word; { out }
 VAR the_command_info: pt_command_info); { out }
 VAR
 list_size: Size; { physical byte size of command list }
 list_records: pt_word;   { no. records in command list }
 error: INTEGER;  { error result for a MemMgr call }
 BEGIN  { ---------- find_Command_in_Table ---------- }
 the_table_index := 0; { assume the command does not exist in the table 
}
 IF the_command_table <> NIL THEN
 BEGIN
 list_size := GetHandleSize(Handle(the_command_table));
 error := MemError;

 IF (error = NoErr) AND (list_size > 0) THEN
 BEGIN
 list_records := list_size DIV SIZEOF(the_command_info);

 WHILE (list_records >= 1) AND (the_table_index = 0) DO
 BEGIN
 {$PUSH}
 {$R-}
 the_command_info := the_command_table^^[list_records];
 {$POP}

 IF the_command = the_command_info.ci_command_number THEN
 BEGIN
 the_table_index := list_records; 
 { !!! GOTCHA !!! }
 END;

 list_records := list_records - 1;
 END; { WHILE list_records }
 END;
 END;
 END;   { ---------- find_Command_in_Table ---------- }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... add_Command_to_CmdList }
{ • Purpose ... Add a single menu command structure to the end of an 
}
{ •             existing menu command table }
{ • Input ..... the_command_table  - menu command table }
{ •             the_menu_id        - menu id   value }
{ •             the_menu_item      - menu item value }
{ •             the_command_number - menu command number }
{ • Output .... the_error          - error result }
{ • Notes ..... Command table must already exist for this routine to 
work. }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE add_Command_to_CmdList (the_command_table: pt_command_list_h;
 the_menu_id: INTEGER;
 the_menu_item: pt_word;
 the_command_number: INTEGER;
 VAR the_error: INTEGER);
 VAR
 command_to_add: pt_command_info;{info about command toadd}
 list_size: Size; { physical byte size of command list }
 list_records: pt_word;  { no. records in command list }
 BEGIN  { ---------- add_Command_to_CmdList ---------- }
 the_error := NoErr;

 IF the_command_table = NIL THEN
 the_error := NILHandleErr
 ELSE
 BEGIN
{ setup the command info to actually add to the table end }
 command_to_add.ci_command_number := the_command_number;
 command_to_add.ci_menu_id := the_menu_id;
 command_to_add.ci_menu_item := the_menu_item;

 { grow the table by one record for the addition }
 list_size := GetHandleSize(Handle(the_command_table));
 the_error := MemError;

 IF the_error = NoErr THEN
 BEGIN
 list_size := list_size + SIZEOF(command_to_add);
 SetHandleSize(Handle(the_command_table), list_size);
 the_error := MemError;

{ store the command info record at the end of the table }
 IF the_error = NoErr THEN
 BEGIN
 list_records := list_size DIV SIZEOF(command_to_add);

 {$PUSH}
 {$R-}
 the_command_table^^[list_records] := command_to_add;
 {$POP}
 END;
 END;
 END;
 END;   { ---------- add_Command_to_CmdList ---------- }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                                                        • }
{ •                PUBLIC MODULE ROUTINES                  • }
{ •                                                        • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Version }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE MC_Version (VAR version_phrase: Str255);
 VAR
 comp_stuff: STRING[63]; { compilation date and time info }
 BEGIN  { ---------- MC_Version ---------- }
{ NOTE: COMPDATE and COMPTIME contain the compilation date and time as 
strings.  These are both built into MPW Pascal and THINK Pascal.  MPW 
treats them as string constants while THINK treats them as string functions. 
          }

 comp_stuff := CONCAT(‘[‘, COMPDATE, ‘ -- ‘, COMPTIME, ‘]’);

 version_phrase := CONCAT(pc_module_version, ‘ ‘, comp_stuff);
 END;   { ---------- MC_Version ---------- }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Build_Menu_Command_Table }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE MC_Build_Menu_Command_Table (menu_list: Ptr;
 menu_count: INTEGER;
 VAR command_table: Handle;
 VAR good_build: BOOLEAN);
 VAR
 menu_index: pt_word;{ menuhandle list indexer }
 menu_list_ptr: pt_menu_list_ptr;  { menu list pointer }
 menu_stuff: MenuHandle; { single entry from menu list }
 menu_id: INTEGER; { menu id  value from menu list entry }
 menu_item: pt_word; {menuitem value from menu list entry}
 menu_phrase: Str255; { phrase for a single menu item }
 command_identifier: STRING[1];    { command identifier character }
 command_position: pt_word; { position of command identifier in item 
}
 command_phrase: Str255; { menu command number phrase (eg: “203”) }
 command_number: LONGINT; { command number value (long) }
 command_value: INTEGER; { command number value (word) }
 table_index: pt_word; { menu command table index of a command }
 command_info: pt_command_info; { information about a single menu command 
}
 good_unbuild: BOOLEAN;  { deallocating menu command table result }
 error: INTEGER; { internal error result }
 BEGIN  { ------ MC_Build_Menu_Command_Table ------ }
 command_table := NIL;
 good_build := FALSE;

 IF menu_count >= 1 THEN
 BEGIN
 command_table := NewHandle(0);
 error := MemError;

 IF error = NoErr THEN
 BEGIN
 good_build := TRUE; { assume all will go well from now on }

 menu_index := 0;

 { scan each of the menu handles }
 REPEAT
 BEGIN
 menu_index := menu_index + 1;

 menu_list_ptr := pt_menu_list_ptr(menu_list);

 {$PUSH}
 {$R-}
 menu_stuff := menu_list_ptr^[menu_index];
 {$POP}

 IF menu_stuff <> NIL THEN
 BEGIN
 command_identifier := ‘?’;
 command_identifier[1] := pc_command_identifier;

{ scan the menu items in the current menu handle }
 menu_id := menu_stuff^^.MenuID;
 menu_item := 0;

 REPEAT
 BEGIN
 menu_item := menu_item + 1;
 GetItem(menu_stuff, menu_item, menu_phrase);

 IF LENGTH(menu_phrase) >= 2 THEN
 BEGIN
 command_position := POS(command_identifier, menu_phrase);

 IF command_position > 0 THEN
 BEGIN
 command_phrase := COPY(menu_phrase, command_position, LENGTH(menu_phrase) 
- command_position + 1);
 DELETE(command_phrase, 1, 1);

 DELETE(menu_phrase, command_position, LENGTH(menu_phrase) - command_position 
+ 1);

 SetItem(menu_stuff, menu_item, menu_phrase);

 WHILE POS(‘ ‘, command_phrase) > 0 DO
 DELETE(command_phrase, POS(‘ ‘, command_phrase), 1);

 StringToNum(command_phrase, command_number);

 command_value := LoWord(command_number);

 IF (command_value < pc_command_num_min) OR (command_value > pc_command_num_max) 
THEN
 good_build := FALSE
 ELSE
 BEGIN
 { command value is valid, now check for duplication }
 find_Command_in_Table( pt_command_list_h(command_table), command_value, 
table_index, command_info);

 IF table_index > 0 THEN
 good_build := FALSE  { !!! DUPLICATE !!! }
 ELSE
 BEGIN
 add_Command_to_CmdList (pt_command_list_h(command_table), menu_id, menu_item, 
command_value, error);

 IF error <> NoErr THEN
 good_build := FALSE;
 END;
 END;
 END;
 END;
 END;
 UNTIL (menu_phrase = ‘’) OR NOT (good_build);
 END;

 IF error <> NoErr THEN
 good_build := FALSE;
 END;
 UNTIL (menu_index >= menu_count) OR (error <> NoErr);
 END;
 END;

 IF NOT (good_build) AND (command_table <> NIL) THEN
 BEGIN
 MC_UnBuild_Menu_Command_Table(command_table, good_unbuild);
 END;
 END;   { ------ MC_Build_Menu_Command_Table ------ }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_UnBuild_Menu_Command_Table }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE MC_UnBuild_Menu_Command_Table (VAR command_table: Handle; VAR 
good_unbuild: BOOLEAN);
 VAR
 error: INTEGER;
 BEGIN  { ------ MC_UnBuild_Menu_Command_Table ------ }
 good_unbuild := TRUE;

 IF command_table = NIL THEN
 good_unbuild := FALSE
 ELSE
 BEGIN
 DisposHandle(command_table);
 error := MemError;

 IF error <> NoErr THEN
 good_unbuild := FALSE;

 command_table := NIL;
 END;
 END;   { ------ MC_UnBuild_Menu_Command_Table ------ }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Fetch_Menu_Command }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE MC_Fetch_Menu_Command (command_table: Handle;
 menu_info: LONGINT;
 VAR menu_command: INTEGER);
 TYPE
 t_menu_selection = RECORD
 ms_menu_id: INTEGER;
 ms_menu_item: INTEGER;
 END;
 VAR
 menu_selection: t_menu_selection; { info about selected menu item }
 cmd_table: pt_command_list_h;{ menu command table }
 command_info: pt_command_info;    { menu command info }
 list_size: Size; { physical byte size of command list }
 list_records: pt_word;  { no. records in command list }
 BEGIN  { ---------- MC_Fetch_Menu_Command ---------- }
 { assume the command will NOT be found }
 menu_command := MC_c_NoCommand;

 { determine the selected menu ID and menu ITEM }
 menu_selection := t_menu_selection(menu_info);

 IF command_table <> NIL THEN
 BEGIN
 cmd_table := pt_command_list_h(command_table);
 list_size := GetHandleSize(command_table);
 list_records := list_size DIV SIZEOF(command_info);

 WHILE list_records >= 1 DO
 BEGIN
 {$PUSH}
 {$R-}
 command_info := cmd_table^^[list_records];
 {$POP}

 WITH menu_selection, command_info DO
 IF (ms_menu_id = ci_menu_id) AND (ms_menu_item = ci_menu_item) THEN
 BEGIN
 menu_command := ci_command_number; { !!! GOTCHA !!! }
 END;

 list_records := list_records - 1;
 END; { WHILE list_records }
 END;
 END;   { ---------- MC_Fetch_Menu_Command ---------- }

{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ • Routine ... MC_Fetch_Menu_ID_and_Item }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
PROCEDURE MC_Fetch_Menu_ID_and_Item (command_table: Handle;    { in }
 menu_command: INTEGER; { in }
 VAR menu_id: INTEGER; { out }
 VAR menu_item: INTEGER); { out }
 VAR
 command_info: pt_command_info;  { menu command info }
 table_index: pt_word; { index of command in menu command table }
 BEGIN  { ---------- MC_Fetch_Menu_ID_and_Item ---------- }
 { assume no command match will occur }
 menu_id := -1;
 menu_item := -1;

 { attempt to locate the inputted command in the menu command table }
 IF command_table <> NIL THEN
 BEGIN
 find_Command_in_Table(pt_command_list_h(command_table), menu_command, 
table_index, command_info);
 IF table_index >= 1 THEN
 BEGIN
{ command found in table --> return command’s menu stuff }
 menu_id := command_info.ci_menu_id;
 menu_item := command_info.ci_menu_item;
 END;
 END;
 END;   { ---------- MC_Fetch_Menu_ID_and_Item ---------- }
END.  { UNIT UMenuCommand }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }
{ •                                                        • }
{ •                          FINIS                         • }
{ •                                                        • }
{ •••••••••••••••••••••••••••••••••••••••••••••••••••••••••• }

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Go from lowly lizard to wicked Wyvern in...
Do you like questing, and do you like dragons? If not then boy is this not the announcement for you, as Loongcheer Game has unveiled Quest Dragon: Idle Mobile Game. Yes, it is amazing Square Enix hasn’t sued them for copyright infringement, but... | Read more »
Aether Gazer unveils Chapter 16 of its m...
After a bit of maintenance, Aether Gazer has released Chapter 16 of its main storyline, titled Night Parade of the Beasts. This big update brings a new character, a special outfit, some special limited-time events, and, of course, an engaging... | Read more »
Challenge those pesky wyverns to a dance...
After recently having you do battle against your foes by wildly flailing Hello Kitty and friends at them, GungHo Online has whipped out another surprising collaboration for Puzzle & Dragons. It is now time to beat your opponents by cha-cha... | Read more »
Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »

Price Scanner via MacPrices.net

13-inch M2 MacBook Airs in stock today at App...
Apple has 13″ M2 MacBook Airs available for only $849 today in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty is included,... Read more
New today at Apple: Series 9 Watches availabl...
Apple is now offering Certified Refurbished Apple Watch Series 9 models on their online store for up to $80 off MSRP, starting at $339. Each Watch includes Apple’s standard one-year warranty, a new... Read more
The latest Apple iPhone deals from wireless c...
We’ve updated our iPhone Price Tracker with the latest carrier deals on Apple’s iPhone 15 family of smartphones as well as previous models including the iPhone 14, 13, 12, 11, and SE. Use our price... Read more
Boost Mobile will sell you an iPhone 11 for $...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering an iPhone 11 for $149.99 when purchased with their $40 Unlimited service plan (12GB of premium data). No trade-in is required... Read more
Free iPhone 15 plus Unlimited service for $60...
Boost Infinite, part of MVNO Boost Mobile using AT&T and T-Mobile’s networks, is offering a free 128GB iPhone 15 for $60 per month including their Unlimited service plan (30GB of premium data).... Read more
$300 off any new iPhone with service at Red P...
Red Pocket Mobile has new Apple iPhones on sale for $300 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, available for $759 for 8-Core CPU/7-Core GPU/256GB models and $929 for 8-Core CPU/8-Core GPU/512GB models. Apple’s one-year warranty is... Read more
Updated Apple MacBook Price Trackers
Our Apple award-winning MacBook Price Trackers are continually updated with the latest information on prices, bundles, and availability for 16″ and 14″ MacBook Pros along with 13″ and 15″ MacBook... Read more
Every model of Apple’s 13-inch M3 MacBook Air...
Best Buy has Apple 13″ MacBook Airs with M3 CPUs in stock and on sale today for $100 off MSRP. Prices start at $999. Their prices are the lowest currently available for new 13″ M3 MacBook Airs among... Read more
Sunday Sale: Apple iPad Magic Keyboards for 1...
Walmart has Apple Magic Keyboards for 12.9″ iPad Pros, in Black, on sale for $150 off MSRP on their online store. Sale price for online orders only, in-store price may vary. Order online and choose... Read more

Jobs Board

Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
DMR Technician - *Apple* /iOS Systems - Haml...
…relevant point-of-need technology self-help aids are available as appropriate. ** Apple Systems Administration** **:** Develops solutions for supporting, deploying, Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.