-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwalk.go
70 lines (52 loc) · 1.09 KB
/
walk.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
// Copyright 2011 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package walk
func LogErrors() bool {
return logErrors
}
func SetLogErrors(v bool) {
logErrors = v
}
func PanicOnError() bool {
return panicOnError
}
func SetPanicOnError(v bool) {
panicOnError = v
}
func TranslationFunc() TranslationFunction {
return translation
}
func SetTranslationFunc(f TranslationFunction) {
translation = f
}
type TranslationFunction func(source string, context ...string) string
var translation TranslationFunction
func tr(source string, context ...string) string {
if translation == nil {
return source
}
return translation(source, context...)
}
type Disposable interface {
Dispose()
}
type Disposables struct {
items []Disposable
done bool
}
func (d *Disposables) Add(item Disposable) {
d.items = append(d.items, item)
}
func (d *Disposables) Spare() {
d.done = true
}
func (d *Disposables) Treat() {
if d.done {
return
}
for _, item := range d.items {
item.Dispose()
}
d.done = true
}