ComboBtn.h
上传用户:xyjtyn
上传日期:2007-01-01
资源大小:85k
文件大小:3k
源码类别:

按钮控件

开发平台:

Visual C++

  1. // colorctl.h : header file
  2. //
  3. #ifndef __COLORCTL_H
  4. #define __COLORCTL_H
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CWndCombo window
  7. class CWndCombo : public CWnd
  8. {
  9. // Construction
  10. public:
  11. CWndCombo();
  12. // Attributes
  13. public:
  14. protected:
  15. CSize  m_sizeGrid, m_sizeBtn;
  16. UINT m_nBitmapIDResource;
  17. CWnd  *m_pParent;
  18. COLORREF m_rgbBkColor;
  19. int  m_iSelectedItem, m_iNbImages;
  20. CBitmap m_bmImage;
  21. CFont m_font;
  22. CStringArray  m_lstTextItems;
  23. // Operations
  24. public:
  25. BOOL Create(int x, int y, CSize sizeGrid, CSize sizeBtn, CWnd * pParent, CString sTextItems = "");
  26. BOOL Create(int x, int y, CSize sizeGrid, UINT nBitmapIDResource, int iNbImages, 
  27. CWnd * pParent, CString sTextItems = "");
  28. BOOL  IsCreate() { return m_hWnd != NULL; }
  29. void  SetBkColor(COLORREF rgbBkColor) { m_rgbBkColor = rgbBkColor; }
  30. COLORREF  GetBkColor() { return m_rgbBkColor; }
  31. int  GetItem(CPoint point, CRect * pRect);
  32. void DrawBtnFace(CDC * pDC, CRect rect, long lItem);
  33. void SetSelectedItem(int iItem) { m_iSelectedItem = iItem; }
  34. protected:
  35. CSize UpdateTextItems(CString sTextItems);
  36. // Overrides
  37. public:
  38. COLORREF GetColor(int iIndex);
  39. // Implementation
  40. public:
  41. virtual ~CWndCombo();
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CWndCombo)
  45. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  46. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  47. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  48. afx_msg void OnPaint();
  49. afx_msg void OnKillFocus(CWnd* pNewWnd);
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CButtonCombo window
  56. class CButtonCombo : public CWnd
  57. {
  58. // Construction
  59. public:
  60. CButtonCombo();
  61. // Attributes
  62. public:
  63.     
  64. protected:
  65. CWnd  *m_pParent;
  66. UINT m_nID;
  67. CWndCombo m_wndColor;  
  68. BOOL m_bLeftBtnDown, m_bRightBtnDown, m_bLeftBtnOut;
  69. long  m_lItem;
  70. int m_iRealItem;
  71. // Operations
  72. public:
  73. BOOL Create(CRect rect, CSize sizeGrid, CSize sizeBtn, CWnd * pParent, 
  74. UINT nID, CString sTextItems = "");
  75. BOOL Create(CRect rect, CSize sizeGrid, UINT nBitmapIDResource, int iNbImages, 
  76. CWnd * pParent, UINT nID, CString sTextItems = "");
  77. void DrawArrow(CDC * pDC, CRect * pRect);
  78. void OnItemSelected(long lItem, int iRealItem);
  79. void UnpressRightButton();
  80. long GetSelectedItem() { return m_lItem; }
  81. protected:
  82. void  DrawDisabled( CDC * pDC, const CRect & rc ); 
  83. // Overrides
  84. public:
  85. // Implementation
  86. public:
  87. virtual ~CButtonCombo();
  88. // Generated message map functions
  89. protected:
  90. //{{AFX_MSG(CButtonCombo)
  91. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  92. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  93. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  94. afx_msg void OnPaint();
  95. afx_msg void OnEnable(BOOL bEnable);
  96. //}}AFX_MSG
  97. DECLARE_MESSAGE_MAP()
  98. };
  99. /////////////////////////////////////////////////////////////////////////////
  100. #endif