- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
多文本编辑器设计与实现
摘 要
在深入研究当前各种文本编辑软件优劣的前提上,分析软件开发中程序员的实际需求,发现他们有时候并不需要打开系统庞大、启动较慢的集成开发环境来阅读改写代码,只需要通过小型的文本编辑器即可。然而大多数小型文本编辑器并不能高亮显示代码中的关键字,或者软件本身闭源,不能根据需要改变高亮显示关键字列表,或者软件只有windows版或Linux版平台移植性较差,这并不能满足经常需要在各个软件系统平台之间交叉开发的程序员的需求,甚至影响了他们的工作效率。本系统运用了平台移植性较好的Qt语言来开发,不同平台之间只需要重新编译即可,且代码易读可重用性良好,程序员只需要修改代码中关键字列表或根据需要自定义自己的高亮显示关键字列表即可,这一软件为程序员阅读改写代码提供了便利。
关键词 自定义;多文本编辑器;Qt;高亮显示
The Design and Implementation of Multiple Document Editor
Abstract
In the further study of the current various text editing software quality on the premise of the analysis of the actual demand of software development programmers, find that they sometimes dont need to open the large system, start the slower integrated development environment to read rewrite code, you just need to through the small text editor. But most small text editor is not highlighted keywords in your code, or closed source software itself, not according to the need to change the highlighted keywords list, or software version only Windows or Linux version of the moving platform plant sex is bad, it doesnt meet often need to cross between different software system platform development demand for programmers, and even affect their work efficiency. This system USES the platform portability better Qt to develop language, you just need to recompile, between the platform and code easy to read good reusability, programmers only need to modify the code in the keywords list or according to the need to customize your highlighted keywords list, this software provides convenience for programmers to read rewriting code.
Key words: multiple document editor; plugins; custom highlight
目 录
摘要 I
Abstract II
1.绪论 1
1.1现实背景和理论背景 1
1.2研究目的和意义 1
1.2.1目的 1
1.2.2意义 1
2.软件需求分析 2
3.开发模型的确定 3
3.1软件工程及其开发模型概述 3
3.1.1软件工程 3
3.1.2开发模型概述 3
3.2确定增量模型 6
4.QT简介 7
4.1 QT支持的平台 7
4.2 QT的不同发行版本 7
5.多文本编辑器的设计和实现 8
5.1信号/槽机制 8
5.1.1信号/槽机制概述 8
5.1.2一个小例子 9
5.1.3信号 11
5.1.4槽 11
文档评论(0)