Documentation ¶
Overview ¶
Package glfw provides a full Fyne desktop driver that uses the system OpenGL libraries. This supports Windows, Mac OS X and Linux using the gl and glfw packages from go-gl.
Index ¶
- func NewGLDriver() fyne.Driver
- type MenuBar
- func (b *MenuBar) CreateRenderer() fyne.WidgetRenderer
- func (b *MenuBar) Hide()
- func (b *MenuBar) IsActive() bool
- func (b *MenuBar) MinSize() fyne.Size
- func (b *MenuBar) Move(pos fyne.Position)
- func (b *MenuBar) Refresh()
- func (b *MenuBar) Resize(size fyne.Size)
- func (b *MenuBar) Show()
- func (b *MenuBar) Toggle()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewGLDriver ¶
func NewGLDriver() fyne.Driver
NewGLDriver sets up a new Driver instance implemented using the GLFW Go library and OpenGL bindings.
Types ¶
type MenuBar ¶
type MenuBar struct { widget.Base Items []fyne.CanvasObject // contains filtered or unexported fields }
MenuBar is a widget for displaying a fyne.MainMenu in a bar.
func NewMenuBar ¶
func NewMenuBar(mainMenu *fyne.MainMenu, canvas fyne.Canvas) *MenuBar
NewMenuBar creates a menu bar populated with items from the passed main menu structure.
func (*MenuBar) CreateRenderer ¶
func (b *MenuBar) CreateRenderer() fyne.WidgetRenderer
CreateRenderer returns a new renderer for the menu bar.
Implements: fyne.Widget
func (*MenuBar) IsActive ¶
IsActive returns whether the menu bar is active or not. An active menu bar shows the current selected menu and should have the focus.
func (*MenuBar) MinSize ¶
func (b *MenuBar) MinSize() fyne.Size
MinSize returns the minimal size of the menu bar.
Implements: fyne.Widget
func (*MenuBar) Move ¶
func (b *MenuBar) Move(pos fyne.Position)
Move sets the position of the widget relative to its parent.
Implements: fyne.Widget
func (*MenuBar) Refresh ¶
func (b *MenuBar) Refresh()
Refresh triggers a redraw of the menu bar.
Implements: fyne.Widget
func (*MenuBar) Resize ¶
func (b *MenuBar) Resize(size fyne.Size)
Resize resizes the menu bar. It only affects the width because menu bars are always displayed with their minimal height.
Implements: fyne.Widget