Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
aBookMorph fullControlSpecs
Last updated at 5:46 pm UTC on 5 September 2017
Specification of the navigation and menu of a BookMorph is given in the method:

fullControlSpecs

	^ {
		#spacer.
		#variableSpacer.
		{'-'.		#deletePage.				'Delete this page' translated}.
		#spacer.
		{'<<--'.		#firstPage.				'First page' translated}.
		#spacer.
		{'<--'. 		#previousPage.			'Previous page' translated}.
		#spacer.
		{'v'.		#invokeBookMenu. 		'Click here to get a menu of options for this book.' translated}.
		#spacer.
		{'-->'.		#nextPage.				'Next page' translated}.
		#spacer.
		{ '-->>'.		#lastPage.				'Final page' translated}.
		#spacer.
		{'+'.		#insertPage.				'Add a new page after this one' translated}.
		#variableSpacer.
		{'O'.		#fewerPageControls.	'Fewer controls' translated}
}



This method is actually implemented in the superclass BooklikeMorph.
lozenge_symbol_in_BookMorph_navigation.png