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
1.3 KiB

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef LPRVWINDOW_H
  7. #define LPRVWINDOW_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #include "UtlVector.h"
  12. class CLightingPreviewResultsWindow : public CWnd
  13. {
  14. public:
  15. CLightingPreviewResultsWindow();
  16. virtual ~CLightingPreviewResultsWindow();
  17. void Create(CWnd *pParentWnd );
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CLightingPreviewResultsWindow)
  20. //}}AFX_VIRTUAL
  21. protected:
  22. //{{AFX_MSG(CLightingPreviewResultsWindow)
  23. afx_msg void OnPaint();
  24. afx_msg void OnClose();
  25. // afx_msg void OnSize(UINT nType, int cx, int cy);
  26. // afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  27. // afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  28. // afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  29. // afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  30. // afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  31. // afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  32. // afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint point);
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. #endif // LPRVWINDOW_H