BrowserView.st
changeset 1500 c7cac8cb021f
parent 1483 20842d41d0d0
child 1501 81295c442770
equal deleted inserted replaced
1499:6ed7024b9929 1500:c7cac8cb021f
  4312 !
  4312 !
  4313 
  4313 
  4314 classDoubleClick:lineNr
  4314 classDoubleClick:lineNr
  4315     currentClass notNil ifTrue:[
  4315     currentClass notNil ifTrue:[
  4316         currentClass isVisualStartable ifTrue:[
  4316         currentClass isVisualStartable ifTrue:[
  4317             currentClass open
  4317             self withWaitCursorDo:[
       
  4318                 self busyLabel:'starting application %1' with:currentClass name.
       
  4319                 currentClass open
       
  4320             ]
  4318         ].
  4321         ].
  4319         currentClass isLoaded ifFalse:[
  4322         currentClass isLoaded ifFalse:[
  4320             currentClass autoload
  4323             self withWaitCursorDo:[
       
  4324                 self busyLabel:'autoloading %1 ...' with:currentClass name.
       
  4325                 currentClass autoload
       
  4326             ]
  4321         ].
  4327         ].
  4322     ]
  4328     ]
  4323 
  4329 
  4324     "Modified: / 28.10.1997 / 12:45:05 / cg"
  4330     "Modified: / 28.10.1997 / 12:45:05 / cg"
  4325     "Created: / 29.10.1997 / 15:50:26 / cg"
  4331     "Created: / 29.10.1997 / 15:50:26 / cg"
  8972 
  8978 
  8973 showActivity:someMessage
  8979 showActivity:someMessage
  8974     "some activityNotification to be forwarded to the user;
  8980     "some activityNotification to be forwarded to the user;
  8975      show it in the windows title area here."
  8981      show it in the windows title area here."
  8976 
  8982 
  8977     self busyLabel:someMessage with:nil
  8983     someMessage size == 0 ifTrue:[
       
  8984         self normalLabel
       
  8985     ] ifFalse:[
       
  8986         self busyLabel:someMessage with:nil
       
  8987     ]
  8978 
  8988 
  8979     "Created: 16.12.1995 / 18:41:37 / cg"
  8989     "Created: 16.12.1995 / 18:41:37 / cg"
  8980     "Modified: 23.4.1996 / 21:39:24 / cg"
  8990     "Modified: 23.4.1996 / 21:39:24 / cg"
  8981 !
  8991 !
  8982 
  8992 
 11304 ! !
 11314 ! !
 11305 
 11315 
 11306 !BrowserView class methodsFor:'documentation'!
 11316 !BrowserView class methodsFor:'documentation'!
 11307 
 11317 
 11308 version
 11318 version
 11309     ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.367 1998-02-21 14:46:04 cg Exp $'
 11319     ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.368 1998-03-03 14:17:02 cg Exp $'
 11310 ! !
 11320 ! !
 11311 BrowserView initialize!
 11321 BrowserView initialize!