/******************************************************************************* * Copyright (c) 2008, 2009 Wind River Systems 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: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.dsf.ui.viewmodel.update; import org.eclipse.cdt.dsf.debug.ui.IDsfDebugUIConstants; import org.eclipse.cdt.dsf.ui.viewmodel.properties.LabelForeground; import org.eclipse.core.runtime.IStatus; import org.eclipse.jface.resource.JFaceResources; import org.eclipse.swt.graphics.RGB; /** * Stale data foreground color label attribute to use with the * PropertyBasedLabelProvider. The foreground color should only be * used when the view is in column mode. * * @since 2.0 */ public class StaleDataLabelForeground extends LabelForeground { public StaleDataLabelForeground() { super(null); setPropertyNames( new String[] { ICachingVMProvider.PROP_CACHE_ENTRY_DIRTY, ICachingVMProvider.PROP_UPDATE_POLICY_ID }); } @Override public RGB getForeground() { return JFaceResources.getColorRegistry().getRGB( IDsfDebugUIConstants.PREF_COLOR_STALE_DATA_FOREGROUND); } @Override public boolean isEnabled(IStatus status, java.util.Map<String,Object> properties) { return Boolean.TRUE.equals(properties.get(ICachingVMProvider.PROP_CACHE_ENTRY_DIRTY)) && !AutomaticUpdatePolicy.AUTOMATIC_UPDATE_POLICY_ID.equals( properties.get(ICachingVMProvider.PROP_UPDATE_POLICY_ID)); } }