Hi,
Seems pretty interesting. I have an odd behaviour though. Besides the
lateral view in the playground, a new window called "Inspector on a
RTView" is created. When I move the scroller on that new window, the
view in the right part of the playgrond starts to move. Please test what
happens when you move the scroller in the new window to see it for yourself.
Hope it helps,
Offray
El 04/03/15 a las 09:21, Pierre CHANSON escribió:
Hi all,
RTScrollBarBuilder allows you to add a scalable scroll bar or scroll pad to your
Roassal view.
see examples in RTScrollBarBuilderExamples, or try to execute this in a
workspace:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
b := RTMondrian new.
b shape rectangle
withBorder;
width: [ :cls | cls numberOfVariables * 5];
height: #numberOfMethods;
linearFillColor: #numberOfLinesOfCode within: RTObject
withAllSubclasses.
b nodes: RTObject withAllSubclasses.
b edges connectFrom: #superclass.
b layout tree.
b build.
b2 := RTScrollBarBuilder new.
b2 view: b view.
b2 objects: b view elements.
b2 build inspect
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Feedbacks are welcome !
cheers,
Pierre