andlabs-ui/window.go

123 lines
3.1 KiB
Go
Raw Normal View History

2015-12-12 12:37:36 -06:00
// 12 december 2015
package ui
import (
"unsafe"
)
// #include "pkgui.h"
2015-12-12 12:37:36 -06:00
import "C"
// Window is a Control that represents a top-level window.
// A Window contains one child Control that occupies the
// entirety of the window. Though a Window is a Control,
// a Window cannot be the child of another Control.
type Window struct {
2018-08-11 21:02:16 -05:00
ControlBase
2015-12-12 12:37:36 -06:00
w *C.uiWindow
child Control
onClosing func(w *Window) bool
}
// NewWindow creates a new Window.
func NewWindow(title string, width int, height int, hasMenubar bool) *Window {
w := new(Window)
ctitle := C.CString(title)
w.w = C.uiNewWindow(ctitle, C.int(width), C.int(height), frombool(hasMenubar))
freestr(ctitle)
C.pkguiWindowOnClosing(w.w)
2015-12-12 12:37:36 -06:00
2018-08-11 21:02:16 -05:00
w.ControlBase = NewControlBase(w, uintptr(unsafe.Pointer(w.w)))
2015-12-12 12:37:36 -06:00
return w
}
// Destroy destroys the Window. If the Window has a child,
// Destroy calls Destroy on that as well.
func (w *Window) Destroy() {
2018-08-11 21:02:16 -05:00
w.Hide() // first hide the window, in case anything in the below if statement forces an immediate redraw
2015-12-12 12:37:36 -06:00
if w.child != nil {
c := w.child
w.SetChild(nil)
c.Destroy()
}
2018-08-11 21:02:16 -05:00
w.ControlBase.Destroy()
2015-12-12 12:37:36 -06:00
}
// Title returns the Window's title.
func (w *Window) Title() string {
ctitle := C.uiWindowTitle(w.w)
title := C.GoString(ctitle)
C.uiFreeText(ctitle)
return title
}
// SetTitle sets the Window's title to title.
func (w *Window) SetTitle(title string) {
ctitle := C.CString(title)
C.uiWindowSetTitle(w.w, ctitle)
freestr(ctitle)
}
2018-08-11 21:02:16 -05:00
// TODO ContentSize
// TODO SetContentSize
// TODO Fullscreen
// TODO SetFullscreen
// TODO OnContentSizeChanged
2015-12-12 12:37:36 -06:00
// OnClosing registers f to be run when the user clicks the Window's
// close button. Only one function can be registered at a time.
// If f returns true, the window is destroyed with the Destroy method.
// If f returns false, or if OnClosing is never called, the window is not
// destroyed and is kept visible.
func (w *Window) OnClosing(f func(*Window) bool) {
w.onClosing = f
}
//export pkguiDoWindowOnClosing
func pkguiDoWindowOnClosing(ww *C.uiWindow, data unsafe.Pointer) C.int {
2018-08-11 21:02:16 -05:00
w := ControlFromLibui(uintptr(unsafe.Pointer(ww))).(*Window)
2015-12-12 12:37:36 -06:00
if w.onClosing == nil {
return 0
}
if w.onClosing(w) {
w.Destroy()
}
return 0
}
2018-08-11 21:02:16 -05:00
// Borderless returns whether the Window is borderless.
func (w *Window) Borderless() bool {
return tobool(C.uiWindowBorderless(w.w))
}
// SetBorderless sets the Window to be borderless or not.
func (w *Window) SetBorderless(borderless bool) {
C.uiWindowSetBorderless(w.w, frombool(borderless))
}
2015-12-12 12:37:36 -06:00
// SetChild sets the Window's child to child. If child is nil, the Window
// will not have a child.
func (w *Window) SetChild(child Control) {
w.child = child
c := (*C.uiControl)(nil)
if w.child != nil {
2015-12-12 14:52:43 -06:00
c = touiControl(w.child.LibuiControl())
2015-12-12 12:37:36 -06:00
}
C.uiWindowSetChild(w.w, c)
}
// Margined returns whether the Window has margins around its child.
func (w *Window) Margined() bool {
return tobool(C.uiWindowMargined(w.w))
}
// SetMargined controls whether the Window has margins around its
// child. The size of the margins are determined by the OS and its
// best practices.
func (w *Window) SetMargined(margined bool) {
C.uiWindowSetMargined(w.w, frombool(margined))
}