MDIChildView.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 25 Jan 2018 10:48:17 +0000
branchjv
changeset 8272 b99e94212cb5
parent 6528 62c1dbef0b84
permissions -rw-r--r--
Issue #154: set window as top-most if windows' `#windowStyle` is `#toolWindow1` ...to match the behavior on X11. This is a Windows counterpart of an earlier commit 00b6d158ab89. See https://swing.fit.cvut.cz/projects/stx-jv/ticket/154
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4495
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libview' }"
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
TopView subclass:#MDIChildView
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'Views-Basic'
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!MDIChildView methodsFor:'queries'!
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
windowType
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    "return a symbol describing my type (one of: #mdichild or nil)"
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
    ^ #mdichild
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
! !
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!MDIChildView class methodsFor:'documentation'!
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
version
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
    ^ '$Header: /cvs/stx/stx/libview/MDIChildView.st,v 1.1 2006-02-24 11:27:01 cg Exp $'
d7600b25c87b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
! !
6528
62c1dbef0b84 Class order in project definition fixed so it passes project checker checks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4495
diff changeset
    24