SettingDlg.h
上传用户:mcdz888
上传日期:2022-08-05
资源大小:118k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. #if !defined(AFX_SETTINGDLG_H__CD802ADF_6285_42E2_AB60_C44F8A92D064__INCLUDED_)
  2. #define AFX_SETTINGDLG_H__CD802ADF_6285_42E2_AB60_C44F8A92D064__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SettingDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSettingDlg dialog
  10. #include "TestBtn.h"
  11. #include "SXBtn.h"
  12. #include "BtnST.h"
  13. class CSettingDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17. COLORREF m_clr;
  18. CSettingDlg(CWnd* pParent = NULL);   // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CSettingDlg)
  21. enum { IDD = IDD_DLG_SETTING };
  22. CButtonST m_btnST;
  23. CSXBtn m_btnCancel;
  24. CTestBtn m_btnTest;
  25. UINT m_nLineWidth;
  26. int m_nLineStyle;
  27. //}}AFX_DATA
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CSettingDlg)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. protected:
  36. // Generated message map functions
  37. //{{AFX_MSG(CSettingDlg)
  38. afx_msg void OnChangeLineWidth();
  39. afx_msg void OnRadio1();
  40. afx_msg void OnRadio2();
  41. afx_msg void OnRadio3();
  42. afx_msg void OnPaint();
  43. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  44. virtual BOOL OnInitDialog();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. private:
  48. CFont m_font;
  49. CBrush m_brush;
  50. };
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_SETTINGDLG_H__CD802ADF_6285_42E2_AB60_C44F8A92D064__INCLUDED_)