🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
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.

146 lines
4.7 KiB

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. #ifndef SDL_messagebox_h_
  19. #define SDL_messagebox_h_
  20. #include "SDL_stdinc.h"
  21. #include "SDL_video.h" /* For SDL_Window */
  22. #include "begin_code.h"
  23. /* Set up for C function definitions, even when using C++ */
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /**
  28. * \brief SDL_MessageBox flags. If supported will display warning icon, etc.
  29. */
  30. typedef enum
  31. {
  32. SDL_MESSAGEBOX_ERROR = 0x00000010, /**< error dialog */
  33. SDL_MESSAGEBOX_WARNING = 0x00000020, /**< warning dialog */
  34. SDL_MESSAGEBOX_INFORMATION = 0x00000040, /**< informational dialog */
  35. SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT = 0x00000080, /**< buttons placed left to right */
  36. SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT = 0x00000100 /**< buttons placed right to left */
  37. } SDL_MessageBoxFlags;
  38. /**
  39. * \brief Flags for SDL_MessageBoxButtonData.
  40. */
  41. typedef enum
  42. {
  43. SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT = 0x00000001, /**< Marks the default button when return is hit */
  44. SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT = 0x00000002 /**< Marks the default button when escape is hit */
  45. } SDL_MessageBoxButtonFlags;
  46. /**
  47. * \brief Individual button data.
  48. */
  49. typedef struct
  50. {
  51. Uint32 flags; /**< ::SDL_MessageBoxButtonFlags */
  52. int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */
  53. const char * text; /**< The UTF-8 button text */
  54. } SDL_MessageBoxButtonData;
  55. /**
  56. * \brief RGB value used in a message box color scheme
  57. */
  58. typedef struct
  59. {
  60. Uint8 r, g, b;
  61. } SDL_MessageBoxColor;
  62. typedef enum
  63. {
  64. SDL_MESSAGEBOX_COLOR_BACKGROUND,
  65. SDL_MESSAGEBOX_COLOR_TEXT,
  66. SDL_MESSAGEBOX_COLOR_BUTTON_BORDER,
  67. SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND,
  68. SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED,
  69. SDL_MESSAGEBOX_COLOR_MAX
  70. } SDL_MessageBoxColorType;
  71. /**
  72. * \brief A set of colors to use for message box dialogs
  73. */
  74. typedef struct
  75. {
  76. SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_MAX];
  77. } SDL_MessageBoxColorScheme;
  78. /**
  79. * \brief MessageBox structure containing title, text, window, etc.
  80. */
  81. typedef struct
  82. {
  83. Uint32 flags; /**< ::SDL_MessageBoxFlags */
  84. SDL_Window *window; /**< Parent window, can be NULL */
  85. const char *title; /**< UTF-8 title */
  86. const char *message; /**< UTF-8 message text */
  87. int numbuttons;
  88. const SDL_MessageBoxButtonData *buttons;
  89. const SDL_MessageBoxColorScheme *colorScheme; /**< ::SDL_MessageBoxColorScheme, can be NULL to use system settings */
  90. } SDL_MessageBoxData;
  91. /**
  92. * \brief Create a modal message box.
  93. *
  94. * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc.
  95. * \param buttonid The pointer to which user id of hit button should be copied.
  96. *
  97. * \return -1 on error, otherwise 0 and buttonid contains user id of button
  98. * hit or -1 if dialog was closed.
  99. *
  100. * \note This function should be called on the thread that created the parent
  101. * window, or on the main thread if the messagebox has no parent. It will
  102. * block execution of that thread until the user clicks a button or
  103. * closes the messagebox.
  104. */
  105. extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
  106. /**
  107. * \brief Create a simple modal message box
  108. *
  109. * \param flags ::SDL_MessageBoxFlags
  110. * \param title UTF-8 title text
  111. * \param message UTF-8 message text
  112. * \param window The parent window, or NULL for no parent
  113. *
  114. * \return 0 on success, -1 on error
  115. *
  116. * \sa SDL_ShowMessageBox
  117. */
  118. extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window);
  119. /* Ends C function definitions when using C++ */
  120. #ifdef __cplusplus
  121. }
  122. #endif
  123. #include "close_code.h"
  124. #endif /* SDL_messagebox_h_ */
  125. /* vi: set ts=4 sw=4 expandtab: */