blob: 3695627c4be1354a19c1ac385c944a609827f91a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
* E.D.Willink - rework of LPG OCL Console for Xtext
*******************************************************************************/
package org.eclipse.ocl.examples.xtext.console;
import java.util.Map;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.Display;
/**
* Registry of color resources.
*
* @author Christian W. Damus (cdamus)
*/
public class ColorManager {
public static RGB DEFAULT = new RGB(0, 0, 0);
public static RGB COMMENT = new RGB(0, 128, 0);
public static RGB LITERAL = new RGB(0, 0, 192);
public static RGB COLLECTION_TUPLE = new RGB(64, 0, 64);
public static RGB OUTPUT_ERROR = new RGB(192, 0, 0);
public static RGB OUTPUT_RESULTS = new RGB(0, 0, 192);
private Map<RGB, Color> colors = new java.util.HashMap<RGB, Color>(10);
public void dispose() {
for (Color color : colors.values()) {
color.dispose();
}
colors.clear();
}
public Color getColor(RGB rgb) {
Color result = colors.get(rgb);
if (result == null) {
result = new Color(Display.getCurrent(), rgb);
colors.put(rgb, result);
}
return result;
}
}