Package org.eclipse.swt.widgets

Examples of org.eclipse.swt.widgets.Shell.moveAbove()


        /*
         * Avoids flickering when replacing hovers, especially on Vista in
         * ON_CLICK mode. Causes flickering on GTK. Carbon does not care.
         */
        if ("win32".equals(SWT.getPlatform())) {
            shell.moveAbove(null);
        }

        super.setVisible(true);
    }

View Full Code Here


                            Shell windowShell = window.getShell();
                            if (windowShell.getMinimized()) {
                windowShell.setMinimized(false);
              }
                            windowShell.setActive();
                            windowShell.moveAbove(null);
                        }
                    });
                    mi.setSelection(window == workbenchWindow);
                }
            }
View Full Code Here

    /*
     * Avoids flickering when replacing hovers, especially on Vista in ON_CLICK mode.
     * Causes flickering on GTK. Carbon does not care.
     */
    if ("win32".equals(SWT.getPlatform())) //$NON-NLS-1$
      shell.moveAbove(null);
   
        super.setVisible(true);
  }

  /*
 
View Full Code Here

                        .getPage();
                Shell s = p.getWorkbenchWindow().getShell();
                if (s.getMinimized()) {
          s.setMinimized(false);
        }
                s.moveAbove(null);
                p.getWorkbenchWindow().setActivePage(p);
                p.activate(editor);
            } else {
                IWorkbenchPage p = window.getActivePage();
                if (p != null) {
View Full Code Here

    /*
     * Avoids flickering when replacing hovers, especially on Vista in ON_CLICK mode.
     * Causes flickering on GTK. Carbon does not care.
     */
    if ("win32".equals(SWT.getPlatform())) //$NON-NLS-1$
      shell.moveAbove(null);

    super.setVisible(true);
  }

  /*
 
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.