module StdMenus

The StdMenus submodule provides facilities for creating menu bars containing standard menus and menu commands arranged according to platform conventions.

The standard set of menu commands is as follows.

Typical menu text

Internal command name

General commands

About app_name

about_cmd
Preferences...

preferences_cmd
Quit

quit_cmd

File commands

New

new_cmd
Open...

open_cmd
Close

close_cmd
Save

save_cmd
Save As...

save_as_cmd
Revert

revert_cmd

Editing commands

Undo

undo_cmd
Redo

redo_cmd
Cut

cut_cmd
Copy

copy_cmd
Paste

paste_cmd
Clear

clear_cmd
Select All

select_all_cmd

Functions

basic_menus()
Returns a MenuList containing all of the framework-defined menu commands, arranged and named according to platform conventions. It is recommended that you use this as a starting point for defining your own menu bars.
---