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

绘图程序

开发平台:

Visual C++

  1. #if !defined(AFX_COLORSETDLG_H__DADB80A7_939D_4EB7_A786_5373916544EB__INCLUDED_)
  2. #define AFX_COLORSETDLG_H__DADB80A7_939D_4EB7_A786_5373916544EB__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ColorSetDlg.h : header file
  7. //
  8. #include "GraphDefines.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CColorSetDlg dialog
  11. class CColorSetDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CColorSetDlg(int nType=0,CWnd* pParent = NULL);   // standard constructor
  16. public:
  17. //attributes
  18. int                         m_nColorType;
  19.                                          //0-------line color
  20.                                          //1-------Fill color
  21. int m_nNumPatterns ;
  22. int m_nNumColumns ;
  23. int m_nMargin ;
  24. int m_nBoxSize ;
  25. int m_nCurrent ;
  26. int m_nSelect ;
  27. int m_nColorOther ;
  28. int                         m_nColorAuto;
  29. CRect m_OtherColorRect ;
  30. CRect                       m_AutoSetRect;
  31. CRect                       m_AutoColorRect;
  32. COLORREF                    m_clrArray[40];
  33. CWnd*                       m_pWndParent;
  34. public:
  35. //operations
  36. int GetRow(int i);
  37. int GetColumn(int i);
  38. BOOL GetCellRect(int i,CRect* pRect);
  39. COLORREF GetColor(int i);
  40. void draw_cell(CDC* pDC,int i);
  41. //下面三个函数用来输入/输出颜色
  42. COLORREF                    GetColor();
  43. void                        SetColor(COLORREF color);
  44. void                        InitColor(COLORREF color);
  45. COLORREF                    GetInitColor();
  46. //
  47. void                        SetLeftTopPt(CPoint point);
  48. void                        Init();
  49. // Dialog Data
  50. //{{AFX_DATA(CColorSetDlg)
  51. enum { IDD = IDD_COLOR_SET };
  52. int m_nColor_B;
  53. int m_nColor_G;
  54. int m_nColor_R;
  55. //}}AFX_DATA
  56. // Overrides
  57. // ClassWizard generated virtual function overrides
  58. //{{AFX_VIRTUAL(CColorSetDlg)
  59. protected:
  60. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  61. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  62. //}}AFX_VIRTUAL
  63. // Implementation
  64. protected:
  65. // Generated message map functions
  66. //{{AFX_MSG(CColorSetDlg)
  67. afx_msg void OnPaint();
  68. virtual BOOL OnInitDialog();
  69. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  70. afx_msg void OnKillFocus(CWnd* pNewWnd);
  71. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. };
  75. //{{AFX_INSERT_LOCATION}}
  76. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  77. #endif // !defined(AFX_COLORSETDLG_H__DADB80A7_939D_4EB7_A786_5373916544EB__INCLUDED_)