blob: d0d50f8f87ee769aafa5b016aac284904ab4b077 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.click.eclipse;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.resource.StringConverter;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.util.PropertyChangeEvent;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.widgets.Display;
/**
* Manages SWT's <code>Color</code> objects which are configued by the preference page.
*
* @author Naoki Takezoe
*/
public class ColorManager {
private IPreferenceStore store;
private Map<String, Color> colors = new HashMap<String, Color>();
private IPropertyChangeListener listener = new IPropertyChangeListener(){
public void propertyChange(PropertyChangeEvent event) {
updateColors();
}
};
public ColorManager(){
store = ClickPlugin.getDefault().getPreferenceStore();
store.addPropertyChangeListener(listener);
updateColors();
}
/**
* Returns the cached <code>Color<code> object.
*
* @param key the preference key defined as the static variable in <code>ClickPlugin</code>
* @return the <code>Color</code> object
*/
public Color get(String key){
return (Color)colors.get(key);
}
private void updateColors(){
colors.put(ClickPlugin.PREF_COLOR_VAR, new Color(Display.getDefault(),
StringConverter.asRGB(store.getString(ClickPlugin.PREF_COLOR_VAR))));
colors.put(ClickPlugin.PREF_COLOR_DIR, new Color(Display.getDefault(),
StringConverter.asRGB(store.getString(ClickPlugin.PREF_COLOR_DIR))));
colors.put(ClickPlugin.PREF_COLOR_CMT, new Color(Display.getDefault(),
StringConverter.asRGB(store.getString(ClickPlugin.PREF_COLOR_CMT))));
}
private void disposeColors(){
for(Iterator<Color> i = colors.values().iterator(); i.hasNext();){
Color color = i.next();
color.dispose();
}
colors.clear();
}
/**
* Disposes all <code>Color</code> objects.
*/
public void dispose(){
disposeColors();
store.removePropertyChangeListener(listener);
}
}