-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMonitorTestDlg.h
More file actions
44 lines (35 loc) · 944 Bytes
/
Copy pathMonitorTestDlg.h
File metadata and controls
44 lines (35 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// MonitorTestDlg.h : header file
//
#pragma once
class CMonitor;
// CMonitorTestDlg dialog
class CMonitorTestDlg : public CDialog
{
// Construction
public:
CMonitorTestDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_MONITORTEST_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButton1();
afx_msg void OnBnClickedButton2();
afx_msg void OnBnClickedButton3();
afx_msg void OnMove(int x, int y);
afx_msg void OnBnClickedButton4();
afx_msg void OnBnClickedButton6();
private:
void FlashMonitor( CMonitor& monitor, bool WorkSpace = false );
void FlashRect(CRect& rect );
public:
afx_msg void OnBnClickedButtonFlashAll();
};