Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
TheWorldMainDockingBar doMenuOn: aDockingBar
Last updated at 7:37 pm UTC on 12 October 2019
The main docking bar has a do menu to keep frequently used one-line commands.

The last entry of the menu allows to edit the menu.

The initialization of the menu entries takes place in the method #initializeCommonRequestStrings.




Implementation notes

 Object subclass: #TheWorldMainDockingBar



 doMenuOn: aDockingBar 

	aDockingBar addItem: [ :item |
		item
			contents: 'Do' translated;
			subMenuUpdater: self
			selector: #listCommonRequestsOn: ]