mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 19:53:53 +00:00
37 lines
635 B
C++
37 lines
635 B
C++
#ifndef CSV_TOOLS_REPORTSUBVIEW_H
|
|
#define CSV_TOOLS_REPORTSUBVIEW_H
|
|
|
|
#include "../doc/subview.hpp"
|
|
#include <apps/opencs/model/world/universalid.hpp>
|
|
|
|
class QObject;
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSVTools
|
|
{
|
|
class ReportTable;
|
|
|
|
class ReportSubView : public CSVDoc::SubView
|
|
{
|
|
Q_OBJECT
|
|
|
|
ReportTable* mTable;
|
|
CSMDoc::Document& mDocument;
|
|
int mRefreshState;
|
|
|
|
public:
|
|
ReportSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document);
|
|
|
|
void setEditLock(bool locked) override;
|
|
|
|
private slots:
|
|
|
|
void refreshRequest();
|
|
};
|
|
}
|
|
|
|
#endif
|