File: tree_view.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 (26 lines) | stat: -rw-r--r-- 535 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
package gtk_mock

import "github.com/twstrike/gotk3adapter/gtki"

type MockTreeView struct {
	MockContainer
}

func (*MockTreeView) CollapseRow(v1 gtki.TreePath) bool {
	return false
}

func (*MockTreeView) ExpandAll() {
}

func (*MockTreeView) GetCursor() (gtki.TreePath, gtki.TreeViewColumn) {
	return nil, nil
}

func (*MockTreeView) GetSelection() (gtki.TreeSelection, error) {
	return nil, nil
}

func (*MockTreeView) GetPathAtPos(v1 int, v2 int, v3 gtki.TreePath, v4 gtki.TreeViewColumn, v5 *int, v6 *int) bool {
	return false
}