List of usage examples for org.eclipse.jface.window DefaultToolTip subclass-usage
From source file ca.uvic.chisel.javasketch.ui.internal.presentation.TimeLineTooltip.java
/** * @author Del Myers * */ class TimeLineTooltip extends DefaultToolTip {
From source file org.caleydo.core.io.gui.dataimport.widget.table.NatTableToolTip.java
/** * @author Christian Partl * */ public class NatTableToolTip extends DefaultToolTip {
From source file org.eclipse.emf.ecp.common.util.ModelElementTooltip.java
/** * Defines a tooltip support for the model element link widget. * * @author Shterev */ public class ModelElementTooltip extends DefaultToolTip {
From source file org.eclipse.emf.ecp.common.utilities.ModelElementClassTooltip.java
/** * Defines a tooltip support for the model element icons. * * @author Shterev */ public class ModelElementClassTooltip extends DefaultToolTip {
From source file org.eclipse.emf.ecp.editor.mecontrols.FeatureHintTooltipSupport.java
/** * Defines a tooltip support displaying brief feature descriptions as tooltip hints. * * @author Shterev */ public class FeatureHintTooltipSupport extends DefaultToolTip {
From source file org.eclipse.nebula.widgets.nattable.tooltip.NatTableContentTooltip.java
/**
* {@link ToolTip} implementation for the {@link NatTable} which will show the display
* value of the cell of which the tooltip is requested.
* <p>It is possible to configure for which regions the tooltips should be activated.
* If none are configured, the tooltips are active for every region of the {@link NatTable}.
*
From source file org.eclipse.riena.ui.swt.facades.internal.AbstractNavigationToolTip.java
/** * */ public abstract class AbstractNavigationToolTip extends DefaultToolTip { public AbstractNavigationToolTip(final Control control) {
From source file org.eclipse.scout.rt.ui.swt.basic.table.SwtScoutTooltipSupport.java
public class SwtScoutTooltipSupport extends DefaultToolTip { private Cell cell; private ColumnViewer viewer; protected SwtScoutTooltipSupport(ColumnViewer viewer, int style, boolean manualActivation) { super(viewer.getControl(), style, manualActivation);
From source file org.kalypso.zml.ui.table.nat.tooltip.ZmlTableTooltip.java
/** * @author Dirk Kuch */ public class ZmlTableTooltip extends DefaultToolTip { private static final Image IMG = new Image(null, ZmlTableTooltip.class.getResourceAsStream("icons/help_hint_48.png")); //$NON-NLS-1$
From source file org.openlca.app.components.FancyToolTip.java
/** * Creates a tool tip for controls containing model components, which shows the * name and description of the pointed model component in a pop-up section. */ public final class FancyToolTip extends DefaultToolTip {