BsScriptFontBitmap.generated.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "BsScriptObject.h"
  4. namespace bs
  5. {
  6. struct __CharDescInterop;
  7. struct FontBitmap;
  8. class BS_SCR_BE_EXPORT ScriptFontBitmap : public ScriptObject<ScriptFontBitmap>
  9. {
  10. public:
  11. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "FontBitmap")
  12. ScriptFontBitmap(MonoObject* managedInstance, const SPtr<FontBitmap>& value);
  13. SPtr<FontBitmap> getInternal() const { return mInternal; }
  14. static MonoObject* create(const SPtr<FontBitmap>& value);
  15. private:
  16. SPtr<FontBitmap> mInternal;
  17. static void Internal_getCharDesc(ScriptFontBitmap* thisPtr, uint32_t charId, __CharDescInterop* __output);
  18. static uint32_t Internal_getsize(ScriptFontBitmap* thisPtr);
  19. static void Internal_setsize(ScriptFontBitmap* thisPtr, uint32_t value);
  20. static int32_t Internal_getbaselineOffset(ScriptFontBitmap* thisPtr);
  21. static void Internal_setbaselineOffset(ScriptFontBitmap* thisPtr, int32_t value);
  22. static uint32_t Internal_getlineHeight(ScriptFontBitmap* thisPtr);
  23. static void Internal_setlineHeight(ScriptFontBitmap* thisPtr, uint32_t value);
  24. static void Internal_getmissingGlyph(ScriptFontBitmap* thisPtr, __CharDescInterop* __output);
  25. static void Internal_setmissingGlyph(ScriptFontBitmap* thisPtr, __CharDescInterop* value);
  26. static uint32_t Internal_getspaceWidth(ScriptFontBitmap* thisPtr);
  27. static void Internal_setspaceWidth(ScriptFontBitmap* thisPtr, uint32_t value);
  28. static MonoArray* Internal_gettexturePages(ScriptFontBitmap* thisPtr);
  29. static void Internal_settexturePages(ScriptFontBitmap* thisPtr, MonoArray* value);
  30. };
  31. }