Generated_Members_Tn_Tz.cpp 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951
  1. // DO NOT EDIT. This file is generated
  2. #include "../Precompiled.h"
  3. #include "../AngelScript/APITemplates.h"
  4. #include "../Graphics/RibbonTrail.h"
  5. #include "../Input/Input.h"
  6. #ifdef URHO3D_PHYSICS
  7. #include "../Physics/CollisionShape.h"
  8. #endif
  9. #include "../UI/ToolTip.h"
  10. #include "../AngelScript/Manual.h"
  11. namespace Urho3D
  12. {
  13. void FakeAddRef(void* ptr);
  14. void FakeReleaseRef(void* ptr);
  15. // const Vector<SharedPtr<UIElement>>& UIElement::GetChildren() const | File: ../UI/UIElement.h
  16. static CScriptArray* ToolTip_GetChildren_void(ToolTip* ptr)
  17. {
  18. const Vector<SharedPtr<UIElement>>& result = ptr->GetChildren();
  19. return VectorToHandleArray(result, "Array<UIElement@>");
  20. }
  21. // PODVector<UIElement*> UIElement::GetChildren(bool recursive) const | File: ../UI/UIElement.h
  22. static CScriptArray* ToolTip_GetChildren_bool(ToolTip* ptr, bool recursive)
  23. {
  24. PODVector<UIElement*> result = ptr->GetChildren(recursive);
  25. return VectorToHandleArray(result, "Array<UIElement@>");
  26. }
  27. // PODVector<UIElement*> UIElement::GetChildrenWithTag(const String& tag, bool recursive=false) const | File: ../UI/UIElement.h
  28. static CScriptArray* ToolTip_GetChildrenWithTag_String_bool(ToolTip* ptr, const String& tag, bool recursive)
  29. {
  30. PODVector<UIElement*> result = ptr->GetChildrenWithTag(tag, recursive);
  31. return VectorToHandleArray(result, "Array<UIElement@>");
  32. }
  33. // const StringVector& UIElement::GetTags() const | File: ../UI/UIElement.h
  34. static CScriptArray* ToolTip_GetTags_void(ToolTip* ptr)
  35. {
  36. const StringVector& result = ptr->GetTags();
  37. return VectorToArray<String>(result, "Array<String>");
  38. }
  39. // explicit ToolTip::ToolTip(Context* context) | File: ../UI/ToolTip.h
  40. static ToolTip* ToolTip_ToolTip_Context()
  41. {
  42. return new ToolTip(GetScriptContext());
  43. }
  44. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  45. static void ToolTip_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool(ToolTip* ptr, CScriptArray* exceptions, bool onlyUserData)
  46. {
  47. PODVector<StringHash> param0 = ArrayToPODVector<StringHash>(exceptions);
  48. ptr->UnsubscribeFromAllEventsExcept(param0, onlyUserData);
  49. }
  50. // TrailPoint::TrailPoint(const Vector3& position, const Vector3& forward) | File: ../Graphics/RibbonTrail.h
  51. static void TrailPoint_TrailPoint_Vector3_Vector3(TrailPoint* ptr, const Vector3 &position, const Vector3 &forward)
  52. {
  53. new(ptr) TrailPoint(position, forward);
  54. }
  55. // TrailPoint::~TrailPoint() | Implicitly-declared
  56. static void TrailPoint_Destructor(TrailPoint* ptr)
  57. {
  58. ptr->~TrailPoint();
  59. }
  60. #ifdef URHO3D_PHYSICS
  61. // TriangleMeshData::TriangleMeshData(Model* model, unsigned lodLevel) | File: ../Physics/CollisionShape.h
  62. static TriangleMeshData* TriangleMeshData_TriangleMeshData_Model_unsigned(Model *model, unsigned lodLevel)
  63. {
  64. return new TriangleMeshData(model, lodLevel);
  65. }
  66. #endif
  67. #ifdef URHO3D_PHYSICS
  68. // explicit TriangleMeshData::TriangleMeshData(CustomGeometry* custom) | File: ../Physics/CollisionShape.h
  69. static TriangleMeshData* TriangleMeshData_TriangleMeshData_CustomGeometry(CustomGeometry *custom)
  70. {
  71. return new TriangleMeshData(custom);
  72. }
  73. #endif
  74. void ASRegisterGenerated_Members_Tn_Tz(asIScriptEngine* engine)
  75. {
  76. // void ToolTip::AddAltTarget(UIElement* target) | File: ../UI/ToolTip.h
  77. engine->RegisterObjectMethod("ToolTip", "void AddAltTarget(UIElement@+)", asMETHODPR(ToolTip, AddAltTarget, (UIElement*), void), asCALL_THISCALL);
  78. // void UIElement::AddChild(UIElement* element) | File: ../UI/UIElement.h
  79. engine->RegisterObjectMethod("ToolTip", "void AddChild(UIElement@+)", asMETHODPR(ToolTip, AddChild, (UIElement*), void), asCALL_THISCALL);
  80. // void RefCounted::AddRef() | File: ../Container/RefCounted.h
  81. engine->RegisterObjectBehaviour("ToolTip", asBEHAVE_ADDREF, "void f()", asMETHODPR(ToolTip, AddRef, (), void), asCALL_THISCALL);
  82. // void UIElement::AddTag(const String& tag) | File: ../UI/UIElement.h
  83. engine->RegisterObjectMethod("ToolTip", "void AddTag(const String&in)", asMETHODPR(ToolTip, AddTag, (const String&), void), asCALL_THISCALL);
  84. // void UIElement::AddTags(const String& tags, char separator=';') | File: ../UI/UIElement.h
  85. engine->RegisterObjectMethod("ToolTip", "void AddTags(const String&in, int8 = ';')", asMETHODPR(ToolTip, AddTags, (const String&, char), void), asCALL_THISCALL);
  86. // void UIElement::AddTags(const StringVector& tags) | File: ../UI/UIElement.h
  87. // Error: type "const StringVector&" can not automatically bind
  88. // void UIElement::AdjustScissor(IntRect& currentScissor) | File: ../UI/UIElement.h
  89. engine->RegisterObjectMethod("ToolTip", "void AdjustScissor(IntRect&)", asMETHODPR(ToolTip, AdjustScissor, (IntRect&), void), asCALL_THISCALL);
  90. // void Serializable::AllocateNetworkState() | File: ../Scene/Serializable.h
  91. engine->RegisterObjectMethod("ToolTip", "void AllocateNetworkState()", asMETHODPR(ToolTip, AllocateNetworkState, (), void), asCALL_THISCALL);
  92. // void UIElement::ApplyAttributes() override | File: ../UI/UIElement.h
  93. engine->RegisterObjectMethod("ToolTip", "void ApplyAttributes()", asMETHODPR(ToolTip, ApplyAttributes, (), void), asCALL_THISCALL);
  94. // void UIElement::BringToFront() | File: ../UI/UIElement.h
  95. engine->RegisterObjectMethod("ToolTip", "void BringToFront()", asMETHODPR(ToolTip, BringToFront, (), void), asCALL_THISCALL);
  96. // template<typename T> T* Object::Cast() | File: ../Core/Object.h
  97. // Not registered because template
  98. // template<typename T> const T* Object::Cast() const | File: ../Core/Object.h
  99. // Not registered because template
  100. // UIElement* UIElement::CreateChild(StringHash type, const String& name=String::EMPTY, unsigned index=M_MAX_UNSIGNED) | File: ../UI/UIElement.h
  101. engine->RegisterObjectMethod("ToolTip", "UIElement@+ CreateChild(StringHash, const String&in = String::EMPTY, uint = M_MAX_UNSIGNED)", asMETHODPR(ToolTip, CreateChild, (StringHash, const String&, unsigned), UIElement*), asCALL_THISCALL);
  102. // template<class T> T* UIElement::CreateChild(const String& name=String::EMPTY, unsigned index=M_MAX_UNSIGNED) | File: ../UI/UIElement.h
  103. // Not registered because template
  104. // void UIElement::DisableLayoutUpdate() | File: ../UI/UIElement.h
  105. engine->RegisterObjectMethod("ToolTip", "void DisableLayoutUpdate()", asMETHODPR(ToolTip, DisableLayoutUpdate, (), void), asCALL_THISCALL);
  106. // virtual IntVector2 UIElement::ElementToScreen(const IntVector2& position) | File: ../UI/UIElement.h
  107. engine->RegisterObjectMethod("ToolTip", "IntVector2 ElementToScreen(const IntVector2&in)", asMETHODPR(ToolTip, ElementToScreen, (const IntVector2&), IntVector2), asCALL_THISCALL);
  108. // void UIElement::EnableLayoutUpdate() | File: ../UI/UIElement.h
  109. engine->RegisterObjectMethod("ToolTip", "void EnableLayoutUpdate()", asMETHODPR(ToolTip, EnableLayoutUpdate, (), void), asCALL_THISCALL);
  110. // bool UIElement::FilterAttributes(XMLElement& dest) const | File: ../UI/UIElement.h
  111. engine->RegisterObjectMethod("ToolTip", "bool FilterAttributes(XMLElement&) const", asMETHODPR(ToolTip, FilterAttributes, (XMLElement&) const, bool), asCALL_THISCALL);
  112. // unsigned UIElement::FindChild(UIElement* element) const | File: ../UI/UIElement.h
  113. engine->RegisterObjectMethod("ToolTip", "uint FindChild(UIElement@+) const", asMETHODPR(ToolTip, FindChild, (UIElement*) const, unsigned), asCALL_THISCALL);
  114. // bool Animatable::GetAnimationEnabled() const | File: ../Scene/Animatable.h
  115. engine->RegisterObjectMethod("ToolTip", "bool GetAnimationEnabled() const", asMETHODPR(ToolTip, GetAnimationEnabled, () const, bool), asCALL_THISCALL);
  116. engine->RegisterObjectMethod("ToolTip", "bool get_animationEnabled() const", asMETHODPR(ToolTip, GetAnimationEnabled, () const, bool), asCALL_THISCALL);
  117. // const String& UIElement::GetAppliedStyle() const | File: ../UI/UIElement.h
  118. engine->RegisterObjectMethod("ToolTip", "const String& GetAppliedStyle() const", asMETHODPR(ToolTip, GetAppliedStyle, () const, const String&), asCALL_THISCALL);
  119. engine->RegisterObjectMethod("ToolTip", "const String& get_style() const", asMETHODPR(ToolTip, GetAppliedStyle, () const, const String&), asCALL_THISCALL);
  120. // Variant Serializable::GetAttribute(unsigned index) const | File: ../Scene/Serializable.h
  121. engine->RegisterObjectMethod("ToolTip", "Variant GetAttribute(uint) const", asMETHODPR(ToolTip, GetAttribute, (unsigned) const, Variant), asCALL_THISCALL);
  122. engine->RegisterObjectMethod("ToolTip", "Variant get_attributes(uint) const", asMETHODPR(ToolTip, GetAttribute, (unsigned) const, Variant), asCALL_THISCALL);
  123. // Variant Serializable::GetAttribute(const String& name) const | File: ../Scene/Serializable.h
  124. engine->RegisterObjectMethod("ToolTip", "Variant GetAttribute(const String&in) const", asMETHODPR(ToolTip, GetAttribute, (const String&) const, Variant), asCALL_THISCALL);
  125. // ValueAnimation* Animatable::GetAttributeAnimation(const String& name) const | File: ../Scene/Animatable.h
  126. engine->RegisterObjectMethod("ToolTip", "ValueAnimation@+ GetAttributeAnimation(const String&in) const", asMETHODPR(ToolTip, GetAttributeAnimation, (const String&) const, ValueAnimation*), asCALL_THISCALL);
  127. // float Animatable::GetAttributeAnimationSpeed(const String& name) const | File: ../Scene/Animatable.h
  128. engine->RegisterObjectMethod("ToolTip", "float GetAttributeAnimationSpeed(const String&in) const", asMETHODPR(ToolTip, GetAttributeAnimationSpeed, (const String&) const, float), asCALL_THISCALL);
  129. // float Animatable::GetAttributeAnimationTime(const String& name) const | File: ../Scene/Animatable.h
  130. engine->RegisterObjectMethod("ToolTip", "float GetAttributeAnimationTime(const String&in) const", asMETHODPR(ToolTip, GetAttributeAnimationTime, (const String&) const, float), asCALL_THISCALL);
  131. // WrapMode Animatable::GetAttributeAnimationWrapMode(const String& name) const | File: ../Scene/Animatable.h
  132. engine->RegisterObjectMethod("ToolTip", "WrapMode GetAttributeAnimationWrapMode(const String&in) const", asMETHODPR(ToolTip, GetAttributeAnimationWrapMode, (const String&) const, WrapMode), asCALL_THISCALL);
  133. // Variant Serializable::GetAttributeDefault(unsigned index) const | File: ../Scene/Serializable.h
  134. engine->RegisterObjectMethod("ToolTip", "Variant GetAttributeDefault(uint) const", asMETHODPR(ToolTip, GetAttributeDefault, (unsigned) const, Variant), asCALL_THISCALL);
  135. engine->RegisterObjectMethod("ToolTip", "Variant get_attributeDefaults(uint) const", asMETHODPR(ToolTip, GetAttributeDefault, (unsigned) const, Variant), asCALL_THISCALL);
  136. // Variant Serializable::GetAttributeDefault(const String& name) const | File: ../Scene/Serializable.h
  137. engine->RegisterObjectMethod("ToolTip", "Variant GetAttributeDefault(const String&in) const", asMETHODPR(ToolTip, GetAttributeDefault, (const String&) const, Variant), asCALL_THISCALL);
  138. // virtual const Vector<AttributeInfo>* Serializable::GetAttributes() const | File: ../Scene/Serializable.h
  139. // Error: type "const Vector<AttributeInfo>*" can not automatically bind
  140. // virtual void UIElement::GetBatches(PODVector<UIBatch>& batches, PODVector<float>& vertexData, const IntRect& currentScissor) | File: ../UI/UIElement.h
  141. // Error: type "PODVector<UIBatch>&" can not automatically bind
  142. // void UIElement::GetBatchesWithOffset(IntVector2& offset, PODVector<UIBatch>& batches, PODVector<float>& vertexData, IntRect currentScissor) | File: ../UI/UIElement.h
  143. // Error: type "PODVector<UIBatch>&" can not automatically bind
  144. // bool Object::GetBlockEvents() const | File: ../Core/Object.h
  145. engine->RegisterObjectMethod("ToolTip", "bool GetBlockEvents() const", asMETHODPR(ToolTip, GetBlockEvents, () const, bool), asCALL_THISCALL);
  146. // bool UIElement::GetBringToBack() const | File: ../UI/UIElement.h
  147. engine->RegisterObjectMethod("ToolTip", "bool GetBringToBack() const", asMETHODPR(ToolTip, GetBringToBack, () const, bool), asCALL_THISCALL);
  148. engine->RegisterObjectMethod("ToolTip", "bool get_bringToBack() const", asMETHODPR(ToolTip, GetBringToBack, () const, bool), asCALL_THISCALL);
  149. // bool UIElement::GetBringToFront() const | File: ../UI/UIElement.h
  150. engine->RegisterObjectMethod("ToolTip", "bool GetBringToFront() const", asMETHODPR(ToolTip, GetBringToFront, () const, bool), asCALL_THISCALL);
  151. engine->RegisterObjectMethod("ToolTip", "bool get_bringToFront() const", asMETHODPR(ToolTip, GetBringToFront, () const, bool), asCALL_THISCALL);
  152. // const String& Object::GetCategory() const | File: ../Core/Object.h
  153. engine->RegisterObjectMethod("ToolTip", "const String& GetCategory() const", asMETHODPR(ToolTip, GetCategory, () const, const String&), asCALL_THISCALL);
  154. engine->RegisterObjectMethod("ToolTip", "const String& get_category() const", asMETHODPR(ToolTip, GetCategory, () const, const String&), asCALL_THISCALL);
  155. // UIElement* UIElement::GetChild(unsigned index) const | File: ../UI/UIElement.h
  156. engine->RegisterObjectMethod("ToolTip", "UIElement@+ GetChild(uint) const", asMETHODPR(ToolTip, GetChild, (unsigned) const, UIElement*), asCALL_THISCALL);
  157. engine->RegisterObjectMethod("ToolTip", "UIElement@+ get_children(uint) const", asMETHODPR(ToolTip, GetChild, (unsigned) const, UIElement*), asCALL_THISCALL);
  158. // UIElement* UIElement::GetChild(const String& name, bool recursive=false) const | File: ../UI/UIElement.h
  159. engine->RegisterObjectMethod("ToolTip", "UIElement@+ GetChild(const String&in, bool = false) const", asMETHODPR(ToolTip, GetChild, (const String&, bool) const, UIElement*), asCALL_THISCALL);
  160. // UIElement* UIElement::GetChild(const StringHash& key, const Variant& value=Variant::EMPTY, bool recursive=false) const | File: ../UI/UIElement.h
  161. engine->RegisterObjectMethod("ToolTip", "UIElement@+ GetChild(const StringHash&in, const Variant&in = Variant::EMPTY, bool = false) const", asMETHODPR(ToolTip, GetChild, (const StringHash&, const Variant&, bool) const, UIElement*), asCALL_THISCALL);
  162. // template<class T> T* UIElement::GetChildDynamicCast(unsigned index) const | File: ../UI/UIElement.h
  163. // Not registered because template
  164. // template<class T> T* UIElement::GetChildDynamicCast(const String& name, bool recursive=false) const | File: ../UI/UIElement.h
  165. // Not registered because template
  166. // template<class T> T* UIElement::GetChildDynamicCast(const StringHash& key, const Variant& value=Variant::EMPTY, bool recursive=false) const | File: ../UI/UIElement.h
  167. // Not registered because template
  168. // const IntVector2& UIElement::GetChildOffset() const | File: ../UI/UIElement.h
  169. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetChildOffset() const", asMETHODPR(ToolTip, GetChildOffset, () const, const IntVector2&), asCALL_THISCALL);
  170. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_childOffset() const", asMETHODPR(ToolTip, GetChildOffset, () const, const IntVector2&), asCALL_THISCALL);
  171. // const Vector<SharedPtr<UIElement>>& UIElement::GetChildren() const | File: ../UI/UIElement.h
  172. engine->RegisterObjectMethod("ToolTip", "Array<UIElement@>@ GetChildren() const", asFUNCTION(ToolTip_GetChildren_void), asCALL_CDECL_OBJFIRST);
  173. // void UIElement::GetChildren(PODVector<UIElement*>& dest, bool recursive=false) const | File: ../UI/UIElement.h
  174. // Error: type "PODVector<UIElement*>&" can not automatically bind
  175. // PODVector<UIElement*> UIElement::GetChildren(bool recursive) const | File: ../UI/UIElement.h
  176. engine->RegisterObjectMethod("ToolTip", "Array<UIElement@>@ GetChildren(bool) const", asFUNCTION(ToolTip_GetChildren_bool), asCALL_CDECL_OBJFIRST);
  177. // void UIElement::GetChildrenWithTag(PODVector<UIElement*>& dest, const String& tag, bool recursive=false) const | File: ../UI/UIElement.h
  178. // Error: type "PODVector<UIElement*>&" can not automatically bind
  179. // PODVector<UIElement*> UIElement::GetChildrenWithTag(const String& tag, bool recursive=false) const | File: ../UI/UIElement.h
  180. engine->RegisterObjectMethod("ToolTip", "Array<UIElement@>@ GetChildrenWithTag(const String&in, bool = false) const", asFUNCTION(ToolTip_GetChildrenWithTag_String_bool), asCALL_CDECL_OBJFIRST);
  181. // template<class T> T* UIElement::GetChildStaticCast(unsigned index) const | File: ../UI/UIElement.h
  182. // Not registered because template
  183. // template<class T> T* UIElement::GetChildStaticCast(const String& name, bool recursive=false) const | File: ../UI/UIElement.h
  184. // Not registered because template
  185. // template<class T> T* UIElement::GetChildStaticCast(const StringHash& key, const Variant& value=Variant::EMPTY, bool recursive=false) const | File: ../UI/UIElement.h
  186. // Not registered because template
  187. // const IntRect& UIElement::GetClipBorder() const | File: ../UI/UIElement.h
  188. engine->RegisterObjectMethod("ToolTip", "const IntRect& GetClipBorder() const", asMETHODPR(ToolTip, GetClipBorder, () const, const IntRect&), asCALL_THISCALL);
  189. engine->RegisterObjectMethod("ToolTip", "const IntRect& get_clipBorder() const", asMETHODPR(ToolTip, GetClipBorder, () const, const IntRect&), asCALL_THISCALL);
  190. // bool UIElement::GetClipChildren() const | File: ../UI/UIElement.h
  191. engine->RegisterObjectMethod("ToolTip", "bool GetClipChildren() const", asMETHODPR(ToolTip, GetClipChildren, () const, bool), asCALL_THISCALL);
  192. engine->RegisterObjectMethod("ToolTip", "bool get_clipChildren() const", asMETHODPR(ToolTip, GetClipChildren, () const, bool), asCALL_THISCALL);
  193. // const Color& UIElement::GetColor(Corner corner) const | File: ../UI/UIElement.h
  194. engine->RegisterObjectMethod("ToolTip", "const Color& GetColor(Corner) const", asMETHODPR(ToolTip, GetColor, (Corner) const, const Color&), asCALL_THISCALL);
  195. engine->RegisterObjectMethod("ToolTip", "const Color& get_colors(Corner) const", asMETHODPR(ToolTip, GetColor, (Corner) const, const Color&), asCALL_THISCALL);
  196. // const Color& UIElement::GetColorAttr() const | File: ../UI/UIElement.h
  197. engine->RegisterObjectMethod("ToolTip", "const Color& GetColorAttr() const", asMETHODPR(ToolTip, GetColorAttr, () const, const Color&), asCALL_THISCALL);
  198. // IntRect UIElement::GetCombinedScreenRect() | File: ../UI/UIElement.h
  199. engine->RegisterObjectMethod("ToolTip", "IntRect GetCombinedScreenRect()", asMETHODPR(ToolTip, GetCombinedScreenRect, (), IntRect), asCALL_THISCALL);
  200. engine->RegisterObjectMethod("ToolTip", "IntRect get_combinedScreenRect()", asMETHODPR(ToolTip, GetCombinedScreenRect, (), IntRect), asCALL_THISCALL);
  201. // Context* Object::GetContext() const | File: ../Core/Object.h
  202. // Error: type "Context*" can not be returned
  203. // virtual void UIElement::GetDebugDrawBatches(PODVector<UIBatch>& batches, PODVector<float>& vertexData, const IntRect& currentScissor) | File: ../UI/UIElement.h
  204. // Error: type "PODVector<UIBatch>&" can not automatically bind
  205. // XMLFile* UIElement::GetDefaultStyle(bool recursiveUp=true) const | File: ../UI/UIElement.h
  206. engine->RegisterObjectMethod("ToolTip", "XMLFile@+ GetDefaultStyle(bool = true) const", asMETHODPR(ToolTip, GetDefaultStyle, (bool) const, XMLFile*), asCALL_THISCALL);
  207. // float ToolTip::GetDelay() const | File: ../UI/ToolTip.h
  208. engine->RegisterObjectMethod("ToolTip", "float GetDelay() const", asMETHODPR(ToolTip, GetDelay, () const, float), asCALL_THISCALL);
  209. engine->RegisterObjectMethod("ToolTip", "float get_delay() const", asMETHODPR(ToolTip, GetDelay, () const, float), asCALL_THISCALL);
  210. // const Color& UIElement::GetDerivedColor() const | File: ../UI/UIElement.h
  211. engine->RegisterObjectMethod("ToolTip", "const Color& GetDerivedColor() const", asMETHODPR(ToolTip, GetDerivedColor, () const, const Color&), asCALL_THISCALL);
  212. // float UIElement::GetDerivedOpacity() const | File: ../UI/UIElement.h
  213. engine->RegisterObjectMethod("ToolTip", "float GetDerivedOpacity() const", asMETHODPR(ToolTip, GetDerivedOpacity, () const, float), asCALL_THISCALL);
  214. engine->RegisterObjectMethod("ToolTip", "float get_derivedOpacity() const", asMETHODPR(ToolTip, GetDerivedOpacity, () const, float), asCALL_THISCALL);
  215. // MouseButtonFlags UIElement::GetDragButtonCombo() const | File: ../UI/UIElement.h
  216. engine->RegisterObjectMethod("ToolTip", "MouseButtonFlags GetDragButtonCombo() const", asMETHODPR(ToolTip, GetDragButtonCombo, () const, MouseButtonFlags), asCALL_THISCALL);
  217. engine->RegisterObjectMethod("ToolTip", "MouseButtonFlags get_dragButtonCombo() const", asMETHODPR(ToolTip, GetDragButtonCombo, () const, MouseButtonFlags), asCALL_THISCALL);
  218. // unsigned UIElement::GetDragButtonCount() const | File: ../UI/UIElement.h
  219. engine->RegisterObjectMethod("ToolTip", "uint GetDragButtonCount() const", asMETHODPR(ToolTip, GetDragButtonCount, () const, unsigned), asCALL_THISCALL);
  220. engine->RegisterObjectMethod("ToolTip", "uint get_dragButtonCount() const", asMETHODPR(ToolTip, GetDragButtonCount, () const, unsigned), asCALL_THISCALL);
  221. // DragAndDropModeFlags UIElement::GetDragDropMode() const | File: ../UI/UIElement.h
  222. engine->RegisterObjectMethod("ToolTip", "DragAndDropModeFlags GetDragDropMode() const", asMETHODPR(ToolTip, GetDragDropMode, () const, DragAndDropModeFlags), asCALL_THISCALL);
  223. engine->RegisterObjectMethod("ToolTip", "DragAndDropModeFlags get_dragDropMode() const", asMETHODPR(ToolTip, GetDragDropMode, () const, DragAndDropModeFlags), asCALL_THISCALL);
  224. // IntVector2 UIElement::GetEffectiveMinSize() const | File: ../UI/UIElement.h
  225. engine->RegisterObjectMethod("ToolTip", "IntVector2 GetEffectiveMinSize() const", asMETHODPR(ToolTip, GetEffectiveMinSize, () const, IntVector2), asCALL_THISCALL);
  226. // UIElement* UIElement::GetElementEventSender() const | File: ../UI/UIElement.h
  227. engine->RegisterObjectMethod("ToolTip", "UIElement@+ GetElementEventSender() const", asMETHODPR(ToolTip, GetElementEventSender, () const, UIElement*), asCALL_THISCALL);
  228. // bool UIElement::GetEnableAnchor() const | File: ../UI/UIElement.h
  229. engine->RegisterObjectMethod("ToolTip", "bool GetEnableAnchor() const", asMETHODPR(ToolTip, GetEnableAnchor, () const, bool), asCALL_THISCALL);
  230. engine->RegisterObjectMethod("ToolTip", "bool get_enableAnchor() const", asMETHODPR(ToolTip, GetEnableAnchor, () const, bool), asCALL_THISCALL);
  231. // VariantMap& Object::GetEventDataMap() const | File: ../Core/Object.h
  232. engine->RegisterObjectMethod("ToolTip", "VariantMap& GetEventDataMap() const", asMETHODPR(ToolTip, GetEventDataMap, () const, VariantMap&), asCALL_THISCALL);
  233. // EventHandler* Object::GetEventHandler() const | File: ../Core/Object.h
  234. // Error: type "EventHandler*" can not automatically bind
  235. // Object* Object::GetEventSender() const | File: ../Core/Object.h
  236. engine->RegisterObjectMethod("ToolTip", "Object@+ GetEventSender() const", asMETHODPR(ToolTip, GetEventSender, () const, Object*), asCALL_THISCALL);
  237. // FocusMode UIElement::GetFocusMode() const | File: ../UI/UIElement.h
  238. engine->RegisterObjectMethod("ToolTip", "FocusMode GetFocusMode() const", asMETHODPR(ToolTip, GetFocusMode, () const, FocusMode), asCALL_THISCALL);
  239. engine->RegisterObjectMethod("ToolTip", "FocusMode get_focusMode() const", asMETHODPR(ToolTip, GetFocusMode, () const, FocusMode), asCALL_THISCALL);
  240. // const Variant& Object::GetGlobalVar(StringHash key) const | File: ../Core/Object.h
  241. engine->RegisterObjectMethod("ToolTip", "const Variant& GetGlobalVar(StringHash) const", asMETHODPR(ToolTip, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  242. engine->RegisterObjectMethod("ToolTip", "const Variant& get_globalVar(StringHash) const", asMETHODPR(ToolTip, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  243. // const VariantMap& Object::GetGlobalVars() const | File: ../Core/Object.h
  244. engine->RegisterObjectMethod("ToolTip", "const VariantMap& GetGlobalVars() const", asMETHODPR(ToolTip, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  245. engine->RegisterObjectMethod("ToolTip", "const VariantMap& get_globalVars() const", asMETHODPR(ToolTip, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  246. // int UIElement::GetHeight() const | File: ../UI/UIElement.h
  247. engine->RegisterObjectMethod("ToolTip", "int GetHeight() const", asMETHODPR(ToolTip, GetHeight, () const, int), asCALL_THISCALL);
  248. engine->RegisterObjectMethod("ToolTip", "int get_height() const", asMETHODPR(ToolTip, GetHeight, () const, int), asCALL_THISCALL);
  249. // HorizontalAlignment UIElement::GetHorizontalAlignment() const | File: ../UI/UIElement.h
  250. engine->RegisterObjectMethod("ToolTip", "HorizontalAlignment GetHorizontalAlignment() const", asMETHODPR(ToolTip, GetHorizontalAlignment, () const, HorizontalAlignment), asCALL_THISCALL);
  251. engine->RegisterObjectMethod("ToolTip", "HorizontalAlignment get_horizontalAlignment() const", asMETHODPR(ToolTip, GetHorizontalAlignment, () const, HorizontalAlignment), asCALL_THISCALL);
  252. // int UIElement::GetIndent() const | File: ../UI/UIElement.h
  253. engine->RegisterObjectMethod("ToolTip", "int GetIndent() const", asMETHODPR(ToolTip, GetIndent, () const, int), asCALL_THISCALL);
  254. engine->RegisterObjectMethod("ToolTip", "int get_indent() const", asMETHODPR(ToolTip, GetIndent, () const, int), asCALL_THISCALL);
  255. // int UIElement::GetIndentSpacing() const | File: ../UI/UIElement.h
  256. engine->RegisterObjectMethod("ToolTip", "int GetIndentSpacing() const", asMETHODPR(ToolTip, GetIndentSpacing, () const, int), asCALL_THISCALL);
  257. engine->RegisterObjectMethod("ToolTip", "int get_indentSpacing() const", asMETHODPR(ToolTip, GetIndentSpacing, () const, int), asCALL_THISCALL);
  258. // int UIElement::GetIndentWidth() const | File: ../UI/UIElement.h
  259. engine->RegisterObjectMethod("ToolTip", "int GetIndentWidth() const", asMETHODPR(ToolTip, GetIndentWidth, () const, int), asCALL_THISCALL);
  260. engine->RegisterObjectMethod("ToolTip", "int get_indentWidth() const", asMETHODPR(ToolTip, GetIndentWidth, () const, int), asCALL_THISCALL);
  261. // bool Serializable::GetInterceptNetworkUpdate(const String& attributeName) const | File: ../Scene/Serializable.h
  262. engine->RegisterObjectMethod("ToolTip", "bool GetInterceptNetworkUpdate(const String&in) const", asMETHODPR(ToolTip, GetInterceptNetworkUpdate, (const String&) const, bool), asCALL_THISCALL);
  263. // const IntRect& UIElement::GetLayoutBorder() const | File: ../UI/UIElement.h
  264. engine->RegisterObjectMethod("ToolTip", "const IntRect& GetLayoutBorder() const", asMETHODPR(ToolTip, GetLayoutBorder, () const, const IntRect&), asCALL_THISCALL);
  265. engine->RegisterObjectMethod("ToolTip", "const IntRect& get_layoutBorder() const", asMETHODPR(ToolTip, GetLayoutBorder, () const, const IntRect&), asCALL_THISCALL);
  266. // int UIElement::GetLayoutElementMaxSize() const | File: ../UI/UIElement.h
  267. engine->RegisterObjectMethod("ToolTip", "int GetLayoutElementMaxSize() const", asMETHODPR(ToolTip, GetLayoutElementMaxSize, () const, int), asCALL_THISCALL);
  268. // const Vector2& UIElement::GetLayoutFlexScale() const | File: ../UI/UIElement.h
  269. engine->RegisterObjectMethod("ToolTip", "const Vector2& GetLayoutFlexScale() const", asMETHODPR(ToolTip, GetLayoutFlexScale, () const, const Vector2&), asCALL_THISCALL);
  270. engine->RegisterObjectMethod("ToolTip", "const Vector2& get_layoutFlexScale() const", asMETHODPR(ToolTip, GetLayoutFlexScale, () const, const Vector2&), asCALL_THISCALL);
  271. // LayoutMode UIElement::GetLayoutMode() const | File: ../UI/UIElement.h
  272. engine->RegisterObjectMethod("ToolTip", "LayoutMode GetLayoutMode() const", asMETHODPR(ToolTip, GetLayoutMode, () const, LayoutMode), asCALL_THISCALL);
  273. engine->RegisterObjectMethod("ToolTip", "LayoutMode get_layoutMode() const", asMETHODPR(ToolTip, GetLayoutMode, () const, LayoutMode), asCALL_THISCALL);
  274. // int UIElement::GetLayoutSpacing() const | File: ../UI/UIElement.h
  275. engine->RegisterObjectMethod("ToolTip", "int GetLayoutSpacing() const", asMETHODPR(ToolTip, GetLayoutSpacing, () const, int), asCALL_THISCALL);
  276. engine->RegisterObjectMethod("ToolTip", "int get_layoutSpacing() const", asMETHODPR(ToolTip, GetLayoutSpacing, () const, int), asCALL_THISCALL);
  277. // const Vector2& UIElement::GetMaxAnchor() const | File: ../UI/UIElement.h
  278. engine->RegisterObjectMethod("ToolTip", "const Vector2& GetMaxAnchor() const", asMETHODPR(ToolTip, GetMaxAnchor, () const, const Vector2&), asCALL_THISCALL);
  279. engine->RegisterObjectMethod("ToolTip", "const Vector2& get_maxAnchor() const", asMETHODPR(ToolTip, GetMaxAnchor, () const, const Vector2&), asCALL_THISCALL);
  280. // int UIElement::GetMaxHeight() const | File: ../UI/UIElement.h
  281. engine->RegisterObjectMethod("ToolTip", "int GetMaxHeight() const", asMETHODPR(ToolTip, GetMaxHeight, () const, int), asCALL_THISCALL);
  282. engine->RegisterObjectMethod("ToolTip", "int get_maxHeight() const", asMETHODPR(ToolTip, GetMaxHeight, () const, int), asCALL_THISCALL);
  283. // const IntVector2& UIElement::GetMaxOffset() const | File: ../UI/UIElement.h
  284. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetMaxOffset() const", asMETHODPR(ToolTip, GetMaxOffset, () const, const IntVector2&), asCALL_THISCALL);
  285. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_maxOffset() const", asMETHODPR(ToolTip, GetMaxOffset, () const, const IntVector2&), asCALL_THISCALL);
  286. // const IntVector2& UIElement::GetMaxSize() const | File: ../UI/UIElement.h
  287. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetMaxSize() const", asMETHODPR(ToolTip, GetMaxSize, () const, const IntVector2&), asCALL_THISCALL);
  288. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_maxSize() const", asMETHODPR(ToolTip, GetMaxSize, () const, const IntVector2&), asCALL_THISCALL);
  289. // int UIElement::GetMaxWidth() const | File: ../UI/UIElement.h
  290. engine->RegisterObjectMethod("ToolTip", "int GetMaxWidth() const", asMETHODPR(ToolTip, GetMaxWidth, () const, int), asCALL_THISCALL);
  291. engine->RegisterObjectMethod("ToolTip", "int get_maxWidth() const", asMETHODPR(ToolTip, GetMaxWidth, () const, int), asCALL_THISCALL);
  292. // const Vector2& UIElement::GetMinAnchor() const | File: ../UI/UIElement.h
  293. engine->RegisterObjectMethod("ToolTip", "const Vector2& GetMinAnchor() const", asMETHODPR(ToolTip, GetMinAnchor, () const, const Vector2&), asCALL_THISCALL);
  294. engine->RegisterObjectMethod("ToolTip", "const Vector2& get_minAnchor() const", asMETHODPR(ToolTip, GetMinAnchor, () const, const Vector2&), asCALL_THISCALL);
  295. // int UIElement::GetMinHeight() const | File: ../UI/UIElement.h
  296. engine->RegisterObjectMethod("ToolTip", "int GetMinHeight() const", asMETHODPR(ToolTip, GetMinHeight, () const, int), asCALL_THISCALL);
  297. engine->RegisterObjectMethod("ToolTip", "int get_minHeight() const", asMETHODPR(ToolTip, GetMinHeight, () const, int), asCALL_THISCALL);
  298. // const IntVector2& UIElement::GetMinOffset() const | File: ../UI/UIElement.h
  299. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetMinOffset() const", asMETHODPR(ToolTip, GetMinOffset, () const, const IntVector2&), asCALL_THISCALL);
  300. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_minOffset() const", asMETHODPR(ToolTip, GetMinOffset, () const, const IntVector2&), asCALL_THISCALL);
  301. // const IntVector2& UIElement::GetMinSize() const | File: ../UI/UIElement.h
  302. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetMinSize() const", asMETHODPR(ToolTip, GetMinSize, () const, const IntVector2&), asCALL_THISCALL);
  303. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_minSize() const", asMETHODPR(ToolTip, GetMinSize, () const, const IntVector2&), asCALL_THISCALL);
  304. // int UIElement::GetMinWidth() const | File: ../UI/UIElement.h
  305. engine->RegisterObjectMethod("ToolTip", "int GetMinWidth() const", asMETHODPR(ToolTip, GetMinWidth, () const, int), asCALL_THISCALL);
  306. engine->RegisterObjectMethod("ToolTip", "int get_minWidth() const", asMETHODPR(ToolTip, GetMinWidth, () const, int), asCALL_THISCALL);
  307. // const String& UIElement::GetName() const | File: ../UI/UIElement.h
  308. engine->RegisterObjectMethod("ToolTip", "const String& GetName() const", asMETHODPR(ToolTip, GetName, () const, const String&), asCALL_THISCALL);
  309. engine->RegisterObjectMethod("ToolTip", "const String& get_name() const", asMETHODPR(ToolTip, GetName, () const, const String&), asCALL_THISCALL);
  310. // virtual const Vector<AttributeInfo>* Serializable::GetNetworkAttributes() const | File: ../Scene/Serializable.h
  311. // Error: type "const Vector<AttributeInfo>*" can not automatically bind
  312. // NetworkState* Serializable::GetNetworkState() const | File: ../Scene/Serializable.h
  313. // Error: type "NetworkState*" can not automatically bind
  314. // unsigned Serializable::GetNumAttributes() const | File: ../Scene/Serializable.h
  315. engine->RegisterObjectMethod("ToolTip", "uint GetNumAttributes() const", asMETHODPR(ToolTip, GetNumAttributes, () const, unsigned), asCALL_THISCALL);
  316. engine->RegisterObjectMethod("ToolTip", "uint get_numAttributes() const", asMETHODPR(ToolTip, GetNumAttributes, () const, unsigned), asCALL_THISCALL);
  317. // unsigned UIElement::GetNumChildren(bool recursive=false) const | File: ../UI/UIElement.h
  318. engine->RegisterObjectMethod("ToolTip", "uint GetNumChildren(bool = false) const", asMETHODPR(ToolTip, GetNumChildren, (bool) const, unsigned), asCALL_THISCALL);
  319. engine->RegisterObjectMethod("ToolTip", "uint get_numChildren(bool = false) const", asMETHODPR(ToolTip, GetNumChildren, (bool) const, unsigned), asCALL_THISCALL);
  320. // unsigned Serializable::GetNumNetworkAttributes() const | File: ../Scene/Serializable.h
  321. engine->RegisterObjectMethod("ToolTip", "uint GetNumNetworkAttributes() const", asMETHODPR(ToolTip, GetNumNetworkAttributes, () const, unsigned), asCALL_THISCALL);
  322. // ObjectAnimation* Animatable::GetObjectAnimation() const | File: ../Scene/Animatable.h
  323. engine->RegisterObjectMethod("ToolTip", "ObjectAnimation@+ GetObjectAnimation() const", asMETHODPR(ToolTip, GetObjectAnimation, () const, ObjectAnimation*), asCALL_THISCALL);
  324. engine->RegisterObjectMethod("ToolTip", "ObjectAnimation@+ get_objectAnimation() const", asMETHODPR(ToolTip, GetObjectAnimation, () const, ObjectAnimation*), asCALL_THISCALL);
  325. // ResourceRef Animatable::GetObjectAnimationAttr() const | File: ../Scene/Animatable.h
  326. engine->RegisterObjectMethod("ToolTip", "ResourceRef GetObjectAnimationAttr() const", asMETHODPR(ToolTip, GetObjectAnimationAttr, () const, ResourceRef), asCALL_THISCALL);
  327. // float UIElement::GetOpacity() const | File: ../UI/UIElement.h
  328. engine->RegisterObjectMethod("ToolTip", "float GetOpacity() const", asMETHODPR(ToolTip, GetOpacity, () const, float), asCALL_THISCALL);
  329. engine->RegisterObjectMethod("ToolTip", "float get_opacity() const", asMETHODPR(ToolTip, GetOpacity, () const, float), asCALL_THISCALL);
  330. // UIElement* UIElement::GetParent() const | File: ../UI/UIElement.h
  331. engine->RegisterObjectMethod("ToolTip", "UIElement@+ GetParent() const", asMETHODPR(ToolTip, GetParent, () const, UIElement*), asCALL_THISCALL);
  332. engine->RegisterObjectMethod("ToolTip", "UIElement@+ get_parent() const", asMETHODPR(ToolTip, GetParent, () const, UIElement*), asCALL_THISCALL);
  333. // const Vector2& UIElement::GetPivot() const | File: ../UI/UIElement.h
  334. engine->RegisterObjectMethod("ToolTip", "const Vector2& GetPivot() const", asMETHODPR(ToolTip, GetPivot, () const, const Vector2&), asCALL_THISCALL);
  335. engine->RegisterObjectMethod("ToolTip", "const Vector2& get_pivot() const", asMETHODPR(ToolTip, GetPivot, () const, const Vector2&), asCALL_THISCALL);
  336. // const IntVector2& UIElement::GetPosition() const | File: ../UI/UIElement.h
  337. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetPosition() const", asMETHODPR(ToolTip, GetPosition, () const, const IntVector2&), asCALL_THISCALL);
  338. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_position() const", asMETHODPR(ToolTip, GetPosition, () const, const IntVector2&), asCALL_THISCALL);
  339. // int UIElement::GetPriority() const | File: ../UI/UIElement.h
  340. engine->RegisterObjectMethod("ToolTip", "int GetPriority() const", asMETHODPR(ToolTip, GetPriority, () const, int), asCALL_THISCALL);
  341. engine->RegisterObjectMethod("ToolTip", "int get_priority() const", asMETHODPR(ToolTip, GetPriority, () const, int), asCALL_THISCALL);
  342. // UIElement* UIElement::GetRoot() const | File: ../UI/UIElement.h
  343. engine->RegisterObjectMethod("ToolTip", "UIElement@+ GetRoot() const", asMETHODPR(ToolTip, GetRoot, () const, UIElement*), asCALL_THISCALL);
  344. engine->RegisterObjectMethod("ToolTip", "UIElement@+ get_root() const", asMETHODPR(ToolTip, GetRoot, () const, UIElement*), asCALL_THISCALL);
  345. // virtual const IntVector2& UIElement::GetScreenPosition() const | File: ../UI/UIElement.h
  346. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetScreenPosition() const", asMETHODPR(ToolTip, GetScreenPosition, () const, const IntVector2&), asCALL_THISCALL);
  347. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_screenPosition() const", asMETHODPR(ToolTip, GetScreenPosition, () const, const IntVector2&), asCALL_THISCALL);
  348. // const IntVector2& UIElement::GetSize() const | File: ../UI/UIElement.h
  349. engine->RegisterObjectMethod("ToolTip", "const IntVector2& GetSize() const", asMETHODPR(ToolTip, GetSize, () const, const IntVector2&), asCALL_THISCALL);
  350. engine->RegisterObjectMethod("ToolTip", "const IntVector2& get_size() const", asMETHODPR(ToolTip, GetSize, () const, const IntVector2&), asCALL_THISCALL);
  351. // bool UIElement::GetSortChildren() const | File: ../UI/UIElement.h
  352. engine->RegisterObjectMethod("ToolTip", "bool GetSortChildren() const", asMETHODPR(ToolTip, GetSortChildren, () const, bool), asCALL_THISCALL);
  353. engine->RegisterObjectMethod("ToolTip", "bool get_sortChildren() const", asMETHODPR(ToolTip, GetSortChildren, () const, bool), asCALL_THISCALL);
  354. // Object* Object::GetSubsystem(StringHash type) const | File: ../Core/Object.h
  355. engine->RegisterObjectMethod("ToolTip", "Object@+ GetSubsystem(StringHash) const", asMETHODPR(ToolTip, GetSubsystem, (StringHash) const, Object*), asCALL_THISCALL);
  356. // template<class T> T* Object::GetSubsystem() const | File: ../Core/Object.h
  357. // Not registered because template
  358. // const StringVector& UIElement::GetTags() const | File: ../UI/UIElement.h
  359. engine->RegisterObjectMethod("ToolTip", "Array<String>@ GetTags() const", asFUNCTION(ToolTip_GetTags_void), asCALL_CDECL_OBJFIRST);
  360. engine->RegisterObjectMethod("ToolTip", "Array<String>@ get_tags() const", asFUNCTION(ToolTip_GetTags_void), asCALL_CDECL_OBJFIRST);
  361. // TraversalMode UIElement::GetTraversalMode() const | File: ../UI/UIElement.h
  362. engine->RegisterObjectMethod("ToolTip", "TraversalMode GetTraversalMode() const", asMETHODPR(ToolTip, GetTraversalMode, () const, TraversalMode), asCALL_THISCALL);
  363. engine->RegisterObjectMethod("ToolTip", "TraversalMode get_traversalMode() const", asMETHODPR(ToolTip, GetTraversalMode, () const, TraversalMode), asCALL_THISCALL);
  364. // virtual StringHash Object::GetType() const =0 | File: ../Core/Object.h
  365. engine->RegisterObjectMethod("ToolTip", "StringHash GetType() const", asMETHODPR(ToolTip, GetType, () const, StringHash), asCALL_THISCALL);
  366. engine->RegisterObjectMethod("ToolTip", "StringHash get_type() const", asMETHODPR(ToolTip, GetType, () const, StringHash), asCALL_THISCALL);
  367. // virtual const TypeInfo* Object::GetTypeInfo() const =0 | File: ../Core/Object.h
  368. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  369. // static const TypeInfo* Object::GetTypeInfoStatic() | File: ../Core/Object.h
  370. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  371. // virtual const String& Object::GetTypeName() const =0 | File: ../Core/Object.h
  372. engine->RegisterObjectMethod("ToolTip", "const String& GetTypeName() const", asMETHODPR(ToolTip, GetTypeName, () const, const String&), asCALL_THISCALL);
  373. engine->RegisterObjectMethod("ToolTip", "const String& get_typeName() const", asMETHODPR(ToolTip, GetTypeName, () const, const String&), asCALL_THISCALL);
  374. // bool UIElement::GetUseDerivedOpacity() const | File: ../UI/UIElement.h
  375. engine->RegisterObjectMethod("ToolTip", "bool GetUseDerivedOpacity() const", asMETHODPR(ToolTip, GetUseDerivedOpacity, () const, bool), asCALL_THISCALL);
  376. engine->RegisterObjectMethod("ToolTip", "bool get_useDerivedOpacity() const", asMETHODPR(ToolTip, GetUseDerivedOpacity, () const, bool), asCALL_THISCALL);
  377. // const Variant& UIElement::GetVar(const StringHash& key) const | File: ../UI/UIElement.h
  378. engine->RegisterObjectMethod("ToolTip", "const Variant& GetVar(const StringHash&in) const", asMETHODPR(ToolTip, GetVar, (const StringHash&) const, const Variant&), asCALL_THISCALL);
  379. // const VariantMap& UIElement::GetVars() const | File: ../UI/UIElement.h
  380. engine->RegisterObjectMethod("ToolTip", "const VariantMap& GetVars() const", asMETHODPR(ToolTip, GetVars, () const, const VariantMap&), asCALL_THISCALL);
  381. // VerticalAlignment UIElement::GetVerticalAlignment() const | File: ../UI/UIElement.h
  382. engine->RegisterObjectMethod("ToolTip", "VerticalAlignment GetVerticalAlignment() const", asMETHODPR(ToolTip, GetVerticalAlignment, () const, VerticalAlignment), asCALL_THISCALL);
  383. engine->RegisterObjectMethod("ToolTip", "VerticalAlignment get_verticalAlignment() const", asMETHODPR(ToolTip, GetVerticalAlignment, () const, VerticalAlignment), asCALL_THISCALL);
  384. // int UIElement::GetWidth() const | File: ../UI/UIElement.h
  385. engine->RegisterObjectMethod("ToolTip", "int GetWidth() const", asMETHODPR(ToolTip, GetWidth, () const, int), asCALL_THISCALL);
  386. engine->RegisterObjectMethod("ToolTip", "int get_width() const", asMETHODPR(ToolTip, GetWidth, () const, int), asCALL_THISCALL);
  387. // bool UIElement::HasColorGradient() const | File: ../UI/UIElement.h
  388. engine->RegisterObjectMethod("ToolTip", "bool HasColorGradient() const", asMETHODPR(ToolTip, HasColorGradient, () const, bool), asCALL_THISCALL);
  389. engine->RegisterObjectMethod("ToolTip", "bool get_colorGradient() const", asMETHODPR(ToolTip, HasColorGradient, () const, bool), asCALL_THISCALL);
  390. // bool Object::HasEventHandlers() const | File: ../Core/Object.h
  391. engine->RegisterObjectMethod("ToolTip", "bool HasEventHandlers() const", asMETHODPR(ToolTip, HasEventHandlers, () const, bool), asCALL_THISCALL);
  392. // bool UIElement::HasFocus() const | File: ../UI/UIElement.h
  393. engine->RegisterObjectMethod("ToolTip", "bool HasFocus() const", asMETHODPR(ToolTip, HasFocus, () const, bool), asCALL_THISCALL);
  394. engine->RegisterObjectMethod("ToolTip", "bool get_focus() const", asMETHODPR(ToolTip, HasFocus, () const, bool), asCALL_THISCALL);
  395. // bool Object::HasSubscribedToEvent(StringHash eventType) const | File: ../Core/Object.h
  396. engine->RegisterObjectMethod("ToolTip", "bool HasSubscribedToEvent(StringHash) const", asMETHODPR(ToolTip, HasSubscribedToEvent, (StringHash) const, bool), asCALL_THISCALL);
  397. // bool Object::HasSubscribedToEvent(Object* sender, StringHash eventType) const | File: ../Core/Object.h
  398. engine->RegisterObjectMethod("ToolTip", "bool HasSubscribedToEvent(Object@+, StringHash) const", asMETHODPR(ToolTip, HasSubscribedToEvent, (Object*, StringHash) const, bool), asCALL_THISCALL);
  399. // bool UIElement::HasTag(const String& tag) const | File: ../UI/UIElement.h
  400. engine->RegisterObjectMethod("ToolTip", "bool HasTag(const String&in) const", asMETHODPR(ToolTip, HasTag, (const String&) const, bool), asCALL_THISCALL);
  401. // void UIElement::InsertChild(unsigned index, UIElement* element) | File: ../UI/UIElement.h
  402. engine->RegisterObjectMethod("ToolTip", "void InsertChild(uint, UIElement@+)", asMETHODPR(ToolTip, InsertChild, (unsigned, UIElement*), void), asCALL_THISCALL);
  403. // bool UIElement::IsChildOf(UIElement* element) const | File: ../UI/UIElement.h
  404. engine->RegisterObjectMethod("ToolTip", "bool IsChildOf(UIElement@+) const", asMETHODPR(ToolTip, IsChildOf, (UIElement*) const, bool), asCALL_THISCALL);
  405. // bool UIElement::IsEditable() const | File: ../UI/UIElement.h
  406. engine->RegisterObjectMethod("ToolTip", "bool IsEditable() const", asMETHODPR(ToolTip, IsEditable, () const, bool), asCALL_THISCALL);
  407. engine->RegisterObjectMethod("ToolTip", "bool get_editable() const", asMETHODPR(ToolTip, IsEditable, () const, bool), asCALL_THISCALL);
  408. // bool UIElement::IsElementEventSender() const | File: ../UI/UIElement.h
  409. engine->RegisterObjectMethod("ToolTip", "bool IsElementEventSender() const", asMETHODPR(ToolTip, IsElementEventSender, () const, bool), asCALL_THISCALL);
  410. engine->RegisterObjectMethod("ToolTip", "bool get_elementEventSender() const", asMETHODPR(ToolTip, IsElementEventSender, () const, bool), asCALL_THISCALL);
  411. // bool UIElement::IsEnabled() const | File: ../UI/UIElement.h
  412. engine->RegisterObjectMethod("ToolTip", "bool IsEnabled() const", asMETHODPR(ToolTip, IsEnabled, () const, bool), asCALL_THISCALL);
  413. engine->RegisterObjectMethod("ToolTip", "bool get_enabled() const", asMETHODPR(ToolTip, IsEnabled, () const, bool), asCALL_THISCALL);
  414. // bool UIElement::IsEnabledSelf() const | File: ../UI/UIElement.h
  415. engine->RegisterObjectMethod("ToolTip", "bool IsEnabledSelf() const", asMETHODPR(ToolTip, IsEnabledSelf, () const, bool), asCALL_THISCALL);
  416. engine->RegisterObjectMethod("ToolTip", "bool get_enabledSelf() const", asMETHODPR(ToolTip, IsEnabledSelf, () const, bool), asCALL_THISCALL);
  417. // bool UIElement::IsFixedHeight() const | File: ../UI/UIElement.h
  418. engine->RegisterObjectMethod("ToolTip", "bool IsFixedHeight() const", asMETHODPR(ToolTip, IsFixedHeight, () const, bool), asCALL_THISCALL);
  419. engine->RegisterObjectMethod("ToolTip", "bool get_fixedHeight() const", asMETHODPR(ToolTip, IsFixedHeight, () const, bool), asCALL_THISCALL);
  420. // bool UIElement::IsFixedSize() const | File: ../UI/UIElement.h
  421. engine->RegisterObjectMethod("ToolTip", "bool IsFixedSize() const", asMETHODPR(ToolTip, IsFixedSize, () const, bool), asCALL_THISCALL);
  422. engine->RegisterObjectMethod("ToolTip", "bool get_fixedSize() const", asMETHODPR(ToolTip, IsFixedSize, () const, bool), asCALL_THISCALL);
  423. // bool UIElement::IsFixedWidth() const | File: ../UI/UIElement.h
  424. engine->RegisterObjectMethod("ToolTip", "bool IsFixedWidth() const", asMETHODPR(ToolTip, IsFixedWidth, () const, bool), asCALL_THISCALL);
  425. engine->RegisterObjectMethod("ToolTip", "bool get_fixedWidth() const", asMETHODPR(ToolTip, IsFixedWidth, () const, bool), asCALL_THISCALL);
  426. // bool UIElement::IsHovering() const | File: ../UI/UIElement.h
  427. engine->RegisterObjectMethod("ToolTip", "bool IsHovering() const", asMETHODPR(ToolTip, IsHovering, () const, bool), asCALL_THISCALL);
  428. engine->RegisterObjectMethod("ToolTip", "bool get_hovering() const", asMETHODPR(ToolTip, IsHovering, () const, bool), asCALL_THISCALL);
  429. // bool UIElement::IsInside(IntVector2 position, bool isScreen) | File: ../UI/UIElement.h
  430. engine->RegisterObjectMethod("ToolTip", "bool IsInside(IntVector2, bool)", asMETHODPR(ToolTip, IsInside, (IntVector2, bool), bool), asCALL_THISCALL);
  431. // bool UIElement::IsInsideCombined(IntVector2 position, bool isScreen) | File: ../UI/UIElement.h
  432. engine->RegisterObjectMethod("ToolTip", "bool IsInsideCombined(IntVector2, bool)", asMETHODPR(ToolTip, IsInsideCombined, (IntVector2, bool), bool), asCALL_THISCALL);
  433. // bool Object::IsInstanceOf(StringHash type) const | File: ../Core/Object.h
  434. engine->RegisterObjectMethod("ToolTip", "bool IsInstanceOf(StringHash) const", asMETHODPR(ToolTip, IsInstanceOf, (StringHash) const, bool), asCALL_THISCALL);
  435. // bool Object::IsInstanceOf(const TypeInfo* typeInfo) const | File: ../Core/Object.h
  436. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  437. // template<typename T> bool Object::IsInstanceOf() const | File: ../Core/Object.h
  438. // Not registered because template
  439. // bool UIElement::IsInternal() const | File: ../UI/UIElement.h
  440. engine->RegisterObjectMethod("ToolTip", "bool IsInternal() const", asMETHODPR(ToolTip, IsInternal, () const, bool), asCALL_THISCALL);
  441. engine->RegisterObjectMethod("ToolTip", "bool get_internal() const", asMETHODPR(ToolTip, IsInternal, () const, bool), asCALL_THISCALL);
  442. // bool UIElement::IsSelected() const | File: ../UI/UIElement.h
  443. engine->RegisterObjectMethod("ToolTip", "bool IsSelected() const", asMETHODPR(ToolTip, IsSelected, () const, bool), asCALL_THISCALL);
  444. engine->RegisterObjectMethod("ToolTip", "bool get_selected() const", asMETHODPR(ToolTip, IsSelected, () const, bool), asCALL_THISCALL);
  445. // bool Serializable::IsTemporary() const | File: ../Scene/Serializable.h
  446. engine->RegisterObjectMethod("ToolTip", "bool IsTemporary() const", asMETHODPR(ToolTip, IsTemporary, () const, bool), asCALL_THISCALL);
  447. engine->RegisterObjectMethod("ToolTip", "bool get_temporary() const", asMETHODPR(ToolTip, IsTemporary, () const, bool), asCALL_THISCALL);
  448. // bool UIElement::IsVisible() const | File: ../UI/UIElement.h
  449. engine->RegisterObjectMethod("ToolTip", "bool IsVisible() const", asMETHODPR(ToolTip, IsVisible, () const, bool), asCALL_THISCALL);
  450. engine->RegisterObjectMethod("ToolTip", "bool get_visible() const", asMETHODPR(ToolTip, IsVisible, () const, bool), asCALL_THISCALL);
  451. // bool UIElement::IsVisibleEffective() const | File: ../UI/UIElement.h
  452. engine->RegisterObjectMethod("ToolTip", "bool IsVisibleEffective() const", asMETHODPR(ToolTip, IsVisibleEffective, () const, bool), asCALL_THISCALL);
  453. engine->RegisterObjectMethod("ToolTip", "bool get_visibleEffective() const", asMETHODPR(ToolTip, IsVisibleEffective, () const, bool), asCALL_THISCALL);
  454. // virtual bool UIElement::IsWheelHandler() const | File: ../UI/UIElement.h
  455. engine->RegisterObjectMethod("ToolTip", "bool IsWheelHandler() const", asMETHODPR(ToolTip, IsWheelHandler, () const, bool), asCALL_THISCALL);
  456. // virtual bool UIElement::IsWithinScissor(const IntRect& currentScissor) | File: ../UI/UIElement.h
  457. engine->RegisterObjectMethod("ToolTip", "bool IsWithinScissor(const IntRect&in)", asMETHODPR(ToolTip, IsWithinScissor, (const IntRect&), bool), asCALL_THISCALL);
  458. // virtual bool Serializable::Load(Deserializer& source) | File: ../Scene/Serializable.h
  459. engine->RegisterObjectMethod("ToolTip", "bool Load(Deserializer&)", asMETHODPR(ToolTip, Load, (Deserializer&), bool), asCALL_THISCALL);
  460. // virtual UIElement* UIElement::LoadChildXML(const XMLElement& childElem, XMLFile* styleFile) | File: ../UI/UIElement.h
  461. engine->RegisterObjectMethod("ToolTip", "UIElement@+ LoadChildXML(const XMLElement&in, XMLFile@+)", asMETHODPR(ToolTip, LoadChildXML, (const XMLElement&, XMLFile*), UIElement*), asCALL_THISCALL);
  462. // bool Animatable::LoadJSON(const JSONValue& source) override | File: ../Scene/Animatable.h
  463. engine->RegisterObjectMethod("ToolTip", "bool LoadJSON(const JSONValue&in)", asMETHODPR(ToolTip, LoadJSON, (const JSONValue&), bool), asCALL_THISCALL);
  464. // bool UIElement::LoadXML(const XMLElement& source) override | File: ../UI/UIElement.h
  465. engine->RegisterObjectMethod("ToolTip", "bool LoadXML(const XMLElement&in)", asMETHODPR(ToolTip, LoadXML, (const XMLElement&), bool), asCALL_THISCALL);
  466. // virtual bool UIElement::LoadXML(const XMLElement& source, XMLFile* styleFile) | File: ../UI/UIElement.h
  467. engine->RegisterObjectMethod("ToolTip", "bool LoadXML(const XMLElement&in, XMLFile@+)", asMETHODPR(ToolTip, LoadXML, (const XMLElement&, XMLFile*), bool), asCALL_THISCALL);
  468. // bool UIElement::LoadXML(Deserializer& source) | File: ../UI/UIElement.h
  469. engine->RegisterObjectMethod("ToolTip", "bool LoadXML(Deserializer&)", asMETHODPR(ToolTip, LoadXML, (Deserializer&), bool), asCALL_THISCALL);
  470. // virtual void Serializable::MarkNetworkUpdate() | File: ../Scene/Serializable.h
  471. engine->RegisterObjectMethod("ToolTip", "void MarkNetworkUpdate()", asMETHODPR(ToolTip, MarkNetworkUpdate, (), void), asCALL_THISCALL);
  472. // virtual void UIElement::OnClickBegin(const IntVector2& position, const IntVector2& screenPosition, MouseButton button, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) | File: ../UI/UIElement.h
  473. engine->RegisterObjectMethod("ToolTip", "void OnClickBegin(const IntVector2&in, const IntVector2&in, MouseButton, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(ToolTip, OnClickBegin, (const IntVector2&, const IntVector2&, MouseButton, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  474. // virtual void UIElement::OnClickEnd(const IntVector2& position, const IntVector2& screenPosition, MouseButton button, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor, UIElement* beginElement) | File: ../UI/UIElement.h
  475. engine->RegisterObjectMethod("ToolTip", "void OnClickEnd(const IntVector2&in, const IntVector2&in, MouseButton, MouseButtonFlags, QualifierFlags, Cursor@+, UIElement@+)", asMETHODPR(ToolTip, OnClickEnd, (const IntVector2&, const IntVector2&, MouseButton, MouseButtonFlags, QualifierFlags, Cursor*, UIElement*), void), asCALL_THISCALL);
  476. // virtual void UIElement::OnDoubleClick(const IntVector2& position, const IntVector2& screenPosition, MouseButton button, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) | File: ../UI/UIElement.h
  477. engine->RegisterObjectMethod("ToolTip", "void OnDoubleClick(const IntVector2&in, const IntVector2&in, MouseButton, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(ToolTip, OnDoubleClick, (const IntVector2&, const IntVector2&, MouseButton, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  478. // virtual void UIElement::OnDragBegin(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) | File: ../UI/UIElement.h
  479. engine->RegisterObjectMethod("ToolTip", "void OnDragBegin(const IntVector2&in, const IntVector2&in, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(ToolTip, OnDragBegin, (const IntVector2&, const IntVector2&, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  480. // virtual void UIElement::OnDragCancel(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags dragButtons, MouseButtonFlags cancelButtons, Cursor* cursor) | File: ../UI/UIElement.h
  481. engine->RegisterObjectMethod("ToolTip", "void OnDragCancel(const IntVector2&in, const IntVector2&in, MouseButtonFlags, MouseButtonFlags, Cursor@+)", asMETHODPR(ToolTip, OnDragCancel, (const IntVector2&, const IntVector2&, MouseButtonFlags, MouseButtonFlags, Cursor*), void), asCALL_THISCALL);
  482. // virtual bool UIElement::OnDragDropFinish(UIElement* source) | File: ../UI/UIElement.h
  483. engine->RegisterObjectMethod("ToolTip", "bool OnDragDropFinish(UIElement@+)", asMETHODPR(ToolTip, OnDragDropFinish, (UIElement*), bool), asCALL_THISCALL);
  484. // virtual bool UIElement::OnDragDropTest(UIElement* source) | File: ../UI/UIElement.h
  485. engine->RegisterObjectMethod("ToolTip", "bool OnDragDropTest(UIElement@+)", asMETHODPR(ToolTip, OnDragDropTest, (UIElement*), bool), asCALL_THISCALL);
  486. // virtual void UIElement::OnDragEnd(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags dragButtons, MouseButtonFlags releaseButtons, Cursor* cursor) | File: ../UI/UIElement.h
  487. engine->RegisterObjectMethod("ToolTip", "void OnDragEnd(const IntVector2&in, const IntVector2&in, MouseButtonFlags, MouseButtonFlags, Cursor@+)", asMETHODPR(ToolTip, OnDragEnd, (const IntVector2&, const IntVector2&, MouseButtonFlags, MouseButtonFlags, Cursor*), void), asCALL_THISCALL);
  488. // virtual void UIElement::OnDragMove(const IntVector2& position, const IntVector2& screenPosition, const IntVector2& deltaPos, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) | File: ../UI/UIElement.h
  489. engine->RegisterObjectMethod("ToolTip", "void OnDragMove(const IntVector2&in, const IntVector2&in, const IntVector2&in, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(ToolTip, OnDragMove, (const IntVector2&, const IntVector2&, const IntVector2&, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  490. // virtual void Object::OnEvent(Object* sender, StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  491. engine->RegisterObjectMethod("ToolTip", "void OnEvent(Object@+, StringHash, VariantMap&)", asMETHODPR(ToolTip, OnEvent, (Object*, StringHash, VariantMap&), void), asCALL_THISCALL);
  492. // virtual void Serializable::OnGetAttribute(const AttributeInfo& attr, Variant& dest) const | File: ../Scene/Serializable.h
  493. engine->RegisterObjectMethod("ToolTip", "void OnGetAttribute(const AttributeInfo&in, Variant&) const", asMETHODPR(ToolTip, OnGetAttribute, (const AttributeInfo&, Variant&) const, void), asCALL_THISCALL);
  494. // virtual void UIElement::OnHover(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) | File: ../UI/UIElement.h
  495. engine->RegisterObjectMethod("ToolTip", "void OnHover(const IntVector2&in, const IntVector2&in, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(ToolTip, OnHover, (const IntVector2&, const IntVector2&, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  496. // virtual void UIElement::OnIndentSet() | File: ../UI/UIElement.h
  497. engine->RegisterObjectMethod("ToolTip", "void OnIndentSet()", asMETHODPR(ToolTip, OnIndentSet, (), void), asCALL_THISCALL);
  498. // virtual void UIElement::OnKey(Key key, MouseButtonFlags buttons, QualifierFlags qualifiers) | File: ../UI/UIElement.h
  499. engine->RegisterObjectMethod("ToolTip", "void OnKey(Key, MouseButtonFlags, QualifierFlags)", asMETHODPR(ToolTip, OnKey, (Key, MouseButtonFlags, QualifierFlags), void), asCALL_THISCALL);
  500. // virtual void UIElement::OnPositionSet(const IntVector2& newPosition) | File: ../UI/UIElement.h
  501. engine->RegisterObjectMethod("ToolTip", "void OnPositionSet(const IntVector2&in)", asMETHODPR(ToolTip, OnPositionSet, (const IntVector2&), void), asCALL_THISCALL);
  502. // virtual void UIElement::OnResize(const IntVector2& newSize, const IntVector2& delta) | File: ../UI/UIElement.h
  503. engine->RegisterObjectMethod("ToolTip", "void OnResize(const IntVector2&in, const IntVector2&in)", asMETHODPR(ToolTip, OnResize, (const IntVector2&, const IntVector2&), void), asCALL_THISCALL);
  504. // virtual void Serializable::OnSetAttribute(const AttributeInfo& attr, const Variant& src) | File: ../Scene/Serializable.h
  505. engine->RegisterObjectMethod("ToolTip", "void OnSetAttribute(const AttributeInfo&in, const Variant&in)", asMETHODPR(ToolTip, OnSetAttribute, (const AttributeInfo&, const Variant&), void), asCALL_THISCALL);
  506. // virtual void UIElement::OnSetEditable() | File: ../UI/UIElement.h
  507. engine->RegisterObjectMethod("ToolTip", "void OnSetEditable()", asMETHODPR(ToolTip, OnSetEditable, (), void), asCALL_THISCALL);
  508. // virtual void UIElement::OnTextInput(const String& text) | File: ../UI/UIElement.h
  509. engine->RegisterObjectMethod("ToolTip", "void OnTextInput(const String&in)", asMETHODPR(ToolTip, OnTextInput, (const String&), void), asCALL_THISCALL);
  510. // virtual void UIElement::OnWheel(int delta, MouseButtonFlags buttons, QualifierFlags qualifiers) | File: ../UI/UIElement.h
  511. engine->RegisterObjectMethod("ToolTip", "void OnWheel(int, MouseButtonFlags, QualifierFlags)", asMETHODPR(ToolTip, OnWheel, (int, MouseButtonFlags, QualifierFlags), void), asCALL_THISCALL);
  512. // bool Serializable::ReadDeltaUpdate(Deserializer& source) | File: ../Scene/Serializable.h
  513. engine->RegisterObjectMethod("ToolTip", "bool ReadDeltaUpdate(Deserializer&)", asMETHODPR(ToolTip, ReadDeltaUpdate, (Deserializer&), bool), asCALL_THISCALL);
  514. // bool Serializable::ReadLatestDataUpdate(Deserializer& source) | File: ../Scene/Serializable.h
  515. engine->RegisterObjectMethod("ToolTip", "bool ReadLatestDataUpdate(Deserializer&)", asMETHODPR(ToolTip, ReadLatestDataUpdate, (Deserializer&), bool), asCALL_THISCALL);
  516. // RefCount* RefCounted::RefCountPtr() | File: ../Container/RefCounted.h
  517. // Error: type "RefCount*" can not automatically bind
  518. // int RefCounted::Refs() const | File: ../Container/RefCounted.h
  519. engine->RegisterObjectMethod("ToolTip", "int Refs() const", asMETHODPR(ToolTip, Refs, () const, int), asCALL_THISCALL);
  520. engine->RegisterObjectMethod("ToolTip", "int get_refs() const", asMETHODPR(ToolTip, Refs, () const, int), asCALL_THISCALL);
  521. // static void ToolTip::RegisterObject(Context* context) | File: ../UI/ToolTip.h
  522. // Context can be used as firs parameter of constructors only
  523. // void RefCounted::ReleaseRef() | File: ../Container/RefCounted.h
  524. engine->RegisterObjectBehaviour("ToolTip", asBEHAVE_RELEASE, "void f()", asMETHODPR(ToolTip, ReleaseRef, (), void), asCALL_THISCALL);
  525. // void UIElement::Remove() | File: ../UI/UIElement.h
  526. engine->RegisterObjectMethod("ToolTip", "void Remove()", asMETHODPR(ToolTip, Remove, (), void), asCALL_THISCALL);
  527. // void UIElement::RemoveAllChildren() | File: ../UI/UIElement.h
  528. engine->RegisterObjectMethod("ToolTip", "void RemoveAllChildren()", asMETHODPR(ToolTip, RemoveAllChildren, (), void), asCALL_THISCALL);
  529. // void UIElement::RemoveAllTags() | File: ../UI/UIElement.h
  530. engine->RegisterObjectMethod("ToolTip", "void RemoveAllTags()", asMETHODPR(ToolTip, RemoveAllTags, (), void), asCALL_THISCALL);
  531. // void Animatable::RemoveAttributeAnimation(const String& name) | File: ../Scene/Animatable.h
  532. engine->RegisterObjectMethod("ToolTip", "void RemoveAttributeAnimation(const String&in)", asMETHODPR(ToolTip, RemoveAttributeAnimation, (const String&), void), asCALL_THISCALL);
  533. // void UIElement::RemoveChild(UIElement* element, unsigned index=0) | File: ../UI/UIElement.h
  534. engine->RegisterObjectMethod("ToolTip", "void RemoveChild(UIElement@+, uint = 0)", asMETHODPR(ToolTip, RemoveChild, (UIElement*, unsigned), void), asCALL_THISCALL);
  535. // void UIElement::RemoveChildAtIndex(unsigned index) | File: ../UI/UIElement.h
  536. engine->RegisterObjectMethod("ToolTip", "void RemoveChildAtIndex(uint)", asMETHODPR(ToolTip, RemoveChildAtIndex, (unsigned), void), asCALL_THISCALL);
  537. // void Serializable::RemoveInstanceDefault() | File: ../Scene/Serializable.h
  538. engine->RegisterObjectMethod("ToolTip", "void RemoveInstanceDefault()", asMETHODPR(ToolTip, RemoveInstanceDefault, (), void), asCALL_THISCALL);
  539. // void Animatable::RemoveObjectAnimation() | File: ../Scene/Animatable.h
  540. engine->RegisterObjectMethod("ToolTip", "void RemoveObjectAnimation()", asMETHODPR(ToolTip, RemoveObjectAnimation, (), void), asCALL_THISCALL);
  541. // bool UIElement::RemoveTag(const String& tag) | File: ../UI/UIElement.h
  542. engine->RegisterObjectMethod("ToolTip", "bool RemoveTag(const String&in)", asMETHODPR(ToolTip, RemoveTag, (const String&), bool), asCALL_THISCALL);
  543. // void ToolTip::Reset() | File: ../UI/ToolTip.h
  544. engine->RegisterObjectMethod("ToolTip", "void Reset()", asMETHODPR(ToolTip, Reset, (), void), asCALL_THISCALL);
  545. // void UIElement::ResetDeepEnabled() | File: ../UI/UIElement.h
  546. engine->RegisterObjectMethod("ToolTip", "void ResetDeepEnabled()", asMETHODPR(ToolTip, ResetDeepEnabled, (), void), asCALL_THISCALL);
  547. // void Serializable::ResetToDefault() | File: ../Scene/Serializable.h
  548. engine->RegisterObjectMethod("ToolTip", "void ResetToDefault()", asMETHODPR(ToolTip, ResetToDefault, (), void), asCALL_THISCALL);
  549. // virtual bool Serializable::Save(Serializer& dest) const | File: ../Scene/Serializable.h
  550. engine->RegisterObjectMethod("ToolTip", "bool Save(Serializer&) const", asMETHODPR(ToolTip, Save, (Serializer&) const, bool), asCALL_THISCALL);
  551. // virtual bool Serializable::SaveDefaultAttributes() const | File: ../Scene/Serializable.h
  552. engine->RegisterObjectMethod("ToolTip", "bool SaveDefaultAttributes() const", asMETHODPR(ToolTip, SaveDefaultAttributes, () const, bool), asCALL_THISCALL);
  553. // bool Animatable::SaveJSON(JSONValue& dest) const override | File: ../Scene/Animatable.h
  554. engine->RegisterObjectMethod("ToolTip", "bool SaveJSON(JSONValue&) const", asMETHODPR(ToolTip, SaveJSON, (JSONValue&) const, bool), asCALL_THISCALL);
  555. // bool UIElement::SaveXML(XMLElement& dest) const override | File: ../UI/UIElement.h
  556. engine->RegisterObjectMethod("ToolTip", "bool SaveXML(XMLElement&) const", asMETHODPR(ToolTip, SaveXML, (XMLElement&) const, bool), asCALL_THISCALL);
  557. // bool UIElement::SaveXML(Serializer& dest, const String& indentation="\t") const | File: ../UI/UIElement.h
  558. engine->RegisterObjectMethod("ToolTip", "bool SaveXML(Serializer&, const String&in = \"\t\") const", asMETHODPR(ToolTip, SaveXML, (Serializer&, const String&) const, bool), asCALL_THISCALL);
  559. // virtual IntVector2 UIElement::ScreenToElement(const IntVector2& screenPosition) | File: ../UI/UIElement.h
  560. engine->RegisterObjectMethod("ToolTip", "IntVector2 ScreenToElement(const IntVector2&in)", asMETHODPR(ToolTip, ScreenToElement, (const IntVector2&), IntVector2), asCALL_THISCALL);
  561. // void Object::SendEvent(StringHash eventType) | File: ../Core/Object.h
  562. engine->RegisterObjectMethod("ToolTip", "void SendEvent(StringHash)", asMETHODPR(ToolTip, SendEvent, (StringHash), void), asCALL_THISCALL);
  563. // void Object::SendEvent(StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  564. engine->RegisterObjectMethod("ToolTip", "void SendEvent(StringHash, VariantMap&)", asMETHODPR(ToolTip, SendEvent, (StringHash, VariantMap&), void), asCALL_THISCALL);
  565. // template<typename... Args> void Object::SendEvent(StringHash eventType, Args... args) | File: ../Core/Object.h
  566. // Not registered because template
  567. // void UIElement::SetAlignment(HorizontalAlignment hAlign, VerticalAlignment vAlign) | File: ../UI/UIElement.h
  568. engine->RegisterObjectMethod("ToolTip", "void SetAlignment(HorizontalAlignment, VerticalAlignment)", asMETHODPR(ToolTip, SetAlignment, (HorizontalAlignment, VerticalAlignment), void), asCALL_THISCALL);
  569. // void Animatable::SetAnimationEnabled(bool enable) | File: ../Scene/Animatable.h
  570. engine->RegisterObjectMethod("ToolTip", "void SetAnimationEnabled(bool)", asMETHODPR(ToolTip, SetAnimationEnabled, (bool), void), asCALL_THISCALL);
  571. engine->RegisterObjectMethod("ToolTip", "void set_animationEnabled(bool)", asMETHODPR(ToolTip, SetAnimationEnabled, (bool), void), asCALL_THISCALL);
  572. // void Animatable::SetAnimationTime(float time) | File: ../Scene/Animatable.h
  573. engine->RegisterObjectMethod("ToolTip", "void SetAnimationTime(float)", asMETHODPR(ToolTip, SetAnimationTime, (float), void), asCALL_THISCALL);
  574. // bool Serializable::SetAttribute(unsigned index, const Variant& value) | File: ../Scene/Serializable.h
  575. engine->RegisterObjectMethod("ToolTip", "bool SetAttribute(uint, const Variant&in)", asMETHODPR(ToolTip, SetAttribute, (unsigned, const Variant&), bool), asCALL_THISCALL);
  576. engine->RegisterObjectMethod("ToolTip", "bool set_attributes(uint, const Variant&in)", asMETHODPR(ToolTip, SetAttribute, (unsigned, const Variant&), bool), asCALL_THISCALL);
  577. // bool Serializable::SetAttribute(const String& name, const Variant& value) | File: ../Scene/Serializable.h
  578. engine->RegisterObjectMethod("ToolTip", "bool SetAttribute(const String&in, const Variant&in)", asMETHODPR(ToolTip, SetAttribute, (const String&, const Variant&), bool), asCALL_THISCALL);
  579. // void Animatable::SetAttributeAnimation(const String& name, ValueAnimation* attributeAnimation, WrapMode wrapMode=WM_LOOP, float speed=1.0f) | File: ../Scene/Animatable.h
  580. engine->RegisterObjectMethod("ToolTip", "void SetAttributeAnimation(const String&in, ValueAnimation@+, WrapMode = WM_LOOP, float = 1.0f)", asMETHODPR(ToolTip, SetAttributeAnimation, (const String&, ValueAnimation*, WrapMode, float), void), asCALL_THISCALL);
  581. // void Animatable::SetAttributeAnimationSpeed(const String& name, float speed) | File: ../Scene/Animatable.h
  582. engine->RegisterObjectMethod("ToolTip", "void SetAttributeAnimationSpeed(const String&in, float)", asMETHODPR(ToolTip, SetAttributeAnimationSpeed, (const String&, float), void), asCALL_THISCALL);
  583. // void Animatable::SetAttributeAnimationTime(const String& name, float time) | File: ../Scene/Animatable.h
  584. engine->RegisterObjectMethod("ToolTip", "void SetAttributeAnimationTime(const String&in, float)", asMETHODPR(ToolTip, SetAttributeAnimationTime, (const String&, float), void), asCALL_THISCALL);
  585. // void Animatable::SetAttributeAnimationWrapMode(const String& name, WrapMode wrapMode) | File: ../Scene/Animatable.h
  586. engine->RegisterObjectMethod("ToolTip", "void SetAttributeAnimationWrapMode(const String&in, WrapMode)", asMETHODPR(ToolTip, SetAttributeAnimationWrapMode, (const String&, WrapMode), void), asCALL_THISCALL);
  587. // void Object::SetBlockEvents(bool block) | File: ../Core/Object.h
  588. engine->RegisterObjectMethod("ToolTip", "void SetBlockEvents(bool)", asMETHODPR(ToolTip, SetBlockEvents, (bool), void), asCALL_THISCALL);
  589. // void UIElement::SetBringToBack(bool enable) | File: ../UI/UIElement.h
  590. engine->RegisterObjectMethod("ToolTip", "void SetBringToBack(bool)", asMETHODPR(ToolTip, SetBringToBack, (bool), void), asCALL_THISCALL);
  591. engine->RegisterObjectMethod("ToolTip", "void set_bringToBack(bool)", asMETHODPR(ToolTip, SetBringToBack, (bool), void), asCALL_THISCALL);
  592. // void UIElement::SetBringToFront(bool enable) | File: ../UI/UIElement.h
  593. engine->RegisterObjectMethod("ToolTip", "void SetBringToFront(bool)", asMETHODPR(ToolTip, SetBringToFront, (bool), void), asCALL_THISCALL);
  594. engine->RegisterObjectMethod("ToolTip", "void set_bringToFront(bool)", asMETHODPR(ToolTip, SetBringToFront, (bool), void), asCALL_THISCALL);
  595. // void UIElement::SetChildOffset(const IntVector2& offset) | File: ../UI/UIElement.h
  596. engine->RegisterObjectMethod("ToolTip", "void SetChildOffset(const IntVector2&in)", asMETHODPR(ToolTip, SetChildOffset, (const IntVector2&), void), asCALL_THISCALL);
  597. // void UIElement::SetClipBorder(const IntRect& rect) | File: ../UI/UIElement.h
  598. engine->RegisterObjectMethod("ToolTip", "void SetClipBorder(const IntRect&in)", asMETHODPR(ToolTip, SetClipBorder, (const IntRect&), void), asCALL_THISCALL);
  599. engine->RegisterObjectMethod("ToolTip", "void set_clipBorder(const IntRect&in)", asMETHODPR(ToolTip, SetClipBorder, (const IntRect&), void), asCALL_THISCALL);
  600. // void UIElement::SetClipChildren(bool enable) | File: ../UI/UIElement.h
  601. engine->RegisterObjectMethod("ToolTip", "void SetClipChildren(bool)", asMETHODPR(ToolTip, SetClipChildren, (bool), void), asCALL_THISCALL);
  602. engine->RegisterObjectMethod("ToolTip", "void set_clipChildren(bool)", asMETHODPR(ToolTip, SetClipChildren, (bool), void), asCALL_THISCALL);
  603. // void UIElement::SetColor(const Color& color) | File: ../UI/UIElement.h
  604. engine->RegisterObjectMethod("ToolTip", "void SetColor(const Color&in)", asMETHODPR(ToolTip, SetColor, (const Color&), void), asCALL_THISCALL);
  605. engine->RegisterObjectMethod("ToolTip", "void set_color(const Color&in)", asMETHODPR(ToolTip, SetColor, (const Color&), void), asCALL_THISCALL);
  606. // void UIElement::SetColor(Corner corner, const Color& color) | File: ../UI/UIElement.h
  607. engine->RegisterObjectMethod("ToolTip", "void SetColor(Corner, const Color&in)", asMETHODPR(ToolTip, SetColor, (Corner, const Color&), void), asCALL_THISCALL);
  608. engine->RegisterObjectMethod("ToolTip", "void set_colors(Corner, const Color&in)", asMETHODPR(ToolTip, SetColor, (Corner, const Color&), void), asCALL_THISCALL);
  609. // void UIElement::SetDeepEnabled(bool enable) | File: ../UI/UIElement.h
  610. engine->RegisterObjectMethod("ToolTip", "void SetDeepEnabled(bool)", asMETHODPR(ToolTip, SetDeepEnabled, (bool), void), asCALL_THISCALL);
  611. // void UIElement::SetDefaultStyle(XMLFile* style) | File: ../UI/UIElement.h
  612. engine->RegisterObjectMethod("ToolTip", "void SetDefaultStyle(XMLFile@+)", asMETHODPR(ToolTip, SetDefaultStyle, (XMLFile*), void), asCALL_THISCALL);
  613. engine->RegisterObjectMethod("ToolTip", "void set_defaultStyle(XMLFile@+)", asMETHODPR(ToolTip, SetDefaultStyle, (XMLFile*), void), asCALL_THISCALL);
  614. // void ToolTip::SetDelay(float delay) | File: ../UI/ToolTip.h
  615. engine->RegisterObjectMethod("ToolTip", "void SetDelay(float)", asMETHODPR(ToolTip, SetDelay, (float), void), asCALL_THISCALL);
  616. engine->RegisterObjectMethod("ToolTip", "void set_delay(float)", asMETHODPR(ToolTip, SetDelay, (float), void), asCALL_THISCALL);
  617. // void UIElement::SetDragDropMode(DragAndDropModeFlags mode) | File: ../UI/UIElement.h
  618. engine->RegisterObjectMethod("ToolTip", "void SetDragDropMode(DragAndDropModeFlags)", asMETHODPR(ToolTip, SetDragDropMode, (DragAndDropModeFlags), void), asCALL_THISCALL);
  619. engine->RegisterObjectMethod("ToolTip", "void set_dragDropMode(DragAndDropModeFlags)", asMETHODPR(ToolTip, SetDragDropMode, (DragAndDropModeFlags), void), asCALL_THISCALL);
  620. // void UIElement::SetEditable(bool enable) | File: ../UI/UIElement.h
  621. engine->RegisterObjectMethod("ToolTip", "void SetEditable(bool)", asMETHODPR(ToolTip, SetEditable, (bool), void), asCALL_THISCALL);
  622. engine->RegisterObjectMethod("ToolTip", "void set_editable(bool)", asMETHODPR(ToolTip, SetEditable, (bool), void), asCALL_THISCALL);
  623. // void UIElement::SetElementEventSender(bool flag) | File: ../UI/UIElement.h
  624. engine->RegisterObjectMethod("ToolTip", "void SetElementEventSender(bool)", asMETHODPR(ToolTip, SetElementEventSender, (bool), void), asCALL_THISCALL);
  625. engine->RegisterObjectMethod("ToolTip", "void set_elementEventSender(bool)", asMETHODPR(ToolTip, SetElementEventSender, (bool), void), asCALL_THISCALL);
  626. // void UIElement::SetEnableAnchor(bool enable) | File: ../UI/UIElement.h
  627. engine->RegisterObjectMethod("ToolTip", "void SetEnableAnchor(bool)", asMETHODPR(ToolTip, SetEnableAnchor, (bool), void), asCALL_THISCALL);
  628. engine->RegisterObjectMethod("ToolTip", "void set_enableAnchor(bool)", asMETHODPR(ToolTip, SetEnableAnchor, (bool), void), asCALL_THISCALL);
  629. // void UIElement::SetEnabled(bool enable) | File: ../UI/UIElement.h
  630. engine->RegisterObjectMethod("ToolTip", "void SetEnabled(bool)", asMETHODPR(ToolTip, SetEnabled, (bool), void), asCALL_THISCALL);
  631. engine->RegisterObjectMethod("ToolTip", "void set_enabled(bool)", asMETHODPR(ToolTip, SetEnabled, (bool), void), asCALL_THISCALL);
  632. // void UIElement::SetEnabledRecursive(bool enable) | File: ../UI/UIElement.h
  633. engine->RegisterObjectMethod("ToolTip", "void SetEnabledRecursive(bool)", asMETHODPR(ToolTip, SetEnabledRecursive, (bool), void), asCALL_THISCALL);
  634. // void UIElement::SetFixedHeight(int height) | File: ../UI/UIElement.h
  635. engine->RegisterObjectMethod("ToolTip", "void SetFixedHeight(int)", asMETHODPR(ToolTip, SetFixedHeight, (int), void), asCALL_THISCALL);
  636. // void UIElement::SetFixedSize(const IntVector2& size) | File: ../UI/UIElement.h
  637. engine->RegisterObjectMethod("ToolTip", "void SetFixedSize(const IntVector2&in)", asMETHODPR(ToolTip, SetFixedSize, (const IntVector2&), void), asCALL_THISCALL);
  638. // void UIElement::SetFixedSize(int width, int height) | File: ../UI/UIElement.h
  639. engine->RegisterObjectMethod("ToolTip", "void SetFixedSize(int, int)", asMETHODPR(ToolTip, SetFixedSize, (int, int), void), asCALL_THISCALL);
  640. // void UIElement::SetFixedWidth(int width) | File: ../UI/UIElement.h
  641. engine->RegisterObjectMethod("ToolTip", "void SetFixedWidth(int)", asMETHODPR(ToolTip, SetFixedWidth, (int), void), asCALL_THISCALL);
  642. // void UIElement::SetFocus(bool enable) | File: ../UI/UIElement.h
  643. engine->RegisterObjectMethod("ToolTip", "void SetFocus(bool)", asMETHODPR(ToolTip, SetFocus, (bool), void), asCALL_THISCALL);
  644. engine->RegisterObjectMethod("ToolTip", "void set_focus(bool)", asMETHODPR(ToolTip, SetFocus, (bool), void), asCALL_THISCALL);
  645. // void UIElement::SetFocusMode(FocusMode mode) | File: ../UI/UIElement.h
  646. engine->RegisterObjectMethod("ToolTip", "void SetFocusMode(FocusMode)", asMETHODPR(ToolTip, SetFocusMode, (FocusMode), void), asCALL_THISCALL);
  647. engine->RegisterObjectMethod("ToolTip", "void set_focusMode(FocusMode)", asMETHODPR(ToolTip, SetFocusMode, (FocusMode), void), asCALL_THISCALL);
  648. // void Object::SetGlobalVar(StringHash key, const Variant& value) | File: ../Core/Object.h
  649. engine->RegisterObjectMethod("ToolTip", "void SetGlobalVar(StringHash, const Variant&in)", asMETHODPR(ToolTip, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  650. engine->RegisterObjectMethod("ToolTip", "void set_globalVar(StringHash, const Variant&in)", asMETHODPR(ToolTip, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  651. // void UIElement::SetHeight(int height) | File: ../UI/UIElement.h
  652. engine->RegisterObjectMethod("ToolTip", "void SetHeight(int)", asMETHODPR(ToolTip, SetHeight, (int), void), asCALL_THISCALL);
  653. engine->RegisterObjectMethod("ToolTip", "void set_height(int)", asMETHODPR(ToolTip, SetHeight, (int), void), asCALL_THISCALL);
  654. // void UIElement::SetHorizontalAlignment(HorizontalAlignment align) | File: ../UI/UIElement.h
  655. engine->RegisterObjectMethod("ToolTip", "void SetHorizontalAlignment(HorizontalAlignment)", asMETHODPR(ToolTip, SetHorizontalAlignment, (HorizontalAlignment), void), asCALL_THISCALL);
  656. engine->RegisterObjectMethod("ToolTip", "void set_horizontalAlignment(HorizontalAlignment)", asMETHODPR(ToolTip, SetHorizontalAlignment, (HorizontalAlignment), void), asCALL_THISCALL);
  657. // void UIElement::SetHovering(bool enable) | File: ../UI/UIElement.h
  658. engine->RegisterObjectMethod("ToolTip", "void SetHovering(bool)", asMETHODPR(ToolTip, SetHovering, (bool), void), asCALL_THISCALL);
  659. // void UIElement::SetIndent(int indent) | File: ../UI/UIElement.h
  660. engine->RegisterObjectMethod("ToolTip", "void SetIndent(int)", asMETHODPR(ToolTip, SetIndent, (int), void), asCALL_THISCALL);
  661. engine->RegisterObjectMethod("ToolTip", "void set_indent(int)", asMETHODPR(ToolTip, SetIndent, (int), void), asCALL_THISCALL);
  662. // void UIElement::SetIndentSpacing(int indentSpacing) | File: ../UI/UIElement.h
  663. engine->RegisterObjectMethod("ToolTip", "void SetIndentSpacing(int)", asMETHODPR(ToolTip, SetIndentSpacing, (int), void), asCALL_THISCALL);
  664. engine->RegisterObjectMethod("ToolTip", "void set_indentSpacing(int)", asMETHODPR(ToolTip, SetIndentSpacing, (int), void), asCALL_THISCALL);
  665. // void Serializable::SetInstanceDefault(bool enable) | File: ../Scene/Serializable.h
  666. engine->RegisterObjectMethod("ToolTip", "void SetInstanceDefault(bool)", asMETHODPR(ToolTip, SetInstanceDefault, (bool), void), asCALL_THISCALL);
  667. // void Serializable::SetInterceptNetworkUpdate(const String& attributeName, bool enable) | File: ../Scene/Serializable.h
  668. engine->RegisterObjectMethod("ToolTip", "void SetInterceptNetworkUpdate(const String&in, bool)", asMETHODPR(ToolTip, SetInterceptNetworkUpdate, (const String&, bool), void), asCALL_THISCALL);
  669. // void UIElement::SetInternal(bool enable) | File: ../UI/UIElement.h
  670. engine->RegisterObjectMethod("ToolTip", "void SetInternal(bool)", asMETHODPR(ToolTip, SetInternal, (bool), void), asCALL_THISCALL);
  671. engine->RegisterObjectMethod("ToolTip", "void set_internal(bool)", asMETHODPR(ToolTip, SetInternal, (bool), void), asCALL_THISCALL);
  672. // void UIElement::SetLayout(LayoutMode mode, int spacing=0, const IntRect& border=IntRect::ZERO) | File: ../UI/UIElement.h
  673. engine->RegisterObjectMethod("ToolTip", "void SetLayout(LayoutMode, int = 0, const IntRect&in = IntRect::ZERO)", asMETHODPR(ToolTip, SetLayout, (LayoutMode, int, const IntRect&), void), asCALL_THISCALL);
  674. // void UIElement::SetLayoutBorder(const IntRect& border) | File: ../UI/UIElement.h
  675. engine->RegisterObjectMethod("ToolTip", "void SetLayoutBorder(const IntRect&in)", asMETHODPR(ToolTip, SetLayoutBorder, (const IntRect&), void), asCALL_THISCALL);
  676. engine->RegisterObjectMethod("ToolTip", "void set_layoutBorder(const IntRect&in)", asMETHODPR(ToolTip, SetLayoutBorder, (const IntRect&), void), asCALL_THISCALL);
  677. // void UIElement::SetLayoutFlexScale(const Vector2& scale) | File: ../UI/UIElement.h
  678. engine->RegisterObjectMethod("ToolTip", "void SetLayoutFlexScale(const Vector2&in)", asMETHODPR(ToolTip, SetLayoutFlexScale, (const Vector2&), void), asCALL_THISCALL);
  679. engine->RegisterObjectMethod("ToolTip", "void set_layoutFlexScale(const Vector2&in)", asMETHODPR(ToolTip, SetLayoutFlexScale, (const Vector2&), void), asCALL_THISCALL);
  680. // void UIElement::SetLayoutMode(LayoutMode mode) | File: ../UI/UIElement.h
  681. engine->RegisterObjectMethod("ToolTip", "void SetLayoutMode(LayoutMode)", asMETHODPR(ToolTip, SetLayoutMode, (LayoutMode), void), asCALL_THISCALL);
  682. engine->RegisterObjectMethod("ToolTip", "void set_layoutMode(LayoutMode)", asMETHODPR(ToolTip, SetLayoutMode, (LayoutMode), void), asCALL_THISCALL);
  683. // void UIElement::SetLayoutSpacing(int spacing) | File: ../UI/UIElement.h
  684. engine->RegisterObjectMethod("ToolTip", "void SetLayoutSpacing(int)", asMETHODPR(ToolTip, SetLayoutSpacing, (int), void), asCALL_THISCALL);
  685. engine->RegisterObjectMethod("ToolTip", "void set_layoutSpacing(int)", asMETHODPR(ToolTip, SetLayoutSpacing, (int), void), asCALL_THISCALL);
  686. // void UIElement::SetMaxAnchor(const Vector2& anchor) | File: ../UI/UIElement.h
  687. engine->RegisterObjectMethod("ToolTip", "void SetMaxAnchor(const Vector2&in)", asMETHODPR(ToolTip, SetMaxAnchor, (const Vector2&), void), asCALL_THISCALL);
  688. engine->RegisterObjectMethod("ToolTip", "void set_maxAnchor(const Vector2&in)", asMETHODPR(ToolTip, SetMaxAnchor, (const Vector2&), void), asCALL_THISCALL);
  689. // void UIElement::SetMaxAnchor(float x, float y) | File: ../UI/UIElement.h
  690. engine->RegisterObjectMethod("ToolTip", "void SetMaxAnchor(float, float)", asMETHODPR(ToolTip, SetMaxAnchor, (float, float), void), asCALL_THISCALL);
  691. // void UIElement::SetMaxHeight(int height) | File: ../UI/UIElement.h
  692. engine->RegisterObjectMethod("ToolTip", "void SetMaxHeight(int)", asMETHODPR(ToolTip, SetMaxHeight, (int), void), asCALL_THISCALL);
  693. engine->RegisterObjectMethod("ToolTip", "void set_maxHeight(int)", asMETHODPR(ToolTip, SetMaxHeight, (int), void), asCALL_THISCALL);
  694. // void UIElement::SetMaxOffset(const IntVector2& offset) | File: ../UI/UIElement.h
  695. engine->RegisterObjectMethod("ToolTip", "void SetMaxOffset(const IntVector2&in)", asMETHODPR(ToolTip, SetMaxOffset, (const IntVector2&), void), asCALL_THISCALL);
  696. engine->RegisterObjectMethod("ToolTip", "void set_maxOffset(const IntVector2&in)", asMETHODPR(ToolTip, SetMaxOffset, (const IntVector2&), void), asCALL_THISCALL);
  697. // void UIElement::SetMaxSize(const IntVector2& maxSize) | File: ../UI/UIElement.h
  698. engine->RegisterObjectMethod("ToolTip", "void SetMaxSize(const IntVector2&in)", asMETHODPR(ToolTip, SetMaxSize, (const IntVector2&), void), asCALL_THISCALL);
  699. engine->RegisterObjectMethod("ToolTip", "void set_maxSize(const IntVector2&in)", asMETHODPR(ToolTip, SetMaxSize, (const IntVector2&), void), asCALL_THISCALL);
  700. // void UIElement::SetMaxSize(int width, int height) | File: ../UI/UIElement.h
  701. engine->RegisterObjectMethod("ToolTip", "void SetMaxSize(int, int)", asMETHODPR(ToolTip, SetMaxSize, (int, int), void), asCALL_THISCALL);
  702. // void UIElement::SetMaxWidth(int width) | File: ../UI/UIElement.h
  703. engine->RegisterObjectMethod("ToolTip", "void SetMaxWidth(int)", asMETHODPR(ToolTip, SetMaxWidth, (int), void), asCALL_THISCALL);
  704. engine->RegisterObjectMethod("ToolTip", "void set_maxWidth(int)", asMETHODPR(ToolTip, SetMaxWidth, (int), void), asCALL_THISCALL);
  705. // void UIElement::SetMinAnchor(const Vector2& anchor) | File: ../UI/UIElement.h
  706. engine->RegisterObjectMethod("ToolTip", "void SetMinAnchor(const Vector2&in)", asMETHODPR(ToolTip, SetMinAnchor, (const Vector2&), void), asCALL_THISCALL);
  707. engine->RegisterObjectMethod("ToolTip", "void set_minAnchor(const Vector2&in)", asMETHODPR(ToolTip, SetMinAnchor, (const Vector2&), void), asCALL_THISCALL);
  708. // void UIElement::SetMinAnchor(float x, float y) | File: ../UI/UIElement.h
  709. engine->RegisterObjectMethod("ToolTip", "void SetMinAnchor(float, float)", asMETHODPR(ToolTip, SetMinAnchor, (float, float), void), asCALL_THISCALL);
  710. // void UIElement::SetMinHeight(int height) | File: ../UI/UIElement.h
  711. engine->RegisterObjectMethod("ToolTip", "void SetMinHeight(int)", asMETHODPR(ToolTip, SetMinHeight, (int), void), asCALL_THISCALL);
  712. engine->RegisterObjectMethod("ToolTip", "void set_minHeight(int)", asMETHODPR(ToolTip, SetMinHeight, (int), void), asCALL_THISCALL);
  713. // void UIElement::SetMinOffset(const IntVector2& offset) | File: ../UI/UIElement.h
  714. engine->RegisterObjectMethod("ToolTip", "void SetMinOffset(const IntVector2&in)", asMETHODPR(ToolTip, SetMinOffset, (const IntVector2&), void), asCALL_THISCALL);
  715. engine->RegisterObjectMethod("ToolTip", "void set_minOffset(const IntVector2&in)", asMETHODPR(ToolTip, SetMinOffset, (const IntVector2&), void), asCALL_THISCALL);
  716. // void UIElement::SetMinSize(const IntVector2& minSize) | File: ../UI/UIElement.h
  717. engine->RegisterObjectMethod("ToolTip", "void SetMinSize(const IntVector2&in)", asMETHODPR(ToolTip, SetMinSize, (const IntVector2&), void), asCALL_THISCALL);
  718. engine->RegisterObjectMethod("ToolTip", "void set_minSize(const IntVector2&in)", asMETHODPR(ToolTip, SetMinSize, (const IntVector2&), void), asCALL_THISCALL);
  719. // void UIElement::SetMinSize(int width, int height) | File: ../UI/UIElement.h
  720. engine->RegisterObjectMethod("ToolTip", "void SetMinSize(int, int)", asMETHODPR(ToolTip, SetMinSize, (int, int), void), asCALL_THISCALL);
  721. // void UIElement::SetMinWidth(int width) | File: ../UI/UIElement.h
  722. engine->RegisterObjectMethod("ToolTip", "void SetMinWidth(int)", asMETHODPR(ToolTip, SetMinWidth, (int), void), asCALL_THISCALL);
  723. engine->RegisterObjectMethod("ToolTip", "void set_minWidth(int)", asMETHODPR(ToolTip, SetMinWidth, (int), void), asCALL_THISCALL);
  724. // void UIElement::SetName(const String& name) | File: ../UI/UIElement.h
  725. engine->RegisterObjectMethod("ToolTip", "void SetName(const String&in)", asMETHODPR(ToolTip, SetName, (const String&), void), asCALL_THISCALL);
  726. engine->RegisterObjectMethod("ToolTip", "void set_name(const String&in)", asMETHODPR(ToolTip, SetName, (const String&), void), asCALL_THISCALL);
  727. // void Animatable::SetObjectAnimation(ObjectAnimation* objectAnimation) | File: ../Scene/Animatable.h
  728. engine->RegisterObjectMethod("ToolTip", "void SetObjectAnimation(ObjectAnimation@+)", asMETHODPR(ToolTip, SetObjectAnimation, (ObjectAnimation*), void), asCALL_THISCALL);
  729. engine->RegisterObjectMethod("ToolTip", "void set_objectAnimation(ObjectAnimation@+)", asMETHODPR(ToolTip, SetObjectAnimation, (ObjectAnimation*), void), asCALL_THISCALL);
  730. // void Animatable::SetObjectAnimationAttr(const ResourceRef& value) | File: ../Scene/Animatable.h
  731. engine->RegisterObjectMethod("ToolTip", "void SetObjectAnimationAttr(const ResourceRef&in)", asMETHODPR(ToolTip, SetObjectAnimationAttr, (const ResourceRef&), void), asCALL_THISCALL);
  732. // void UIElement::SetOpacity(float opacity) | File: ../UI/UIElement.h
  733. engine->RegisterObjectMethod("ToolTip", "void SetOpacity(float)", asMETHODPR(ToolTip, SetOpacity, (float), void), asCALL_THISCALL);
  734. engine->RegisterObjectMethod("ToolTip", "void set_opacity(float)", asMETHODPR(ToolTip, SetOpacity, (float), void), asCALL_THISCALL);
  735. // void UIElement::SetParent(UIElement* parent, unsigned index=M_MAX_UNSIGNED) | File: ../UI/UIElement.h
  736. engine->RegisterObjectMethod("ToolTip", "void SetParent(UIElement@+, uint = M_MAX_UNSIGNED)", asMETHODPR(ToolTip, SetParent, (UIElement*, unsigned), void), asCALL_THISCALL);
  737. // void UIElement::SetPivot(const Vector2& pivot) | File: ../UI/UIElement.h
  738. engine->RegisterObjectMethod("ToolTip", "void SetPivot(const Vector2&in)", asMETHODPR(ToolTip, SetPivot, (const Vector2&), void), asCALL_THISCALL);
  739. engine->RegisterObjectMethod("ToolTip", "void set_pivot(const Vector2&in)", asMETHODPR(ToolTip, SetPivot, (const Vector2&), void), asCALL_THISCALL);
  740. // void UIElement::SetPivot(float x, float y) | File: ../UI/UIElement.h
  741. engine->RegisterObjectMethod("ToolTip", "void SetPivot(float, float)", asMETHODPR(ToolTip, SetPivot, (float, float), void), asCALL_THISCALL);
  742. // void UIElement::SetPosition(const IntVector2& position) | File: ../UI/UIElement.h
  743. engine->RegisterObjectMethod("ToolTip", "void SetPosition(const IntVector2&in)", asMETHODPR(ToolTip, SetPosition, (const IntVector2&), void), asCALL_THISCALL);
  744. engine->RegisterObjectMethod("ToolTip", "void set_position(const IntVector2&in)", asMETHODPR(ToolTip, SetPosition, (const IntVector2&), void), asCALL_THISCALL);
  745. // void UIElement::SetPosition(int x, int y) | File: ../UI/UIElement.h
  746. engine->RegisterObjectMethod("ToolTip", "void SetPosition(int, int)", asMETHODPR(ToolTip, SetPosition, (int, int), void), asCALL_THISCALL);
  747. // void UIElement::SetPriority(int priority) | File: ../UI/UIElement.h
  748. engine->RegisterObjectMethod("ToolTip", "void SetPriority(int)", asMETHODPR(ToolTip, SetPriority, (int), void), asCALL_THISCALL);
  749. engine->RegisterObjectMethod("ToolTip", "void set_priority(int)", asMETHODPR(ToolTip, SetPriority, (int), void), asCALL_THISCALL);
  750. // void UIElement::SetRenderTexture(Texture2D* texture) | File: ../UI/UIElement.h
  751. engine->RegisterObjectMethod("ToolTip", "void SetRenderTexture(Texture2D@+)", asMETHODPR(ToolTip, SetRenderTexture, (Texture2D*), void), asCALL_THISCALL);
  752. // void UIElement::SetSelected(bool enable) | File: ../UI/UIElement.h
  753. engine->RegisterObjectMethod("ToolTip", "void SetSelected(bool)", asMETHODPR(ToolTip, SetSelected, (bool), void), asCALL_THISCALL);
  754. engine->RegisterObjectMethod("ToolTip", "void set_selected(bool)", asMETHODPR(ToolTip, SetSelected, (bool), void), asCALL_THISCALL);
  755. // void UIElement::SetSize(const IntVector2& size) | File: ../UI/UIElement.h
  756. engine->RegisterObjectMethod("ToolTip", "void SetSize(const IntVector2&in)", asMETHODPR(ToolTip, SetSize, (const IntVector2&), void), asCALL_THISCALL);
  757. engine->RegisterObjectMethod("ToolTip", "void set_size(const IntVector2&in)", asMETHODPR(ToolTip, SetSize, (const IntVector2&), void), asCALL_THISCALL);
  758. // void UIElement::SetSize(int width, int height) | File: ../UI/UIElement.h
  759. engine->RegisterObjectMethod("ToolTip", "void SetSize(int, int)", asMETHODPR(ToolTip, SetSize, (int, int), void), asCALL_THISCALL);
  760. // void UIElement::SetSortChildren(bool enable) | File: ../UI/UIElement.h
  761. engine->RegisterObjectMethod("ToolTip", "void SetSortChildren(bool)", asMETHODPR(ToolTip, SetSortChildren, (bool), void), asCALL_THISCALL);
  762. engine->RegisterObjectMethod("ToolTip", "void set_sortChildren(bool)", asMETHODPR(ToolTip, SetSortChildren, (bool), void), asCALL_THISCALL);
  763. // bool UIElement::SetStyle(const String& styleName, XMLFile* file=nullptr) | File: ../UI/UIElement.h
  764. engine->RegisterObjectMethod("ToolTip", "bool SetStyle(const String&in, XMLFile@+ = null)", asMETHODPR(ToolTip, SetStyle, (const String&, XMLFile*), bool), asCALL_THISCALL);
  765. // bool UIElement::SetStyle(const XMLElement& element) | File: ../UI/UIElement.h
  766. engine->RegisterObjectMethod("ToolTip", "bool SetStyle(const XMLElement&in)", asMETHODPR(ToolTip, SetStyle, (const XMLElement&), bool), asCALL_THISCALL);
  767. // bool UIElement::SetStyleAuto(XMLFile* file=nullptr) | File: ../UI/UIElement.h
  768. engine->RegisterObjectMethod("ToolTip", "bool SetStyleAuto(XMLFile@+ = null)", asMETHODPR(ToolTip, SetStyleAuto, (XMLFile*), bool), asCALL_THISCALL);
  769. // void UIElement::SetTags(const StringVector& tags) | File: ../UI/UIElement.h
  770. // Error: type "const StringVector&" can not automatically bind
  771. // void Serializable::SetTemporary(bool enable) | File: ../Scene/Serializable.h
  772. engine->RegisterObjectMethod("ToolTip", "void SetTemporary(bool)", asMETHODPR(ToolTip, SetTemporary, (bool), void), asCALL_THISCALL);
  773. engine->RegisterObjectMethod("ToolTip", "void set_temporary(bool)", asMETHODPR(ToolTip, SetTemporary, (bool), void), asCALL_THISCALL);
  774. // void UIElement::SetTraversalMode(TraversalMode traversalMode) | File: ../UI/UIElement.h
  775. engine->RegisterObjectMethod("ToolTip", "void SetTraversalMode(TraversalMode)", asMETHODPR(ToolTip, SetTraversalMode, (TraversalMode), void), asCALL_THISCALL);
  776. engine->RegisterObjectMethod("ToolTip", "void set_traversalMode(TraversalMode)", asMETHODPR(ToolTip, SetTraversalMode, (TraversalMode), void), asCALL_THISCALL);
  777. // void UIElement::SetUseDerivedOpacity(bool enable) | File: ../UI/UIElement.h
  778. engine->RegisterObjectMethod("ToolTip", "void SetUseDerivedOpacity(bool)", asMETHODPR(ToolTip, SetUseDerivedOpacity, (bool), void), asCALL_THISCALL);
  779. engine->RegisterObjectMethod("ToolTip", "void set_useDerivedOpacity(bool)", asMETHODPR(ToolTip, SetUseDerivedOpacity, (bool), void), asCALL_THISCALL);
  780. // void UIElement::SetVar(StringHash key, const Variant& value) | File: ../UI/UIElement.h
  781. engine->RegisterObjectMethod("ToolTip", "void SetVar(StringHash, const Variant&in)", asMETHODPR(ToolTip, SetVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  782. // void UIElement::SetVerticalAlignment(VerticalAlignment align) | File: ../UI/UIElement.h
  783. engine->RegisterObjectMethod("ToolTip", "void SetVerticalAlignment(VerticalAlignment)", asMETHODPR(ToolTip, SetVerticalAlignment, (VerticalAlignment), void), asCALL_THISCALL);
  784. engine->RegisterObjectMethod("ToolTip", "void set_verticalAlignment(VerticalAlignment)", asMETHODPR(ToolTip, SetVerticalAlignment, (VerticalAlignment), void), asCALL_THISCALL);
  785. // void UIElement::SetVisible(bool enable) | File: ../UI/UIElement.h
  786. engine->RegisterObjectMethod("ToolTip", "void SetVisible(bool)", asMETHODPR(ToolTip, SetVisible, (bool), void), asCALL_THISCALL);
  787. engine->RegisterObjectMethod("ToolTip", "void set_visible(bool)", asMETHODPR(ToolTip, SetVisible, (bool), void), asCALL_THISCALL);
  788. // void UIElement::SetWidth(int width) | File: ../UI/UIElement.h
  789. engine->RegisterObjectMethod("ToolTip", "void SetWidth(int)", asMETHODPR(ToolTip, SetWidth, (int), void), asCALL_THISCALL);
  790. engine->RegisterObjectMethod("ToolTip", "void set_width(int)", asMETHODPR(ToolTip, SetWidth, (int), void), asCALL_THISCALL);
  791. // void UIElement::SortChildren() | File: ../UI/UIElement.h
  792. engine->RegisterObjectMethod("ToolTip", "void SortChildren()", asMETHODPR(ToolTip, SortChildren, (), void), asCALL_THISCALL);
  793. // void Object::SubscribeToEvent(StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  794. // Error: type "EventHandler*" can not automatically bind
  795. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  796. // Error: type "EventHandler*" can not automatically bind
  797. // void Object::SubscribeToEvent(StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  798. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  799. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  800. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  801. // explicit ToolTip::ToolTip(Context* context) | File: ../UI/ToolTip.h
  802. engine->RegisterObjectBehaviour("ToolTip", asBEHAVE_FACTORY, "ToolTip@+ f()", asFUNCTION(ToolTip_ToolTip_Context), asCALL_CDECL);
  803. // void Object::UnsubscribeFromAllEvents() | File: ../Core/Object.h
  804. engine->RegisterObjectMethod("ToolTip", "void UnsubscribeFromAllEvents()", asMETHODPR(ToolTip, UnsubscribeFromAllEvents, (), void), asCALL_THISCALL);
  805. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  806. engine->RegisterObjectMethod("ToolTip", "void UnsubscribeFromAllEventsExcept(Array<StringHash>@+, bool)", asFUNCTION(ToolTip_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool), asCALL_CDECL_OBJFIRST);
  807. // void Object::UnsubscribeFromEvent(StringHash eventType) | File: ../Core/Object.h
  808. engine->RegisterObjectMethod("ToolTip", "void UnsubscribeFromEvent(StringHash)", asMETHODPR(ToolTip, UnsubscribeFromEvent, (StringHash), void), asCALL_THISCALL);
  809. // void Object::UnsubscribeFromEvent(Object* sender, StringHash eventType) | File: ../Core/Object.h
  810. engine->RegisterObjectMethod("ToolTip", "void UnsubscribeFromEvent(Object@+, StringHash)", asMETHODPR(ToolTip, UnsubscribeFromEvent, (Object*, StringHash), void), asCALL_THISCALL);
  811. // void Object::UnsubscribeFromEvents(Object* sender) | File: ../Core/Object.h
  812. engine->RegisterObjectMethod("ToolTip", "void UnsubscribeFromEvents(Object@+)", asMETHODPR(ToolTip, UnsubscribeFromEvents, (Object*), void), asCALL_THISCALL);
  813. // void ToolTip::Update(float timeStep) override | File: ../UI/ToolTip.h
  814. engine->RegisterObjectMethod("ToolTip", "void Update(float)", asMETHODPR(ToolTip, Update, (float), void), asCALL_THISCALL);
  815. // void UIElement::UpdateLayout() | File: ../UI/UIElement.h
  816. engine->RegisterObjectMethod("ToolTip", "void UpdateLayout()", asMETHODPR(ToolTip, UpdateLayout, (), void), asCALL_THISCALL);
  817. // int RefCounted::WeakRefs() const | File: ../Container/RefCounted.h
  818. engine->RegisterObjectMethod("ToolTip", "int WeakRefs() const", asMETHODPR(ToolTip, WeakRefs, () const, int), asCALL_THISCALL);
  819. engine->RegisterObjectMethod("ToolTip", "int get_weakRefs() const", asMETHODPR(ToolTip, WeakRefs, () const, int), asCALL_THISCALL);
  820. // void Serializable::WriteDeltaUpdate(Serializer& dest, const DirtyBits& attributeBits, unsigned char timeStamp) | File: ../Scene/Serializable.h
  821. engine->RegisterObjectMethod("ToolTip", "void WriteDeltaUpdate(Serializer&, const DirtyBits&in, uint8)", asMETHODPR(ToolTip, WriteDeltaUpdate, (Serializer&, const DirtyBits&, unsigned char), void), asCALL_THISCALL);
  822. // void Serializable::WriteInitialDeltaUpdate(Serializer& dest, unsigned char timeStamp) | File: ../Scene/Serializable.h
  823. engine->RegisterObjectMethod("ToolTip", "void WriteInitialDeltaUpdate(Serializer&, uint8)", asMETHODPR(ToolTip, WriteInitialDeltaUpdate, (Serializer&, unsigned char), void), asCALL_THISCALL);
  824. // void Serializable::WriteLatestDataUpdate(Serializer& dest, unsigned char timeStamp) | File: ../Scene/Serializable.h
  825. engine->RegisterObjectMethod("ToolTip", "void WriteLatestDataUpdate(Serializer&, uint8)", asMETHODPR(ToolTip, WriteLatestDataUpdate, (Serializer&, unsigned char), void), asCALL_THISCALL);
  826. #ifdef REGISTER_MANUAL_PART_UIElement
  827. REGISTER_MANUAL_PART_UIElement(ToolTip, "ToolTip")
  828. #endif
  829. #ifdef REGISTER_MANUAL_PART_Animatable
  830. REGISTER_MANUAL_PART_Animatable(ToolTip, "ToolTip")
  831. #endif
  832. #ifdef REGISTER_MANUAL_PART_Serializable
  833. REGISTER_MANUAL_PART_Serializable(ToolTip, "ToolTip")
  834. #endif
  835. #ifdef REGISTER_MANUAL_PART_Object
  836. REGISTER_MANUAL_PART_Object(ToolTip, "ToolTip")
  837. #endif
  838. #ifdef REGISTER_MANUAL_PART_RefCounted
  839. REGISTER_MANUAL_PART_RefCounted(ToolTip, "ToolTip")
  840. #endif
  841. #ifdef REGISTER_MANUAL_PART_ToolTip
  842. REGISTER_MANUAL_PART_ToolTip(ToolTip, "ToolTip")
  843. #endif
  844. RegisterSubclass<UIElement, ToolTip>(engine, "UIElement", "ToolTip");
  845. RegisterSubclass<Animatable, ToolTip>(engine, "Animatable", "ToolTip");
  846. RegisterSubclass<Serializable, ToolTip>(engine, "Serializable", "ToolTip");
  847. RegisterSubclass<Object, ToolTip>(engine, "Object", "ToolTip");
  848. RegisterSubclass<RefCounted, ToolTip>(engine, "RefCounted", "ToolTip");
  849. // IntVector2 TouchState::delta_ | File: ../Input/Input.h
  850. engine->RegisterObjectProperty("TouchState", "IntVector2 delta", offsetof(TouchState, delta_));
  851. // IntVector2 TouchState::lastPosition_ | File: ../Input/Input.h
  852. engine->RegisterObjectProperty("TouchState", "IntVector2 lastPosition", offsetof(TouchState, lastPosition_));
  853. // IntVector2 TouchState::position_ | File: ../Input/Input.h
  854. engine->RegisterObjectProperty("TouchState", "IntVector2 position", offsetof(TouchState, position_));
  855. // float TouchState::pressure_ | File: ../Input/Input.h
  856. engine->RegisterObjectProperty("TouchState", "float pressure", offsetof(TouchState, pressure_));
  857. // WeakPtr<UIElement> TouchState::touchedElement_ | File: ../Input/Input.h
  858. // Error: type "WeakPtr<UIElement>" can not automatically bind
  859. // int TouchState::touchID_ | File: ../Input/Input.h
  860. engine->RegisterObjectProperty("TouchState", "int touchID", offsetof(TouchState, touchID_));
  861. // UIElement* TouchState::GetTouchedElement() | File: ../Input/Input.h
  862. engine->RegisterObjectMethod("TouchState", "UIElement@+ GetTouchedElement()", asMETHODPR(TouchState, GetTouchedElement, (), UIElement*), asCALL_THISCALL);
  863. engine->RegisterObjectMethod("TouchState", "UIElement@+ get_touchedElement()", asMETHODPR(TouchState, GetTouchedElement, (), UIElement*), asCALL_THISCALL);
  864. // TouchState& TouchState::operator=(const TouchState&) | Possible implicitly-declared
  865. RegisterImplicitlyDeclaredAssignOperatorIfPossible<TouchState>(engine, "TouchState");
  866. engine->RegisterObjectBehaviour("TouchState", asBEHAVE_ADDREF, "void f()", asFUNCTION(FakeAddRef), asCALL_CDECL_OBJLAST);
  867. engine->RegisterObjectBehaviour("TouchState", asBEHAVE_RELEASE, "void f()", asFUNCTION(FakeReleaseRef), asCALL_CDECL_OBJLAST);
  868. #ifdef REGISTER_MANUAL_PART_TouchState
  869. REGISTER_MANUAL_PART_TouchState(TouchState, "TouchState")
  870. #endif
  871. // float TrailPoint::elapsedLength_ | File: ../Graphics/RibbonTrail.h
  872. engine->RegisterObjectProperty("TrailPoint", "float elapsedLength", offsetof(TrailPoint, elapsedLength_));
  873. // Vector3 TrailPoint::forward_ | File: ../Graphics/RibbonTrail.h
  874. engine->RegisterObjectProperty("TrailPoint", "Vector3 forward", offsetof(TrailPoint, forward_));
  875. // float TrailPoint::lifetime_ | File: ../Graphics/RibbonTrail.h
  876. engine->RegisterObjectProperty("TrailPoint", "float lifetime", offsetof(TrailPoint, lifetime_));
  877. // TrailPoint* TrailPoint::next_ | File: ../Graphics/RibbonTrail.h
  878. // TrailPoint* can not be registered
  879. // Vector3 TrailPoint::parentPos_ | File: ../Graphics/RibbonTrail.h
  880. engine->RegisterObjectProperty("TrailPoint", "Vector3 parentPos", offsetof(TrailPoint, parentPos_));
  881. // Vector3 TrailPoint::position_ | File: ../Graphics/RibbonTrail.h
  882. engine->RegisterObjectProperty("TrailPoint", "Vector3 position", offsetof(TrailPoint, position_));
  883. // float TrailPoint::sortDistance_ | File: ../Graphics/RibbonTrail.h
  884. engine->RegisterObjectProperty("TrailPoint", "float sortDistance", offsetof(TrailPoint, sortDistance_));
  885. // TrailPoint::TrailPoint(const Vector3& position, const Vector3& forward) | File: ../Graphics/RibbonTrail.h
  886. engine->RegisterObjectBehaviour("TrailPoint", asBEHAVE_CONSTRUCT, "void f(const Vector3&in, const Vector3&in)", asFUNCTION(TrailPoint_TrailPoint_Vector3_Vector3), asCALL_CDECL_OBJFIRST);
  887. // TrailPoint::~TrailPoint() | Implicitly-declared
  888. engine->RegisterObjectBehaviour("TrailPoint", asBEHAVE_DESTRUCT, "void f()", asFUNCTION(TrailPoint_Destructor), asCALL_CDECL_OBJFIRST);
  889. // TrailPoint& TrailPoint::operator=(const TrailPoint&) | Possible implicitly-declared
  890. RegisterImplicitlyDeclaredAssignOperatorIfPossible<TrailPoint>(engine, "TrailPoint");
  891. #ifdef REGISTER_MANUAL_PART_TrailPoint
  892. REGISTER_MANUAL_PART_TrailPoint(TrailPoint, "TrailPoint")
  893. #endif
  894. #ifdef URHO3D_PHYSICS
  895. // UniquePtr<btTriangleInfoMap> TriangleMeshData::infoMap_ | File: ../Physics/CollisionShape.h
  896. // Error: type "UniquePtr<btTriangleInfoMap>" can not automatically bind
  897. // UniquePtr<TriangleMeshInterface> TriangleMeshData::meshInterface_ | File: ../Physics/CollisionShape.h
  898. // Error: type "UniquePtr<TriangleMeshInterface>" can not automatically bind
  899. // UniquePtr<btBvhTriangleMeshShape> TriangleMeshData::shape_ | File: ../Physics/CollisionShape.h
  900. // Error: type "UniquePtr<btBvhTriangleMeshShape>" can not automatically bind
  901. // void RefCounted::AddRef() | File: ../Container/RefCounted.h
  902. engine->RegisterObjectBehaviour("TriangleMeshData", asBEHAVE_ADDREF, "void f()", asMETHODPR(TriangleMeshData, AddRef, (), void), asCALL_THISCALL);
  903. // RefCount* RefCounted::RefCountPtr() | File: ../Container/RefCounted.h
  904. // Error: type "RefCount*" can not automatically bind
  905. // int RefCounted::Refs() const | File: ../Container/RefCounted.h
  906. engine->RegisterObjectMethod("TriangleMeshData", "int Refs() const", asMETHODPR(TriangleMeshData, Refs, () const, int), asCALL_THISCALL);
  907. engine->RegisterObjectMethod("TriangleMeshData", "int get_refs() const", asMETHODPR(TriangleMeshData, Refs, () const, int), asCALL_THISCALL);
  908. // void RefCounted::ReleaseRef() | File: ../Container/RefCounted.h
  909. engine->RegisterObjectBehaviour("TriangleMeshData", asBEHAVE_RELEASE, "void f()", asMETHODPR(TriangleMeshData, ReleaseRef, (), void), asCALL_THISCALL);
  910. // TriangleMeshData::TriangleMeshData(Model* model, unsigned lodLevel) | File: ../Physics/CollisionShape.h
  911. engine->RegisterObjectBehaviour("TriangleMeshData", asBEHAVE_FACTORY, "TriangleMeshData@+ f(Model@+, uint)", asFUNCTION(TriangleMeshData_TriangleMeshData_Model_unsigned), asCALL_CDECL);
  912. // explicit TriangleMeshData::TriangleMeshData(CustomGeometry* custom) | File: ../Physics/CollisionShape.h
  913. engine->RegisterObjectBehaviour("TriangleMeshData", asBEHAVE_FACTORY, "TriangleMeshData@+ f(CustomGeometry@+)", asFUNCTION(TriangleMeshData_TriangleMeshData_CustomGeometry), asCALL_CDECL);
  914. // int RefCounted::WeakRefs() const | File: ../Container/RefCounted.h
  915. engine->RegisterObjectMethod("TriangleMeshData", "int WeakRefs() const", asMETHODPR(TriangleMeshData, WeakRefs, () const, int), asCALL_THISCALL);
  916. engine->RegisterObjectMethod("TriangleMeshData", "int get_weakRefs() const", asMETHODPR(TriangleMeshData, WeakRefs, () const, int), asCALL_THISCALL);
  917. #ifdef REGISTER_MANUAL_PART_CollisionGeometryData
  918. REGISTER_MANUAL_PART_CollisionGeometryData(TriangleMeshData, "TriangleMeshData")
  919. #endif
  920. #ifdef REGISTER_MANUAL_PART_RefCounted
  921. REGISTER_MANUAL_PART_RefCounted(TriangleMeshData, "TriangleMeshData")
  922. #endif
  923. #ifdef REGISTER_MANUAL_PART_TriangleMeshData
  924. REGISTER_MANUAL_PART_TriangleMeshData(TriangleMeshData, "TriangleMeshData")
  925. #endif
  926. RegisterSubclass<CollisionGeometryData, TriangleMeshData>(engine, "CollisionGeometryData", "TriangleMeshData");
  927. RegisterSubclass<RefCounted, TriangleMeshData>(engine, "RefCounted", "TriangleMeshData");
  928. #endif
  929. }
  930. }