Last active
April 14, 2016 18:51
-
-
Save nothings/5a8bf5553e91e3666c0e6391437a41fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stbwingraph_MenuBegin(NULL); // top-level menu needs no name | |
| stbwingraph_MenuBegin("&File"); | |
| stbwingraph_MenuItem(0 , "&New" , MENU_new); | |
| stbwingraph_MenuItem('O', "&Open" , MENU_open); | |
| stbwingraph_MenuItem('S', "&Save" , MENU_save); | |
| stbwingraph_MenuItem(0 , "Save &As...", MENU_save_as); | |
| stbwingraph_MenuItem(0,0,0); | |
| stbwingraph_MenuItem(0 , "&Export", MENU_export); | |
| stbwingraph_MenuItem(0,0,0); | |
| stbwingraph_MenuItemExit("E&xit", MENU_exit); | |
| stbwingraph_MenuEnd(); | |
| stbwingraph_MenuBegin("&Edit"); | |
| stbwingraph_MenuItem('Z', "&Undo" , MENU_undo); | |
| stbwingraph_MenuItem('Y', "&Redo" , MENU_redo); | |
| stbwingraph_MenuItem(0,0,0); | |
| stbwingraph_MenuItem('X', "Cu&t" , MENU_cut); | |
| stbwingraph_MenuItem('C', "&Copy" , MENU_copy); | |
| stbwingraph_MenuItem('V', "&Paste" , MENU_paste); | |
| stbwingraph_MenuItem('A', "&Select All", MENU_select_all); | |
| stbwingraph_MenuEnd(); | |
| stbwingraph_MenuEnd(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment