ScreenLock.st
branchjv
changeset 3855 1db7742d33ad
parent 1966 b82e1cebf7af
child 3872 1bb887d32316
equal deleted inserted replaced
3854:4afd107bc911 3855:1db7742d33ad
       
     1 "
       
     2  COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libview2' }"
    12 "{ Package: 'stx:libview2' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
     2 
    15 
     3 EventListener subclass:#ScreenLock
    16 EventListener subclass:#ScreenLock
     4 	instanceVariableNames:'workstation lastInactiveTime lockAfterSeconds lockChannel
    17 	instanceVariableNames:'workstation lastInactiveTime lockAfterSeconds lockChannel
     5 		lockChannelOut processor lockedViews hiddenViews'
    18 		lockChannelOut processor lockedViews hiddenViews'
     6 	classVariableNames:''
    19 	classVariableNames:''
     7 	poolDictionaries:''
    20 	poolDictionaries:''
     8 	category:'Interface-Support'
    21 	category:'Interface-Support'
     9 !
    22 !
    10 
    23 
    11 !ScreenLock class methodsFor:'documentation'!
    24 !ScreenLock class methodsFor:'documentation'!
       
    25 
       
    26 copyright
       
    27 "
       
    28  COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
       
    29               All Rights Reserved
       
    30 
       
    31  This software is furnished under a license and may be used
       
    32  only in accordance with the terms of that license and with the
       
    33  inclusion of the above copyright notice.   This software may not
       
    34  be provided or otherwise made available to, or used by, any
       
    35  other person.  No title to or ownership of the software is
       
    36  hereby transferred.
       
    37 "
       
    38 !
    12 
    39 
    13 documentation
    40 documentation
    14 "
    41 "
    15     documentation to be added.
    42     documentation to be added.
    16 
    43 
   337 !ScreenLock class methodsFor:'documentation'!
   364 !ScreenLock class methodsFor:'documentation'!
   338 
   365 
   339 version
   366 version
   340     ^ '$Header: /cvs/stx/stx/libview2/ScreenLock.st,v 1.7 2004-03-20 19:20:31 stefan Exp $'
   367     ^ '$Header: /cvs/stx/stx/libview2/ScreenLock.st,v 1.7 2004-03-20 19:20:31 stefan Exp $'
   341 ! !
   368 ! !
       
   369