diff options
| author | Teddy Wing | 2023-08-15 22:10:21 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2023-08-15 22:10:21 +0200 | 
| commit | b2e57ab6240e5559259bd633dbc3ae0dbcae9e5d (patch) | |
| tree | 382872fefe8969eb16fdbf2cc825ea15bbac8c5c | |
| parent | ae0d53efcb03c183c115ae97f7f0302ac7cb1d67 (diff) | |
| download | Base-Windowed-Application-b2e57ab6240e5559259bd633dbc3ae0dbcae9e5d.tar.bz2 | |
Default main menu: Describe base main menu
Write a list of all the default main menu items generated in a new Cocoa
app MainMenu.nib generated by Xcode.
We'll use this as a guide to reimplement all of the menus and items in
code.
| -rw-r--r-- | Default main menu.txt | 134 | 
1 files changed, 134 insertions, 0 deletions
| diff --git a/Default main menu.txt b/Default main menu.txt new file mode 100644 index 0000000..2561e00 --- /dev/null +++ b/Default main menu.txt @@ -0,0 +1,134 @@ +Application +	About App Name +	--- +	Preferences… D-, +	--- +	Services > +	--- +	Hide App Name D-H +	Hide Others D-A-H +	Show All +	--- +	Quit App Name D-Q + +File +	New D-N +	Open… D-O +	Open Recent > +	--- +	Close D-W +	Save… D-S +	Save As… S-D-S +	Revert to Saved D-R +	--- +	Page Setup… S-D-P +	Print… D-P + +Edit +	Undo D-Z +	Redo S-D-Z +	--- +	Cut D-X +	Copy D-C +	Paste D-V +	Paste and Match Style A-S-D-V +	Delete +	Select All D-A +	--- +	Find > +		Find… D-F +		Find and Replace… A-D-F +		Find Next D-G +		Find Previous S-D-G +		Use Selection for Find D-E +		Jump to Selection D-J +	Spelling and Grammar > +		Show Spelling and Grammar D-: +		Check Document Now D-; +		--- +		Check Spelling While Typing +		Check Grammar With Spelling +		Correct Spelling Automatically +	Substitutions > +		Show Substitutions +		--- +		Smart Copy/Paste +		Smart Quotes +		Smart Dashes +		Smart Links +		Date Detectors +		Text Replacement +	Transformations > +		Make Upper Case +		Make Lower Case +		Capitalize +	Speech > +		Start Speaking +		Stop Speaking + +Format +	Font > +		Show Fonts D-T +		Bold D-B +		Italic D-I +		Underline D-U +		--- +		Bigger D-+ +		Smaller D-- +		--- +		Kern > +			Use Default +			Use None +			Tighten +			Loosen +		Ligatures > +			Use Default +			Use None +			Use All +		Baseline > +			Use Default +			Superscript +			Subscript +			Raise +			Lower +		--- +		Show Colors S-D-C +		--- +		Copy Style A-D-C +		Paste Style A-D-V +	Text > +		Align Left D-{ +		Center D-| +		Justify +		Align Right D-} +		--- +		Writing Direction > +			Paragraph [disabled] +				[indented] Default +				[indented] Left to Right +				[indented] Right to Left +			--- +			Selection [disabled] +				[indented] Default +				[indented] Left to Right +				[indented] Right to Left +		--- +		Show Ruler +		Copy Ruler C-D-C +		Paste Ruler C-D-V + +View +	Show Toolbar A-D-T +	Customize Toolbar… +	--- +	Show Sidebar C-D-S +	Enter Full Screen C-D-F + +Window +	Minimize D-M +	Zoom +	--- +	Bring All to Front + +Help +	App Name Help D-? | 
