Examples of HyperlinkGroup


Examples of org.eclipse.ui.forms.HyperlinkGroup

        grid.widthHint = 400;
        form.setLayoutData(grid);
        form.setText("Welcome to JSmooth !");
        TableWrapLayout wraplayout = new TableWrapLayout();
        form.getBody().setLayout(wraplayout);
        HyperlinkGroup hypergroup = kit.getHyperlinkGroup();
        hypergroup.setActiveForeground(display.getSystemColor(SWT.COLOR_BLUE));
        hypergroup.setForeground(display.getSystemColor(SWT.COLOR_BLUE));
        hypergroup.setHyperlinkUnderlineMode(HyperlinkGroup.UNDERLINE_HOVER);
       
        Label label = kit.createSeparator(form.getBody(), SWT.HORIZONTAL);
        TableWrapData wrapgrid = new TableWrapData(TableWrapData.FILL_GRAB);
        label.setLayoutData(wrapgrid);
       
View Full Code Here

Examples of org.eclipse.ui.forms.HyperlinkGroup

    scomp.setOrigin(location);
  }

  private void initialize() {
    initializeBorderStyle();
    hyperlinkGroup = new HyperlinkGroup(colors.getDisplay());
    hyperlinkGroup.setBackground(colors.getBackground());
    visibilityHandler = new VisibilityHandler();
    keyboardHandler = new KeyboardHandler();
    boldFontHolder = new BoldFontHolder();
  }
View Full Code Here

Examples of org.eclipse.ui.forms.HyperlinkGroup

    scomp.setOrigin(location);
  }

  private void initialize() {
    initializeBorderStyle();
    hyperlinkGroup = new HyperlinkGroup(colors.getDisplay());
    hyperlinkGroup.setBackground(colors.getBackground());
    visibilityHandler = new VisibilityHandler();
    keyboardHandler = new KeyboardHandler();
    boldFontHolder = new BoldFontHolder();
  }
View Full Code Here

Examples of org.eclipse.ui.forms.HyperlinkGroup

  }

  public void createPart(Composite parent) {
    CheatSheetStopWatch.startStopWatch("CheatSheetPage.createPart()"); //$NON-NLS-1$   
    super.createPart(parent);
    HyperlinkGroup hyperlinkGroup = toolkit.getHyperlinkGroup();
    hyperlinkGroup.setHyperlinkUnderlineMode(HyperlinkSettings.UNDERLINE_HOVER);
   
    CheatSheetStopWatch
        .printLapTime(
            "CheatSheetPage.createPart()", "Time in CheatSheetPage.createInfoArea() after super.createInfoArea(): "); //$NON-NLS-1$ //$NON-NLS-2$
    IntroItem intro = new IntroItem(this, cheatSheet.getIntroItem(),
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.