QTableView 在每个单元格中都有不需要的复选框
我正在尝试使用 QTableView
以及我自己创建的继承自 QAbstractTableModel
的模型类来制作一个简单的表格数据布局。由于某种原因,我的表格视图最终看起来像这样:
(来源:nerdland.net)
每个单元格中那些看起来像复选框(但单击它们时不执行任何操作)的东西到底是什么?让他们走开?除了对象的名称之外,我没有更改任何 QTableView
属性。
如果重要的话,我的模型代码非常简单:
MyTableModel::MyTableModel(QObject* parent)
: QAbstractTableModel(parent)
{
}
MyTableModel::~MyTableModel()
{
}
int MyTableModel::rowCount(const QModelIndex& parent) const
{
return 1000;
}
int MyTableModel::columnCount(const QModelIndex& parent) const
{
return 5;
}
QVariant MyTableModel::data(const QModelIndex& index, int role) const
{
return "Foo";
}
对话框 UI 是在 Qt Designer 中构建的,在对话框的类中,我将模型附加到视图,如下所示:
MyTableModel testModel = new MyTableModel(this);
ui.testTable->setModel(testModel);
除此之外,我不对 ui 执行任何操作.testTable。
使用 Qt 4.6。
I'm trying to make a simple tabular data layout using a QTableView
with a model class of my own creation inheriting from QAbstractTableModel
. For some reason, my table view ends up looking like this:
(source: nerdland.net)
What in the heck are those things that look like checkboxes (but don't do anything when I click them) in every cell, and how do I make them go away? I haven't changed any of the QTableView
properties except for the object's name.
If it matters, my model code is dead simple:
MyTableModel::MyTableModel(QObject* parent)
: QAbstractTableModel(parent)
{
}
MyTableModel::~MyTableModel()
{
}
int MyTableModel::rowCount(const QModelIndex& parent) const
{
return 1000;
}
int MyTableModel::columnCount(const QModelIndex& parent) const
{
return 5;
}
QVariant MyTableModel::data(const QModelIndex& index, int role) const
{
return "Foo";
}
The dialog UI is built in Qt Designer, and inside the class for the dialog I attach the model to the view like this:
MyTableModel testModel = new MyTableModel(this);
ui.testTable->setModel(testModel);
Other than that, I perform no operations on ui.testTable
.
Using Qt 4.6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将
MyTableModel::data()
更改为以下内容:角色
Qt::CheckStateRole
返回的 QVariant 可能被 QTableView 误解了。Try changing
MyTableModel::data()
to the following:Probably the returned QVariant for role
Qt::CheckStateRole
was misunderstood by the QTableView.您是否碰巧设置了 Qt::ItemIsUserCheckable 标志在 flags() 中?
Do you by any chance happen to set the Qt::ItemIsUserCheckable flag in flags()?