QTableWidget——编辑单元格

文章目录


前言

熟悉QTableWiget,通过实现单元格的合并、拆分、通过编辑界面实现表格内容及属性的配置、实现表格的粘贴复制功能熟悉QTableWiget的属性

一、单元格的合并、拆分

二、表格内容及属性设置

1.效果图

通过双击单元格进入编辑界面

2.主要代码

编辑界面的代码如下:

cpp 复制代码
void CItemTypeDialog::init()
{
    m_bold = 0;
    m_pFontColorDlg = new  QColorDialog(this);
    mp_bgdColorDialog = new  QColorDialog(this);
    connect(m_pUi->pButtonOk,SIGNAL(clicked()),this,SLOT(onOk()));
    connect(m_pUi->pButtonCancel,SIGNAL(clicked()),this,SLOT(onCancel()));
    connect(m_pUi->pFontColorBtn, &QPushButton::clicked, this, &CItemTypeDialog::showColorDialog);
    connect(m_pUi->pBackgroundBtn, &QPushButton::clicked, this, &CItemTypeDialog::showColorDialog);
    connect(m_pFontColorDlg, &QColorDialog::currentColorChanged, this, &CItemTypeDialog::colorValue);
    connect(mp_bgdColorDialog, &QColorDialog::currentColorChanged, this, &CItemTypeDialog::bgdcolorValue);

    sprintf(m_bgdcolorarr, "#%s%s%s","ff","ff","ff");
    sprintf(m_fontcolorarr, "#%s%s%s","00","00","00");
}

void CItemTypeDialog::setType(TableItemInfor *pItem)
{
    m_pItem = pItem;
    m_pUi->textEdit->setText(m_pItem->data);
    QString str = QString::fromUtf8(m_pItem->style);
    if (!(str.isEmpty()))
    {
        QStringList stylelist = str.split(",");

        m_pUi->pFontComboBox->setCurrentText(stylelist.at(0));//字体
        m_pUi->pFontSizeComboBox->setCurrentText(stylelist.at(1));//字号
        //是否加粗
        m_pUi->boldCheckBox->setChecked(stylelist.at(2).toInt());
        //字体颜色
        strcpy(m_fontcolorarr, stylelist.at(3).toUtf8());
        m_pUi->pFontColorBtn->setStyleSheet(QString::fromUtf8("background-color: %1;").arg(stylelist.at(3)));
        QColor color(stylelist.at(3));
        m_pFontColorDlg->setCurrentColor(color);
        //背景颜色
        strcpy(m_bgdcolorarr, stylelist.at(4).toUtf8());
        m_pUi->pBackgroundBtn->setStyleSheet(QString::fromUtf8("background-color: %1;").arg(stylelist.at(4)));
        QColor bgcolor(stylelist.at(4));
        mp_bgdColorDialog->setCurrentColor(bgcolor);
    }


}
void CItemTypeDialog::showColorDialog()
{
    QToolButton* tb = qobject_cast<QToolButton*>(sender());
    if (tb == m_pUi->pFontColorBtn)
    {
        m_pFontColorDlg->show();
    }
    else if (tb == m_pUi->pBackgroundBtn)
    {
        mp_bgdColorDialog->show();
    }
}
void CItemTypeDialog::onOk()
{
    getStyle();
    accept();
}

void CItemTypeDialog::onCancel()
{
    reject();
}

void CItemTypeDialog::getStyle()
{
    m_pItem->data = m_pUi->textEdit->toPlainText();
    sprintf(m_pItem->style, "%s,%d,%d,%s,%s", m_pUi->pFontComboBox->currentText().toStdString().c_str(),
        m_pUi->pFontSizeComboBox->currentText().toInt(), m_bold, m_fontcolorarr, m_bgdcolorarr);
}

void CItemTypeDialog::colorValue(const QColor& color)
{
    int r, g, b, a;
    color.getRgb(&r, &g, &b, &a);

    QString hexRed = QString::number(r, 16);
    if (hexRed == "0")
    {
        hexRed = "00";
    }

    QString hexGreen = QString::number(g, 16);
    if (hexGreen == "0")
    {
        hexGreen = "00";
    }

    QString hexBlue = QString::number(b, 16);
    if (hexBlue == "0")
    {
        hexBlue = "00";
    }

    sprintf(m_fontcolorarr, "#%s%s%s", hexRed.toStdString().c_str(), hexGreen.toStdString().c_str(), hexBlue.toStdString().c_str());
    m_pUi->pFontColorBtn->setStyleSheet(QString::fromUtf8("background-color: %1;").arg(QString::fromUtf8(m_fontcolorarr)));
}

void CItemTypeDialog::bgdcolorValue(const QColor &color)
{
    int r, g, b, a;
    color.getRgb(&r, &g, &b, &a);
    QString hexRed = QString::number(r, 16);
    if (hexRed == "0")
    {
        hexRed = "00";
    }

    QString hexGreen = QString::number(g, 16);
    if (hexGreen == "0")
    {
        hexGreen = "00";
    }

    QString hexBlue = QString::number(b, 16);
    if (hexBlue == "0")
    {
        hexBlue = "00";
    }
    sprintf(m_bgdcolorarr, "#%s%s%s", hexRed.toStdString().c_str(), hexGreen.toStdString().c_str(), hexBlue.toStdString().c_str());
    m_pUi->pBackgroundBtn->setStyleSheet(QString::fromUtf8("background-color: %1;").arg(QString::fromUtf8(m_bgdcolorarr)));
}

三、表格的粘贴复制功能

功能待完善!

相关推荐
Dontla21 分钟前
Rust泛型系统类型推导原理(Rust类型推导、泛型类型推导、泛型推导)为什么在某些情况必须手动添加泛型特征约束?(泛型trait约束)
开发语言·算法·rust
Neophyte06081 小时前
C++算法练习-day40——617.合并二叉树
开发语言·c++·算法
慕容复之巅1 小时前
基于MATLAB的条形码的识别图像处理报告
开发语言·图像处理·matlab
zqzgng1 小时前
Python 数据可视化pilot
开发语言·python·信息可视化
写bug的小屁孩1 小时前
websocket初始化
服务器·开发语言·网络·c++·websocket·网络协议·qt creator
Dr_eamboat1 小时前
【Java】枚举类映射
java·开发语言·python
代码小鑫2 小时前
A031-基于SpringBoot的健身房管理系统设计与实现
java·开发语言·数据库·spring boot·后端
五味香2 小时前
Linux学习,ip 命令
linux·服务器·c语言·开发语言·git·学习·tcp/ip
欧阳枫落2 小时前
python 2小时学会八股文-数据结构
开发语言·数据结构·python
何曾参静谧2 小时前
「QT」文件类 之 QTextStream 文本流类
开发语言·qt