30 lines
401 B
Go
30 lines
401 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
|
|
SetConstraints(Constraints)
|
|
Size() Size
|
|
SetSize(size Size)
|
|
Attributes() Attributes
|
|
SetAttributes(attrs Attributes)
|
|
}
|