!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i

在 RichEdit 中实现代码着色

  • 内容
  • 评论
  • 相关

下面的代码将以指定颜色对一些指定单词着色,就象delphi中的代码编辑器那样。 

procedure CodeColors(Form : TForm;Style : String; RichE : TRichedit; 
                         InVisible : Boolean);  
const  
  // 符号...  
  CodeC1: array[0..20] of String = ('#','$','(',')','*',',',  
          '.','/',':',';','[',']','{','}','<','>', 
下面的代码将以指定颜色对一些指定单词着色,就象delphi中的代码编辑器那样。  

procedure CodeColors(Form : TForm;Style : String; RichE : TRichedit; 
                         InVisible : Boolean);  
const  
  // 符号...  
  CodeC1: array[0..20] of String = ('#','$','(',')','*',',',  
          '.','/',':',';','[',']','{','}','<','>',  
          '-','=','+','''','@');  
  // 保留字...  
  CodeC2: array[0..44] of String = ('and','as','begin',  
          'case','char','class','const','downto',  
          'else','end','except','finally','for',  
          'forward','function','if','implementation','interface',  
          'is','nil','or','private','procedure','public','raise',  
          'repeat','string','to','try','type','unit','uses','var',  
          'while','external','stdcall','do','until','array','of',  
          'in','shr','shl','cos','div');  
var  
  FoundAt : LongInt;  
  StartPos, ToEnd, i : integer;  
  OldCap,T : String;  
  FontC, BackC, C1, C2 ,C3 ,strC, strC1 : TColor;  
begin  
  OldCap := Form.Caption;  
  with RichE do  
  begin  
    Font.Name := 'Courier New';  
    Font.Size := 10;  
    if WordWrap then WordWrap := false;  
    SelectAll;  
    SelAttributes.color := clBlack;  
    SelAttributes.Style := [];  
    SelStart := 0;  
    if InVisible then  
    begin  
      Visible := False;  
      Form.Caption := 'Executing Code Coloring...';  
    end;  
  end;  

  BackC := clWhite; FontC := clBlack;  
  C1 := clBlack; C2 := clBlack; C3 := clBlack;  
  strC := clBlue; strC1 := clSilver;  

  if Style = 'Twilight' then  
  begin  
    BackC := clBlack; FontC := clWhite;  
    C1 := clLime; C2 := clSilver; C3 := clAqua;  
    strC := clYellow; strC1 := clRed;  
  end  
  else  
  if Style = 'Default' then  
  begin  
    BackC := clWhite; FontC := clBlack;  
    C1 := clTeal; C2 := clMaroon; C3 := clBlue;  
    strC := clMaroon; strC1 := clSilver;  
  end  
  else  
  if Style = 'Ocean' then  
  begin  
    BackC := $00FFFF80; FontC := clBlack;  
    C1 := clMaroon; C2 := clBlack; C3 := clBlue;  
    strC := clTeal; strC1 := clBlack;  
  end  
  else  
  if Style = 'Classic' then  
  begin  
    BackC := clNavy; FontC := clYellow;  
    C1 := clLime; C2 := clSilver; C3 := clWhite;  
    strC := clAqua; strC1 := clSilver;  
  end  
  else  
  begin  
    with RichE do  
    begin  
      T := '{'+Style+' = Invalid Style [Default,Classic,Twilight,Ocean] ONLY! }';  
      Lines.Insert(0,T);  
      StartPos := 0;  
      ToEnd := Length(Text) - StartPos;  
      FoundAt := FindText(T, StartPos, ToEnd, [stWholeWord]);  
      SelStart := FoundAt;  
      SelLength := Length(T);  
      SelAttributes.Color := clRed;  
      SelAttributes.Style := [fsBold];  
      StartPos := 0;  
      ToEnd := Length(Text) - StartPos;  
      FoundAt := FindText('ONLY!', StartPos, ToEnd, [stWholeWord]);  
      SelStart := FoundAt;  
      SelLength := 4;  
      SelAttributes.Color := clRed;  
      SelAttributes.Style := [fsBold,fsUnderLine];  
    end;  
  end;  

  RichE.SelectAll;  
  RichE.color := BackC;  
  RichE.SelAttributes.color := FontC;  

  for i := 0 to 100 do  
  begin  
    with RichE do  
    begin  
      StartPos := 0;  
      ToEnd := Length(Text) - StartPos;  
      FoundAt := FindText(IntToStr(i), StartPos, ToEnd, [stWholeWord]);  
      while (FoundAt <> -1) do  
      begin  
        SelStart := FoundAt;  
        SelLength := Length(IntToStr(i));  
        SelAttributes.Color := C1;  
        SelAttributes.Style := [];  
        StartPos := FoundAt + Length(IntToStr(i));  
        FoundAt := FindText(IntToStr(i), StartPos, ToEnd, [stWholeWord]);  
      end;  
    end;  
  end;  
  for i := 0 to 20 do  
  begin  
    with RichE do  
    begin  
      StartPos := 0;  
      ToEnd := Length(Text) - StartPos;  
      FoundAt := FindText(CodeC1, StartPos, ToEnd, []);  
      while (FoundAt <> -1) do  
      begin  
        SelStart := FoundAt;  
        SelLength := Length(CodeC1);  
        SelAttributes.Color := C2;  
        StartPos := FoundAt + Length(CodeC1);  
        FoundAt := FindText(CodeC1, StartPos, ToEnd, []);  
      end;  
    end;  
  end;  
  for i := 0 to 44 do  
  begin  
    with RichE do  
    begin  
      StartPos := 0;  
      ToEnd := Length(Text) - StartPos;  
      FoundAt := FindText(CodeC2, StartPos, ToEnd, [stWholeWord]);  
      while (FoundAt <> -1) do  
      begin  
        SelStart := FoundAt;  
        SelLength := Length(CodeC2);  
        SelAttributes.Color := C3;  
        SelAttributes.Style := [fsBold];  
        StartPos := FoundAt + Length(CodeC2);  
        FoundAt := FindText(CodeC2, StartPos, ToEnd, [stWholeWord]);  
      end;  
    end;  
  end;  
  Startpos := 0;  
  with RichE do  
  begin  
    FoundAt := FindText('''', StartPos, Length(Text), []);  
    while FoundAt <> -1 do  
    begin  
      SelStart := FoundAt;  
      Startpos := FoundAt+1;  
      FoundAt := FindText('''', StartPos, Length(Text), []);  
      if FoundAt <> -1 then  
      begin  
        SelLength := (FoundAt - selstart)+1;  
        SelAttributes.Style := [];  
        SelAttributes.Color := strC;  
        StartPos := FoundAt+1;  
        FoundAt := FindText('''', StartPos, Length(Text), []);  
      end;  
    end;  
  end;  

  Startpos := 0;  
  with RichE do  
  begin  
    FoundAt := FindText('{', StartPos, Length(Text), []);  
    while FoundAt <> -1 do  
    begin  
      SelStart := FoundAt;  
      Startpos := FoundAt+1;  
      FoundAt := FindText('}', StartPos, Length(Text), []);  
      if FoundAt <> -1 then  
      begin  
        SelLength := (FoundAt - selstart)+1;  
        SelAttributes.Style := [];  
        SelAttributes.Color := strC1;  
        StartPos := FoundAt+1;  
        FoundAt := FindText('{', StartPos, Length(Text), []);  
      end;  
    end;  
  end;    

  if InVisible then  
  begin  
    RichE.Visible := True;  
    Form.Caption := OldCap;  
  end;  
  RichE.SelStart := 0;  
end;


评论

0条评论

发表评论

电子邮件地址不会被公开。 必填项已用*标注