grig_p
grig_pDec. 8, 2017, 1:31 a.m.

Модели QAbstractItemModel и сортировка

Здравствуйте!
Возник вопрос вот на какую тему.
Делаю я табличную модель. Наследовался от QAbstractItemModel.
Модель выглядит следующим образом:

// Строка в модели
struct InfoJournalRec
{
int id;
QDateTime created;
QString sourcer;
QString module;
QString msgType;
int priority;
QString detail;
explicit InfoJournalRec() {}
explicit InfoJournalRec(std::tuple<int, QDateTime, QString, QString, QString, int, QString> params)
: id(std::get<0>(params))
, created(std::get<1>(params))
, sourcer(std::get<2>(params))
, module(std::get<3>(params))
, msgType(std::get<4>(params))
, priority(std::get<5>(params))
, detail(std::get<6>(params))
{}
};
Q_DECLARE_METATYPE(InfoJournalRec)

// Список строк typedef QList<InfoJournalRec> QListInfoJournalRec;
typedef QSharedPointer<QListInfoJournalRec> InfoJournalRecListPtr;
Q_DECLARE_METATYPE(InfoJournalRecListPtr) // Сама модель class TableJournalModel : public QAbstractItemModel { Q_OBJECT public: explicit TableJournalModel(QObject *parent = Q_NULLPTR); int rowCount(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; QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; QModelIndex parent(const QModelIndex &child) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; public slots: void load(); private: InfoJournalRecListPtr m_records = Q_NULLPTR; };

В ней имеется защищенный указатель на список список QList с данными и перекрыт ряд методов, обеспечивающих доступ к ним.
Реализация метода доступа к данным выглядит следующим образом:
QVariant TableJournalModel::data(const QModelIndex &index, int role) const
{
    if (!index.isValid() || (m_records == Q_NULLPTR))
        return QVariant();

    if ((index.row() < 0) || (index.row() >= m_records->count()))
        return QVariant();

    if (role == Qt::DisplayRole || role == Qt::EditRole)
    {
        int n = 0;
        auto di = m_records->begin();
        while (di != m_records->end())
        {
            InfoJournalRec ijr = *di;
            if (n == index.row())
            {
                if (index.column() == 0)
                    return ijr.id;
                else
                if (index.column() == 1)
                    return ijr.created;
                else
                if (index.column() == 2)
                    return ijr.sourcer;
                else
                if (index.column() == 3)
                    return ijr.module;
                else
                if (index.column() == 4)
                    return ijr.msgType;
                else
                if (index.column() == 5)
                    return priorityTitles.value(ijr.priority);
                else
                if (index.column() == 6)
                    return ijr.detail;
            }
            ++n;
            ++di;
        }
        // Если мы не вернули ничего, то вернем пустое значение
        return QVariant();
    }
    else
        return QVariant();
}
Подключение модели осуществляется с помощью QSortFilterProxyModel следующим образом:
    m_model = new TableJournalModel();
m_proxyModel->setSourceModel(m_model); ui->TableView->setModel(m_proxyModel);
Таблица должна:
1. Сортироваться по любому столбцу.
2. Последний столбец detail не должен выводиться в таблице, ибо большой по размеру, а его значение должно выводиться в отдельном поле при выборе строки таблицы.
TableView допускает сортировку. Кроме того, реализована обработка клика на столбце:
    connect(ui->TableView->horizontalHeader(), &QHeaderView::sectionClicked, this, [=](int logicalIndex)// Выделение и активация строки модели
void TableTailPbxLog::onItemActivated(QModelIndex index)
{
    QModelIndex idxDetail = m_model->index(index.row(), 6);
    QString st = m_model->data(idxDetail, Qt::DisplayRole).toString();
    ui->teDetail->setText(st);
}
    {
        ui->TableView->sortByColumn(logicalIndex);
    });
Сортировка работает превосходно.

Выделение и отображение данных из столбца также работает:
// Выделение и активация строки модели
void TableTailPbxLog::onItemActivated(QModelIndex index)
{
    QModelIndex idxDetail = model->index(index.row(), 6);
    QString st = model->data(idxDetail, Qt::DisplayRole).toString();
    ui->teDetail->setText(st);
}
Но, если отсортировать таблицу не в последовательности заполнения, то данные берутся не из тех строк, которые выделены, а из строки, номер которой выбран в отсортированной таблице.
То есть, в процедуре onItemActivated параметр index заполнен данными по отсортированной модели
index.data()->toString(... выводит правильное отображение, а
index.row() содержит номер строки в отсортированной модели, и я не знаю, как получить индексы записей столбцов этой строки, ибо мне нужны индексы строк в исходной модели.

Вопрос, как правильно получить индекс строки в исходной модели?
Не хотелось бы переходить к QStandarditemModel, ибо там много накладных расходов.
Заранее благодарен за ответ.


We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

3
Evgenii Legotckoi
  • Dec. 8, 2017, 3:10 a.m.
  • (edited)

День добрый!
Вы же используете модель QSortFilterProxyModel для сортировки. А она имеет метод mapToSource, которые будет возвращать индекс исходной модели данных, если в него передать индекс прокси модели. Фактическив в TableView  у вас находится прокси модель, которая мапится на исходную. Ваша строка не соответствует ожидаемому результату потому, что Вы имеете индекс прокси модели. Вам нужно всего лишь преобразовать его в индес исходной модели.

const QModelIndex& sourceIndex = m_proxyModel->mapToSource(proxyIndex);

И если интересно, могу высказать мнение по поводу качества кода в целом. У вас есть ряд огрехов, которые имеет смысл исправить. Это касается код стайла, использования устаревшего подхода, и несколько избыточного и менее читаемого использования некоторых синтаксических конструкций языка.
    grig_p
    • Dec. 8, 2017, 3:35 a.m.

    Спасибо!
    Все получилось.
    Неужели все так просто. Вот уж точно "Век живи - век учись"

      Evgenii Legotckoi
      • Dec. 8, 2017, 3:36 a.m.

      я бы по-другому сказал )) "Документация - наш друг"

        Comments

        Only authorized users can post comments.
        Please, Log in or Sign up
        AD

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:50points,
        • Rating points-4
        m

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:80points,
        • Rating points4
        m

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:20points,
        • Rating points-10
        Last comments
        i
        innorwallNov. 14, 2024, 12:03 p.m.
        How to make game using Qt - Lesson 3. Interaction with other objects what is priligy tablets What happens during the LASIK surgery process
        i
        innorwallNov. 14, 2024, 9:09 a.m.
        Using variables declared in CMakeLists.txt inside C ++ files where can i buy priligy online safely Tom Platz How about things like we read about in the magazines like roid rage and does that really
        i
        innorwallNov. 12, 2024, 11:12 a.m.
        Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
        i
        innorwallNov. 12, 2024, 7:23 a.m.
        QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
        i
        innorwallNov. 12, 2024, 4:50 a.m.
        Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
        Now discuss on the forum
        i
        innorwallNov. 14, 2024, 1:39 p.m.
        добавить qlineseries в функции Listen intently to what Jerry says about Conditional Acceptance because that s the bargaining chip in the song and dance you will have to engage in to protect yourself and your family from AMI S…
        i
        innorwallNov. 11, 2024, 11:55 p.m.
        Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
        9
        9AnonimOct. 25, 2024, 9:10 p.m.
        Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

        Follow us in social networks