Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

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 tickHeight=5;
00037     int tickLabelOffSet=2;
00038     
00039     int colorBoxWidth=250;
00040     int colorBoxHeight=10;
00041     
00042 }

Generated on Thu Jul 15 09:55:41 2004 for SCT DAQ/DCS Software - Java by doxygen 1.3.5