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.

43 lines
891 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef SELECTMODEDLGBAR_H
  8. #define SELECTMODEDLGBAR_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "resource.h"
  13. #include "GroupList.h"
  14. #include "HammerBar.h"
  15. class CSelectModeDlgBar : public CHammerBar
  16. {
  17. public:
  18. BOOL Create(CWnd *pParentWnd);
  19. private:
  20. //{{AFX_DATA(CFilterControl)
  21. enum { IDD = IDD_SELECT_MODE_BAR };
  22. //}}AFX_DATA
  23. protected:
  24. //{{AFX_MSG(CFilterControl)
  25. afx_msg void OnGroups();
  26. afx_msg void OnObjects();
  27. afx_msg void OnSolids();
  28. afx_msg void UpdateControlGroups(CCmdUI *pCmdUI);
  29. afx_msg void UpdateControlObjects(CCmdUI *pCmdUI);
  30. afx_msg void UpdateControlSolids(CCmdUI *pCmdUI);
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. #endif // SELECTMODEDLGBAR_H