Examples of CBanner


Examples of org.eclipse.swt.custom.CBanner

   *
   * @param workbenchComposite
   *            The workbench acting as the parent of the CBanner
   */
  public void createCBanner(Composite workbenchComposite) {
    banner = new CBanner(workbenchComposite, SWT.NONE);
    banner.setSimple(false);
    banner.setRightWidth(175);
    banner.setLocation(0, 0);

    // Create the left composite and override its 'computeSize'
View Full Code Here

Examples of org.eclipse.swt.custom.CBanner

    }

    // Create the CBanner widget which parents both the Coolbar
    // and the perspective switcher, and supports some configurations
    // on the left right and bottom
    topBar = new CBanner(shell, SWT.NONE);
    topBarTrim = new WindowTrimProxy(topBar,
        "org.eclipse.ui.internal.WorkbenchWindow.topBar", //$NON-NLS-1$ 
        WorkbenchMessages.TrimCommon_Main_TrimName, SWT.NONE, true);

    // the banner gets a curve along with the new tab style
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.