1 Star 0 Fork 0

奇天/OFDeditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
inserttabledialog.cpp 767 Bytes
一键复制 编辑 原始数据 按行查看 历史
张康康 提交于 2019-07-04 14:56 . first project, just to remember
#include "inserttabledialog.h"
#include "ui_inserttabledialog.h"
InsertTableDialog::InsertTableDialog(RichTextProcess* editor1, QWidget *parent) :
QDialog(parent),
ui(new Ui::InsertTableDialog),
editor(editor1)
{
ui->setupUi(this);
this->setAttribute(Qt::WA_DeleteOnClose, true);
this->setWindowTitle("插入表格");
ui->width->setValue(200);
ui->width->setMaximum(1000);
}
InsertTableDialog::~InsertTableDialog()
{
delete ui;
}
void InsertTableDialog::on_pushButton_2_clicked()
{
this->close();
}
void InsertTableDialog::on_pushButton_clicked()
{
rowNum = ui->row->value();
colNum = ui->col->value();
cellWidth = ui->width->value();
editor->insertTable(rowNum, colNum, cellWidth);
this->close();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chuck_wilson/OFDeditor.git
[email protected]:chuck_wilson/OFDeditor.git
chuck_wilson
OFDeditor
OFDeditor
master

搜索帮助