cmVTKWrapTclCommand.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmVTKWrapTclCommand_h
  14. #define cmVTKWrapTclCommand_h
  15. #include "cmCommand.h"
  16. /** \class cmVTKWrapTclCommand
  17. * \brief Create Tcl Wrappers for VTK classes.
  18. *
  19. * cmVTKWrapTclCommand is used to define a CMake variable include
  20. * path location by specifying a file and list of directories.
  21. */
  22. class cmVTKWrapTclCommand : public cmCommand
  23. {
  24. public:
  25. /**
  26. * This is a virtual constructor for the command.
  27. */
  28. virtual cmCommand* Clone()
  29. {
  30. return new cmVTKWrapTclCommand;
  31. }
  32. /**
  33. * This is called when the command is first encountered in
  34. * the CMakeLists.txt file.
  35. */
  36. virtual bool InitialPass(std::vector<std::string> const& args);
  37. /**
  38. * This is called at the end after all the information
  39. * specified by the command is accumulated. Most commands do
  40. * not implement this method. At this point, reading and
  41. * writing to the cache can be done.
  42. */
  43. virtual void FinalPass();
  44. /**
  45. * The name of the command as specified in CMakeList.txt.
  46. */
  47. virtual const char* GetName() { return "VTK_WRAP_TCL";}
  48. /**
  49. * Succinct documentation.
  50. */
  51. virtual const char* GetTerseDocumentation()
  52. {
  53. return "Deprecated. For use only in VTK 4.0.";
  54. }
  55. /**
  56. * More documentation.
  57. */
  58. virtual const char* GetFullDocumentation()
  59. {
  60. return
  61. " VTK_WRAP_TCL(resultingLibraryName [SOURCES]\n"
  62. " SourceListName class1 class2 ...\n"
  63. " [COMMANDS CommandName1 CommandName2 ...])\n"
  64. "Create Tcl wrappers for VTK classes.";
  65. }
  66. /**
  67. * Helper methods
  68. */
  69. virtual bool CreateInitFile(std::string &name);
  70. virtual bool WriteInit(const char *kitName, std::string& outFileName,
  71. std::vector<std::string>& classes);
  72. private:
  73. std::vector<cmSourceFile> m_WrapClasses;
  74. std::vector<std::string> m_WrapHeaders;
  75. std::string m_LibraryName;
  76. std::string m_SourceList;
  77. std::vector<std::string> m_Commands;
  78. };
  79. #endif