3. 在源码里面查找InsertCVSKeyword,会先找到这么一行: procedure InsertCVSKeyword(const AKeyWord: string); 在这一行下面加上一行: procedure InsertKeyword(const AKeyWord: string); F3继续找其实现,找到以下代码:
procedure TSourceEditor.InsertCVSKeyword(const AKeyWord: string); begin if ReadOnly then Exit; FEditor.InsertTextAtCaret('$'+AKeyWord+'$'+LineEnding); end;复制它们,在下面粘贴,改成:
procedure TSourceEditor.InsertKeyword(const AKeyWord: string); begin if ReadOnly then Exit; FEditor.InsertTextAtCaret(AKeyWord); end;这样,就给TSourceEditor增加了一个叫“InsertKeyword”的过程,作用是可以通过编程语句在光标所在位置添加指定字符串。 4. 界面上新加的Edit在onKeyPress,输入以下语句:
procedure TSourceNotebook.Edit1KeyPress(Sender: TObject; var Key: char); begin if key=#13 then begin GetActiveSE.InsertKeyword(Edit1.text); Edit1.Text:=''; FocusEditor; end; end;
这样,需要输入汉字时转到下面输入,然后点一下按钮,就自动添到上面源程序光标所在位置,并且将输入焦点转到上面源程序里面。
最后重新编译Lazarus。 在树梅派和银河麒麟arm 64测试通过。