1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-23 00:53:56 +00:00
openmw/apps/opencs/view/world/referencecreator.hpp
2022-09-22 21:35:26 +03:00

59 lines
1.4 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:
std::string getId() const override;
void configureCreateCommand(CSMWorld::CreateCommand& command) const override;
public:
ReferenceCreator(CSMWorld::Data& data, QUndoStack& undoStack, const CSMWorld::UniversalId& id,
CSMWorld::IdCompletionManager& completionManager);
void cloneMode(const std::string& originId, const CSMWorld::UniversalId::Type type) override;
void reset() override;
std::string getErrors() const override;
///< 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
void focus() override;
private slots:
void cellChanged();
};
class ReferenceCreatorFactory : public CreatorFactoryBase
{
public:
Creator* makeCreator(CSMDoc::Document& document, const CSMWorld::UniversalId& id) const override;
///< The ownership of the returned Creator is transferred to the caller.
};
}
#endif