mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
32 lines
635 B
C++
32 lines
635 B
C++
#ifndef CSV_WORLD_REFERENCEABLECREATOR_H
|
|
#define CSV_WORLD_REFERENCEABLECREATOR_H
|
|
|
|
class QComboBox;
|
|
|
|
#include "genericcreator.hpp"
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class ReferenceableCreator : public GenericCreator
|
|
{
|
|
Q_OBJECT
|
|
|
|
QComboBox *mType;
|
|
|
|
private:
|
|
|
|
virtual void configureCreateCommand (CSMWorld::CreateCommand& command) const;
|
|
|
|
public:
|
|
|
|
ReferenceableCreator (CSMWorld::Data& data, QUndoStack& undoStack,
|
|
const CSMWorld::UniversalId& id);
|
|
|
|
virtual void reset();
|
|
virtual void toggleWidgets(bool active = true);
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|