diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2012-12-17 18:37:53 +0000 |
---|---|---|
committer | Tarmac <> | 2012-12-17 18:37:53 +0000 |
commit | df3cd0cf4d594e4b4693fc1d4c3b08cea8d736d9 (patch) | |
tree | 359130c016a58e9d70636ae5d89c6e268a216e2f /libqmenumodel/src/qmenumodel.cpp | |
parent | c7cd7a43482319d81a2eade26d911b1e05a17441 (diff) | |
parent | c34c5af8a6990f0af95d8dce59991868bfdc62d3 (diff) | |
download | qmenumodel-df3cd0cf4d594e4b4693fc1d4c3b08cea8d736d9.tar.gz qmenumodel-df3cd0cf4d594e4b4693fc1d4c3b08cea8d736d9.tar.bz2 qmenumodel-df3cd0cf4d594e4b4693fc1d4c3b08cea8d736d9.zip |
Try to keep the module unchanged until the function begin[Insert|Remove]Rows is called. Fixes: https://bugs.launchpad.net/bugs/1090305.
Approved by Gustavo Pichorim Boiko, Lars Uebernickel, PS Jenkins bot.
Diffstat (limited to 'libqmenumodel/src/qmenumodel.cpp')
-rw-r--r-- | libqmenumodel/src/qmenumodel.cpp | 108 |
1 files changed, 79 insertions, 29 deletions
diff --git a/libqmenumodel/src/qmenumodel.cpp b/libqmenumodel/src/qmenumodel.cpp index 57c61d0..5127cc2 100644 --- a/libqmenumodel/src/qmenumodel.cpp +++ b/libqmenumodel/src/qmenumodel.cpp @@ -38,7 +38,11 @@ extern "C" { QMenuModel::QMenuModel(GMenuModel *other, QObject *parent) : QAbstractListModel(parent), m_menuModel(0), - m_signalChangedId(0) + m_signalChangedId(0), + m_rowCount(0), + m_currentOperationPosition(0), + m_currentOperationAdded(0), + m_currentOperationRemoved(0) { m_cache = new QHash<int, QMenuModel*>; setMenuModel(other); @@ -87,7 +91,7 @@ QVariantMap QMenuModel::get(int row) const */ int QMenuModel::count() const { - return rowCount(); + return m_rowCount; } /*! \internal */ @@ -105,12 +109,13 @@ void QMenuModel::setMenuModel(GMenuModel *other) if (m_menuModel) { g_object_ref(m_menuModel); - // this will trigger the menu load - (void) g_menu_model_get_n_items(m_menuModel); + m_rowCount = g_menu_model_get_n_items(m_menuModel); m_signalChangedId = g_signal_connect(m_menuModel, "items-changed", G_CALLBACK(QMenuModel::onItemsChanged), this); + } else { + m_rowCount = 0; } endResetModel(); @@ -160,25 +165,34 @@ QHash<int, QByteArray> QMenuModel::roleNames() const QVariant QMenuModel::data(const QModelIndex &index, int role) const { QVariant attribute; - int rowCountValue = rowCount(); - if ((rowCountValue > 0) && (index.row() >= 0) && (index.row() < rowCountValue)) { + // Return a empty variant if the remove operation is in progress + if ((m_currentOperationRemoved > 0) && + (index.row() >= m_currentOperationPosition) && + (index.row() < (m_currentOperationPosition + m_currentOperationRemoved))) { + return attribute; + } + + int rowCountValue = rowCount() + (m_currentOperationAdded - m_currentOperationRemoved); + int row = rowIndex(index); + + if ((row >= 0) && (row < rowCountValue)) { if (m_menuModel) { switch (role) { case Action: - attribute = getStringAttribute(index, G_MENU_ATTRIBUTE_ACTION); + attribute = getStringAttribute(row, G_MENU_ATTRIBUTE_ACTION); break; case Label: - attribute = getStringAttribute(index, G_MENU_ATTRIBUTE_LABEL); + attribute = getStringAttribute(row, G_MENU_ATTRIBUTE_LABEL); break; case LinkSection: - attribute = getLink(index, G_MENU_LINK_SECTION); + attribute = getLink(row, G_MENU_LINK_SECTION); break; case LinkSubMenu: - attribute = getLink(index, G_MENU_LINK_SUBMENU); + attribute = getLink(row, G_MENU_LINK_SUBMENU); break; case Extra: - attribute = getExtraProperties(index); + attribute = getExtraProperties(row); break; default: break; @@ -197,20 +211,35 @@ QModelIndex QMenuModel::parent(const QModelIndex &index) const /*! \internal */ int QMenuModel::rowCount(const QModelIndex &) const { - if (m_menuModel) { - return g_menu_model_get_n_items(m_menuModel); + return m_rowCount; +} + +/*! \internal */ +int QMenuModel::rowIndex(const QModelIndex &index) const +{ + int row = index.row(); + /* + if ((m_currentOperationAdded > 0) && (row >= m_currentOperationPosition)) { + row += m_currentOperationAdded; + } else if ((m_currentOperationRemoved > 0) && (row >= (row >= m_currentOperationPosition))) { + } - return 0; + */ + if (row >= m_currentOperationPosition) { + row += (m_currentOperationAdded - m_currentOperationRemoved); + } + return row; } + /*! \internal */ -QVariant QMenuModel::getStringAttribute(const QModelIndex &index, +QVariant QMenuModel::getStringAttribute(int row, const QString &attribute) const { QVariant result; gchar* value = NULL; g_menu_model_get_item_attribute(m_menuModel, - index.row(), + row, attribute.toUtf8().data(), "s", &value); if (value) { @@ -221,24 +250,23 @@ QVariant QMenuModel::getStringAttribute(const QModelIndex &index, } /*! \internal */ -QVariant QMenuModel::getLink(const QModelIndex &index, +QVariant QMenuModel::getLink(int row, const QString &linkName) const { GMenuModel *link = g_menu_model_get_item_link(m_menuModel, - index.row(), + row, linkName.toUtf8().data()); if (link) { QMenuModel* child = 0; - int key = index.row(); - if (m_cache->contains(key)) { - QMenuModel* cached = m_cache->value(key); - if (cached->menuModel() == link) { - child = cached; + if (m_cache->contains(row)) { + child = m_cache->value(row); + if (child->menuModel() != link) { + child->setMenuModel(link); } } if (child == 0) { child = new QMenuModel(link); - m_cache->insert(key, child); + m_cache->insert(row, child); } g_object_unref(link); return QVariant::fromValue<QObject*>(child); @@ -257,9 +285,9 @@ QString QMenuModel::parseExtraPropertyName(const QString &name) const } /*! \internal */ -QVariant QMenuModel::getExtraProperties(const QModelIndex &index) const +QVariant QMenuModel::getExtraProperties(int row) const { - GMenuAttributeIter *iter = g_menu_model_iterate_item_attributes(m_menuModel, index.row()); + GMenuAttributeIter *iter = g_menu_model_iterate_item_attributes(m_menuModel, row); if (iter == NULL) { return QVariant(); } @@ -293,15 +321,35 @@ void QMenuModel::onItemsChanged(GMenuModel *model, QMenuModel *self = reinterpret_cast<QMenuModel*>(data); QHash<int, QMenuModel*>* cache = self->m_cache; + self->m_currentOperationPosition = position; + self->m_currentOperationAdded = added; + self->m_currentOperationRemoved = removed; + int prevcount = g_menu_model_get_n_items(model) + removed - added; if (removed > 0) { + // help function to proxy model + for(int i=position, iMax=(position + removed - 1); i <= iMax; i++) { + if (cache->contains(i)) { + Q_EMIT self->aboutToRemoveLink(cache->value(i), i); + } + } + + // We need clear the removed items before start remove it, + // because we do not have information about the previous data, and QML + // will try to retrieve it during the signal 'rowsAboutToBeRemoved' + QModelIndex start = self->index(position); + QModelIndex end = self->index(position + removed -1); + Q_EMIT self->dataChanged(start, end); + self->beginRemoveRows(QModelIndex(), position, position + removed - 1); + self->m_currentOperationPosition = self->m_currentOperationAdded = self->m_currentOperationRemoved = 0; + self->m_rowCount -= removed; // Remove invalidated menus from the cache for (int i = position, iMax = position + removed; i < iMax; ++i) { if (cache->contains(i)) { - QMenuModel *model = cache->take(i); - model->setMenuModel(NULL); - model->deleteLater(); + QMenuModel *cached = cache->take(i); + cached->setMenuModel(NULL); + cached->deleteLater(); } } // Update the indexes of other cached menus to account for the removals @@ -315,12 +363,14 @@ void QMenuModel::onItemsChanged(GMenuModel *model, if (added > 0) { self->beginInsertRows(QModelIndex(), position, position + added - 1); + self->m_currentOperationPosition = self->m_currentOperationAdded = self->m_currentOperationRemoved = 0; // Update the indexes of cached menus to account for the insertions for (int i = prevcount - removed - 1; i >= position; --i) { if (cache->contains(i)) { cache->insert(i + added, cache->take(i)); } } + self->m_rowCount += added; self->endInsertRows(); } } |