Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Glamour Milestone-4.4
New issue 542 by tudor.gi...(a)gmail.com: Completion in Glamour text
presentation for Smalltalk
http://code.google.com/p/moose-technology/issues/detail?id=542
The Glamour TextPresentation for Smalltalk should offer completion as well.
Updates:
Labels: -Milestone-4.2 Milestone-4.4
Comment #5 on issue 106 by tudor.gi...(a)gmail.com: Disable the default
Smalltalk shortcuts from the Text Morphic widget in Glamour
http://code.google.com/p/moose-technology/issues/detail?id=106
(No comment was entered for this change.)
Status: New
Owner: ----
CC: georgega...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-ExternalTools
New issue 536 by tudor.gi...(a)gmail.com: inFusion should export parentScope
instead of container in Function
http://code.google.com/p/moose-technology/issues/detail?id=536
currently it exports container, but it should be parentScope
Status: New
Owner: ----
CC: georgega...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-ExternalTools
New issue 537 by tudor.gi...(a)gmail.com: inFusion should export explicit
sourceAnchor for Function
http://code.google.com/p/moose-technology/issues/detail?id=537
Currently, it exports sourceAnchor as a string like this:
(FAMIX.Function
(sourceAnchor 'path')
...)
It should be
(FAMIX.FileAnchor (id: 1) ...)
(FAMIX.Function
(sourceAnchor (ref: 1)))
Status: New
Owner: ----
CC: georgega...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-ExternalTools
New issue 544 by tudor.gi...(a)gmail.com: inFusion should point the C++
source text to the implementation, not definition
http://code.google.com/p/moose-technology/issues/detail?id=544
Currently, the source anchor for a c/c++ class or methods points to the
definition in the header. It should point to the implementation from the
c/cpp file.
Status: New
Owner: ----
CC: alexandr...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Mondrian Milestone-4.4
New issue 574 by tudor.gi...(a)gmail.com: Nodes with complex shapes do not
position the children nodes with complex shapes properly
http://code.google.com/p/moose-technology/issues/detail?id=574
Another issue related to complex shapes. Try the following code:
view shape umlClass.
view node: 'hello' forIt: [
view shape umlClass.
view nodes: (1 to: 5).
view verticalLineLayout
]
You will see that the children now move properly with the parent node, but
they are not positioned correctly. However, it works well with simple
shapes for the children.
A more complex example can be seen below:
view shape umlClass.
view node: 'hello' forIt: [
view shape umlClass.
view nodes: (1 to: 5) forEach: [:each |
view shape umlClass.
view nodes: (1 to: each ).
view verticalLineLayout ].
view verticalLineLayout
]
Updates:
Labels: -Milestone-4.2
Comment #2 on issue 273 by tudor.gi...(a)gmail.com: The Morphic Glamour
should update the selectedText in a TextPresentation
http://code.google.com/p/moose-technology/issues/detail?id=273
(No comment was entered for this change.)
Status: New
Owner: tudor.gi...(a)gmail.com
Labels: Type-Defect Priority-High Component-Glamour Milestone-4.3
New issue 492 by tudor.gi...(a)gmail.com: Glamour browsers do not release all
subscriptions to announcer objects
http://code.google.com/p/moose-technology/issues/detail?id=492
I noticed that in some complex updating between panels, using an external
announcer, some of the update subscriptions were not removed when the
browser is closed. I debugged a little and I founded that this
implementation:
GLMUpdateAction>>unregisterFromAllAnnouncements
announcerObjects ifNotNil: [
announcerObjects do: [:each |
each unsubscribe: self ] ]
is bugged, because if announcerObjects are not previously computed (and in
some cases that's what happens), the subscription is not removed.
This implementation (just using the accessor instead the direct object),
solves the problem (but I don't know is it's a right fix, and it should be
a fix in other place)
GLMUpdateAction>>unregisterFromAllAnnouncements
self announcerObjects ifNotNil: [ :objects |
objects do: [:each |
each unsubscribe: self ] ]
Cheers,
Esteban