[Pharo-users] Roassal & Spec?

2013-05-30 Thread MartinW
Hi,
how can i combine a Roassal visualization and a Spec UI?
Is there already some Roassal-Spec?
See attached screenshot for what i am trying to get. 
M.

 



--
View this message in context: http://forum.world.st/Roassal-Spec-tp4690745.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



[Pharo-users] Spec & Roassal?

2013-05-30 Thread MartinW
=Seems one has to resubscribe to the new mailing-lists? sorry if this comes
as a duplicate=

Hi, 
how can i combine a Roassal visualization and a Spec UI? 
Is there already some Roassal-Spec? 
See attached screenshot for what i am trying to get. 
M. 

 




--
View this message in context: http://forum.world.st/Spec-Roassal-tp4690746.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



Re: [Pharo-users] Roassal & Spec?

2013-05-30 Thread Stéphane Ducasse
Ben is on holiday.
Now I imagine that we should get a model that encapsulates a roassal easel is 
the way to go
and it would be cool to have.



> Hi,
> how can i combine a Roassal visualization and a Spec UI?
> Is there already some Roassal-Spec?
> See attached screenshot for what i am trying to get. 
> M.
> 
>  
> 
> 
> 
> --
> View this message in context: 
> http://forum.world.st/Roassal-Spec-tp4690745.html
> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
> 




Re: [Pharo-users] Roassal & Spec?

2013-05-30 Thread Clément Bera
Hello,
How is your Roassal visualization ? Is it a morph ?
If it is a morph I guess you would need to do a ComposableModel wrapper to
integrate it in a spec.


2013/5/30 MartinW 

> Hi,
> how can i combine a Roassal visualization and a Spec UI?
> Is there already some Roassal-Spec?
> See attached screenshot for what i am trying to get.
> M.
>
> 
>
>
>
> --
> View this message in context:
> http://forum.world.st/Roassal-Spec-tp4690745.html
> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
>
>


-- 
Clément Béra
Mate Virtual Machine Engineer
Bâtiment B 40, avenue Halley 59650 *Villeneuve d'Ascq*


Re: [Pharo-users] Roassal & Spec?

2013-05-30 Thread Tudor Girba
You could also try to use Glamour for that:

Here is an example that renders something along the wished lines. You can run 
it in a Moose image:
https://ci.inria.fr/moose/job/moose-latest-dev-4.8/lastSuccessfulBuild/artifact/moose-latest-dev-4.8.zip

composer := GLMCompositePresentation new.
composer tabulator with: [ :t |
t row: #visualization; row: #list; row: #details.
t transmit to: #visualization; andShow: [ :a |
a roassal 
title: 'Visualization';
painting: [ :view :collection | 
view nodes: collection.
view edgesFrom: [ :x | x // 5 ].
view radialNarrowTreeLayout ] ].
t transmit from: #visualization; to: #list; andShow: [ :a |
a list 
title: 'List';
display: [ :number | 1 to: number ]
 ].
t transmit from: #list; to: #details; andShow: [ :a | 
a text
title: 'Details';
display: [ :number | number asString ] ] ].
composer openOn: (1 to: 420)

Cheers,
Doru


On May 30, 2013, at 11:40 AM, MartinW  wrote:

> Hi,
> how can i combine a Roassal visualization and a Spec UI?
> Is there already some Roassal-Spec?
> See attached screenshot for what i am trying to get. 
> M.
> 
>  
> 
> 
> 
> --
> View this message in context: 
> http://forum.world.st/Roassal-Spec-tp4690745.html
> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
> 

--
www.tudorgirba.com

"Problem solving efficiency grows with the abstractness level of problem 
understanding."