| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #pragma once
- #include "BsScriptEditorPrerequisites.h"
- #include "BsScriptGUIElement.h"
- namespace BansheeEngine
- {
- /**
- * @brief Interop class between C++ & CLR for GUISliderField.
- */
- class BS_SCR_BED_EXPORT ScriptGUISliderField : public TScriptGUIElement<ScriptGUISliderField>
- {
- public:
- SCRIPT_OBJ(EDITOR_ASSEMBLY, "BansheeEditor", "GUISliderField")
- private:
- ScriptGUISliderField(MonoObject* instance, GUISliderField* sliderField);
- /**
- * @brief Triggered when the value in the native slider field changes.
- *
- * @param instance Managed GUISliderField instance.
- * @param newValue New field value.
- */
- static void onChanged(MonoObject* instance, float newValue);
- /************************************************************************/
- /* CLR HOOKS */
- /************************************************************************/
- static void internal_createInstance(MonoObject* instance, float min, float max, MonoObject* title, UINT32 titleWidth,
- MonoString* style, MonoArray* guiOptions, bool withTitle);
- static float internal_getValue(ScriptGUISliderField* nativeInstance);
- static void internal_setValue(ScriptGUISliderField* nativeInstance, float value);
- static void internal_setTint(ScriptGUISliderField* nativeInstance, Color* color);
- static void internal_setRange(ScriptGUISliderField* nativeInstance, float min, float max);
- static void internal_setStep(ScriptGUISliderField* nativeInstance, float step);
- typedef void(__stdcall *OnChangedThunkDef) (MonoObject*, float, MonoException**);
- static OnChangedThunkDef onChangedThunk;
- };
- }
|