QScintilla
此条目过于依赖第一手来源。 (2024年8月21日) |
原作者 | Neil Hodgson等人 |
---|---|
开发者 | Riverbank Computing公司 |
首次发布 | 2006年6月17日 |
当前版本 | 2.14.1(2023年6月23日) |
原始码库 | https://github.com/brCreate/QScintilla |
编程语言 | C++、Python |
操作系统 | Microsoft Windows、MacOS、Linux、Android、iOS等 |
平台 | 所有Qt支持的平台,如x86及x86-64等 |
语言 | 6种语言 |
许可协议 | GNU GPL及PyQt商业许可证 |
网站 | https://riverbankcomputing.com/software/qscintilla/intro |
QScintilla是对Scintilla的一个Qt端接口,由英国软件公司Riverbank Computing编写,它是一面向Qt公司的Qt图形用户界面框架的源始码编辑器组件之一[1]。由于采用了尼尔·霍奇森(英语:Neil Hodgson)用C++写成的Scintilla组件,QScintilla的内核和基本逻辑均由C++实现[2]。QScintilla封装了几乎所有的Scintilla功能;官方解释称“QScintilla中,除了能找到普通文本编辑器的所有功能外,QScintilla还包含了有助快速编写代码和为程序调试的功能,包括语法高亮、错误指示符、自动完成和调用提示等等。用作选择的页边可有标注,这对于调试器想要标识中断点和当前行很有用。渲染选项比市面上很多原始码编辑器还要多,QScintilla支持比例字形字体、粗体和斜体、多重前景色彩和背景色彩、多重字体等等。”[3][4]
从理论上来讲,QScintilla是一个以C++编写的自由开源程序库。由于QScintilla也提供了面向Python的组件(用户可以搭配版本5或6的PyQt使用它[5],也可以在PyPI上下载使用[6]),所以QScintilla也可以被视作一Python程序库[3]。
功能
[编辑]除了以上官方所述的语法高亮、错误指示符、自动完成和调用提示等以外,QScintilla由于继承了Scintilla的实现与逻辑,它配备了以下的原始码编辑器功能[7]:
由于QScintilla的用户界面部分基于Qt,因此QScintilla可在任何Qt所支持的平台上运作[7],如Windows、Linux、macOS、iOS和Android等。
目前QScintilla的底层逻辑基于Scintilla 3.10.1版本[7],因此QScintilla可能缺失部分或全部Scintilla在其3.10.1后的版本所实现的功能(如SCI_GETSTYLEDTEXTFULL
等,不在QsciScintillaBase
类的匿名枚举中)[8][9][10]。
许可证与法律地位
[编辑]与Scintilla不同,QScintilla使用的是与PyQt(和早期Qt)相同的许可证标准。行双轨许可证:GNU GPL第三版本和PyQt自己的商业许可(目前PyQt和QScintilla均不提供LGPL及其他任何的自由软件许可证,因为官方声称不确定这样做能否维持其售卖商业许可证的收入[11])。开发自由软件者、开源软件以及任何非牟利的软件可使用免费的许可证,但任何牟利性的、商业性的软件都必须购买PyQt商业许可证才合法[12]。
如果买家买了PyQt商业许可证,那么其许可证就是终身有效的,用户可以自由地下载及商业地使用当前和及后版本的PyQt和QScintilla等。但该许可证并不包含购买时间前所发布的版本。PyQt的商业许可证并不包含Qt的商业许可证;用户需另外购买。[13]
Riverbank Computing公司不单独出售QScintilla的许可证;相反,商业用户必须购买所有的Riverbank Computing产品,包括PyQt、PyQt 3D
、PyQt Charts
、SIP
及QScintilla等[14]。换言之,QScintilla是随着PyQt派生而来的产品。
组件
[编辑]QsciAbstractAPIs
和QsciAPIs
提供了调用提示和自动完成的纯文本API资料[15]。QsciCommand
和QsciCommandSet
提供了一系列QsciScintilla
所用到的命令,以及其对应的键盘快捷键[16][17]。QsciDocument
表达了一份正在编辑的文件,以便使用QScintilla开发的编辑器调用并进行多文件编辑[18]。QsciLexer*
定义了词法分析器。QScintilla中的词法分析器虽然不会像一门真正面世的编程语言般产生标识符列表供语法分析器分析,但仍包含面对特定语言的功能,如语法高亮、自动完成、错误提示、调用提示等等[19]。截至2.14.1版本,QScintilla包含面向以下编程语言的功能:ASM[20]、AVS[21]、Bash[22]、Batch[23]、CMake[24]、CoffeeScript[25]、C++[26]、C♯[27]、CSS[28]、D[29]、Diff文档[30]、EDIFACT(支持不足)[31]、Fortran[32]、Fortran 77[33]、Hex[34]、HTML[35]、IDL[36]、IntelHex[37]、Java[38]、JavaScript[39]、JSON[40]、Lua[41]、Makefile[42]、Markdown[43]、MASM[44]、Matlab[45]、NASM[46]、Octave[47]、Pascal[48]、Perl[49]、PO[50]、PostScript[51]、POV[52]、INI文档[53]、Python 2[54]、Ruby[55]、Spice[56]、SQL[57]、S-Record[58]、TCL[59]、Tektronix Hex[60]、TeX[61]、Verilog[62]、VHDL[63]、XML[64]、YAML[65]。用户可以继承以上任何分析器类来更改其默认颜色、背景色、字体、关键字等,以自定显示样式和语言关键字,来让编辑器支持QScintilla默认没有的,但与父类相似的编程语言。例如:继承QsciLexerCPP
并重写其受保护方法keywords(int style);
来使它实际上变为C语言的分析器(C++的语法与C相似)[66];重写QsciLexerPython::keywords(int style);
使它事实上支持Python 3(在QScintilla的层面下,Python 2和Python 3除关键字外无异)[67];诸如Java、JavaScript及IDL等也是如此实现的[68][69][70][71]。除此之外,还可以透过继承QsciLexerCustom
来进行底层代码扫描和代码折叠[72]来定义一个全新的分析器。QsciMacro
定义了一系列可快速录制/回放宏/宏的工具[73]。QsciPrinter
继承了QPrinter
[74],令用户打印一份QScintilla的文档时可操控其特有的页面属性,如缩放度[75]、打印特定行号[76]、自动换行[77]等。QsciScintilla
是QScintilla面向最终程序员的唯一小部件(继承自QWidget
)。是一个功能完备的原始码编辑器,是QScintilla库的核心组件。官方称,“QsciScintilla提供了一个更高阶的、更向Qt的Scintilla API”[78]。QsciScintillaBase
则是实现Scintilla的底层逻辑和代码,正常来说一般用户并不会直接用到它(而且QsciScintilla
继承QsciScintillaBase
)。后者充其量也就是一个枚举提供类(Scintilla称为“资讯”),并且透过SendScintilla(unsigned long msg, ...);
方法提供一个底层的资讯交互实现。QsciStyle
和QsciStyledText
是QScintilla自行的样式和受渲染文字的容器。它们可在某些需要设置文字外观的方法中,设置被显示文字的格式,而非系统的默认格式[79][80]。举例:QsciScintilla::annotate(...);
。
示例
[编辑]右侧的图片为两个示例运行的结果,在GNU/Linux的Ubuntu上编译/运行(用Python和C++编写后运行的结果均为一样)。
此处为一个使用Python编写的示例:
#!/usr/bin/python3
# -*- encoding: utf8 -*-
from PyQt5.QtWidgets import QApplication, QMainWindow
# 從PyQt的QtWidgets子模組中導入依賴類,使用版本爲5
from PyQt5.Qsci import QsciLexerCPP, QsciScintilla
# 從QScintilla導入編輯器及C++詞法分析器類,使用PyQt版本爲5
# 需事先透過「pip install QScintilla」下載
import sys
# 導入sys模塊
# 運行主代碼
if __name__ == "__main__":
app: QApplication = QApplication(sys.argv)
# 建立一個QApplication實例
mw: QMainWindow = QMainWindow()
# 建立一個QMainWindow實例
ed: QsciScintilla = QsciScintilla(mw)
# 建立編輯器實例,父類爲mw
lex: QsciLexerCPP = QsciLexerCPP(ed)
# 建立詞法分析器實例,父類爲ed
ed.setLexer(lex)
# 設定分析器
ed.setMarginLineNumbers(0, True)
# 設定行號
ed.setMarginWidth(0, "000000")
# 設定顯示行號的頁邊界所佔寬度爲六個字符
mw.setCentralWidget(ed)
# 常規操作
mw.show()
# 顯示mw
sys.exit(app.exec())
# 常規操作,也可調用app.exec_()
以下为C++版本:
#include <QApplication>
#include <QMainWindow>
// 從PyQt的QtWidgets子模組中導入依賴類,使用版本自由
#include <Qsci/qscilexercpp.h>
#include <Qsci/qsciscintilla.h>
// 從QScintilla導入編輯器及C++詞法分析器類,使用Qt版本自由
// 需事先透過「Qt Online Installer」下載、編譯、封裝Qt
// 然後再從GitHub或Riverbank的官網上下載QScintilla,解壓壓縮包、
// 編譯、下載。
// 需要用到CMake/QMake。
// 運行主代碼
int main(int argc, char *argv[]) {
QApplication app(argc, argv)
// 建立一個QApplication實例
QMainWindow mw()
// 建立一個QMainWindow實例
QsciScintilla *ed = new QsciScintilla(&mw)
// 建立編輯器實例,父類爲mw指針地址
QsciLexerCPP *lex = new QsciLexerCPP(ed)
// 建立詞法分析器實例,父類爲ed
ed->setLexer(lex)
// 設定分析器
ed->setMarginLineNumbers(0, true)
// 設定行號
ed->setMarginWidth(0, "000000")
// 設定顯示行號的頁邊界所佔寬度爲六個字符
mw.setCentralWidget(ed)
// 常規操作
mw.show()
// 顯示mw
return app.exec()
// 常規操作,也可調用app.exec_()
}
参考资料
[编辑]- ^ QScintilla: QScintilla - a Port to Qt v5 and Qt v6 of Scintilla. brdocumentation.github.io. [2024-08-19].
- ^ brCreate, brCreate/QScintilla, 2024-08-02 [2024-08-18]
- ^ 3.0 3.1 Riverbank Computing | Introduction. riverbankcomputing.com. [2024-08-18].
- ^ Riverbank Computing | Introduction. riverbankcomputing.com. [2024-08-19].
- ^ QScintilla/Python at main · brCreate/QScintilla. GitHub. [2024-08-18] (英语).
- ^ Limited, Riverbank Computing, QScintilla: Python bindings for the QScintilla programmers editor widget, [2024-08-18]
- ^ 7.0 7.1 7.2 QScintilla: QScintilla - a Port to Qt v5 and Qt v6 of Scintilla. brdocumentation.github.io. [2024-08-19].
- ^ Scintilla Documentation. scintilla.org. [2024-08-19].
- ^ Scintilla Documentation. scintilla.org. [2024-08-19].
- ^ QScintilla: QsciScintillaBase Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ Riverbank Computing | License FAQ. riverbankcomputing.com. [2024-08-19].
- ^ Riverbank Computing | Buy PyQt. riverbankcomputing.com. [2024-08-19].
- ^ Riverbank Computing | Buy PyQt. riverbankcomputing.com. [2024-08-19].
- ^ Riverbank Computing | Buy PyQt. riverbankcomputing.com. [2024-08-19].
- ^ QScintilla: QsciAPIs Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciCommand Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciCommandSet Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciDocument Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexer Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerAsm Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerAVS Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerBash Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerBatch Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerCMake Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerCoffeeScript Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerCPP Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerCSharp Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerCSS Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerD Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerDiff Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerEDIFACT Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerFortran Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerFortran77 Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerHex Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerHTML Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerIDL Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerIntelHex Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerJava Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerJavaScript Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerJSON Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerLua Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerMakefile Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerMarkdown Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerMASM Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerMatlab Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerNASM Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerOctave Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerPascal Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerPerl Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerPO Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerPostScript Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerPOV Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerProperties Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerPython Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerRuby Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerSpice Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerSQL Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerSRec Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerTCL Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerTekHex Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerTeX Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerVerilog Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerVHDL Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerXML Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerYAML Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerCPP Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciLexerPython Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: Class Hierarchy. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla/src/qscilexerjava.cpp at main · brCreate/QScintilla. GitHub. [2024-08-19] (英语).
- ^ QScintilla/src/qscilexerjavascript.cpp at main · brCreate/QScintilla. GitHub. [2024-08-19] (英语).
- ^ QScintilla/src/qscilexeridl.cpp at main · brCreate/QScintilla. GitHub. [2024-08-19] (英语).
- ^ How do you add folding to QsciLexerCustom subclass?. Stack Overflow. [2024-08-19] (英语).
- ^ QScintilla: QsciMacro Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciPrinter Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciPrinter Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciPrinter Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciPrinter Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciScintilla Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciStyle Class Reference. brdocumentation.github.io. [2024-08-19].
- ^ QScintilla: QsciStyledText Class Reference. brdocumentation.github.io. [2024-08-19].