[squeak-dev] The Trunk: ToolBuilder-Morphic-laza.38.mcz

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

[squeak-dev] The Trunk: ToolBuilder-Morphic-laza.38.mcz

commits-2
Alexander Lazarević uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-laza.38.mcz

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

Name: ToolBuilder-Morphic-laza.38
Author: laza
Time: 8 September 2009, 10:33:45 am
UUID: 04c5735d-1db6-a549-b264-a203a1fdf5bf
Ancestors: ToolBuilder-Morphic-laza.37

I recognized, that SystemProgressMorph got extended to support changing the label during progress display. This was not fully supported and I changed that. What was also missing was the realignment.
In additon SystemProgressMorph now supports label only display and handles informUserDuring:. See the examples for details.
I also changed the font and some of the look and layout.


=============== Diff against ToolBuilder-Morphic-ar.36 ===============

Item was changed:
  ----- Method: MorphicUIManager>>informUserDuring: (in category 'ui requests') -----
  informUserDuring: aBlock
  "Display a message above (or below if insufficient room) the cursor
  during execution of the given block.
  UIManager default informUserDuring:[:bar|
  #(one two three) do:[:info|
  bar value: info.
  (Delay forSeconds: 1) wait]]"
+ SystemProgressMorph
- (MenuMorph new addTitle: ' ')
  informUserAt: Sensor cursorPoint during: aBlock.!