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.
39 lines
644 B
C++
39 lines
644 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 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);
|
|
|
|
virtual void setEditLock (bool locked);
|
|
|
|
private slots:
|
|
|
|
void refreshRequest();
|
|
};
|
|
}
|
|
|
|
#endif
|