Hola,
I found a bug: RTEdge class>>on:from:to: produces a MNU because it does self on: aModel and that message is not understood.
---> Save our in-boxes! http://emailcharter.org <---
Johan Fabry - http://pleiad.cl/~jfabry
PLEIAD lab - Computer Science Department (DCC) - University of Chile
Hola,
for my visualization, I want to be able to change the color of a shape after the view has been opened, depending on a given condition. So I wrote something like below, where the instvar lastview holds the view that was opened.
highlightNode: aName
|node|
node := lastview elementFromModel: aName.
node isNil ifFalse: [
node shape color: (Color red).
lastview signalUpdate.]
Sadly, I do not see the shape changing color to red. What can I do to have this working?
Thanks in advance,
---> Save our in-boxes! http://emailcharter.org <---
Johan Fabry - http://pleiad.cl/~jfabry
PLEIAD lab - Computer Science Department (DCC) - University of Chile
Roassal Tip #2: Labeling bar with GraphET.
You can use @RTLabelled for each bar elements. Consider the following example:
-=-=-=-=-=-=-=-=-=
| diagram |
diagram := GET2DiagramBuilder new.
diagram horizontalBarDiagram
models: #(10 12 13 200 150 -13 149 -151);
regularAxis.
diagram build.
"Pick the horizontal bars and add a label"
diagram view elements do: [ :e |
(e shape class == RTBox)
ifTrue: [ e @ RTLabelled new right ]
].
diagram view open
-=-=-=-=-=-=-=-=-=
https://www.facebook.com/ObjectProfile/photos/a.341189379300999.82969.34054…
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi,
I started the slaves of the moose project in the CI portal but currently
there are some issues with Jenkins connecting to the slaves. Inria people
are working on it. Once this problem resolved, I'll try to relaunch slave
agents.
regards,
Usman
Hi!
Doru, would it make sense to have RTBuilder>>build returns the view?
Like that, there is no need of the last line in:
-=-=-=-=-=-=-=-=
| b |
b := RTGraphBuilder new.
…
b build.
b view
-=-=-=-=-=-=-=-=
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1068 by anne.et...(a)gmail.com: MNU: GLMTablePresentation>>tags:
http://code.google.com/p/moose-technology/issues/detail?id=1068
Describe the problem: what do you get? what do you expect?
There is a MNU when using the metabrowser.
How to reproduce the problem: step by step if necessary
Open the metabrowser. Click on any entity, the debugger opens. The right
column of the metabrowser is empty. Nothing appear.
Additional information: platform, context which may impact the problem
Due to the CI problems, I am on version 1207 of Moose 5.0, with the last
version of Glamour.
Please fill in the labels with the following information:
* Type-Defect, Type-Enhancement, Type-Engineering, Type-Review, Type-Other
* Component-XXX
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
I’m trying to use Moose to analyze some C++ and Java code and will need some advice. After some effort I’ve been able to parse a directory containing *.cp files and open it in Moose. When I click on the ‘All classes’ it claims that there are 309 but as far as I can tell none have any superclass or subclasses. Is that to be expected?
James
Hi,
with the new interaction RTLabelled, I have played with it to integrate in
my work and I have found a little bug.
| view box els |
view := RTView new.
box := RTBox new element.
els := (RTEllipse new color: Color red) elementsOn: (1 to: 30).
view add: box; addAll: els.
box @ RTDraggable.
box @ (RTLabelled new text: 'Container').
RTNest new layout: RTGridLayout; on: box nest: els.
view open
The label is not at the right place. If you move the box it will move to
its place.
But if you add the interaction RTLabelled after the nest everything is ok.
Thanks
--
Leo Perard
The syntax hilighlter in moose does not take advantage of a reallllllly cool feaures of shout
Type
Po
Pox
Poin
to understand the difference
with the default hilighter and we the tango shout color scheme.
You will see that
Po is ok
Pox is red
Po is ok because Point is correct
Stef