File: assistant.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 (27 lines) | stat: -rw-r--r-- 741 bytes parent folder | download | duplicates (2)
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
package gtki

type Assistant interface {
	Window
	GetCurrentPage() int
	SetCurrentPage(pageNum int)
	// GetNPages() int
	GetNthPage(pageNum int) (Widget, error)
	// PrependPage(page Widget) int
	AppendPage(page Widget) int
	// InsertPage(page Widget, position int) int
	// RemovePage(pageNum int)
	// SetPageType(page Widget, ptype gtk.AssistantPageType)
	// GetPageType(page Widget) gtk.AssistantPageType
	// SetPageTitle(page Widget, title string)
	// GetPageTitle(page Widget) string
	SetPageComplete(page Widget, complete bool)
	GetPageComplete(page Widget) bool
	// AddActionWidget(child Widget)
	// RemoveActionWidget(child Widget)
	// UpdateButtonsState()
	Commit()
	NextPage()
	PreviousPage()
}

func AssertAssistant(_ Assistant) {}