diff options
author | Olivier Tilloy <olivier.tilloy@canonical.com> | 2012-12-03 18:52:59 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier.tilloy@canonical.com> | 2012-12-03 18:52:59 +0100 |
commit | 2f3299465de87c5801a5016c39b0fdb129347895 (patch) | |
tree | b3967254f9a89d19bd1a1d465ae5f83d0234460d /libqmenumodel | |
parent | d39a6e122441d79d4e448a26bb6ece48376ab157 (diff) | |
download | qmenumodel-2f3299465de87c5801a5016c39b0fdb129347895.tar.gz qmenumodel-2f3299465de87c5801a5016c39b0fdb129347895.tar.bz2 qmenumodel-2f3299465de87c5801a5016c39b0fdb129347895.zip |
Simplify the caching mechanism using a a QHash that associates indexes (int) to QMenuModel*.
Diffstat (limited to 'libqmenumodel')
-rw-r--r-- | libqmenumodel/src/qmenumodel.cpp | 84 | ||||
-rw-r--r-- | libqmenumodel/src/qmenumodel.h | 7 |
2 files changed, 31 insertions, 60 deletions
diff --git a/libqmenumodel/src/qmenumodel.cpp b/libqmenumodel/src/qmenumodel.cpp index 51b6863..e9ce5fc 100644 --- a/libqmenumodel/src/qmenumodel.cpp +++ b/libqmenumodel/src/qmenumodel.cpp @@ -24,26 +24,6 @@ extern "C" { #include "qmenumodel.h" #include "converter.h" -#include <QDebug> - -class CacheData -{ -public: - CacheData(QMenuModel *link, int pos) - : link(link), - pos(pos) - { - } - - ~CacheData() - { - delete link; - } - - QMenuModel *link; - int pos; -}; - /*! \qmltype QMenuModel \brief The QMenuModel class implements the base list model for menus @@ -149,8 +129,8 @@ void QMenuModel::clearModel() m_menuModel = NULL; } - Q_FOREACH(CacheData *data, m_cache) { - delete data; + Q_FOREACH(QMenuModel* child, m_cache) { + delete child; } m_cache.clear(); } @@ -243,31 +223,25 @@ QVariant QMenuModel::getStringAttribute(const QModelIndex &index, QVariant QMenuModel::getLink(const QModelIndex &index, const QString &linkName) { - GMenuModel *link; - - link = g_menu_model_get_item_link(m_menuModel, - index.row(), - linkName.toUtf8().data()); - + GMenuModel *link = g_menu_model_get_item_link(m_menuModel, + index.row(), + linkName.toUtf8().data()); if (link) { - QMenuModel *result = 0; - Q_FOREACH(CacheData *cache, m_cache) { - if ((cache->link->menuModel() == link) && - (cache->pos == index.row())) { - result = cache->link; - break; + 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 (result == 0) { - result = new QMenuModel(link, this); - m_cache << new CacheData(result, index.row()); + if (child == 0) { + child = new QMenuModel(link, this); + m_cache.insert(key, child); } - g_object_unref(link); - return QVariant::fromValue<QObject*>(result); + return QVariant::fromValue<QObject*>(child); } - return QVariant(); } @@ -303,7 +277,7 @@ QVariant QMenuModel::getExtraProperties(const QModelIndex &index) const } /*! \internal */ -QList<CacheData*> QMenuModel::cache() const +QHash<int, QMenuModel*> QMenuModel::cache() const { return m_cache; } @@ -317,17 +291,17 @@ void QMenuModel::onItemsChanged(GMenuModel *model, { QMenuModel *self = reinterpret_cast<QMenuModel*>(data); + int prevcount = g_menu_model_get_n_items(model) + removed - added; if (removed > 0) { self->beginRemoveRows(QModelIndex(), position, position + removed - 1); - for(int i=position, iMax=position+removed; i < iMax; i++) { - QList<CacheData*> lst = self->m_cache; - Q_FOREACH(CacheData* data, lst) { - if (data->pos == position) { - self->m_cache.removeOne(data); - delete data; - } else if (data->pos >= position) { - data->pos -= removed; - } + for (int i = position, iMax = position + removed; i < iMax; ++i) { + if (self->m_cache.contains(i)) { + delete self->m_cache.take(i); + } + } + for (int i = position + removed; i < prevcount; ++i) { + if (self->m_cache.contains(i)) { + self->m_cache.insert(i - removed, self->m_cache.take(i)); } } self->endRemoveRows(); @@ -335,11 +309,9 @@ void QMenuModel::onItemsChanged(GMenuModel *model, if (added > 0) { self->beginInsertRows(QModelIndex(), position, position + added - 1); - for(int i=position, iMax=position+added; i < iMax; i++) { - Q_FOREACH(CacheData* data, self->m_cache) { - if (data->pos >= position) { - data->pos += added; - } + for (int i = prevcount - removed - 1; i >= position; --i) { + if (self->m_cache.contains(i)) { + self->m_cache.insert(i + added, self->m_cache.take(i)); } } self->endInsertRows(); diff --git a/libqmenumodel/src/qmenumodel.h b/libqmenumodel/src/qmenumodel.h index e0f69f2..fef75e4 100644 --- a/libqmenumodel/src/qmenumodel.h +++ b/libqmenumodel/src/qmenumodel.h @@ -21,6 +21,7 @@ #define QMENUMODEL_H #include <QAbstractListModel> +#include <QHash> typedef int gint; typedef unsigned int guint; @@ -28,8 +29,6 @@ typedef void* gpointer; typedef struct _GMenuModel GMenuModel; typedef struct _GObject GObject; -class CacheData; - class QMenuModel : public QAbstractListModel { Q_OBJECT @@ -63,10 +62,10 @@ protected: GMenuModel *menuModel() const; // help function for test - QList<CacheData*> cache() const; + QHash<int, QMenuModel*> cache() const; private: - QList<CacheData*> m_cache; + QHash<int, QMenuModel*> m_cache; GMenuModel *m_menuModel; guint m_signalChangedId; |