blob: 4708cc9d97f90b36defbadd44904963c8d946677 [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.converters;
import org.eclipse.e4.ui.css.core.dom.properties.converters.AbstractCSSValueConverter;
import org.eclipse.e4.ui.css.core.dom.properties.converters.ICSSValueConverter;
import org.eclipse.e4.ui.css.core.dom.properties.converters.ICSSValueConverterConfig;
import org.eclipse.e4.ui.css.core.engine.CSSEngine;
import org.eclipse.e4.ui.css.swt.helpers.CSSSWTCursorHelper;
import org.eclipse.swt.graphics.Cursor;
import org.eclipse.swt.widgets.Display;
import org.w3c.dom.css.CSSValue;
public class CSSValueSWTCursorConverterImpl extends AbstractCSSValueConverter {
public static final ICSSValueConverter INSTANCE = new CSSValueSWTCursorConverterImpl();
public CSSValueSWTCursorConverterImpl() {
super(Cursor.class);
}
public Object convert(CSSValue value, CSSEngine engine, Object context) {
Display display = (Display) context;
return CSSSWTCursorHelper.getSWTCursor(value, display);
}
public String convert(Object value, CSSEngine engine, Object context,
ICSSValueConverterConfig config) throws Exception {
Cursor cursor = (Cursor) value;
return CSSSWTCursorHelper.getCSSCursor(cursor);
}
}