forked from asticode/go-astilectron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
object.go
62 lines (54 loc) · 1.29 KB
/
object.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
package astilectron
import (
"context"
"errors"
"github.com/asticode/go-astitools/context"
)
// Object errors
var (
ErrCancellerCancelled = errors.New("canceller.cancelled")
ErrObjectDestroyed = errors.New("object.destroyed")
)
// object represents a base object
type object struct {
cancel context.CancelFunc
ctx context.Context
c *asticontext.Canceller
d *dispatcher
i *identifier
id string
w *writer
}
// newObject returns a new base object
func newObject(parentCtx context.Context, c *asticontext.Canceller, d *dispatcher, i *identifier, w *writer, id string) (o *object) {
o = &object{
c: c,
d: d,
i: i,
id: id,
w: w,
}
if parentCtx != nil {
o.ctx, o.cancel = context.WithCancel(parentCtx)
} else {
o.ctx, o.cancel = c.NewContext()
}
return
}
// isActionable checks whether any type of action is allowed on the window
func (o *object) isActionable() error {
if o.c.Cancelled() {
return ErrCancellerCancelled
} else if o.IsDestroyed() {
return ErrObjectDestroyed
}
return nil
}
// IsDestroyed checks whether the window has been destroyed
func (o *object) IsDestroyed() bool {
return o.ctx.Err() != nil
}
// On implements the Listenable interface
func (o *object) On(eventName string, l Listener) {
o.d.addListener(o.id, eventName, l)
}