-
Notifications
You must be signed in to change notification settings - Fork 0
/
tab.go
143 lines (110 loc) · 2.19 KB
/
tab.go
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package gig
import (
"strconv"
"github.com/leonsal/gig/imgui"
)
type TabBar struct {
Widget
strId imgui.CString
flags imgui.TabBarFlags
}
func NewTabBar() *TabBar {
t := new(TabBar)
t.Init(t)
t.strId.SetString(strconv.Itoa(t.ID()))
t.SetRender(func() {
if imgui.BeginTabBarCS(t.strId, t.flags) {
t.RenderChildren()
imgui.EndTabBar()
}
})
return t
}
func (t *TabBar) Save(pt **TabBar) *TabBar {
*pt = t
return t
}
func (t *TabBar) Flags() imgui.TabBarFlags {
return t.flags
}
func (t *TabBar) SetFlags(flags imgui.TabBarFlags) *TabBar {
t.flags = flags
return t
}
type TabItem struct {
Widget
label imgui.CString
flags imgui.TabItemFlags
open bool
popen *bool
}
func NewTabItem(label string) *TabItem {
ti := new(TabItem)
ti.Init(ti)
ti.label.SetString(label)
ti.SetRender(func() {
if imgui.BeginTabItemCS(ti.label, ti.popen, ti.flags) {
ti.RenderChildren()
imgui.EndTabItem()
}
if ti.popen != nil && ti.open == false {
ti.visible = false
ti.open = true
}
})
return ti
}
func (ti *TabItem) SetLabel(label string) *TabItem {
ti.label.SetString(label)
return ti
}
func (ti *TabItem) Flags() imgui.TabItemFlags {
return ti.flags
}
func (ti *TabItem) SetFlags(flags imgui.TabItemFlags) *TabItem {
ti.flags = flags
return ti
}
func (ti *TabItem) SetCanClose(canclose bool) *TabItem {
if canclose {
ti.open = true
ti.popen = &ti.open
} else {
ti.popen = nil
}
return ti
}
type TabItemButton struct {
Widget
label imgui.CString
flags imgui.TabItemFlags
onclick func(*TabItemButton)
}
func NewTabItemButton(label string) *TabItemButton {
ib := new(TabItemButton)
ib.Init(ib)
ib.label.SetString(label)
ib.SetRender(func() {
if imgui.TabItemButtonCS(ib.label, ib.flags) {
if ib.onclick != nil {
ib.onclick(ib)
}
}
})
return ib
}
func (ib *TabItemButton) SetLabel(label string) *TabItemButton {
ib.label.SetString(label)
return ib
}
func (ib *TabItemButton) Flags() imgui.TabItemFlags {
return ib.flags
}
func (ib *TabItemButton) SetFlags(flags imgui.TabItemFlags) *TabItemButton {
ib.flags = flags
return ib
}
func (ib *TabItemButton) SetOnClick(f func(b *TabItemButton)) *TabItemButton {
ib.onclick = f
return ib
}