[squeak-dev] The Trunk: Protocols-ct.83.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 5 17:48:28 UTC 2022


Christoph Thiede uploaded a new version of Protocols to project The Trunk:
http://source.squeak.org/trunk/Protocols-ct.83.mcz

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

Name: Protocols-ct.83
Author: ct
Time: 2 April 2022, 6:49:54.492838 pm
UUID: 63954fa8-6cc1-8048-8bbb-5c9a2d49332d
Ancestors: Protocols-mt.82

Replaces missing icon in lexicon. Is this ok?

=============== Diff against Protocols-mt.82 ===============

Item was changed:
  ----- Method: Lexicon>>addSpecialButtonsTo:with: (in category 'toolbuilder') -----
  addSpecialButtonsTo: buttonPanelSpec with: builder
  
  	| homeCatBtnSpec menuBtnSpec mostGenericBtnSpec |
  	homeCatBtnSpec := builder pluggableButtonSpec new
  		model: self;
  		action: #showHomeCategory;
+ 		label: MenuIcons smallHomeIcon asMorph;
- 		label: (ScriptingSystem formAtKey: #Cat) asMorph;
  		help: 'show this method''s home category';
  		yourself.
  	menuBtnSpec := builder pluggableButtonSpec new
  		model: self;
  		action: #offerMenu;
  		label: (ScriptingSystem formAtKey: #TinyMenu) asMorph;
  		help: 'click here to get a menu with further options';
  		yourself.
  	mostGenericBtnSpec :=builder pluggableButtonSpec new
  		model: self;
  		action: #chooseLimitClass;
  		label: #limitClassString;
  		help: 'Governs which classes'' methods should be shown.  If this is the same as the viewed class, then only methods implemented in that class will be shown.  If it is ProtoObject, then methods of all classes in the vocabulary will be shown.'.
  	buttonPanelSpec children
  		add: homeCatBtnSpec;
  		addFirst: mostGenericBtnSpec;
  		addFirst: menuBtnSpec.!



More information about the Squeak-dev mailing list