initial checkin
authorClaus Gittinger <cg@exept.de>
Thu, 18 Jun 1998 18:57:12 +0200
changeset 964 51114e9392da
parent 963 6ac4bb44a5df
child 965 04cadbd21aac
initial checkin
ApplicationWindow.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ApplicationWindow.st	Thu Jun 18 18:57:12 1998 +0200
@@ -0,0 +1,92 @@
+"
+ COPYRIGHT (c) 1998 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.
+"
+
+
+StandardSystemView subclass:#ApplicationWindow
+	instanceVariableNames:'keyboardProcessor'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Framework'
+!
+
+!ApplicationWindow class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1998 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
+"
+    ApplicationWindow is provided for ST80 compatibility, to
+    give loaded code a home, in case its subclassed from it.
+    It does not (yet) provide much of additional functionality.
+
+    [author:]
+        Claus Gittinger (cg@data)
+
+    [see also:]
+        ApplicationModel UIBuilder
+"
+! !
+
+!ApplicationWindow methodsFor:'accessing'!
+
+keyboardProcessor
+    "return the value of the instance variable 'keyboardProcessor' (automatically generated)"
+
+    ^ keyboardProcessor
+
+    "Created: / 18.6.1998 / 18:52:42 / cg"
+!
+
+keyboardProcessor:something
+    "set the value of the instance variable 'keyboardProcessor' (automatically generated)"
+
+    keyboardProcessor := something.
+
+    "Created: / 18.6.1998 / 18:52:42 / cg"
+! !
+
+!ApplicationWindow methodsFor:'events'!
+
+close
+    self noticeOfWindowClose.
+    self keyboardProcessor release.
+    super close
+
+    "Created: / 18.6.1998 / 18:54:03 / cg"
+!
+
+noticeOfWindowClose
+    application notNil ifTrue:[
+        application noticeOfWindowClose:self
+    ].
+
+    "Created: / 18.6.1998 / 18:56:01 / cg"
+! !
+
+!ApplicationWindow class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationWindow.st,v 1.1 1998-06-18 16:57:12 cg Exp $'
+! !