mirror of https://github.com/OpenMW/openmw.git
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.
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#ifndef CSV_WORLD_DIALOGUECREATOR_H
|
|
#define CSV_WORLD_DIALOGUECREATOR_H
|
|
|
|
#include "genericcreator.hpp"
|
|
|
|
#include <apps/opencs/model/world/universalid.hpp>
|
|
#include <apps/opencs/view/world/creator.hpp>
|
|
|
|
class QUndoStack;
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class CreateCommand;
|
|
class Data;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class DialogueCreator : public GenericCreator
|
|
{
|
|
int mType;
|
|
|
|
protected:
|
|
void configureCreateCommand(CSMWorld::CreateCommand& command) const override;
|
|
|
|
public:
|
|
DialogueCreator(CSMWorld::Data& data, QUndoStack& undoStack, const CSMWorld::UniversalId& id, int type);
|
|
};
|
|
|
|
class TopicCreatorFactory : 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.
|
|
};
|
|
|
|
class JournalCreatorFactory : 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
|