Fyne API canvas

canvas


import "fyne.io/fyne/canvas"

Usage

type Circle

type Circle struct {
	Position1 fyne.Position // The current top-left position of the Circle
	Position2 fyne.Position // The current bottomright position of the Circle
	Hidden    bool          // Is this circle currently hidden

	FillColor   color.Color // The circle fill color
	StrokeColor color.Color // The circle stroke color
	StrokeWidth float32     // The stroke width of the circle
}

Circle describes a colored circle primitive in a Fyne canvas

func NewCircle

func NewCircle(color color.Color) *Circle

NewCircle returns a new Circle instance

func (*Circle) Hide

func (l *Circle) Hide()

Hide will set this circle to not be visible

func (*Circle) MinSize

func (l *Circle) MinSize() fyne.Size

MinSize for a Circle simply returns Size{1, 1} as there is no explicit content

func (*Circle) Move

func (l *Circle) Move(pos fyne.Position)

Move the circle object to a new position, relative to its parent / canvas

func (*Circle) Position

func (l *Circle) Position() fyne.Position

Position gets the current top-left position of this circle object, relative to its parent / canvas

func (*Circle) Refresh

func (l *Circle) Refresh()

Refresh causes this object to be redrawn in it’s current state

func (*Circle) Resize

func (l *Circle) Resize(size fyne.Size)

Resize sets a new bottom-right position for the circle object

func (*Circle) Show

func (l *Circle) Show()

Show will set this circle to be visible

func (*Circle) Size

func (l *Circle) Size() fyne.Size

Size returns the current size of bounding box for this circle object

func (*Circle) Visible

func (l *Circle) Visible() bool

Visible returns true if this circle is visible, false otherwise