EMessageBoxFlags.h 752 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Copyright (C) 2002-2012 Nikolaus Gebhardt
  2. // This file is part of the "Irrlicht Engine".
  3. // For conditions of distribution and use, see copyright notice in irrlicht.h
  4. #ifndef __E_MESSAGE_BOX_FLAGS_H_INCLUDED__
  5. #define __E_MESSAGE_BOX_FLAGS_H_INCLUDED__
  6. namespace irr
  7. {
  8. namespace gui
  9. {
  10. //! enumeration for message box layout flags
  11. enum EMESSAGE_BOX_FLAG
  12. {
  13. //! Flag for the OK button
  14. EMBF_OK = 0x1,
  15. //! Flag for the cancel button
  16. EMBF_CANCEL = 0x2,
  17. //! Flag for the yes button
  18. EMBF_YES = 0x4,
  19. //! Flag for the no button
  20. EMBF_NO = 0x8,
  21. //! This value is not used. It only forces this enumeration to compile in 32 bit.
  22. EMBF_FORCE_32BIT = 0x7fffffff
  23. };
  24. } // namespace gui
  25. } // namespace irr
  26. #endif