home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / ModulatorNew.cpp < prev    next >
C/C++ Source or Header  |  2003-01-06  |  2KB  |  74 lines

  1. // ModulatorNew.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "tracker.h"
  6. #include "ModulatorNew.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CModulatorNew dialog
  16.  
  17.  
  18. CModulatorNew::CModulatorNew(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CModulatorNew::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CModulatorNew)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CModulatorNew::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialog::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CModulatorNew)
  31.         // NOTE: the ClassWizard will add DDX and DDV calls here
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35.  
  36. BEGIN_MESSAGE_MAP(CModulatorNew, CDialog)
  37.     //{{AFX_MSG_MAP(CModulatorNew)
  38.     ON_BN_CLICKED(IDC_BUTTON_MODNEWENV, OnButtonModnewenv)
  39.     ON_BN_CLICKED(IDC_BUTTON_MODNEWLFO, OnButtonModnewlfo)
  40.     ON_BN_CLICKED(IDC_BUTTON_MODNEWCNTR, OnButtonModnewcntr)
  41.     //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CModulatorNew message handlers
  46.  
  47. void CModulatorNew::OnButtonModnewenv() 
  48. {
  49.     // TODO: Add your control notification handler code here
  50.  
  51.   EndDialog (IDC_BUTTON_MODNEWENV);
  52. }
  53.  
  54. void CModulatorNew::OnButtonModnewlfo() 
  55. {
  56.     // TODO: Add your control notification handler code here
  57.   EndDialog (IDC_BUTTON_MODNEWLFO);
  58.   
  59. }
  60.  
  61. void CModulatorNew::OnButtonModnewcntr() 
  62. {
  63.     // TODO: Add your control notification handler code here
  64.   EndDialog (IDC_BUTTON_MODNEWCNTR);
  65.   
  66. }
  67.  
  68. void CModulatorNew::OnCancel() 
  69. {
  70.     // TODO: Add extra cleanup here
  71.     
  72.     CDialog::OnCancel();
  73. }
  74.