2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-11-09 20:03:41 +03:00
|
|
|
#ifndef cmQTWrapUICommand_h
|
|
|
|
#define cmQTWrapUICommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
2004-02-22 21:14:59 +03:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
|
2001-11-09 20:03:41 +03:00
|
|
|
/** \class cmQTWrapUICommand
|
2012-08-28 13:22:17 +04:00
|
|
|
* \brief Create .h and .cxx files rules for Qt user interfaces files
|
2001-11-09 20:03:41 +03:00
|
|
|
*
|
2012-08-28 13:22:17 +04:00
|
|
|
* cmQTWrapUICommand is used to create wrappers for Qt classes into normal C++
|
2001-11-09 20:03:41 +03:00
|
|
|
*/
|
|
|
|
class cmQTWrapUICommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2005-06-16 22:05:22 +04:00
|
|
|
cmTypeMacro(cmQTWrapUICommand, cmCommand);
|
2001-11-09 20:03:41 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmQTWrapUICommand; }
|
2001-11-09 20:03:41 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2001-11-09 20:03:41 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "qt_wrap_ui"; }
|
2001-11-09 20:03:41 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|