parent
9b652672e8
commit
526e4343a1
|
|
@ -188,13 +188,6 @@ type TFTSLScriptcustomMemo=class(TSYNmemoNorm)
|
|||
end
|
||||
function DoTextChanged(p);override;
|
||||
begin
|
||||
{n := Lines.Length();
|
||||
ccnt := GutterCharCnt;
|
||||
nccnt := max(integer(n~10)+2,3);
|
||||
if ccnt <> nccnt then
|
||||
begin
|
||||
GutterCharCnt := nccnt;
|
||||
end}
|
||||
inherited;
|
||||
SetChangeFlag(true);
|
||||
end
|
||||
|
|
|
|||
|
|
@ -3433,6 +3433,7 @@ type TtextEditor = class(tpanel)
|
|||
wssysmenu := true;
|
||||
caption := "text Editor Dialog";
|
||||
memo := new tmemo(self);
|
||||
memo.autogutterwidth := true;
|
||||
memo.OnKeyPress := thisfunction(MemoKeyPress);
|
||||
memo.parent :=self;
|
||||
btn1 := new tbtn(self);
|
||||
|
|
|
|||
|
|
@ -1222,8 +1222,7 @@ type TCustomMemo = class(TCustomScrollControl,TCustomMemoCmd) //
|
|||
end
|
||||
function DoTextChanged(p);virtual;//文本改变
|
||||
begin
|
||||
//¸Ä±ä
|
||||
autosetgtwidth();
|
||||
//¸Ä±ä
|
||||
end
|
||||
function DoCaretPosChanged();virtual;//caret位置改变
|
||||
begin
|
||||
|
|
@ -1687,6 +1686,7 @@ type TCustomMemo = class(TCustomScrollControl,TCustomMemoCmd) //
|
|||
begin
|
||||
fRedoList.Clear();
|
||||
end
|
||||
autosetgtwidth();
|
||||
return DoTextChanged(p);
|
||||
end
|
||||
function setcurrentLineColor(c);
|
||||
|
|
|
|||
Loading…
Reference in New Issue