graphET panel in a GLAMOUR browser

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

graphET panel in a GLAMOUR browser

Fabrice Atrevi
Hi all,
I am trying to develop a browser with GLAMOUR and I wish to have a graphET panel therein. How can I view my graph in this panel

thank you!


--
ATREVI D. Fabrice
Master en Informatique A l'Institut de la Francophonie pour l'Informatique (IFI/Hanoï)

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: graphET panel in a GLAMOUR browser

abergel
Hi!

Try this:
-=-=-=-=-=-=-=-=-=-=-=-=
| b |
b := GLMTabulator new.
b column: #first.
b column: #second.
b transmit to: #first; andShow: [ :a |
a list
display: (1 to: 20);
yourself
].

b transmit from: #first; to: #second; andShow: [ :a |
a roassal2 painting: [ :view :input |
| bg |
bg := GET2Line new view: view; data: (input to: 30).
bg y: [ :x | x * x ].
bg build
]
].

b openOn: 42
-=-=-=-=-=-=-=-=-=-=-=-=

Here is a screenshot:

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On May 12, 2014, at 1:44 PM, Fabrice Atrevi <[hidden email]> wrote:

Hi all,
I am trying to develop a browser with GLAMOUR and I wish to have a graphET panel therein. How can I view my graph in this panel? 

thank you!

-- 
ATREVI D. Fabrice
Master en Informatique A l'Institut de la Francophonie pour l'Informatique (IFI/Hanoï)
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev