Etoys Inbox: Etoys-kfr..98.mcz

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

Etoys Inbox: Etoys-kfr..98.mcz

commits-2
A new version of Etoys was added to project Etoys Inbox:
http://source.squeak.org/etoysinbox/Etoys-kfr..98.mcz

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

Name: Etoys-kfr..98
Author: kfr.
Time: 6 November 2011, 12:54:02 am
UUID: 2147e370-03b7-c34b-9fa5-3a2438e4c1ff
Ancestors: Etoys-kfr.97

make separate category for graphic filters

=============== Diff against Etoys-kfr.97 ===============

Item was changed:
  ----- Method: EToyVocabulary>>setCategoryDocumentationStrings (in category 'initialization') -----
  setCategoryDocumentationStrings
  "Initialize the documentation strings associated with the old etoy categories, in English"
 
  self setCategoryStrings: #(
  (basic 'basic' 'a few important things')
  (#'book navigation' 'book navigation' 'relating to book, stacks, etc')
  (button 'button' 'for thinking of this object as a push-button control')
  (collections 'collections' 'for thinking of this object as a collection')
  (fog 'fog' '3D fog')
  (geometry 'geometry' 'measurements and coordinates')
  (#'color & border' 'color & border' 'matters concerning the colors and borders of objects')
  (graphics 'graphics' 'for thinking of this object as a picture')
+ (#'graphics filters' 'graphics filters' 'for working of this object as a picture')
  (variables 'variables' 'variables added by this object')
  (joystick 'joystick' 'the object as a Joystick')
  (miscellaneous 'miscellaneous' 'various commands')
  (motion 'motion' 'matters relating to moving and turning')
  (paintbox 'paintbox' 'the painting palette')
  (#'pen trails' 'pen trails' 'relating to trails put down by pens')
  (#'pen use' 'pen use' 'use of an object''s "pen"')
  (playfield 'playfield' 'the object as a container for other visible objects')
  (sampling 'sampling' 'sampling')
  (scripting 'scripting' 'commands to start and stop scripts')
  (scripts 'scripts' 'methods added by this object')
  (slider 'slider' 'functions useful to sliders')
  (speaker 'speaker' 'the object as an audio Speaker')
  (#'stack navigation' 'stack navigation' 'navigation within a stck')
  (storyboard 'storyboard' 'storyboard')
  (tests 'tests' 'yes/no tests, to use in "Test" panes of scripts')
  (text 'text' 'The object as text')
  (vector 'vector' 'The object as a vector')
  (viewing 'viewing' 'matters relating to viewing')
   ) !

Item was changed:
  ----- Method: SketchMorph class>>additionsToViewerCategories (in category '*eToys-scripting') -----
  additionsToViewerCategories
  "Answer a list of (<categoryName> <list of category specs>) pairs that characterize the phrases this kind of morph wishes to add to various Viewer categories."
 
  ^ #((graphics (
  (slot graphic 'The picture currently being worn' Graphic readWrite Player getGraphic Player setGraphic:)
  (command wearCostumeOf: 'wear the costume of...' Player)
  (slot baseGraphic 'The picture originally painted for this object, but can subsequently be changed via menu or script' Graphic readWrite Player getBaseGraphic Player setBaseGraphic:)
  (command restoreBaseGraphic 'Make my picture be the one I remember in my baseGraphic')
 
  (slot rotationStyle 'How the picture should change when the heading is modified' RotationStyle readWrite Player getRotationStyle Player setRotationStyle:)
  (command flipLeftRight 'Flip the picture left to right' Player)
  (command flipUpDown 'Flip the picture upside down' Player)
+
- (command hueShift: 'Shift the hue of the pictures colors. -180 to 180' Number)
- (command brightnessShift: 'Shift the brightness of the picture -100 to 100' Number)
- (command saturationShift: 'Shift the saturation of the pictures colors -100 to 100' Number)
- (command blur: 'Blur the picture. 1 to 10' Number)
- (command removeFilters 'Remove the picture filters' )
  )))
 
 
  !

Item was added:
+ ----- Method: SketchMorph class>>additionsToViewerCategoryGraphicsFilters (in category '*eToys-scripting') -----
+ additionsToViewerCategoryGraphicsFilters
+ "Answer a list of (<categoryName> <list of category specs>) pairs that characterize the phrases this kind of morph wishes to add to various Viewer categories."
+
+ ^ #(
+ #'graphics filtrers'
+ (
+ (command hueShift: 'Shift the hue of the pictures colors. -180 to 180' Number)
+ (command brightnessShift: 'Shift the brightness of the picture -100 to 100' Number)
+ (command saturationShift: 'Shift the saturation of the pictures colors -100 to 100' Number)
+ (command blur: 'Blur the picture. 1 to 10' Number)
+ (command removeFilters 'Remove the picture filters' )
+ ))
+
+
+ !

_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev