diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -66,6 +66,7 @@ type GuiButton struct { W *ui.Window T *ui.Tab + Box *GuiBox AH *GuiArea // git.wit.com/wit/gui stuff @@ -78,6 +79,14 @@ type GuiButton struct { custom func (*GuiButton) } +type GuiBox struct { + W *GuiWindow + EntryMap map[string][]*GuiEntry + A *GuiArea + + UiBox *ui.Box +} + type GuiEntry struct { E *ui.Entry Edit bool @@ -96,12 +105,6 @@ type GuiEntry struct { Action string // what type of button } -type GuiBox struct { - W *GuiWindow - EntryMap map[string][]*GuiEntry - A *GuiArea -} - type GuiWindow struct { W *ui.Window T *ui.Tab |
