Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-kb.235.mcz==================== Summary ====================
Name: Morphic-kb.235
Author: kb
Time: 19 November 2009, 10:50:03 am
UUID: edb4e183-3e0a-294d-a8ea-a9a533b47239
Ancestors: Morphic-kb.234
- converted the #showWorldMainDockingBar preference to pragma style.
=============== Diff against Morphic-kb.234 ===============
Item was added:
+ ----- Method: TheWorldMainDockingBar class>>showWorldMainDockingBar: (in category 'preferences') -----
+ showWorldMainDockingBar: aBoolean
+
+ ShowWorldMainDockingBar := aBoolean.
+ Project current showWorldMainDockingBar: ShowWorldMainDockingBar!
Item was changed:
----- Method: TheWorldMainDockingBar class>>initialize (in category 'class initialization') -----
initialize
+
- "Initialize the receiver"
- Preferences
- addPreference: #showWorldMainDockingBar
- categories: #(#'docking bars' )
- default: true
- balloonHelp: 'Whether world''s main docking bar should be shown or not.'
- projectLocal: true
- changeInformee: TheWorldMainDockingBar
- changeSelector: #showWorldMainDockingBarPreferenceChanged.
- ""
SystemChangeNotifier uniqueInstance noMoreNotificationsFor: self.
SystemChangeNotifier uniqueInstance
notify: self
ofSystemChangesOfItem: #method
using: #updateInstances:.
+
- ""
Locale addLocalChangedListener: self.
self setTimeStamp!
Item was changed:
Object subclass: #TheWorldMainDockingBar
instanceVariableNames: 'icons'
+ classVariableNames: 'Instance ShowWorldMainDockingBar TS'
- classVariableNames: 'Instance TS'
poolDictionaries: ''
category: 'Morphic-Kernel'!
Item was added:
+ ----- Method: TheWorldMainDockingBar class>>showWorldMainDockingBar (in category 'preferences') -----
+ showWorldMainDockingBar
+
+ <preference: 'Show world main docking bar'
+ category: 'docking bars'
+ description: 'Whether world''s main docking bar should be shown or not.'
+ type: #Boolean>
+ ^ShowWorldMainDockingBar == true!
Item was removed:
- ----- Method: TheWorldMainDockingBar class>>showWorldMainDockingBarPreferenceChanged (in category 'preferences') -----
- showWorldMainDockingBarPreferenceChanged
- "The preference #showWorldMainDockingBar has just
- changed"
- Project current showWorldMainDockingBar: Preferences showWorldMainDockingBar!