本文整理汇总了Java中org.eclipse.xtext.ui.editor.utils.TextStyle.setColor方法的典型用法代码示例。如果您正苦于以下问题:Java TextStyle.setColor方法的具体用法?Java TextStyle.setColor怎么用?Java TextStyle.setColor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.xtext.ui.editor.utils.TextStyle
的用法示例。
在下文中一共展示了TextStyle.setColor方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: regExTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
/**
* Default style for all reg-ex literals, colored orange.
*/
public TextStyle regExTextStyle() {
TextStyle textStyle = defaultTextStyle().copy();
textStyle.setColor(new RGB(255, 128, 64)); // orange
// textStyle.setBackgroundColor(new RGB(233, 242, 248)); // very light blue/greenish thing
return textStyle;
}
示例2: templateDelimiterTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
/**
* Default style for template delimiters, colored orange.
*/
public TextStyle templateDelimiterTextStyle() {
TextStyle textStyle = defaultTextStyle().copy();
textStyle.setColor(new RGB(255, 183, 51)); // light orange
// textStyle.setBackgroundColor(new RGB(233, 242, 248)); // very light blue/greenish thing
return textStyle;
}
示例3: keywordTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
@Override
public TextStyle keywordTextStyle() {
TextStyle textStyle = defaultTextStyle().copy();
textStyle.setColor(new RGB(14, 48, 131));
textStyle.setStyle(SWT.BOLD);
return textStyle;
}
示例4: incluirTipo
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
public void incluirTipo(IHighlightingConfigurationAcceptor acceptor, String s, RGB rgbD, RGB rgbT, int estilo) {
TextStyle estiloTexto = new TextStyle();
estiloTexto.setColor(rgbD);
estiloTexto.setBackgroundColor(rgbT);
estiloTexto.setStyle(estilo);
//FontData f = new FontData();
//f.setHeight(7);
//textStyle.setFontData(f);
acceptor.acceptDefaultHighlighting(s, s, estiloTexto);
}
示例5: addType
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
public void addType( IHighlightingConfigurationAcceptor acceptor, String s, int r, int g, int b, int style )
{
TextStyle textStyle = new TextStyle();
textStyle.setBackgroundColor(new RGB(255, 255, 255));
textStyle.setColor(new RGB(r, g, b));
textStyle.setStyle(style);
//textStyle.setFontData(new FontData("courier", 14, style));
acceptor.acceptDefaultHighlighting(s, s, textStyle);
}
示例6: addType
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
public void addType( IHighlightingConfigurationAcceptor acceptor, String s, int r, int g, int b, int style) {
TextStyle textStyle = new TextStyle();
//textStyle.setBackgroundColor(new RGB(255, 255, 255));
textStyle.setColor(new RGB(r, g, b));
textStyle.setStyle(style);
acceptor.acceptDefaultHighlighting(s, s, textStyle);
}
示例7: javaDocCommentTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
/**
* @return a bluish TextStyle for JavaDoc comments
*/
public TextStyle javaDocCommentTextStyle() {
TextStyle textStyle = defaultTextStyle().copy();
// CHECKSTYLE:OFF
textStyle.setColor(new RGB(63, 95, 191));
// CHECKSTYLE:ON
return textStyle;
}
示例8: addType
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
public void addType(IHighlightingConfigurationAcceptor acceptor, String s,
int r, int g, int b, int style) {
TextStyle textStyle = new TextStyle();
textStyle.setBackgroundColor(new RGB(255, 255, 255));
textStyle.setColor(new RGB(r, g, b));
textStyle.setStyle(style);
acceptor.acceptDefaultHighlighting(s, s, textStyle);
}
示例9: taskTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
@Override
public TextStyle taskTextStyle() {
final TextStyle textStyle = defaultTextStyle().copy();
textStyle.setFontData(GamaFonts.getNavigHeaderFont().getFontData());
textStyle.setColor(new RGB(150, 132, 106));
textStyle.setStyle(SWT.ITALIC | SWT.BOLD);
return textStyle;
}
示例10: commentTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
@Override
public TextStyle commentTextStyle() {
final TextStyle textStyle = defaultTextStyle().copy();
textStyle.setFontData(GamaFonts.getNavigFolderFont().getFontData());
textStyle.setColor(new RGB(63, 127, 95));
return textStyle;
}
示例11: keywordTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
@Override
public TextStyle keywordTextStyle() {
final TextStyle textStyle = defaultTextStyle().copy();
textStyle.setColor(new RGB(127, 0, 85));
textStyle.setStyle(SWT.NONE);
return textStyle;
}
示例12: configure
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
@Override
public void configure(IHighlightingConfigurationAcceptor acceptor) {
super.configure(acceptor);
TextStyle textStyle = new TextStyle();
textStyle.setBackgroundColor(new RGB(255, 255, 255));
textStyle.setColor(new RGB(42, 0, 255));
textStyle.setFontData(new FontData("Consolas-regular", 10, SWT.BOLD));
acceptor.acceptDefaultHighlighting(REFERRED_VARIABLES, REFERRED_VARIABLES, textStyle);
}
示例13: commentTextStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
@Override
public TextStyle commentTextStyle() {
TextStyle textStyle = defaultTextStyle().copy();
textStyle.setColor(new RGB(128, 128, 128));
textStyle.setStyle(SWT.ITALIC);
return textStyle;
}
示例14: addType
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
public void addType( IHighlightingConfigurationAcceptor acceptor, String s) {
TextStyle textStyle = new TextStyle();
textStyle.setBackgroundColor(new RGB(255, 255, 255));
textStyle.setColor(new RGB(50, 0, 0));
textStyle.setStyle(SWT.BOLD);
acceptor.acceptDefaultHighlighting(s, s, textStyle);
}
示例15: crossRefStringStyle
import org.eclipse.xtext.ui.editor.utils.TextStyle; //导入方法依赖的package包/类
private TextStyle crossRefStringStyle() {
TextStyle _xblockexpression = null;
{
TextStyle _textStyle = new TextStyle();
final TextStyle textStyle = _textStyle;
RGB _rGB = new RGB(44, 44, 44);
textStyle.setColor(_rGB);
_xblockexpression = (textStyle);
}
return _xblockexpression;
}