ConfigDlg.h
上传用户:cxh888fhc
上传日期:2017-07-08
资源大小:240k
文件大小:1k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. #if !defined(AFX_CONFIGDLG_H__CA4A8B55_F18F_488F_BE7E_9DB834DE6740__INCLUDED_)
  2. #define AFX_CONFIGDLG_H__CA4A8B55_F18F_488F_BE7E_9DB834DE6740__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ConfigDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CConfigDlg dialog
  10. #include "ShadowButton.h"
  11. class CConfigDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CConfigDlg(CWnd* pParent = NULL);   // standard constructor
  16. // Dialog Data
  17. //{{AFX_DATA(CConfigDlg)
  18. enum { IDD = IDD_DLG_CONFIG };
  19. CShadowButton m_btnOK;
  20. CShadowButton m_btnCancel;
  21. CShadowButton m_btnColor;
  22. int m_nCirCle;
  23. int m_nWidth;
  24. //}}AFX_DATA
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CConfigDlg)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. // Generated message map functions
  34. //{{AFX_MSG(CConfigDlg)
  35. afx_msg void OnPaint();
  36. afx_msg void OnBtnColor();
  37. virtual BOOL OnInitDialog();
  38. virtual void OnOK();
  39. virtual void OnCancel();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. public:
  43. COLORREF m_clrDraw;
  44. };
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_CONFIGDLG_H__CA4A8B55_F18F_488F_BE7E_9DB834DE6740__INCLUDED_)