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

其他智力游戏

开发平台:

C/C++

  1. /*++
  2. Copyright (c) AFE(Active-Free-Elegance)
  3. Module Name:
  4.     SettingDlg.h
  5. Abstract:
  6. the Dialog class for user's favor configuration
  7. Author:
  8.     Weijian Luo (Arthur Luo)   15-Jun-2005
  9. E-mail: skybluehacker@yahoo.com.cn
  10. Revision History:      1.0
  11. --*/
  12. #if !defined(AFX_SETTINGDLG_H__8E23A109_7181_443A_987A_5F4EAAFADB3E__INCLUDED_)
  13. #define AFX_SETTINGDLG_H__8E23A109_7181_443A_987A_5F4EAAFADB3E__INCLUDED_
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17. // SettingDlg.h : header file
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSettingDlg dialog
  21. class CSettingDlg : public CDialog
  22. {
  23. // Construction
  24. public:
  25. CSettingDlg(CWnd* pParent = NULL);   // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CSettingDlg)
  28. enum { IDD = IDD_SETTING };
  29. CEdit m_Crows;
  30. CEdit m_Ccols;
  31. CSpinButtonCtrl m_SpinRows;
  32. CSpinButtonCtrl m_SpinCols;
  33. BOOL m_bMusic;
  34. int m_iCols;
  35. CString m_strMusicFileName;
  36. int m_iRows;
  37. //}}AFX_DATA
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CSettingDlg)
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. protected:
  46. // Generated message map functions
  47. //{{AFX_MSG(CSettingDlg)
  48. virtual BOOL OnInitDialog();
  49. virtual void OnOK();
  50. afx_msg void OnOpen();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_SETTINGDLG_H__8E23A109_7181_443A_987A_5F4EAAFADB3E__INCLUDED_)