QTableView 在每个单元格中都有不需要的复选框

发布于 2024-08-23 23:17:53 字数 1240 浏览 6 评论 0原文

我正在尝试使用 QTableView 以及我自己创建的继承自 QAbstractTableModel 的模型类来制作一个简单的表格数据布局。由于某种原因,我的表格视图最终看起来像这样:

alt text

(来源: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:

alt text

(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月静好 2024-08-30 23:17:53

尝试将 MyTableModel::data() 更改为以下内容:

QVariant MyTableModel::data(const QModelIndex& index, int role) const
{
    if (role == Qt::DisplayRole)
        return "foo";
    else
        return QVariant();
}

角色 Qt::CheckStateRole 返回的 QVariant 可能被 QTableView 误解了。

Try changing MyTableModel::data() to the following:

QVariant MyTableModel::data(const QModelIndex& index, int role) const
{
    if (role == Qt::DisplayRole)
        return "foo";
    else
        return QVariant();
}

Probably the returned QVariant for role Qt::CheckStateRole was misunderstood by the QTableView.

渔村楼浪 2024-08-30 23:17:53

您是否碰巧设置了 Qt::ItemIsUserCheckable 标志在 flags() 中?

Do you by any chance happen to set the Qt::ItemIsUserCheckable flag in flags()?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文