mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 22:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			644 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 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
 |