?? rtfedit.cpp
字號:
#include "rtfedit.h"
RTFEdit::RTFEdit(QWidget *parent)
: QTextEdit(parent)
{
}
void RTFEdit::insertTable(int row, int col)
{
QString htm("<table border=1 width=100%>");
for(int i=0; i<row; i++)
{
htm += "<tr>";
for(int j=0; j< col; j++)
{
htm += "<td> </td>";
}
htm += "</tr>";
}
htm += "</table>";
insertHtml(htm);
}
void RTFEdit::moveCursor(int operation, int mode)
{
moveCursor(operation, mode);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -