MyKeyFrameBar.h
上传用户:cding2008
上传日期:2007-01-03
资源大小:1812k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // MyKeyFrameBar.h : Header file; interface of the CMyKeyFrameBar class
  3. //
  4. // ModelMagic 3D and 'glOOP' (OpenGL Object Oriented Programming library)
  5. // Copyright (c) Craig Fahrnbach 1997, 1999
  6. //
  7. // OpenGL is a registered trademark of Silicon Graphics
  8. //
  9. //
  10. // This program is provided for educational and personal use only and
  11. // is provided without guarantee or warrantee expressed or implied.
  12. //
  13. // Commercial use is strickly prohibited without written permission
  14. // from ImageWare Development.
  15. //
  16. /////////////////////////////////////////////////////////////////////////////
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CMyKeyFrameBar floating toolbar
  19. class CMyKeyFrameBar : public CToolBar
  20. {
  21. // Constructor
  22. public:
  23. CMyKeyFrameBar();
  24. void SetColumns(UINT nColumns);
  25. UINT GetColumns() { return m_nColumns; };
  26. // Attributes
  27. public:
  28. CEdit m_EditBox;
  29. CFont       m_Font;
  30. float m_fTime;
  31. // Operations
  32. public:
  33. // Implementation
  34. public:
  35. virtual ~CMyKeyFrameBar();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. UINT m_nColumns;
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CMyKeyFrameBar)
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////