Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Project - instance variables
Last updated at 10:32 am UTC on 30 October 2018
Model subclass: #Project
	instanceVariableNames: 'world uiManager changeSet transcript parentProject previousProject displayDepth viewSize thumbnail 
        nextProject projectParameters version urlList 
        environment lastDirectory lastSavedAtSeconds projectPreferenceFlagDictionary 
        resourceManager'
	classVariableNames: 'AllProjects CurrentProject GoalFreePercent GoalNotMoreThan'
	poolDictionaries: ''
	category: 'System-Support'



Project subclass: #MorphicProject
	instanceVariableNames: 'uiProcess'
	classVariableNames: 'DefaultFill'
	poolDictionaries: ''
	category: 'Morphic-Support'



A Project object has these instance variables:

world
changeSet
transcript

displayDepth
viewSize
thumbnail (a Form)

parentProject
previousProject
nextProject

projectParameters
version
urlList
environment

lastDirectory
lastSavedAtSeconds
projectPreferenceFlagDictionary
resourceManager

The most important variable is probably the first 'world' which gives access to the topmost PasteUpMorph.

Instead of a list of instance variables a precise definition what a project is would be valuable here...
See Project - class comment