Difference between revisions of "Mac Preferences and About Menu"

From Lazarus wiki
Jump to navigationJump to search
(Expanded content and updated out of date images)
(Added missing details to complete the macOS app menu example)
Line 24: Line 24:
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
 
     procedure TForm1.FormCreate(Sender: TObject);
 
     procedure TForm1.FormCreate(Sender: TObject);
 +
    var
 +
          AppMenu : TMenuItem;
 
     begin
 
     begin
           MenuItem1.Caption := #$EF#$A3#$BF; //Unicode Apple logo char
+
           AppMenu := TMenuItem.Create(Self); // Application menu
 +
          AppMenu.Caption := #$EF#$A3#$BF;   // Unicode Apple logo char
 +
          MainMenu.Items.Insert(0, AppMenu);
 
     end;  
 
     end;  
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 46: Line 50:
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
 
     procedure TForm1.FormCreate(Sender: TObject);
 
     procedure TForm1.FormCreate(Sender: TObject);
 +
    var
 +
          AppMenu : TMenuItem;
 
     begin
 
     begin
 
           Application.Title := 'My App';
 
           Application.Title := 'My App';
           MenuItem1.Caption := #$EF#$A3#$BF; //Unicode Apple logo char
+
           AppMenu := TMenuItem.Create(Self); // Application menu
 +
          AppMenu.Caption := #$EF#$A3#$BF;   // Unicode Apple logo char
 +
          MainMenu.Items.Insert(0, AppMenu);
 
     end;  
 
     end;  
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 55: Line 63:
  
 
[[File:macOSMenuFinal.png]]
 
[[File:macOSMenuFinal.png]]
 +
 +
To connect the menu options to an action, add a TActionList to the main form, add actions for About and Preferences (edit the properties and then create the appropriate OnExecute event handlers for each action), and then modify the main form's OnCreate event handler as below:
 +
 +
<syntaxhighlight lang="pascal">
 +
procedure TForm1.FormCreate(Sender: TObject);
 +
    var
 +
          AppMenu    : TMenuItem;
 +
          AppAboutCmd : TMenuItem;
 +
          AppSepCmd  : TMenuItem;
 +
          AppPrefCmd  : TMenuItem;
 +
    begin
 +
          Application.Title := 'My App';
 +
 +
          AppMenu := TMenuItem.Create(Self); // Application menu
 +
          AppMenu.Caption := #$EF#$A3#$BF;  // Unicode Apple logo char
 +
          MainMenu.Items.Insert(0, AppMenu);
 +
 +
          AppAboutCmd := TMenuItem.Create(Self);
 +
          AppAboutCmd.Action:= ActionList1.Actions[1];
 +
          AppMenu.Add(AppAboutCmd);  // Add About as item in application menu
 +
 +
          AppSepCmd := TMenuItem.Create(Self);
 +
          AppSepCmd.Caption := '-';
 +
          AppMenu.Add(AppSepCmd);  // Add menu separator
 +
 +
          AppPrefCmd := TMenuItem.Create(Self);
 +
          AppPrefCmd.Action:= ActionList1.Actions[2];
 +
          AppMenu.Add(AppPrefCmd);  // Add Preferences as item in application menu
 +
 +
          AppSepCmd := TMenuItem.Create(Self);
 +
          AppSepCmd.Caption := '-';
 +
          AppMenu.Add(AppSepCmd);  // Add menu separator
 +
    end;
 +
</syntaxhighlight>
  
  
Line 60: Line 102:
  
 
*[[Introduction to platform-sensitive development]]
 
*[[Introduction to platform-sensitive development]]
 +
*[[Mac Preferences Read and Write]]
 
*[[Mac Show Application Title, Version, and Company]]
 
*[[Mac Show Application Title, Version, and Company]]
 
*[[Add an Apple Help Book to your macOS app]]
 
*[[Add an Apple Help Book to your macOS app]]
Line 65: Line 108:
  
 
[[Category:Mac OS X]]
 
[[Category:Mac OS X]]
 +
[[Category:macOS]]
 
[[Category:Platform-sensitive development]]
 
[[Category:Platform-sensitive development]]

Revision as of 15:13, 18 October 2019

Stock-dialog-warning.svg

This article applies to Mac OS X only.

See also: Multiplatform Programming Guide

There are certain items that should appear in the default application menu on the macOS menu bar of your application. While Lazarus does automatically add:

  • Services
  • Hide MyApp
  • Hide Others
  • Show All
  • Quit MyApp

Lazarus does not add an "About MyApp" menu item or a "Preferences..." menu item. To add these two items on the same application menu as Quit, you have to perform a little trick.

Add a MainMenu component from the Standard tab of the component palette to your main form. Create a menu item and change its caption property in the Object Inspector to the name of your application just for reference. Then, under that menu add three sub-menu items with the following captions: About MyApp, "-" (a separator) and "Preferences..."

MenuItems3new.jpg

Assign the "Preferences..." Menu Item Shortcut "Command ," using the ShortCut Editor (choose the Menu item ShortCut property in the Object Inspector and click on the ellipsis dots next to it). After checking the Meta key, change the Unknown key to a comma, this is how your shortcut will appear:

MenuItemsGrab.png

Finally, to get these items on the MyApp application menu, we must change the caption of the first menu item in the main form's OnCreate event handler as follows:

     procedure TForm1.FormCreate(Sender: TObject);
     var
          AppMenu : TMenuItem;
     begin
          AppMenu := TMenuItem.Create(Self); // Application menu
          AppMenu.Caption := #$EF#$A3#$BF;   // Unicode Apple logo char
          MainMenu.Items.Insert(0, AppMenu);
     end;

After recompiling your application and running it, you will notice that "About MyApp" and "Preferences..." have been added to the MyApp menu, which is where they should be.

MenuItems4new.png

Did you notice the problem? Do you really want to call your application "MyApp" and not "My App"?

No, you cannot change the project file "program MyApp" to "program My App" or you are told "MyApp.lpr(1,11) Fatal: Syntax error, ";" expected but "identifier APP" found".

The solution is to change your application Info.plist file by opening your application bundle, navigating to Contents, double-clicking on Info.plist and using the Xcode plist editor to change the value of the "Bundle name" key to the string "My App" and saving it. Now when you run "MyApp" it displays as "My App".

Of course you would also now need to change the "About MyApp" caption too :-)

Finished? No. The Lazarus-generated menu items still show "Hide MyApp" and "Quit MyApp". To change these to "My App" you need to modify the main form's OnCreate event handler as below:

     procedure TForm1.FormCreate(Sender: TObject);
     var
          AppMenu : TMenuItem;
     begin
          Application.Title := 'My App';
          AppMenu := TMenuItem.Create(Self); // Application menu
          AppMenu.Caption := #$EF#$A3#$BF;   // Unicode Apple logo char
          MainMenu.Items.Insert(0, AppMenu);
     end;

And here is the final result:

macOSMenuFinal.png

To connect the menu options to an action, add a TActionList to the main form, add actions for About and Preferences (edit the properties and then create the appropriate OnExecute event handlers for each action), and then modify the main form's OnCreate event handler as below:

procedure TForm1.FormCreate(Sender: TObject);
     var
          AppMenu     : TMenuItem;
          AppAboutCmd : TMenuItem;
          AppSepCmd   : TMenuItem;
          AppPrefCmd  : TMenuItem;
     begin
          Application.Title := 'My App';

          AppMenu := TMenuItem.Create(Self); // Application menu
          AppMenu.Caption := #$EF#$A3#$BF;   // Unicode Apple logo char
          MainMenu.Items.Insert(0, AppMenu);

          AppAboutCmd := TMenuItem.Create(Self);
          AppAboutCmd.Action:= ActionList1.Actions[1];
          AppMenu.Add(AppAboutCmd);  // Add About as item in application menu

          AppSepCmd := TMenuItem.Create(Self);
          AppSepCmd.Caption := '-';
          AppMenu.Add(AppSepCmd);   // Add menu separator

          AppPrefCmd := TMenuItem.Create(Self);
          AppPrefCmd.Action:= ActionList1.Actions[2];
          AppMenu.Add(AppPrefCmd);   // Add Preferences as item in application menu

          AppSepCmd := TMenuItem.Create(Self);
          AppSepCmd.Caption := '-';
          AppMenu.Add(AppSepCmd);   // Add menu separator
     end;


See also