intitial checkin
authorClaus Gittinger <cg@exept.de>
Mon, 27 Jan 1997 18:37:06 +0100
changeset 1282 46629b32e1d7
parent 1281 d7717bcf2e55
child 1283 ba106a6b1c5b
intitial checkin
GraphicsDevice.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GraphicsDevice.st	Mon Jan 27 18:37:06 1997 +0100
@@ -0,0 +1,60 @@
+"
+COPYRIGHT (c) 1996 by Claus Gittinger
+              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.
+"
+
+
+Object subclass:#GraphicsDevice
+	instanceVariableNames:'displayId visualType'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Graphics'
+!
+
+!GraphicsDevice class methodsFor:'documentation'!
+
+copyright
+"
+COPYRIGHT (c) 1996 by Claus Gittinger
+              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
+"
+    this abstract class was inserted to provide a home for ST-80 classes
+    (previously, DeviceWorkstation was directly under Object).
+
+    [instance variables:]
+      displayId       <Handle>          the device handle
+      visualType      <Symbol>          one of #StaticGray, #PseudoColor, ... #TrueColor
+
+    [see also:]
+        DeviceWorkstation XWorkstation
+
+    [author:]
+        Claus Gittinger
+"
+
+! !
+
+!GraphicsDevice class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview/GraphicsDevice.st,v 1.1 1997-01-27 17:37:06 cg Exp $'
+! !