Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
971 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef FADEDLG_H
  8. #define FADEDLG_H
  9. #pragma once
  10. #include "resource.h"
  11. #include "IconComboBox.h"
  12. //=============================================================================
  13. //
  14. // Fade Create Dialog
  15. //
  16. class CFadeDlg : public CDialog
  17. {
  18. public:
  19. CFadeDlg( CWnd *pParent = NULL );
  20. //{{AFX_DATA( CFadeDlg )
  21. enum { IDD = IDD_FADE_DIALOG };
  22. unsigned int m_nFadeMode;
  23. //}}AFX_DATA
  24. virtual BOOL OnInitDialog();
  25. //{{AFX_VIRTUAL( CFadeDlg )
  26. //}}AFX_VIRTUAL
  27. protected:
  28. //{{AFX_MSG( CFadeDlg )
  29. afx_msg void OnButtonFadeLow( void );
  30. afx_msg void OnButtonFadeMed( void );
  31. afx_msg void OnButtonFadeHigh( void );
  32. afx_msg void OnButtonFade360( void );
  33. afx_msg void OnButtonFadeLevel( void );
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. #endif // FADEDLG_H