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.

38 lines
931 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: If you create a control bar, add its ID here. If you want to add it
  4. // to the View menu, you must make the menu ID the same as the value
  5. // you assign it here.
  6. //
  7. // $NoKeywords: $
  8. //=============================================================================//
  9. #ifndef CONTROLBARIDS_H
  10. #define CONTROLBARIDS_H
  11. #ifdef _WIN32
  12. #pragma once
  13. #endif
  14. enum
  15. {
  16. // Must be first!
  17. IDCB_FIRST = 0xE805,
  18. IDCB_TEXTUREBROWSER, // e806
  19. IDCB_FILTERCONTROL, // e807
  20. IDCB_OBJECTBAR, // e808
  21. IDCB_MAPTOOLSBAR, // e809
  22. IDCB_MAPVIEWBAR, // e80a
  23. IDCB_TEXTUREBAR, // e80b
  24. IDCB_MAPOPERATIONS, // e80c
  25. IDCB_ANIMATIONBAR, // e80d
  26. IDCB_DISPEDITTOOLBAR, // e80e
  27. IDCB_SELECT_MODE_BAR, // e80f
  28. IDCB_UNDO_REDO_BAR = 0xE810, // e810
  29. IDCB_MANIFEST_CONTROL, // e811
  30. // Must be last!
  31. IDCB_LAST
  32. };
  33. #endif // CONTROLBARIDS_H