Tools__ViewTreeApplication.st
changeset 3186 80a20e5881a5
parent 3185 3592ea3afb9e
child 3209 c13a1f4f4ccb
equal deleted inserted replaced
3185:3592ea3afb9e 3186:80a20e5881a5
   167 flyByHelpSpec
   167 flyByHelpSpec
   168     <resource: #help>
   168     <resource: #help>
   169 
   169 
   170     ^super flyByHelpSpec addPairsFrom:#(
   170     ^super flyByHelpSpec addPairsFrom:#(
   171 
   171 
       
   172 #doRedraw
       
   173 'Force the application to redraw its windows'
       
   174 
   172 #doUncatchEvents
   175 #doUncatchEvents
   173 'Release picked view and uncatch events\(currently locked for widget selection)'  
   176 'Release picked view and uncatch events\(currently locked for widget selection)'  
   174 
   177 
   175 #doCatchEvents
   178 #doCatchEvents
   176 'Lock view and catch events for widget selection\(currently unlocked)'  
   179 'Lock view and catch events for widget selection\(currently unlocked)'  
       
   180 
       
   181 #doInspectApplication
       
   182 'Inspect the selected view''s application'  
       
   183 
       
   184 #doBrowseApplication
       
   185 'Browse the selected view''s application'  
       
   186 
       
   187 #doPickView
       
   188 'Pick a widget with the mouse and inspect its view hierarchy'  
   177 
   189 
   178 )
   190 )
   179 ! !
   191 ! !
   180 
   192 
   181 !ViewTreeInspectorApplication class methodsFor:'image specs'!
   193 !ViewTreeInspectorApplication class methodsFor:'image specs'!
   802           )
   814           )
   803          (MenuItem
   815          (MenuItem
   804             label: '-'
   816             label: '-'
   805           )
   817           )
   806          (MenuItem
   818          (MenuItem
       
   819             activeHelpKey: doBrowseApplication
   807             enabled: hasSingleSelectionHolder
   820             enabled: hasSingleSelectionHolder
   808             label: 'Browse Application'
   821             label: 'Browse Application'
   809             itemValue: doBrowse:
   822             itemValue: doBrowse:
   810             translateLabel: false
   823             translateLabel: false
   811             isButton: true
   824             isButton: true
   812             hideMenuOnActivated: false
   825             hideMenuOnActivated: false
   813             labelImage: (ResourceRetriever ToolbarIconLibrary systemBrowser24x24Icon2)
   826             labelImage: (ResourceRetriever ToolbarIconLibrary systemBrowser24x24Icon2)
   814             argument: application
   827             argument: application
   815           )
   828           )
   816          (MenuItem
   829          (MenuItem
       
   830             activeHelpKey: doInspectApplication
   817             enabled: hasSingleSelectionHolder
   831             enabled: hasSingleSelectionHolder
   818             label: 'Inspect Application'
   832             label: 'Inspect Application'
   819             itemValue: doInspect:
   833             itemValue: doInspect:
   820             translateLabel: false
   834             translateLabel: false
   821             isButton: true
   835             isButton: true