admin 管理员组

文章数量: 887038


2024年2月18日发(作者:os系统如何打印pdf)

对于文本编辑,qt提供了很多控件

QLineEdit:单行文本输入,比如用户名密码等简单的较短的或者具有单一特征的字符串内容输入。使用text、settext读写

QTextEdit:富文本编辑器,支持html显示,可以用sethtml/tohtml进行html文本操作或使用,也可利用setPlainText、toPlainText进行纯文本操作

QPlainTextEdit:纯文本编辑器,使用了近似于textedit的技术并做了纯文本编辑的优化,并具有文章段落的概念也提供了撤销等功能,但不支持html显示。

QTextBrowser:继承于QTextEdit,仅提供显示功能,并提供了超文本导航功能,如果不需要超文本连接只需要使用QTextEdit并设置QTextEdit::setReadOnly

上述都是显示控件,可以确定的是富文本编辑器要用QTextEdit或者QPlainTextEdit,但是肯定不能主动撰写html代码或者逐个处理显示格式实现富文本,实际上Qt提供了相关类:QTextDocument富文本文档、QTextBlock文本快、QTextFrame框架、QTextTable表格、QTextList列表、QTextCursor指针位置、QTextXXXXFormat各种数据类型样式。对于富文本的所有帮助请见官方文档:Rich Text

Processing

QTextEdit和QPlainTextEdit选择:差异是QTextEdit提供了tohtml,如果想在处理完文档,直接根据文档生成html作为博客等内容,可以使用此类,没有需要后者即可

注意关系:QTextDocument>QTextFrame>QTextBlock/QTextTable/QTextList前包含后

查看两个类的api,均提供了document方法,可以返回QTextDocument指针,用于通过QTextDocument的方式操作文档内容格式,官方范例:

Application Example这个比较简单

Syntax Highlighter Example语法高亮的例子

Text Edit Example类似于word编辑器的例子

Calendar Example利用富文本编辑器的方式实现日历(不建议学这个毕竟已经有现成的日历控件,而且文档中往往也不会插入日历)

Order Form Example根据一些的参数设置生成报表,其实和上面的原理一样

基本使用

首先当具有一个edit时,不需要自行创建document,可以直接用document方法可以获取当前edit的document

QTextDocument只是一个文档,其内还有根节点,需要使用QTextDocument::rootFlrame获取,设置根节点的边框粗细、颜色就类似于设置word文档边框底纹

简单范例

测试源码GitHub:QtWidgetsExamples

#include "mainwindow.h"

#include "ui_mainwindow.h"

#include

#include

#include

MainWindow::MainWindow(QWidget *parent) :

QMainWindow(parent),

ui(new Ui::MainWindow) {

ui->setupUi(this);

QTextDocument* doc = ui->textEdit->document();

QTextFrame *root_frame = doc->rootFrame();

QTextFrameFormat root_frame_format = root_frame->frameFormat();//创建框架格式

root_frame_derBrush(Qt::darkBlue);//设置边界颜色

root_frame_der(5);//设置边界宽度

root_frame->setFrameFormat(root_frame_format); //给框架使用格式

QTextFrameFormat frame_format;

frame_kground(Qt::darkRed);//设置背景色

frame_gin(10);//设置边距

frame_ding(5);//设置填充

frame_der(2);//设置边界宽度

frame_derStyle(

QTextFrameFormat::BorderStyle_Solid);//设置边框样式

frame_ition(QTextFrameFormat::FloatRight);//右侧

frame_th(QTextLength(

QTextLength::PercentageLength, 40));//宽度设置

QTextCursor cursor = ui->textEdit->textCursor();

Text("A company");

Block();

Text("321 City Street");

Block();

Frame(frame_format);

Text("Industry Park");

Block();

Text("Another country");

}

上述代码仅显示了四行文字,前两行在root跟框架显示,后两行在一个新建的frame中显示,并将frame置于右侧限定了宽度,更多的布局方法请参考:Order Form Example

上述并未对文本格式做设置,可以在insertText的第二个参数直接赋予一个文本格式QTextCharFormat

QTextCursor光标操作/遍历嵌套Frame/遍历所有Block

首先他有各种instert函数可以插入上面提到的各种文档中的数据类型。有时并不能一次准确的建立好整个文档,需要在中间插入,这样就需要setPosition命令,而positon的具体值可以通过上述各种数据类型的类获取到每个块或者框架或者其他类型开头的positon,也可以通过length获取到当前块的长度用于定位末尾位置。下面提供一个简单范例

#include "mainwindow.h"

#include "ui_mainwindow.h"

#include

#include

#include

#include

MainWindow::MainWindow(QWidget *parent) :

QMainWindow(parent),

ui(new Ui::MainWindow) {

ui->setupUi(this);

QTextDocument* doc = ui->textEdit->document();

QTextFrame *root_frame = doc->rootFrame();

QTextFrameFormat root_frame_format = root_frame->frameFormat();//创建框架格式

root_frame_derBrush(Qt::darkBlue);//设置边界颜色

root_frame_der(5);//设置边界宽度

root_frame->setFrameFormat(root_frame_format); //给框架使用格式

QTextFrameFormat frame_format;

frame_kground(Qt::darkRed);//设置背景色

frame_gin(10);//设置边距

frame_ding(5);//设置填充

frame_der(2);//设置边界宽度

frame_derStyle(

QTextFrameFormat::BorderStyle_Solid);//设置边框样式

frame_ition(QTextFrameFormat::FloatRight);//右侧

frame_th(QTextLength(

QTextLength::PercentageLength, 40));//宽度设置

QTextCursor cursor = ui->textEdit->textCursor();

Text("A company");

Block();

Text("321 City Street");

Frame(frame_format);

Text("Industry Park");

Block();

Text("Another country");

//遍历frame

for(auto block = root_frame->begin();!();++block) {

if(tBlock().isValid()) {

qDebug()<

}

else if(tFrame()) {//frame嵌套,范例只有两层所以不递归了

auto child_frame = tFrame();

for(auto block2 = child_frame->begin();!();++block2) {

if(tBlock().isValid()) {

qDebug()<

}

}

}

}

//还可以通过root_frame->childFrames()直接获取所字frame

//遍历文本块

QTextBlock block = doc->firstBlock();

for(int i = 0; i < doc->blockCount();i++) {

qDebug() << QString("block num:%1tblock first line number:%2tblock length:%3ttext:")

.arg(i).arg(ineNumber()).arg(())

<< ();

block = ();

}

QTextBlock insert_block = doc->firstBlock().next();

//在第二行末尾添加

ition(insert_on()+insert_()-1);

Text("change cursor postion and insert");

//在第三行开头添加-也就是新frame里面最开始添加

//方法一,第二行末尾+1就是第三行开头

ition(insert_on()+insert_());

//方法二,position默认返回的就是一个块开头

ition(insert_().position());

//方法三,利用frame,frame是在一个锚点定位,开头在第二行末尾所以必须加一

ition(frame_on()+1);

Text("change cursor postion and insert");

}

前面的内容没有变化,后面先展示了如何遍历所有frame以及嵌套的frame。如果是全文检索或者整体修改也可以直接遍历全文所有block


本文标签: 设置 文档 提供 使用