hctToolbarGUPInterface.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef INC_TOOLBARGUPINTERFACE
  9. #define INC_TOOLBARGUPINTERFACE
  10. #include <iFnPub.h>
  11. // Class ID
  12. #define HK_TOOLBAR_GUP_CLASS_ID Class_ID(0x16285733, 0x138c2dca)
  13. /*
  14. ** FUNCTION PUBLISHING
  15. */
  16. #define HK_TOOLBAR_GUP_FPINTERFACE_ID Interface_ID(0x292c67fd, 0x7b0a4397)
  17. enum 
  18. {
  19. FPI_Hide, 
  20. FPI_Show, 
  21. FPI_Dock, 
  22. FPI_Undock,
  23. FPI_IsVisible,
  24. FPI_IsDocked,
  25. FPI_AddMacro,
  26. FPI_AddSeparator
  27. };
  28. /*
  29. ** C++ Interface to the Havok Content Tools Toolbar.
  30. **
  31. ** Exposed to MAXScript as hctToolbarGUP
  32. **
  33. ** The methods here correspond to the methods exposed to MaxScript.
  34. ** 
  35. */
  36. class hctToolbarGUPInterface : public FPStaticInterface 
  37. {
  38. public:
  39. // hctToolbarGUP.hide() -> hides the toolbar (if visible)
  40. virtual void iHide() = 0;
  41. // hctToolbarGUP.show() -> shows the toolbar (if hidden)
  42. virtual void iShow() = 0;
  43. // hctToolbarGUP.dock() -> docs the toolbar
  44. virtual void iDock() = 0;
  45. // hctToolbarGUP.undock() -> undocs the toolbar
  46. virtual void iUndock() = 0;
  47. // hctToolbarGUP.isVisible() -> returns true if the toolbar is not hidden
  48. virtual BOOL iIsVisible() = 0;
  49. // hctToolbarGUP.isDocked() -> returns true if the toolbar is docked
  50. virtual BOOL iIsDocked() = 0;
  51. // hctToolbarGUP.addMacro() -> adds a button based on a macroscript (of the given category + name)
  52. virtual void iAddMacro( TCHAR* category, TCHAR* name) =0;
  53. // hctToolbarGUP.addSeparator() -> adds a separator to the toolbar
  54. virtual void iAddSeparator () = 0;
  55. };
  56. #endif //INC_TOOLBARGUPINTERFACE
  57. /*
  58. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  59. * Confidential Information of Havok.  (C) Copyright 1999-2009
  60. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  61. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  62. * rights, and intellectual property rights in the Havok software remain in
  63. * Havok and/or its suppliers.
  64. * Use of this software for evaluation purposes is subject to and indicates
  65. * acceptance of the End User licence Agreement for this product. A copy of
  66. * the license is included with this software and is also available at www.havok.com/tryhavok.
  67. */