mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-30 11:45:53 +08:00
GP-1981 - Checkpoint - Initial Theming
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
##VERSION: 2.0
|
||||
##MODULE IP: Oxygen Icons - LGPL 3.0
|
||||
Module.manifest||GHIDRA||||END|
|
||||
data/functioncall.theme.properties||GHIDRA||||END|
|
||||
src/main/help/help/TOC_Source.xml||GHIDRA||||END|
|
||||
src/main/help/help/shared/arrow.gif||GHIDRA||||END|
|
||||
src/main/help/help/shared/close16.gif||GHIDRA||||END|
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
[Defaults]
|
||||
|
||||
color.fcg.satellite.edge = rgba(0,0,0,0.1)
|
||||
+2
-1
@@ -17,6 +17,7 @@ package functioncalls.graph.view;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
import docking.theme.GColor;
|
||||
import edu.uci.ics.jung.visualization.RenderContext;
|
||||
import functioncalls.graph.*;
|
||||
import functioncalls.graph.renderer.FcgEdgePaintTransformer;
|
||||
@@ -41,7 +42,7 @@ public class FcgComponent extends GraphComponent<FcgVertex, FcgEdge, FunctionCal
|
||||
private Color lightGray = new Color(233, 233, 233);
|
||||
|
||||
// the satellite gets too cluttered, so wash out the edges
|
||||
private Color washedOutBlack = new Color(0, 0, 0, 25);
|
||||
private Color washedOutBlack = new GColor("color.fcg.satellite.edge");
|
||||
|
||||
private FcgEdgePaintTransformer edgePaintTransformer =
|
||||
new FcgEdgePaintTransformer(lightGreen, lightGray);
|
||||
|
||||
Reference in New Issue
Block a user