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

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // MyToolBar.h : Header file; interface of the CMyToolBar 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. // CMyToolBar floating toolbar
  19. class CMyToolBar : public CToolBar
  20. {
  21. // Constructor
  22. public:
  23. CMyToolBar();
  24. void SetColumns(UINT nColumns);
  25. UINT GetColumns() { return m_nColumns; };
  26. // Attributes
  27. public:
  28. // Operations
  29. public:
  30. // Implementation
  31. public:
  32. virtual ~CMyToolBar();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. UINT    m_nColumns;
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMyToolBar)
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////