TweetFollow Us on Twitter

Sprocket Menus 1
Volume Number:11
Issue Number:5
Column Tag:Getting Started

Sprocket Menus, Part 1

By Dave Mark, MacTech Magazine Regular Contributing Author

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

My February ’93 Getting Started column featured a program called MenuMaster. MenuMaster constructed a menu bar consisting of four menus: The traditional Apple, File, and Edit menus, as well as a special Options menu (Figure 1). Selecting the first item changes it from Change My Name to Change Me Back Again. Selecting the first item again changes it back to Change My Name.

Selecting Disable Me disables the second item and enables the third item. If you then select the newly enabled Enable Previous Item, it gets disabled and Disable Me is reenabled.

If you select Add Extra Menu, a new menu is inserted in the menu bar and Add Extra Menu is disabled. The new menu, titled Extra Menu, features a single item, Delete Me. Selecting Delete Me deletes the extra menu from the menu bar and reenables Add Extra Menu.

Finally, selecting Append Item adds an extra item (Can’t Delete Me...) to the end of the menu. As its names implies, there’s no way to delete this extra item.

Fig. 1. MenuMaster’s Options menu.

A Sprocket Version of MenuMaster

This month we’re going to use Sprocket to implement most of MenuMaster’s functionality. We’ll skip the ability to append an item to the end of a menu for two reasons. First, appending a single item to the end of a menu just isn’t done that often and isn’t particularly useful. More importantly (and probably for the same reason), Sprocket doesn’t give you an easy way to append a new item to a menu.

If you come up with a good reason to add this functionality to Sprocket (or if you have any comments or bugs to report), send e-mail to sprocket@hax.com.

As I mentioned last month, Sprocket based its menu-handling model on that used by OpenDoc. At the heart of this model is a replacement for the MENU resource type. A CMNU resource is just like a MENU resource, with one important addition. Each menu item features a command number. You’ll use this command number to refer to the item, instead of the more traditional method of specifying the menu the item belongs to, along with the item’s position in the menu (e.g., menu 129, item 4).

Figure 2. The CMNU resource, featuring a Cmd-Num field for each menu item.

Check out the ResEdit snapshot in Figure 2. It shows the CMNU resource that represents our new Options menu. The first menu item, Change My Name, is selected. The command number for this item is 1000. When the user selects this item, Sprocket will pass the associated command number (in this case, 1000) as a parameter to the routine HandleMenuCommand() (it’s in the file SprocketStarter.cp). Instead of creating a separate item dispatch routine for each menu (HandleAppleMenu(), HandleFileMenu(), etc.), you’ll create a single switch statement containing cases for all your commands.

Sprocket automatically creates a menu bar at application startup. In C++ terms, Sprocket constructs a TMenuBar object, which is implemented in the files TMenuBar.cp and TMenuBar.h. Here’s the TMenuBar class definition:

class TMenuBar
 {
public:
Resource ('MBAR' and 'CMNU') Utilities
 
 OSErr  GetNewMenuBar(short whichMBAR);
 MenuRefGetMenuFromCMNU(short whichMenu);
Menu command mapping functions

 MenuCommandID   GetCommand(MenuID menu, MenuItemID item);
 void   GetMenuAndItem(MenuCommandID commandNum, 
 MenuID * returnedMenu, MenuItemID * returnedItem);
 OSErr  RegisterCommand(  MenuCommandID commandNum, 
   MenuID menu, MenuItemID item);
 OSErr  UnregisterCommand(MenuCommandID commandNum);
Menu enable/disable routines for menu items

 void   EnableCommand(MenuCommandID commandNum, 
 Boolean enable);
 void   EnableAndCheckCommand(MenuCommandID commandNum, 
 Boolean enable, Boolean check);
 void   GetItemString(MenuCommandID commandNum,
 StringPtr itemString);
 void   SetItemString(MenuCommandID commandNum,
 StringPtr itemString);
helpful utility functions
 void   HideMenuBar();
 void   ShowMenuBar();
 void   RedrawIfNeeded();
 void   Invalidate();
 void   Validate();

private:
"globals"
 static Boolean  fgMenuBarNeedsRedraw;
 static Boolean  fgMenuBarHidden;
mapping tables
 TMenuCommandTable fCommandTable;
 TMenuItemTable  fMenuItemTable;
internal methods
 MenuHandle GetMenuHandleAndItemFromCommand(
 MenuCommandID commandNum, 
 MenuID *menu,MenuItemID *item);
 };

The first member function, GetNewMenuBar() uses the specified MBAR resource to build a new menu bar. Though this version of Sprocket only creates a single menu bar, this might not be the case in the future. For now, a pointer to the menu bar object is stored in the global gMenuBar. Take a minute to open up the file SprocketMain.cp and check out the code around line 363. This is where Sprocket creates the TMenuBar object based on the MBAR resource in SprocketStarter.rsrc.

The member function GetMenuFromCMNU() loads a CMNU resource and walks through it, one item at a time. It builds a traditional menu structure, passing each item’s command number to the RegisterCommand() member function, which adds the command to Sprocket’s menu command table. If you are going to take advantage of Sprocket’s menu command mechanism, you must register your menu item commands. If you base your menus on a CMNU resource, GetMenuFromCMNU() will register your menu items automatically. If the menus in your MBAR resource correspond to a CMNU resource, Sprocket will register the menu items automatically.

If you don’t want to use a CMNU resource, you can still add and delete your menus to and from the global menu bar yourself. For example, since a font or size menu will have a dynamic number of items, the CMNU resource just doesn’t make sense. We’ll look at that process in a future column.

The member function GetCommand() takes a menu and item ID and returns the associated command. GetMenuAndItem() takes a command and returns the associated menu and item ID.

If you want to delete a menu whose commands have been registered, you can use the UnregisterCommand() member function to, one-at-a-time, unregister the commands in that menu. Otherwise, you’ll orphan commands in the command table.

EnableCommand() and EnableAndCheckCommand() let you enable, disable, check, and uncheck a menu command. GetItemString() and SetItemString() allow you to retrieve and set an items name using its command.

HideMenuBar() and ShowMenuBar() let you hide and show the menu bar (what a concept!). Invalidate() marks the menu bar as needing to be redrawn. Validate() sets the menu bar as up to date. RedrawIfNeeded() redraws the menu bar if the invalid flag has been set. Note that RedrawIfNeeded() is called in Sprocket’s main event loop, so there’s no need for you to call it yourself.

This Month’s Resources

Sprocket gets its resources from four different resource files. CreditsBox.rsrc contains the resources used to build the Sprocket about box. StandardMenus.rsrc contains some standard MENU and CMNU resources. If you want to change any of these menus, copy the appropriate resource from StandardMenus.rsrc into SprocketStarter.rsrc and delete the original from StandardMenus.rsrc. Modify the version you copied into SprocketStarter.rsrc.

Sprocket.rsrc contains various resources used by Sprocket and should not be modified. SprocketStarter.rsrc is your resource center. Put all the resources you add to Sprocket there.

You’ll need to modify one resource and add three new ones to SprocketStarter.rsrc. First, open up MBAR 128 and add menu ID 1000 to the list already in place.

If you’re not using Projector (the sourced code control system), you might want to delete the ckid resources you’ll find in each of the resource files. That will get rid of the annoying link error complaining about the multiply-defined resource.

Next, you’ll create your three CMNU resources. The first represents the Options menu we want to add to the end of the menu bar. In general, when you add a new resource to Sprocket, you’ll start numbering your resources from 1000, instead of at 128 the way you normally would. This is just a convention, and might change as Sprocket grows up.

When you create CMNU 1000, be sure to change the resource ID in both places: once in the “Get Info” box and also in the “Edit Menu and MDEF ID” dialog.

Figure 3. CMNU 1000

Enter a command number of 1000 for the item Change My Name, 1001 for Disable Me, 1002 for Enable Previous Item, 1003 for Add Extra Menu, and 1004 for Beeps. Next, disable the item Enable Previous Item. After that, click on the Beeps item, check the has SubMenu checkbox and enter 100 as the submenu ID (Figure 4). Since submenu IDs are limited to a single byte, we won’t be able to give the submenu CMNU resource an ID greater than 1000. So much for sticking to conventions!

Figure 4. The Beeps item, with its submenu ID of 100 entered.

Next, create a new CMNU resource with an ID of 1001 (Once again, be sure to change the ID in both places). The menu will have a title of Extra Menu and a single item, Delete This Menu. Give the item Delete This Menu a command of 1007 (Figure 5).

Figure 5. CMNU 1001

Finally, create a CMNU resource with an ID of 100. Add two items, Beep Once with a command ID of 1005 and Beep Twice with a command ID of 1006 (Figure 6).

Figure 6. CMNU 100.

Save your changes and quit your resource editor.

Modifying the Source Code

Now launch CodeWarrior or Symantec C++ and edit SprocketStarter.h. Start by adding this global reference to the file:

extern Boolean   gItemNameChanged;

gItemNameChanged is a Boolean that indicates whether the item Change My Name has been selected. It tells us whether the item should read Change My Name or Change Me Back Again.

Next, add this enum to the file:

enum
{
 mSubMenu = 100,
 mExtraMenu = 1001,
 
 cChangeName= 1000,
 cDisableMe = 1001,
 cEnablePrevious = 1002,
 cAddExtraMenu   = 1003,
 cBeeps = 1004,
 cBeepOnce= 1005,
 cBeepTwice = 1006,
 cDeleteExtraMenu= 1007
};

The first two constants specify the two CMNU resource IDs. The next 8 specify the menu command IDs. Notice that the menu constants start with a lower case “m” and the commands start with a lower case “c”. Unfortunately, the Apple event registry starts all its class names with a lower-case “c”, so be on the lookout for name collisions.

Next, add these three constants to the file:

const StringPtr kUnchangedName = "\pChange My Name";
const StringPtr kChangedName = "\pChange Me Back Again";
const short kLastMenu = 0;

The first two are just Pascal strings we used for the menu names. We really should have implemented these strings as ‘STR ’ resources to make the code easier to localize. In general, I try never to specify strings in code, but I guess I was just feeling a bit lazy.

The last constant will be used in our call of InsertMenu(), telling InsertMenu() to insert the menu at the end of the menu bar.

Next, edit the file SprocketStarter.cp. Start by adding this global definition at the top of the file:

Boolean gItemNameChanged = false;

Next, add these three lines to the beginning of the routine SetUpApplication():

MenuRef hierMenu;

hierMenu = gMenuBar->GetMenuFromCMNU( mSubMenu );
InsertMenu( hierMenu, -1 ); 

GetMenuFromCMNU() loads CMNU 100, registers all the commands, and returns a MenuHandle to a standard menu based on the CMNU resource. InsertMenu() inserts the resulting menu in the menu bar.

Finally, add the cases to handle our new commands to the switch in HandleMenuCommand() further down in SprocketStarter.cp. Here’s my edited copy of HandleMenuCommand():

HandleMenuCommand
void
HandleMenuCommand(MenuCommandID theCommand)
 {
 MenuRefextraMenu;
 OSErr  err;
 
 switch (theCommand)
 {
 case cAbout:
 AboutBox();
 break;
 
 case cNew:
 CreateNewDocument();
 break;
 
 case cOpen:
 OpenExistingDocument();
 break;
 
 case cPreferences:
 TPreferencesDialogWindow * prefsDialog = 
 new TPreferencesDialogWindow;
 break;
 
#ifqAOCEAware
 case cNewMailableWindow:
 TMailableDocWindow *aWackyThing = new TMailableDocWindow;
 break;
#endif

Here come the new commands. This first one switches the first menu item between Change My Name and Change Me Back Again. Notice that we’re using the global TMenuBar object to change the menus. If Sprocket ever gets modified to use more than one menu bar, we’ll have to modify this code to be sure we use the menu bar that contains the menu we want to work with. Of course, if that happens, you can count on some sample code in this column to show you how to do that.

 case cChangeName:
 if ( gItemNameChanged )
 gMenuBar->SetItemString( cChangeName, kUnchangedName );
 else
 gMenuBar->SetItemString( cChangeName, kChangedName );
 gItemNameChanged = ! gItemNameChanged;
 break;

This command disables Disable Me and enables Enable Previous Item.

 case cDisableMe:
 gMenuBar->EnableCommand( cDisableMe, false );
 gMenuBar->EnableCommand( cEnablePrevious, true );
 break;

This command does just the opposite.

 case cEnablePrevious:
 gMenuBar->EnableCommand( cDisableMe, true );
 gMenuBar->EnableCommand( cEnablePrevious, false );
 break;

This command disables the item that spawned this command in the first place (Add Extra Menu), then builds a new menu from the extra menu CMNU resource. We add the new menu to the end of the menu bar, then call Invalidate() to force the menu bar to get redrawn.

 case cAddExtraMenu:
 gMenuBar->EnableCommand( cAddExtraMenu, false );
 extraMenu = gMenuBar->GetMenuFromCMNU( mExtraMenu );
 InsertMenu( extraMenu, kLastMenu );

 gMenuBar->Invalidate();
 break;

This command deletes the extra menu we added with the previous command. First, we reenable the Add Extra Menu item. Notice that we didn’t have to retrieve the menu that this item belongs to. All we needed was the command. This definitely makes life a lot simpler.

 case cDeleteExtraMenu:
 gMenuBar->EnableCommand( cAddExtraMenu, true );

Since the TMenuBar class doesn’t support a DeleteCMNU() method, we’ll have to deregister the command by hand. A DeleteCMNU() method would step through all the items in the specified menu, calling UnregisterCommand() for each item. It would then delete the menu for us. Since our extra menu only contains a single item, it’s no big deal to do this by hand. Once we are done, we’ll force a menu bar redraw. Look for a DeleteCMNU() method in a future version of Sprocket.

 err = gMenuBar->UnregisterCommand( cDeleteExtraMenu );
 DeleteMenu( mExtraMenu );
 
 gMenuBar->Invalidate();
 break;

This next command corresponds to the parent menu of our hierarchical submenu. Normally, this command will never get called because the menu manager won’t detect a selection of the parent item of a submenu (Figure 7). There are times when this is useful, however. For example, imagine if you built a menu of applications, where each application item had a submenu listing some frequently used documents that can be opened by that application (NowMenus does this). If you select a document from a submenu, its parent application gets launched and opens the selected document. If you release the mouse with the application selected (without selecting a document from the submenu), you might want to launch the application without specifying a document.

The point here is this: Specify commands for all your menu items, even the hierarchical parent menus. A future version of Sprocket might include a workaround to execute commands associated with these currently orphaned items.

 case cBeeps:
 break;

Figure 7. A menu item with its submenu showing.
If the mouse button was released at this point, the Beeps item
(rather than either of the submenu items) would be selected.

These next two items are horribly technical. They beep either once or twice, depending on the item selected.

 case cBeepOnce:
 SysBeep( 20 );
 break;
 case cBeepTwice:
 SysBeep( 20 ); SysBeep( 20 );
 break;
 default:
 break;
 }
 }

Till Next Month

There are still some concepts that we need to get into regarding Sprocket and menus. For example, when do you make the decision about which menu items you will enable and disable to ensure that things are set up correctly before a user makes a selection from a menu. How should the frontmost window affect which menu items are enabled or disabled? We’ll explore these important issues in next month’s column. See you then!

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
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
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and 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.