[squeak-dev] The Trunk: EToys-mt.436.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 17 14:26:47 UTC 2021


Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.436.mcz

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

Name: EToys-mt.436
Author: mt
Time: 17 March 2021, 3:26:41.577151 pm
UUID: 70827cb5-0a4a-e249-81d1-53d77610df40
Ancestors: EToys-mt.435

Separate move from extension to make merging work without conflicts.

Complements EToys-mt.435.

=============== Diff against EToys-mt.435 ===============

Item was removed:
- ----- Method: PointType>>addExtraItemsToMenu:forSlotSymbol: (in category '*Etoys-defaults') -----
- addExtraItemsToMenu: aMenu forSlotSymbol: slotSym
- 	"If the receiver has extra menu items to add to the slot menu, here is its chance to do it.  The defaultTarget of the menu is the player concerned."
- 
- 	aMenu add: 'decimal places...' translated selector: #setPrecisionFor: argument: slotSym.
- 	aMenu balloonTextForLastItem: 'Lets you choose how many decimal places should be shown in readouts for this variable' translated!

Item was removed:
- ----- Method: PointType>>defaultArgumentTile (in category '*Etoys-defaults') -----
- defaultArgumentTile
- 	"Answer a tile to represent the type"
- 
- 	^ (0 at 0) newTileMorphRepresentative typeColor: self typeColor!

Item was removed:
- ----- Method: PointType>>newReadoutTile (in category '*Etoys-tiles') -----
- newReadoutTile
- 	"Answer a tile that can serve as a readout for data of this type"
- 
- 	| aTile |
- 	aTile := NumericReadoutTile new typeColor: Color lightGray lighter.
- 	aTile setProperty: #PointValued toValue: true.
- 	^ aTile!

Item was removed:
- ----- Method: PointType>>wantsArrowsOnTiles (in category '*Etoys-defaults') -----
- wantsArrowsOnTiles
- 	"Answer whether this data type wants up/down arrows on tiles representing its values"
- 
- 	^ false!

Item was removed:
- ----- Method: PointType>>wantsAssignmentTileVariants (in category '*Etoys-tiles') -----
- wantsAssignmentTileVariants
- 	"Answer whether an assignment tile for a variable of this type should show variants to increase-by, decrease-by, multiply-by."
- 
- 	^ true!

Item was removed:
- ----- Method: PointType>>wantsSuffixArrow (in category '*Etoys-defaults') -----
- wantsSuffixArrow
- 	"Answer whether a tile showing data of this type would like to have a suffix arrow"
- 
- 	^ true!



More information about the Squeak-dev mailing list