[squeak-dev] The Inbox: ToolBuilder-Kernel-tpr.135.mcz

Marcel Taeumel marcel.taeumel at hpi.de
Mon Jan 6 10:44:11 UTC 2020


Uh ... not sure about this one. You try to manage two (or more) elements on a screen here. Sounds like a job for a (mediating) owner's layout policy. This proposal sounds rather brittle for the intended effect.

We should tackle this issue of overlapping pop-up stuff after the 5.3 release.

Best,
Marcel
Am 31.12.2019 22:38:14 schrieb commits at source.squeak.org <commits at source.squeak.org>:
A new version of ToolBuilder-Kernel was added to project The Inbox:
http://source.squeak.org/inbox/ToolBuilder-Kernel-tpr.135.mcz

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

Name: ToolBuilder-Kernel-tpr.135
Author: tpr
Time: 31 December 2019, 1:38:05.296265 pm
UUID: 85fb4bde-73a1-4dde-b7c2-bec1821f90eb
Ancestors: ToolBuilder-Kernel-mt.134

change the default position for progress bars to slightly below the center of the screen. This should at least help with cases where a notifier/conformer/informer pops up during a large package load and gets hidden behind the progress bar morph.
The Rectangle method should probably be moved back to Graphics-Primitives but by including it here we can avoid the potential for a dNU whilst loading this.

=============== Diff against ToolBuilder-Kernel-mt.134 ===============

Item was changed:
----- Method: ProgressInitiationException class>>preferredProgressBarPosition (in category 'accessing') -----
preferredProgressBarPosition
+ ^ PreferredProgressBarPosition ifNil: [ #belowCenter ]!
- ^ PreferredProgressBarPosition ifNil: [ #center ]!

Item was added:
+ ----- Method: Rectangle>>belowCenter (in category '*ToolBuilder-Kernel-accessing') -----
+ belowCenter
+ "Answer the point slightly below the center of the receiver. This is a good candidate spot for progress morphs to default to since it leaves room to see any other dialogues that default to screen center"
+
+ ^self topLeft + self bottomRight // (2 at 1.7)!


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20200106/9063dee9/attachment.html>


More information about the Squeak-dev mailing list