1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +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
606 B
C++
Raw Normal View History

2012-12-11 15:35:47 +01:00
#ifndef CSV_TOOLS_REPORTSUBVIEW_H
#define CSV_TOOLS_REPORTSUBVIEW_H
#include "../doc/subview.hpp"
class QTableView;
class QModelIndex;
2012-12-11 15:35:47 +01:00
namespace CSMDoc
{
class Document;
}
namespace CSVTools
{
2014-12-06 13:01:55 +01:00
class ReportTable;
2012-12-11 15:35:47 +01:00
class ReportSubView : public CSVDoc::SubView
{
2022-09-22 21:26:05 +03:00
Q_OBJECT
2022-09-22 21:26:05 +03:00
ReportTable* mTable;
CSMDoc::Document& mDocument;
int mRefreshState;
2012-12-11 15:35:47 +01:00
2022-09-22 21:26:05 +03:00
public:
ReportSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document);
2012-12-11 15:35:47 +01:00
2022-09-22 21:26:05 +03:00
void setEditLock(bool locked) override;
2012-12-11 15:35:47 +01:00
2022-09-22 21:26:05 +03:00
private slots:
2022-09-22 21:26:05 +03:00
void refreshRequest();
2012-12-11 15:35:47 +01:00
};
}
#endif