2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-01-21 23:30:43 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-01-21 23:30:43 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-11-27 06:40:31 +03:00
|
|
|
#ifndef cmFLTKWrapUICommand_h
|
|
|
|
#define cmFLTKWrapUICommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmFLTKWrapUICommand
|
|
|
|
* \brief Create .h and .cxx files rules for FLTK user interfaces files
|
|
|
|
*
|
2006-03-10 21:54:57 +03:00
|
|
|
* cmFLTKWrapUICommand is used to create wrappers for FLTK classes into
|
|
|
|
* normal C++
|
2001-11-27 06:40:31 +03:00
|
|
|
*/
|
|
|
|
class cmFLTKWrapUICommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2005-06-16 22:05:22 +04:00
|
|
|
cmTypeMacro(cmFLTKWrapUICommand, cmCommand);
|
|
|
|
|
2001-11-27 06:40:31 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmFLTKWrapUICommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2001-11-27 06:40:31 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called at the end after all the information
|
|
|
|
* specified by the command is accumulated. Most commands do
|
|
|
|
* not implement this method. At this point, reading and
|
|
|
|
* writing to the cache can be done.
|
|
|
|
*/
|
|
|
|
virtual void FinalPass();
|
2009-07-24 21:31:34 +04:00
|
|
|
virtual bool HasFinalPass() const { return true; }
|
2001-11-27 06:40:31 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2007-10-10 19:47:43 +04:00
|
|
|
virtual const char* GetName() { return "fltk_wrap_ui";}
|
2001-11-27 06:40:31 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
|
|
|
return "Create FLTK user interfaces Wrappers.";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" fltk_wrap_ui(resultingLibraryName source1\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" source2 ... sourceN )\n"
|
|
|
|
"Produce .h and .cxx files for all the .fl and .fld files listed. "
|
2005-06-10 18:09:17 +04:00
|
|
|
"The resulting .h and .cxx files will be added to a variable named "
|
2005-11-16 19:57:36 +03:00
|
|
|
"resultingLibraryName_FLTK_UI_SRCS which should be added to your "
|
2003-02-15 02:47:16 +03:00
|
|
|
"library.";
|
2001-11-27 06:40:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* List of produced files.
|
|
|
|
*/
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<cmSourceFile *> GeneratedSourcesClasses;
|
2003-07-14 17:31:29 +04:00
|
|
|
|
2001-11-27 06:40:31 +03:00
|
|
|
/**
|
2001-11-28 22:44:10 +03:00
|
|
|
* List of Fluid files that provide the source
|
|
|
|
* generating .cxx and .h files
|
2001-11-27 06:40:31 +03:00
|
|
|
*/
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string Target;
|
2001-11-27 06:40:31 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|