Example usage for org.eclipse.jface.viewers DecoratingStyledCellLabelProvider subclass-usage

List of usage examples for org.eclipse.jface.viewers DecoratingStyledCellLabelProvider subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers DecoratingStyledCellLabelProvider subclass-usage.

Usage

From source file org.eclipse.mylyn.internal.provisional.commons.ui.DecoratingPatternStyledCellLabelProvider.java

/**
 * A decorating styled label provider that supports highlighting of substrings that match a pattern. Based on
 * {@link DecoratingFileSearchLabelProvider}.
 * 
 * @author Kevin Sawicki
 * @see DecoratingFileSearchLabelProvider

From source file org.eclipse.mylyn.internal.sandbox.search.ui.DesktopSearchLabelProvider.java

public class DesktopSearchLabelProvider extends DecoratingStyledCellLabelProvider
        implements IPropertyChangeListener {

    public DesktopSearchLabelProvider(IStyledLabelProvider labelProvider) {
        super(labelProvider, PlatformUI.getWorkbench().getDecoratorManager().getLabelDecorator(), null);
    }

From source file org.eclipse.osee.framework.ui.skynet.search.page.DecoratingArtifactSearchLabelProvider.java

/**
 * @author Roberto E. Escobar
 */
public class DecoratingArtifactSearchLabelProvider extends DecoratingStyledCellLabelProvider
        implements IPropertyChangeListener, ILabelProvider {

From source file org.eclipse.osee.framework.ui.skynet.update.ReflectDecoratingLabelProvider.java

/**
 * @author Jeff C. Phillips
 */
public class ReflectDecoratingLabelProvider extends DecoratingStyledCellLabelProvider implements ILabelProvider {

    public ReflectDecoratingLabelProvider(RevertLabelProvider labelProvider) {

From source file org.eclipse.search.internal.ui.text.DecoratingFileSearchLabelProvider.java

public class DecoratingFileSearchLabelProvider extends DecoratingStyledCellLabelProvider
        implements IPropertyChangeListener, ILabelProvider {

    private static final String HIGHLIGHT_BG_COLOR_NAME = "org.eclipse.search.ui.match.highlight"; //$NON-NLS-1$

    public static final Styler HIGHLIGHT_STYLE = StyledString.createColorRegistryStyler(null,

From source file org.eclipse.ui.internal.navigator.NavigatorDecoratingLabelProvider.java

/**
 * Decorating label provider with styled label support for the navigator.
 * <p>
 * If the wrapped label provider is a {@link DelegatingStyledCellLabelProvider.IStyledLabelProvider} it will use
 * the styled label it provides.
 * </p>

From source file org.eclipse.wst.xml.search.ui.DecoratingXMLSearchLabelProvider.java

/**
 * 
 * Extension of {@link DecoratingStyledCellLabelProvider} for DOM-SSE.
 * 
 */
public class DecoratingXMLSearchLabelProvider extends DecoratingStyledCellLabelProvider implements ILabelProvider {

From source file org.l2x6.eircc.ui.search.IrcSearchDecoratingLabelProvider.java

/**
 * Adapted from
 * {@code org.eclipse.search.internal.ui.text.DecoratingFileSearchLabelProvider}
 * as available in org.eclipse.search 3.9.100.v20140226-1637.
 *
 * @author <a href="mailto:ppalaga@redhat.com">Peter Palaga</a>

From source file org.overture.ide.ui.internal.viewsupport.VdmColoringLabelProvider.java

public class VdmColoringLabelProvider extends DecoratingStyledCellLabelProvider implements ILabelProvider {

    public static final Styler HIGHLIGHT_STYLE = StyledString.createColorRegistryStyler(null,
            VdmColoredViewersManager.HIGHLIGHT_BG_COLOR_NAME);
    public static final Styler HIGHLIGHT_WRITE_STYLE = StyledString.createColorRegistryStyler(null,
            VdmColoredViewersManager.HIGHLIGHT_WRITE_BG_COLOR_NAME);

From source file org.python.pydev.shared_ui.search.DecoratingFileSearchLabelProvider.java

/**
 * Copy from org.eclipse.search.internal.ui.text.DecoratingFileSearchLabelProvider
 */
public class DecoratingFileSearchLabelProvider extends DecoratingStyledCellLabelProvider
        implements IPropertyChangeListener, ILabelProvider {