DisplayObjectView.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 19 Jul 2017 09:42:32 +0200
branchjv
changeset 17619 edb119820fcb
parent 16781 0d8b05ac5efd
permissions -rw-r--r--
Issue #154: Set window style using `#beToolWindow` to indicate that the minirunner window is kind of support tool rather than some X11 specific code (which does not work on Windows of course) See https://swing.fit.cvut.cz/projects/stx-jv/ticket/154

"{ Package: 'stx:libtool' }"

"{ NameSpace: Smalltalk }"

View subclass:#DisplayObjectView
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Misc'
!


!DisplayObjectView methodsFor:'drawing'!

redraw
    model displayOn:self x:0 y:(model ascentOn:self)
! !

!DisplayObjectView class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !