Package org.eclipse.rap.rwt.template

Examples of org.eclipse.rap.rwt.template.TextCell


    addAuthorCell( template );
    return template;
  }

  private static void addAuthorCell( Template template ) {
    TextCell authorCell = new TextCell( template );
    authorCell.setBindingIndex( 2 );
    authorCell.setLeft( 52 ).setRight( 10 ).setTop( 36 ).setBottom( 0 );
    authorCell.setForeground( new Color( ui.getDisplay(), new RGB( 123, 123, 123 ) ) );
    authorCell.setFont( new Font( ui.getDisplay(), new FontData( "Verdana", 14, SWT.NONE ) ) );
  }
View Full Code Here


    authorCell.setForeground( new Color( ui.getDisplay(), new RGB( 123, 123, 123 ) ) );
    authorCell.setFont( new Font( ui.getDisplay(), new FontData( "Verdana", 14, SWT.NONE ) ) );
  }

  private static void addTitleCell( Template template ) {
    TextCell titleCell = new TextCell( template );
    titleCell.setBindingIndex( 1 );
    titleCell.setLeft( 52 ).setRight( 10 ).setTop( 12 ).setBottom( 0 );
    titleCell.setFont( new Font( ui.getDisplay(), new FontData( "Verdana", 18, SWT.NONE ) ) );
    titleCell.setForeground( new Color( ui.getDisplay(), new RGB( 74, 74, 74 ) ) );
  }
View Full Code Here

TOP

Related Classes of org.eclipse.rap.rwt.template.TextCell

Copyright © 2018 www.massapicom. 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.