My Project
Loading...
Searching...
No Matches
SDL_messagebox.h
1/*
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
4
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
8
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
12
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
20*/
21
22#ifndef SDL_messagebox_h_
23#define SDL_messagebox_h_
24
25#include "SDL_stdinc.h"
26#include "SDL_video.h" /* For SDL_Window */
27
28#include "begin_code.h"
29/* Set up for C function definitions, even when using C++ */
30#ifdef __cplusplus
31extern "C" {
32#endif
33
37typedef enum
38{
39 SDL_MESSAGEBOX_ERROR = 0x00000010,
40 SDL_MESSAGEBOX_WARNING = 0x00000020,
41 SDL_MESSAGEBOX_INFORMATION = 0x00000040,
42 SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT = 0x00000080,
43 SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT = 0x00000100
44} SDL_MessageBoxFlags;
45
49typedef enum
50{
51 SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT = 0x00000001,
52 SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT = 0x00000002
53} SDL_MessageBoxButtonFlags;
54
58typedef struct
59{
60 Uint32 flags;
62 const char * text;
64
68typedef struct
69{
70 Uint8 r, g, b;
72
73typedef enum
74{
75 SDL_MESSAGEBOX_COLOR_BACKGROUND,
76 SDL_MESSAGEBOX_COLOR_TEXT,
77 SDL_MESSAGEBOX_COLOR_BUTTON_BORDER,
78 SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND,
79 SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED,
80 SDL_MESSAGEBOX_COLOR_MAX
81} SDL_MessageBoxColorType;
82
86typedef struct
87{
88 SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_MAX];
90
94typedef struct
95{
96 Uint32 flags;
98 const char *title;
99 const char *message;
101 int numbuttons;
102 const SDL_MessageBoxButtonData *buttons;
103
106
140extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
141
182extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window);
183
184
185/* Ends C function definitions when using C++ */
186#ifdef __cplusplus
187}
188#endif
189#include "close_code.h"
190
191#endif /* SDL_messagebox_h_ */
192
193/* vi: set ts=4 sw=4 expandtab: */
struct SDL_Window SDL_Window
The type used to identify a window.
Definition: SDL_video.h:95
Definition: SDL_messagebox.h:59
Uint32 flags
Definition: SDL_messagebox.h:60
int buttonid
Definition: SDL_messagebox.h:61
const char * text
Definition: SDL_messagebox.h:62
Definition: SDL_messagebox.h:69
Definition: SDL_messagebox.h:87
Definition: SDL_messagebox.h:95
Uint32 flags
Definition: SDL_messagebox.h:96
const char * message
Definition: SDL_messagebox.h:99
const char * title
Definition: SDL_messagebox.h:98
SDL_Window * window
Definition: SDL_messagebox.h:97
const SDL_MessageBoxColorScheme * colorScheme
Definition: SDL_messagebox.h:104