StandardSystemController.st
author Claus Gittinger <cg@exept.de>
Sat, 11 Nov 1995 17:05:49 +0100
changeset 114 e577a2f332d0
parent 99 a656b0c9dd21
child 124 6f00394c5a4a
permissions -rw-r--r--
uff - version methods changed to return stings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
3f9277473954 Initial revision
claus
parents:
diff changeset
     1
"
3f9277473954 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 11
diff changeset
     3
	      All Rights Reserved
0
3f9277473954 Initial revision
claus
parents:
diff changeset
     4
3f9277473954 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
3f9277473954 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
3f9277473954 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
3f9277473954 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
3f9277473954 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
3f9277473954 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
3f9277473954 Initial revision
claus
parents:
diff changeset
    11
"
3f9277473954 Initial revision
claus
parents:
diff changeset
    12
3f9277473954 Initial revision
claus
parents:
diff changeset
    13
Controller subclass:#StandardSystemController
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 11
diff changeset
    14
	 instanceVariableNames:''
f13cdd0b44c7 *** empty log message ***
claus
parents: 11
diff changeset
    15
	 classVariableNames:''
f13cdd0b44c7 *** empty log message ***
claus
parents: 11
diff changeset
    16
	 poolDictionaries:''
71
claus
parents: 35
diff changeset
    17
	 category:'Interface-Support-Controllers'
claus
parents: 35
diff changeset
    18
!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    19
99
claus
parents: 96
diff changeset
    20
!StandardSystemController class methodsFor:'documentation'!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    21
99
claus
parents: 96
diff changeset
    22
copyright
claus
parents: 96
diff changeset
    23
"
claus
parents: 96
diff changeset
    24
 COPYRIGHT (c) 1993 by Claus Gittinger
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 11
diff changeset
    25
	      All Rights Reserved
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    26
99
claus
parents: 96
diff changeset
    27
 This software is furnished under a license and may be used
claus
parents: 96
diff changeset
    28
 only in accordance with the terms of that license and with the
claus
parents: 96
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
claus
parents: 96
diff changeset
    30
 be provided or otherwise made available to, or used by, any
claus
parents: 96
diff changeset
    31
 other person.  No title to or ownership of the software is
claus
parents: 96
diff changeset
    32
 hereby transferred.
claus
parents: 96
diff changeset
    33
"
claus
parents: 96
diff changeset
    34
!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    35
99
claus
parents: 96
diff changeset
    36
documentation
claus
parents: 96
diff changeset
    37
"
claus
parents: 96
diff changeset
    38
    Controller for StandardSystemViews i.e. top views. There is nothing done here
claus
parents: 96
diff changeset
    39
    since all action is done in window manager. 
claus
parents: 96
diff changeset
    40
    This class exists for ST-80 compatibility only 
claus
parents: 96
diff changeset
    41
    (to allow for subclasses to be filed in).
claus
parents: 96
diff changeset
    42
"
claus
parents: 96
diff changeset
    43
!
claus
parents: 96
diff changeset
    44
claus
parents: 96
diff changeset
    45
version
114
e577a2f332d0 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 99
diff changeset
    46
    ^ '$Header: /cvs/stx/stx/libview2/StandardSystemController.st,v 1.8 1995-11-11 16:05:00 cg Exp $'
99
claus
parents: 96
diff changeset
    47
! !
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    48
3f9277473954 Initial revision
claus
parents:
diff changeset
    49
!StandardSystemController methodsFor:'startup'!
3f9277473954 Initial revision
claus
parents:
diff changeset
    50
3f9277473954 Initial revision
claus
parents:
diff changeset
    51
open
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 11
diff changeset
    52
    view open
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    53
! !