1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-02 20:45:34 +00:00
openmw/apps/opencs/view/world/cellcreator.hpp
2022-09-22 21:35:26 +03:00

47 lines
1.1 KiB
C++

#ifndef CSV_WORLD_CELLCREATOR_H
#define CSV_WORLD_CELLCREATOR_H
class QLabel;
class QSpinBox;
class QComboBox;
#include "genericcreator.hpp"
namespace CSVWorld
{
class CellCreator : public GenericCreator
{
Q_OBJECT
QComboBox* mType;
QLabel* mXLabel;
QSpinBox* mX;
QLabel* mYLabel;
QSpinBox* mY;
protected:
std::string getId() const override;
/// Allow subclasses to add additional data to \a command.
void configureCreateCommand(CSMWorld::CreateCommand& command) const override;
public:
CellCreator(CSMWorld::Data& data, QUndoStack& undoStack, const CSMWorld::UniversalId& id);
void reset() override;
void cloneMode(const std::string& originId, const CSMWorld::UniversalId::Type type) 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.
private slots:
void setType(int index);
void valueChanged(int index);
};
}
#endif