File: notebook.go

package info (click to toggle)
golang-github-twstrike-gotk3adapter 0.0~git20170505.0.901a95d%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,232 kB
  • sloc: ruby: 478; makefile: 4
file content (66 lines) | stat: -rw-r--r-- 1,321 bytes parent folder | download | duplicates (3)
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
package gtka

import (
	"github.com/gotk3/gotk3/gtk"
	"github.com/twstrike/gotk3adapter/gtki"
)

type notebook struct {
	*container
	internal *gtk.Notebook
}

func wrapNotebookSimple(v *gtk.Notebook) *notebook {
	if v == nil {
		return nil
	}
	return &notebook{wrapContainerSimple(&v.Container), v}
}

func wrapNotebook(v *gtk.Notebook, e error) (*notebook, error) {
	return wrapNotebookSimple(v), e
}

func unwrapNotebook(v gtki.Notebook) *gtk.Notebook {
	if v == nil {
		return nil
	}
	return v.(*notebook).internal
}

func (v *notebook) NextPage() {
	v.internal.NextPage()
}

func (v *notebook) PrevPage() {
	v.internal.PrevPage()
}

func (v *notebook) GetCurrentPage() int {
	return v.internal.GetCurrentPage()
}

func (v *notebook) GetNPages() int {
	return v.internal.GetNPages()
}

func (v *notebook) SetCurrentPage(v1 int) {
	v.internal.SetCurrentPage(v1)
}

func (v *notebook) SetShowTabs(v1 bool) {
	v.internal.SetShowTabs(v1)
}

func (v *notebook) AppendPage(v1, v2 gtki.Widget) int {
	return v.internal.AppendPage(unwrapWidget(v1), unwrapWidget(v2))
}

func (v *notebook) GetNthPage(v1 int) (gtki.Widget, error) {
	vx1, vx2 := v.internal.GetNthPage(v1)
	return Wrap(vx1).(gtki.Widget), vx2
}

func (v *notebook) SetTabLabelText(v1 gtki.Widget, v2 string) {
	v.internal.SetTabLabelText(unwrapWidget(v1), v2)
}