home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / tvbrowser / TvBrowser_1.0.exe / plugins / PrintPlugin.jar / printplugin / ProgramIconSettings.class (.txt) < prev    next >
Encoding:
Java Class File  |  2004-09-19  |  588 b   |  32 lines

  1. package printplugin;
  2.  
  3. import devplugin.ProgramFieldType;
  4. import java.awt.Color;
  5. import java.awt.Font;
  6.  
  7. public interface ProgramIconSettings {
  8.    Font getTitleFont();
  9.  
  10.    Font getTextFont();
  11.  
  12.    Font getTimeFont();
  13.  
  14.    int getTimeFieldWidth();
  15.  
  16.    ProgramFieldType[] getProgramInfoFields();
  17.  
  18.    String[] getProgramTableIconPlugins();
  19.  
  20.    Color getColorOnAir_dark();
  21.  
  22.    Color getColorOnAir_light();
  23.  
  24.    Color getColorMarked();
  25.  
  26.    boolean getPaintExpiredProgramsPale();
  27.  
  28.    boolean getPaintProgramOnAir();
  29.  
  30.    boolean getPaintPluginMarks();
  31. }
  32.