mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 05:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef CSM_TOOLS_TOOLS_H
 | 
						|
#define CSM_TOOLS_TOOLS_H
 | 
						|
 | 
						|
#include <QObject>
 | 
						|
 | 
						|
#include <map>
 | 
						|
 | 
						|
#include "../doc/operationholder.hpp"
 | 
						|
 | 
						|
namespace CSMWorld
 | 
						|
{
 | 
						|
    class Data;
 | 
						|
    class UniversalId;
 | 
						|
}
 | 
						|
 | 
						|
namespace CSMDoc
 | 
						|
{
 | 
						|
    class Operation;
 | 
						|
    class Document;
 | 
						|
}
 | 
						|
 | 
						|
namespace CSMTools
 | 
						|
{
 | 
						|
    class ReportModel;
 | 
						|
    class Search;
 | 
						|
    class SearchOperation;
 | 
						|
 | 
						|
    class Tools : public QObject
 | 
						|
    {
 | 
						|
            Q_OBJECT
 | 
						|
 | 
						|
            CSMDoc::Document& mDocument;
 | 
						|
            CSMWorld::Data& mData;
 | 
						|
            CSMDoc::Operation *mVerifierOperation;
 | 
						|
            CSMDoc::OperationHolder mVerifier;
 | 
						|
            SearchOperation *mSearchOperation;
 | 
						|
            CSMDoc::OperationHolder mSearch;
 | 
						|
            std::map<int, ReportModel *> mReports;
 | 
						|
            int mNextReportNumber;
 | 
						|
            std::map<int, int> mActiveReports; // type, report number
 | 
						|
 | 
						|
            // not implemented
 | 
						|
            Tools (const Tools&);
 | 
						|
            Tools& operator= (const Tools&);
 | 
						|
 | 
						|
            CSMDoc::OperationHolder *getVerifier();
 | 
						|
 | 
						|
            CSMDoc::OperationHolder *get (int type);
 | 
						|
            ///< Returns a 0-pointer, if operation hasn't been used yet.
 | 
						|
 | 
						|
            const CSMDoc::OperationHolder *get (int type) const;
 | 
						|
            ///< Returns a 0-pointer, if operation hasn't been used yet.
 | 
						|
 | 
						|
        public:
 | 
						|
 | 
						|
            Tools (CSMDoc::Document& document);
 | 
						|
 | 
						|
            virtual ~Tools();
 | 
						|
 | 
						|
            /// \param reportId If a valid VerificationResults ID, run verifier for the
 | 
						|
            /// specified report instead of creating a new one.
 | 
						|
            ///
 | 
						|
            /// \return ID of the report for this verification run
 | 
						|
            CSMWorld::UniversalId runVerifier (const CSMWorld::UniversalId& reportId = CSMWorld::UniversalId());
 | 
						|
 | 
						|
            /// Return ID of the report for this search.
 | 
						|
            CSMWorld::UniversalId newSearch();
 | 
						|
 | 
						|
            void runSearch (const CSMWorld::UniversalId& searchId, const Search& search);
 | 
						|
            
 | 
						|
            void abortOperation (int type);
 | 
						|
            ///< \attention The operation is not aborted immediately.
 | 
						|
 | 
						|
            int getRunningOperations() const;
 | 
						|
 | 
						|
            ReportModel *getReport (const CSMWorld::UniversalId& id);
 | 
						|
            ///< The ownership of the returned report is not transferred.
 | 
						|
 | 
						|
        private slots:
 | 
						|
 | 
						|
            void verifierMessage (const CSMDoc::Message& message, int type);
 | 
						|
 | 
						|
        signals:
 | 
						|
 | 
						|
            void progress (int current, int max, int type);
 | 
						|
 | 
						|
            void done (int type, bool failed);
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |