Qt 使用QScintilla 编辑lua 脚本

需求:

利用QScintilla 编辑lua 脚本

步骤:

1,下载 QScintilla Riverbank Computing | Download

2, 打开 src/qscintilla.pro 文件 编译出 dll库

3,工程中引入这个库

注意debug 模式 必须加载debug 版本编译的库,不然回提示 "QWidget: Must construct a QApplication before a QWidget"

4,使用

复制代码
#include <QApplication>

#include <QMainWindow>
#include <QVBoxLayout>
#include <qsciscintilla.h>
#include <qscilexerlua.h>
#include <qsciapis.h>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    // 创建窗口和布局
    QMainWindow  window;

    // 创建编辑器控件
    QsciScintilla editor(&window);
    window.setCentralWidget(&editor);
    editor.setMarginWidth(0, 40);
    editor.setIndentationGuides(true);
    editor.setTabWidth(4);
    editor.setUtf8(true);

    QsciLexerLua *textLexer = new QsciLexerLua;
    editor.setLexer(textLexer);

    //设置编码为UTF-8
    QsciAPIs apis(textLexer);
    apis.add(QString("and"));
    apis.add(QString("break"));
    apis.add(QString("do"));
    apis.add(QString("else"));
    apis.add(QString("elseif"));
    apis.add(QString("end"));
    apis.add(QString("false"));
    apis.add(QString("for"));
    apis.add(QString("function"));
    apis.add(QString("if"));
    apis.add(QString("in"));
    apis.add(QString("local"));
    apis.add(QString("nil"));
    apis.add(QString("not"));
    apis.add(QString("or"));
    apis.add(QString("repeat"));
    apis.add(QString("return"));
    apis.add(QString("then"));
    apis.add(QString("true"));
    apis.add(QString("until"));
    apis.add(QString("while"));
    apis.prepare();

    editor.setAutoCompletionSource(QsciScintilla::AcsAll);
    editor.setAutoCompletionCaseSensitivity(true);
    editor.setAutoCompletionThreshold(1);
    editor.SendScintilla(QsciScintilla::SCI_SETCODEPAGE,QsciScintilla::SC_CP_UTF8);
    editor.setCaretLineVisible(true);
    editor.setFolding(QsciScintilla::BoxedFoldStyle);

    // 显示窗口
    window.show();

    return app.exec();
}

5,效果

相关推荐
星空椰21 小时前
Python 面向对象高级:继承与类定义详解
开发语言·python
白露与泡影21 小时前
2026大厂Java面试题大全!牛客网最新版
java·开发语言
凯瑟琳.奥古斯特1 天前
高阶子查询题目精炼
开发语言·数据库·python·职场和发展·数据库开发
雪度娃娃1 天前
转向现代C++——在意为改写的函数添加 override
开发语言·c++
喵星人工作室1 天前
C++火影忍者1.1.2
开发语言·c++
basketball6161 天前
C++ 中的 ptrdiff_t 详解
开发语言·c++
月亮邮递员6161 天前
Markdown语法总结
开发语言·前端·javascript
printfLILEI1 天前
php中的类与对象以及反序列化
linux·开发语言·php
曹牧1 天前
C#:主线程能够捕获到子线程中的异常
开发语言·数据库·c#
代码中介商1 天前
深入解析STL中的stack、queue与priority_queue
开发语言·c++