#pragma once #include "BsScriptEnginePrerequisites.h" #include "BsScriptGUIElement.h" namespace BansheeEngine { /** * @brief Interop class between C++ & CLR for GUIToggle. */ class BS_SCR_BE_EXPORT ScriptGUIToggle : public TScriptGUIElement { public: SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "GUIToggle") private: ScriptGUIToggle(MonoObject* instance, GUIToggle* toggle); /** * @brief Triggered when the native toggle button is clicked. */ static void onClick(MonoObject* instance); /** * @brief Triggered when the native toggle button is hover over. */ static void onHover(MonoObject* instance); /** * @brief Triggered when the pointer leaves the native toggle button. */ static void onOut(MonoObject* instance); /** * @brief Triggered when the native toggle button is toggled. */ static void onToggled(MonoObject* instance, bool toggled); /** * @brief Triggers when the native toggle button is double-clicked. */ static void onDoubleClick(MonoObject* instance); /************************************************************************/ /* CLR HOOKS */ /************************************************************************/ static void internal_createInstance(MonoObject* instance, MonoObject* content, MonoObject* toggleGroup, MonoString* style, MonoArray* guiOptions); static void internal_setContent(ScriptGUIToggle* nativeInstance, MonoObject* content); static bool internal_getValue(ScriptGUIToggle* nativeInstance); static void internal_setValue(ScriptGUIToggle* nativeInstance, bool value); static void internal_setTint(ScriptGUIToggle* nativeInstance, Color color); typedef void (__stdcall *OnClickThunkDef) (MonoObject*, MonoException**); typedef void (__stdcall *OnHoverThunkDef) (MonoObject*, MonoException**); typedef void (__stdcall *OnOutThunkDef) (MonoObject*, MonoException**); typedef void (__stdcall *OnToggledThunkDef) (MonoObject*, bool toggled, MonoException**); typedef void(__stdcall *OnDoubleClickThunkDef) (MonoObject*, MonoException**); static OnClickThunkDef onClickThunk; static OnHoverThunkDef onHoverThunk; static OnOutThunkDef onOutThunk; static OnToggledThunkDef onToggledThunk; static OnDoubleClickThunkDef onDoubleClickThunk; }; }