'From etoys4.0 of 9 October 2008 [latest update: #2231] on 13 July 2009 at 2:38:56 pm'! "Change Set: ChicagoTheme-yo Date: 13 July 2009 Author: Yoshiki Ohshima Chicago theme redone. Not to use green for the bar."! !Preferences class methodsFor: 'themes' stamp: 'yo 7/13/2009 14:22'! chicago "A theme for Squeakland project" "Preferences chicago" self cambridge. self setPreferencesFrom: #( (biggerCursors false) "(magicHalos true)" (sugarNavigator true) (swapControlAndAltKeys false) (unlimitedPaintArea true) (useArtificialSweetenerBar true) (usePopUpArrows false) "(updateFromServerAtStartup false)" ).! ! !SugarNavigatorBar methodsFor: 'initialization' stamp: 'yo 7/13/2009 14:33'! configureForSqueakland " self naviHeight: 40. self color: Color green muchDarker highLightColor: Color green darker. "! ! !SugarNavigatorBar methodsFor: 'initialization' stamp: 'yo 7/13/2009 14:38'! makeTheSimpleButtonsSqueakland "Add the buttons for use in normal kids' mode." ^ {self buttonHelp}, ( true ifTrue: [{self makeProjectNameLabel}] ifFalse: [#()] ), { self buttonNewProject. self buttonPrev. self buttonNext. self buttonPaint. self buttonSupplies. }, " ( Preferences includeSoundControlInNavigator ifTrue: [{self buttonSound}] ifFalse: [#()] )," { self buttonUndo. self buttonLanguage. "self buttonShare." }, (((DisplayScreen actualScreenSize = OLPCVirtualScreen virtualScreenExtent) ifFalse: [{self buttonZoom}] ifTrue: [#()])), { #spacer. self buttonFind. self buttonPublish. self buttonStop. } ! !