Add DocFX documentation.

This commit is contained in:
2024-10-14 20:01:01 +02:00
parent f68f8f4b02
commit 9397073901
118 changed files with 64687 additions and 76 deletions

View File

@@ -0,0 +1,664 @@
### YamlMime:ManagedReference
items:
- uid: Voile.UI.Container
commentId: T:Voile.UI.Container
id: Container
parent: Voile.UI
children:
- Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem)
- Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement)
- Voile.UI.Container.RearrangeChildren
- Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2)
langs:
- csharp
- vb
name: Container
nameWithType: Container
fullName: Voile.UI.Container
type: Class
source:
remote:
path: Voile/Source/UI/Container.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: Container
path: Source/UI/Container.cs
startLine: 8
assemblies:
- Voile
namespace: Voile.UI
summary: A basic container for UI elements. All container's children will update their constraints based on container's sizing and positioning.
example: []
syntax:
content: 'public class Container : UIElement'
content.vb: Public Class Container Inherits UIElement
inheritance:
- System.Object
- Voile.UI.UIElement
derivedClasses:
- Voile.UI.Panel
inheritedMembers:
- Voile.UI.UIElement.Rect
- Voile.UI.UIElement.VerticalSizeFlags
- Voile.UI.UIElement.HorizontalSizeFlags
- Voile.UI.UIElement.ExpandRatio
- Voile.UI.UIElement.AddChild(Voile.UI.UIElement)
- Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem)
- Voile.UI.UIElement.children
- Voile.UI.UIElement.parent
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
- uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2)
commentId: M:Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2)
id: UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2)
parent: Voile.UI.Container
langs:
- csharp
- vb
name: UpdateRect(Vector2, Vector2)
nameWithType: Container.UpdateRect(Vector2, Vector2)
fullName: Voile.UI.Container.UpdateRect(System.Numerics.Vector2, System.Numerics.Vector2)
type: Method
source:
remote:
path: Voile/Source/UI/Container.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: UpdateRect
path: Source/UI/Container.cs
startLine: 15
assemblies:
- Voile
namespace: Voile.UI
summary: Updates the sizes of the container and rearranges its children.
example: []
syntax:
content: public void UpdateRect(Vector2 position, Vector2 size)
parameters:
- id: position
type: System.Numerics.Vector2
description: ''
- id: size
type: System.Numerics.Vector2
description: ''
content.vb: Public Sub UpdateRect(position As Vector2, size As Vector2)
overload: Voile.UI.Container.UpdateRect*
- uid: Voile.UI.Container.RearrangeChildren
commentId: M:Voile.UI.Container.RearrangeChildren
id: RearrangeChildren
parent: Voile.UI.Container
langs:
- csharp
- vb
name: RearrangeChildren()
nameWithType: Container.RearrangeChildren()
fullName: Voile.UI.Container.RearrangeChildren()
type: Method
source:
remote:
path: Voile/Source/UI/Container.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: RearrangeChildren
path: Source/UI/Container.cs
startLine: 23
assemblies:
- Voile
namespace: Voile.UI
syntax:
content: protected void RearrangeChildren()
content.vb: Protected Sub RearrangeChildren()
overload: Voile.UI.Container.RearrangeChildren*
- uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement)
commentId: M:Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement)
id: RearrangeChild(System.Int32,Voile.UI.UIElement)
parent: Voile.UI.Container
langs:
- csharp
- vb
name: RearrangeChild(int, UIElement)
nameWithType: Container.RearrangeChild(int, UIElement)
fullName: Voile.UI.Container.RearrangeChild(int, Voile.UI.UIElement)
type: Method
source:
remote:
path: Voile/Source/UI/Container.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: RearrangeChild
path: Source/UI/Container.cs
startLine: 37
assemblies:
- Voile
namespace: Voile.UI
syntax:
content: protected virtual void RearrangeChild(int idx, UIElement child)
parameters:
- id: idx
type: System.Int32
- id: child
type: Voile.UI.UIElement
content.vb: Protected Overridable Sub RearrangeChild(idx As Integer, child As UIElement)
overload: Voile.UI.Container.RearrangeChild*
nameWithType.vb: Container.RearrangeChild(Integer, UIElement)
fullName.vb: Voile.UI.Container.RearrangeChild(Integer, Voile.UI.UIElement)
name.vb: RearrangeChild(Integer, UIElement)
- uid: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem)
commentId: M:Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem)
id: OnRender(Voile.Rendering.RenderSystem)
parent: Voile.UI.Container
langs:
- csharp
- vb
name: OnRender(RenderSystem)
nameWithType: Container.OnRender(RenderSystem)
fullName: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem)
type: Method
source:
remote:
path: Voile/Source/UI/Container.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: OnRender
path: Source/UI/Container.cs
startLine: 39
assemblies:
- Voile
namespace: Voile.UI
example: []
syntax:
content: protected override void OnRender(RenderSystem renderer)
parameters:
- id: renderer
type: Voile.Rendering.RenderSystem
content.vb: Protected Overrides Sub OnRender(renderer As RenderSystem)
overridden: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem)
overload: Voile.UI.Container.OnRender*
references:
- uid: Voile.UI
commentId: N:Voile.UI
href: Voile.html
name: Voile.UI
nameWithType: Voile.UI
fullName: Voile.UI
spec.csharp:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.UI
name: UI
href: Voile.UI.html
spec.vb:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.UI
name: UI
href: Voile.UI.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: Voile.UI.UIElement
commentId: T:Voile.UI.UIElement
parent: Voile.UI
href: Voile.UI.UIElement.html
name: UIElement
nameWithType: UIElement
fullName: Voile.UI.UIElement
- uid: Voile.UI.UIElement.Rect
commentId: P:Voile.UI.UIElement.Rect
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_Rect
name: Rect
nameWithType: UIElement.Rect
fullName: Voile.UI.UIElement.Rect
- uid: Voile.UI.UIElement.VerticalSizeFlags
commentId: P:Voile.UI.UIElement.VerticalSizeFlags
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_VerticalSizeFlags
name: VerticalSizeFlags
nameWithType: UIElement.VerticalSizeFlags
fullName: Voile.UI.UIElement.VerticalSizeFlags
- uid: Voile.UI.UIElement.HorizontalSizeFlags
commentId: P:Voile.UI.UIElement.HorizontalSizeFlags
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_HorizontalSizeFlags
name: HorizontalSizeFlags
nameWithType: UIElement.HorizontalSizeFlags
fullName: Voile.UI.UIElement.HorizontalSizeFlags
- uid: Voile.UI.UIElement.ExpandRatio
commentId: P:Voile.UI.UIElement.ExpandRatio
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_ExpandRatio
name: ExpandRatio
nameWithType: UIElement.ExpandRatio
fullName: Voile.UI.UIElement.ExpandRatio
- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement)
commentId: M:Voile.UI.UIElement.AddChild(Voile.UI.UIElement)
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_
name: AddChild(UIElement)
nameWithType: UIElement.AddChild(UIElement)
fullName: Voile.UI.UIElement.AddChild(Voile.UI.UIElement)
spec.csharp:
- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement)
name: AddChild
href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_
- name: (
- uid: Voile.UI.UIElement
name: UIElement
href: Voile.UI.UIElement.html
- name: )
spec.vb:
- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement)
name: AddChild
href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_
- name: (
- uid: Voile.UI.UIElement
name: UIElement
href: Voile.UI.UIElement.html
- name: )
- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem)
commentId: M:Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem)
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_
name: Render(RenderSystem)
nameWithType: UIElement.Render(RenderSystem)
fullName: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem)
spec.csharp:
- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem)
name: Render
href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_
- name: (
- uid: Voile.Rendering.RenderSystem
name: RenderSystem
href: Voile.Rendering.RenderSystem.html
- name: )
spec.vb:
- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem)
name: Render
href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_
- name: (
- uid: Voile.Rendering.RenderSystem
name: RenderSystem
href: Voile.Rendering.RenderSystem.html
- name: )
- uid: Voile.UI.UIElement.children
commentId: F:Voile.UI.UIElement.children
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_children
name: children
nameWithType: UIElement.children
fullName: Voile.UI.UIElement.children
- uid: Voile.UI.UIElement.parent
commentId: F:Voile.UI.UIElement.parent
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_parent
name: parent
nameWithType: UIElement.parent
fullName: Voile.UI.UIElement.parent
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: Voile.UI.Container.UpdateRect*
commentId: Overload:Voile.UI.Container.UpdateRect
href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_
name: UpdateRect
nameWithType: Container.UpdateRect
fullName: Voile.UI.Container.UpdateRect
- uid: System.Numerics.Vector2
commentId: T:System.Numerics.Vector2
parent: System.Numerics
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2
name: Vector2
nameWithType: Vector2
fullName: System.Numerics.Vector2
- uid: System.Numerics
commentId: N:System.Numerics
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Numerics
nameWithType: System.Numerics
fullName: System.Numerics
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Numerics
name: Numerics
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.numerics
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Numerics
name: Numerics
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.numerics
- uid: Voile.UI.Container.RearrangeChildren*
commentId: Overload:Voile.UI.Container.RearrangeChildren
href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren
name: RearrangeChildren
nameWithType: Container.RearrangeChildren
fullName: Voile.UI.Container.RearrangeChildren
- uid: Voile.UI.Container.RearrangeChild*
commentId: Overload:Voile.UI.Container.RearrangeChild
href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_
name: RearrangeChild
nameWithType: Container.RearrangeChild
fullName: Voile.UI.Container.RearrangeChild
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
- uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem)
commentId: M:Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem)
parent: Voile.UI.UIElement
href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_
name: OnRender(RenderSystem)
nameWithType: UIElement.OnRender(RenderSystem)
fullName: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem)
spec.csharp:
- uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem)
name: OnRender
href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_
- name: (
- uid: Voile.Rendering.RenderSystem
name: RenderSystem
href: Voile.Rendering.RenderSystem.html
- name: )
spec.vb:
- uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem)
name: OnRender
href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_
- name: (
- uid: Voile.Rendering.RenderSystem
name: RenderSystem
href: Voile.Rendering.RenderSystem.html
- name: )
- uid: Voile.UI.Container.OnRender*
commentId: Overload:Voile.UI.Container.OnRender
href: Voile.UI.Container.html#Voile_UI_Container_OnRender_Voile_Rendering_RenderSystem_
name: OnRender
nameWithType: Container.OnRender
fullName: Voile.UI.Container.OnRender
- uid: Voile.Rendering.RenderSystem
commentId: T:Voile.Rendering.RenderSystem
parent: Voile.Rendering
href: Voile.Rendering.RenderSystem.html
name: RenderSystem
nameWithType: RenderSystem
fullName: Voile.Rendering.RenderSystem
- uid: Voile.Rendering
commentId: N:Voile.Rendering
href: Voile.html
name: Voile.Rendering
nameWithType: Voile.Rendering
fullName: Voile.Rendering
spec.csharp:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Rendering
name: Rendering
href: Voile.Rendering.html
spec.vb:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Rendering
name: Rendering
href: Voile.Rendering.html