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.

47 lines
985 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // OPTView2D.h : header file
  9. //
  10. /////////////////////////////////////////////////////////////////////////////
  11. // COPTView2D dialog
  12. class COPTView2D : public CPropertyPage
  13. {
  14. DECLARE_DYNCREATE(COPTView2D)
  15. // Construction
  16. public:
  17. COPTView2D();
  18. ~COPTView2D();
  19. // Dialog Data
  20. //{{AFX_DATA(COPTView2D)
  21. enum { IDD = IDD_OPTIONS_2D };
  22. CSliderCtrl m_cGridIntensity;
  23. //}}AFX_DATA
  24. // Overrides
  25. // ClassWizard generate virtual function overrides
  26. //{{AFX_VIRTUAL(COPTView2D)
  27. public:
  28. virtual BOOL OnApply();
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(COPTView2D)
  36. virtual BOOL OnInitDialog();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };