displayParams.java

00001 /*
00002  * displayParams.java
00003  *
00004  * Created on 24 June 2003, 13:49
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 //    int yOffSet=45;   // vertical offset - need space for titles
00032     int yOffSet=45;   // vertical offset - need space for titles
00033     int boxWidth=35;  // barrel module graphics cell width
00034     int boxHeight=12; // barrel module graphics cell height
00035 
00036         int rcBoxWidth=24; // rod crate graphics cell width
00037         int rcBoxGap=3; // gap between slots for rod crate view
00038         int rcYOffSet=45; // offset for titles to rod crate view
00039         int rcXOffSet=4; // offset in x for rod crate view
00040     
00041     int tickHeight=5;
00042     int tickLabelOffSet=2;
00043     
00044     int colorBoxWidth=250;
00045     int colorBoxHeight=10;
00046     
00047 }

Generated on Mon Feb 6 14:12:11 2006 for SCT DAQ/DCS Software - Java by  doxygen 1.4.6