Last active
November 21, 2017 04:05
-
-
Save PuercoPop/4f5bf988212c215691026242d7379490 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| win toolbar workspc workspcModel loadBtn saveBtn | | |
win _ SystemWindow new. | |
workspcModel _ Workspace withText: 'Transcript show: ''foo'''. | |
workspc _ TextModelMorph withModel: workspcModel. | |
toolbar _ LayoutMorph newRow. | |
loadBtn _ PluggableButtonMorph model: workspc | |
action: #switch | |
label: 'Run Code'. | |
saveBtn _ PluggableButtonMorph model: workspc | |
action: #switch | |
label: 'Save Code'. | |
toolbar addMorph: loadBtn. | |
toolbar addMorph: saveBtn. | |
win layoutMorph addMorph: toolbar proportionalHeight: 0.1. | |
win layoutMorph addMorph: workspc proportionalHeight: 1. | |
win openInWorld . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment