1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 09:23:53 +00:00
openmw/apps/opencs/view/tools/reportsubview.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
635 B
C++
Raw Normal View History

2012-12-11 14:35:47 +00:00
#ifndef CSV_TOOLS_REPORTSUBVIEW_H
#define CSV_TOOLS_REPORTSUBVIEW_H
#include "../doc/subview.hpp"
2022-10-09 10:39:43 +00:00
#include <apps/opencs/model/world/universalid.hpp>
2012-12-11 14:35:47 +00:00
2022-10-09 10:39:43 +00:00
class QObject;
2012-12-11 14:35:47 +00:00
namespace CSMDoc
{
class Document;
}
namespace CSVTools
{
2014-12-06 12:01:55 +00:00
class ReportTable;
2012-12-11 14:35:47 +00:00
class ReportSubView : public CSVDoc::SubView
{
Q_OBJECT
2014-12-06 12:01:55 +00:00
ReportTable* mTable;
CSMDoc::Document& mDocument;
int mRefreshState;
2012-12-11 14:35:47 +00:00
public:
ReportSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document);
void setEditLock(bool locked) override;
private slots:
void refreshRequest();
2012-12-11 14:35:47 +00:00
};
}
#endif