-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecDlg.h
48 lines (41 loc) · 1.13 KB
/
SpecDlg.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
47
48
// SpecDlg.h : header file
//
#pragma once
#include "afxcmn.h"
#include "afxwin.h"
// CSpecDlg dialog
class CSpecDlg : public CDialog
{
// Construction
public:
CSpecDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_SPEC_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 OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
virtual BOOL DestroyWindow();
CSliderCtrl m_BarTime;
CSliderCtrl m_PeakTime;
afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnClose();
afx_msg void OnDestroy();
CSliderCtrl m_Progress;
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnBnClickedStart();
afx_msg void OnBnClickedStop();
afx_msg void OnBnClicked3d();
afx_msg void OnBnClickedRbRecord();
afx_msg void OnBnClickedRbTest();
afx_msg void OnMove(int x, int y);
afx_msg void OnBnClickedStartstop();
};