ToolApplicationModel.st
changeset 4046 d0fc0a81e0ae
parent 4023 27a1f500ec02
child 4069 2d11d71a2316
equal deleted inserted replaced
4045:1671de832c2e 4046:d0fc0a81e0ae
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 1997 by eXept Software AG
     4  COPYRIGHT (c) 1997 by eXept Software AG
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5  This software is furnished under a license and may be used
     7  This software is furnished under a license and may be used
   239     "Created: / 14.8.1998 / 13:17:43 / cg"
   241     "Created: / 14.8.1998 / 13:17:43 / cg"
   240 ! !
   242 ! !
   241 
   243 
   242 !ToolApplicationModel class methodsFor:'help specs'!
   244 !ToolApplicationModel class methodsFor:'help specs'!
   243 
   245 
   244 flyByHelpSpec
       
   245     <resource: #help>
       
   246 
       
   247     ^super flyByHelpSpec addPairsFrom:#(
       
   248 
       
   249 "/#commitCancel
       
   250 "/'Cancels'
       
   251 "/
       
   252 "/#commitOK
       
   253 "/'Commit'
       
   254 
       
   255 #editCopy
       
   256 'Copy selection'
       
   257 
       
   258 #editCut
       
   259 'Cut selection'
       
   260 
       
   261 #editDelete
       
   262 'Delete selection'
       
   263 
       
   264 #editSearch
       
   265 'Search'
       
   266 
       
   267 #editMoveDown
       
   268 'Move Down'
       
   269 
       
   270 #editMoveIn
       
   271 'Move Into Next'
       
   272 
       
   273 #editMoveInAbove
       
   274 'Move Into Previous'
       
   275 
       
   276 #editMoveOut
       
   277 'Move Out'
       
   278 
       
   279 #editMoveUp
       
   280 'Move Up'
       
   281 
       
   282 #editPaste
       
   283 'Paste'
       
   284 
       
   285 #editUndo
       
   286 'Undo'
       
   287 
       
   288 #fileBrowseClass
       
   289 'Browse class'
       
   290 
       
   291 #fileDefineClass
       
   292 'Define class'
       
   293 
       
   294 #fileDefineClassAndSelector
       
   295 'Define class & selector'
       
   296 
       
   297 #fileExit
       
   298 'Exit'
       
   299 
       
   300 #helpShowHelp
       
   301 'Toggle help'
       
   302 )
       
   303 !
       
   304 
       
   305 helpSpec
   246 helpSpec
   306     "This resource specification was automatically generated
   247     "This resource specification was automatically generated
   307      by the UIHelpTool of ST/X."
   248      by the UIHelpTool of ST/X."
   308 
   249 
   309     "Do not manually edit this!! If it is corrupted,
   250     "Do not manually edit this!! If it is corrupted,
   347 #editCut
   288 #editCut
   348 'Cut the selected item(s) to the clipboard'
   289 'Cut the selected item(s) to the clipboard'
   349 
   290 
   350 #editDelete
   291 #editDelete
   351 'Delete the selected item(s)'
   292 'Delete the selected item(s)'
       
   293 
       
   294 #editSearch
       
   295 'Search'
   352 
   296 
   353 #editMoveDown
   297 #editMoveDown
   354 'Move the selected item one step down (in the order list)'
   298 'Move the selected item one step down (in the order list)'
   355 
   299 
   356 #editMoveIn
   300 #editMoveIn
  1683 ! !
  1627 ! !
  1684 
  1628 
  1685 !ToolApplicationModel::HistoryEntryForMethod methodsFor:'printing'!
  1629 !ToolApplicationModel::HistoryEntryForMethod methodsFor:'printing'!
  1686 
  1630 
  1687 printStringInMenu
  1631 printStringInMenu
  1688     ^ methodClass name , ' » ' , (methodSelector?'?')
  1632     ^ methodClass name , ' » ' , (methodSelector?'?')
  1689 
  1633 
  1690     "Modified: / 11-07-2006 / 13:53:40 / fm"
  1634     "Modified: / 11-07-2006 / 13:53:40 / fm"
  1691 ! !
  1635 ! !
  1692 
  1636 
  1693 !ToolApplicationModel class methodsFor:'documentation'!
  1637 !ToolApplicationModel class methodsFor:'documentation'!