mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 15:49:55 +00:00
42 lines
No EOL
669 B
C++
42 lines
No EOL
669 B
C++
#ifndef CSV_TOOLS_REPORTSUBVIEW_H
|
|
#define CSV_TOOLS_REPORTSUBVIEW_H
|
|
|
|
#include "../doc/subview.hpp"
|
|
|
|
class QTableView;
|
|
class QModelIndex;
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSMTools
|
|
{
|
|
class ReportModel;
|
|
}
|
|
|
|
namespace CSVTools
|
|
{
|
|
class Table;
|
|
|
|
class ReportSubView : public CSVDoc::SubView
|
|
{
|
|
Q_OBJECT
|
|
|
|
CSMTools::ReportModel *mModel;
|
|
QTableView *mTable;
|
|
|
|
public:
|
|
|
|
ReportSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document);
|
|
|
|
virtual void setEditLock (bool locked);
|
|
|
|
private slots:
|
|
|
|
void show (const QModelIndex& index);
|
|
};
|
|
}
|
|
|
|
#endif |