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.
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
#ifndef CSV_WORLD_REFERENCECREATOR_H
|
|
#define CSV_WORLD_REFERENCECREATOR_H
|
|
|
|
#include "genericcreator.hpp"
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class IdCompletionManager;
|
|
}
|
|
|
|
namespace CSVWidget
|
|
{
|
|
class DropLineEdit;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
|
|
class ReferenceCreator : public GenericCreator
|
|
{
|
|
Q_OBJECT
|
|
|
|
CSVWidget::DropLineEdit *mCell;
|
|
std::string mId;
|
|
|
|
private:
|
|
|
|
virtual std::string getId() const;
|
|
|
|
virtual void configureCreateCommand (CSMWorld::CreateCommand& command) const;
|
|
|
|
public:
|
|
|
|
ReferenceCreator (CSMWorld::Data& data, QUndoStack& undoStack,
|
|
const CSMWorld::UniversalId& id, CSMWorld::IdCompletionManager &completionManager);
|
|
|
|
virtual void cloneMode(const std::string& originId,
|
|
const CSMWorld::UniversalId::Type type);
|
|
|
|
virtual void reset();
|
|
|
|
virtual std::string getErrors() const;
|
|
///< Return formatted error descriptions for the current state of the creator. if an empty
|
|
/// string is returned, there is no error.
|
|
|
|
/// Focus main input widget
|
|
virtual void focus();
|
|
|
|
private slots:
|
|
|
|
void cellChanged();
|
|
};
|
|
|
|
class ReferenceCreatorFactory : public CreatorFactoryBase
|
|
{
|
|
public:
|
|
|
|
virtual Creator *makeCreator (CSMDoc::Document& document, const CSMWorld::UniversalId& id) const;
|
|
///< The ownership of the returned Creator is transferred to the caller.
|
|
};
|
|
}
|
|
|
|
#endif
|