mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 07:26:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CSV_DOC_SUBVIEW_H
 | |
| #define CSV_DOC_SUBVIEW_H
 | |
| 
 | |
| #include "../../model/doc/document.hpp"
 | |
| 
 | |
| #include "../../model/world/universalid.hpp"
 | |
| 
 | |
| #include "subviewfactory.hpp"
 | |
| 
 | |
| #include <QDockWidget>
 | |
| 
 | |
| class QUndoStack;
 | |
| 
 | |
| namespace CSMWorld
 | |
| {
 | |
|     class Data;
 | |
| }
 | |
| 
 | |
| namespace CSVDoc
 | |
| {
 | |
|     class View;
 | |
| 
 | |
|     class SubView : public QDockWidget
 | |
|     {
 | |
|             Q_OBJECT
 | |
| 
 | |
|             CSMWorld::UniversalId mUniversalId;
 | |
| 
 | |
|             // not implemented
 | |
|             SubView (const SubView&);
 | |
|             SubView& operator= (SubView&);
 | |
| 
 | |
|         protected:
 | |
| 
 | |
|             void setUniversalId(const CSMWorld::UniversalId& id);
 | |
| 
 | |
|             bool event (QEvent *event);
 | |
| 
 | |
|         public:
 | |
| 
 | |
|             SubView (const CSMWorld::UniversalId& id);
 | |
| 
 | |
|             CSMWorld::UniversalId getUniversalId() const;
 | |
| 
 | |
|             virtual void setEditLock (bool locked) = 0;
 | |
| 
 | |
|             virtual void setStatusBar (bool show);
 | |
|             ///< Default implementation: ignored
 | |
| 
 | |
|             virtual void useHint (const std::string& hint);
 | |
|             ///< Default implementation: ignored
 | |
| 
 | |
|             virtual std::string getTitle() const;
 | |
| 
 | |
|         private:
 | |
| 
 | |
|             void closeEvent (QCloseEvent *event);
 | |
| 
 | |
|         signals:
 | |
| 
 | |
|             void focusId (const CSMWorld::UniversalId& universalId, const std::string& hint);
 | |
| 
 | |
|             void closeRequest (SubView *subView);
 | |
| 
 | |
|             void updateTitle();
 | |
| 
 | |
|             void updateSubViewIndices (SubView *view = nullptr);
 | |
| 
 | |
|             void universalIdChanged (const CSMWorld::UniversalId& universalId);
 | |
| 
 | |
|         protected slots:
 | |
| 
 | |
|             void closeRequest();
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif
 |