MonitorTestDlg.h
上传用户:maidou0901
上传日期:2008-10-19
资源大小:68k
文件大小:1k
源码类别:

多显示器编程

开发平台:

Visual C++

  1. // MonitorTestDlg.h : header file
  2. //
  3. #pragma once
  4. class CMonitor;
  5. // CMonitorTestDlg dialog
  6. class CMonitorTestDlg : public CDialog
  7. {
  8. // Construction
  9. public:
  10. CMonitorTestDlg(CWnd* pParent = NULL); // standard constructor
  11. // Dialog Data
  12. enum { IDD = IDD_MONITORTEST_DIALOG };
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  15. // Implementation
  16. protected:
  17. HICON m_hIcon;
  18. // Generated message map functions
  19. virtual BOOL OnInitDialog();
  20. afx_msg void OnPaint();
  21. afx_msg HCURSOR OnQueryDragIcon();
  22. DECLARE_MESSAGE_MAP()
  23. public:
  24. afx_msg void OnBnClickedButton1();
  25. afx_msg void OnBnClickedButton2();
  26. afx_msg void OnBnClickedButton3();
  27. afx_msg void OnMove(int x, int y);
  28. afx_msg void OnBnClickedButton4();
  29. afx_msg void OnBnClickedButton6();
  30. private:
  31. void FlashMonitor( CMonitor& monitor, bool WorkSpace = false );
  32. void FlashRect(CRect& rect );
  33. public:
  34. afx_msg void OnBnClickedButtonFlashAll();
  35. afx_msg void OnBnClickedButtonCenterprimary();
  36. afx_msg void OnBnClickedButtonOther();
  37. afx_msg void OnBnClickedButtonView();
  38. };