Travis CI: API documentation update at 2018-04-08 14:32:33 UTC.

[ci package]

Commit: 6241c9623e

Message: Add PCH workaround include.
This commit is contained in:
urho3d-travis-ci 2018-04-08 14:32:33 +00:00
parent 6241c9623e
commit 7af464c0ef
4 changed files with 454 additions and 10 deletions

View File

@ -14512,6 +14512,214 @@ int weakRefs;
int width;
};
class UISelectable
{
public:
UISelectable();
UISelectable(const String&in);
// Methods:
void AddChild(UIElement);
void AddTag(const String&);
void AddTags(const String&, int8 = ';');
void ApplyAttributes();
void BringToFront();
UIElement CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED);
void DisableLayoutUpdate();
IntVector2 ElementToScreen(const IntVector2&);
void EnableLayoutUpdate();
uint FindChild(UIElement) const;
Variant GetAttribute(const String&) const;
ValueAnimation GetAttributeAnimation(const String&) const;
float GetAttributeAnimationSpeed(const String&) const;
float GetAttributeAnimationTime(const String&) const;
WrapMode GetAttributeAnimationWrapMode(const String&) const;
Variant GetAttributeDefault(const String&) const;
UIElement GetChild(const String&, bool = false) const;
UIElement GetChild(const StringHash&, const Variant& = Variant ( ), bool = false) const;
Array<UIElement> GetChildren(bool = false) const;
Array<UIElement> GetChildrenWithTag(const String&, bool = false) const;
UIElement GetElementEventSender() const;
bool GetInterceptNetworkUpdate(const String&) const;
uint GetNumChildren(bool) const;
bool HasSubscribedToEvent(Object, const String&);
bool HasSubscribedToEvent(const String&);
bool HasTag(const String&) const;
void InsertChild(uint, UIElement);
bool IsChildOf(UIElement) const;
bool IsInside(IntVector2, bool);
bool IsInsideCombined(IntVector2, bool);
bool Load(File);
bool Load(VectorBuffer&);
UIElement LoadChildXML(XMLFile, XMLFile);
UIElement LoadChildXML(const XMLElement&, XMLFile);
bool LoadJSON(const JSONValue&);
bool LoadXML(File);
bool LoadXML(VectorBuffer&);
bool LoadXML(XMLFile, XMLFile);
bool LoadXML(const XMLElement&, XMLFile);
bool LoadXML(const XMLElement&);
void MarkNetworkUpdate() const;
void Remove();
void RemoveAllChildren();
void RemoveAllTags();
void RemoveAttributeAnimation(const String&);
void RemoveChild(UIElement, uint = 0);
void RemoveChild(uint);
void RemoveInstanceDefault();
void RemoveObjectAnimation();
bool RemoveTag(const String&);
void ResetDeepEnabled();
void ResetToDefault();
bool Save(File) const;
bool Save(VectorBuffer&) const;
bool SaveJSON(JSONValue&) const;
bool SaveXML(File, const String& = "\t");
bool SaveXML(VectorBuffer&, const String& = "\t");
bool SaveXML(XMLElement&) const;
IntVector2 ScreenToElement(const IntVector2&);
void SendEvent(const String&, VariantMap& = VariantMap ( ));
void SetAlignment(HorizontalAlignment, VerticalAlignment);
void SetAnimationTime(float);
bool SetAttribute(const String&, const Variant&);
void SetAttributeAnimation(const String&, ValueAnimation, WrapMode = WM_LOOP, float = 1.0f);
void SetAttributeAnimationSpeed(const String&, float);
void SetAttributeAnimationTime(const String&, float);
void SetAttributeAnimationWrapMode(const String&, WrapMode);
void SetDeepEnabled(bool);
void SetEnabledRecursive(bool);
void SetFixedHeight(int);
void SetFixedSize(int, int);
void SetFixedWidth(int);
void SetInterceptNetworkUpdate(const String&, bool);
void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ));
void SetMaxAnchor(float, float);
void SetMaxSize(int, int);
void SetMinAnchor(float, float);
void SetMinSize(int, int);
void SetParent(UIElement, uint = M_MAX_UNSIGNED);
void SetPivot(float, float);
void SetPosition(int, int);
void SetSize(int, int);
bool SetStyle(const String&, XMLFile = null);
bool SetStyle(const XMLElement&);
bool SetStyleAuto(XMLFile = null);
void UpdateLayout();
const Variant& GetVar(const StringHash&);
// Properties:
bool animationEnabled;
/* readonly */
Array<Variant> attributeDefaults;
/* readonly */
Array<AttributeInfo> attributeInfos;
Array<Variant> attributes;
bool bringToBack;
bool bringToFront;
/* readonly */
String category;
/* readonly */
IntVector2 childOffset;
/* readonly */
Array<UIElement> children;
IntRect clipBorder;
bool clipChildren;
/* writeonly */
Color color;
/* readonly */
bool colorGradient;
Array<Color> colors;
/* readonly */
IntRect combinedScreenRect;
XMLFile defaultStyle;
/* readonly */
float derivedOpacity;
/* readonly */
uint dragButtonCombo;
/* readonly */
int dragButtonCount;
uint dragDropMode;
bool editable;
bool elementEventSender;
bool enableAnchor;
bool enabled;
/* readonly */
bool enabledSelf;
/* readonly */
bool fixedHeight;
/* readonly */
bool fixedSize;
/* readonly */
bool fixedWidth;
bool focus;
FocusMode focusMode;
int height;
HorizontalAlignment horizontalAlignment;
Color hoverColor;
/* readonly */
bool hovering;
int indent;
int indentSpacing;
/* readonly */
int indentWidth;
bool internal;
IntRect layoutBorder;
Vector2 layoutFlexScale;
LayoutMode layoutMode;
int layoutSpacing;
Vector2 maxAnchor;
int maxHeight;
IntVector2 maxOffset;
IntVector2 maxSize;
int maxWidth;
Vector2 minAnchor;
int minHeight;
IntVector2 minOffset;
IntVector2 minSize;
int minWidth;
String name;
/* readonly */
uint numAllChildren;
/* readonly */
uint numAttributes;
/* readonly */
uint numChildren;
ObjectAnimation objectAnimation;
float opacity;
UIElement parent;
Vector2 pivot;
IntVector2 position;
int priority;
/* readonly */
int refs;
/* readonly */
UIElement root;
/* readonly */
IntVector2 screenPosition;
bool selected;
Color selectionColor;
IntVector2 size;
bool sortChildren;
String style;
/* readonly */
Array<String> tags;
bool temporary;
TraversalMode traversalMode;
/* readonly */
StringHash type;
/* readonly */
String typeName;
bool useDerivedOpacity;
/* readonly */
VariantMap vars;
VerticalAlignment verticalAlignment;
bool visible;
/* readonly */
bool visibleEffective;
/* readonly */
int weakRefs;
int width;
};
class ValueAnimation
{
public:

View File

@ -212,6 +212,7 @@ namespace Urho3D
<a href="#Class_UI"><b>UI</b></a>
<a href="#Class_UIComponent"><b>UIComponent</b></a>
<a href="#Class_UIElement"><b>UIElement</b></a>
<a href="#Class_UISelectable"><b>UISelectable</b></a>
<a href="#Class_ValueAnimation"><b>ValueAnimation</b></a>
<a href="#Class_Variant"><b>Variant</b></a>
<a href="#Class_VariantMap"><b>VariantMap</b></a>
@ -6638,7 +6639,7 @@ Properties:
- unsigned lodLevel (readonly)
<a name="Class_Text"></a>
### Text : UIElement
### Text : UISelectable
Methods:
@ -6654,8 +6655,6 @@ Methods:
- void SetWordwrap(bool enable)
- void SetSelection(unsigned start, unsigned length = M_MAX_UNSIGNED)
- void ClearSelection()
- void SetSelectionColor(const Color& color)
- void SetHoverColor(const Color& color)
- void SetTextEffect(TextEffect textEffect)
- void SetEffectShadowOffset(const IntVector2& offset)
- void SetEffectStrokeThickness(int thickness)
@ -6671,8 +6670,6 @@ Methods:
- bool GetWordwrap() const
- unsigned GetSelectionStart() const
- unsigned GetSelectionLength() const
- const Color& GetSelectionColor() const
- const Color& GetHoverColor() const
- TextEffect GetTextEffect() const
- const IntVector2& GetEffectShadowOffset() const
- int GetEffectStrokeThickness() const
@ -6698,8 +6695,6 @@ Properties:
- bool autoLocalizable
- unsigned selectionStart (readonly)
- unsigned selectionLength (readonly)
- Color& selectionColor
- Color& hoverColor
- TextEffect textEffect
- IntVector2& effectShadowOffset
- int effectStrokeThickness
@ -7461,6 +7456,24 @@ Properties:
- TraversalMode traversalMode
- bool elementEventSender
<a name="Class_UISelectable"></a>
### UISelectable : UIElement
Methods:
- UISelectable() (GC)
- UISelectable* new()
- void delete()
- void SetSelectionColor(const Color& color)
- void SetHoverColor(const Color& color)
- const Color& GetSelectionColor() const
- const Color& GetHoverColor() const
Properties:
- Color& selectionColor
- Color& hoverColor
<a name="Class_ValueAnimation"></a>
### ValueAnimation : Resource

View File

@ -2407,6 +2407,8 @@ namespace Urho3D
- %Indent %Spacing : int
- %Variables : VariantMap
- %Tags : StringVector
- %Selection %Color : Color
- %Hover %Color : Color
- %Font : ResourceRef
- %Font %Size : float
- %Text : String
@ -2414,8 +2416,6 @@ namespace Urho3D
- %Row %Spacing : float
- %Word %Wrap : bool
- %Auto %Localizable : bool
- %Selection %Color : Color
- %Hover %Color : Color
- %Text %Effect : int
- %Shadow %Offset : IntVector2
- %Stroke %Thickness : int
@ -2539,6 +2539,49 @@ namespace Urho3D
- %Variables : VariantMap
- %Tags : StringVector
### UISelectable
- %Name : String
- %Position : IntVector2
- %Size : IntVector2
- %Min %Size : IntVector2
- %Max %Size : IntVector2
- %Horiz %Alignment : int
- %Vert %Alignment : int
- %Min %Anchor : Vector2
- %Max %Anchor : Vector2
- %Min %Offset : IntVector2
- %Max %Offset : IntVector2
- %Pivot : Vector2
- %Enable %Anchor : bool
- %Clip %Border : IntRect
- %Priority : int
- %Opacity : float
- %Color : Color
- %Top %Left %Color : Color
- %Top %Right %Color : Color
- %Bottom %Left %Color : Color
- %Bottom %Right %Color : Color
- %Is %Enabled : bool
- %Is %Editable : bool
- %Is %Selected : bool
- %Is %Visible : bool
- %Bring %To %Front : bool
- %Bring %To %Back : bool
- %Clip %Children : bool
- %Use %Derived %Opacity : bool
- %Focus %Mode : int
- %Drag %And %Drop %Mode : int
- %Layout %Mode : int
- %Layout %Spacing : int
- %Layout %Border : IntRect
- %Layout %Flex %Scale : Vector2
- %Indent : int
- %Indent %Spacing : int
- %Variables : VariantMap
- %Tags : StringVector
- %Selection %Color : Color
- %Hover %Color : Color
### View3D
- %Name : String
- %Position : IntVector2
@ -2885,6 +2928,7 @@ namespace Urho3D
<a href="#Class_UI"><b>UI</b></a>
<a href="#Class_UIComponent"><b>UIComponent</b></a>
<a href="#Class_UIElement"><b>UIElement</b></a>
<a href="#Class_UISelectable"><b>UISelectable</b></a>
<a href="#Class_ValueAnimation"><b>ValueAnimation</b></a>
<a href="#Class_Variant"><b>Variant</b></a>
<a href="#Class_VariantMap"><b>VariantMap</b></a>
@ -15213,6 +15257,185 @@ Properties:
- int weakRefs // readonly
- int width
<a name="Class_UISelectable"></a>
### UISelectable
Methods:
- void AddChild(UIElement@)
- void AddTag(const String&)
- void AddTags(const String&, int8 = ';')
- void ApplyAttributes()
- void BringToFront()
- UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
- void DisableLayoutUpdate()
- IntVector2 ElementToScreen(const IntVector2&)
- void EnableLayoutUpdate()
- uint FindChild(UIElement@) const
- Variant GetAttribute(const String&) const
- ValueAnimation@ GetAttributeAnimation(const String&) const
- float GetAttributeAnimationSpeed(const String&) const
- float GetAttributeAnimationTime(const String&) const
- WrapMode GetAttributeAnimationWrapMode(const String&) const
- Variant GetAttributeDefault(const String&) const
- UIElement@ GetChild(const String&, bool = false) const
- UIElement@ GetChild(const StringHash&, const Variant& = Variant ( ), bool = false) const
- UIElement@[]@ GetChildren(bool = false) const
- UIElement@[]@ GetChildrenWithTag(const String&, bool = false) const
- UIElement@ GetElementEventSender() const
- bool GetInterceptNetworkUpdate(const String&) const
- uint GetNumChildren(bool) const
- bool HasSubscribedToEvent(Object@, const String&)
- bool HasSubscribedToEvent(const String&)
- bool HasTag(const String&) const
- void InsertChild(uint, UIElement@)
- bool IsChildOf(UIElement@) const
- bool IsInside(IntVector2, bool)
- bool IsInsideCombined(IntVector2, bool)
- bool Load(File@)
- bool Load(VectorBuffer&)
- UIElement@ LoadChildXML(XMLFile@, XMLFile@)
- UIElement@ LoadChildXML(const XMLElement&, XMLFile@)
- bool LoadJSON(const JSONValue&)
- bool LoadXML(File@)
- bool LoadXML(VectorBuffer&)
- bool LoadXML(XMLFile@, XMLFile@)
- bool LoadXML(const XMLElement&, XMLFile@)
- bool LoadXML(const XMLElement&)
- void MarkNetworkUpdate() const
- void Remove()
- void RemoveAllChildren()
- void RemoveAllTags()
- void RemoveAttributeAnimation(const String&)
- void RemoveChild(UIElement@, uint = 0)
- void RemoveChild(uint)
- void RemoveInstanceDefault()
- void RemoveObjectAnimation()
- bool RemoveTag(const String&)
- void ResetDeepEnabled()
- void ResetToDefault()
- bool Save(File@) const
- bool Save(VectorBuffer&) const
- bool SaveJSON(JSONValue&) const
- bool SaveXML(File@, const String& = "\t")
- bool SaveXML(VectorBuffer&, const String& = "\t")
- bool SaveXML(XMLElement&) const
- IntVector2 ScreenToElement(const IntVector2&)
- void SendEvent(const String&, VariantMap& = VariantMap ( ))
- void SetAlignment(HorizontalAlignment, VerticalAlignment)
- void SetAnimationTime(float)
- bool SetAttribute(const String&, const Variant&)
- void SetAttributeAnimation(const String&, ValueAnimation@, WrapMode = WM_LOOP, float = 1.0f)
- void SetAttributeAnimationSpeed(const String&, float)
- void SetAttributeAnimationTime(const String&, float)
- void SetAttributeAnimationWrapMode(const String&, WrapMode)
- void SetDeepEnabled(bool)
- void SetEnabledRecursive(bool)
- void SetFixedHeight(int)
- void SetFixedSize(int, int)
- void SetFixedWidth(int)
- void SetInterceptNetworkUpdate(const String&, bool)
- void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
- void SetMaxAnchor(float, float)
- void SetMaxSize(int, int)
- void SetMinAnchor(float, float)
- void SetMinSize(int, int)
- void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
- void SetPivot(float, float)
- void SetPosition(int, int)
- void SetSize(int, int)
- bool SetStyle(const String&, XMLFile@ = null)
- bool SetStyle(const XMLElement&)
- bool SetStyleAuto(XMLFile@ = null)
- void UpdateLayout()
- const Variant& GetVar(const StringHash&)
Properties:
- bool animationEnabled
- Variant[] attributeDefaults // readonly
- AttributeInfo[] attributeInfos // readonly
- Variant[] attributes
- bool bringToBack
- bool bringToFront
- String category // readonly
- IntVector2 childOffset // readonly
- UIElement@[] children // readonly
- IntRect clipBorder
- bool clipChildren
- Color color // writeonly
- bool colorGradient // readonly
- Color[] colors
- IntRect combinedScreenRect // readonly
- XMLFile@ defaultStyle
- float derivedOpacity // readonly
- uint dragButtonCombo // readonly
- int dragButtonCount // readonly
- uint dragDropMode
- bool editable
- bool elementEventSender
- bool enableAnchor
- bool enabled
- bool enabledSelf // readonly
- bool fixedHeight // readonly
- bool fixedSize // readonly
- bool fixedWidth // readonly
- bool focus
- FocusMode focusMode
- int height
- HorizontalAlignment horizontalAlignment
- Color hoverColor
- bool hovering // readonly
- int indent
- int indentSpacing
- int indentWidth // readonly
- bool internal
- IntRect layoutBorder
- Vector2 layoutFlexScale
- LayoutMode layoutMode
- int layoutSpacing
- Vector2 maxAnchor
- int maxHeight
- IntVector2 maxOffset
- IntVector2 maxSize
- int maxWidth
- Vector2 minAnchor
- int minHeight
- IntVector2 minOffset
- IntVector2 minSize
- int minWidth
- String name
- uint numAllChildren // readonly
- uint numAttributes // readonly
- uint numChildren // readonly
- ObjectAnimation@ objectAnimation
- float opacity
- UIElement@ parent
- Vector2 pivot
- IntVector2 position
- int priority
- int refs // readonly
- UIElement@ root // readonly
- IntVector2 screenPosition // readonly
- bool selected
- Color selectionColor
- IntVector2 size
- bool sortChildren
- String style
- String[]@ tags // readonly
- bool temporary
- TraversalMode traversalMode
- StringHash type // readonly
- String typeName // readonly
- bool useDerivedOpacity
- VariantMap vars // readonly
- VerticalAlignment verticalAlignment
- bool visible
- bool visibleEffective // readonly
- int weakRefs // readonly
- int width
<a name="Class_ValueAnimation"></a>
### ValueAnimation

View File

@ -1 +1 @@
0.1.110
0.1.111