-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrow.go
66 lines (45 loc) · 843 Bytes
/
row.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
package main
import (
"image"
"sync"
)
type Row struct {
lk *sync.Mutex
r image.Rectangle
tag Text
col **Column
ncol int
}
func NewRow(r image.Rectangle) *Row {
return nil
}
func (r *Row) Add(c *Column, x int) *Column {
return nil
}
func (r *Row) Resize(rect image.Rectangle) {
}
func (r *Row) DragCol(c *Column, _0 int) {
}
func (r *Row) Close(c *Column, dofree bool) {
}
func (r *Row) WhichCol(p image.Point) *Column {
return nil
}
func (r *Row) Which(p image.Point) *Text {
return nil
}
func (r *Row) Type(n string, p image.Point) *Text {
return nil
}
func (r *Row) Clean() int {
return 0
}
func (r *Row) Dump(file string) {
}
func (r *Row) LoadFonts(file string) {
}
func (r *Row) Load(file string, initing bool) int {
return 0
}
func AllWindows(f func(*Window, interface{}), arg interface{}) {
}