SystemStatusMonitor.st
changeset 1806 c596b8441e25
parent 1273 3a8a91e6c5fa
child 1823 6ebeee55f0c4
equal deleted inserted replaced
1805:2baf4faf8a50 1806:c596b8441e25
    96     listView := v scrolledView.
    96     listView := v scrolledView.
    97     listView font:(EditTextView defaultFont).
    97     listView font:(EditTextView defaultFont).
    98     listView menuHolder:self; menuPerformer:self; menuMessage:#statusMenu. 
    98     listView menuHolder:self; menuPerformer:self; menuMessage:#statusMenu. 
    99 
    99 
   100     listView multipleSelectOk:true.
   100     listView multipleSelectOk:true.
       
   101     listView toggleSelect:true.
   101     listView delegate:(KeyboardForwarder toView:self).
   102     listView delegate:(KeyboardForwarder toView:self).
   102     listView doubleClickAction:[:line | self doubleClicked].
   103     listView doubleClickAction:[:line | self doubleClicked].
   103 
   104 
   104     updateDelay := 0.5.
   105     updateDelay := 0.5.
   105     listUpdateDelay := 5.
   106     listUpdateDelay := 5.
   113 
   114 
   114     "
   115     "
   115      ProcessMonitor open
   116      ProcessMonitor open
   116     "
   117     "
   117 
   118 
   118     "Modified: 4.8.1997 / 01:44:47 / cg"
   119     "Modified: / 5.8.1998 / 13:06:04 / cg"
   119 !
   120 !
   120 
   121 
   121 mapped
   122 mapped
   122     super mapped.
   123     super mapped.
   123     self updateStatus.
   124     self updateStatus.
   204 ! !
   205 ! !
   205 
   206 
   206 !SystemStatusMonitor class methodsFor:'documentation'!
   207 !SystemStatusMonitor class methodsFor:'documentation'!
   207 
   208 
   208 version
   209 version
   209     ^ '$Header: /cvs/stx/stx/libtool/SystemStatusMonitor.st,v 1.5 1997-08-05 14:30:01 cg Exp $'
   210     ^ '$Header: /cvs/stx/stx/libtool/SystemStatusMonitor.st,v 1.6 1998-08-05 12:30:23 cg Exp $'
   210 ! !
   211 ! !