| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #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<ScriptGUIToggle>
- {
- 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;
- };
- }
|