Thanks Andrei for the tips! After adaptation, I have this script
browser. I will look to improve it a bit more with menu and syntax
colouring.
The wrapper part of your solution reads like Chinese to me. May be I am
miss using Glamour, and I will be happy to read about suggestions for
better use.
Hi,
If I understood the issue correctly then the script below should address it.
It starts from the solution Juraj proposed but wraps each presentation in
a wrapper.
The script is not that obvious as this is not really a use case glamour
supports out of the box.
Also in glamour multiple presentat
Hi,
I am able to produce this:
-=-=-=-
browser := GLMTabulator new
column: #one;
column: #two;
column: #three;
yourself.
browser transmit to: #one; andShow: [ :composite |
composite fastList ].
browser transmit from: #one; to: #two; andShow: [ :c
2017-06-30 9:55 GMT+02:00 Hilaire :
> I extended the browser definition with:
>
> browser transmit
> from: #scripts;
> from: #categories;
> to: #methods;
> when: [ :a :b | a isMeta not ];
> andShow: [:a | self methodsIn: a ].
> browser transmit
>
I extended the browser definition with:
browser transmit
from: #scripts;
from: #categories;
to: #methods;
when: [ :a :b | a isMeta not ];
andShow: [:a | self methodsIn: a ].
browser transmit
from: #scripts;
from: #categories;
Hi,
I try to build a dedicated browser for user scripting on DrGeo. I am
learning from the Deep into Pharo Glamour chapter, extending the given
example.
Regarding the method category pane, I need both instance and class side,
so I write it like this:
categoriesIn: constructor
constructor list