mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 13:53:53 +00:00
35 lines
596 B
C++
35 lines
596 B
C++
|
#ifndef CSV_TOOLS_SEARCHSUBVIEW_H
|
||
|
#define CSV_TOOLS_SEARCHSUBVIEW_H
|
||
|
|
||
|
#include "../doc/subview.hpp"
|
||
|
|
||
|
class QTableView;
|
||
|
class QModelIndex;
|
||
|
|
||
|
namespace CSMDoc
|
||
|
{
|
||
|
class Document;
|
||
|
}
|
||
|
|
||
|
namespace CSVTools
|
||
|
{
|
||
|
class ReportTable;
|
||
|
|
||
|
class SearchSubView : public CSVDoc::SubView
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
ReportTable *mTable;
|
||
|
|
||
|
public:
|
||
|
|
||
|
SearchSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document);
|
||
|
|
||
|
virtual void setEditLock (bool locked);
|
||
|
|
||
|
virtual void updateUserSetting (const QString &, const QStringList &);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|