Skip to content

Commit

Permalink
add new process browser to the world menu, so people can test
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Jan 15, 2025
1 parent 6911f73 commit 8039356
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/NewTools-ProcessBrowser/StProcessBrowser.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ StProcessBrowser class >> initialize [
self registerWellKnownProcesses
]

{ #category : 'world menu' }
StProcessBrowser class >> menuCommandOn: aBuilder [
<worldMenu>

(aBuilder item: #'New Process Browser')
parent: #NewToolsMenu;
order: 3;
action:[ self new open ];
help: 'Provides a view of all of the processes (threads) executing in Smalltalk.';
iconName: self taskbarIconName
]

{ #category : 'private' }
StProcessBrowser class >> nameAndRulesFor: aProcess [
"Answer a nickname and two flags: allow-stop, and allow-debug"
Expand Down Expand Up @@ -66,6 +78,12 @@ StProcessBrowser class >> registerWellKnownProcesses [
}
]

{ #category : 'world menu' }
StProcessBrowser class >> taskbarIconName [

^ #processBrowser
]

{ #category : 'accessing' }
StProcessBrowser class >> title [

Expand Down

0 comments on commit 8039356

Please sign in to comment.