00001
00002
00003
00004
00005
00006
00007 package DisplayGUI;
00008 import java.awt.*;
00013 public interface displayParams {
00014
00015 Font displayTextFont = new Font("Arial", Font.PLAIN,12);
00016 Font displayBoldFont = new Font("Arial", Font.BOLD,12);
00017 Color displayTextColor = Color.blue;
00018 Font displayTitleFont = new Font("Arial",Font.BOLD,16);
00019 Color darkBlueColor = new Color(51, 0, 153);
00020 Color darkGreenColor = new Color(0,102,0);
00021 Color backgroundColor = new Color(255, 255, 255);
00022 Color menuColor = new Color(51, 0, 153);
00023
00024 Font displayScaleFont = new Font("Arial",Font.PLAIN,10);
00025 Font displayCCFont = new Font("Arial",0,10);
00026 Font displayCCBoldFont = new Font("Arial",0,10);
00027 Font menuFont = new Font("Arial",Font.PLAIN,10);
00028
00029 Font tableFont = new Font("Arial",Font.PLAIN,10);
00030
00031
00032 int yOffSet=45;
00033 int boxWidth=35;
00034 int boxHeight=12;
00035
00036 int rcBoxWidth=24;
00037 int rcBoxGap=3;
00038 int rcYOffSet=45;
00039 int rcXOffSet=4;
00040
00041 int tickHeight=5;
00042 int tickLabelOffSet=2;
00043
00044 int colorBoxWidth=250;
00045 int colorBoxHeight=10;
00046
00047 }