DlgOptLog.cpp
上传用户:tianheyiqi
上传日期:2010-04-16
资源大小:282k
文件大小:2k
源码类别:

外挂编程

开发平台:

Visual C++

  1. // DlgOptLog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ROA.h"
  5. #include "DlgOptLog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlgOptLog dialog
  13. CDlgOptLog::CDlgOptLog(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDlgOptLog::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDlgOptLog)
  17. m_nFile = -1;
  18. m_nRo = -1;
  19. m_nWindow = -1;
  20. //}}AFX_DATA_INIT
  21. }
  22. void CDlgOptLog::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CDlgOptLog)
  26. DDX_Radio(pDX, IDC_RAD_FILE_NONE, m_nFile);
  27. DDX_Radio(pDX, IDC_RAD_RO_NONE, m_nRo);
  28. DDX_Radio(pDX, IDC_RAD_WND_NONE, m_nWindow);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CDlgOptLog, CDialog)
  32. //{{AFX_MSG_MAP(CDlgOptLog)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CDlgOptLog message handlers
  37. BOOL CDlgOptLog::OnInitDialog() 
  38. {
  39. CDialog::OnInitDialog();
  40. m_nFile = llFile + 1;
  41. m_nWindow = llDlg + 1;
  42. m_nRo = llRo + 1;
  43. UpdateData(false);
  44. return TRUE;  // return TRUE unless you set the focus to a control
  45.               // EXCEPTION: OCX Property Pages should return FALSE
  46. }
  47. void CDlgOptLog::OnOK() 
  48. {
  49. // TODO: Add extra validation here
  50. UpdateData(true);
  51. llFile = (LOG_LEVEL)(m_nFile - 1);
  52. llDlg = (LOG_LEVEL)(m_nWindow - 1);
  53. llRo = (LOG_LEVEL)(m_nRo - 1);
  54. CDialog::OnOK();
  55. }