Tools__CodeView2.st
changeset 10290 a8251e59c37b
parent 10262 39688cd73dff
child 10293 7dec857f35f6
equal deleted inserted replaced
10289:cb1f8bda978e 10290:a8251e59c37b
   142 ! !
   142 ! !
   143 
   143 
   144 !CodeView2 class methodsFor:'menu specs'!
   144 !CodeView2 class methodsFor:'menu specs'!
   145 
   145 
   146 editMenu
   146 editMenu
       
   147     "This resource specification was automatically generated
       
   148      by the MenuEditor of ST/X."
       
   149 
       
   150     "Do not manually edit this!! If it is corrupted,
       
   151      the MenuEditor may not be able to read the specification."
       
   152 
       
   153     "
       
   154      MenuEditor new openOnClass:Tools::CodeView2 andSelector:#editMenu
       
   155      (Menu new fromLiteralArrayEncoding:(Tools::CodeView2 editMenu)) startUp
       
   156     "
       
   157 
       
   158     UserPreferences current eclipseStyleMenus ifTrue:[
       
   159         ^ self editMenu_eclipseStyle
       
   160     ].
       
   161     ^ self editMenu_stxStyle
       
   162 
       
   163     "Modified: / 08-07-2011 / 13:23:35 / cg"
       
   164 !
       
   165 
       
   166 editMenu_eclipseStyle
   147     "This resource specification was automatically generated
   167     "This resource specification was automatically generated
   148      by the MenuEditor of ST/X."
   168      by the MenuEditor of ST/X."
   149 
   169 
   150     "Do not manually edit this!! If it is corrupted,
   170     "Do not manually edit this!! If it is corrupted,
   151      the MenuEditor may not be able to read the specification."
   171      the MenuEditor may not be able to read the specification."
   288                 )
   308                 )
   289                )
   309                )
   290               nil
   310               nil
   291               nil
   311               nil
   292             )
   312             )
       
   313           )
       
   314          )
       
   315         nil
       
   316         nil
       
   317       )
       
   318 
       
   319     "Created: / 08-07-2011 / 13:20:47 / cg"
       
   320 !
       
   321 
       
   322 editMenu_stxStyle
       
   323     "This resource specification was automatically generated
       
   324      by the MenuEditor of ST/X."
       
   325 
       
   326     "Do not manually edit this!! If it is corrupted,
       
   327      the MenuEditor may not be able to read the specification."
       
   328 
       
   329     "
       
   330      MenuEditor new openOnClass:Tools::CodeView2 andSelector:#editMenu_stxStyle
       
   331      (Menu new fromLiteralArrayEncoding:(Tools::CodeView2 editMenu_stxStyle)) startUp
       
   332     "
       
   333 
       
   334     <resource: #menu>
       
   335 
       
   336     ^ 
       
   337      #(Menu
       
   338         (
       
   339          (MenuItem
       
   340             label: 'Undo'
       
   341             itemValue: undo
       
   342             translateLabel: true
       
   343             shortcutKey: Undo
       
   344           )
       
   345          (MenuItem
       
   346             label: 'Again'
       
   347             itemValue: again
       
   348             translateLabel: true
       
   349             shortcutKey: Again
       
   350           )
       
   351          (MenuItem
       
   352             label: '-'
       
   353           )
       
   354          (MenuItem
       
   355             label: 'Cut'
       
   356             itemValue: cut
       
   357             translateLabel: true
       
   358             shortcutKey: Cut
       
   359           )
       
   360          (MenuItem
       
   361             label: 'Copy'
       
   362             itemValue: copySelection
       
   363             translateLabel: true
       
   364             shortcutKey: Copy
       
   365           )
       
   366          (MenuItem
       
   367             label: 'Paste'
       
   368             itemValue: pasteOrReplace
       
   369             translateLabel: true
       
   370             shortcutKey: Paste
       
   371           )
       
   372          (MenuItem
       
   373             label: '-'
       
   374           )
       
   375          (MenuItem
       
   376             label: 'DoIt'
       
   377             itemValue: doIt
       
   378             translateLabel: true
       
   379             shortcutKey: DoIt
       
   380           )
       
   381          (MenuItem
       
   382             label: 'PrintIt'
       
   383             itemValue: printIt
       
   384             translateLabel: true
       
   385             shortcutKey: PrintIt
       
   386           )
       
   387          (MenuItem
       
   388             label: 'InspectIt'
       
   389             itemValue: inspectIt
       
   390             translateLabel: true
       
   391             shortcutKey: InspectIt
       
   392           )
       
   393          (MenuItem
       
   394             label: '-'
       
   395           )
       
   396          (MenuItem
       
   397             label: 'Accept'
       
   398             itemValue: accept
       
   399             translateLabel: true
       
   400             shortcutKey: Accept
       
   401           )
       
   402          (MenuItem
       
   403             label: '-'
       
   404           )
       
   405          (MenuItem
       
   406             label: 'Refactor'
       
   407             translateLabel: true
       
   408             isVisible: false
       
   409             shortcutKey: Shift
       
   410           )
       
   411          (MenuItem
       
   412             label: 'Show Gutter'
       
   413             nameKey: ShowGutter
       
   414             translateLabel: true
       
   415             indication: showGutterChannel
       
   416           )
       
   417          (MenuItem
       
   418             label: 'Services'
       
   419             translateLabel: true
       
   420             submenuChannel: servicesMenu
       
   421           )
       
   422          (MenuItem
       
   423             label: 'Debug'
       
   424             translateLabel: true
       
   425             submenu: 
       
   426            (Menu
       
   427               (
       
   428                (MenuItem
       
   429                   label: 'Inspect '
       
   430                   itemValue: inspectView
       
   431                   translateLabel: true
       
   432                 )
       
   433                (MenuItem
       
   434                   label: 'Inspect Syntax Elements'
       
   435                   itemValue: inspectSyntaxElements
       
   436                   translateLabel: true
       
   437                 )
       
   438                (MenuItem
       
   439                   label: 'Inspect selected selector'
       
   440                   itemValue: inspectSelectedSelector
       
   441                   translateLabel: true
       
   442                 )
       
   443                )
       
   444               nil
       
   445               nil
       
   446             )
       
   447           )
       
   448          (MenuItem
       
   449             label: '-'
       
   450           )
       
   451          (MenuItem
       
   452             label: 'More'
       
   453             nameKey: More
       
   454             translateLabel: true
       
   455             shortcutKey: Ctrl
   293           )
   456           )
   294          )
   457          )
   295         nil
   458         nil
   296         nil
   459         nil
   297       )
   460       )
  2463 ! !
  2626 ! !
  2464 
  2627 
  2465 !CodeView2 class methodsFor:'documentation'!
  2628 !CodeView2 class methodsFor:'documentation'!
  2466 
  2629 
  2467 version_CVS
  2630 version_CVS
  2468     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.6 2011-07-07 14:15:46 vrany Exp $'
  2631     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.7 2011-07-08 11:31:36 cg Exp $'
  2469 !
  2632 !
  2470 
  2633 
  2471 version_SVN
  2634 version_SVN
  2472     ^ '§Id: Tools__CodeView2.st 7797 2011-06-28 07:45:06Z vranyj1 §'
  2635     ^ '§Id: Tools__CodeView2.st 7797 2011-06-28 07:45:06Z vranyj1 §'
  2473 ! !
  2636 ! !