TimeLimitDlg.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:4k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // TimeLimitDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TimeLimit.h"
  5. #include "TimeLimitDlg.h"
  6. #include "RegKey.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CTimeLimitDlg dialog
  51. CTimeLimitDlg::CTimeLimitDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CTimeLimitDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CTimeLimitDlg)
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CTimeLimitDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CTimeLimitDlg)
  63. //}}AFX_DATA_MAP
  64. }
  65. BEGIN_MESSAGE_MAP(CTimeLimitDlg, CDialog)
  66. //{{AFX_MSG_MAP(CTimeLimitDlg)
  67. ON_WM_SYSCOMMAND()
  68. ON_WM_PAINT()
  69. ON_WM_QUERYDRAGICON()
  70. //}}AFX_MSG_MAP
  71. END_MESSAGE_MAP()
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CTimeLimitDlg message handlers
  74. BOOL CTimeLimitDlg::OnInitDialog()
  75. {
  76. CDialog::OnInitDialog();
  77. // Add "About..." menu item to system menu.
  78. // IDM_ABOUTBOX must be in the system command range.
  79. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  80. ASSERT(IDM_ABOUTBOX < 0xF000);
  81. CMenu* pSysMenu = GetSystemMenu(FALSE);
  82. if (pSysMenu != NULL)
  83. {
  84. CString strAboutMenu;
  85. strAboutMenu.LoadString(IDS_ABOUTBOX);
  86. if (!strAboutMenu.IsEmpty())
  87. {
  88. pSysMenu->AppendMenu(MF_SEPARATOR);
  89. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  90. }
  91. }
  92. // Set the icon for this dialog.  The framework does this automatically
  93. //  when the application's main window is not a dialog
  94. SetIcon(m_hIcon, TRUE); // Set big icon
  95. SetIcon(m_hIcon, FALSE); // Set small icon
  96. // TODO: Add extra initialization here
  97. return TRUE;  // return TRUE  unless you set the focus to a control
  98. }
  99. void CTimeLimitDlg::OnSysCommand(UINT nID, LPARAM lParam)
  100. {
  101. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  102. {
  103. CAboutDlg dlgAbout;
  104. dlgAbout.DoModal();
  105. }
  106. else
  107. {
  108. CDialog::OnSysCommand(nID, lParam);
  109. }
  110. }
  111. // If you add a minimize button to your dialog, you will need the code below
  112. //  to draw the icon.  For MFC applications using the document/view model,
  113. //  this is automatically done for you by the framework.
  114. void CTimeLimitDlg::OnPaint() 
  115. {
  116. if (IsIconic())
  117. {
  118. CPaintDC dc(this); // device context for painting
  119. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  120. // Center icon in client rectangle
  121. int cxIcon = GetSystemMetrics(SM_CXICON);
  122. int cyIcon = GetSystemMetrics(SM_CYICON);
  123. CRect rect;
  124. GetClientRect(&rect);
  125. int x = (rect.Width() - cxIcon + 1) / 2;
  126. int y = (rect.Height() - cyIcon + 1) / 2;
  127. // Draw the icon
  128. dc.DrawIcon(x, y, m_hIcon);
  129. }
  130. else
  131. {
  132. CDialog::OnPaint();
  133. }
  134. }
  135. // The system calls this to obtain the cursor to display while the user drags
  136. //  the minimized window.
  137. HCURSOR CTimeLimitDlg::OnQueryDragIcon()
  138. {
  139. return (HCURSOR) m_hIcon;
  140. }