Updates: Status: WontFix
Comment #1 on issue 361 by alexandr...@gmail.com: Glamour status bar should take into account Mondrian window status http://code.google.com/p/moose-technology/issues/detail?id=361
In Roassal, we should instead add an element about this. It should not take that long to do it.
What do you mean about the element?
Doru
On Wed, Oct 3, 2012 at 10:17 PM, moose-technology@googlecode.com wrote:
Updates: Status: WontFix
Comment #1 on issue 361 by alexandr...@gmail.com: Glamour status bar should take into account Mondrian window status
http://code.google.com/p/moose-technology/issues/detail?id=361
In Roassal, we should instead add an element about this. It should not take that long to do it.
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Try the following:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | view statusBar |
view := ROMondrianViewBuilder new.
statusBar := ROElement new + ROLabel + ROBox white. view stack add: statusBar. statusBar translateTo: 0 @ 480.
view interaction on: ROMouseEnter do: [ :event | statusBar model: event element model. ]. view shape rectangle size: 10. view nodes: (Collection withAllSubclasses). view edgesFrom: #superclass. view treeLayout.
view open -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Being away from Morphic is really cool :-)
Cheers, Alexandre
On Oct 3, 2012, at 5:45 PM, Tudor Girba tudor@tudorgirba.com wrote:
What do you mean about the element?
Doru
On Wed, Oct 3, 2012 at 10:17 PM, moose-technology@googlecode.com wrote:
Updates: Status: WontFix
Comment #1 on issue 361 by alexandr...@gmail.com: Glamour status bar should take into account Mondrian window status
http://code.google.com/p/moose-technology/issues/detail?id=361
In Roassal, we should instead add an element about this. It should not take that long to do it.
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Every thing has its own flow" _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Nice!
On Thu, Oct 4, 2012 at 12:04 AM, Alexandre Bergel alexandre.bergel@me.comwrote:
Try the following:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | view statusBar |
view := ROMondrianViewBuilder new.
statusBar := ROElement new + ROLabel + ROBox white. view stack add: statusBar. statusBar translateTo: 0 @ 480.
view interaction on: ROMouseEnter do: [ :event | statusBar model: event element model. ]. view shape rectangle size: 10. view nodes: (Collection withAllSubclasses). view edgesFrom: #superclass. view treeLayout.
view open
Being away from Morphic is really cool :-)
Cheers, Alexandre
On Oct 3, 2012, at 5:45 PM, Tudor Girba tudor@tudorgirba.com wrote:
What do you mean about the element?
Doru
On Wed, Oct 3, 2012 at 10:17 PM, moose-technology@googlecode.com
wrote:
Updates: Status: WontFix
Comment #1 on issue 361 by alexandr...@gmail.com: Glamour status bar
should
take into account Mondrian window status
http://code.google.com/p/moose-technology/issues/detail?id=361
In Roassal, we should instead add an element about this. It should not
take
that long to do it.
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Every thing has its own flow" _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Comment #2 on issue 361 by alexandr...@gmail.com: Glamour status bar should take into account Mondrian window status http://code.google.com/p/moose-technology/issues/detail?id=361
For example:
| view statusBar |
view := ROMondrianViewBuilder new.
statusBar := ROElement new + ROLabel + ROBox white. view stack add: statusBar. statusBar translateTo: 0 @ 480.
view interaction on: ROMouseEnter do: [ :event | statusBar model: event element model. ]. view shape rectangle size: 10. view nodes: (Collection withAllSubclasses). view edgesFrom: #superclass. view treeLayout.
view open
Comment #3 on issue 361 by tu...@tudorgirba.com: Glamour status bar should take into account Mondrian window status http://code.google.com/p/moose-technology/issues/detail?id=361
This example is interesting, but it does not tackle the present issue :).
The issue is to get the Glamour statusbar to display information that comes from inside Mondrian. In the case of Mondrian, the problem was that the announcements were not detailed enough. Anyway, we move to Roassal so indeed, there is no need to fix this issue.