/******************************************************************************* * Copyright (c) 2013, 2014 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.e4.ui.css.swt.properties.definition; import static org.eclipse.e4.ui.css.swt.helpers.ThemeElementDefinitionHelper.normalizeId; import org.eclipse.e4.ui.css.core.dom.properties.ICSSPropertyHandler; import org.eclipse.e4.ui.css.core.engine.CSSEngine; import org.eclipse.e4.ui.css.swt.dom.definition.ThemesExtensionElement; import org.eclipse.e4.ui.internal.css.swt.definition.IThemesExtension; import org.w3c.dom.css.CSSValue; public class CSSPropertyThemesExtensionHandler implements ICSSPropertyHandler { private final static String DEFINITION_LIST_SEPARATOR = ","; private final static String FONT_DEFINITION_PROP = "font-definition"; private final static String COLOR_DEFINITION_PROP = "color-definition"; @Override public boolean applyCSSProperty(Object element, String property, CSSValue value, String pseudo, CSSEngine engine) throws Exception { if (element instanceof ThemesExtensionElement) { IThemesExtension themeExtension = (IThemesExtension) ((ThemesExtensionElement) element).getNativeWidget(); if (FONT_DEFINITION_PROP.equals(property)) { addDefinitions(themeExtension, true, parseSymbolicNames(value.getCssText())); } else if (COLOR_DEFINITION_PROP.equals(property)) { addDefinitions(themeExtension, false, parseSymbolicNames(value.getCssText())); } } return true; } @Override public String retrieveCSSProperty(Object element, String property, String pseudo, CSSEngine engine) throws Exception { return null; } private String[] parseSymbolicNames(String symbolicNames) { return symbolicNames.split(DEFINITION_LIST_SEPARATOR); } private void addDefinitions(IThemesExtension themeExtension, boolean fontDefinitions, String... symbolicNames) { for (String symbolicName: symbolicNames) { String normalizedSymbolicName = normalizeId(symbolicName.trim().substring(1)); if (fontDefinitions) { themeExtension.addFontDefinition(normalizedSymbolicName); } else { themeExtension.addColorDefinition(normalizedSymbolicName); } } } }