initializePresenters
morphLabel := self obtainSpMorphPresenterwithAStringMorph.
button1 := self newButton.
button1 label: 'Button one'.
button2 := self newButton.
button2 label: 'Button two'.
self focusOrder
add: morphLabel;
add: button1;
add: button2
obtainSpMorphPresenterwithAStringMorph
| morph |
morph := StringMorph
contents: 'A String Morph'
font:
(LogicalFont
familyName: Smalltalk ui theme labelFont familyName
pointSize: Smalltalk ui theme labelFont pointSize + 10).
^ SpMorphPresenter new
morph: morph;
yourself