mgansler / mscgen

Automatically exported from code.google.com/p/mscgen
GNU General Public License v2.0
1 stars 0 forks source link

feature request - inverse of ||| #3

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

msc {
  one,two,three;

  one rbox one [label = "this is the first entity" ];
  two rbox two [label = "this is the second entity" ];
  three rbox three [label = "this is the third entity" ];
}

What is the expected output? What do you see instead?

I would like to have an option to cause the boxes to all align 
horizontally.  Perhaps an inverse of the ||| command?  For example:

msc {
  one,two,three;

  one rbox one [label = "this is the first entity" ];
  ---;
  two rbox two [label = "this is the second entity" ];
  ---;
  three rbox three [label = "this is the third entity" ];
}

What version of the product are you using? On what operating system?

0.14, winxp sp3

Original issue reported on code.google.com by ronaldpw...@gmail.com on 22 Apr 2009 at 9:15

Attachments:

GoogleCodeExporter commented 8 years ago
sigh, i forgot that --- is already a keyword.  perhaps ~~~ could be the token 
for the 
opposite of |||?

Original comment by ronaldpw...@gmail.com on 24 Apr 2009 at 3:50

GoogleCodeExporter commented 8 years ago
I've changed the grammar such that use of "," instead of ";" puts things on the 
same
line.  This applies to both boxes and other arc types, and if used carefully can
create the output you've requested.  See the attached for an example.

This is fixed on trunk and will go into the 0.15 release.  

Original comment by Michael....@gmail.com on 24 May 2009 at 8:36

Attachments:

GoogleCodeExporter commented 8 years ago
thanks!  that works great.

Original comment by ronaldpw...@gmail.com on 27 May 2009 at 7:18