Examples of removeMouseListener()


Examples of org.eclipse.swt.widgets.Control.removeMouseListener()

    if (fEditor != null) {
      IVerticalRulerInfo rulerInfo= (IVerticalRulerInfo) fEditor.getAdapter(IVerticalRulerInfo.class);
      if (rulerInfo != null) {
        Control control= rulerInfo.getControl();
        if (control != null && !control.isDisposed())
          control.removeMouseListener(this);
      }

      if (fEditor instanceof ITextEditorExtension)
        ((ITextEditorExtension) fEditor).removeRulerContextMenuListener(this);
    }
View Full Code Here

Examples of org.eclipse.swt.widgets.Control.removeMouseListener()

      Control control= fControl;
      fControl= null;
      if (Helper.okToUse(control)) {

        control.removeMouseListener(this);
        control.removeFocusListener(this);

        /*
         * 1GGYYWK: ITPJUI:ALL - Dismissing editor with code assist up causes lots of
         * Internal Errors
View Full Code Here

Examples of org.eclipse.swt.widgets.Control.removeMouseListener()

        // See if we're already listenting to an editor; if so, stop listening
        if (editor != null) {
            if (ruler != null) {
                control = ruler.getControl();
                if (control != null && !control.isDisposed()) {
                    control.removeMouseListener(this);
                }
            }
            if (editor instanceof ITextEditorExtension) {
                ((ITextEditorExtension) editor).removeRulerContextMenuListener(this);
            }
View Full Code Here

Examples of org.jitterbit.integration.client.ui.entity.tree.IntegrationEntityTree.removeMouseListener()

    @Override
    public void uninstall() {
        IntegrationEntityTree tree = getTree();
        if (TreeAndPageSelectionSynchronization.isEnabled()) {
            tree.removeMouseListener(selectionSynchronizer);
        }
        dynamicTree.dispose();
        treePreferenceListeners.dispose();
        treePreferenceListeners = null;
    }
View Full Code Here

Examples of org.locationtech.udig.project.ui.render.displayAdapter.ViewportPane.removeMouseListener()

    private void removeMapMouseListener() {
        if (currentMapMouseListener != null) {
            final IMap activeMap = ApplicationGIS.getActiveMap();
            final IRenderManager renderManager = activeMap.getRenderManager();
            final ViewportPane viewportPane = (ViewportPane) renderManager.getMapDisplay();
            viewportPane.removeMouseListener(currentMapMouseListener);
        }
    }

    private void addMapMouseListener() {
        final IMap activeMap = ApplicationGIS.getActiveMap();
View Full Code Here

Examples of org.mcarthur.sandy.gwt.table.client.TableRow.removeMouseListener()

        public void onDetach(final Object obj, final TableBodyGroup rowGroup) {
            rowGroup.removeMouseListener(rgml);
            final Iterator iter = rowGroup.getRows().iterator();
            while (iter.hasNext()) {
                final TableRow tr = (TableRow)iter.next();
                tr.removeMouseListener(rml);
            }
        }

        public void onDetach(final TableHeaderGroup rowGroup) {
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.