OpenMW
apps/opencs/view/world/referenceablecreator.hpp
Go to the documentation of this file.
00001 #ifndef CSV_WORLD_REFERENCEABLECREATOR_H
00002 #define CSV_WORLD_REFERENCEABLECREATOR_H
00003 
00004 class QComboBox;
00005 
00006 #include "genericcreator.hpp"
00007 
00008 namespace CSVWorld
00009 {
00010     class ReferenceableCreator : public GenericCreator
00011     {
00012             Q_OBJECT
00013 
00014             QComboBox *mType;
00015 
00016         private:
00017 
00018             virtual void configureCreateCommand (CSMWorld::CreateCommand& command) const;
00019 
00020         public:
00021 
00022             ReferenceableCreator (CSMWorld::Data& data, QUndoStack& undoStack,
00023                 const CSMWorld::UniversalId& id);
00024 
00025             virtual void reset();
00026 
00027     };
00028 }
00029 
00030 #endif