如何让QModelIndex在QAbstractTableModel中插入新行?

时间:2016-01-27 08:56:32

标签: c++ qt

我第一次使用模型/视图编程,我正在使用表格视图以及QAbstractTableModelQStyledItemDelegate,因为我需要组合框。 这是我的模特:

class STableModel : public QAbstractTableModel
{
   Q_OBJECT

   public:
    STableModel(int rows = 1, int columns = 1, QObject *parent = 0);

    int rowCount(const QModelIndex &parent = QModelIndex()) const;
    int columnCount(const QModelIndex &parent = QModelIndex()) const;
    QVariant data(const QModelIndex &index, int role) const;
    QVariant headerData(int section, Qt::Orientation orientation,
                    int role = Qt::DisplayRole) const;

    Qt::ItemFlags flags(const QModelIndex &index) const;
    bool setData(const QModelIndex &index, const QVariant &value,
         int role = Qt::EditRole);

    bool insertRows(int position, int rows, const QModelIndex &parent = QModelIndex());
    bool insertColumns(int position, int columns, const QModelIndex &parent = QModelIndex());
    bool removeRows(int position, int rows, const QModelIndex &parent = QModelIndex());
    bool removeColumns(int position, int columns, const QModelIndex &parent = QModelIndex());

   private:
    QList<QStringList> rowList;
    ComboBoxItemDelegate *myDelegate;
};    

这里我试图在我的模型中添加一个新行并且应用程序崩溃,我认为它因为索引无效而崩溃。

   STableModel *model; = new STableModel(1, 1, this);
   QModelIndex index = model->index(1, 1, QModelIndex());
   model->insertRows(1, 4, index);

如何在此处获取正确的索引或指导我使用其他方法添加行。感谢

编辑:

bool STableModel::insertRows(int position, int rows, const QModelIndex &parent)
{
    int columns = columnCount();
    beginInsertRows(parent, position, position + rows - 1);

    for (int row = 0; row < rows; ++row) {
        QStringList items;
        for (int column = 0; column < columns; ++column)
            items.append("");
        rowList.insert(position, items);
    }

    endInsertRows();
    return true;
}

1 个答案:

答案 0 :(得分:0)

model->index(1, 1, QModelIndex());返回无效索引,因为没有坐标为[1,1]的索引 您可以删除此行,您不需要此表的父索引。

根据提供的信息,我无法说明index()方法崩溃的原因。即使提供了无效的行号和列号,也不应该这样。