Author: mes
Date: 2012-02-02 13:25:01 -0800 (Thu, 02 Feb 2012)
New Revision: 28183
Modified:
core3/api/trunk/presentation-api/src/main/java/org/cytoscape/view/presentation/property/RichVisualLexicon.java
Log:
set default transparency to none as a performance improvement
Modified:
core3/api/trunk/presentation-api/src/main/java/org/cytoscape/view/presentation/property/RichVisualLexicon.java
===================================================================
---
core3/api/trunk/presentation-api/src/main/java/org/cytoscape/view/presentation/property/RichVisualLexicon.java
2012-02-02 20:15:01 UTC (rev 28182)
+++
core3/api/trunk/presentation-api/src/main/java/org/cytoscape/view/presentation/property/RichVisualLexicon.java
2012-02-02 21:25:01 UTC (rev 28183)
@@ -66,14 +66,14 @@
new ContinuousRange<Integer>(Integer.class, 1,
Integer.MAX_VALUE, true, true), "NODE_LABEL_FONT_SIZE",
"Node Label Font Size", CyNode.class);
- public static final VisualProperty<Integer> NODE_TRANSPARENCY = new
IntegerVisualProperty(200,
+ public static final VisualProperty<Integer> NODE_TRANSPARENCY = new
IntegerVisualProperty(255,
new ContinuousRange<Integer>(Integer.class, 0, 255,
true, true), "NODE_TRANSPARENCY", "Node Transparency",
CyNode.class);
- public static final VisualProperty<Integer> NODE_BORDER_TRANSPARENCY =
new IntegerVisualProperty(200,
+ public static final VisualProperty<Integer> NODE_BORDER_TRANSPARENCY =
new IntegerVisualProperty(255,
new ContinuousRange<Integer>(Integer.class, 0, 255,
true, true), "NODE_BORDER_TRANSPARENCY", "Node Border Transparency",
CyNode.class);
- public static final VisualProperty<Integer> NODE_LABEL_TRANSPARENCY =
new IntegerVisualProperty(200,
+ public static final VisualProperty<Integer> NODE_LABEL_TRANSPARENCY =
new IntegerVisualProperty(255,
new ContinuousRange<Integer>(Integer.class, 0, 255,
true, true), "NODE_LABEL_TRANSPARENCY",
"Node Label Transparency", CyNode.class);
@@ -97,11 +97,11 @@
MinimalVisualLexicon.PAINT_RANGE,
"EDGE_STROKE_UNSELECTED_PAINT", "Edge Stroke Color (Unselected)",
CyEdge.class);
- public static final VisualProperty<Integer> EDGE_TRANSPARENCY = new
IntegerVisualProperty(200,
+ public static final VisualProperty<Integer> EDGE_TRANSPARENCY = new
IntegerVisualProperty(255,
new ContinuousRange<Integer>(Integer.class, 0, 255,
true, true), "EDGE_TRANSPARENCY", "Edge Transparency",
CyEdge.class);
- public static final VisualProperty<Integer> EDGE_LABEL_TRANSPARENCY =
new IntegerVisualProperty(200,
+ public static final VisualProperty<Integer> EDGE_LABEL_TRANSPARENCY =
new IntegerVisualProperty(255,
new ContinuousRange<Integer>(Integer.class, 0, 255,
true, true), "EDGE_LABEL_TRANSPARENCY",
"Edge Label Transparency", CyEdge.class);
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.