Travis CI: API documentation update at 2016-08-16 11:54:58 UTC.

[ci package]

Commit: 5ce39a2955

Message: Support setting a custom size for the UI root element (UI::SetCustomSize()) instead of always auto-resizing according to window size. When renderui renderpath command is used, use the current viewport size for UI rendering projection matrix to avoid distortion. If UI root element is smaller than the screen, apply wrapping in GetElementAt(), with the assumption that a copy is being rendered next to it. Related to #1514.
This commit is contained in:
urho3d-travis-ci 2016-08-16 11:54:58 +00:00
parent 5ce39a2955
commit 6b4825d798
4 changed files with 11 additions and 3 deletions

View File

@ -12657,6 +12657,7 @@ UIElement LoadLayout(XMLFile, XMLFile);
bool SaveLayout(File, UIElement);
bool SaveLayout(VectorBuffer&, UIElement);
void SendEvent(const String&, VariantMap& = VariantMap ( ));
void SetCustomSize(int, int);
void SetFocusElement(UIElement, bool = false);
void SetHeight(float);
void SetWidth(float);
@ -12669,6 +12670,7 @@ String clipBoardText;
Cursor cursor;
/* readonly */
IntVector2 cursorPosition;
IntVector2 customSize;
float defaultToolTipDelay;
float doubleClickInterval;
int dragBeginDistance;

View File

@ -6644,8 +6644,10 @@ Methods:
- void SetUseMutableGlyphs(bool enable)
- void SetForceAutoHint(bool enable)
- void SetScale(float scale)
- void SetWidth(float size)
- void SetHeight(float size)
- void SetWidth(float width)
- void SetHeight(float height)
- void SetCustomSize(const IntVector2& size)
- void SetCustomSize(int width, int height)
- UIElement* GetRoot() const
- UIElement* GetRootModalElement() const
- Cursor* GetCursor() const
@ -6669,6 +6671,7 @@ Methods:
- bool HasModalElement() const
- bool IsDragging() const
- float GetScale() const
- const IntVector2& GetCustomSize() const
Properties:
@ -6691,6 +6694,7 @@ Properties:
- bool forceAutoHint
- bool modalElement (readonly)
- float scale
- IntVector2& customSize
<a name="Class_UIElement"></a>
### UIElement : Animatable

View File

@ -13683,6 +13683,7 @@ Methods:
- bool SaveLayout(File@, UIElement@)
- bool SaveLayout(VectorBuffer&, UIElement@)
- void SendEvent(const String&, VariantMap& = VariantMap ( ))
- void SetCustomSize(int, int)
- void SetFocusElement(UIElement@, bool = false)
- void SetHeight(float)
- void SetWidth(float)
@ -13694,6 +13695,7 @@ Properties:
- String clipBoardText
- Cursor@ cursor
- IntVector2 cursorPosition // readonly
- IntVector2 customSize
- float defaultToolTipDelay
- float doubleClickInterval
- int dragBeginDistance

View File

@ -1 +1 @@
0.0.249
0.0.250