AbstractLauncherApplication.st
branchjv
changeset 12807 ba8c5416aa28
parent 12804 e673f6253765
parent 12756 6720166ed1e1
child 13170 c9b815af5777
equal deleted inserted replaced
12806:d550d7de8e2d 12807:ba8c5416aa28
    15 	instanceVariableNames:'transcript'
    15 	instanceVariableNames:'transcript'
    16 	classVariableNames:'NotifyingEmergencyHandler OpenLaunchers RegisteredMenuHandlers
    16 	classVariableNames:'NotifyingEmergencyHandler OpenLaunchers RegisteredMenuHandlers
    17 		OpenSettingsDialog SettingsList UserSettingsList'
    17 		OpenSettingsDialog SettingsList UserSettingsList'
    18 	poolDictionaries:''
    18 	poolDictionaries:''
    19 	category:'Interface-Smalltalk'
    19 	category:'Interface-Smalltalk'
       
    20 !
       
    21 
       
    22 AbstractLauncherApplication class instanceVariableNames:'SettingsList UserSettingsList'
       
    23 
       
    24 "
       
    25  The following class instance variables are inherited by this class:
       
    26 
       
    27 	ToolApplicationModel - history fileHistory clipboard settings showingHelp instances
       
    28 	ApplicationModel - ClassResources
       
    29 	Model - 
       
    30 	Object - 
       
    31 "
    20 !
    32 !
    21 
    33 
    22 Object subclass:#LauncherDialogs
    34 Object subclass:#LauncherDialogs
    23 	instanceVariableNames:''
    35 	instanceVariableNames:''
    24 	classVariableNames:''
    36 	classVariableNames:''
   723                     cls isNil ifTrue:[
   735                     cls isNil ifTrue:[
   724                         Dialog warn:(resources stringWithCRs:'Autoload failed.\\Sorry, please check the demos & client directories and load manually.').
   736                         Dialog warn:(resources stringWithCRs:'Autoload failed.\\Sorry, please check the demos & client directories and load manually.').
   725                         ^ nil
   737                         ^ nil
   726                     ]
   738                     ]
   727                 ].
   739                 ].
   728                 "/self halt.
   740                 "/ self halt.
   729             ].
   741             ].
   730         ].
   742         ].
   731     ].
   743     ].
   732     ^ cls
   744     ^ cls
   733 
       
   734     "Modified: / 24-04-2013 / 12:08:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   735 !
   745 !
   736 
   746 
   737 findWindow:title
   747 findWindow:title
   738     "a helper for find & destroy and find & raise operations;
   748     "a helper for find & destroy and find & raise operations;
   739      let user choose a view and return it; return nil on cancel"
   749      let user choose a view and return it; return nil on cancel"
  7010 ! !
  7020 ! !
  7011 
  7021 
  7012 !AbstractLauncherApplication class methodsFor:'documentation'!
  7022 !AbstractLauncherApplication class methodsFor:'documentation'!
  7013 
  7023 
  7014 version
  7024 version
  7015     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.426 2013-03-28 18:18:56 cg Exp $'
  7025     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.429 2013-05-14 10:27:57 cg Exp $'
  7016 !
  7026 !
  7017 
  7027 
  7018 version_CVS
  7028 version_CVS
  7019     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.426 2013-03-28 18:18:56 cg Exp $'
  7029     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.429 2013-05-14 10:27:57 cg Exp $'
  7020 !
  7030 !
  7021 
  7031 
  7022 version_HG
  7032 version_HG
  7023 
  7033 
  7024     ^ '$Changeset: <not expanded> $'
  7034     ^ '$Changeset: <not expanded> $'
  7025 !
  7035 !
  7026 
  7036 
  7027 version_SVN
  7037 version_SVN
  7028     ^ '§Id: AbstractLauncherApplication.st 7796 2011-06-23 16:01:32Z vranyj1 §'
  7038     ^ '$Id: AbstractLauncherApplication.st,v 1.429 2013-05-14 10:27:57 cg Exp $'
  7029 ! !
  7039 ! !
  7030 
  7040