You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
#ifndef CSM_TOOLS_REPORTMODEL_H
|
|
#define CSM_TOOLS_REPORTMODEL_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include "../world/universalid.hpp"
|
|
|
|
namespace CSMTools
|
|
{
|
|
class ReportModel : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
std::vector<std::pair<CSMWorld::UniversalId, std::pair<std::string, std::string> > > mRows;
|
|
|
|
public:
|
|
|
|
virtual int rowCount (const QModelIndex & parent = QModelIndex()) const;
|
|
|
|
virtual int columnCount (const QModelIndex & parent = QModelIndex()) const;
|
|
|
|
virtual QVariant data (const QModelIndex & index, int role = Qt::DisplayRole) const;
|
|
|
|
virtual QVariant headerData (int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
|
|
virtual bool removeRows (int row, int count, const QModelIndex& parent = QModelIndex());
|
|
|
|
void add (const CSMWorld::UniversalId& id, const std::string& message,
|
|
const std::string& hint = "");
|
|
|
|
const CSMWorld::UniversalId& getUniversalId (int row) const;
|
|
|
|
std::string getHint (int row) const;
|
|
};
|
|
}
|
|
|
|
#endif
|