SystemStatusMonitor.st
changeset 2699 dcb83b594b14
parent 2488 65689c6d5bd6
child 2744 0ebeada0fee0
equal deleted inserted replaced
2698:c6ef17fe725e 2699:dcb83b594b14
       
     1 "{ Package: 'stx:libtool' }"
       
     2 
     1 SimpleView subclass:#SystemStatusMonitor
     3 SimpleView subclass:#SystemStatusMonitor
     2 	instanceVariableNames:'listView listUpdateDelay updateDelay updateBlock listUpdateBlock
     4 	instanceVariableNames:'listView listUpdateDelay updateDelay updateBlock listUpdateBlock
     3 		updateProcess'
     5 		updateProcess'
     4 	classVariableNames:''
     6 	classVariableNames:''
     5 	poolDictionaries:''
     7 	poolDictionaries:''
   207 !SystemStatusMonitor methodsFor:'queries'!
   209 !SystemStatusMonitor methodsFor:'queries'!
   208 
   210 
   209 preferredExtent
   211 preferredExtent
   210     "return my preferred extent"
   212     "return my preferred extent"
   211 
   213 
   212     ^ (font widthOf:self titleLine) + 40 @ 100
   214     ^ (font widthOf:self titleLine) + 40 @ 200
   213 
   215 
   214     "Modified: 23.1.1997 / 02:35:01 / cg"
   216     "Modified: 23.1.1997 / 02:35:01 / cg"
   215     "Created: 23.1.1997 / 02:51:24 / cg"
   217     "Created: 23.1.1997 / 02:51:24 / cg"
   216 ! !
   218 ! !
   217 
   219 
   218 !SystemStatusMonitor class methodsFor:'documentation'!
   220 !SystemStatusMonitor class methodsFor:'documentation'!
   219 
   221 
   220 version
   222 version
   221     ^ '$Header: /cvs/stx/stx/libtool/SystemStatusMonitor.st,v 1.10 1999-12-14 20:15:32 cg Exp $'
   223     ^ '$Header: /cvs/stx/stx/libtool/SystemStatusMonitor.st,v 1.11 2000-08-15 14:19:12 cg Exp $'
   222 ! !
   224 ! !