EMessageBoxFlags.h 750 B

123456789101112131415161718192021222324252627282930313233343536
  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 IRR_E_MESSAGE_BOX_FLAGS_H_INCLUDED
  5. #define IRR_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