富文本
QTextEdit支持富文本处理,即文档中可使用多种格式,如文字、图片、表格等。与纯文本PlainText相对而言,windows的记事本就是纯文本编辑器,word就是富文本编辑器。
文档的光标主要基于QTextCursor类,文档的框架主要基于QTextDocument类。
一个富文本的文档结构主要分为几种元素:框架(QTextFrame)、文本块(QTextBlock)、表格(QTextTable)、和列表(QTextList)。
每种元素的格式有相应的format类表示:框架格式(QTextFrameFormat)、文本块格式(QTextBlockFormat)、表格格式(QTextTableFormat)、列表格式(QTextListFormat)。这些格式通常配合QTextCursor类使用。
QTextEdit类就是一个富文本编辑器,在构建QTextEdit类对象时就已经构建了一个QTextDocument类对象和一个QTextCursor类对象。只需调用他们进行相应的操作即可。
2.文本框格式、文本块格式、字符格式
在上一节下继续写
mainwindow.h添加槽函数声明:
构造函数后面接着添加代码:
mainwindow.cpp添加槽函数定义
==================================================================
==================================================================
具体代码
未雨绸缪
mainwindow.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void showTextFrame(); //遍历文档框架
void showTextBlock(); //遍历文本块
void setTextFont(bool checked); //设置文本字体
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
mainwindow.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QTextFrame>
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
//获取文档对象
QTextDocument *document = ui->textEdit->document();
//获取根框架
QTextFrame *rootFrame = document->rootFrame();
//文档框架格式
QTextFrameFormat format;
format.setBorderBrush(Qt::red); //边框颜色
format.setBorder(3); //边框宽度
//文档框架设置格式
rootFrame->setFrameFormat(format);
//设置文本边框风格
QTextFrameFormat frameFormat;
frameFormat.setBackground(Qt::lightGray);
frameFormat.setMargin(10); //设置边距
frameFormat.setPadding(15); //设置填衬
frameFormat.setBorder(2);
frameFormat.setBorderStyle(QTextFrameFormat::BorderStyle_Dashed);
QTextCursor cursor = ui->textEdit->textCursor();
cursor.insertFrame(frameFormat);
QAction *action_textFrame = new QAction("框架", this);
connect(action_textFrame, &QAction::triggered, this, &MainWindow::showTextFrame);
ui->mainToolBar->addAction(action_textFrame);
QAction *action_textBlock = new QAction("文本块", this);
connect(action_textBlock, &QAction::triggered, this, &MainWindow::showTextBlock);
ui->mainToolBar->addAction(action_textBlock);
QAction *action_textFont = new QAction("字体", this);
action_textFont->setCheckable(true);
connect(action_textFont, &QAction::triggered, this, &MainWindow::setTextFont);
ui->mainToolBar->addAction(action_textFont);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::showTextFrame()
{
//获取文档对象
QTextDocument *document = ui->textEdit->document();
//获取根框架
QTextFrame *frame = document->rootFrame();
QTextFrame::iterator it;
for (it = frame->begin(); !(it.atEnd()); ++it)
{
//获取当前框架指针
QTextFrame *childFrame = it.currentFrame();
//获取当前文本
QTextBlock childBlock = it.currentBlock();
if (childFrame)
qDebug() << "frame";
else if (childBlock.isValid())
qDebug() << "block" << childBlock.text();
}
}
void MainWindow::showTextBlock()
{
QTextDocument *document = ui->textEdit->document();
QTextBlock block = document->firstBlock();
//document->blockCount() 返回文本块个数
for (int i = 0; i < document->blockCount(); i++)
{
//输出文本信息
qDebug() << QString("文本块: %1, 文本块首行行号:%2, 长度%3, 内容%4")
.arg(i)
.arg(block.firstLineNumber())
.arg(block.length())
.arg(block.text());
block = block.next();
}
}
void MainWindow::setTextFont(bool checked)
{
if (checked)
{
QTextCursor cursor = ui->textEdit->textCursor();
//文本块格式
QTextBlockFormat blockFormat;
//居中对齐
blockFormat.setAlignment(Qt::AlignCenter);
cursor.insertBlock(blockFormat);
//字符格式
QTextCharFormat charFormat;
//字符背景色
charFormat.setBackground(Qt::lightGray);
//字符前景色(字符颜色)
charFormat.setForeground(Qt::blue);
//字体
charFormat.setFont(QFont(QString("宋体"), 12, QFont::Bold, true));
//下划线
charFormat.setFontUnderline(true);
//设置字符格式
cursor.setCharFormat(charFormat);
cursor.insertText("哈哈哈哈哈");
}
}
main.cpp
没动过