mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
28 lines
1,001 B
C++
28 lines
1,001 B
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:
|
||
|
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
|