mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 12:49:56 +00:00
29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
//
|
|
// Created by koncord on 30.08.16.
|
|
//
|
|
|
|
#ifndef OPENMW_GUI_HPP
|
|
#define OPENMW_GUI_HPP
|
|
|
|
#define GUIFUNCTIONS \
|
|
{"MessageBox", GUIFunctions::_MessageBox},\
|
|
{"CustomMessageBox", GUIFunctions::CustomMessageBox},\
|
|
{"InputDialog", GUIFunctions::InputDialog},\
|
|
{"SetMapVisibility", GUIFunctions::SetMapVisibility},\
|
|
{"SetMapVisibilityAll", GUIFunctions::SetMapVisibilityAll}\
|
|
|
|
class GUIFunctions
|
|
{
|
|
public:
|
|
/* Do not rename into MessageBox to not conflict with WINAPI's MessageBox */
|
|
static void _MessageBox(unsigned short pid, int id, const char *label) noexcept;
|
|
|
|
static void CustomMessageBox(unsigned short pid, int id, const char *label, const char *buttons) noexcept;
|
|
static void InputDialog(unsigned short pid, int id, const char *label) noexcept;
|
|
|
|
//state 0 - disallow, 1 - allow
|
|
static void SetMapVisibility(unsigned short targetPID, unsigned short affectedPID, unsigned short state) noexcept;
|
|
static void SetMapVisibilityAll(unsigned short targetPID, unsigned short state) noexcept;
|
|
};
|
|
|
|
#endif //OPENMW_GUI_HPP
|