[graphl-cvs] graphl/src/org/mediavirus/graphl GraphlApplication.java
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2004-10-27 10:55:49
|
Update of /cvsroot/graphl/graphl/src/org/mediavirus/graphl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18264/src/org/mediavirus/graphl Modified Files: GraphlApplication.java Log Message: - FEATURE: finally implemented sortgedNodeLayouter with proportional layout - AbstractFacet.assignedElements is now a list, to be able to sort it - BUG: block graph update events during loading - FEATURE: nodes are placed at deterministic locations initially (loading the same file twice will result in the same layout) - FEATURE: minor performance enhancements for repulsionnodelayouter - renamed "controls" command line option to "toolbar" Index: GraphlApplication.java =================================================================== RCS file: /cvsroot/graphl/graphl/src/org/mediavirus/graphl/GraphlApplication.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** GraphlApplication.java 21 Oct 2004 16:00:47 -0000 1.13 --- GraphlApplication.java 27 Oct 2004 10:55:40 -0000 1.14 *************** *** 455,460 **** if (args[i].equals("decorations=off")) decorations = false; } ! else if (args[i].startsWith("controls=")) { ! if (args[i].equals("controls=off")) controls = false; } else if (args[i].startsWith("menubar=")) { --- 455,460 ---- if (args[i].equals("decorations=off")) decorations = false; } ! else if (args[i].startsWith("toolbar=")) { ! if (args[i].equals("toolbar=off")) controls = false; } else if (args[i].startsWith("menubar=")) { *************** *** 546,550 **** System.out.println("graphl [size=<width>,<height>] [pos=<x>,<y>] [config=<filename.rdf>]\n" + " [refresh=<seconds>] [decorations={on|off}]\n" + ! " [controls={on|off}] [menubar={on|off}]\n" + " [{<filename>|<url>}]"); System.out.println("-------------------------------------------------------------------"); --- 546,550 ---- System.out.println("graphl [size=<width>,<height>] [pos=<x>,<y>] [config=<filename.rdf>]\n" + " [refresh=<seconds>] [decorations={on|off}]\n" + ! " [toolbar={on|off}] [menubar={on|off}]\n" + " [{<filename>|<url>}]"); System.out.println("-------------------------------------------------------------------"); |