The Trunk: Protocols-cmm.51.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Protocols-cmm.51.mcz

commits-2
Chris Muller uploaded a new version of Protocols to project The Trunk:
http://source.squeak.org/trunk/Protocols-cmm.51.mcz

==================== Summary ====================

Name: Protocols-cmm.51
Author: cmm
Time: 18 October 2015, 8:20:09.29 pm
UUID: cf2acae6-fcc0-4a25-91de-a14d1f9bd66c
Ancestors: Protocols-cmm.50

Open single-message browser is now activated by Command+iId.

=============== Diff against Protocols-cmm.50 ===============

Item was changed:
  ----- Method: InstanceBrowser>>offerMenu (in category 'menu commands') -----
  offerMenu
  "Offer a menu to the user, in response to the hitting of the menu button on the tool pane"
 
  | aMenu |
  aMenu := MenuMorph new defaultTarget: self.
  aMenu title: 'Messages of ', objectViewed nameForViewer.
  aMenu addStayUpItem.
  aMenu addList: #(
  ('vocabulary...' chooseVocabulary)
  ('what to show...' offerWhatToShowMenu)
  -
  ('inst var refs (here)' setLocalInstVarRefs)
  ('inst var defs (here)' setLocalInstVarDefs)
  ('class var refs (here)' setLocalClassVarRefs)
  -
 
  ('navigate to a sender...' navigateToASender)
  ('recent...' navigateToRecentMethod)
  ('show methods in current change set'
  showMethodsInCurrentChangeSet)
  ('show methods with initials...'
  showMethodsWithInitials)
  -
  "('toggle search pane' toggleSearch)"
 
  -
  -
  ('browse full (b)' browseMethodFull)
  ('browse hierarchy (h)' classHierarchy)
- ('browse method (O)' openSingleMessageBrowser)
  ('browse protocol (p)' browseFullProtocol)
  -
  ('fileOut' fileOutMessage)
  ('printOut' printOutMessage)
  -
  ('senders of... (n)' browseSendersOfMessages)
  ('implementors of... (m)' browseMessages)
  ('versions (v)' browseVersions)
  ('inheritance (i)' methodHierarchy)
  -
  ('references... (r)' browseVariableReferences)
  ('assignments... (a)' browseVariableAssignments)
  -
  ('viewer on me' viewViewee)
  ('inspector on me' inspectViewee)
  -
  ('more...' shiftedYellowButtonActivity)).
 
  aMenu popUpInWorld: ActiveWorld!

Item was changed:
  ----- Method: Lexicon>>offerMenu (in category 'menu commands') -----
  offerMenu
  "Offer a menu to the user, in response to the hitting of the menu button on the tool pane"
 
  | aMenu |
  aMenu := MenuMorph new defaultTarget: self.
  aMenu addTitle: 'Lexicon'.
  aMenu addStayUpItem.
  aMenu addList: #(
 
  ('vocabulary...' chooseVocabulary)
  ('what to show...' offerWhatToShowMenu)
  -
  ('inst var refs (here)' setLocalInstVarRefs)
  ('inst var assignments (here)' setLocalInstVarDefs)
  ('class var refs (here)' setLocalClassVarRefs)
  -
 
  ('navigate to a sender...' navigateToASender)
  ('recent...' navigateToRecentMethod)
  ('show methods in current change set'
  showMethodsInCurrentChangeSet)
  ('show methods with initials...'
  showMethodsWithInitials)
  -
  "('toggle search pane' toggleSearch)"
 
  -
  ('browse full (b)' browseMethodFull)
  ('browse hierarchy (h)' classHierarchy)
- ('browse method (O)' openSingleMessageBrowser)
  ('browse protocol (p)' browseFullProtocol)
  -
  ('fileOut' fileOutMessage)
  ('printOut' printOutMessage)
  -
  ('senders of... (n)' browseSendersOfMessages)
  ('implementors of... (m)' browseMessages)
  ('versions (v)' browseVersions)
  ('inheritance (i)' methodHierarchy)
  -
  ('references... (r)' browseVariableReferences)
  ('assignments... (a)' browseVariableAssignments)
  -
  ('more...' shiftedYellowButtonActivity)).
 
  aMenu popUpInWorld: ActiveWorld!