MyKeyFrameBar.h
上传用户:cding2008
上传日期:2007-01-03
资源大小:1812k
文件大小:1k
- /////////////////////////////////////////////////////////////////////////////
- // MyKeyFrameBar.h : Header file; interface of the CMyKeyFrameBar class
- //
- // ModelMagic 3D and 'glOOP' (OpenGL Object Oriented Programming library)
- // Copyright (c) Craig Fahrnbach 1997, 1999
- //
- // OpenGL is a registered trademark of Silicon Graphics
- //
- //
- // This program is provided for educational and personal use only and
- // is provided without guarantee or warrantee expressed or implied.
- //
- // Commercial use is strickly prohibited without written permission
- // from ImageWare Development.
- //
- /////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////
- // CMyKeyFrameBar floating toolbar
- class CMyKeyFrameBar : public CToolBar
- {
- // Constructor
- public:
- CMyKeyFrameBar();
- void SetColumns(UINT nColumns);
- UINT GetColumns() { return m_nColumns; };
- // Attributes
- public:
- CEdit m_EditBox;
- CFont m_Font;
- float m_fTime;
- // Operations
- public:
- // Implementation
- public:
- virtual ~CMyKeyFrameBar();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- UINT m_nColumns;
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMyKeyFrameBar)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////