/******************************************************************************* * Copyright (c) 2000, 2017 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 * *******************************************************************************/ package org.eclipse.dltk.ui; import org.eclipse.core.resources.IStorage; import org.eclipse.dltk.core.ISourceModule; import org.eclipse.dltk.ui.viewsupport.StorageLabelProvider; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.swt.graphics.Image; /** * Standard label provider for Script elements. * Use this class when you want to present the Script elements in a viewer. * <p> * The implementation also handles non-Script elements by forwarding the requests to the * <code>IWorkbenchAdapter</code> of the element. * </p> * <p> * This class may be instantiated; it is not intended to be subclassed. * </p> */ public class ModelElementLabelProvider extends LabelProvider { /** * Flag (bit mask) indicating that methods labels include the method return type (appended). */ public final static int SHOW_RETURN_TYPE= 0x001; /** * Flag (bit mask) indicating that method label include parameter types. */ public final static int SHOW_PARAMETERS= 0x002; /** * Flag (bit mask) indicating that the label of a member should include the container. * For example, include the name of the type enclosing a field. * @deprecated Use SHOW_QUALIFIED or SHOW_ROOT instead */ @Deprecated public final static int SHOW_CONTAINER= 0x004; /** * Flag (bit mask) indicating that the label of a type should be fully qualified. * For example, include the fully qualified name of the type enclosing a type. * @deprecated Use SHOW_QUALIFIED instead */ @Deprecated public final static int SHOW_CONTAINER_QUALIFICATION= 0x008; /** * Flag (bit mask) indicating that the label should include overlay icons * for element type and modifiers. */ public final static int SHOW_OVERLAY_ICONS= 0x010; /** * Flag (bit mask) indicating that a field label should include the declared type. */ public final static int SHOW_TYPE= 0x020; /** * Flag (bit mask) indicating that the label should include the name of the * package fragment root (appended). */ public final static int SHOW_ROOT= 0x040; /** * Flag (bit mask) indicating that the label qualification of a type should * be shown after the name. * @deprecated SHOW_POST_QUALIFIED instead */ @Deprecated public final static int SHOW_POSTIFIX_QUALIFICATION= 0x080; /** * Flag (bit mask) indicating that the label should show the icons with no space * reserved for overlays. */ public final static int SHOW_SMALL_ICONS= 0x100; /** * Flag (bit mask) indicating that the package fragment roots from class path variables should * be rendered with the variable in the name */ public final static int SHOW_VARIABLE= 0x200; /** * Flag (bit mask) indicating that compilation units, class files, types, declarations and members * should be rendered qualified. * Examples: <code>java.lang.String</code>, <code>java.util.Vector.size()</code> * * */ public final static int SHOW_QUALIFIED= 0x400; /** * Flag (bit mask) indicating that compilation units, class files, types, declarations and members * should be rendered qualified.The qualification is appended. * Examples: <code>String - java.lang</code>, <code>size() - java.util.Vector</code> * * */ public final static int SHOW_POST_QUALIFIED= 0x800; public final static int SHOW_FILE_QUALIFIED= 0x1000; /** * Constant (value <code>0</code>) indicating that the label should show * the basic images only. */ public final static int SHOW_BASICS= 0x000; /** * Constant indicating the default label rendering. * Currently the default is equivalent to * <code>SHOW_PARAMETERS | SHOW_OVERLAY_ICONS</code>. */ public final static int SHOW_DEFAULT= Integer.valueOf(SHOW_PARAMETERS | SHOW_OVERLAY_ICONS).intValue(); private ScriptElementImageProvider fImageLabelProvider; private StorageLabelProvider fStorageLabelProvider; private int fFlags; private int fImageFlags; private long fTextFlags; /** * Creates a new label provider with <code>SHOW_DEFAULT</code> flag. * * @see #SHOW_DEFAULT * */ public ModelElementLabelProvider() { this(SHOW_DEFAULT); } /** * Creates a new label provider. * * @param flags the initial options; a bitwise OR of <code>SHOW_* </code> constants */ public ModelElementLabelProvider(int flags) { fImageLabelProvider= new ScriptElementImageProvider(); fStorageLabelProvider= new StorageLabelProvider(); fFlags= flags; updateImageProviderFlags(); updateTextProviderFlags(); } private boolean getFlag( int flag) { return (fFlags & flag) != 0; } /** * Turns on the rendering options specified in the given flags. * * @param flags the options; a bitwise OR of <code>SHOW_* </code> constants */ public void turnOn(int flags) { fFlags |= flags; updateImageProviderFlags(); updateTextProviderFlags(); } /** * Turns off the rendering options specified in the given flags. * * @param flags the initial options; a bitwise OR of <code>SHOW_* </code> constants */ public void turnOff(int flags) { fFlags &= (~flags); updateImageProviderFlags(); updateTextProviderFlags(); } private void updateImageProviderFlags() { fImageFlags= 0; if (getFlag(SHOW_OVERLAY_ICONS)) { fImageFlags |= ScriptElementImageProvider.OVERLAY_ICONS; } if (getFlag(SHOW_SMALL_ICONS)) { fImageFlags |= ScriptElementImageProvider.SMALL_ICONS; } } private void updateTextProviderFlags() { fTextFlags= ScriptElementLabels.T_TYPE_PARAMETERS; if (getFlag(SHOW_RETURN_TYPE)) { fTextFlags |= ScriptElementLabels.M_APP_RETURNTYPE; } if (getFlag(SHOW_PARAMETERS)) { fTextFlags |= ScriptElementLabels.M_PARAMETER_TYPES; } if (getFlag(SHOW_CONTAINER)) { fTextFlags |= ScriptElementLabels.P_POST_QUALIFIED | ScriptElementLabels.T_POST_QUALIFIED | ScriptElementLabels.CF_POST_QUALIFIED | ScriptElementLabels.CU_POST_QUALIFIED | ScriptElementLabels.M_POST_QUALIFIED | ScriptElementLabels.F_POST_QUALIFIED; } if (getFlag(SHOW_POSTIFIX_QUALIFICATION)) { fTextFlags |= (ScriptElementLabels.T_POST_QUALIFIED | ScriptElementLabels.CF_POST_QUALIFIED | ScriptElementLabels.CU_POST_QUALIFIED); } else if (getFlag(SHOW_CONTAINER_QUALIFICATION)) { fTextFlags |=(ScriptElementLabels.T_FULLY_QUALIFIED | ScriptElementLabels.CF_QUALIFIED | ScriptElementLabels.CU_QUALIFIED); } if (getFlag(SHOW_TYPE)) { fTextFlags |= ScriptElementLabels.F_APP_TYPE_SIGNATURE; } if (getFlag(SHOW_ROOT)) { fTextFlags |= ScriptElementLabels.APPEND_ROOT_PATH; } if (getFlag(SHOW_FILE_QUALIFIED)) { fTextFlags |= ScriptElementLabels.APPEND_FILE | ScriptElementLabels.T_CONTAINER_QUALIFIED | ScriptElementLabels.CU_POST_QUALIFIED; } if (getFlag(SHOW_VARIABLE)) { fTextFlags |= ScriptElementLabels.ROOT_VARIABLE; } if (getFlag(SHOW_QUALIFIED)) { fTextFlags |= (ScriptElementLabels.F_FULLY_QUALIFIED | ScriptElementLabels.M_FULLY_QUALIFIED | ScriptElementLabels.I_FULLY_QUALIFIED | ScriptElementLabels.T_FULLY_QUALIFIED | ScriptElementLabels.D_QUALIFIED | ScriptElementLabels.CF_QUALIFIED | ScriptElementLabels.CU_QUALIFIED); } if (getFlag(SHOW_POST_QUALIFIED)) { fTextFlags |= (ScriptElementLabels.F_POST_QUALIFIED | ScriptElementLabels.M_POST_QUALIFIED | ScriptElementLabels.I_POST_QUALIFIED | ScriptElementLabels.T_POST_QUALIFIED | ScriptElementLabels.D_POST_QUALIFIED | ScriptElementLabels.CF_POST_QUALIFIED | ScriptElementLabels.CU_POST_QUALIFIED); } } @Override public Image getImage(Object element) { Image result= fImageLabelProvider.getImageLabel(element, fImageFlags); if (result != null) { return result; } if (element instanceof IStorage || element instanceof ISourceModule) return fStorageLabelProvider.getImage(element); return result; } @Override public String getText(Object element) { String text= ScriptElementLabels.getDefault().getTextLabel(element, fTextFlags); if (text.length() > 0) { return text; } if (element instanceof IStorage) return fStorageLabelProvider.getText(element); return text; } @Override public void dispose() { fStorageLabelProvider.dispose(); fImageLabelProvider.dispose(); } }