ExternalTopView.st
changeset 1085 7b81e852c657
child 1086 67cc515aa9a2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ExternalTopView.st	Thu Jan 21 21:35:23 1999 +0100
@@ -0,0 +1,72 @@
+"
+ COPYRIGHT (c) 1999 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+
+TopView subclass:#ExternalTopView
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Graphics-Support'
+!
+
+!ExternalTopView class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1999 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+!
+
+documentation
+"
+    Represents a view as created by some other application.
+    This is a support-class to allow ST/X views to be created
+    inside other applications.
+
+    [author:]
+        Claus Gittinger (cg@exept.de)
+
+    [see also:]
+
+    [instance variables:]
+
+    [class variables:]
+"
+! !
+
+!ExternalTopView class methodsFor:'instance creation'!
+
+newWithID:anAlienWindowID
+    ^ self new setWindowID:anAlienWindowID
+! !
+
+!ExternalTopView methodsFor:'private accessing'!
+
+setWindowID:aWindowID
+    drawableId := aWindowID.
+    realized := true.
+! !
+
+!ExternalTopView class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview2/ExternalTopView.st,v 1.1 1999-01-21 20:35:23 cg Exp $'
+! !