我希望有一个简单的列标题,其中包含一个复选框,用于选择/取消选择QTableView中的所有行。单击标题中的复选框会导致选择或取消选择所有行。
当我想在表格单元格中添加一个复选框时,我必须在数据(..)中返回Qt :: CheckStateRole的检查状态,以获取所需的模型索引,如下所示。这是按预期工作的。
QVariant MyModel::data( const QModelIndex & rIndex, int iRole) const
{
...
if (iRole == Qt::Qt::CheckStateRole)
{
return checkstate;
}
}
但是当我想在标题单元格中添加一个复选框时,上述方法无效。听到我的示例代码。
QVariant MyModel::headerData( int iSection, Qt::Orientation eOrientation, int iRole) const
{
...
if (iRole == Qt::CheckStateRole)
{
return checkstate;
}
}
QTableView不使用Qt :: CheckStateRole在我的模型中调用headerData()函数,就像使用data()函数一样。
为什么会出现这种情况?如何通过仅修改自定义表模型在标题单元格中插入复选框?
(我不想为此目的创建自定义QTableView或QHeaderView)
答案 0 :(得分:5)
你不能这样做 - 默认情况下,Qt不支持标题中的复选框。您可以使用自定义QHeaderView
答案 1 :(得分:4)
此处有一些修改/修复(复选框显示为已禁用且重绘不起作用)代码来自已接受答案中的链接。
·H
class CheckBoxHeader : public QHeaderView
{
Q_OBJECT
public:
CheckBoxHeader(Qt::Orientation orientation, QWidget* parent = 0);
bool isChecked() const { return isChecked_; }
void setIsChecked(bool val);
signals:
void checkBoxClicked(bool state);
protected:
void paintSection(QPainter* painter, const QRect& rect, int logicalIndex) const;
void mousePressEvent(QMouseEvent* event);
private:
bool isChecked_;
void redrawCheckBox();
};
的.cpp
#include "CheckBoxHeader.h"
CheckBoxHeader::CheckBoxHeader(Qt::Orientation orientation, QWidget* parent /*= 0*/)
: QHeaderView(orientation, parent)
{
isChecked_ = true;
}
void CheckBoxHeader::paintSection(QPainter* painter, const QRect& rect, int logicalIndex) const
{
painter->save();
QHeaderView::paintSection(painter, rect, logicalIndex);
painter->restore();
if (logicalIndex == 0)
{
QStyleOptionButton option;
option.rect = QRect(1,3,20,20);
option.state = QStyle::State_Enabled | QStyle::State_Active;
if (isChecked_)
option.state |= QStyle::State_On;
else
option.state |= QStyle::State_Off;
option.state |= QStyle::State_Off;
style()->drawPrimitive(QStyle::PE_IndicatorCheckBox, &option, painter);
}
}
void CheckBoxHeader::mousePressEvent(QMouseEvent* event)
{
setIsChecked(!isChecked());
emit checkBoxClicked(isChecked());
}
void CheckBoxHeader::redrawCheckBox()
{
viewport()->update();
}
void CheckBoxHeader::setIsChecked(bool val)
{
if (isChecked_ != val)
{
isChecked_ = val;
redrawCheckBox();
}
}
使用
CheckBoxHeader* header = new CheckBoxHeader(Qt::Horizontal, &table);
table.setHorizontalHeader(header);
// handle signal if needed (to set checkboxes in all rows, etc.)
//connect(header, &CheckBoxHeader::checkBoxClicked, this, &MyForm::on_header_checkBoxClicked);
答案 2 :(得分:3)
我很惊讶这样一个hacky解决方案是推荐和使用的。
首先:检查状态应存储在模型中。所有工具都已存在。
bool MyModel::setHeaderData(int index, Qt::Orientation orient, const QVariant& val, int role)
{
if(Qt::Vertical != orient)
return Base::setHeaderData(index, orient, val, role);
storeCheckState(index, val);
emit headerDataChanged(orient, index, index);
return true;
}
QVariant MyModel::headerData(int index, Qt::Orientation o, int role) const
{
if(Qt::Vertical != orient)
return Base::headerData(index, o, role);
switch(role)
{
...
case Qt::CheckStateRole:
return fetchCheckState(index);
}
return Base::headerData(index, o, role);
}
第二:我们只需处理标题上的点击信号即可切换检查状态。
connect(header, &QHeaderView::sectionClicked, receiver
, [receiver](int sec)
{
const auto index = logicalIndex(sec);
model()->setHeaderData(index
, Qt::Vertical
, Qt::CheckState(model()->headerData(index, Qt::Vertical, Qt::CheckStateRole).toUInt()) != Qt::Checked ? Qt::Checked : Qt::Unchecked
, Qt::CheckStateRole);
});
<强>第三强>
此时,我们具有完全功能的检查行为,只有部分缺失的是可视化。最明智的方法是再次使用模型,利用Qt::DecorationRole
。这是一个虚拟实现:
QVariant MyModel::headerData(int index, Qt::Orientation o, int role) const
{
if(Qt::Vertical != orient)
return Base::headerData(index, o, role);
switch(role)
{
case Qt::DecorationRole:
{
QPixmap p{12,12};
p.fill(Qt::CheckState(headerData(index, o, Qt::CheckStateRole).toUInt()) ? Qt::green : Qt::red);
return p;
}
break;
...
}
return Base::headerData(index, o, role);
}
当然,可以使用样式化绘图在那里绘制一个真实的复选框。
注意,此解决方案不需要子类和自定义小部件。
此外,检查状态与视图/ UI分离。唯一的缺点是视觉效果由模型处理,但这是可选的 - 任何方式都可用于绘制检查状态,包括备选答案中的状态。