mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 17:29:10 +00:00
32e3dfe54b
--HG-- branch : develop
36 lines
878 B
C++
36 lines
878 B
C++
#ifndef PROFILESMODEL_H
|
|
#define PROFILESMODEL_H
|
|
|
|
#include "configfile.h"
|
|
|
|
/**
|
|
* Profiles model
|
|
*
|
|
* \author Cedric 'Kervala' OCHS
|
|
* \date 2016
|
|
*/
|
|
class CProfilesModel : public QAbstractListModel
|
|
{
|
|
public:
|
|
CProfilesModel(QObject *parent);
|
|
CProfilesModel(const CProfiles &profiles, QObject *parent);
|
|
virtual ~CProfilesModel();
|
|
|
|
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
|
|
|
bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex());
|
|
bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
|
|
|
|
CProfiles& getProfiles() { return m_profiles; }
|
|
|
|
bool save() const;
|
|
|
|
int getIndexFromProfileID(const QString &profileId) const;
|
|
QString getProfileIDFromIndex(int index) const;
|
|
|
|
private:
|
|
CProfiles m_profiles;
|
|
};
|
|
|
|
#endif
|