[转]为Linux下的Lazarus添加中文输入支持
2021/12/4 7:16:34
本文主要是介绍[转]为Linux下的Lazarus添加中文输入支持,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在Linux环境下,Lazarus不支持中文输入。这是一个臭名昭著的Bug,其根源为Lazarus所使用的SynEdit的问题。 经过一番搜索,我在Lazarus中文社区上找到了一个解决的办法,辑录如下。 1. 我是用fpcupdeluxe安装的Lazarus,打开/home/pi/fpcupdeluxe/lazarus/ide/sourceeditor.pp。 2. 在界面下方放下一个TPanel, 里面放下一个TLabel,一个TEdit,适当安排界面,如下图。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测试通过。
这篇关于[转]为Linux下的Lazarus添加中文输入支持的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法