All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.css.properties.css1.CssFontConstant Maven / Gradle / Ivy

The newest version!
//
// $Id: CssFontConstant.java,v 1.3 2005-09-14 15:14:31 ylafon Exp $
// From Philippe Le Hegaret ([email protected])
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css1;

/**
 * @version $Revision: 1.3 $
 */
public interface CssFontConstant {

  /**
   * Array of font-style values
   */
  static String[] FONTSTYLE = { "normal", "italic", "oblique", "inherit" };

  /**
   * Array of font-variant values
   */
  static String[] FONTVARIANT = { "normal", "small-caps", "inherit" };

  /**
   * Array of font-size values
   */
  static String[] FONTSIZE = {
    "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large",
    "larger", "smaller", "inherit"
  }; // relative-size

  /**
   * Array of font-weight values
   */
  static String[] FONTWEIGHT = { "normal", "bold", "bolder",
				 "lighter", "inherit" };

  /**
   * Array of font-stretch values
   */
  static String[] FONTSTRETCH = { "normal", "wider", "narrower",
				  "ultra-condensed", "extra-condensed",
				  "condensed", "semi-condensed",
				  "semi-expanded", "expanded", "extra-expanded",
				  "ultra-expanded", "inherit" };

  /**
   * Array of font values
   */
  static String[] FONT = { "icon", "window", "status-bar", "document",
      "workspace", "desktop", "tooltip", "message-box", "dialog",
      "small-caption", "caption", "button", "default-button", "hyperlink",
      "menu", "pull-down-menu", "pop-up-menu", "list-menu", "field", "inherit"
  };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy