//
// $Id: CssUserFocusKey.java,v 1.1.1.1 2006/11/14 17:05:26 ciglesia Exp $
// From Sijtsche de Jong (sy.de.jong@let.rug.nl)
//
// (c) COPYRIGHT 1995-2000  World Wide Web Consortium (MIT, INRIA, Keio University)
// Please first read the full copyright statement at
// http://www.w3.org/Consortium/Legal/copyright-software-19980720

package org.w3c.css.properties3;

import org.w3c.css.parser.CssStyle;
import org.w3c.css.values.CssIdent;
import org.w3c.css.values.CssValue;
import org.w3c.css.values.CssExpression;
import org.w3c.css.properties.CssProperty;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.util.ApplContext;

/**
 *  <P>
 *  <EM>Value:</EM> auto || normal || select-all || select-before ||
 *  select-after || select-same || select-menu || inherit<BR>
 *  <EM>Initial:</EM>auto<BR>
 *  <EM>Applies to:</EM>all elements<BR>
 *  <EM>Inherited:</EM>yes<BR>
 *  <EM>Percentages:</EM>no<BR>
 *  <EM>Media:</EM>:interactive
 *  <P>
 *  The purpose of this property is to determine what happens to an element 
 *  when the user focusses it specifically by clicking on it with a pointing 
 *  device.
 */

public class CssUserFocusKey extends CssProperty {

    CssValue userfocuskey;

    static CssIdent auto = new CssIdent("auto");
    static CssIdent normal = new CssIdent("normal");
    static CssIdent selectall = new CssIdent("select-all");
    static CssIdent selectbefore = new CssIdent("select-before");
    static CssIdent selectafter = new CssIdent("select-after");
    static CssIdent selectsame = new CssIdent("select-same");
    static CssIdent selectmenu = new CssIdent("select-menu");

    /**
     * Create a new CssUserFocusKey
     */
    public CssUserFocusKey() {
	userfocuskey = auto;
    }

    /**
     * Create a new CssUserFocusKey
     *
     * @param expression The expression for this property
     * @exception InvalidParamException Incorrect value
     */
    public CssUserFocusKey(ApplContext ac, CssExpression expression) throws InvalidParamException {

	setByUser();
	CssValue val = expression.getValue();

	if (val.equals(auto)) {
	    userfocuskey = auto;
	    expression.next();
	}
	else if (val.equals(normal)) {
	    userfocuskey = normal;
	    expression.next();
	}
	else if (val.equals(selectall)) {
	    userfocuskey = selectall;
	    expression.next();
	}
	else if (val.equals(selectbefore)) {
	    userfocuskey = selectbefore;
	    expression.next();
	}
	else if (val.equals(selectafter)) {
	    userfocuskey = selectafter;
	    expression.next();
	}
	else if (val.equals(selectsame)) {
	    userfocuskey = selectsame;
	    expression.next();
	}
	else if (val.equals(selectmenu)) {
	    userfocuskey = selectmenu;
	    expression.next();
	}
	else if (val.equals(inherit)) {
	    userfocuskey = inherit;
	    expression.next();
	}
	else {
	    throw new InvalidParamException("value", expression.getValue(),
					    getPropertyName(), ac);
	}
    }

    /**
     * Add this property to the CssStyle
     *
     * @param style The CssStyle
     */
    public void addToStyle(ApplContext ac, CssStyle style) {
	if (((Css3Style) style).cssUserFocusKey != null)
	    style.addRedefinitionWarning(ac, this);
	((Css3Style) style).cssUserFocusKey = this;
    }

    /**
     * Get this property in the style.
     *
     * @param style The style where the property is
     * @param resolve if true, resolve the style to find this property
     */
    public CssProperty getPropertyInStyle(CssStyle style, boolean resolve) {
	if (resolve) {
	    return ((Css3Style) style).getUserFocusKey();
	}
	else {
	    return ((Css3Style) style).cssUserFocusKey;
	}
    }

    /**
     * Compares two properties for equality.
     *
     * @param value The other property.
     */
    public boolean equals(CssProperty property) {
	return (property instanceof CssUserFocusKey &&
		userfocuskey.equals(((CssUserFocusKey) property).userfocuskey));
    }
    
    /**
     * Returns the name of this property
     */
    public String getPropertyName() {
	return "user-focus-key";
    }

    /**
     * Returns the value of this property
     */
    public Object get() {
	return userfocuskey;
    }

    /**
     * Returns true if this property is "softly" inherited
     */
    public boolean isSoftlyInherited() {
	return userfocuskey.equals(inherit);
    }

    /**
     * Returns a string representation of the object
     */
    public String toString() {
	return userfocuskey.toString();
    }

    /**
     * Is the value of this property a default value
     * It is used by alle macro for the function <code>print</code>
     */
    public boolean isDefault() {
	return userfocuskey == auto;
    }

}


