123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- #pragma once
- #include <universallistmodelbase.h>
- #include <QObject>
- #include <QList>
- #include <QHash>
- #include <QSharedPointer>
- #include <QMetaProperty>
- #include <QMetaObject>
- #include <QDebug>
- /*!
- * \brief Universal list model is QObject-base list model abstraction.
- * It exposes all objects properties as data-roles.
- */
- template <typename T>
- class UniversalListModel : public UniversalListModelBase
- {
- public:
- UniversalListModel(QList<QSharedPointer<T>> container = {}, QObject* parent = 0) : UniversalListModelBase(parent) {
- reset(container);
- }
- ~UniversalListModel() {
- clear();
- }
- int rowCount(const QModelIndex &parent) const override {
- Q_UNUSED(parent)
- return count();
- }
- int count() const override {
- return m_container.count();
- }
- QHash<int, QByteArray> roleNames() const override {
- if(s_roleNames.isEmpty()) {
- int propertyCount = T::staticMetaObject.propertyCount();
- for(int i = 1; i < propertyCount; i++) {
- s_roleNames.insert(Qt::UserRole + i, T::staticMetaObject.property(i).name());
- }
- s_roleNames[propertyCount] = "modelData";
- }
- return s_roleNames;
- }
- QVariant data(const QModelIndex &index, int role) const override
- {
- int row = index.row();
- if(row < 0 || row >= m_container.count() || m_container.at(row).isNull()) {
- return QVariant();
- }
- T* dataPtr = m_container.at(row).data();
- if(s_roleNames.value(role) == "modelData") {
- return QVariant::fromValue(dataPtr);
- }
- return dataPtr->property(s_roleNames.value(role));
- }
- /*!
- * \brief append
- * \param value
- * \return
- */
- int append(T* value) {
- Q_ASSERT_X(value != nullptr, fullTemplateName(), "Trying to add member of NULL");
- if(m_container.indexOf(value) >= 0) {
- #ifdef DEBUG
- qDebug() << fullTemplateName() << "Member already exists";
- #endif
- return -1;
- }
- beginInsertRows(QModelIndex(), m_container.count(), m_container.count());
- m_container.append(QSharedPointer<T>(value));
- emit countChanged();
- endInsertRows();
- return m_container.count() - 1;
- }
- /*!
- * \brief prepend
- * \param value
- * \return
- */
- int prepend(T* value) {
- Q_ASSERT_X(value != nullptr, fullTemplateName(), "Trying to add member of NULL");
- if(m_container.indexOf(value) >= 0) {
- #ifdef DEBUG
- qDebug() << fullTemplateName() << "Member already exists";
- #endif
- return -1;
- }
- beginInsertRows(QModelIndex(), 0, 0);
- m_container.prepend(QSharedPointer<T>(value));
- emit countChanged();
- endInsertRows();
- return 0;
- }
- /*!
- * \brief remove
- * \param value
- */
- void remove(T* value) {
- Q_ASSERT_X(value != nullptr, fullTemplateName(), ": Trying to remove member of NULL");
- int valueIndex = m_container.indexOf(value);
- remove(valueIndex);
- }
- void remove(int valueIndex) override {
- if(valueIndex >= 0) {
- beginRemoveRows(QModelIndex(), valueIndex, valueIndex);
- m_container.removeAt(valueIndex);
- emit countChanged();
- endRemoveRows();
- }
- }
- /*!
- * \brief Resets container with new container passed as parameter
- * \param container a data for model. Should contain QSharedPointer's to objects.
- * Passing empty container makes model empty. This method should be used to cleanup model.
- */
- void reset(const QList<QSharedPointer<T> >& container) {
- beginResetModel();
- clear();
- m_container = container;
- emit countChanged();
- endResetModel();
- }
- /*!
- * \brief Returns the item at index position i in the list. i must be a valid index position in the list (i.e., 0 <= i < rowCount()).
- * This function is very fast (constant time).
- * \param i index of looking object
- * \return Object at provided index
- */
- T* at(int i) const {
- return m_container.at(i);
- }
- /*!
- * \brief Looking for index of objec
- * \param value
- * \return
- */
- int indexOf(T* value) const {
- return m_container.indexOf(value);
- }
- /*!
- * \brief findByProperty method finds item in internal container property of that is provided value
- * \param propertyName Latin1 name of looking property
- * \param value property of corresponded type inside QVariant container
- * \return
- */
- QSharedPointer<T> findByProperty(const char* propertyName, const QVariant& value) const {
- auto iter = std::find_if(m_container.begin(), m_container.end(), [=](const QSharedPointer<T> &item) -> bool {
- return item->property(propertyName) == value;
- });
- if(iter != m_container.end()) {
- return *iter;
- }
- return QSharedPointer<T>();
- }
- /*!
- * \brief container returns internal container
- * \return
- */
- QList<QSharedPointer<T> > container() const {
- return m_container;
- }
- protected:
- void clear() {
- m_container.clear();
- emit countChanged();
- }
- QList<QSharedPointer<T> > m_container;
- static QHash<int, QByteArray> s_roleNames;
- private:
- static QByteArray fullTemplateName() { //Debug helper
- return QString("UniversalListModel<%1>").arg(T::staticMetaObject.className()).toLatin1();
- }
- };
- template<typename T>
- QHash<int, QByteArray> UniversalListModel<T>::s_roleNames;
|