forked from mirror/openmw-tes3mp
adb49b7c7d
Example: local GUI_LISTBOX = 42 function OnPlayerSendMessage(pid, message) if message == "/lb" then local items = "consectetur adipiscing elit\nsed do eiusmod tempor incididunt ut labore\net dolore magna aliqua." -- items can be separated through newline local label = "Lorem ipsum dolor sit amet" tes3mp.ListBox(pid, GUI_LISTBOX, label, items) end end function OnGUIAction(pid, idGui, data) if idGui == GUI_LISTBOX then print("ID: " .. idGui .. " data: " .. tostring(data)) -- if value higher than last item id end end
32 lines
1.2 KiB
C++
32 lines
1.2 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},\
|
|
{"ListBox", GUIFunctions::ListBox},\
|
|
{"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;
|
|
|
|
static void ListBox(unsigned short pid, int id, const char *label, const char *items);
|
|
|
|
//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
|