| 18 | } |
| 19 | |
| 20 | type Window interface { |
| 21 | Display() |
| 22 | Clear() |
| 23 | Relocate() bool |
| 24 | GetView() *View |
| 25 | SetView(v *View) |
| 26 | LocFromVisual(vloc buffer.Loc) buffer.Loc |
| 27 | Resize(w, h int) |
| 28 | SetActive(b bool) |
| 29 | IsActive() bool |
| 30 | } |
| 31 | |
| 32 | type BWindow interface { |
| 33 | Window |
no outgoing calls
no test coverage detected