TMainMenu - managing Help and Search menu items

208 Views Asked by At

Running my Firemonkey app in OSX, a Search box automatically appears on my last menu item, which I have labeled "Help." So far so good, because a Help menu with a Search box is standard for OSX.

Next, I needed to add a help file. I purchased an impressive utility Help Crafter with which I very quickly and easily made an Apple HelpBook. I placed the HelpBook bundle into the Resources folder of my main app. I then used Project|Options|Version Info in the IDE to edit the Info.plist file. I added two keys CFBundleHelpBookFolder and CFBundleHelpBookName to Info.plist to point to my HelpBook.

Running my app, I now found I had two Help menu items -- the item I had programmed and another apparently automatically created by the Mac OS, complete with a submenu item that brings up my HelpBook. To my amazement, I now had working help without any coding whatsoever.

Next, I wanted to remove the Help menu item I had created in order to eliminate the duplication. But the Search box was still located under my Help menu item, not on the Help menu item created by the OS. And when I deleted my Help menu item, the Search box relocated to what was now the last menu item created by me.

  1. How can I specify that the Search box should be located on the OS-created Help menu item?

  2. Alternatively, can I specify that the OS should not automatically create a Help menu item (so that I can create it myself)? In that case, I should also need to know how to program the loading of the HelpBook.

  3. If I stick with the OS-created Help menu item, how can I add additional submenu items to it?

It appears from Apple documentation that the Help and Search functions are provided by the OS when a HelpBook has been registered. But the two functions are supposed to be on the same menu item. I am wondering if this may be a Firemonkey bug that they are being split up.

1

There are 1 best solutions below

0
On

There were three parts to my question above. I have had no luck with 1 and 3, but I have a partial solution to 2.

To prevent the OS automatically creating a Help menu, it was only necessary to delete the CFBundleHelpBookFolder and CFBundleHelpBookName keys in Info.plist. The registering of the HelpBook was then accomplished in FormCreate with:

var
{$IFDEF MACOS}
  HelpBundle: NSBundle;
  AppBundle: NSBundle;
  Path: string;
  HelpReg: Boolean;
{$ENDIF}
begin
{$IFDEF MACOS}
  HelpMgr := TNSHelpManager.Create; // HelpMgr declared as a global variable
  AppBundle := TNSBundle.Wrap(TNSBundle.OCClass.mainBundle);
  Path := AppBundle.bundlePath.UTF8String +
    '/Contents/Resources/MyAppHelp.help';
  HelpBundle := TNSBundle.Wrap(TNSBundle.OCClass.bundleWithPath(StrToNSSTR(Path)));
  HelpReg := HelpMgr.registerBooksInBundle(HelpBundle);
  if not(HelpReg) then
    ShowMessage('Failed to register Help Book');
{$ENDIF}

To open the HelpBook, I placed the following code in the OnClick event of the appropriate submenu item (i.e. Help| MyApp Help):

HelpMgr.openHelpAnchor(StrToNSSTR('Page0'), 
        StrToNSSTR('com.mycompany.myapp.help'));

This approach resulted in the Spotlight for Help field being added automatically to the Help menu. Unfortunately, Spotlight for Help doesn't index my HelpBook anymore. With the approach I had first tried (using Info.plist as described in my original post), Spotlight for Help did index my HelpBook but, as I reported, the Spotlight field was created on my last menu item and Help was on a new menu item created automatically by the OS, which while functional is non-standard.