MDIChildView.st
author sr
Fri, 12 Jul 2019 16:42:24 +0200
changeset 8730 d1b103ebec20
parent 4495 d7600b25c87b
child 6528 62c1dbef0b84
permissions -rw-r--r--
#FEATURE by Stefan Reise force file name collection return when using native file dialog with allow multi select class: WinWorkstation changed: #nativeFileDialogWithTitle:defaultFilename:owningTopView:filter:filterIndex:trueForSave:trueForMultiSelect:trueForPromptOverwrite:

"{ Package: 'stx:libview' }"

TopView subclass:#MDIChildView
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Basic'
!


!MDIChildView methodsFor:'queries'!

windowType
    "return a symbol describing my type (one of: #mdichild or nil)"

    ^ #mdichild
! !

!MDIChildView class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview/MDIChildView.st,v 1.1 2006-02-24 11:27:01 cg Exp $'
! !