#ifndef METADATAMODEL_H #define METADATAMODEL_H #include class MetadataModel : public QAbstractItemModel { Q_OBJECT public: explicit MetadataModel(QObject *parent = nullptr); ~MetadataModel(); void setFile(const QString & imageFilePath); static QString imageSize(const QSize &size); bool appendSection(const QString & sectionKey, const QString & sectionDisplayName); bool appendProperty(const QString & sectionKey, const QString & propertyKey, const QString & propertyDisplayName, const QString & propertyValue = QString()); bool updateProperty(const QString & propertyKey, const QString & propertyValue); private: enum RowType : quintptr { SectionRow, PropertyRow, }; QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override; QModelIndex parent(const QModelIndex &child) const override; int rowCount(const QModelIndex &parent = QModelIndex()) const override; int columnCount(const QModelIndex & = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; // [SECTION_KEY] QList m_sections; // {SECTION_KEY: (SECTION_DISPLAY_NAME, [PROPERTY_KEY])} QMap > > m_sectionProperties; // {PROPERTY_KEY: (PROPERTY_DISPLAY_NAME, PROPERTY_VALUE)} QMap > m_properties; }; #endif // METADATAMODEL_H