blob: cf4ac934c3e2d40b01cc4ee37c973893679b3684 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Angelo Zerr and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.ui.css.swt.properties.css2.lazy.classification;
import org.eclipse.e4.ui.css.core.engine.CSSEngine;
import org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler;
import org.eclipse.swt.graphics.Cursor;
import org.eclipse.swt.widgets.Control;
import org.w3c.dom.css.CSSValue;
public class CSSPropertyCursorHandler extends AbstractCSSPropertySWTHandler {
public void applyCSSProperty(Control control, String property,
CSSValue value, String pseudo, CSSEngine engine) throws Exception {
if (value.getCssValueType() == CSSValue.CSS_PRIMITIVE_VALUE) {
Cursor cursor = (Cursor) engine.convert(value, Cursor.class,
control.getDisplay());
control.setCursor(cursor);
}
}
public String retrieveCSSProperty(Control control, String property, String pseudo,
CSSEngine engine) throws Exception {
Cursor cursor = control.getCursor();
return engine.convert(cursor, Cursor.class, null);
}
}