User can now select text with the mouse
This commit is contained in:
parent
ea95473090
commit
b74ec4336f
1
event.go
1
event.go
@ -306,6 +306,7 @@ func (window *window) handleMotionNotify (
|
|||||||
if window.hasModal { return }
|
if window.hasModal { return }
|
||||||
|
|
||||||
motionEvent := window.compressMotionNotify(*event.MotionNotifyEvent)
|
motionEvent := window.compressMotionNotify(*event.MotionNotifyEvent)
|
||||||
|
window.updateMousePosition(motionEvent.EventX, motionEvent.EventY)
|
||||||
x := int(motionEvent.EventX)
|
x := int(motionEvent.EventX)
|
||||||
y := int(motionEvent.EventY)
|
y := int(motionEvent.EventY)
|
||||||
|
|
||||||
|
43
textbox.go
43
textbox.go
@ -3,10 +3,11 @@ package x
|
|||||||
import "image"
|
import "image"
|
||||||
import "image/color"
|
import "image/color"
|
||||||
import "golang.org/x/image/font"
|
import "golang.org/x/image/font"
|
||||||
import "golang.org/x/image/math/fixed"
|
|
||||||
import "git.tebibyte.media/tomo/tomo"
|
import "git.tebibyte.media/tomo/tomo"
|
||||||
|
import "golang.org/x/image/math/fixed"
|
||||||
import "git.tebibyte.media/tomo/typeset"
|
import "git.tebibyte.media/tomo/typeset"
|
||||||
import "git.tebibyte.media/tomo/tomo/text"
|
import "git.tebibyte.media/tomo/tomo/text"
|
||||||
|
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/tomo/canvas"
|
import "git.tebibyte.media/tomo/tomo/canvas"
|
||||||
|
|
||||||
@ -23,9 +24,11 @@ type textBox struct {
|
|||||||
wrap bool
|
wrap bool
|
||||||
hAlign tomo.Align
|
hAlign tomo.Align
|
||||||
|
|
||||||
selectable bool
|
selectable bool
|
||||||
dot text.Dot
|
selecting bool
|
||||||
dotColor color.Color
|
selectStart int
|
||||||
|
dot text.Dot
|
||||||
|
dotColor color.Color
|
||||||
|
|
||||||
drawer typeset.Drawer
|
drawer typeset.Drawer
|
||||||
|
|
||||||
@ -228,6 +231,38 @@ func (this *textBox) handleFocusLeave () {
|
|||||||
this.box.handleFocusLeave()
|
this.box.handleFocusLeave()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *textBox) handleMouseDown (button input.Button) {
|
||||||
|
if button == input.ButtonLeft {
|
||||||
|
index := this.runeUnderMouse()
|
||||||
|
this.selectStart = index
|
||||||
|
this.selecting = true
|
||||||
|
this.Select(text.Dot { Start: this.selectStart, End: index })
|
||||||
|
}
|
||||||
|
this.box.handleMouseDown(button)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *textBox) handleMouseUp (button input.Button) {
|
||||||
|
if button == input.ButtonLeft && this.selecting {
|
||||||
|
index := this.runeUnderMouse()
|
||||||
|
this.selecting = false
|
||||||
|
this.Select(text.Dot { Start: this.selectStart, End: index })
|
||||||
|
}
|
||||||
|
this.box.handleMouseUp(button)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *textBox) handleMouseMove () {
|
||||||
|
if this.selecting {
|
||||||
|
index := this.runeUnderMouse()
|
||||||
|
this.Select(text.Dot { Start: this.selectStart, End: index })
|
||||||
|
}
|
||||||
|
this.box.handleMouseMove()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *textBox) runeUnderMouse () int {
|
||||||
|
position := this.MousePosition().Sub(this.textOffset())
|
||||||
|
return this.drawer.AtPosition(fixPt(position))
|
||||||
|
}
|
||||||
|
|
||||||
func (this *textBox) normalizedLayoutBoundsSpace () image.Rectangle {
|
func (this *textBox) normalizedLayoutBoundsSpace () image.Rectangle {
|
||||||
bounds := this.drawer.LayoutBoundsSpace()
|
bounds := this.drawer.LayoutBoundsSpace()
|
||||||
return bounds.Sub(bounds.Min)
|
return bounds.Sub(bounds.Min)
|
||||||
|
@ -117,8 +117,8 @@ func (backend *Backend) newWindow (
|
|||||||
Connect(backend.x, window.xWindow.Id)
|
Connect(backend.x, window.xWindow.Id)
|
||||||
xevent.ButtonReleaseFun(window.handleButtonRelease).
|
xevent.ButtonReleaseFun(window.handleButtonRelease).
|
||||||
Connect(backend.x, window.xWindow.Id)
|
Connect(backend.x, window.xWindow.Id)
|
||||||
// xevent.MotionNotifyFun(window.handleMotionNotify).
|
xevent.MotionNotifyFun(window.handleMotionNotify).
|
||||||
// Connect(backend.x, window.xWindow.Id)
|
Connect(backend.x, window.xWindow.Id)
|
||||||
// xevent.SelectionNotifyFun(window.handleSelectionNotify).
|
// xevent.SelectionNotifyFun(window.handleSelectionNotify).
|
||||||
// Connect(backend.x, window.xWindow.Id)
|
// Connect(backend.x, window.xWindow.Id)
|
||||||
// xevent.PropertyNotifyFun(window.handlePropertyNotify).
|
// xevent.PropertyNotifyFun(window.handlePropertyNotify).
|
||||||
|
Reference in New Issue
Block a user