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

绘图程序

开发平台:

Visual C++

  1. #if !defined XGL_GRAPGSOFT_COLOR_SELECT_HEADER_FILE_2004_3_20
  2. #define XGL_GRAPGSOFT_COLOR_SELECT_HEADER_FILE_2004_3_20
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. class CColorSelect : public CButton
  7. {
  8. // Construction
  9. public:
  10. CColorSelect();
  11. virtual ~CColorSelect();
  12. // Operations
  13. public:
  14. void SetColor(COLORREF ref);
  15. COLORREF GetColor();
  16. void GetColor(CString& strColor);
  17. void        SetFillRect(CRect rect);
  18. void        SetFillRect(int left,int top,int right,int bottom);
  19. CRect       GetFillRect();
  20. void        SetSelRect(CRect rect);
  21. void        SetSelRect(int left,int top,int right,int bottom);
  22. CRect       GetSelRect();
  23. // CPoint m_OldPos;
  24. //CPoint m_CurrentPos;
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CColorSelect)
  28. protected:
  29. virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. private:
  33. void DestroyPaletteWindow();
  34. BOOL CreatePaletteWindow();
  35. static LONG FAR PASCAL PaletteWndProc(HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam);
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CColorSelect)
  39. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  40. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  41. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  42. afx_msg void OnPaint();
  43. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  44. afx_msg LRESULT OnMouseLeave(WPARAM wParam, LPARAM lParam);
  45. afx_msg LRESULT OnMouseHover(WPARAM wParam, LPARAM lParam);
  46. afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. // Attributes
  50. protected:
  51. CRect m_rectFill,m_rectSel;
  52. private:
  53. COLORREF m_CurrentColor;
  54. HWND m_hPaletteWnd;
  55. BOOL m_bPaletteWndActive;
  56. HCURSOR m_hCursorStraw;   
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. #endif // #if !defined XGL_GRAPGSOFT_COLOR_SELECT_HEADER_FILE_2004_3_20