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

  1. #if !defined(AFX_SENDFXDELAY_H__CA4353C6_39CB_4461_9907_B8F9909322B6__INCLUDED_)
  2. #define AFX_SENDFXDELAY_H__CA4353C6_39CB_4461_9907_B8F9909322B6__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // SendFxDelay.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSendFxDelay dialog
  12.  
  13. #include "EffectSlider1.h"
  14.  
  15. class isDelay;
  16.  
  17. class CSendFxDelay : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CSendFxDelay(CWnd* pParent = NULL);   // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CSendFxDelay)
  25.     enum { IDD = IDD_SENDFX_DELAY };
  26.         // NOTE: the ClassWizard will add data members here
  27.     //}}AFX_DATA
  28.  
  29.     void setDelay( isDelay *delay );
  30.     void update(void); // anropar DelayUpdate
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CSendFxDelay)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     CEffectSlider m_sliders[9];
  44.     isDelay *m_delay;
  45.  
  46.     // Generated message map functions
  47.     //{{AFX_MSG(CSendFxDelay)
  48.     virtual BOOL OnInitDialog();
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55.  
  56. #endif // !defined(AFX_SENDFXDELAY_H__CA4353C6_39CB_4461_9907_B8F9909322B6__INCLUDED_)
  57.