blob: 1fa2739b56fa4a8254191d28993c0c439d2d30aa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2017 xored software, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.internal.ui.coloring;
import org.eclipse.dltk.ui.coloring.ColoringPreferenceKey;
import org.eclipse.dltk.ui.coloring.EnablementStyle;
import org.eclipse.dltk.ui.coloring.FontStyle;
import org.eclipse.dltk.ui.coloring.IColoringPreferenceKey;
import org.eclipse.dltk.ui.coloring.IColoringPreferenceRequestor;
import org.eclipse.swt.graphics.RGB;
public abstract class AbstractColoringPreferenceRequestor implements
IColoringPreferenceRequestor {
@Override
public void enterCategory(String category) {
}
@Override
public void addPreference(String baseKey, String name, RGB color,
FontStyle... fontStyles) {
addPreference(baseKey, name, color, EnablementStyle.ALWAYS_ON,
fontStyles);
}
@Override
public void addPreference(String baseKey, String name, RGB color,
EnablementStyle enablementStyle, FontStyle... fontStyles) {
addPreference(ColoringPreferenceKey.create(baseKey), name, color,
enablementStyle, fontStyles);
}
@Override
public void addPreference(IColoringPreferenceKey key, String name,
RGB color, FontStyle... fontStyles) {
addPreference(key, name, color, EnablementStyle.ALWAYS_ON, fontStyles);
}
}