Skip to content

Commit 12461af

Browse files
committed
scaffolding out docs
1 parent 90523f6 commit 12461af

29 files changed

+192
-3
lines changed

docs/Getting Started.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/_Sidebar.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
- [Home](Home.md)
2+
3+
- [Built-in Widgets](built-in-widgets/Built-in-Widgets.md)
4+
5+
- [API Reference](api-reference/API-Reference.md)
6+
7+
***
8+
9+
### Getting Started
10+
- [Installation](getting-started/Installation.md)
11+
- [Your First Widget](getting-started/Your-First-Widget.md)
12+
13+
### Core Concepts
14+
- [Host](core-concepts/Host.md)
15+
- [Method Chaining](core-concepts/Method-Chaining.md)
16+
- [Lifecycle](core-concepts/Lifecycle.md)
17+
- [Hierarchy](core-concepts/Hierarchy.md)
18+
19+
### Layout
20+
- [Layout Strategies](layout/Layout-Strategies.md)
21+
- [Sizing](layout/Sizing.md)
22+
- [Padding, Margin, Alignment](layout/Padding,-Margin,-Alignment.md)
23+
24+
### Events
25+
- [Mouse & Keyboard](events/Mouse-&-Keyboard.md)
26+
- [Gamepad](events/Gamepad.md)
27+
- [Event Propagation & Capture](events/Event-Propagation-&-Capture.md)
28+
- [One-time Events](events/One-time-Events.md)
29+
30+
### State
31+
- [Computed Properties](state/Computed-Properties.md)
32+
- [Watchers](state/Watchers.md)
33+
- [State Containers](state/State-Containers.md)
34+
- [Reactive List Binding](state/Reactive-List-Binding.md)
35+
36+
### Other stuff
37+
- [Dragon Drop](etc/Dragon-Drop.md)
38+
- [Focus](etc/Focus.md)
39+
- [Tab Contexts](etc/Tab-Contexts.md)
40+
- [Styling](etc/Styling.md)
41+
42+
### Docking
43+
- [DockNode & DockSpace](docking/DockNode-&-DockSpace.md)
44+
- [Building Dockable Layouts](docking/Building-Dockable-Layouts.md)
45+
- [Resizeable Layouts](docking/Resizeable-Layouts.md)
46+
- [Persistence](docking/Persistence.md)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Widget
2+
3+
## etc.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Built-in Widgets
2+
3+
## Form Controls
4+
5+
### Button
6+
7+
### Textbutton
8+
9+
### Checkbox
10+
11+
### Radio Button
12+
13+
### Slider
14+
15+
### Textinput
16+
17+
## Display
18+
19+
## Text
20+
21+
### Image
22+
23+
### Rectangle
24+
25+
## Dropdowns & Selection
26+
27+
### Dropdown
28+
29+
### Combobox
30+
31+
### Dropdown Menu
32+
33+
### Menu
34+
35+
## Containers & Layout
36+
37+
### Group
38+
39+
### Stackpanel
40+
41+
### Horizontal Stackpanel
42+
43+
### Scroll Area
44+
45+
### Collapseable Header
46+
47+
### Tab Bar
48+
49+
### Window
50+
51+
## Tree Views
52+
53+
### Treeview
54+
55+
### Treeview Node
56+
57+
## Docking
58+
59+
### Dockspace
60+
61+
### Dockable Window
62+
63+
### Dock Node
64+
65+
### Splitter

docs/core-concepts/Hierarchy.md

Whitespace-only changes.

docs/core-concepts/Host.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The host is simply a built-in `Widget` that exists to serve as a **root** for your UI.

docs/core-concepts/Lifecycle.md

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(fluent interface)

docs/docking/Building-Dockable-Layouts.md

Whitespace-only changes.

docs/docking/DockNode-&-DockSpace.md

Whitespace-only changes.

0 commit comments

Comments
 (0)