-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFilterDlg.h
More file actions
63 lines (53 loc) · 1.35 KB
/
FilterDlg.h
File metadata and controls
63 lines (53 loc) · 1.35 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#pragma once
#include "AddWinFctDlg.h"
#include "AddFilterDlg.h"
#include "afxwin.h"
// CFilterDlg dialog
class CFilterDlg : public CDialog
{
DECLARE_DYNAMIC(CFilterDlg)
public:
CFilterDlg(CWnd* pParent = NULL); // standard constructor
virtual ~CFilterDlg();
// Dialog Data
enum { IDD = IDD_DIALOG1 };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButton2();
CListBox m_ctlListBox;
afx_msg void OnBnClickedButton5();
void AddWindowToList(int WindowId);
void AddFilterToList( int* FilterProp );
afx_msg void OnBnClickedButtonAddFilter();
protected:
CEdit m_ctlEditFilterLen;
CEdit m_ctlEditFFTLen;
public:
afx_msg void OnEnChangeEditFilterLen();
CButton m_btAddWindowFct;
protected:
CButton m_btAddFilter;
public:
CButton m_btRemoveItem;
protected:
CButton m_btFilter;
int m_nFilterLen;
// //length of the Fast Fourier Transform
int m_nFFTLen;
public:
afx_msg void OnEnChangeEditFftLen();
protected:
// //a string containing the name of the input file
CString m_sInputFileName;
// //control for the Set Input File Button
CButton m_btSetInputFile;
CStatic m_ctlSignalInfoTextBox;
public:
afx_msg void OnBnClickedSetInputFile();
protected:
// //pointer to a vector that holds the input signal
double* m_vdInputSignal;
CEdit m_ctlInputFileEditBox;
};