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,效果

相关推荐
测试界的酸菜鱼4 分钟前
Python 大数据展示屏实例
大数据·开发语言·python
晨曦_子画14 分钟前
编程语言之战:AI 之后的 Kotlin 与 Java
android·java·开发语言·人工智能·kotlin
Black_Friend22 分钟前
关于在VS中使用Qt不同版本报错的问题
开发语言·qt
CSUC30 分钟前
【Qt】QTreeView 和 QStandardItemModel的关系
qt
希言JY1 小时前
C字符串 | 字符串处理函数 | 使用 | 原理 | 实现
c语言·开发语言
残月只会敲键盘1 小时前
php代码审计--常见函数整理
开发语言·php
xianwu5431 小时前
反向代理模块
linux·开发语言·网络·git
ktkiko111 小时前
Java中的远程方法调用——RPC详解
java·开发语言·rpc
冷凝女子1 小时前
【QT】海康视频及openCv抓拍正脸接口
qt·opencv·音视频·海康
y5236482 小时前
Javascript监控元素样式变化
开发语言·javascript·ecmascript