Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1090 by damien.c...(a)gmail.com: In latest Moose 5.0, I can't
scroll the distribution map view
https://code.google.com/p/moose-technology/issues/detail?id=1090
| dm |
dm := DistributionMap new.
dm colors: {(Color r: 0.6 g: 0.0 b: 0.0). (Color r: 0.0 g: 0.0 b: 0.6)}.
dm onElements: (Collection withAllSubclasses flatCollect: [:class | class
methods])
containers: #methodClass
properties: [:element | element bytecode size ].
dm title: 'Authors Map'.
dm open.
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1076 by damien.c...(a)gmail.com: System complexity can't export as
PNG
http://code.google.com/p/moose-technology/issues/detail?id=1076
When viewing the system complexity visualization, clicking on "Export as
PNG" under the black triangle opens a debugger: ROAthensImageExporter has
the sublcass responsability to implement exportViewAsPNG:
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-GlamorousToolkit
New issue 1085 by alexandr...(a)gmail.com: tool tip in the Playground
http://code.google.com/p/moose-technology/issues/detail?id=1085
Describe the problem: what do you get? what do you expect?
If I put the mouse above the play icon, top right of a window. The
keybinding (cmd-o) may be indicated no?
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1044 by v.blonde...(a)gmail.com: Can't debug block local variables
in GT debugger
http://code.google.com/p/moose-technology/issues/detail?id=1044
Describe the problem: what do you get? what do you expect?
In the GT Debugger, when you debug a block with a local variable; you can't
read its value because the variable is unknown...
How to reproduce the problem: step by step if necessary
Write in a Workspace :
1 = 1 ifTrue: [ |local | local := 1 ]
Debug It!
Use the through button to go into the block.
Try to inspect the local variable.
Additional information: platform, context which may impact the problem
Moose 5.0 latest - Ubuntu 13.10 - x64
Please fill in the labels with the following information:
* Type-Defect
* Component-GT-Debugguer
* Milestone-5.0
--
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
Hello,
I get interested in Hismo so I tried a little bit and here is my first
steps in video :
https://www.dropbox.com/s/yss3zazouvbv28p/screencast2.mp4?dl=0
It seems that I lost class inheritance when importing an hismo meta model
from my monticello versions (.mse)…
Is it normal, am I doing something wrong ?
Thank you !
Pierre Chanson
Hello,
Usman and I use glamour a lot to quickly create cool browsers.
To capitalize some recurrent parts of our browsers, we create subclasses to
GLMCompositePresentation and then use it that way:
browser := GLMTabulator withStatusbar.
...structure definition...
browser transmit to: #selector; andShow: [ :a | a custom:
(MyCustomPresentation new)].
then we just have to implement the #compose method and everything is fine.
But now i have to transmit data to something else (I want to create a
filter that will receive a collection of entities and transmit only a
subset of it to another presentation)
I am using some morphs in this custom presentation and on some events I
send:
(self pane port: #filtered) value: self filter
In my browser i have a transmission like this:
browser transmit from: #selector port: #filtered; to: #graph; andShow: [ :a
| a list display: [ :list | list ] ].
It doesn't work because the pane obtained in my custom presentation is not
the one defined in my browser but another one named 'root'.
Maybe i am not using it in the right way but i don't see another way to do
it correctly (I would like to avoid to set the right pane in my
presentation).
Thanks in advance for your help.
PS: I tried to look in the MooseBook but the server is down
--
*Guillaume Larcheveque*
Hi,
I am wondering what is the proper level at which should be addressed
composition of elements.
Imagine I want to create a diagram of UML class but I want to be able to
dynamically add and remove new lines and sections, including various
formatting (underline, italics, bold, ...) of each line separately. The
RTUMLClassBuilder (or any other builder for that matter) is not an option
since it's a one time build.
The option I see is to subclass RTShape (let's name it MyRTUmlClass) and
implement method trachelShapeFor: .
Now the issue is, that I cannot use other RTShape (Roassal) elements,
because they would have to be inserted into RTView which may not be
available at the time - is there a way around it?
So the other option is to use TRShape (Trachel) elements instead which
would be fine except I feel like I am duplicating code of roassal elements
(so for TRLabelShape I would copy RTLabel trachelShapeFor: and bend it for
my needs), and the second issue is that in updateFor:trachelShape: I would
need to access internal structure of the element and change it (because for
example a new method was added) - does that break encapsulation?
And finally, from conceptual standpoint what should be the content of
RTView elements? Because if I have diagram full of UML classes I probably
don't care about the content of them when doing layouting - so I would
prefer to have only MyRTUmlClass elements there and not every single label
inside it (as is the case of RTUmlClassBuilder), because otherwise having
access to RTView elements is useless and I must keep reference to correct
objects myself.
Thanks!
Peter
p.s.: Is it currently possible to format text? I saw only color, font and
size... what about underline/italics/bold?