Codota Logo
Composite.removeMouseTrackListener
Code IndexAdd Codota to your IDE (free)

How to use
removeMouseTrackListener
method
in
org.eclipse.swt.widgets.Composite

Best Java code snippets using org.eclipse.swt.widgets.Composite.removeMouseTrackListener (Showing top 4 results out of 315)

  • Common ways to obtain Composite
private void myMethod () {
Composite c =
  • Codota IconControl control;control.getParent()
  • Codota IconStatusDialog zuper;(Composite) zuper.createDialogArea(parent)
  • Codota IconTitleAreaDialog zuper;(Composite) zuper.createDialogArea(parent)
  • Smart code suggestions by Codota
}
origin: BiglySoftware/BiglyBT

@Override
public void dispose() {
  if (composite != null && !composite.isDisposed()) {
    composite.removePaintListener(this);
    composite.removeMouseListener(this);
    composite.removeMouseMoveListener(this);
    composite.removeMouseTrackListener(this);
  }
  if (disposeListeners != null) {
    for (Iterator iter = disposeListeners.iterator(); iter.hasNext();) {
      TableCellDisposeListener listener = (TableCellDisposeListener) iter.next();
      try {
        listener.dispose(this);
      } catch (Throwable e) {
        Debug.out(e);
      }
    }
    disposeListeners = null;
  }
  tableColumn.invokeCellDisposeListeners(this);
  tableColumn.invalidateCells();
}
origin: org.eclipse.platform/org.eclipse.jface

private void removeCompositeListeners(Composite c) {
  if (!c.isDisposed()) {
    printRemoveListener(c, "PAINT"); //$NON-NLS-1$
    c.removePaintListener(paintListener);
    printRemoveListener(c, "MOUSETRACK"); //$NON-NLS-1$
    c.removeMouseTrackListener(mouseTrackListener);
    printRemoveListener(c, "SWT.MenuDetect"); //$NON-NLS-1$
    c.removeListener(SWT.MenuDetect, compositeListener);
    printRemoveListener(c, "SWT.MouseDown"); //$NON-NLS-1$
    c.removeListener(SWT.MouseDown, compositeListener);
    printRemoveListener(c, "SWT.MouseDoubleClick"); //$NON-NLS-1$
    c.removeListener(SWT.MouseDoubleClick, compositeListener);
  }
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.m2e.core.ui

private void removeCompositeListeners(Composite c) {
 if(!c.isDisposed()) {
  printRemoveListener(c, "PAINT"); //$NON-NLS-1$
  c.removePaintListener(paintListener);
  printRemoveListener(c, "MOUSETRACK"); //$NON-NLS-1$
  c.removeMouseTrackListener(mouseTrackListener);
  printRemoveListener(c, "SWT.MenuDetect"); //$NON-NLS-1$
  c.removeListener(SWT.MenuDetect, compositeListener);
  printRemoveListener(c, "SWT.MouseDown"); //$NON-NLS-1$
  c.removeListener(SWT.MouseDown, compositeListener);
  printRemoveListener(c, "SWT.MouseDoubleClick"); //$NON-NLS-1$
  c.removeListener(SWT.MouseDoubleClick, compositeListener);
 }
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

private void removeCompositeListeners(Composite c) {
  if (!c.isDisposed()) {
    printRemoveListener(c, "PAINT"); //$NON-NLS-1$
    c.removePaintListener(paintListener);
    printRemoveListener(c, "MOUSETRACK"); //$NON-NLS-1$
    c.removeMouseTrackListener(mouseTrackListener);
    printRemoveListener(c, "SWT.MenuDetect"); //$NON-NLS-1$
    c.removeListener(SWT.MenuDetect, compositeListener);
    printRemoveListener(c, "SWT.MouseDown"); //$NON-NLS-1$
    c.removeListener(SWT.MouseDown, compositeListener);
    printRemoveListener(c, "SWT.MouseDoubleClick"); //$NON-NLS-1$
    c.removeListener(SWT.MouseDoubleClick, compositeListener);
  }
}
org.eclipse.swt.widgetsCompositeremoveMouseTrackListener

Popular methods of Composite

  • setLayout
    Sets the layout which is associated with the receiver to be the argument which may be null.
  • <init>
    Constructs a new instance of this class given its parent and a style value describing its behavior a
  • setLayoutData
  • layout
    Forces a lay out (that is, sets the size and location) of all widgets that are in the parent hierarc
  • getDisplay
  • getChildren
    Returns a (possibly empty) array containing the receiver's children. Children are returned in the or
  • getShell
  • getFont
  • getLayout
    Returns layout which is associated with the receiver, or null if one has not been set.
  • setFont
  • getParent
  • computeSize
  • getParent,
  • computeSize,
  • dispose,
  • setBackground,
  • getClientArea,
  • isDisposed,
  • getBackground,
  • setVisible,
  • setSize,
  • setData

Popular in Java

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • findViewById (Activity)
  • getExternalFilesDir (Context)
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now