PropertyBar.h
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:1k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // PropertyBar.h: interface for the CPropertyBar class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PROPERTYBAR_H__620C6806_6BDC_42E2_BC04_C365E1F278F5__INCLUDED_)
  5. #define AFX_PROPERTYBAR_H__620C6806_6BDC_42E2_BC04_C365E1F278F5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ColorSelect.h"
  10. class CPropertyBar : public CToolBar  
  11. {
  12. public:
  13. CPropertyBar();
  14. virtual ~CPropertyBar();
  15. public:
  16. CColorSelect m_btnColorSel;
  17. };
  18. #endif // !defined(AFX_PROPERTYBAR_H__620C6806_6BDC_42E2_BC04_C365E1F278F5__INCLUDED_)
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CPropertyBar window
  21. class CPropertyBar : public CToolBarCtrl
  22. {
  23. // Construction
  24. public:
  25. CPropertyBar();
  26. // Attributes
  27. public:
  28. // Operations
  29. public:
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CPropertyBar)
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CPropertyBar();
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CPropertyBar)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////