private TextStyle hubNameStyle() {
   TextStyle _textStyle = new TextStyle();
   final TextStyle textStyle = _textStyle;
   RGB _rGB = new RGB(0, 0, 0);
   textStyle.setColor(_rGB);
   return textStyle;
 }
 private TextStyle myCommentTextStyle() {
   TextStyle _textStyle = new TextStyle();
   final TextStyle textStyle = _textStyle;
   RGB _rGB = new RGB(88, 88, 88);
   textStyle.setColor(_rGB);
   textStyle.setStyle(SWT.ITALIC);
   return textStyle;
 }
 private TextStyle sceneNameStyle() {
   TextStyle _textStyle = new TextStyle();
   final TextStyle textStyle = _textStyle;
   RGB _rGB = new RGB(0, 0, 0);
   textStyle.setColor(_rGB);
   textStyle.setStyle(SWT.BOLD);
   return textStyle;
 }
 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;
 }
コード例 #5
0
 public TextStyle numberTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(125, 125, 125));
   return textStyle;
 }
コード例 #6
0
 public TextStyle modifierTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(127, 0, 85));
   textStyle.setStyle(SWT.BOLD);
   return textStyle;
 }
コード例 #7
0
 public TextStyle stringTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(42, 0, 255));
   return textStyle;
 }
コード例 #8
0
 public TextStyle defaultTextStyle() {
   TextStyle textStyle = new TextStyle();
   textStyle.setBackgroundColor(new RGB(255, 255, 255));
   textStyle.setColor(new RGB(0, 0, 0));
   return textStyle;
 }
コード例 #9
0
 public TextStyle commentTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(63, 127, 95));
   return textStyle;
 }
コード例 #10
0
 public TextStyle resourceRefTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(128, 0, 0)); // cayenne brown
   return textStyle;
 }
コード例 #11
0
 public TextStyle taskTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(68, 68, 68));
   textStyle.setStyle(SWT.BOLD);
   return textStyle;
 }
コード例 #12
0
 public TextStyle regexpTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(0, 0, 192));
   textStyle.setStyle(SWT.BOLD);
   return textStyle;
 }
コード例 #13
0
 public TextStyle propertyTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(0x99, 0x33, 0x00)); // Brownish
   return textStyle;
 }
コード例 #14
0
 public TextStyle pathTextStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(63, 95, 191));
   textStyle.setStyle(SWT.ITALIC);
   return textStyle;
 }
コード例 #15
0
 public TextStyle italicKeywordLightStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(127, 0, 85));
   textStyle.setStyle(SWT.ITALIC);
   return textStyle;
 }
コード例 #16
0
 public TextStyle documentationStyle() {
   TextStyle textStyle = defaultTextStyle().copy();
   textStyle.setColor(new RGB(63, 95, 191));
   return textStyle;
 }