1package gtki
2
3type EventBox interface {
4	Bin
5
6	SetAboveChild(bool)
7	GetAboveChild() bool
8	SetVisibleWindow(bool)
9	GetVisibleWindow() bool
10}
11
12func AssertEventBox(_ EventBox) {}
13