Package org.eclipse.xtext.ui.editor.utils

Examples of org.eclipse.xtext.ui.editor.utils.TextStyle


    TextStyle textStyle = stringTextStyle().copy();
    return textStyle;
  }
 
  public TextStyle functionTextStyle() {
    TextStyle textStyle = defaultTextStyle().copy();
    textStyle.setStyle(SWT.BOLD);
    return textStyle;
  }
View Full Code Here


    acceptor.acceptDefaultHighlighting(PROPERTY_ID, "Property Definition", propertyTextStyle());
    acceptor.acceptDefaultHighlighting(ELEMENT_ID, "Element Definition", elementTextStyle());
  }
  public TextStyle cssDocTextStyle() {
    TextStyle textStyle = defaultTextStyle().copy();
    textStyle.setColor(new RGB(63,95,191));
    return textStyle;
  }
View Full Code Here

    textStyle.setColor(new RGB(63,95,191));
    return textStyle;
  }
 
  public TextStyle referencesTextStyle() {
    TextStyle textStyle = ruleTextStyle().copy();
    textStyle.setStyle(SWT.ITALIC);
    return textStyle;
  }
View Full Code Here

    textStyle.setStyle(SWT.ITALIC);
    return textStyle;
  }
 
  public TextStyle packageTextStyle() {
    TextStyle textStyle = defaultTextStyle().copy();
    textStyle.setColor(new RGB(206,123,0));
    return textStyle;
  }
View Full Code Here

    textStyle.setColor(new RGB(206,123,0));
    return textStyle;
  }
 
  public TextStyle elementTextStyle() {
    TextStyle textStyle = defaultTextStyle().copy();
    textStyle.setColor(new RGB(206,123,0));
    return textStyle;
  }
View Full Code Here

    textStyle.setColor(new RGB(206,123,0));
    return textStyle;
  }
 
  public TextStyle propertyTextStyle() {
    TextStyle textStyle = defaultTextStyle().copy();
    textStyle.setColor(new RGB(0,123,0));
    return textStyle;
  }
View Full Code Here

    textStyle.setColor(new RGB(0,123,0));
    return textStyle;
  }
 
  public TextStyle ruleTextStyle() {
    TextStyle textStyle = defaultTextStyle().copy();
    textStyle.setColor(new RGB(206,23,0));
    return textStyle;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.xtext.ui.editor.utils.TextStyle

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.