Pharo /
MorphicGUIHere is the Morph class hierarchy Using SystemWindow from Morphic-Windows package Hierarchy: Object>>Morph>>BorderedMorph>>MorphicModel>>SystemWindow Some sample code window := SystemWindow labelled: 'foo'. window openInWorld. "default size window opens" window := SystemWindow labelled: 'foo'. window openInWorld. window extent: 150@160. "no flash detected on resize" window := SystemWindow labelled: 'foo'. window extent: 150@160. window openInWorld. |