mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
#ifndef CSV_WORLD_REFERENCECREATOR_H
|
|
#define CSV_WORLD_REFERENCECREATOR_H
|
|
|
|
#include "genericcreator.hpp"
|
|
|
|
class QLineEdit;
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class ReferenceCreator : public GenericCreator
|
|
{
|
|
Q_OBJECT
|
|
|
|
QLineEdit *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);
|
|
|
|
virtual void cloneMode(const std::string& originId,
|
|
const CSMWorld::UniversalId::Type type);
|
|
|
|
virtual void reset();
|
|
virtual void toggleWidgets(bool active = true);
|
|
|
|
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.
|
|
|
|
private slots:
|
|
|
|
void cellChanged();
|
|
};
|
|
}
|
|
|
|
#endif
|