home *** CD-ROM | disk | FTP | other *** search
- // ModulatorNew.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "tracker.h"
- #include "ModulatorNew.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CModulatorNew dialog
-
-
- CModulatorNew::CModulatorNew(CWnd* pParent /*=NULL*/)
- : CDialog(CModulatorNew::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CModulatorNew)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
-
-
- void CModulatorNew::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CModulatorNew)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CModulatorNew, CDialog)
- //{{AFX_MSG_MAP(CModulatorNew)
- ON_BN_CLICKED(IDC_BUTTON_MODNEWENV, OnButtonModnewenv)
- ON_BN_CLICKED(IDC_BUTTON_MODNEWLFO, OnButtonModnewlfo)
- ON_BN_CLICKED(IDC_BUTTON_MODNEWCNTR, OnButtonModnewcntr)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CModulatorNew message handlers
-
- void CModulatorNew::OnButtonModnewenv()
- {
- // TODO: Add your control notification handler code here
-
- EndDialog (IDC_BUTTON_MODNEWENV);
- }
-
- void CModulatorNew::OnButtonModnewlfo()
- {
- // TODO: Add your control notification handler code here
- EndDialog (IDC_BUTTON_MODNEWLFO);
-
- }
-
- void CModulatorNew::OnButtonModnewcntr()
- {
- // TODO: Add your control notification handler code here
- EndDialog (IDC_BUTTON_MODNEWCNTR);
-
- }
-
- void CModulatorNew::OnCancel()
- {
- // TODO: Add extra cleanup here
-
- CDialog::OnCancel();
- }
-