27 lines
307 B
Go
27 lines
307 B
Go
package exhibit
|
|
|
|
type Border struct {
|
|
Top bool
|
|
Bottom bool
|
|
Left bool
|
|
Right bool
|
|
}
|
|
type Constraints struct {
|
|
Top bool
|
|
Bottom bool
|
|
Left bool
|
|
Right bool
|
|
}
|
|
|
|
type Size struct {
|
|
X int
|
|
Y int
|
|
}
|
|
|
|
|
|
type Widget interface {
|
|
Render() [][]Cell
|
|
Constraints() Constraints
|
|
SetSize(size Size)
|
|
}
|