Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c7c77d8da | |||
| 8139d871cc | |||
| bb320dfcc9 | |||
| 2ab920eb26 | |||
| d8ae20d739 | |||
| 06561bb671 | |||
| a71d81af48 | |||
| bd9dbb762d | |||
| 6389556199 | |||
| 06d99b2790 | |||
| 6ab689b5c1 | |||
| 6497da69ed | |||
| 34794f4c77 | |||
| 25625e9a99 | |||
| 4cea0aa0bd | |||
| 1cb9e8091e | |||
| 68d49e1b02 | |||
| f025ec3d8a | |||
| 6fad52b335 | |||
| 8134069e1f | |||
| dca1eaefb5 | |||
| 87e81c00d3 | |||
| 224ca25000 | |||
| f99f60d642 | |||
| b4ab60df77 | |||
| a0fe7bc00f | |||
| 1ff9982e01 | |||
| ca2f9654b3 | |||
| 4d790f7264 | |||
| 49f010a8d6 | |||
| 39541e1b78 |
49
button.go
49
button.go
@@ -1,19 +1,22 @@
|
|||||||
package objects
|
package objects
|
||||||
|
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
import "git.tebibyte.media/tomo/tomo/input"
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
import "git.tebibyte.media/tomo/tomo/event"
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
import "git.tebibyte.media/tomo/objects/layouts"
|
import "git.tebibyte.media/tomo/objects/layouts"
|
||||||
|
|
||||||
var buttonLayout = layouts.NewGrid([]bool { true }, []bool { true })
|
var buttonLayout = layouts.NewGrid([]bool { true }, []bool { true })
|
||||||
var iconButtonLayout = layouts.NewGrid([]bool { false, true }, []bool { true })
|
var iconButtonLayout = layouts.NewGrid([]bool { true }, []bool { true })
|
||||||
|
var bothButtonLayout = layouts.NewGrid([]bool { false, true }, []bool { true })
|
||||||
|
|
||||||
// Button is a clickable button.
|
// Button is a clickable button.
|
||||||
type Button struct {
|
type Button struct {
|
||||||
tomo.ContainerBox
|
tomo.ContainerBox
|
||||||
|
|
||||||
label *Label
|
label *Label
|
||||||
icon *Icon
|
icon *Icon
|
||||||
|
labelActive bool
|
||||||
|
|
||||||
on struct {
|
on struct {
|
||||||
click event.FuncBroadcaster
|
click event.FuncBroadcaster
|
||||||
}
|
}
|
||||||
@@ -25,10 +28,11 @@ func NewButton (text string) *Button {
|
|||||||
ContainerBox: tomo.NewContainerBox(),
|
ContainerBox: tomo.NewContainerBox(),
|
||||||
label: NewLabel(text),
|
label: NewLabel(text),
|
||||||
}
|
}
|
||||||
theme.Apply(box, theme.R("objects", "Button", ""))
|
box.SetRole(tomo.R("objects", "Button", ""))
|
||||||
|
tomo.Apply(box)
|
||||||
box.label.SetAlign(tomo.AlignMiddle, tomo.AlignMiddle)
|
box.label.SetAlign(tomo.AlignMiddle, tomo.AlignMiddle)
|
||||||
box.Add(box.label)
|
|
||||||
box.SetLayout(buttonLayout)
|
box.SetLayout(buttonLayout)
|
||||||
|
box.SetText(text)
|
||||||
|
|
||||||
box.CaptureDND(true)
|
box.CaptureDND(true)
|
||||||
box.CaptureMouse(true)
|
box.CaptureMouse(true)
|
||||||
@@ -44,20 +48,31 @@ func NewButton (text string) *Button {
|
|||||||
// SetText sets the text of the button's label.
|
// SetText sets the text of the button's label.
|
||||||
func (this *Button) SetText (text string) {
|
func (this *Button) SetText (text string) {
|
||||||
this.label.SetText(text)
|
this.label.SetText(text)
|
||||||
|
if this.labelActive && text == "" {
|
||||||
|
this.Remove(this.label)
|
||||||
|
this.labelActive = false
|
||||||
|
}
|
||||||
|
if !this.labelActive && text != "" {
|
||||||
|
this.Add(this.label)
|
||||||
|
this.labelActive = true
|
||||||
|
}
|
||||||
|
this.applyLayout()
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetIcon sets an icon for this button.
|
// SetIcon sets an icon for this button. Setting the icon to IconUnknown will
|
||||||
// TODO: use tomo.Icon instead, use small size icons
|
// remove it.
|
||||||
func (this *Button) SetIcon (icon *Icon) {
|
func (this *Button) SetIcon (id tomo.Icon) {
|
||||||
if this.icon != nil { this.Delete(this.icon) }
|
if this.icon != nil { this.Remove(this.icon) }
|
||||||
|
|
||||||
|
var icon *Icon; if id != tomo.IconUnknown {
|
||||||
|
icon = NewIcon(id, tomo.IconSizeSmall)
|
||||||
|
}
|
||||||
this.icon = icon
|
this.icon = icon
|
||||||
|
|
||||||
if this.icon == nil {
|
if this.icon != nil {
|
||||||
this.SetLayout(buttonLayout)
|
|
||||||
} else {
|
|
||||||
this.SetLayout(iconButtonLayout)
|
|
||||||
this.Insert(this.icon, this.label)
|
this.Insert(this.icon, this.label)
|
||||||
}
|
}
|
||||||
|
this.applyLayout()
|
||||||
}
|
}
|
||||||
|
|
||||||
// OnClick specifies a function to be called when the button is clicked.
|
// OnClick specifies a function to be called when the button is clicked.
|
||||||
@@ -65,6 +80,16 @@ func (this *Button) OnClick (callback func ()) event.Cookie {
|
|||||||
return this.on.click.Connect(callback)
|
return this.on.click.Connect(callback)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *Button) applyLayout () {
|
||||||
|
if this.labelActive && this.icon == nil {
|
||||||
|
this.SetLayout(buttonLayout)
|
||||||
|
} else if !this.labelActive && this.icon != nil {
|
||||||
|
this.SetLayout(iconButtonLayout)
|
||||||
|
} else {
|
||||||
|
this.SetLayout(bothButtonLayout)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (this *Button) handleKeyUp (key input.Key, numberPad bool) {
|
func (this *Button) handleKeyUp (key input.Key, numberPad bool) {
|
||||||
if key != input.KeyEnter && key != input.Key(' ') { return }
|
if key != input.KeyEnter && key != input.Key(' ') { return }
|
||||||
this.on.click.Broadcast()
|
this.on.click.Broadcast()
|
||||||
|
|||||||
67
checkbox.go
Normal file
67
checkbox.go
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
package objects
|
||||||
|
|
||||||
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
|
||||||
|
// Checkbox is a control that can be toggled.
|
||||||
|
type Checkbox struct {
|
||||||
|
tomo.Box
|
||||||
|
value bool
|
||||||
|
on struct {
|
||||||
|
valueChange event.FuncBroadcaster
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewCheckbox creates a new checkbox with the specified value.
|
||||||
|
func NewCheckbox (value bool) *Checkbox {
|
||||||
|
box := &Checkbox {
|
||||||
|
Box: tomo.NewBox(),
|
||||||
|
}
|
||||||
|
box.SetRole(tomo.R("objects", "Checkbox", ""))
|
||||||
|
tomo.Apply(box)
|
||||||
|
box.SetValue(false)
|
||||||
|
|
||||||
|
box.OnMouseUp(box.handleMouseUp)
|
||||||
|
box.OnKeyUp(box.handleKeyUp)
|
||||||
|
box.SetFocusable(true)
|
||||||
|
return box
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetValue sets the value of the checkbox.
|
||||||
|
func (this *Checkbox) SetValue (value bool) {
|
||||||
|
this.value = value
|
||||||
|
if this.value {
|
||||||
|
this.SetTextureCenter(tomo.IconCheckboxChecked.Texture(tomo.IconSizeSmall))
|
||||||
|
} else {
|
||||||
|
this.SetTextureCenter(tomo.IconCheckboxUnchecked.Texture(tomo.IconSizeSmall))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggle toggles the value of the checkbox between true and false.
|
||||||
|
func (this *Checkbox) Toggle () {
|
||||||
|
this.SetValue(!this.Value())
|
||||||
|
}
|
||||||
|
|
||||||
|
// Value returns the value of the checkbox.
|
||||||
|
func (this *Checkbox) Value () bool {
|
||||||
|
return this.value
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnValueChange specifies a function to be called when the checkbox's value
|
||||||
|
// changes.
|
||||||
|
func (this *Checkbox) OnValueChange (callback func ()) event.Cookie {
|
||||||
|
return this.on.valueChange.Connect(callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *Checkbox) handleKeyUp (key input.Key, numberPad bool) {
|
||||||
|
if key != input.KeyEnter && key != input.Key(' ') { return }
|
||||||
|
this.Toggle()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *Checkbox) handleMouseUp (button input.Button) {
|
||||||
|
if button != input.ButtonLeft { return }
|
||||||
|
if this.MousePosition().In(this.Bounds()) {
|
||||||
|
this.Toggle()
|
||||||
|
}
|
||||||
|
}
|
||||||
20
container.go
20
container.go
@@ -1,7 +1,6 @@
|
|||||||
package objects
|
package objects
|
||||||
|
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
|
|
||||||
// Container is an object that can contain other objects. It can be used as a
|
// Container is an object that can contain other objects. It can be used as a
|
||||||
// primitive for building more complex layouts. It has two variants: an outer
|
// primitive for building more complex layouts. It has two variants: an outer
|
||||||
@@ -23,17 +22,30 @@ func newContainer (layout tomo.Layout, children ...tomo.Object) *Container {
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewOuterContainer creates a new container that has padding around it.
|
// NewOuterContainer creates a new container that has padding around it, as well
|
||||||
|
// as a solid background color. It is meant to be used as a root container for a
|
||||||
|
// window, tab pane, etc.
|
||||||
func NewOuterContainer (layout tomo.Layout, children ...tomo.Object) *Container {
|
func NewOuterContainer (layout tomo.Layout, children ...tomo.Object) *Container {
|
||||||
this := newContainer(layout, children...)
|
this := newContainer(layout, children...)
|
||||||
theme.Apply(this, theme.R("objects", "Container", "outer"))
|
this.SetRole(tomo.R("objects", "Container", "outer"))
|
||||||
|
tomo.Apply(this)
|
||||||
|
return this
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewSunkenContainer creates a new container with a sunken style and padding
|
||||||
|
// around it. It is meant to be used as a root container for a ScrollContainer.
|
||||||
|
func NewSunkenContainer (layout tomo.Layout, children ...tomo.Object) *Container {
|
||||||
|
this := newContainer(layout, children...)
|
||||||
|
this.SetRole(tomo.R("objects", "Container", "sunken"))
|
||||||
|
tomo.Apply(this)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewInnerContainer creates a new container that has no padding around it.
|
// NewInnerContainer creates a new container that has no padding around it.
|
||||||
func NewInnerContainer (layout tomo.Layout, children ...tomo.Object) *Container {
|
func NewInnerContainer (layout tomo.Layout, children ...tomo.Object) *Container {
|
||||||
this := newContainer(layout, children...)
|
this := newContainer(layout, children...)
|
||||||
theme.Apply(this, theme.R("objects", "Container", "inner"))
|
this.SetRole(tomo.R("objects", "Container", "inner"))
|
||||||
|
tomo.Apply(this)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
100
dialog.go
Normal file
100
dialog.go
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
package objects
|
||||||
|
|
||||||
|
import "image"
|
||||||
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
import "git.tebibyte.media/tomo/objects/layouts"
|
||||||
|
|
||||||
|
// DialogKind defines the semantic role of a dialog window.
|
||||||
|
type DialogKind int; const (
|
||||||
|
DialogInformation DialogKind = iota
|
||||||
|
DialogQuestion
|
||||||
|
DialogWarning
|
||||||
|
DialogError
|
||||||
|
)
|
||||||
|
|
||||||
|
// Dialog is a modal dialog window.
|
||||||
|
type Dialog struct {
|
||||||
|
tomo.Window
|
||||||
|
controlRow tomo.ContainerBox
|
||||||
|
}
|
||||||
|
|
||||||
|
type clickable interface {
|
||||||
|
OnClick (func ()) event.Cookie
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewDialog creates a new dialog window given a dialog kind.
|
||||||
|
func NewDialog (kind DialogKind, parent tomo.Window, title, message string, options ...tomo.Object) (*Dialog, error) {
|
||||||
|
if title == "" {
|
||||||
|
switch kind {
|
||||||
|
case DialogInformation: title = "Information"
|
||||||
|
case DialogQuestion: title = "Question"
|
||||||
|
case DialogWarning: title = "Warning"
|
||||||
|
case DialogError: title = "Error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog := &Dialog { }
|
||||||
|
if parent == nil {
|
||||||
|
window, err := tomo.NewWindow(image.Rectangle { })
|
||||||
|
if err != nil { return nil, err }
|
||||||
|
dialog.Window = window
|
||||||
|
} else {
|
||||||
|
window, err := parent.NewModal(image.Rectangle { })
|
||||||
|
if err != nil { return nil, err }
|
||||||
|
dialog.Window = window
|
||||||
|
}
|
||||||
|
|
||||||
|
var iconId tomo.Icon
|
||||||
|
switch kind {
|
||||||
|
case DialogInformation: iconId = tomo.IconDialogInformation
|
||||||
|
case DialogQuestion: iconId = tomo.IconDialogQuestion
|
||||||
|
case DialogWarning: iconId = tomo.IconDialogWarning
|
||||||
|
case DialogError: iconId = tomo.IconDialogError
|
||||||
|
}
|
||||||
|
dialog.SetTitle(title)
|
||||||
|
icon := NewIcon(iconId, tomo.IconSizeLarge)
|
||||||
|
messageText := NewLabel(message)
|
||||||
|
messageText.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
|
||||||
|
|
||||||
|
for _, option := range options {
|
||||||
|
if option, ok := option.(clickable); ok {
|
||||||
|
option.OnClick(dialog.Close)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dialog.controlRow = NewInnerContainer(layouts.ContractHorizontal, options...)
|
||||||
|
dialog.controlRow.SetAlign(tomo.AlignEnd, tomo.AlignEnd)
|
||||||
|
|
||||||
|
dialog.SetRoot(NewOuterContainer (
|
||||||
|
layouts.NewGrid([]bool { true }, []bool { true, false }),
|
||||||
|
NewInnerContainer(layouts.ContractHorizontal, icon, messageText),
|
||||||
|
dialog.controlRow))
|
||||||
|
return dialog, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewDialogOk creates a new dialog window with an OK option.
|
||||||
|
func NewDialogOk (kind DialogKind, parent tomo.Window, title, message string, onOk func ()) (*Dialog, error) {
|
||||||
|
okButton := NewButton("OK")
|
||||||
|
okButton.SetIcon(tomo.IconDialogOkay)
|
||||||
|
okButton.OnClick(func () {
|
||||||
|
if onOk != nil { onOk() }
|
||||||
|
})
|
||||||
|
okButton.SetFocused(true)
|
||||||
|
|
||||||
|
return NewDialog(kind, parent, title, message, okButton)
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewDialogOkCancel creates a new dialog window with OK and Cancel options.
|
||||||
|
func NewDialogOkCancel (kind DialogKind, parent tomo.Window, title, message string, onOk func ()) (*Dialog, error) {
|
||||||
|
cancelButton := NewButton("Cancel")
|
||||||
|
cancelButton.SetIcon(tomo.IconDialogCancel)
|
||||||
|
|
||||||
|
okButton := NewButton("OK")
|
||||||
|
okButton.SetIcon(tomo.IconDialogOkay)
|
||||||
|
okButton.OnClick(func () {
|
||||||
|
if onOk != nil { onOk() }
|
||||||
|
})
|
||||||
|
okButton.SetFocused(true)
|
||||||
|
|
||||||
|
return NewDialog(kind, parent, title, message, cancelButton, okButton)
|
||||||
|
}
|
||||||
2
go.mod
2
go.mod
@@ -2,6 +2,6 @@ module git.tebibyte.media/tomo/objects
|
|||||||
|
|
||||||
go 1.20
|
go 1.20
|
||||||
|
|
||||||
require git.tebibyte.media/tomo/tomo v0.30.0
|
require git.tebibyte.media/tomo/tomo v0.36.0
|
||||||
|
|
||||||
require golang.org/x/image v0.11.0 // indirect
|
require golang.org/x/image v0.11.0 // indirect
|
||||||
|
|||||||
4
go.sum
4
go.sum
@@ -1,5 +1,5 @@
|
|||||||
git.tebibyte.media/tomo/tomo v0.30.0 h1:JoTklJ7yFVrzre4AwuKBMwzho9GomC9ySw354wDB4f4=
|
git.tebibyte.media/tomo/tomo v0.36.0 h1:V9vyPYb4kpUceBhcDF/XyLDACzE5lY8kYEGHAkIsqs0=
|
||||||
git.tebibyte.media/tomo/tomo v0.30.0/go.mod h1:C9EzepS9wjkTJjnZaPBh22YvVPyA4hbBAJVU20Rdmps=
|
git.tebibyte.media/tomo/tomo v0.36.0/go.mod h1:C9EzepS9wjkTJjnZaPBh22YvVPyA4hbBAJVU20Rdmps=
|
||||||
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package objects
|
|||||||
|
|
||||||
import "fmt"
|
import "fmt"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
|
|
||||||
// Heading is a label that denotes the start of some section of content. It can
|
// Heading is a label that denotes the start of some section of content. It can
|
||||||
// have a level from 0 to 2, with 0 being the most prominent and 2 being the
|
// have a level from 0 to 2, with 0 being the most prominent and 2 being the
|
||||||
@@ -12,11 +11,12 @@ type Heading struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewHeading creates a new section heading. The level can be from 0 to 2.
|
// NewHeading creates a new section heading. The level can be from 0 to 2.
|
||||||
func NewHeading (level int, text string) *Label {
|
func NewHeading (level int, text string) *Heading {
|
||||||
if level < 0 { level = 0 }
|
if level < 0 { level = 0 }
|
||||||
if level > 2 { level = 2 }
|
if level > 2 { level = 2 }
|
||||||
this := &Label { TextBox: tomo.NewTextBox() }
|
this := &Heading { TextBox: tomo.NewTextBox() }
|
||||||
theme.Apply(this, theme.R("objects", "Heading", fmt.Sprint(level)))
|
this.SetRole(tomo.R("objects", "Heading", fmt.Sprint(level)))
|
||||||
|
tomo.Apply(this)
|
||||||
this.SetText(text)
|
this.SetText(text)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|||||||
15
icon.go
15
icon.go
@@ -3,7 +3,6 @@ package objects
|
|||||||
import "image"
|
import "image"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/data"
|
import "git.tebibyte.media/tomo/tomo/data"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
import "git.tebibyte.media/tomo/tomo/canvas"
|
import "git.tebibyte.media/tomo/tomo/canvas"
|
||||||
|
|
||||||
// Icon displays a single icon.
|
// Icon displays a single icon.
|
||||||
@@ -12,27 +11,29 @@ type Icon struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewIcon creates a new icon from an icon ID.
|
// NewIcon creates a new icon from an icon ID.
|
||||||
func NewIcon (id theme.Icon, size theme.IconSize) *Icon {
|
func NewIcon (id tomo.Icon, size tomo.IconSize) *Icon {
|
||||||
this := &Icon {
|
this := &Icon {
|
||||||
Box: tomo.NewBox(),
|
Box: tomo.NewBox(),
|
||||||
}
|
}
|
||||||
theme.Apply(this, theme.R("objects", "Icon", size.String()))
|
this.SetRole(tomo.R("objects", "Icon", size.String()))
|
||||||
|
tomo.Apply(this)
|
||||||
this.SetTexture(id.Texture(size))
|
this.SetTexture(id.Texture(size))
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewMimeIcon creates a new icon from a MIME type.
|
// NewMimeIcon creates a new icon from a MIME type.
|
||||||
func NewMimeIcon (mime data.Mime, size theme.IconSize) *Icon {
|
func NewMimeIcon (mime data.Mime, size tomo.IconSize) *Icon {
|
||||||
this := &Icon {
|
this := &Icon {
|
||||||
Box: tomo.NewBox(),
|
Box: tomo.NewBox(),
|
||||||
}
|
}
|
||||||
theme.Apply(this, theme.R("objects", "Icon", size.String()))
|
this.SetRole(tomo.R("objects", "Icon", size.String()))
|
||||||
this.SetTexture(theme.MimeIcon(mime, size))
|
tomo.Apply(this)
|
||||||
|
this.SetTexture(tomo.MimeIcon(mime, size))
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *Icon) SetTexture (texture canvas.Texture) {
|
func (this *Icon) SetTexture (texture canvas.Texture) {
|
||||||
this.Box.SetTexture(texture)
|
this.Box.SetTextureCenter(texture)
|
||||||
if texture == nil {
|
if texture == nil {
|
||||||
this.SetMinimumSize(image.Pt(0, 0))
|
this.SetMinimumSize(image.Pt(0, 0))
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
4
label.go
4
label.go
@@ -1,7 +1,6 @@
|
|||||||
package objects
|
package objects
|
||||||
|
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
|
|
||||||
// Label is a simple text label.
|
// Label is a simple text label.
|
||||||
type Label struct {
|
type Label struct {
|
||||||
@@ -11,7 +10,8 @@ type Label struct {
|
|||||||
// NewLabel creates a new text label.
|
// NewLabel creates a new text label.
|
||||||
func NewLabel (text string) *Label {
|
func NewLabel (text string) *Label {
|
||||||
this := &Label { TextBox: tomo.NewTextBox() }
|
this := &Label { TextBox: tomo.NewTextBox() }
|
||||||
theme.Apply(this, theme.R("objects", "Label", ""))
|
this.SetRole(tomo.R("objects", "Label", ""))
|
||||||
|
tomo.Apply(this)
|
||||||
this.SetText(text)
|
this.SetText(text)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|||||||
62
labelcheckbox.go
Normal file
62
labelcheckbox.go
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
package objects
|
||||||
|
|
||||||
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
import "git.tebibyte.media/tomo/objects/layouts"
|
||||||
|
|
||||||
|
// LabelCheckbox is a checkbox with a label.
|
||||||
|
type LabelCheckbox struct {
|
||||||
|
tomo.ContainerBox
|
||||||
|
checkbox *Checkbox
|
||||||
|
label *Label
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewLabelCheckbox creates a new labeled checkbox with the specified value and
|
||||||
|
// label text.
|
||||||
|
func NewLabelCheckbox (value bool, text string) *LabelCheckbox {
|
||||||
|
box := &LabelCheckbox {
|
||||||
|
ContainerBox: tomo.NewContainerBox(),
|
||||||
|
checkbox: NewCheckbox(value),
|
||||||
|
label: NewLabel(text),
|
||||||
|
}
|
||||||
|
box.SetRole(tomo.R("objects", "LabelCheckbox", ""))
|
||||||
|
tomo.Apply(box)
|
||||||
|
box.label.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
|
||||||
|
box.Add(box.checkbox)
|
||||||
|
box.Add(box.label)
|
||||||
|
box.SetLayout(layouts.NewGrid([]bool { false, true }, []bool { false }))
|
||||||
|
|
||||||
|
box.OnMouseUp(box.handleMouseUp)
|
||||||
|
box.label.OnMouseUp(box.handleMouseUp)
|
||||||
|
return box
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetValue sets the value of the checkbox.
|
||||||
|
func (this *LabelCheckbox) SetValue (value bool) {
|
||||||
|
this.checkbox.SetValue(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggle toggles the value of the checkbox between true and false.
|
||||||
|
func (this *LabelCheckbox) Toggle () {
|
||||||
|
this.checkbox.Toggle()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Value returns the value of the checkbox.
|
||||||
|
func (this *LabelCheckbox) Value () bool {
|
||||||
|
return this.checkbox.Value()
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnValueChange specifies a function to be called when the checkbox's value
|
||||||
|
// changes.
|
||||||
|
func (this *LabelCheckbox) OnValueChange (callback func ()) event.Cookie {
|
||||||
|
return this.checkbox.OnValueChange(callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *LabelCheckbox) handleMouseUp (button input.Button) {
|
||||||
|
if button != input.ButtonLeft { return }
|
||||||
|
if this.MousePosition().In(this.Bounds()) {
|
||||||
|
this.checkbox.SetFocused(true)
|
||||||
|
this.checkbox.Toggle()
|
||||||
|
}
|
||||||
|
}
|
||||||
123
layouts/flow.go
Normal file
123
layouts/flow.go
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
package layouts
|
||||||
|
|
||||||
|
import "image"
|
||||||
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
|
||||||
|
// Flow is a grid layout where the number of rows and columns changes depending
|
||||||
|
// on the size of the container. It is designed to be used with an overflowing
|
||||||
|
// container. If the container does not overflow in the correct direction, the
|
||||||
|
// layout will behave like Contract.
|
||||||
|
type Flow bool
|
||||||
|
|
||||||
|
// FlowVertical is a vertical flow layout.
|
||||||
|
const FlowVertical Flow = true
|
||||||
|
|
||||||
|
// FlowHorizontal is a horizontal flow layout.
|
||||||
|
const FlowHorizontal Flow = false
|
||||||
|
|
||||||
|
func (flow Flow) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
||||||
|
// TODO: write down somewhere that layout minimums aren't taken into
|
||||||
|
// account when the respective direction is overflowed
|
||||||
|
return flow.fallback().MinimumSize(hints, boxes)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (flow Flow) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
|
||||||
|
if flow.v() && !hints.OverflowY || flow.h() && !hints.OverflowX {
|
||||||
|
flow.fallback().Arrange(hints, boxes)
|
||||||
|
}
|
||||||
|
|
||||||
|
// find a minor size value that will fit all boxes
|
||||||
|
minorSize := 0
|
||||||
|
for _, box := range boxes {
|
||||||
|
boxSize := flow.minor(box.MinimumSize())
|
||||||
|
if boxSize > minorSize { minorSize = boxSize }
|
||||||
|
}
|
||||||
|
if minorSize == 0 { return }
|
||||||
|
minorSteps :=
|
||||||
|
(flow.deltaMinor(hints.Bounds) + flow.minor(hints.Gap)) /
|
||||||
|
(minorSize + flow.minor(hints.Gap))
|
||||||
|
|
||||||
|
// arrange
|
||||||
|
point := hints.Bounds.Min
|
||||||
|
index := 0
|
||||||
|
for index < len(boxes) {
|
||||||
|
// get a slice of boxes for this major step
|
||||||
|
stepIndexEnd := index + minorSteps
|
||||||
|
if stepIndexEnd > len(boxes) { stepIndexEnd = len(boxes) }
|
||||||
|
step := boxes[index:stepIndexEnd]
|
||||||
|
index += minorSteps
|
||||||
|
|
||||||
|
// find a major size that will fit all boxes on this major step
|
||||||
|
majorSize := 0
|
||||||
|
for _, box := range step {
|
||||||
|
boxSize := flow.major(box.MinimumSize())
|
||||||
|
if boxSize > majorSize { majorSize = boxSize }
|
||||||
|
}
|
||||||
|
if majorSize == 0 { continue }
|
||||||
|
|
||||||
|
// arrange all boxes on this major step
|
||||||
|
var size image.Point
|
||||||
|
size = flow.incrMajor(size, majorSize)
|
||||||
|
size = flow.incrMinor(size, minorSize)
|
||||||
|
for _, box := range step {
|
||||||
|
bounds := image.Rectangle { Min: point, Max: point.Add(size) }
|
||||||
|
box.SetBounds(bounds)
|
||||||
|
|
||||||
|
point = flow.incrMinor(point, minorSize + flow.minor(hints.Gap))
|
||||||
|
}
|
||||||
|
|
||||||
|
if flow.v() {
|
||||||
|
point.Y += majorSize + hints.Gap.Y
|
||||||
|
point.X = hints.Bounds.Min.X
|
||||||
|
} else {
|
||||||
|
point.X += majorSize + hints.Gap.X
|
||||||
|
point.Y = hints.Bounds.Min.Y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (flow Flow) v () bool { return flow == FlowVertical }
|
||||||
|
func (flow Flow) h () bool { return flow == FlowHorizontal }
|
||||||
|
|
||||||
|
func (flow Flow) minor (point image.Point) int {
|
||||||
|
if flow.v() {
|
||||||
|
return point.X
|
||||||
|
} else {
|
||||||
|
return point.Y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (flow Flow) major (point image.Point) int {
|
||||||
|
if flow.v() {
|
||||||
|
return point.Y
|
||||||
|
} else {
|
||||||
|
return point.X
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (flow Flow) incrMinor (point image.Point, delta int) image.Point {
|
||||||
|
if flow.v() {
|
||||||
|
point.X += delta
|
||||||
|
return point
|
||||||
|
} else {
|
||||||
|
point.Y += delta
|
||||||
|
return point
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (flow Flow) incrMajor (point image.Point, delta int) image.Point {
|
||||||
|
if flow.v() {
|
||||||
|
point.Y += delta
|
||||||
|
return point
|
||||||
|
} else {
|
||||||
|
point.X += delta
|
||||||
|
return point
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (flow Flow) deltaMinor (rectangle image.Rectangle) int {
|
||||||
|
if flow.v() {
|
||||||
|
return rectangle.Dx()
|
||||||
|
} else {
|
||||||
|
return rectangle.Dy()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (flow Flow) fallback () tomo.Layout {
|
||||||
|
return Contract(flow)
|
||||||
|
}
|
||||||
@@ -3,86 +3,93 @@ package layouts
|
|||||||
import "image"
|
import "image"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
|
||||||
type Row struct { }
|
// Contract is a layout that arranges boxes in a simple row or column according
|
||||||
|
// to their minimum sizes.
|
||||||
|
type Contract bool
|
||||||
|
|
||||||
func (Row) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
// ContractVertical is a vertical contracted layout.
|
||||||
dot := image.Point { }
|
const ContractVertical Contract = true
|
||||||
for _, box := range boxes {
|
|
||||||
minimum := box.MinimumSize()
|
// ContractHorizontal is a horizontal contracted layout.
|
||||||
dot.X += minimum.X
|
const ContractHorizontal Contract = false
|
||||||
if dot.Y < minimum.Y {
|
|
||||||
dot.Y = minimum.Y
|
func (contract Contract) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
||||||
|
if contract.v() {
|
||||||
|
dot := image.Point { }
|
||||||
|
for _, box := range boxes {
|
||||||
|
minimum := box.MinimumSize()
|
||||||
|
dot.Y += minimum.Y
|
||||||
|
if dot.X < minimum.X {
|
||||||
|
dot.X = minimum.X
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dot.Y += hints.Gap.Y * (len(boxes) - 1)
|
||||||
|
return dot
|
||||||
|
} else {
|
||||||
|
dot := image.Point { }
|
||||||
|
for _, box := range boxes {
|
||||||
|
minimum := box.MinimumSize()
|
||||||
|
dot.X += minimum.X
|
||||||
|
if dot.Y < minimum.Y {
|
||||||
|
dot.Y = minimum.Y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dot.X += hints.Gap.X * (len(boxes) - 1)
|
||||||
|
return dot
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (contract Contract) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
|
||||||
|
if contract.v() {
|
||||||
|
dot := hints.Bounds.Min
|
||||||
|
for index, box := range boxes {
|
||||||
|
if index > 0 { dot.Y += hints.Gap.Y }
|
||||||
|
minimum := box.MinimumSize()
|
||||||
|
box.SetBounds(image.Rectangle {
|
||||||
|
Min: dot,
|
||||||
|
Max: dot.Add(image.Pt(hints.Bounds.Dx(), minimum.Y)),
|
||||||
|
})
|
||||||
|
dot.Y += minimum.Y
|
||||||
|
}
|
||||||
|
|
||||||
|
height := dot.Y - hints.Bounds.Min.Y
|
||||||
|
offset := 0
|
||||||
|
|
||||||
|
switch hints.AlignY {
|
||||||
|
case tomo.AlignMiddle:
|
||||||
|
offset = (hints.Bounds.Dy() - height) / 2
|
||||||
|
case tomo.AlignEnd:
|
||||||
|
offset = hints.Bounds.Dy() - height
|
||||||
|
}
|
||||||
|
for _, box := range boxes {
|
||||||
|
box.SetBounds(box.Bounds().Add(image.Pt(0, offset)))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dot := hints.Bounds.Min
|
||||||
|
for index, box := range boxes {
|
||||||
|
if index > 0 { dot.X += hints.Gap.X }
|
||||||
|
minimum := box.MinimumSize()
|
||||||
|
box.SetBounds(image.Rectangle {
|
||||||
|
Min: dot,
|
||||||
|
Max: dot.Add(image.Pt(minimum.X, hints.Bounds.Dy())),
|
||||||
|
})
|
||||||
|
dot.X += minimum.X
|
||||||
|
}
|
||||||
|
|
||||||
|
width := dot.X - hints.Bounds.Min.X
|
||||||
|
offset := 0
|
||||||
|
|
||||||
|
switch hints.AlignX {
|
||||||
|
case tomo.AlignMiddle:
|
||||||
|
offset = (hints.Bounds.Dx() - width) / 2
|
||||||
|
case tomo.AlignEnd:
|
||||||
|
offset = hints.Bounds.Dx() - width
|
||||||
|
}
|
||||||
|
for _, box := range boxes {
|
||||||
|
box.SetBounds(box.Bounds().Add(image.Pt(offset, 0)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dot.X += hints.Gap.X * (len(boxes) - 1)
|
|
||||||
return dot
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (Row) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
|
func (contract Contract) v () bool { return contract == ContractVertical }
|
||||||
// TODO respect alignment value
|
func (contract Contract) h () bool { return contract == ContractHorizontal }
|
||||||
dot := hints.Bounds.Min
|
|
||||||
for index, box := range boxes {
|
|
||||||
if index > 0 { dot.X += hints.Gap.X }
|
|
||||||
minimum := box.MinimumSize()
|
|
||||||
box.SetBounds(image.Rectangle {
|
|
||||||
Min: dot,
|
|
||||||
Max: dot.Add(image.Pt(minimum.X, hints.Bounds.Dy())),
|
|
||||||
})
|
|
||||||
dot.X += minimum.X
|
|
||||||
}
|
|
||||||
|
|
||||||
width := dot.X - hints.Bounds.Min.X
|
|
||||||
offset := 0
|
|
||||||
|
|
||||||
switch hints.AlignX {
|
|
||||||
case tomo.AlignMiddle:
|
|
||||||
offset = (hints.Bounds.Dx() - width) / 2
|
|
||||||
case tomo.AlignEnd:
|
|
||||||
offset = hints.Bounds.Dx() - width
|
|
||||||
}
|
|
||||||
for _, box := range boxes {
|
|
||||||
box.SetBounds(box.Bounds().Add(image.Pt(offset, 0)))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
type Column struct { }
|
|
||||||
|
|
||||||
func (Column) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
|
||||||
dot := image.Point { }
|
|
||||||
for _, box := range boxes {
|
|
||||||
minimum := box.MinimumSize()
|
|
||||||
dot.Y += minimum.Y
|
|
||||||
if dot.X < minimum.X {
|
|
||||||
dot.X = minimum.X
|
|
||||||
}
|
|
||||||
}
|
|
||||||
dot.Y += hints.Gap.Y * (len(boxes) - 1)
|
|
||||||
return dot
|
|
||||||
}
|
|
||||||
|
|
||||||
func (Column) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
|
|
||||||
// TODO respect alignment value
|
|
||||||
dot := hints.Bounds.Min
|
|
||||||
for index, box := range boxes {
|
|
||||||
if index > 0 { dot.Y += hints.Gap.Y }
|
|
||||||
minimum := box.MinimumSize()
|
|
||||||
box.SetBounds(image.Rectangle {
|
|
||||||
Min: dot,
|
|
||||||
Max: dot.Add(image.Pt(hints.Bounds.Dx(), minimum.Y)),
|
|
||||||
})
|
|
||||||
dot.Y += minimum.Y
|
|
||||||
}
|
|
||||||
|
|
||||||
height := dot.Y - hints.Bounds.Min.Y
|
|
||||||
offset := 0
|
|
||||||
|
|
||||||
switch hints.AlignY {
|
|
||||||
case tomo.AlignMiddle:
|
|
||||||
offset = (hints.Bounds.Dy() - height) / 2
|
|
||||||
case tomo.AlignEnd:
|
|
||||||
offset = hints.Bounds.Dy() - height
|
|
||||||
}
|
|
||||||
for _, box := range boxes {
|
|
||||||
box.SetBounds(box.Bounds().Add(image.Pt(0, offset)))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
101
menu.go
Normal file
101
menu.go
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
package objects
|
||||||
|
|
||||||
|
import "image"
|
||||||
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
|
// import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
import "git.tebibyte.media/tomo/objects/layouts"
|
||||||
|
|
||||||
|
// Menu is a menu window.
|
||||||
|
type Menu struct {
|
||||||
|
tomo.Window
|
||||||
|
|
||||||
|
parent tomo.Window
|
||||||
|
bounds image.Rectangle
|
||||||
|
rootContainer tomo.ContainerBox
|
||||||
|
tearLine tomo.Box
|
||||||
|
torn bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewMenu creates a new menu with the specified items. The menu will appear
|
||||||
|
// directly under the anchor Object. If the anchor is nil, it will appear
|
||||||
|
// directly under the mouse pointer instead.
|
||||||
|
func NewMenu (anchor tomo.Object, items ...tomo.Object) (*Menu, error) {
|
||||||
|
menu := &Menu { }
|
||||||
|
if anchor == nil {
|
||||||
|
// TODO: *actually* put it under the mouse
|
||||||
|
window, err := tomo.NewWindow(menu.bounds)
|
||||||
|
if err != nil { return nil, err }
|
||||||
|
menu.Window = window
|
||||||
|
} else {
|
||||||
|
menu.bounds = menuBoundsFromAnchor(anchor)
|
||||||
|
menu.parent = anchor.GetBox().Window()
|
||||||
|
window, err := menu.parent.NewMenu(menu.bounds)
|
||||||
|
if err != nil { return nil, err }
|
||||||
|
menu.Window = window
|
||||||
|
}
|
||||||
|
|
||||||
|
menu.rootContainer = tomo.NewContainerBox()
|
||||||
|
menu.rootContainer.SetLayout(layouts.ContractVertical)
|
||||||
|
|
||||||
|
if !menu.torn {
|
||||||
|
menu.tearLine = tomo.NewBox()
|
||||||
|
menu.tearLine.SetRole(tomo.R("objects", "TearLine", ""))
|
||||||
|
tomo.Apply(menu.tearLine)
|
||||||
|
menu.tearLine.SetFocusable(true)
|
||||||
|
menu.tearLine.OnKeyUp(func (key input.Key, numberPad bool) {
|
||||||
|
if key != input.KeyEnter && key != input.Key(' ') { return }
|
||||||
|
menu.TearOff()
|
||||||
|
})
|
||||||
|
menu.tearLine.OnMouseUp(func (button input.Button) {
|
||||||
|
if button != input.ButtonLeft { return }
|
||||||
|
if menu.tearLine.MousePosition().In(menu.tearLine.Bounds()) {
|
||||||
|
menu.TearOff()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
menu.rootContainer.Add(menu.tearLine)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, item := range items {
|
||||||
|
menu.rootContainer.Add(item)
|
||||||
|
if item, ok := item.(*MenuItem); ok {
|
||||||
|
item.OnClick(func () {
|
||||||
|
if !menu.torn {
|
||||||
|
menu.Close()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
menu.rootContainer.SetRole(tomo.R("objects", "Container", "menu"))
|
||||||
|
tomo.Apply(menu.rootContainer)
|
||||||
|
|
||||||
|
menu.Window.SetRoot(menu.rootContainer)
|
||||||
|
return menu, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// TearOff converts this menu into a tear-off menu.
|
||||||
|
func (this *Menu) TearOff () {
|
||||||
|
if this.torn { return }
|
||||||
|
if this.parent == nil { return }
|
||||||
|
this.torn = true
|
||||||
|
|
||||||
|
window, err := this.parent.NewChild(this.bounds)
|
||||||
|
if err != nil { return }
|
||||||
|
|
||||||
|
visible := this.Window.Visible()
|
||||||
|
this.Window.SetRoot(nil)
|
||||||
|
this.Window.Close()
|
||||||
|
|
||||||
|
this.rootContainer.Remove(this.tearLine)
|
||||||
|
|
||||||
|
this.Window = window
|
||||||
|
this.Window.SetRoot(this.rootContainer)
|
||||||
|
this.Window.SetVisible(visible)
|
||||||
|
}
|
||||||
|
|
||||||
|
func menuBoundsFromAnchor (anchor tomo.Object) image.Rectangle {
|
||||||
|
bounds := anchor.GetBox().Bounds()
|
||||||
|
return image.Rect (
|
||||||
|
bounds.Min.X, bounds.Max.Y,
|
||||||
|
bounds.Max.X, bounds.Max.Y)//.Add(windowBounds.Min)
|
||||||
|
}
|
||||||
74
menuitem.go
Normal file
74
menuitem.go
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
package objects
|
||||||
|
|
||||||
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
import "git.tebibyte.media/tomo/objects/layouts"
|
||||||
|
|
||||||
|
// MenuItem is a clickable button.
|
||||||
|
type MenuItem struct {
|
||||||
|
tomo.ContainerBox
|
||||||
|
|
||||||
|
label *Label
|
||||||
|
icon *Icon
|
||||||
|
labelActive bool
|
||||||
|
|
||||||
|
on struct {
|
||||||
|
click event.FuncBroadcaster
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewMenuItem creates a new menu item with the specified text.
|
||||||
|
func NewMenuItem (text string) *MenuItem {
|
||||||
|
box := &MenuItem {
|
||||||
|
ContainerBox: tomo.NewContainerBox(),
|
||||||
|
label: NewLabel(text),
|
||||||
|
icon: NewIcon("", tomo.IconSizeSmall),
|
||||||
|
}
|
||||||
|
box.SetRole(tomo.R("objects", "MenuItem", ""))
|
||||||
|
tomo.Apply(box)
|
||||||
|
box.label.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
|
||||||
|
box.SetLayout(layouts.NewGrid([]bool { false, true }, []bool { true }))
|
||||||
|
|
||||||
|
box.Add(box.icon)
|
||||||
|
box.Add(box.label)
|
||||||
|
|
||||||
|
box.CaptureDND(true)
|
||||||
|
box.CaptureMouse(true)
|
||||||
|
box.CaptureScroll(true)
|
||||||
|
box.CaptureKeyboard(true)
|
||||||
|
|
||||||
|
box.OnMouseUp(box.handleMouseUp)
|
||||||
|
box.OnKeyUp(box.handleKeyUp)
|
||||||
|
box.SetFocusable(true)
|
||||||
|
return box
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetText sets the text of the items's label.
|
||||||
|
func (this *MenuItem) SetText (text string) {
|
||||||
|
this.label.SetText(text)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetIcon sets an icon for this item. Setting the icon to IconUnknown will
|
||||||
|
// remove it.
|
||||||
|
func (this *MenuItem) SetIcon (id tomo.Icon) {
|
||||||
|
if this.icon != nil { this.Remove(this.icon) }
|
||||||
|
this.Insert(NewIcon(id, tomo.IconSizeSmall), this.label)
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnClick specifies a function to be called when the menu item is clicked.
|
||||||
|
func (this *MenuItem) OnClick (callback func ()) event.Cookie {
|
||||||
|
return this.on.click.Connect(callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *MenuItem) handleKeyUp (key input.Key, numberPad bool) {
|
||||||
|
if key != input.KeyEnter && key != input.Key(' ') { return }
|
||||||
|
this.on.click.Broadcast()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *MenuItem) handleMouseUp (button input.Button) {
|
||||||
|
if button != input.ButtonLeft { return }
|
||||||
|
if this.MousePosition().In(this.Bounds()) {
|
||||||
|
this.on.click.Broadcast()
|
||||||
|
}
|
||||||
|
}
|
||||||
100
numberinput.go
Normal file
100
numberinput.go
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
package objects
|
||||||
|
|
||||||
|
import "math"
|
||||||
|
import "strconv"
|
||||||
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
import "git.tebibyte.media/tomo/objects/layouts"
|
||||||
|
|
||||||
|
// NumberInput is an editable text box which accepts only numbers, and has
|
||||||
|
// controls to increment and decrement its value.
|
||||||
|
type NumberInput struct {
|
||||||
|
tomo.ContainerBox
|
||||||
|
input *TextInput
|
||||||
|
increment *Button
|
||||||
|
decrement *Button
|
||||||
|
on struct {
|
||||||
|
enter event.FuncBroadcaster
|
||||||
|
edit event.FuncBroadcaster
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewNumberInput creates a new number input with the specified value.
|
||||||
|
func NewNumberInput (value float64) *NumberInput {
|
||||||
|
box := &NumberInput {
|
||||||
|
ContainerBox: tomo.NewContainerBox(),
|
||||||
|
input: NewTextInput(""),
|
||||||
|
increment: NewButton(""),
|
||||||
|
decrement: NewButton(""),
|
||||||
|
}
|
||||||
|
box.SetRole(tomo.R("objects", "NumberInput", ""))
|
||||||
|
tomo.Apply(box)
|
||||||
|
box.Add(box.input)
|
||||||
|
box.Add(box.decrement)
|
||||||
|
box.Add(box.increment)
|
||||||
|
box.SetLayout(layouts.NewGrid([]bool { true, false, false }, []bool { true }))
|
||||||
|
box.increment.SetIcon(tomo.IconValueIncrement)
|
||||||
|
box.decrement.SetIcon(tomo.IconValueDecrement)
|
||||||
|
|
||||||
|
box.SetValue(value)
|
||||||
|
|
||||||
|
box.CaptureScroll(true)
|
||||||
|
box.CaptureKeyboard(true)
|
||||||
|
|
||||||
|
box.OnScroll(box.handleScroll)
|
||||||
|
box.OnKeyDown(box.handleKeyDown)
|
||||||
|
box.input.OnEnter(box.handleEnter)
|
||||||
|
box.input.OnEdit(box.on.edit.Broadcast)
|
||||||
|
box.increment.OnClick(func () { box.shift(1) })
|
||||||
|
box.decrement.OnClick(func () { box.shift(-1) })
|
||||||
|
return box
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetValue sets the value of the input.
|
||||||
|
func (this *NumberInput) SetValue (value float64) {
|
||||||
|
this.input.SetText(strconv.FormatFloat(value, 'g', -1, 64))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Value returns the value of the input.
|
||||||
|
func (this *NumberInput) Value () float64 {
|
||||||
|
value, _ := strconv.ParseFloat(this.input.Text(), 64)
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnEnter specifies a function to be called when the user presses enter within
|
||||||
|
// the text input.
|
||||||
|
func (this *NumberInput) OnEnter (callback func ()) event.Cookie {
|
||||||
|
return this.on.enter.Connect(callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
// OnEdit specifies a function to be called when the user edits the input value.
|
||||||
|
func (this *NumberInput) OnEdit (callback func ()) event.Cookie {
|
||||||
|
return this.on.edit.Connect(callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *NumberInput) shift (by int) {
|
||||||
|
this.SetValue(this.Value() + float64(by))
|
||||||
|
this.on.edit.Broadcast()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *NumberInput) handleKeyDown (key input.Key, numpad bool) {
|
||||||
|
switch key {
|
||||||
|
case input.KeyUp: this.shift(1)
|
||||||
|
case input.KeyDown: this.shift(-1)
|
||||||
|
default: this.input.handleKeyDown(key, numpad)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *NumberInput) handleScroll (x, y float64) {
|
||||||
|
if x == 0 {
|
||||||
|
this.shift(-int(math.Round(y)))
|
||||||
|
} else {
|
||||||
|
this.input.handleScroll(x, y)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *NumberInput) handleEnter () {
|
||||||
|
this.SetValue(this.Value())
|
||||||
|
this.on.enter.Broadcast()
|
||||||
|
}
|
||||||
47
scrollbar.go
47
scrollbar.go
@@ -2,7 +2,6 @@ package objects
|
|||||||
|
|
||||||
import "image"
|
import "image"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
import "git.tebibyte.media/tomo/tomo/input"
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
import "git.tebibyte.media/tomo/tomo/event"
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
|
||||||
@@ -46,8 +45,11 @@ func newScrollbar (orient string) *Scrollbar {
|
|||||||
this.OnMouseUp(this.handleMouseUp)
|
this.OnMouseUp(this.handleMouseUp)
|
||||||
this.OnMouseMove(this.handleMouseMove)
|
this.OnMouseMove(this.handleMouseMove)
|
||||||
this.OnScroll(this.handleScroll)
|
this.OnScroll(this.handleScroll)
|
||||||
theme.Apply(this.handle, theme.R("objects", "SliderHandle", orient))
|
|
||||||
theme.Apply(this, theme.R("objects", "Slider", orient))
|
this.handle.SetRole(tomo.R("objects", "SliderHandle", orient))
|
||||||
|
tomo.Apply(this.handle)
|
||||||
|
this.SetRole(tomo.R("objects", "Slider", orient))
|
||||||
|
tomo.Apply(this)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -61,9 +63,9 @@ func NewHorizontalScrollbar () *Scrollbar {
|
|||||||
return newScrollbar("horizontal")
|
return newScrollbar("horizontal")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Link assigns this scrollbar to a ContentBox. Closing the returned cookie will
|
// Link assigns this scrollbar to a ContentObject. Closing the returned cookie
|
||||||
// unlink it.
|
// will unlink it.
|
||||||
func (this *Scrollbar) Link (box tomo.ContentBox) event.Cookie {
|
func (this *Scrollbar) Link (box tomo.ContentObject) event.Cookie {
|
||||||
this.layout.linked = box
|
this.layout.linked = box
|
||||||
this.linkCookie = this.newLinkCookie (
|
this.linkCookie = this.newLinkCookie (
|
||||||
box.OnContentBoundsChange(this.handleLinkedContentBoundsChange))
|
box.OnContentBoundsChange(this.handleLinkedContentBoundsChange))
|
||||||
@@ -98,9 +100,9 @@ func (this *Scrollbar) SetValue (value float64) {
|
|||||||
position := trackLength * value
|
position := trackLength * value
|
||||||
point := this.layout.linked.ContentBounds().Min
|
point := this.layout.linked.ContentBounds().Min
|
||||||
if this.layout.vertical {
|
if this.layout.vertical {
|
||||||
point.Y = int(position)
|
point.Y = -int(position)
|
||||||
} else {
|
} else {
|
||||||
point.X = int(position)
|
point.X = -int(position)
|
||||||
}
|
}
|
||||||
this.layout.linked.ScrollTo(point)
|
this.layout.linked.ScrollTo(point)
|
||||||
|
|
||||||
@@ -173,15 +175,15 @@ func (this *Scrollbar) handleMouseDown (button input.Button) {
|
|||||||
}
|
}
|
||||||
case input.ButtonMiddle:
|
case input.ButtonMiddle:
|
||||||
if above {
|
if above {
|
||||||
this.scrollBy(-this.pageSize())
|
|
||||||
} else {
|
|
||||||
this.scrollBy(this.pageSize())
|
this.scrollBy(this.pageSize())
|
||||||
|
} else {
|
||||||
|
this.scrollBy(-this.pageSize())
|
||||||
}
|
}
|
||||||
case input.ButtonRight:
|
case input.ButtonRight:
|
||||||
if above {
|
if above {
|
||||||
this.scrollBy(-this.stepSize())
|
|
||||||
} else {
|
|
||||||
this.scrollBy(this.stepSize())
|
this.scrollBy(this.stepSize())
|
||||||
|
} else {
|
||||||
|
this.scrollBy(-this.stepSize())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -200,7 +202,7 @@ func (this *Scrollbar) handleScroll (x, y float64) {
|
|||||||
if this.layout.linked == nil { return }
|
if this.layout.linked == nil { return }
|
||||||
this.layout.linked.ScrollTo (
|
this.layout.linked.ScrollTo (
|
||||||
this.layout.linked.ContentBounds().Min.
|
this.layout.linked.ContentBounds().Min.
|
||||||
Add(image.Pt(int(x), int(y))))
|
Sub(image.Pt(int(x), int(y))))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *Scrollbar) drag () {
|
func (this *Scrollbar) drag () {
|
||||||
@@ -231,7 +233,7 @@ func (this *Scrollbar) fallbackDragOffset () image.Point {
|
|||||||
|
|
||||||
func (this *Scrollbar) pageSize () int {
|
func (this *Scrollbar) pageSize () int {
|
||||||
if this.layout.linked == nil { return 0 }
|
if this.layout.linked == nil { return 0 }
|
||||||
viewport := this.layout.linked.InnerBounds()
|
viewport := this.layout.linked.GetBox().InnerBounds()
|
||||||
if this.layout.vertical {
|
if this.layout.vertical {
|
||||||
return viewport.Dy()
|
return viewport.Dy()
|
||||||
} else {
|
} else {
|
||||||
@@ -241,7 +243,7 @@ func (this *Scrollbar) pageSize () int {
|
|||||||
|
|
||||||
func (this *Scrollbar) stepSize () int {
|
func (this *Scrollbar) stepSize () int {
|
||||||
// FIXME: this should not be hardcoded, need to get base font metrics
|
// FIXME: this should not be hardcoded, need to get base font metrics
|
||||||
// from theme somehow. should be (emspace, lineheight)
|
// from tomo.somehow. should be (emspace, lineheight)
|
||||||
return 16
|
return 16
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,7 +282,7 @@ func (this *scrollbarCookie) Close () {
|
|||||||
type scrollbarLayout struct {
|
type scrollbarLayout struct {
|
||||||
vertical bool
|
vertical bool
|
||||||
value float64
|
value float64
|
||||||
linked tomo.ContentBox
|
linked tomo.ContentObject
|
||||||
}
|
}
|
||||||
|
|
||||||
func (scrollbarLayout) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
func (scrollbarLayout) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
||||||
@@ -307,9 +309,10 @@ func (this scrollbarLayout) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
|
|||||||
handleLength := gutterLength * this.viewportContentRatio()
|
handleLength := gutterLength * this.viewportContentRatio()
|
||||||
if handleLength < handleMin { handleLength = handleMin }
|
if handleLength < handleMin { handleLength = handleMin }
|
||||||
if handleLength >= gutterLength {
|
if handleLength >= gutterLength {
|
||||||
// just hide the handle if it isn't needed.
|
// just hide the handle if it isn't needed. we are the layout
|
||||||
// TODO: we need a way to hide and show boxes, this is janky as
|
// and we shouldn't be adding and removing boxes, so this is
|
||||||
// fuck
|
// really the only good way to hide things.
|
||||||
|
// TODO perhaps have a "Hidden" rectangle in the Tomo API?
|
||||||
boxes[0].SetBounds(image.Rect(-16, -16, 0, 0))
|
boxes[0].SetBounds(image.Rect(-16, -16, 0, 0))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -327,7 +330,7 @@ func (this scrollbarLayout) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
|
|||||||
} else {
|
} else {
|
||||||
handleOffset = image.Pt(int(handlePosition), 0)
|
handleOffset = image.Pt(int(handlePosition), 0)
|
||||||
}
|
}
|
||||||
handle = handle.Add(handleOffset).Add(gutter.Min)
|
handle = handle.Sub(handleOffset).Add(gutter.Min)
|
||||||
|
|
||||||
// place handle
|
// place handle
|
||||||
boxes[0].SetBounds(handle)
|
boxes[0].SetBounds(handle)
|
||||||
@@ -341,9 +344,9 @@ func (this scrollbarLayout) viewportContentRatio () float64 {
|
|||||||
|
|
||||||
func (this scrollbarLayout) viewportLength () float64 {
|
func (this scrollbarLayout) viewportLength () float64 {
|
||||||
if this.vertical {
|
if this.vertical {
|
||||||
return float64(this.linked.InnerBounds().Dy())
|
return float64(this.linked.GetBox().InnerBounds().Dy())
|
||||||
} else {
|
} else {
|
||||||
return float64(this.linked.InnerBounds().Dx())
|
return float64(this.linked.GetBox().InnerBounds().Dx())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package objects
|
|||||||
import "image"
|
import "image"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/event"
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
|
|
||||||
// ScrollSide determines which Scrollbars are active in a ScrollContainer.
|
// ScrollSide determines which Scrollbars are active in a ScrollContainer.
|
||||||
type ScrollSide int; const (
|
type ScrollSide int; const (
|
||||||
@@ -61,7 +60,8 @@ func NewScrollContainer (sides ScrollSide) *ScrollContainer {
|
|||||||
}
|
}
|
||||||
this.CaptureScroll(true)
|
this.CaptureScroll(true)
|
||||||
this.OnScroll(this.handleScroll)
|
this.OnScroll(this.handleScroll)
|
||||||
theme.Apply(this, theme.R("objects", "ScrollContainer", sides.String()))
|
this.SetRole(tomo.R("objects", "ScrollContainer", sides.String()))
|
||||||
|
tomo.Apply(this)
|
||||||
this.SetLayout(this.layout)
|
this.SetLayout(this.layout)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
@@ -69,10 +69,10 @@ func NewScrollContainer (sides ScrollSide) *ScrollContainer {
|
|||||||
// SetRoot sets the root child of the ScrollContainer. There can only be one at
|
// SetRoot sets the root child of the ScrollContainer. There can only be one at
|
||||||
// a time, and setting it will remove and unlink the current child if there is
|
// a time, and setting it will remove and unlink the current child if there is
|
||||||
// one.
|
// one.
|
||||||
func (this *ScrollContainer) SetRoot (root tomo.ContentBox) {
|
func (this *ScrollContainer) SetRoot (root tomo.ContentObject) {
|
||||||
if this.layout.root != nil {
|
if this.layout.root != nil {
|
||||||
// delete root and close cookies
|
// remove root and close cookies
|
||||||
this.Delete(this.layout.root)
|
this.Remove(this.layout.root)
|
||||||
if this.horizontalCookie != nil {
|
if this.horizontalCookie != nil {
|
||||||
this.horizontalCookie.Close()
|
this.horizontalCookie.Close()
|
||||||
this.horizontalCookie = nil
|
this.horizontalCookie = nil
|
||||||
@@ -104,22 +104,45 @@ func (this *ScrollContainer) SetRoot (root tomo.ContentBox) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetValue sets the horizontal and vertical scrollbar values where 0 is all the
|
||||||
|
// way to the left/top, and 1 is all the way to the right/bottom.
|
||||||
|
func (this *ScrollContainer) SetValue (x, y float64) {
|
||||||
|
if this.layout.horizontal != nil {
|
||||||
|
this.layout.horizontal.SetValue(x)
|
||||||
|
}
|
||||||
|
if this.layout.vertical != nil {
|
||||||
|
this.layout.vertical.SetValue(y)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Value returns the horizontal and vertical scrollbar values where 0 is all the
|
||||||
|
// way to the left/top, and 1 is all the way to the right/bottom.
|
||||||
|
func (this *ScrollContainer) Value () (x, y float64) {
|
||||||
|
if this.layout.horizontal != nil {
|
||||||
|
x = this.layout.horizontal.Value()
|
||||||
|
}
|
||||||
|
if this.layout.vertical != nil {
|
||||||
|
y = this.layout.vertical.Value()
|
||||||
|
}
|
||||||
|
return x, y
|
||||||
|
}
|
||||||
|
|
||||||
func (this *ScrollContainer) handleScroll (x, y float64) {
|
func (this *ScrollContainer) handleScroll (x, y float64) {
|
||||||
if this.layout.root == nil { return }
|
if this.layout.root == nil { return }
|
||||||
this.layout.root.ScrollTo (
|
this.layout.root.ScrollTo (
|
||||||
this.layout.root.ContentBounds().Min.
|
this.layout.root.ContentBounds().Min.
|
||||||
Add(image.Pt(int(x), int(y))))
|
Sub(image.Pt(int(x), int(y))))
|
||||||
}
|
}
|
||||||
|
|
||||||
type scrollContainerLayout struct {
|
type scrollContainerLayout struct {
|
||||||
root tomo.ContentBox
|
root tomo.ContentObject
|
||||||
horizontal *Scrollbar
|
horizontal *Scrollbar
|
||||||
vertical *Scrollbar
|
vertical *Scrollbar
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *scrollContainerLayout) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
func (this *scrollContainerLayout) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
|
||||||
var minimum image.Point; if this.root != nil {
|
var minimum image.Point; if this.root != nil {
|
||||||
minimum = this.root.MinimumSize()
|
minimum = this.root.GetBox().MinimumSize()
|
||||||
}
|
}
|
||||||
if this.horizontal != nil {
|
if this.horizontal != nil {
|
||||||
minimum.Y += this.horizontal.MinimumSize().Y
|
minimum.Y += this.horizontal.MinimumSize().Y
|
||||||
@@ -143,7 +166,7 @@ func (this *scrollContainerLayout) Arrange (hints tomo.LayoutHints, boxes []tomo
|
|||||||
rootBounds.Max.X -= this.vertical.MinimumSize().X
|
rootBounds.Max.X -= this.vertical.MinimumSize().X
|
||||||
}
|
}
|
||||||
if this.root != nil {
|
if this.root != nil {
|
||||||
this.root.SetBounds(rootBounds)
|
this.root.GetBox().SetBounds(rootBounds)
|
||||||
}
|
}
|
||||||
if this.horizontal != nil {
|
if this.horizontal != nil {
|
||||||
this.horizontal.SetBounds(image.Rect (
|
this.horizontal.SetBounds(image.Rect (
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package objects
|
package objects
|
||||||
|
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
|
|
||||||
// Separator is a line for visually separating elements.
|
// Separator is a line for visually separating elements.
|
||||||
type Separator struct {
|
type Separator struct {
|
||||||
@@ -13,6 +12,7 @@ func NewSeparator () *Separator {
|
|||||||
this := &Separator {
|
this := &Separator {
|
||||||
Box: tomo.NewBox(),
|
Box: tomo.NewBox(),
|
||||||
}
|
}
|
||||||
theme.Apply(this, theme.R("objects", "Separator", ""))
|
this.SetRole(tomo.R("objects", "Separator", ""))
|
||||||
|
tomo.Apply(this)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|||||||
41
slider.go
41
slider.go
@@ -2,7 +2,6 @@ package objects
|
|||||||
|
|
||||||
import "image"
|
import "image"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
import "git.tebibyte.media/tomo/tomo/input"
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
import "git.tebibyte.media/tomo/tomo/event"
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
|
||||||
@@ -13,9 +12,10 @@ type Slider struct {
|
|||||||
layout sliderLayout
|
layout sliderLayout
|
||||||
dragging bool
|
dragging bool
|
||||||
dragOffset image.Point
|
dragOffset image.Point
|
||||||
|
step float64
|
||||||
|
|
||||||
on struct {
|
on struct {
|
||||||
valueChange event.FuncBroadcaster
|
slide event.FuncBroadcaster
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,6 +34,7 @@ func newSlider (orient string, value float64) *Slider {
|
|||||||
layout: sliderLayout {
|
layout: sliderLayout {
|
||||||
vertical: orient == "vertical",
|
vertical: orient == "vertical",
|
||||||
},
|
},
|
||||||
|
step: 0.05,
|
||||||
}
|
}
|
||||||
|
|
||||||
this.Add(this.handle)
|
this.Add(this.handle)
|
||||||
@@ -49,8 +50,12 @@ func newSlider (orient string, value float64) *Slider {
|
|||||||
this.OnMouseDown(this.handleMouseDown)
|
this.OnMouseDown(this.handleMouseDown)
|
||||||
this.OnMouseUp(this.handleMouseUp)
|
this.OnMouseUp(this.handleMouseUp)
|
||||||
this.OnMouseMove(this.handleMouseMove)
|
this.OnMouseMove(this.handleMouseMove)
|
||||||
theme.Apply(this.handle, theme.R("objects", "SliderHandle", orient))
|
this.OnScroll(this.handleScroll)
|
||||||
theme.Apply(this, theme.R("objects", "Slider", orient))
|
|
||||||
|
this.handle.SetRole(tomo.R("objects", "SliderHandle", orient))
|
||||||
|
tomo.Apply(this.handle)
|
||||||
|
this.SetRole(tomo.R("objects", "Slider", orient))
|
||||||
|
tomo.Apply(this)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -71,7 +76,6 @@ func (this *Slider) SetValue (value float64) {
|
|||||||
if value == this.layout.value { return }
|
if value == this.layout.value { return }
|
||||||
this.layout.value = value
|
this.layout.value = value
|
||||||
this.SetLayout(this.layout)
|
this.SetLayout(this.layout)
|
||||||
this.on.valueChange.Broadcast()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Value returns the value of the slider between 0 and 1.
|
// Value returns the value of the slider between 0 and 1.
|
||||||
@@ -79,10 +83,10 @@ func (this *Slider) Value () float64 {
|
|||||||
return this.layout.value
|
return this.layout.value
|
||||||
}
|
}
|
||||||
|
|
||||||
// OnValueChange specifies a function to be called when the slider's value
|
// OnValueChange specifies a function to be called when the user moves the
|
||||||
// changes.
|
// slider.
|
||||||
func (this *Slider) OnValueChange (callback func ()) event.Cookie {
|
func (this *Slider) OnSlide (callback func ()) event.Cookie {
|
||||||
return this.on.valueChange.Connect(callback)
|
return this.on.slide.Connect(callback)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *Slider) handleKeyDown (key input.Key, numpad bool) {
|
func (this *Slider) handleKeyDown (key input.Key, numpad bool) {
|
||||||
@@ -99,16 +103,20 @@ func (this *Slider) handleKeyDown (key input.Key, numpad bool) {
|
|||||||
} else {
|
} else {
|
||||||
this.SetValue(this.Value() - increment)
|
this.SetValue(this.Value() - increment)
|
||||||
}
|
}
|
||||||
|
this.on.slide.Broadcast()
|
||||||
case input.KeyDown, input.KeyRight:
|
case input.KeyDown, input.KeyRight:
|
||||||
if this.Modifiers().Alt {
|
if this.Modifiers().Alt {
|
||||||
this.SetValue(1)
|
this.SetValue(1)
|
||||||
} else {
|
} else {
|
||||||
this.SetValue(this.Value() + increment)
|
this.SetValue(this.Value() + increment)
|
||||||
}
|
}
|
||||||
|
this.on.slide.Broadcast()
|
||||||
case input.KeyHome:
|
case input.KeyHome:
|
||||||
this.SetValue(0)
|
this.SetValue(0)
|
||||||
|
this.on.slide.Broadcast()
|
||||||
case input.KeyEnd:
|
case input.KeyEnd:
|
||||||
this.SetValue(1)
|
this.SetValue(1)
|
||||||
|
this.on.slide.Broadcast()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -139,14 +147,18 @@ func (this *Slider) handleMouseDown (button input.Button) {
|
|||||||
case input.ButtonMiddle:
|
case input.ButtonMiddle:
|
||||||
if above {
|
if above {
|
||||||
this.SetValue(0)
|
this.SetValue(0)
|
||||||
|
this.on.slide.Broadcast()
|
||||||
} else {
|
} else {
|
||||||
this.SetValue(1)
|
this.SetValue(1)
|
||||||
|
this.on.slide.Broadcast()
|
||||||
}
|
}
|
||||||
case input.ButtonRight:
|
case input.ButtonRight:
|
||||||
if above {
|
if above {
|
||||||
this.SetValue(this.Value() - 0.05)
|
this.SetValue(this.Value() - this.step)
|
||||||
|
this.on.slide.Broadcast()
|
||||||
} else {
|
} else {
|
||||||
this.SetValue(this.Value() + 0.05)
|
this.SetValue(this.Value() + this.step)
|
||||||
|
this.on.slide.Broadcast()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -161,6 +173,12 @@ func (this *Slider) handleMouseMove () {
|
|||||||
this.drag()
|
this.drag()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *Slider) handleScroll (x, y float64) {
|
||||||
|
delta := (x + y) * 0.005
|
||||||
|
this.SetValue(this.Value() + delta)
|
||||||
|
this.on.slide.Broadcast()
|
||||||
|
}
|
||||||
|
|
||||||
func (this *Slider) drag () {
|
func (this *Slider) drag () {
|
||||||
pointer := this.MousePosition().Sub(this.dragOffset)
|
pointer := this.MousePosition().Sub(this.dragOffset)
|
||||||
gutter := this.InnerBounds()
|
gutter := this.InnerBounds()
|
||||||
@@ -176,6 +194,7 @@ func (this *Slider) drag () {
|
|||||||
float64(pointer.X) /
|
float64(pointer.X) /
|
||||||
float64(gutter.Dx() - handle.Dx()))
|
float64(gutter.Dx() - handle.Dx()))
|
||||||
}
|
}
|
||||||
|
this.on.slide.Broadcast()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *Slider) fallbackDragOffset () image.Point {
|
func (this *Slider) fallbackDragOffset () image.Point {
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package objects
|
|||||||
import "image"
|
import "image"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/text"
|
import "git.tebibyte.media/tomo/tomo/text"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
import "git.tebibyte.media/tomo/tomo/input"
|
import "git.tebibyte.media/tomo/tomo/input"
|
||||||
import "git.tebibyte.media/tomo/tomo/event"
|
import "git.tebibyte.media/tomo/tomo/event"
|
||||||
|
|
||||||
@@ -13,13 +12,15 @@ type TextInput struct {
|
|||||||
text []rune
|
text []rune
|
||||||
on struct {
|
on struct {
|
||||||
enter event.FuncBroadcaster
|
enter event.FuncBroadcaster
|
||||||
|
edit event.FuncBroadcaster
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTextInput creates a new text input containing the specified text.
|
// NewTextInput creates a new text input containing the specified text.
|
||||||
func NewTextInput (text string) *TextInput {
|
func NewTextInput (text string) *TextInput {
|
||||||
this := &TextInput { TextBox: tomo.NewTextBox() }
|
this := &TextInput { TextBox: tomo.NewTextBox() }
|
||||||
theme.Apply(this, theme.R("objects", "TextInput", ""))
|
this.SetRole(tomo.R("objects", "TextInput", ""))
|
||||||
|
tomo.Apply(this)
|
||||||
this.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
|
this.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
|
||||||
this.SetText(text)
|
this.SetText(text)
|
||||||
this.SetFocusable(true)
|
this.SetFocusable(true)
|
||||||
@@ -47,6 +48,11 @@ func (this *TextInput) OnEnter (callback func ()) event.Cookie {
|
|||||||
return this.on.enter.Connect(callback)
|
return this.on.enter.Connect(callback)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OnEdit specifies a function to be called when the user edits the input text.
|
||||||
|
func (this *TextInput) OnEdit (callback func ()) event.Cookie {
|
||||||
|
return this.on.edit.Connect(callback)
|
||||||
|
}
|
||||||
|
|
||||||
func (this *TextInput) handleKeyDown (key input.Key, numpad bool) {
|
func (this *TextInput) handleKeyDown (key input.Key, numpad bool) {
|
||||||
dot := this.Dot()
|
dot := this.Dot()
|
||||||
modifiers := this.Modifiers()
|
modifiers := this.Modifiers()
|
||||||
@@ -54,8 +60,8 @@ func (this *TextInput) handleKeyDown (key input.Key, numpad bool) {
|
|||||||
sel := modifiers.Shift
|
sel := modifiers.Shift
|
||||||
changed := false
|
changed := false
|
||||||
|
|
||||||
// TODO all this (except editing stuff) really should be moved into the
|
// TODO all dot control (movement, selection, etc) should be done in the
|
||||||
// backend
|
// backend. (editing should be done here, though)
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case key == input.KeyEnter:
|
case key == input.KeyEnter:
|
||||||
@@ -93,7 +99,18 @@ func (this *TextInput) handleKeyDown (key input.Key, numpad bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.Select(dot)
|
this.Select(dot)
|
||||||
if changed { this.SetText(string(this.text)) }
|
if changed {
|
||||||
|
this.SetText(string(this.text))
|
||||||
|
this.on.edit.Broadcast()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Type types a character at the current dot position.
|
||||||
|
func (this *TextInput) Type (char rune) {
|
||||||
|
dot := this.Dot()
|
||||||
|
this.text, dot = text.Type(this.text, dot, rune(char))
|
||||||
|
this.Select(dot)
|
||||||
|
this.SetText(string(this.text))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *TextInput) handleScroll (x, y float64) {
|
func (this *TextInput) handleScroll (x, y float64) {
|
||||||
@@ -2,7 +2,6 @@ package objects
|
|||||||
|
|
||||||
import "image"
|
import "image"
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
import "git.tebibyte.media/tomo/tomo/theme"
|
|
||||||
|
|
||||||
// TextView is an area for displaying a large amount of multi-line text.
|
// TextView is an area for displaying a large amount of multi-line text.
|
||||||
type TextView struct {
|
type TextView struct {
|
||||||
@@ -12,7 +11,8 @@ type TextView struct {
|
|||||||
// NewTextView creates a new text view.
|
// NewTextView creates a new text view.
|
||||||
func NewTextView (text string) *TextView {
|
func NewTextView (text string) *TextView {
|
||||||
this := &TextView { TextBox: tomo.NewTextBox() }
|
this := &TextView { TextBox: tomo.NewTextBox() }
|
||||||
theme.Apply(this, theme.R("objects", "TextView", ""))
|
this.SetRole(tomo.R("objects", "TextView", ""))
|
||||||
|
tomo.Apply(this)
|
||||||
this.SetFocusable(true)
|
this.SetFocusable(true)
|
||||||
this.SetSelectable(true)
|
this.SetSelectable(true)
|
||||||
this.SetText(text)
|
this.SetText(text)
|
||||||
|
|||||||
Reference in New Issue
Block a user