AbstractFileBrowser.st
changeset 10258 7d2454c716de
parent 9945 b32126680c13
child 10304 ef51c640ee76
equal deleted inserted replaced
10257:bdc20c20c46c 10258:7d2454c716de
  7415 javaSupportLoaded
  7415 javaSupportLoaded
  7416 
  7416 
  7417     ^ false
  7417     ^ false
  7418 ! !
  7418 ! !
  7419 
  7419 
       
  7420 
  7420 !AbstractFileBrowser methodsFor:'presentation'!
  7421 !AbstractFileBrowser methodsFor:'presentation'!
  7421 
  7422 
  7422 getModeString:modeBits
  7423 getModeString:modeBits
  7423     "convert file-mode bits into a more user-friendly string.
  7424     "convert file-mode bits into a more user-friendly string.
  7424      This is wrong here - should be moved into OperatingSystem."
  7425      This is wrong here - should be moved into OperatingSystem."
  7583     "Modified: / 07-02-2007 / 10:38:14 / cg"
  7584     "Modified: / 07-02-2007 / 10:38:14 / cg"
  7584 !
  7585 !
  7585 
  7586 
  7586 hasImageColorHistogram
  7587 hasImageColorHistogram
  7587     ^ ImageColorHistogram notNil
  7588     ^ ImageColorHistogram notNil
       
  7589 !
       
  7590 
       
  7591 hasSubversionSupport
       
  7592 
       
  7593     ^(Smalltalk classNamed: #'SVN::RepositoryManager') notNil
       
  7594 
       
  7595     "Created: / 24-06-2010 / 19:59:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
  7596 !
       
  7597 
       
  7598 hasSubversionWorkingCopySelected
       
  7599 
       
  7600     ^((self currentDirectory  / '.svn') exists) and:
       
  7601         [(self currentDirectory  / '.svn' / 'entries') exists].
       
  7602 
       
  7603     "Created: / 24-06-2010 / 20:13:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
  7588 !
  7604 !
  7589 
  7605 
  7590 initialCommandFor:fileName into:aBox
  7606 initialCommandFor:fileName into:aBox
  7591     "set a useful initial command for execute box."
  7607     "set a useful initial command for execute box."
  7592 
  7608 
  8315     value := something.
  8331     value := something.
  8316 ! !
  8332 ! !
  8317 
  8333 
  8318 !AbstractFileBrowser class methodsFor:'documentation'!
  8334 !AbstractFileBrowser class methodsFor:'documentation'!
  8319 
  8335 
  8320 version
       
  8321     ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.460 2011-06-27 14:12:42 cg Exp $'
       
  8322 !
       
  8323 
       
  8324 version_CVS
  8336 version_CVS
  8325     ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.460 2011-06-27 14:12:42 cg Exp $'
  8337     ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.461 2011-07-07 14:14:30 vrany Exp $'
  8326 ! !
  8338 ! !