dxx-rebirth/common/arch/win32/messagebox.cpp
Kp 12b57e84e6 Switch most in-tree http:// links to https://
For each link given as http://, verify that the site is accessible over
https:// and, if so, switch to it.  These domains were converted:

* llvm.org
* clang.llvm.org
* en.cppreference.com
* www.dxx-rebirth.com
* www.libsdl.org
* www.scons.org
2018-09-02 00:57:29 +00:00

60 lines
1.3 KiB
C++

/*
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
/*
* messagebox.c
* d1x-rebirth
*
* Display an error or warning messagebox using the OS's window server.
*
*/
#include <windows.h>
#include "window.h"
#include "event.h"
#include "messagebox.h"
namespace dcx {
static void display_win32_alert(const char *message, int error)
{
window *wind;
// Handle Descent's windows properly
if ((wind = window_get_front()))
{
const d_event event{EVENT_WINDOW_DEACTIVATED};
WINDOW_SEND_EVENT(wind);
}
int fullscreen = (grd_curscreen && gr_check_fullscreen());
if (fullscreen)
gr_toggle_fullscreen();
MessageBox(NULL, message, error?"Sorry, a critical error has occurred.":"Attention!", error?MB_OK|MB_ICONERROR:MB_OK|MB_ICONWARNING);
if ((wind = window_get_front()))
{
const d_event event{EVENT_WINDOW_ACTIVATED};
WINDOW_SEND_EVENT(wind);
}
if (!error && fullscreen)
gr_toggle_fullscreen();
}
void msgbox_warning(const char *message)
{
display_win32_alert(message, 0);
}
void msgbox_error(const char *message)
{
display_win32_alert(message, 1);
}
}