Skip to content

UI.DockArea

Name Mandatory Description Default Type
⬅️ Input The input of this shard is ignored. Any
Output ➡️ The output of this shard will be its input. Object
Tabs No Sequence of table objects defining tabs with title, id, closeable, contents fields. none [{Any}]None

Serves as a container for tabs defined as a sequence of table objects.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
GFX.MainWindow(Contents: {
  // Setup
  GFX.DrawQueue = ui-draw-queue
  GFX.UIPass(ui-draw-queue) >> render-steps

  // UI
  UI({
    UI.DockArea(Tabs: [
      {
        title: "Tab 1"
        contents: {
          "Tab 1 contents" | UI.Label
        }
      }
      {
        title: "Tab 2"
        contents: {
          "Tab 2 contents" | UI.Label
        }
      }
    ])
  })

  UI.Render(ui-draw-queue)
  GFX.Render(Steps: render-steps)
})

[warning] Context has 8 buffers at release (2 released, 8 kept)
[warning] Context has 5 textures at release (1 released, 5 kept)
[error] Found a dangling variable: $dock-area in wire: sample-wire (on cleanup)