-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWaveWin.h
46 lines (38 loc) · 865 Bytes
/
WaveWin.h
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
45
46
// WaveWin.h : header file
//
#include "Settings.h"
/////////////////////////////////////////////////////////////////////////////
// CWaveWin window
class CWaveWin : public CStatic
{
friend class CSpecDlg;
// Construction
public:
CWaveWin();
// Attributes
protected:
CDC* m_WaveWinDC;
int m_oWave[MAXWAVE + 1];
int m_cWaveY[256];
// Operations
public:
void InitWave();
void DrawWave();
void ClearWave();
void GenerateWave(double x);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CWaveWin)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CWaveWin();
// Generated message map functions
protected:
//{{AFX_MSG(CWaveWin)
afx_msg void OnPaint();
afx_msg void OnDestroy();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////