mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-15 12:09:06 +00:00
27 lines
611 B
C
27 lines
611 B
C
|
#ifndef PROFILESMODEL_H
|
||
|
#define PROFILESMODEL_H
|
||
|
|
||
|
#include "configfile.h"
|
||
|
|
||
|
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 removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
|
||
|
|
||
|
CProfiles& getProfiles() { return m_profiles; }
|
||
|
|
||
|
bool save() const;
|
||
|
|
||
|
private:
|
||
|
CProfiles m_profiles;
|
||
|
};
|
||
|
|
||
|
#endif
|