Re: [Pharo-users] Basic controls does not change selection

2017-04-28 Thread Denis Kudriashov
2017-04-28 12:58 GMT+02:00 bachitoph : > Is there any recommendation about the different morphs. What is the best > button, droplist, input field .., because this is a great bulk of classes. > For input field look at Twisty http://forum.world.st/ANN-Twisty-text-with-active-state-framework-td48636

Re: [Pharo-users] Basic controls does not change selection

2017-04-28 Thread bachitoph
Hi Esteban, >>why you say you cannot doit with Spec? As I understand Spec it depends on a SpecLayout which uses columns and rows instead of rectangles. Is there any way to define in Spec a dialog with explicite setting to any control view, something like aControlMorph bounds: (50@50 extent: 100@3

Re: [Pharo-users] Basic controls does not change selection

2017-04-28 Thread Esteban Lorenzano
Hi, why you say you cannot doit with Spec? If I understand correctly, what you want to do is to attach the windows you do to the Pharo world. For doing that with Spec you would do something like this: myMorph := mySpecModel buildWithSpec. World addMorph: myMorph fullFrame: LayoutFrame identity

[Pharo-users] Basic controls does not change selection

2017-04-28 Thread bachitoph
Hello, porting my digitalk / dolphin application to pharo (www.trimfox.com) I have to port my dialog creation part. Unfortunately I can't use Spec because my dialog creation depends on boundingBox: (Pharo bounds:) by calculation position and extent in pixels. So I have to use Morphic. There is the