ScreenSaveProgrameDlg.cpp
上传用户:liuhua
上传日期:2022-07-19
资源大小:27k
文件大小:6k
源码类别:

屏幕保护

开发平台:

Visual C++

  1. // ScreenSaveProgrameDlg.cpp : implementation file
  2. // Download by http://www.codefans.net
  3. #include "stdafx.h"
  4. #include "ScreenSavePrograme.h"
  5. #include "ScreenSaveProgrameDlg.h"
  6. #include "DrawWnd.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. // CScreenSaveProgrameDlg dialog
  51. CScreenSaveProgrameDlg::CScreenSaveProgrameDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CScreenSaveProgrameDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CScreenSaveProgrameDlg)
  55. m_nSpeed = 0;
  56. //}}AFX_DATA_INIT
  57. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  58. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  59. }
  60. void CScreenSaveProgrameDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CScreenSaveProgrameDlg)
  64. DDX_Control(pDX, IDC_SPEED, m_scrollSpeed);
  65. DDX_Scroll(pDX, IDC_SPEED, m_nSpeed);
  66. //}}AFX_DATA_MAP
  67. }
  68. BEGIN_MESSAGE_MAP(CScreenSaveProgrameDlg, CDialog)
  69. //{{AFX_MSG_MAP(CScreenSaveProgrameDlg)
  70. ON_WM_SYSCOMMAND()
  71. ON_WM_PAINT()
  72. ON_WM_QUERYDRAGICON()
  73. ON_WM_HSCROLL()
  74. //}}AFX_MSG_MAP
  75. END_MESSAGE_MAP()
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CScreenSaveProgrameDlg message handlers
  78. BOOL CScreenSaveProgrameDlg::OnInitDialog()
  79. {
  80. CDialog::OnInitDialog();
  81. CRect rect;
  82. GetDlgItem(IDC_PREVIEW)->GetWindowRect(&rect);
  83. ScreenToClient(&rect);
  84. m_wndPreview.Create(NULL, WS_VISIBLE|WS_CHILD, rect, this, NULL);
  85. m_wndPreview.SetSpeed(m_nSpeed);
  86.  
  87. m_scrollSpeed.SetScrollRange(1, 100);
  88. m_scrollSpeed.SetScrollPos(m_nSpeed);
  89. CenterWindow();
  90. // Add "About..." menu item to system menu.
  91. // IDM_ABOUTBOX must be in the system command range.
  92. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  93. ASSERT(IDM_ABOUTBOX < 0xF000);
  94. CMenu* pSysMenu = GetSystemMenu(FALSE);
  95. if (pSysMenu != NULL)
  96. {
  97. CString strAboutMenu;
  98. strAboutMenu.LoadString(IDS_ABOUTBOX);
  99. if (!strAboutMenu.IsEmpty())
  100. {
  101. pSysMenu->AppendMenu(MF_SEPARATOR);
  102. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  103. }
  104. }
  105. // Set the icon for this dialog.  The framework does this automatically
  106. //  when the application's main window is not a dialog
  107. SetIcon(m_hIcon, TRUE); // Set big icon
  108. SetIcon(m_hIcon, FALSE); // Set small icon
  109. // TODO: Add extra initialization here
  110. return TRUE;  // return TRUE  unless you set the focus to a control
  111. }
  112. void CScreenSaveProgrameDlg::OnSysCommand(UINT nID, LPARAM lParam)
  113. {
  114. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  115. {
  116. CAboutDlg dlgAbout;
  117. dlgAbout.DoModal();
  118. }
  119. else
  120. {
  121. CDialog::OnSysCommand(nID, lParam);
  122. }
  123. }
  124. // If you add a minimize button to your dialog, you will need the code below
  125. //  to draw the icon.  For MFC applications using the document/view model,
  126. //  this is automatically done for you by the framework.
  127. void CScreenSaveProgrameDlg::OnPaint() 
  128. {
  129. if (IsIconic())
  130. {
  131. CPaintDC dc(this); // device context for painting
  132. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  133. // Center icon in client rectangle
  134. int cxIcon = GetSystemMetrics(SM_CXICON);
  135. int cyIcon = GetSystemMetrics(SM_CYICON);
  136. CRect rect;
  137. GetClientRect(&rect);
  138. int x = (rect.Width() - cxIcon + 1) / 2;
  139. int y = (rect.Height() - cyIcon + 1) / 2;
  140. // Draw the icon
  141. dc.DrawIcon(x, y, m_hIcon);
  142. }
  143. else
  144. {
  145. CDialog::OnPaint();
  146. }
  147. }
  148. // The system calls this to obtain the cursor to display while the user drags
  149. //  the minimized window.
  150. HCURSOR CScreenSaveProgrameDlg::OnQueryDragIcon()
  151. {
  152. return (HCURSOR) m_hIcon;
  153. }
  154. void CScreenSaveProgrameDlg::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar) 
  155. {
  156. // TODO: Add your message handler code here and/or call default
  157. int nCurPos = pScrollBar->GetScrollPos();
  158. switch (nSBCode)
  159. {
  160. case SB_LEFT: //    Scroll to far left.
  161. nCurPos = 1;
  162. break;
  163. case SB_LINELEFT: //    Scroll left.
  164. nCurPos--;
  165. break;
  166. case SB_LINERIGHT: //    Scroll right.
  167. nCurPos++;
  168. break;
  169. case SB_PAGELEFT: //    Scroll one page left.
  170. nCurPos -= 10;
  171. break;
  172. case SB_PAGERIGHT: //    Scroll one page right.
  173. nCurPos += 10;
  174. break;
  175. case SB_RIGHT: //    Scroll to far right.
  176. nCurPos = 100;
  177. break;
  178. case SB_THUMBPOSITION: //    Scroll to absolute position. The current position is specified by the nPos parameter.
  179. case SB_THUMBTRACK: //    Drag scroll box to specified position. The current position is specified by the nPos parameter.
  180. nCurPos = nPos;
  181. }
  182. if (nCurPos < 1)
  183. nCurPos = 1;
  184. if (nCurPos > 100)
  185. nCurPos = 100;
  186. pScrollBar->SetScrollPos(nCurPos);
  187. m_wndPreview.SetSpeed(m_scrollSpeed.GetScrollPos());
  188. CDialog::OnHScroll(nSBCode, nPos, pScrollBar);
  189. }