Compare commits

..

No commits in common. "6ca6771fc64ed5db6ebf6de2d1eb473b31f6848a" and "1125d98b3dc6105908ec5a305267e56a4f8c55c0" have entirely different histories.

28 changed files with 392 additions and 450 deletions

View File

@ -28,16 +28,17 @@ func NewButton (text string) *Button {
ContainerBox: tomo.NewContainerBox(), ContainerBox: tomo.NewContainerBox(),
label: NewLabel(text), label: NewLabel(text),
} }
box.SetRole(tomo.R("objects", "Button")) box.SetRole(tomo.R("objects", "Button", ""))
box.label.SetAttr(tomo.AAlign(tomo.AlignMiddle, tomo.AlignMiddle)) box.label.SetAlign(tomo.AlignMiddle, tomo.AlignMiddle)
box.SetLayout(buttonLayout) box.SetLayout(buttonLayout)
box.SetText(text) box.SetText(text)
box.CatchDND(true) box.CaptureDND(true)
box.CatchMouse(true) box.CaptureMouse(true)
box.CaptureScroll(true)
box.CaptureKeyboard(true)
box.OnButtonDown(box.handleButtonDown) box.OnMouseUp(box.handleMouseUp)
box.OnButtonUp(box.handleButtonUp)
box.OnKeyUp(box.handleKeyUp) box.OnKeyUp(box.handleKeyUp)
box.SetFocusable(true) box.SetFocusable(true)
return box return box
@ -88,19 +89,14 @@ func (this *Button) applyLayout () {
} }
} }
func (this *Button) handleKeyUp (catch func (), 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()
} }
func (this *Button) handleButtonDown (catch func (), button input.Button) { func (this *Button) handleMouseUp (button input.Button) {
catch()
}
func (this *Button) handleButtonUp (catch func (), button input.Button) {
catch()
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
if this.Window().MousePosition().In(this.Bounds()) { if this.MousePosition().In(this.Bounds()) {
this.on.click.Broadcast() this.on.click.Broadcast()
} }
} }

View File

@ -26,7 +26,7 @@ func NewCalendar (tm time.Time) *Calendar {
ContainerBox: tomo.NewContainerBox(), ContainerBox: tomo.NewContainerBox(),
time: tm, time: tm,
} }
calendar.SetRole(tomo.R("objects", "Calendar")) calendar.SetRole(tomo.R("objects", "Calendar", ""))
calendar.SetLayout(layouts.ContractVertical) calendar.SetLayout(layouts.ContractVertical)
prevButton := NewButton("") prevButton := NewButton("")
@ -42,10 +42,10 @@ func NewCalendar (tm time.Time) *Calendar {
calendar.on.valueChange.Broadcast() calendar.on.valueChange.Broadcast()
}) })
calendar.monthLabel = NewLabel("") calendar.monthLabel = NewLabel("")
calendar.monthLabel.SetAttr(tomo.AAlign(tomo.AlignMiddle, tomo.AlignMiddle)) calendar.monthLabel.SetAlign(tomo.AlignMiddle, tomo.AlignMiddle)
calendar.grid = tomo.NewContainerBox() calendar.grid = tomo.NewContainerBox()
calendar.grid.SetRole(tomo.R("objects", "CalendarGrid")) calendar.grid.SetRole(tomo.R("objects", "CalendarGrid", ""))
calendar.grid.SetLayout(layouts.NewGrid ( calendar.grid.SetLayout(layouts.NewGrid (
true, true, true, true, true, true, true)()) true, true, true, true, true, true, true)())
calendar.Add(NewInnerContainer ( calendar.Add(NewInnerContainer (
@ -54,6 +54,7 @@ func NewCalendar (tm time.Time) *Calendar {
calendar.Add(calendar.grid) calendar.Add(calendar.grid)
calendar.OnScroll(calendar.handleScroll) calendar.OnScroll(calendar.handleScroll)
calendar.CaptureScroll(true)
calendar.refresh() calendar.refresh()
return calendar return calendar
@ -97,9 +98,9 @@ func (this *Calendar) refresh () {
this.grid.Clear() this.grid.Clear()
for _, day := range weekdayAbbreviations { for _, day := range weekdayAbbreviations {
dayLabel := tomo.NewTextBox() dayLabel := tomo.NewTextBox()
dayLabel.SetRole(tomo.R("objects", "CalendarWeekdayHeader")) dayLabel.SetRole(tomo.R("objects", "CalendarWeekdayHeader", ""))
dayLabel.SetText(day) dayLabel.SetText(day)
dayLabel.SetAttr(tomo.AAlign(tomo.AlignMiddle, tomo.AlignMiddle)) dayLabel.SetAlign(tomo.AlignMiddle, tomo.AlignMiddle)
this.grid.Add(dayLabel) this.grid.Add(dayLabel)
} }
@ -115,11 +116,9 @@ func (this *Calendar) refresh () {
day := tomo.NewTextBox() day := tomo.NewTextBox()
day.SetText(fmt.Sprint(dayIter)) day.SetText(fmt.Sprint(dayIter))
if weekday == 1 || weekday == 0 { if weekday == 1 || weekday == 0 {
day.SetRole(tomo.R("objects", "CalendarDay")) day.SetRole(tomo.R("objects", "CalendarDay", "weekend"))
day.SetTag("weekend", true)
} else { } else {
day.SetRole(tomo.R("objects", "CalendarDay")) day.SetRole(tomo.R("objects", "CalendarDay", "weekday"))
day.SetTag("weekday", true)
} }
this.grid.Add(day) this.grid.Add(day)
} else { } else {
@ -128,8 +127,7 @@ func (this *Calendar) refresh () {
} }
} }
func (this *Calendar) handleScroll (catch func (), x, y float64) { func (this *Calendar) handleScroll (x, y float64) {
catch()
if y < 0 { if y < 0 {
this.prevMonth() this.prevMonth()
} else { } else {

View File

@ -18,11 +18,10 @@ func NewCheckbox (value bool) *Checkbox {
box := &Checkbox { box := &Checkbox {
Box: tomo.NewBox(), Box: tomo.NewBox(),
} }
box.SetRole(tomo.R("objects", "Checkbox")) box.SetRole(tomo.R("objects", "Checkbox", ""))
box.SetValue(value) box.SetValue(value)
box.OnButtonDown(box.handleButtonDown) box.OnMouseUp(box.handleMouseUp)
box.OnButtonUp(box.handleButtonUp)
box.OnKeyUp(box.handleKeyUp) box.OnKeyUp(box.handleKeyUp)
box.SetFocusable(true) box.SetFocusable(true)
return box return box
@ -36,9 +35,11 @@ func (this *Checkbox) Value () bool {
// SetValue sets the value of the checkbox. // SetValue sets the value of the checkbox.
func (this *Checkbox) SetValue (value bool) { func (this *Checkbox) SetValue (value bool) {
this.value = value this.value = value
// the theme shall decide what checked and unchecked states look like if this.value {
this.SetTag("checked", value) this.SetTextureCenter(tomo.IconCheckboxChecked.Texture(tomo.IconSizeSmall))
this.SetTag("unchecked", !value) } else {
this.SetTextureCenter(tomo.IconCheckboxUnchecked.Texture(tomo.IconSizeSmall))
}
} }
// Toggle toggles the value of the checkbox between true and false. // Toggle toggles the value of the checkbox between true and false.
@ -52,19 +53,14 @@ func (this *Checkbox) OnValueChange (callback func ()) event.Cookie {
return this.on.valueChange.Connect(callback) return this.on.valueChange.Connect(callback)
} }
func (this *Checkbox) handleKeyUp (catch func (), key input.Key, numberPad bool) { func (this *Checkbox) handleKeyUp (key input.Key, numberPad bool) {
if key != input.KeyEnter && key != input.Key(' ') { return } if key != input.KeyEnter && key != input.Key(' ') { return }
this.Toggle() this.Toggle()
} }
func (this *Checkbox) handleButtonDown (catch func (), button input.Button) { func (this *Checkbox) handleMouseUp (button input.Button) {
catch()
}
func (this *Checkbox) handleButtonUp (catch func (), button input.Button) {
catch()
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
if this.Window().MousePosition().In(this.Bounds()) { if this.MousePosition().In(this.Bounds()) {
this.Toggle() this.Toggle()
} }
} }

View File

@ -28,7 +28,7 @@ func NewColorPicker (value color.Color) *ColorPicker {
picker := &ColorPicker { picker := &ColorPicker {
ContainerBox: tomo.NewContainerBox(), ContainerBox: tomo.NewContainerBox(),
} }
picker.SetRole(tomo.R("objects", "ColorPicker")) picker.SetRole(tomo.R("objects", "ColorPicker", ""))
picker.SetLayout(layouts.Row { true, false, false }) picker.SetLayout(layouts.Row { true, false, false })
picker.pickerMap = newColorPickerMap(picker) picker.pickerMap = newColorPickerMap(picker)
picker.Add(picker.pickerMap) picker.Add(picker.pickerMap)
@ -90,20 +90,20 @@ func newColorPickerMap (parent *ColorPicker) *colorPickerMap {
parent: parent, parent: parent,
} }
picker.SetDrawer(picker) picker.SetDrawer(picker)
picker.SetRole(tomo.R("objects", "ColorPickerMap")) picker.SetRole(tomo.R("objects", "ColorPickerMap", ""))
picker.OnButtonUp(picker.handleButtonUp) picker.OnMouseUp(picker.handleMouseUp)
picker.OnButtonDown(picker.handleButtonDown) picker.OnMouseDown(picker.handleMouseDown)
picker.OnMouseMove(picker.handleMouseMove) picker.OnMouseMove(picker.handleMouseMove)
return picker return picker
} }
func (this *colorPickerMap) handleButtonDown (catch func (), button input.Button) { func (this *colorPickerMap) handleMouseDown (button input.Button) {
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
this.dragging = true this.dragging = true
this.drag() this.drag()
} }
func (this *colorPickerMap) handleButtonUp (catch func (), button input.Button) { func (this *colorPickerMap) handleMouseUp (button input.Button) {
if button != input.ButtonLeft || !this.dragging { return } if button != input.ButtonLeft || !this.dragging { return }
this.dragging = false this.dragging = false
} }
@ -114,7 +114,7 @@ func (this *colorPickerMap) handleMouseMove () {
} }
func (this *colorPickerMap) drag () { func (this *colorPickerMap) drag () {
pointer := this.Window().MousePosition() pointer := this.MousePosition()
bounds := this.InnerBounds() bounds := this.InnerBounds()
this.parent.value.S = float64(pointer.X - bounds.Min.X) / float64(bounds.Dx()) this.parent.value.S = float64(pointer.X - bounds.Min.X) / float64(bounds.Dx())
this.parent.value.V = 1 - float64(pointer.Y - bounds.Min.Y) / float64(bounds.Dy()) this.parent.value.V = 1 - float64(pointer.Y - bounds.Min.Y) / float64(bounds.Dy())

View File

@ -27,8 +27,7 @@ func newContainer (layout tomo.Layout, children ...tomo.Object) *Container {
// window, tab pane, etc. // 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...)
this.SetRole(tomo.R("objects", "Container")) this.SetRole(tomo.R("objects", "Container", "outer"))
this.SetTag("outer", true)
return this return this
} }
@ -36,16 +35,14 @@ func NewOuterContainer (layout tomo.Layout, children ...tomo.Object) *Container
// around it. It is meant to be used as a root container for a ScrollContainer. // around it. It is meant to be used as a root container for a ScrollContainer.
func NewSunkenContainer (layout tomo.Layout, children ...tomo.Object) *Container { func NewSunkenContainer (layout tomo.Layout, children ...tomo.Object) *Container {
this := newContainer(layout, children...) this := newContainer(layout, children...)
this.SetRole(tomo.R("objects", "Container")) this.SetRole(tomo.R("objects", "Container", "sunken"))
this.SetTag("sunken", true)
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...)
this.SetRole(tomo.R("objects", "Container")) this.SetRole(tomo.R("objects", "Container", "inner"))
this.SetTag("inner", true)
return this return this
} }

View File

@ -55,7 +55,7 @@ func NewDialog (kind DialogKind, parent tomo.Window, title, message string, opti
dialog.SetTitle(title) dialog.SetTitle(title)
icon := NewIcon(iconId, tomo.IconSizeLarge) icon := NewIcon(iconId, tomo.IconSizeLarge)
messageText := NewLabel(message) messageText := NewLabel(message)
messageText.SetAttr(tomo.AAlign(tomo.AlignStart, tomo.AlignMiddle)) messageText.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
for _, option := range options { for _, option := range options {
if option, ok := option.(clickable); ok { if option, ok := option.(clickable); ok {
@ -63,7 +63,7 @@ func NewDialog (kind DialogKind, parent tomo.Window, title, message string, opti
} }
} }
dialog.controlRow = NewInnerContainer(layouts.ContractHorizontal, options...) dialog.controlRow = NewInnerContainer(layouts.ContractHorizontal, options...)
messageText.SetAttr(tomo.AAlign(tomo.AlignEnd, tomo.AlignEnd)) dialog.controlRow.SetAlign(tomo.AlignEnd, tomo.AlignEnd)
dialog.SetRoot(NewOuterContainer ( dialog.SetRoot(NewOuterContainer (
layouts.Column { true, false }, layouts.Column { true, false },

2
go.mod
View File

@ -2,6 +2,6 @@ module git.tebibyte.media/tomo/objects
go 1.20 go 1.20
require git.tebibyte.media/tomo/tomo v0.40.0 require git.tebibyte.media/tomo/tomo v0.38.0
require golang.org/x/image v0.11.0 // indirect require golang.org/x/image v0.11.0 // indirect

4
go.sum
View File

@ -1,5 +1,5 @@
git.tebibyte.media/tomo/tomo v0.40.0 h1:X1ffSGE+dXI1VkJ97vM+RMfSfchCvSbP0vRbLJ9qoDE= git.tebibyte.media/tomo/tomo v0.38.0 h1:K5TP67RxnszudeNfmGZiU5cFTRjFueXiI3NCsgw+05U=
git.tebibyte.media/tomo/tomo v0.40.0/go.mod h1:C9EzepS9wjkTJjnZaPBh22YvVPyA4hbBAJVU20Rdmps= git.tebibyte.media/tomo/tomo v0.38.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=

View File

@ -15,8 +15,7 @@ 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 := &Heading { TextBox: tomo.NewTextBox() } this := &Heading { TextBox: tomo.NewTextBox() }
this.SetRole(tomo.R("objects", "Heading")) this.SetRole(tomo.R("objects", "Heading", fmt.Sprint(level)))
this.SetTag(fmt.Sprint(level), true)
this.SetText(text) this.SetText(text)
return this return this
} }

29
icon.go
View File

@ -1,5 +1,6 @@
package objects package objects
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/canvas" import "git.tebibyte.media/tomo/tomo/canvas"
@ -9,22 +10,13 @@ type Icon struct {
tomo.Box tomo.Box
} }
func iconSizeString (size tomo.IconSize) string {
switch size {
case tomo.IconSizeLarge: return "large"
case tomo.IconSizeMedium: return "medium"
default: return "small"
}
}
// NewIcon creates a new icon from an icon ID. // NewIcon creates a new icon from an icon ID.
func NewIcon (id tomo.Icon, size tomo.IconSize) *Icon { func NewIcon (id tomo.Icon, size tomo.IconSize) *Icon {
this := &Icon { this := &Icon {
Box: tomo.NewBox(), Box: tomo.NewBox(),
} }
this.SetRole(tomo.R("objects", "Icon")) this.SetRole(tomo.R("objects", "Icon", size.String()))
this.SetTag(iconSizeString(size), true) this.SetTexture(id.Texture(size))
this.setTexture(id.Texture(size))
return this return this
} }
@ -33,20 +25,17 @@ func NewMimeIcon (mime data.Mime, size tomo.IconSize) *Icon {
this := &Icon { this := &Icon {
Box: tomo.NewBox(), Box: tomo.NewBox(),
} }
this.SetRole(tomo.R("objects", "Icon")) this.SetRole(tomo.R("objects", "Icon", size.String()))
this.SetTag(iconSizeString(size), true) this.SetTexture(tomo.MimeIcon(mime, size))
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.SetTextureCenter(texture)
this.SetAttr(tomo.ATexture(texture))
this.SetAttr(tomo.ATextureMode(tomo.TextureModeCenter))
if texture == nil { if texture == nil {
this.SetAttr(tomo.AMinimumSize(0, 0)) this.SetMinimumSize(image.Pt(0, 0))
} else { } else {
bounds := texture.Bounds() bounds := texture.Bounds()
this.SetAttr(tomo.AttrMinimumSize(bounds.Max.Sub(bounds.Min))) this.SetMinimumSize(bounds.Max.Sub(bounds.Min))
} }
} }

View File

@ -10,8 +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() }
this.SetRole(tomo.R("objects", "Label")) this.SetRole(tomo.R("objects", "Label", ""))
this.SetText(text) this.SetText(text)
this.SetAttr(tomo.AAlign(tomo.AlignStart, tomo.AlignMiddle)) this.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
return this return this
} }

View File

@ -20,14 +20,14 @@ func NewLabelCheckbox (value bool, text string) *LabelCheckbox {
checkbox: NewCheckbox(value), checkbox: NewCheckbox(value),
label: NewLabel(text), label: NewLabel(text),
} }
box.SetRole(tomo.R("objects", "LabelCheckbox")) box.SetRole(tomo.R("objects", "LabelCheckbox", ""))
box.label.SetAttr(tomo.AAlign(tomo.AlignStart, tomo.AlignMiddle)) box.label.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
box.Add(box.checkbox) box.Add(box.checkbox)
box.Add(box.label) box.Add(box.label)
box.SetLayout(layouts.Row { false, true }) box.SetLayout(layouts.Row { false, true })
box.OnButtonDown(box.handleButtonDown) box.OnMouseUp(box.handleMouseUp)
box.OnButtonUp(box.handleButtonUp) box.label.OnMouseUp(box.handleMouseUp)
return box return box
} }
@ -52,14 +52,9 @@ func (this *LabelCheckbox) OnValueChange (callback func ()) event.Cookie {
return this.checkbox.OnValueChange(callback) return this.checkbox.OnValueChange(callback)
} }
func (this *LabelCheckbox) handleButtonDown (capture func (), button input.Button) { func (this *LabelCheckbox) handleMouseUp (button input.Button) {
capture()
}
func (this *LabelCheckbox) handleButtonUp (capture func (), button input.Button) {
capture()
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
if this.Window().MousePosition().In(this.Bounds()) { if this.MousePosition().In(this.Bounds()) {
this.checkbox.SetFocused(true) this.checkbox.SetFocused(true)
this.checkbox.Toggle() this.checkbox.Toggle()
} }

View File

@ -21,15 +21,15 @@ func NewLabelSwatch (value color.Color, text string) *LabelSwatch {
swatch: NewSwatch(value), swatch: NewSwatch(value),
label: NewLabel(text), label: NewLabel(text),
} }
box.SetRole(tomo.R("objects", "LabelSwatch")) box.SetRole(tomo.R("objects", "LabelSwatch", ""))
box.swatch.label = text box.swatch.label = text
box.label.SetAttr(tomo.AAlign(tomo.AlignStart, tomo.AlignMiddle)) box.label.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
box.Add(box.swatch) box.Add(box.swatch)
box.Add(box.label) box.Add(box.label)
box.SetLayout(layouts.Row { false, true }) box.SetLayout(layouts.Row { false, true })
box.OnButtonDown(box.handleButtonDown) box.OnMouseUp(box.handleMouseUp)
box.OnButtonUp(box.handleButtonUp) box.label.OnMouseUp(box.handleMouseUp)
return box return box
} }
@ -60,14 +60,9 @@ func (this *LabelSwatch) OnConfirm (callback func ()) event.Cookie {
return this.swatch.OnConfirm(callback) return this.swatch.OnConfirm(callback)
} }
func (this *LabelSwatch) handleButtonDown (catch func (), button input.Button) { func (this *LabelSwatch) handleMouseUp (button input.Button) {
catch()
}
func (this *LabelSwatch) handleButtonUp (catch func (), button input.Button) {
catch()
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
if this.Window().MousePosition().In(this.Bounds()) { if this.MousePosition().In(this.Bounds()) {
this.swatch.SetFocused(true) this.swatch.SetFocused(true)
this.swatch.Choose() this.swatch.Choose()
} }

View File

@ -15,19 +15,19 @@ const ContractVertical Contract = true
// ContractHorizontal is a horizontal contracted layout. // ContractHorizontal is a horizontal contracted layout.
const ContractHorizontal Contract = false const ContractHorizontal Contract = false
func (contract Contract) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) image.Point { func (contract Contract) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
return contract.fallback().MinimumSize(hints, boxes) return contract.fallback().MinimumSize(hints, boxes)
} }
func (contract Contract) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) { func (contract Contract) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
contract.fallback().Arrange(hints, boxes) contract.fallback().Arrange(hints, boxes)
} }
func (contract Contract) RecommendedHeight (hints tomo.LayoutHints, boxes tomo.BoxQuerier, width int) int { func (contract Contract) RecommendedHeight (hints tomo.LayoutHints, boxes []tomo.Box, width int) int {
return contract.fallback().RecommendedHeight(hints, boxes, width) return contract.fallback().RecommendedHeight(hints, boxes, width)
} }
func (contract Contract) RecommendedWidth (hints tomo.LayoutHints, boxes tomo.BoxQuerier, height int) int { func (contract Contract) RecommendedWidth (hints tomo.LayoutHints, boxes []tomo.Box, height int) int {
return contract.fallback().RecommendedWidth(hints, boxes, height) return contract.fallback().RecommendedWidth(hints, boxes, height)
} }

View File

@ -17,21 +17,21 @@ const FlowVertical Flow = true
// FlowHorizontal is a horizontal flow layout. // FlowHorizontal is a horizontal flow layout.
const FlowHorizontal Flow = false const FlowHorizontal Flow = false
func (flow Flow) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) image.Point { func (flow Flow) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
// TODO: write down somewhere that layout minimums aren't taken into // TODO: write down somewhere that layout minimums aren't taken into
// account when the respective direction is overflowed // account when the respective direction is overflowed
return flow.fallback().MinimumSize(hints, boxes) return flow.fallback().MinimumSize(hints, boxes)
} }
func (flow Flow) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) { func (flow Flow) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
if flow.v() && !hints.OverflowY || flow.h() && !hints.OverflowX { if flow.v() && !hints.OverflowY || flow.h() && !hints.OverflowX {
flow.fallback().Arrange(hints, boxes) flow.fallback().Arrange(hints, boxes)
} }
// find a minor size value that will fit all boxes // find a minor size value that will fit all boxes
minorSize := 0 minorSize := 0
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
boxSize := flow.minor(boxes.MinimumSize(index)) boxSize := flow.minor(box.MinimumSize())
if boxSize > minorSize { minorSize = boxSize } if boxSize > minorSize { minorSize = boxSize }
} }
if minorSize == 0 { return } if minorSize == 0 { return }
@ -43,16 +43,17 @@ func (flow Flow) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
// arrange // arrange
point := hints.Bounds.Min point := hints.Bounds.Min
index := 0 index := 0
for index < boxes.Len() { for index < len(boxes) {
// get a slice of boxes for this major step // get a slice of boxes for this major step
stepIndexEnd := index + minorSteps stepIndexEnd := index + minorSteps
if stepIndexEnd > boxes.Len() { stepIndexEnd = boxes.Len() } if stepIndexEnd > len(boxes) { stepIndexEnd = len(boxes) }
step := boxes[index:stepIndexEnd]
index += minorSteps index += minorSteps
// find a major size that will fit all boxes on this major step // find a major size that will fit all boxes on this major step
majorSize := 0 majorSize := 0
for index := index; index < stepIndexEnd; index ++ { for _, box := range step {
boxSize := flow.major(boxes.MinimumSize(index)) boxSize := flow.major(box.MinimumSize())
if boxSize > majorSize { majorSize = boxSize } if boxSize > majorSize { majorSize = boxSize }
} }
if majorSize == 0 { continue } if majorSize == 0 { continue }
@ -61,9 +62,9 @@ func (flow Flow) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
var size image.Point var size image.Point
size = flow.incrMajor(size, majorSize) size = flow.incrMajor(size, majorSize)
size = flow.incrMinor(size, minorSize) size = flow.incrMinor(size, minorSize)
for index := index; index < stepIndexEnd; index ++ { for _, box := range step {
bounds := image.Rectangle { Min: point, Max: point.Add(size) } bounds := image.Rectangle { Min: point, Max: point.Add(size) }
boxes.SetBounds(index, bounds) box.SetBounds(bounds)
point = flow.incrMinor(point, minorSize + flow.minor(hints.Gap)) point = flow.incrMinor(point, minorSize + flow.minor(hints.Gap))
} }
@ -124,12 +125,12 @@ func (flow Flow) fallback () tomo.Layout {
return Contract(flow) return Contract(flow)
} }
func (flow Flow) RecommendedHeight (hints tomo.LayoutHints, boxes tomo.BoxQuerier, width int) int { func (flow Flow) RecommendedHeight (hints tomo.LayoutHints, boxes []tomo.Box, width int) int {
// TODO // TODO
return 0 return 0
} }
func (flow Flow) RecommendedWidth (hints tomo.LayoutHints, boxes tomo.BoxQuerier, height int) int { func (flow Flow) RecommendedWidth (hints tomo.LayoutHints, boxes []tomo.Box, height int) int {
// TODO // TODO
return 0 return 0
} }

View File

@ -32,7 +32,7 @@ func NewGrid (columns ...bool) func (rows ...bool) *Grid {
} }
} }
func (this *Grid) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) image.Point { func (this *Grid) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
cols, rows := this.minimums(boxes) cols, rows := this.minimums(boxes)
size := image.Pt ( size := image.Pt (
(len(cols) - 1) * hints.Gap.X, (len(cols) - 1) * hints.Gap.X,
@ -42,7 +42,7 @@ func (this *Grid) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) im
return size return size
} }
func (this *Grid) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) { func (this *Grid) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
xExpand := func (index int) bool { xExpand := func (index int) bool {
return this.xExpand[index] return this.xExpand[index]
} }
@ -56,9 +56,9 @@ func (this *Grid) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
expand(hints, rows, hints.Bounds.Dy(), yExpand) expand(hints, rows, hints.Bounds.Dy(), yExpand)
position := hints.Bounds.Min position := hints.Bounds.Min
for index := 0; index < boxes.Len(); index ++ { for index, box := range boxes {
col, row := index % len(cols), index / len(cols) col, row := index % len(cols), index / len(cols)
boxes.SetBounds(index, image.Rectangle { box.SetBounds(image.Rectangle {
Min: position, Min: position,
Max: position.Add(image.Pt(cols[col], rows[row])), Max: position.Add(image.Pt(cols[col], rows[row])),
}) })
@ -71,13 +71,13 @@ func (this *Grid) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
} }
} }
func (this *Grid) minimums (boxes tomo.BoxQuerier) ([]int, []int) { func (this *Grid) minimums (boxes []tomo.Box) ([]int, []int) {
nCols, nRows := this.dimensions(boxes) nCols, nRows := this.dimensions(boxes)
cols, rows := make([]int, nCols), make([]int, nRows) cols, rows := make([]int, nCols), make([]int, nRows)
for index := 0; index < boxes.Len(); index ++ { for index, box := range boxes {
col, row := index % len(cols), index / len(cols) col, row := index % len(cols), index / len(cols)
minimum := boxes.MinimumSize(index) minimum := box.MinimumSize()
if cols[col] < minimum.X { if cols[col] < minimum.X {
cols[col] = minimum.X cols[col] = minimum.X
} }
@ -89,8 +89,8 @@ func (this *Grid) minimums (boxes tomo.BoxQuerier) ([]int, []int) {
return cols, rows return cols, rows
} }
func (this *Grid) dimensions (boxes tomo.BoxQuerier) (int, int) { func (this *Grid) dimensions (boxes []tomo.Box) (int, int) {
return len(this.xExpand), ceilDiv(boxes.Len(), len(this.xExpand)) return len(this.xExpand), ceilDiv(len(boxes), len(this.xExpand))
} }
func expand (hints tomo.LayoutHints, sizes []int, space int, expands func (int) bool) { func expand (hints tomo.LayoutHints, sizes []int, space int, expands func (int) bool) {
@ -116,10 +116,10 @@ func ceilDiv (x, y int) int {
return int(math.Ceil(float64(x) / float64(y))) return int(math.Ceil(float64(x) / float64(y)))
} }
func (this *Grid) RecommendedHeight (hints tomo.LayoutHints, boxes tomo.BoxQuerier, width int) int { func (this *Grid) RecommendedHeight (hints tomo.LayoutHints, boxes []tomo.Box, width int) int {
return this.MinimumSize(hints, boxes).Y return this.MinimumSize(hints, boxes).Y
} }
func (this *Grid) RecommendedWidth (hints tomo.LayoutHints, boxes tomo.BoxQuerier, height int) int { func (this *Grid) RecommendedWidth (hints tomo.LayoutHints, boxes []tomo.Box, height int) int {
return this.MinimumSize(hints, boxes).X return this.MinimumSize(hints, boxes).X
} }

View File

@ -13,33 +13,33 @@ type Row []bool
// value will expand, and others will contract. // value will expand, and others will contract.
type Column []bool type Column []bool
func (column Column) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) image.Point { func (column Column) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
dot := image.Point { } dot := image.Point { }
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
minimum := boxes.MinimumSize(index) minimum := box.MinimumSize()
dot.Y += minimum.Y dot.Y += minimum.Y
if dot.X < minimum.X { if dot.X < minimum.X {
dot.X = minimum.X dot.X = minimum.X
} }
} }
dot.Y += hints.Gap.Y * (boxes.Len() - 1) dot.Y += hints.Gap.Y * (len(boxes) - 1)
return dot return dot
} }
func (row Row) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) image.Point { func (row Row) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
dot := image.Point { } dot := image.Point { }
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
minimum := boxes.MinimumSize(index) minimum := box.MinimumSize()
dot.X += minimum.X dot.X += minimum.X
if dot.Y < minimum.Y { if dot.Y < minimum.Y {
dot.Y = minimum.Y dot.Y = minimum.Y
} }
} }
dot.X += hints.Gap.X * (boxes.Len() - 1) dot.X += hints.Gap.X * (len(boxes) - 1)
return dot return dot
} }
func (column Column) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) { func (column Column) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
expands := func (index int) bool { expands := func (index int) bool {
if index >= len(column) { return false } if index >= len(column) { return false }
return column[index] return column[index]
@ -48,14 +48,13 @@ func (column Column) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
// determine expanding box size // determine expanding box size
expandingSize := 0.0 expandingSize := 0.0
if !hints.OverflowY { if !hints.OverflowY {
gaps := boxes.Len() - 1 gaps := len(boxes) - 1
freeSpace := float64(hints.Bounds.Dy() - hints.Gap.Y * gaps) freeSpace := float64(hints.Bounds.Dy() - hints.Gap.Y * gaps)
nExpanding := 0; nExpanding := 0; for index, box := range boxes {
for index := 0; index < boxes.Len(); index ++ {
if expands(index) { if expands(index) {
nExpanding ++ nExpanding ++
} else { } else {
freeSpace -= float64(boxes.MinimumSize(index).Y) freeSpace -= float64(box.MinimumSize().Y)
} }
} }
expandingSize = freeSpace / float64(nExpanding) expandingSize = freeSpace / float64(nExpanding)
@ -64,8 +63,8 @@ func (column Column) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
// determine width // determine width
width := 0 width := 0
if hints.OverflowX { if hints.OverflowX {
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
minimum := boxes.MinimumSize(index) minimum := box.MinimumSize()
if width < minimum.X { width = minimum.X } if width < minimum.X { width = minimum.X }
} }
} else { } else {
@ -74,43 +73,44 @@ func (column Column) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
// arrange // arrange
dot := hints.Bounds.Min dot := hints.Bounds.Min
bounds := make([]image.Rectangle, boxes.Len()) for index, box := range boxes {
for index := 0; index < boxes.Len(); index ++ {
if index > 0 { dot.Y += hints.Gap.Y } if index > 0 { dot.Y += hints.Gap.Y }
// determine height // determine height
height := boxes.MinimumSize(index).Y height := box.MinimumSize().Y
if hints.OverflowY { if hints.OverflowY {
height = boxes.RecommendedHeight(index, width) if box, ok := box.(tomo.ContentBox); ok {
height = box.RecommendedHeight(width)
}
} else { } else {
if expands(index) { if expands(index) {
height = int(expandingSize) height = int(expandingSize)
} }
} }
// store bounds of this box // set bounds
bounds[index] = image.Rectangle { box.SetBounds(image.Rectangle {
Min: dot, Min: dot,
Max: dot.Add(image.Pt(width, height)), Max: dot.Add(image.Pt(width, height)),
} })
dot.Y += height dot.Y += height
} }
// align
height := dot.Y - hints.Bounds.Min.Y height := dot.Y - hints.Bounds.Min.Y
offset := 0 offset := 0
switch hints.AlignY { switch hints.AlignY {
case tomo.AlignMiddle: case tomo.AlignMiddle:
offset = (hints.Bounds.Dy() - height) / 2 offset = (hints.Bounds.Dy() - height) / 2
case tomo.AlignEnd: case tomo.AlignEnd:
offset = hints.Bounds.Dy() - height offset = hints.Bounds.Dy() - height
} }
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
boxes.SetBounds(index, bounds[index].Add(image.Pt(0, offset))) box.SetBounds(box.Bounds().Add(image.Pt(0, offset)))
} }
} }
func (row Row) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) { func (row Row) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
expands := func (index int) bool { expands := func (index int) bool {
if index >= len(row) { return false } if index >= len(row) { return false }
return row[index] return row[index]
@ -119,14 +119,13 @@ func (row Row) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
// determine expanding box size // determine expanding box size
expandingSize := 0.0 expandingSize := 0.0
if !hints.OverflowY { if !hints.OverflowY {
gaps := boxes.Len() - 1 gaps := len(boxes) - 1
freeSpace := float64(hints.Bounds.Dx() - hints.Gap.X * gaps) freeSpace := float64(hints.Bounds.Dx() - hints.Gap.X * gaps)
nExpanding := 0; nExpanding := 0; for index, box := range boxes {
for index := 0; index < boxes.Len(); index ++ {
if expands(index) { if expands(index) {
nExpanding ++ nExpanding ++
} else { } else {
freeSpace -= float64(boxes.MinimumSize(index).X) freeSpace -= float64(box.MinimumSize().X)
} }
} }
expandingSize = freeSpace / float64(nExpanding) expandingSize = freeSpace / float64(nExpanding)
@ -135,8 +134,8 @@ func (row Row) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
// determine height // determine height
height := 0 height := 0
if hints.OverflowY { if hints.OverflowY {
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
minimum := boxes.MinimumSize(index) minimum := box.MinimumSize()
if height < minimum.Y { height = minimum.Y } if height < minimum.Y { height = minimum.Y }
} }
} else { } else {
@ -145,76 +144,95 @@ func (row Row) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
// arrange // arrange
dot := hints.Bounds.Min dot := hints.Bounds.Min
bounds := make([]image.Rectangle, boxes.Len()) for index, box := range boxes {
for index := 0; index < boxes.Len(); index ++ {
if index > 0 { dot.X += hints.Gap.X } if index > 0 { dot.X += hints.Gap.X }
// determine width // determine width
width := boxes.MinimumSize(index).X width := box.MinimumSize().X
if hints.OverflowY { if hints.OverflowY {
width = boxes.RecommendedHeight(index, height) if box, ok := box.(tomo.ContentBox); ok {
width = box.RecommendedHeight(height)
}
} else { } else {
if expands(index) { if expands(index) {
width = int(expandingSize) width = int(expandingSize)
} }
} }
// store bounds // set bounds
bounds[index] = image.Rectangle { box.SetBounds(image.Rectangle {
Min: dot, Min: dot,
Max: dot.Add(image.Pt(width, height)), Max: dot.Add(image.Pt(width, height)),
} })
dot.X += width dot.X += width
} }
// align
width := dot.X - hints.Bounds.Min.X width := dot.X - hints.Bounds.Min.X
offset := 0 offset := 0
switch hints.AlignX { switch hints.AlignX {
case tomo.AlignMiddle: case tomo.AlignMiddle:
offset = (hints.Bounds.Dx() - width) / 2 offset = (hints.Bounds.Dx() - width) / 2
case tomo.AlignEnd: case tomo.AlignEnd:
offset = hints.Bounds.Dx() - width offset = hints.Bounds.Dx() - width
} }
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
boxes.SetBounds(index, bounds[index].Add(image.Pt(offset, 0))) box.SetBounds(box.Bounds().Add(image.Pt(offset, 0)))
} }
} }
func (column Column) RecommendedHeight (hints tomo.LayoutHints, boxes tomo.BoxQuerier, width int) int { func (column Column) RecommendedHeight (hints tomo.LayoutHints, boxes []tomo.Box, width int) int {
height := 0 height := 0
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
height += boxes.RecommendedHeight(index, width) if box, ok := box.(tomo.ContentBox); ok {
height += box.RecommendedHeight(width)
} else {
height += box.MinimumSize().Y
}
} }
height += hints.Gap.Y * (boxes.Len() - 1) height += hints.Gap.Y * (len(boxes) - 1)
return height return height
} }
func (row Row) RecommendedHeight (hints tomo.LayoutHints, boxes tomo.BoxQuerier, width int) int { func (row Row) RecommendedHeight (hints tomo.LayoutHints, boxes []tomo.Box, width int) int {
height := 0 height := 0
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
minimum := boxes.MinimumSize(index) minimum := box.MinimumSize()
boxHeight := boxes.RecommendedHeight(index, minimum.X) boxHeight := 0
if box, ok := box.(tomo.ContentBox); ok {
boxHeight = box.RecommendedHeight(minimum.X)
} else {
boxHeight = minimum.Y
}
if boxHeight > height { height = boxHeight } if boxHeight > height { height = boxHeight }
} }
return height return height
} }
func (column Column) RecommendedWidth (hints tomo.LayoutHints, boxes tomo.BoxQuerier, height int) int { func (column Column) RecommendedWidth (hints tomo.LayoutHints, boxes []tomo.Box, height int) int {
width := 0 width := 0
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
minimum := boxes.MinimumSize(index) minimum := box.MinimumSize()
boxWidth := boxes.RecommendedWidth(index, minimum.Y) boxWidth := 0
if box, ok := box.(tomo.ContentBox); ok {
boxWidth = box.RecommendedHeight(minimum.Y)
} else {
boxWidth = minimum.X
}
if boxWidth > width { width = boxWidth } if boxWidth > width { width = boxWidth }
} }
return width return width
} }
func (row Row) RecommendedWidth (hints tomo.LayoutHints, boxes tomo.BoxQuerier, height int) int { func (row Row) RecommendedWidth (hints tomo.LayoutHints, boxes []tomo.Box, height int) int {
width := 0 width := 0
for index := 0; index < boxes.Len(); index ++ { for _, box := range boxes {
width += boxes.RecommendedWidth(index, height) if box, ok := box.(tomo.ContentBox); ok {
width += box.RecommendedWidth(height)
} else {
width += box.MinimumSize().X
}
} }
width += hints.Gap.X * (boxes.Len() - 1) width += hints.Gap.X * (len(boxes) - 1)
return width return width
} }

11
menu.go
View File

@ -40,15 +40,15 @@ func NewMenu (anchor tomo.Object, items ...tomo.Object) (*Menu, error) {
if !menu.torn { if !menu.torn {
menu.tearLine = tomo.NewBox() menu.tearLine = tomo.NewBox()
menu.tearLine.SetRole(tomo.R("objects", "TearLine")) menu.tearLine.SetRole(tomo.R("objects", "TearLine", ""))
menu.tearLine.SetFocusable(true) menu.tearLine.SetFocusable(true)
menu.tearLine.OnKeyUp(func (catch func (), key input.Key, numberPad bool) { menu.tearLine.OnKeyUp(func (key input.Key, numberPad bool) {
if key != input.KeyEnter && key != input.Key(' ') { return } if key != input.KeyEnter && key != input.Key(' ') { return }
menu.TearOff() menu.TearOff()
}) })
menu.tearLine.OnButtonUp(func (catch func (), button input.Button) { menu.tearLine.OnMouseUp(func (button input.Button) {
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
if menu.tearLine.Window().MousePosition().In(menu.tearLine.Bounds()) { if menu.tearLine.MousePosition().In(menu.tearLine.Bounds()) {
menu.TearOff() menu.TearOff()
} }
}) })
@ -65,8 +65,7 @@ func NewMenu (anchor tomo.Object, items ...tomo.Object) (*Menu, error) {
}) })
} }
} }
menu.rootContainer.SetRole(tomo.R("objects", "Container")) menu.rootContainer.SetRole(tomo.R("objects", "Container", "menu"))
menu.rootContainer.SetTag("menu", true)
menu.Window.SetRoot(menu.rootContainer) menu.Window.SetRoot(menu.rootContainer)
return menu, nil return menu, nil

View File

@ -25,18 +25,19 @@ func NewMenuItem (text string) *MenuItem {
label: NewLabel(text), label: NewLabel(text),
icon: NewIcon("", tomo.IconSizeSmall), icon: NewIcon("", tomo.IconSizeSmall),
} }
box.SetRole(tomo.R("objects", "MenuItem")) box.SetRole(tomo.R("objects", "MenuItem", ""))
box.label.SetAttr(tomo.AAlign(tomo.AlignStart, tomo.AlignMiddle)) box.label.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
box.SetLayout(layouts.Row { false, true }) box.SetLayout(layouts.Row { false, true })
box.Add(box.icon) box.Add(box.icon)
box.Add(box.label) box.Add(box.label)
box.CatchDND(true) box.CaptureDND(true)
box.CatchMouse(true) box.CaptureMouse(true)
box.CaptureScroll(true)
box.CaptureKeyboard(true)
box.OnButtonDown(box.handleButtonDown) box.OnMouseUp(box.handleMouseUp)
box.OnButtonUp(box.handleButtonUp)
box.OnKeyUp(box.handleKeyUp) box.OnKeyUp(box.handleKeyUp)
box.SetFocusable(true) box.SetFocusable(true)
return box return box
@ -59,19 +60,14 @@ func (this *MenuItem) OnClick (callback func ()) event.Cookie {
return this.on.click.Connect(callback) return this.on.click.Connect(callback)
} }
func (this *MenuItem) handleKeyUp (catch func(), key input.Key, numberPad bool) { func (this *MenuItem) 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()
} }
func (this *MenuItem) handleButtonDown (catch func(), button input.Button) { func (this *MenuItem) handleMouseUp (button input.Button) {
catch()
}
func (this *MenuItem) handleButtonUp (catch func(), button input.Button) {
catch()
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
if this.Window().MousePosition().In(this.Bounds()) { if this.MousePosition().In(this.Bounds()) {
this.on.click.Broadcast() this.on.click.Broadcast()
} }
} }

View File

@ -28,7 +28,7 @@ func NewNumberInput (value float64) *NumberInput {
increment: NewButton(""), increment: NewButton(""),
decrement: NewButton(""), decrement: NewButton(""),
} }
box.SetRole(tomo.R("objects", "NumberInput")) box.SetRole(tomo.R("objects", "NumberInput", ""))
box.Add(box.input) box.Add(box.input)
box.Add(box.decrement) box.Add(box.decrement)
box.Add(box.increment) box.Add(box.increment)
@ -38,8 +38,10 @@ func NewNumberInput (value float64) *NumberInput {
box.SetValue(value) box.SetValue(value)
box.CaptureScroll(true)
box.CaptureKeyboard(true)
box.OnScroll(box.handleScroll) box.OnScroll(box.handleScroll)
box.OnKeyUp(box.handleKeyUp)
box.OnKeyDown(box.handleKeyDown) box.OnKeyDown(box.handleKeyDown)
box.input.OnConfirm(box.handleConfirm) box.input.OnConfirm(box.handleConfirm)
box.input.OnValueChange(box.on.valueChange.Broadcast) box.input.OnValueChange(box.on.valueChange.Broadcast)
@ -76,28 +78,19 @@ func (this *NumberInput) shift (by int) {
this.on.valueChange.Broadcast() this.on.valueChange.Broadcast()
} }
func (this *NumberInput) handleKeyDown (catch func (), key input.Key, numpad bool) { func (this *NumberInput) handleKeyDown (key input.Key, numpad bool) {
switch key { switch key {
case input.KeyUp: case input.KeyUp: this.shift(1)
this.shift(1) case input.KeyDown: this.shift(-1)
catch() default: this.input.handleKeyDown(key, numpad)
case input.KeyDown:
this.shift(-1)
catch()
} }
} }
func (this *NumberInput) handleKeyUp (catch func (), key input.Key, numpad bool) { func (this *NumberInput) handleScroll (x, y float64) {
switch key {
case input.KeyUp: catch()
case input.KeyDown: catch()
}
}
func (this *NumberInput) handleScroll (catch func (), x, y float64) {
if x == 0 { if x == 0 {
catch()
this.shift(-int(math.Round(y))) this.shift(-int(math.Round(y)))
} else {
this.input.handleScroll(x, y)
} }
} }

View File

@ -35,20 +35,19 @@ func newScrollbar (orient string) *Scrollbar {
this.Add(this.handle) this.Add(this.handle)
this.SetFocusable(true) this.SetFocusable(true)
this.CatchDND(true) this.CaptureDND(true)
this.CatchMouse(true) this.CaptureMouse(true)
this.CaptureScroll(true)
this.CaptureKeyboard(true)
this.OnKeyUp(this.handleKeyUp)
this.OnKeyDown(this.handleKeyDown) this.OnKeyDown(this.handleKeyDown)
this.OnButtonDown(this.handleButtonDown) this.OnMouseDown(this.handleMouseDown)
this.OnButtonUp(this.handleButtonUp) this.OnMouseUp(this.handleMouseUp)
this.OnMouseMove(this.handleMouseMove) this.OnMouseMove(this.handleMouseMove)
this.OnScroll(this.handleScroll) this.OnScroll(this.handleScroll)
this.handle.SetRole(tomo.R("objects", "SliderHandle")) this.handle.SetRole(tomo.R("objects", "SliderHandle", orient))
this.handle.SetTag(orient, true) this.SetRole(tomo.R("objects", "Slider", orient))
this.SetRole(tomo.R("objects", "Slider"))
this.SetTag(orient, true)
return this return this
} }
@ -121,48 +120,22 @@ func (this *Scrollbar) OnValueChange (callback func ()) event.Cookie {
return this.on.valueChange.Connect(callback) return this.on.valueChange.Connect(callback)
} }
// PageSize returns the scroll distance of a page. func (this *Scrollbar) handleKeyDown (key input.Key, numpad bool) {
func (this *Scrollbar) PageSize () int {
if this.layout.linked == nil { return 0 }
viewport := this.layout.linked.GetBox().InnerBounds()
if this.layout.vertical {
return viewport.Dy()
} else {
return viewport.Dx()
}
}
// StepSize returns the scroll distance of a step.
func (this *Scrollbar) StepSize () int {
// FIXME: this should not be hardcoded, need to get base font metrics
// from tomo somehow. should be (emspace, lineheight)
return 16
}
func (this *Scrollbar) handleKeyUp (catch func (), key input.Key, numpad bool) {
catch()
}
func (this *Scrollbar) handleKeyDown (catch func (), key input.Key, numpad bool) {
catch()
var increment float64; if this.layout.vertical { var increment float64; if this.layout.vertical {
increment = -0.05 increment = -0.05
} else { } else {
increment = 0.05 increment = 0.05
} }
modifiers := this.Window().Modifiers()
switch key { switch key {
case input.KeyUp, input.KeyLeft: case input.KeyUp, input.KeyLeft:
if modifiers.Alt { if this.Modifiers().Alt {
this.SetValue(0) this.SetValue(0)
} else { } else {
this.SetValue(this.Value() - increment) this.SetValue(this.Value() - increment)
} }
case input.KeyDown, input.KeyRight: case input.KeyDown, input.KeyRight:
if modifiers.Alt { if this.Modifiers().Alt {
this.SetValue(1) this.SetValue(1)
} else { } else {
this.SetValue(this.Value() + increment) this.SetValue(this.Value() + increment)
@ -174,10 +147,8 @@ func (this *Scrollbar) handleKeyDown (catch func (), key input.Key, numpad bool)
} }
} }
func (this *Scrollbar) handleButtonDown (catch func (), button input.Button) { func (this *Scrollbar) handleMouseDown (button input.Button) {
catch() pointer := this.MousePosition()
pointer := this.Window().MousePosition()
handle := this.handle.Bounds() handle := this.handle.Bounds()
within := pointer.In(handle) within := pointer.In(handle)
@ -202,21 +173,20 @@ func (this *Scrollbar) handleButtonDown (catch func (), button input.Button) {
} }
case input.ButtonMiddle: case input.ButtonMiddle:
if above { if above {
this.scrollBy(this.PageSize()) this.scrollBy(this.pageSize())
} else { } else {
this.scrollBy(-this.PageSize()) this.scrollBy(-this.pageSize())
} }
case input.ButtonRight: case input.ButtonRight:
if above { if above {
this.scrollBy(this.StepSize()) this.scrollBy(this.stepSize())
} else { } else {
this.scrollBy(-this.StepSize()) this.scrollBy(-this.stepSize())
} }
} }
} }
func (this *Scrollbar) handleButtonUp (catch func (), button input.Button) { func (this *Scrollbar) handleMouseUp (button input.Button) {
catch()
if button != input.ButtonLeft || !this.dragging { return } if button != input.ButtonLeft || !this.dragging { return }
this.dragging = false this.dragging = false
} }
@ -226,8 +196,7 @@ func (this *Scrollbar) handleMouseMove () {
this.drag() this.drag()
} }
func (this *Scrollbar) handleScroll (catch func(), x, y float64) { func (this *Scrollbar) handleScroll (x, y float64) {
catch()
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.
@ -235,7 +204,7 @@ func (this *Scrollbar) handleScroll (catch func(), x, y float64) {
} }
func (this *Scrollbar) drag () { func (this *Scrollbar) drag () {
pointer := this.Window().MousePosition().Sub(this.dragOffset) pointer := this.MousePosition().Sub(this.dragOffset)
gutter := this.InnerBounds() gutter := this.InnerBounds()
handle := this.handle.Bounds() handle := this.handle.Bounds()
@ -260,6 +229,22 @@ func (this *Scrollbar) fallbackDragOffset () image.Point {
} }
} }
func (this *Scrollbar) pageSize () int {
if this.layout.linked == nil { return 0 }
viewport := this.layout.linked.GetBox().InnerBounds()
if this.layout.vertical {
return viewport.Dy()
} else {
return viewport.Dx()
}
}
func (this *Scrollbar) stepSize () int {
// FIXME: this should not be hardcoded, need to get base font metrics
// from tomo.somehow. should be (emspace, lineheight)
return 16
}
func (this *Scrollbar) scrollBy (distance int) { func (this *Scrollbar) scrollBy (distance int) {
if this.layout.linked == nil { return } if this.layout.linked == nil { return }
var vector image.Point; if this.layout.vertical { var vector image.Point; if this.layout.vertical {
@ -298,14 +283,14 @@ type scrollbarLayout struct {
linked tomo.ContentObject linked tomo.ContentObject
} }
func (scrollbarLayout) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) image.Point { func (scrollbarLayout) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
if boxes.Len() != 1 { return image.Pt(0, 0) } if len(boxes) != 1 { return image.Pt(0, 0) }
return boxes.MinimumSize(0) return boxes[0].MinimumSize()
} }
func (this scrollbarLayout) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) { func (this scrollbarLayout) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
if boxes.Len() != 1 { return } if len(boxes) != 1 { return }
handle := image.Rectangle { Max: boxes.MinimumSize(0) } handle := image.Rectangle { Max: boxes[0].MinimumSize() }
gutter := hints.Bounds gutter := hints.Bounds
var gutterLength float64; var gutterLength float64;
@ -326,7 +311,7 @@ func (this scrollbarLayout) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArran
// and we shouldn't be adding and removing boxes, so this is // and we shouldn't be adding and removing boxes, so this is
// really the only good way to hide things. // really the only good way to hide things.
// TODO perhaps have a "Hidden" rectangle in the Tomo API? // TODO perhaps have a "Hidden" rectangle in the Tomo API?
boxes.SetBounds(0, image.Rect(-32, -32, -16, -16)) boxes[0].SetBounds(image.Rect(-16, -16, 0, 0))
return return
} }
if this.vertical { if this.vertical {
@ -346,15 +331,15 @@ func (this scrollbarLayout) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArran
handle = handle.Sub(handleOffset).Add(gutter.Min) handle = handle.Sub(handleOffset).Add(gutter.Min)
// place handle // place handle
boxes.SetBounds(0, handle) boxes[0].SetBounds(handle)
} }
func (this scrollbarLayout) RecommendedHeight (hints tomo.LayoutHints, boxes tomo.BoxQuerier, width int) int { func (this scrollbarLayout) RecommendedHeight (hints tomo.LayoutHints, boxes []tomo.Box, width int) int {
return this.MinimumSize(hints, boxes).X return this.MinimumSize(hints, boxes).X
} }
func (this scrollbarLayout) RecommendedWidth (hints tomo.LayoutHints, boxes tomo.BoxQuerier, height int) int { func (this scrollbarLayout) RecommendedWidth (hints tomo.LayoutHints, boxes []tomo.Box, height int) int {
return this.MinimumSize(hints, boxes).Y return this.MinimumSize(hints, boxes).Y
} }

View File

@ -2,9 +2,7 @@ package objects
import "image" import "image"
import "git.tebibyte.media/tomo/tomo" 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/tomo/event"
import "git.tebibyte.media/tomo/objects/layouts"
// 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 (
@ -40,10 +38,7 @@ func (sides ScrollSide) String () string {
// ScrollContainer couples a ContentBox with one or two Scrollbars. // ScrollContainer couples a ContentBox with one or two Scrollbars.
type ScrollContainer struct { type ScrollContainer struct {
tomo.ContainerBox tomo.ContainerBox
layout *scrollContainerLayout
root tomo.ContentObject
horizontal *Scrollbar
vertical *Scrollbar
horizontalCookie event.Cookie horizontalCookie event.Cookie
verticalCookie event.Cookie verticalCookie event.Cookie
@ -57,23 +52,22 @@ type ScrollContainer struct {
func NewScrollContainer (sides ScrollSide) *ScrollContainer { func NewScrollContainer (sides ScrollSide) *ScrollContainer {
this := &ScrollContainer { this := &ScrollContainer {
ContainerBox: tomo.NewContainerBox(), ContainerBox: tomo.NewContainerBox(),
layout: &scrollContainerLayout { },
} }
if sides.Vertical() { if sides.Vertical() {
this.vertical = NewVerticalScrollbar() this.layout.vertical = NewVerticalScrollbar()
this.vertical.OnValueChange(this.handleValueChange) this.layout.vertical.OnValueChange(this.handleValueChange)
this.Add(this.vertical) this.Add(this.layout.vertical)
} }
if sides.Horizontal() { if sides.Horizontal() {
this.horizontal = NewHorizontalScrollbar() this.layout.horizontal = NewHorizontalScrollbar()
this.horizontal.OnValueChange(this.handleValueChange) this.layout.horizontal.OnValueChange(this.handleValueChange)
this.Add(this.horizontal) this.Add(this.layout.horizontal)
} }
this.CaptureScroll(true)
this.OnScroll(this.handleScroll) this.OnScroll(this.handleScroll)
this.OnKeyDown(this.handleKeyDown) this.SetRole(tomo.R("objects", "ScrollContainer", sides.String()))
this.OnKeyUp(this.handleKeyUp) this.SetLayout(this.layout)
this.SetRole(tomo.R("objects", "ScrollContainer"))
this.SetTag(sides.String(), true)
this.SetLayout(layouts.NewGrid(true, false)(true, false))
return this return this
} }
@ -81,9 +75,9 @@ func NewScrollContainer (sides ScrollSide) *ScrollContainer {
// 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.ContentObject) { func (this *ScrollContainer) SetRoot (root tomo.ContentObject) {
if this.root != nil { if this.layout.root != nil {
// remove root and close cookies // remove root and close cookies
this.Remove(this.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
@ -93,24 +87,24 @@ func (this *ScrollContainer) SetRoot (root tomo.ContentObject) {
this.verticalCookie = nil this.verticalCookie = nil
} }
} }
this.root = root this.layout.root = root
if root != nil { if root != nil {
// insert root at the beginning (for keynav) // insert root at the beginning (for keynav)
switch { switch {
case this.vertical != nil: case this.layout.vertical != nil:
this.Insert(root, this.vertical) this.Insert(root, this.layout.vertical)
case this.horizontal != nil: case this.layout.horizontal != nil:
this.Insert(root, this.horizontal) this.Insert(root, this.layout.horizontal)
default: default:
this.Add(root) this.Add(root)
} }
// link root and remember cookies // link root and remember cookies
if this.horizontal != nil { if this.layout.horizontal != nil {
this.horizontalCookie = this.horizontal.Link(root) this.horizontalCookie = this.layout.horizontal.Link(root)
} }
if this.vertical != nil { if this.layout.vertical != nil {
this.verticalCookie = this.vertical.Link(root) this.verticalCookie = this.layout.vertical.Link(root)
} }
} }
} }
@ -118,11 +112,11 @@ func (this *ScrollContainer) SetRoot (root tomo.ContentObject) {
// Value returns the horizontal and vertical scrollbar values where 0 is all the // 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. // way to the left/top, and 1 is all the way to the right/bottom.
func (this *ScrollContainer) Value () (x, y float64) { func (this *ScrollContainer) Value () (x, y float64) {
if this.horizontal != nil { if this.layout.horizontal != nil {
x = this.horizontal.Value() x = this.layout.horizontal.Value()
} }
if this.vertical != nil { if this.layout.vertical != nil {
y = this.vertical.Value() y = this.layout.vertical.Value()
} }
return x, y return x, y
} }
@ -130,11 +124,11 @@ func (this *ScrollContainer) Value () (x, y float64) {
// SetValue sets the horizontal and vertical scrollbar values where 0 is all the // 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. // way to the left/top, and 1 is all the way to the right/bottom.
func (this *ScrollContainer) SetValue (x, y float64) { func (this *ScrollContainer) SetValue (x, y float64) {
if this.horizontal != nil { if this.layout.horizontal != nil {
this.horizontal.SetValue(x) this.layout.horizontal.SetValue(x)
} }
if this.vertical != nil { if this.layout.vertical != nil {
this.vertical.SetValue(y) this.layout.vertical.SetValue(y)
} }
} }
@ -144,74 +138,77 @@ func (this *ScrollContainer) OnValueChange (callback func ()) event.Cookie {
return this.on.valueChange.Connect(callback) return this.on.valueChange.Connect(callback)
} }
// PageSize returns the scroll distance of a page.
func (this *ScrollContainer) PageSize () image.Point {
page := image.Point { }
if this.horizontal != nil {
page.X = this.horizontal.PageSize()
}
if this.vertical != nil {
page.Y = this.vertical.PageSize()
}
return page
}
// StepSize returns the scroll distance of a step.
func (this *ScrollContainer) StepSize () image.Point {
page := image.Point { }
if this.horizontal != nil {
page.X = this.horizontal.StepSize()
}
if this.vertical != nil {
page.Y = this.vertical.StepSize()
}
return page
}
func (this *ScrollContainer) handleValueChange () { func (this *ScrollContainer) handleValueChange () {
this.on.valueChange.Broadcast() this.on.valueChange.Broadcast()
} }
func (this *ScrollContainer) handleScroll (catch func (), x, y float64) { func (this *ScrollContainer) handleScroll (x, y float64) {
catch() if this.layout.root == nil { return }
if this.root == nil { return } this.layout.root.ScrollTo (
this.scrollBy(image.Pt(int(x), int(y))) this.layout.root.ContentBounds().Min.
Sub(image.Pt(int(x), int(y))))
} }
func (this *ScrollContainer) scrollBy (vector image.Point) { // TODO: remove this and replace it with something from the layouts package
if this.root == nil { return } type scrollContainerLayout struct {
this.root.ScrollTo ( root tomo.ContentObject
this.root.ContentBounds().Min. horizontal *Scrollbar
Sub(vector)) vertical *Scrollbar
} }
func (this *ScrollContainer) handleKeyDown (catch func (), key input.Key, numpad bool) { func (this *scrollContainerLayout) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
modifiers := this.Window().Modifiers() var minimum image.Point; if this.root != nil {
vector := image.Point { } minimum = this.root.GetBox().MinimumSize()
switch key {
case input.KeyPageUp:
catch()
if modifiers.Shift {
vector.X -= this.PageSize().X
} else {
vector.Y -= this.PageSize().Y
}
case input.KeyPageDown:
catch()
if modifiers.Shift {
vector.X += this.PageSize().X
} else {
vector.Y += this.PageSize().Y
}
} }
if vector != (image.Point { }) { if this.horizontal != nil {
this.scrollBy(vector) minimum.Y += this.horizontal.MinimumSize().Y
}
if this.vertical != nil {
minimum.X += this.vertical.MinimumSize().X
minimum.Y = max(minimum.Y, this.vertical.MinimumSize().Y)
}
if this.horizontal != nil {
minimum.X = max(minimum.X, this.horizontal.MinimumSize().X)
}
return minimum
}
func (this *scrollContainerLayout) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
rootBounds := hints.Bounds
if this.horizontal != nil {
rootBounds.Max.Y -= this.horizontal.MinimumSize().Y
}
if this.vertical != nil {
rootBounds.Max.X -= this.vertical.MinimumSize().X
}
if this.root != nil {
this.root.GetBox().SetBounds(rootBounds)
}
if this.horizontal != nil {
this.horizontal.SetBounds(image.Rect (
hints.Bounds.Min.X,
rootBounds.Max.Y,
rootBounds.Max.X,
hints.Bounds.Max.Y))
}
if this.vertical != nil {
this.vertical.SetBounds(image.Rect (
rootBounds.Max.X,
hints.Bounds.Min.Y,
hints.Bounds.Max.X,
rootBounds.Max.Y))
} }
} }
func (this *ScrollContainer) handleKeyUp (catch func (), key input.Key, numpad bool) { func (this *scrollContainerLayout) RecommendedHeight (hints tomo.LayoutHints, boxes []tomo.Box, width int) int {
switch key { return this.MinimumSize(hints, boxes).X
case input.KeyPageUp: catch() }
case input.KeyPageDown: catch()
} func (this *scrollContainerLayout) RecommendedWidth (hints tomo.LayoutHints, boxes []tomo.Box, height int) int {
return this.MinimumSize(hints, boxes).Y
}
func max (x, y int) int {
if x > y { return x }
return y
} }

View File

@ -12,6 +12,6 @@ func NewSeparator () *Separator {
this := &Separator { this := &Separator {
Box: tomo.NewBox(), Box: tomo.NewBox(),
} }
this.SetRole(tomo.R("objects", "Separator")) this.SetRole(tomo.R("objects", "Separator", ""))
return this return this
} }

View File

@ -43,21 +43,20 @@ func newSlider (orient string, value float64) *Slider {
this.Add(this.handle) this.Add(this.handle)
this.SetFocusable(true) this.SetFocusable(true)
this.CatchDND(true) this.CaptureDND(true)
this.CatchMouse(true) this.CaptureMouse(true)
this.CaptureScroll(true)
this.CaptureKeyboard(true)
this.SetValue(value) this.SetValue(value)
this.OnKeyUp(this.handleKeyUp)
this.OnKeyDown(this.handleKeyDown) this.OnKeyDown(this.handleKeyDown)
this.OnButtonDown(this.handleButtonDown) this.OnMouseDown(this.handleMouseDown)
this.OnButtonUp(this.handleButtonUp) this.OnMouseUp(this.handleMouseUp)
this.OnMouseMove(this.handleMouseMove) this.OnMouseMove(this.handleMouseMove)
this.OnScroll(this.handleScroll) this.OnScroll(this.handleScroll)
this.handle.SetRole(tomo.R("objects", "SliderHandle")) this.handle.SetRole(tomo.R("objects", "SliderHandle", orient))
this.handle.SetTag(orient, true) this.SetRole(tomo.R("objects", "Slider", orient))
this.SetRole(tomo.R("objects", "Slider"))
this.SetTag(orient, true)
return this return this
} }
@ -97,9 +96,7 @@ func (this *Slider) OnConfirm (callback func ()) event.Cookie {
return this.on.confirm.Connect(callback) return this.on.confirm.Connect(callback)
} }
func (this *Slider) handleKeyDown (catch func (), key input.Key, numpad bool) { func (this *Slider) handleKeyDown (key input.Key, numpad bool) {
catch()
var increment float64; if this.layout.vertical { var increment float64; if this.layout.vertical {
increment = -0.05 increment = -0.05
} else { } else {
@ -108,14 +105,14 @@ func (this *Slider) handleKeyDown (catch func (), key input.Key, numpad bool) {
switch key { switch key {
case input.KeyUp, input.KeyLeft: case input.KeyUp, input.KeyLeft:
if this.Window().Modifiers().Alt { if this.Modifiers().Alt {
this.SetValue(0) this.SetValue(0)
} else { } else {
this.SetValue(this.Value() - increment) this.SetValue(this.Value() - increment)
} }
this.on.valueChange.Broadcast() this.on.valueChange.Broadcast()
case input.KeyDown, input.KeyRight: case input.KeyDown, input.KeyRight:
if this.Window().Modifiers().Alt { if this.Modifiers().Alt {
this.SetValue(1) this.SetValue(1)
} else { } else {
this.SetValue(this.Value() + increment) this.SetValue(this.Value() + increment)
@ -130,14 +127,8 @@ func (this *Slider) handleKeyDown (catch func (), key input.Key, numpad bool) {
} }
} }
func (this *Slider) handleKeyUp (catch func (), key input.Key, numpad bool) { func (this *Slider) handleMouseDown (button input.Button) {
catch() pointer := this.MousePosition()
}
func (this *Slider) handleButtonDown (catch func (), button input.Button) {
catch()
pointer := this.Window().MousePosition()
handle := this.handle.Bounds() handle := this.handle.Bounds()
within := pointer.In(handle) within := pointer.In(handle)
@ -183,8 +174,7 @@ func (this *Slider) handleButtonDown (catch func (), button input.Button) {
} }
} }
func (this *Slider) handleButtonUp (catch func (), button input.Button) { func (this *Slider) handleMouseUp (button input.Button) {
catch()
if button != input.ButtonLeft || !this.dragging { return } if button != input.ButtonLeft || !this.dragging { return }
this.dragging = false this.dragging = false
this.on.confirm.Broadcast() this.on.confirm.Broadcast()
@ -195,7 +185,7 @@ func (this *Slider) handleMouseMove () {
this.drag() this.drag()
} }
func (this *Slider) handleScroll (catch func (), x, y float64) { func (this *Slider) handleScroll (x, y float64) {
delta := (x + y) * 0.005 delta := (x + y) * 0.005
this.SetValue(this.Value() + delta) this.SetValue(this.Value() + delta)
this.on.valueChange.Broadcast() this.on.valueChange.Broadcast()
@ -203,7 +193,7 @@ func (this *Slider) handleScroll (catch func (), x, y float64) {
} }
func (this *Slider) drag () { func (this *Slider) drag () {
pointer := this.Window().MousePosition().Sub(this.dragOffset) pointer := this.MousePosition().Sub(this.dragOffset)
gutter := this.InnerBounds() gutter := this.InnerBounds()
handle := this.handle.Bounds() handle := this.handle.Bounds()
@ -235,37 +225,39 @@ type sliderLayout struct {
value float64 value float64
} }
func (sliderLayout) MinimumSize (hints tomo.LayoutHints, boxes tomo.BoxQuerier) image.Point { func (sliderLayout) MinimumSize (hints tomo.LayoutHints, boxes []tomo.Box) image.Point {
if boxes.Len() != 1 { return image.Pt(0, 0) } if len(boxes) != 1 { return image.Pt(0, 0) }
return boxes.MinimumSize(0) return boxes[0].MinimumSize()
} }
func (this sliderLayout) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) { func (this sliderLayout) Arrange (hints tomo.LayoutHints, boxes []tomo.Box) {
if boxes.Len() != 1 { return } if len(boxes) != 1 { return }
handle := image.Rectangle { Max: boxes.MinimumSize(0) } handle := image.Rectangle { Max: boxes[0].MinimumSize() }
gutter := hints.Bounds gutter := hints.Bounds
if this.vertical { if this.vertical {
height := gutter.Dy() - handle.Dy() height := gutter.Dy() - handle.Dy()
offset := int(float64(height) * (1 - this.value)) offset := int(float64(height) * (1 - this.value))
handle.Max.X = gutter.Dx() handle.Max.X = gutter.Dx()
boxes.SetBounds ( boxes[0].SetBounds (
0, handle.
handle.Add(image.Pt(0, offset)).Add(gutter.Min)) Add(image.Pt(0, offset)).
Add(gutter.Min))
} else { } else {
width := gutter.Dx() - handle.Dx() width := gutter.Dx() - handle.Dx()
offset := int(float64(width) * this.value) offset := int(float64(width) * this.value)
handle.Max.Y = gutter.Dy() handle.Max.Y = gutter.Dy()
boxes.SetBounds ( boxes[0].SetBounds (
0, handle.
handle.Add(image.Pt(offset, 0)).Add(gutter.Min)) Add(image.Pt(offset, 0)).
Add(gutter.Min))
} }
} }
func (this sliderLayout) RecommendedHeight (hints tomo.LayoutHints, boxes tomo.BoxQuerier, width int) int { func (this sliderLayout) RecommendedHeight (tomo.LayoutHints, []tomo.Box, int) int {
return this.MinimumSize(hints, boxes).X return 0
} }
func (this sliderLayout) RecommendedWidth (hints tomo.LayoutHints, boxes tomo.BoxQuerier, height int) int { func (this sliderLayout) RecommendedWidth (tomo.LayoutHints, []tomo.Box, int) int {
return this.MinimumSize(hints, boxes).Y return 0
} }

View File

@ -26,11 +26,11 @@ func NewSwatch (value color.Color) *Swatch {
swatch := &Swatch { swatch := &Swatch {
CanvasBox: tomo.NewCanvasBox(), CanvasBox: tomo.NewCanvasBox(),
} }
swatch.SetRole(tomo.R("objects", "Swatch")) swatch.SetRole(tomo.R("objects", "Swatch", ""))
swatch.SetDrawer(swatch) swatch.SetDrawer(swatch)
swatch.SetValue(value) swatch.SetValue(value)
swatch.OnButtonUp(swatch.handleButtonUp) swatch.OnMouseUp(swatch.handleMouseUp)
swatch.OnKeyUp(swatch.handleKeyUp) swatch.OnKeyUp(swatch.handleKeyUp)
swatch.SetFocusable(true) swatch.SetFocusable(true)
return swatch return swatch
@ -114,7 +114,7 @@ func (this *Swatch) Choose () {
layouts.ContractHorizontal, layouts.ContractHorizontal,
cancelButton, cancelButton,
okButton) okButton)
controlRow.SetAttr(tomo.AAlign(tomo.AlignEnd, tomo.AlignMiddle)) controlRow.SetAlign(tomo.AlignEnd, tomo.AlignMiddle)
window.SetRoot(NewOuterContainer ( window.SetRoot(NewOuterContainer (
layouts.Column { true, false }, layouts.Column { true, false },
colorPicker, colorPicker,
@ -155,14 +155,14 @@ func (this *Swatch) userSetValue (value color.Color) {
this.on.valueChange.Broadcast() this.on.valueChange.Broadcast()
} }
func (this *Swatch) handleKeyUp (catch func (), key input.Key, numberPad bool) { func (this *Swatch) handleKeyUp (key input.Key, numberPad bool) {
if key != input.KeyEnter && key != input.Key(' ') { return } if key != input.KeyEnter && key != input.Key(' ') { return }
this.Choose() this.Choose()
} }
func (this *Swatch) handleButtonUp (catch func (), button input.Button) { func (this *Swatch) handleMouseUp (button input.Button) {
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
if this.Window().MousePosition().In(this.Bounds()) { if this.MousePosition().In(this.Bounds()) {
this.Choose() this.Choose()
} }
} }

View File

@ -18,19 +18,17 @@ func NewTabbedContainer () *TabbedContainer {
container := &TabbedContainer { container := &TabbedContainer {
ContainerBox: tomo.NewContainerBox(), ContainerBox: tomo.NewContainerBox(),
} }
container.SetRole(tomo.R("objects", "TabbedContainer")) container.SetRole(tomo.R("objects", "TabbedContainer", ""))
container.SetLayout(layouts.Column { false, true } ) container.SetLayout(layouts.Column { false, true } )
container.tabsRow = tomo.NewContainerBox() container.tabsRow = tomo.NewContainerBox()
container.tabsRow.SetRole(tomo.R("objects", "TabRow")) container.tabsRow.SetRole(tomo.R("objects", "TabRow", ""))
container.Add(container.tabsRow) container.Add(container.tabsRow)
container.leftSpacer = tomo.NewBox() container.leftSpacer = tomo.NewBox()
container.leftSpacer.SetRole(tomo.R("objects", "TabSpacer")) container.leftSpacer.SetRole(tomo.R("objects", "TabSpacer", "left"))
container.leftSpacer.SetTag("left", true)
container.rightSpacer = tomo.NewBox() container.rightSpacer = tomo.NewBox()
container.rightSpacer.SetRole(tomo.R("objects", "TabSpacer")) container.rightSpacer.SetRole(tomo.R("objects", "TabSpacer", "right"))
container.rightSpacer.SetTag("left", true)
container.ClearTabs() container.ClearTabs()
container.setTabRowLayout() container.setTabRowLayout()
@ -57,9 +55,9 @@ func (this *TabbedContainer) AddTab (name string, root tomo.Object) {
name: name, name: name,
root: root, root: root,
} }
tab.SetRole(tomo.R("objects", "Tab")) tab.SetRole(tomo.R("objects", "Tab", ""))
tab.SetText(name) tab.SetText(name)
tab.OnButtonDown(func (catch func (), button input.Button) { tab.OnMouseDown(func (button input.Button) {
if button != input.ButtonLeft { return } if button != input.ButtonLeft { return }
this.Activate(name) this.Activate(name)
}) })
@ -120,11 +118,9 @@ type tab struct {
func (this *tab) setActive (active bool) { func (this *tab) setActive (active bool) {
if active { if active {
this.SetRole(tomo.R("objects", "Tab")) this.SetRole(tomo.R("objects", "Tab", "active"))
this.SetTag("active", false)
} else { } else {
this.SetRole(tomo.R("objects", "Tab")) this.SetRole(tomo.R("objects", "Tab", ""))
this.SetTag("active", true)
} }
} }

View File

@ -19,8 +19,8 @@ type TextInput struct {
// 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() }
this.SetRole(tomo.R("objects", "TextInput")) this.SetRole(tomo.R("objects", "TextInput", ""))
this.SetAttr(tomo.AAlign(tomo.AlignStart, tomo.AlignMiddle)) this.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
this.SetText(text) this.SetText(text)
this.SetFocusable(true) this.SetFocusable(true)
this.SetSelectable(true) this.SetSelectable(true)
@ -53,9 +53,9 @@ func (this *TextInput) OnValueChange (callback func ()) event.Cookie {
return this.on.valueChange.Connect(callback) return this.on.valueChange.Connect(callback)
} }
func (this *TextInput) handleKeyDown (catch func (), key input.Key, numpad bool) { func (this *TextInput) handleKeyDown (key input.Key, numpad bool) {
dot := this.Dot() dot := this.Dot()
modifiers := this.Window().Modifiers() modifiers := this.Modifiers()
word := modifiers.Control word := modifiers.Control
sel := modifiers.Shift sel := modifiers.Shift
changed := false changed := false
@ -113,6 +113,6 @@ func (this *TextInput) Type (char rune) {
this.SetText(string(this.text)) this.SetText(string(this.text))
} }
func (this *TextInput) handleScroll (catch func (), x, y float64) { func (this *TextInput) handleScroll (x, y float64) {
this.ScrollTo(this.ContentBounds().Min.Add(image.Pt(int(x), int(y)))) this.ScrollTo(this.ContentBounds().Min.Add(image.Pt(int(x), int(y))))
} }

View File

@ -11,7 +11,7 @@ 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() }
this.SetRole(tomo.R("objects", "TextView")) this.SetRole(tomo.R("objects", "TextView", ""))
this.SetFocusable(true) this.SetFocusable(true)
this.SetSelectable(true) this.SetSelectable(true)
this.SetText(text) this.SetText(text)
@ -21,6 +21,6 @@ func NewTextView (text string) *TextView {
return this return this
} }
func (this *TextView) handleScroll (catch func (), x, y float64) { func (this *TextView) handleScroll (x, y float64) {
this.ScrollTo(this.ContentBounds().Min.Add(image.Pt(int(x), int(y)))) this.ScrollTo(this.ContentBounds().Min.Add(image.Pt(int(x), int(y))))
} }