|
|
|
@ -12,6 +12,7 @@ import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.ObjectOutputStream;
|
|
|
|
import java.io.ObjectOutputStream;
|
|
|
|
import java.io.PrintWriter;
|
|
|
|
import java.io.PrintWriter;
|
|
|
|
|
|
|
|
import java.lang.reflect.Field;
|
|
|
|
import java.nio.charset.Charset;
|
|
|
|
import java.nio.charset.Charset;
|
|
|
|
import java.nio.file.Files;
|
|
|
|
import java.nio.file.Files;
|
|
|
|
import java.nio.file.Paths;
|
|
|
|
import java.nio.file.Paths;
|
|
|
|
@ -255,6 +256,8 @@ load ();
|
|
|
|
ArrayList<Font> font_map = new ArrayList<Font>();
|
|
|
|
ArrayList<Font> font_map = new ArrayList<Font>();
|
|
|
|
ArrayList<Gradient> gradient_map = new ArrayList<Gradient>();
|
|
|
|
ArrayList<Gradient> gradient_map = new ArrayList<Gradient>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
if (!new File (System.getProperty("user.home") + File.separator + ".idp_scheme").exists())
|
|
|
|
if (!new File (System.getProperty("user.home") + File.separator + ".idp_scheme").exists())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
@ -298,7 +301,22 @@ load ();
|
|
|
|
{
|
|
|
|
{
|
|
|
|
System.out.println(i + " : " + gradient_map.get(i));
|
|
|
|
System.out.println(i + " : " + gradient_map.get(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// CheckBox.border CLASS:
|
|
|
|
|
|
|
|
//javax.swing.plaf.BorderUIResource$CompoundBorderUIResource
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
//VALUE:
|
|
|
|
|
|
|
|
//javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@60e359e2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object borderGP = UIManager.get("Button.border");
|
|
|
|
|
|
|
|
System.err.println("bgp = " + borderGP);
|
|
|
|
|
|
|
|
System.err.println("bgp2 = " + borderGP.getClass());
|
|
|
|
|
|
|
|
System.err.println("bgp3 = " + borderGP.getClass().getSuperclass());
|
|
|
|
|
|
|
|
javax.swing.border.AbstractBorder brd = new javax.swing.border.EmptyBorder(0,0,0,0);
|
|
|
|
|
|
|
|
UIManager.put("Button.border", brd);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|