Skip to content

Commit fb98a58

Browse files
committed
fixes: #561 double deletion
1 parent 68dca60 commit fb98a58

File tree

4 files changed

+26
-70
lines changed

4 files changed

+26
-70
lines changed

internal/keyboard/keyboard_darwin.go

-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ package keyboard
22

33
import "github.com/go-gl/glfw/v3.3/glfw"
44

5-
// DetectWordMod returns true if the modifiers pressed
6-
// correspond to the word movement modifier
7-
func DetectWordMod(mods glfw.ModifierKey) bool {
8-
return mods&glfw.ModAlt != 0
9-
}
10-
115
// DetectTextInputDoneMod returns true if the modifiers pressed
126
// indicate the typed text can be committed
137
func DetectTextInputDoneMod(mods glfw.ModifierKey) bool {

internal/keyboard/keyboard_pc.go

-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@ package keyboard
44

55
import "github.com/go-gl/glfw/v3.3/glfw"
66

7-
// DetectWordMod returns true if the modifiers pressed
8-
// correspond to the word movement modifier
9-
func DetectWordMod(mods glfw.ModifierKey) bool {
10-
return mods&glfw.ModControl != 0
11-
}
12-
137
// DetectTextInputDoneMod returns true if the modifiers pressed
148
// indicate the typed text can be committed
159
func DetectTextInputDoneMod(mods glfw.ModifierKey) bool {

messenger.go

+23-17
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,17 @@ func (m *messenger) SendWithReply(channel string, binaryMessage []byte) (binaryR
5656
ResponseHandle: responseHandle,
5757
}
5858

59-
replyErr := make(chan error)
60-
defer close(replyErr)
61-
62-
glfw.PostEmptyEvent()
63-
go m.engineTasker.Do(func() {
64-
replyErr <- m.engine.SendPlatformMessage(msg)
65-
})
66-
err = <-replyErr
67-
if err != nil {
68-
return nil, err
59+
if m.engine.TaskRunnerRunOnCurrentThread() {
60+
err = m.engine.SendPlatformMessage(msg)
61+
} else {
62+
replyErr := make(chan error)
63+
defer close(replyErr)
64+
65+
glfw.PostEmptyEvent()
66+
go m.engineTasker.Do(func() {
67+
replyErr <- m.engine.SendPlatformMessage(msg)
68+
})
69+
err = <-replyErr
6970
}
7071

7172
// wait for a reply and return
@@ -79,14 +80,19 @@ func (m *messenger) Send(channel string, binaryMessage []byte) (err error) {
7980
Channel: channel,
8081
Message: binaryMessage,
8182
}
82-
replyErr := make(chan error)
83-
defer close(replyErr)
8483

85-
glfw.PostEmptyEvent()
86-
go m.engineTasker.Do(func() {
87-
replyErr <- m.engine.SendPlatformMessage(msg)
88-
})
89-
err = <-replyErr
84+
if m.engine.TaskRunnerRunOnCurrentThread() {
85+
err = m.engine.SendPlatformMessage(msg)
86+
} else {
87+
replyErr := make(chan error)
88+
defer close(replyErr)
89+
90+
glfw.PostEmptyEvent()
91+
go m.engineTasker.Do(func() {
92+
replyErr <- m.engine.SendPlatformMessage(msg)
93+
})
94+
err = <-replyErr
95+
}
9096
if err != nil {
9197
return err
9298
}

text-input.go

+3-41
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,10 @@ func (p *textinputPlugin) InitPlugin(messenger plugin.BinaryMessenger) error {
7171
})
7272
// Ignored: This information is used by the flutter Web Engine
7373
p.channel.HandleFuncSync("TextInput.setStyle", func(_ interface{}) (interface{}, error) { return nil, nil })
74-
// Ignored: This information is used by the flutter Web Engine
74+
// Ignored: GLFW dosn't support setting the input method of the current cursor location #426
7575
p.channel.HandleFuncSync("TextInput.setEditableSizeAndTransform", func(_ interface{}) (interface{}, error) { return nil, nil })
76+
// Ignored: GLFW dosn't support setting the input method of the current cursor location #426
77+
p.channel.HandleFuncSync("TextInput.setMarkedTextRect", func(_ interface{}) (interface{}, error) { return nil, nil })
7678
// Ignored: This information is used by flutter on Android, iOS and web
7779
p.channel.HandleFuncSync("TextInput.requestAutofill", func(_ interface{}) (interface{}, error) { return nil, nil })
7880

@@ -178,33 +180,6 @@ func (p *textinputPlugin) glfwKeyCallback(window *glfw.Window, key glfw.Key, sca
178180
// this action is described by argSetClientConf.
179181
p.performAction(p.clientConf.InputAction)
180182
}
181-
// Backspace
182-
if key == glfw.KeyBackspace {
183-
// Selection Backspace
184-
if p.removeSelectedText() {
185-
p.updateEditingState()
186-
return
187-
}
188-
// Word Backspace
189-
if keyboard.DetectWordMod(mods) {
190-
// Remove whitespace to the left
191-
for p.ed.SelectionBase != 0 && unicode.IsSpace(utf16.Decode([]uint16{p.ed.utf16Text[p.ed.SelectionBase-1]})[0]) {
192-
p.sliceLeftChar()
193-
}
194-
// Remove non-whitespace to the left
195-
for {
196-
if p.ed.SelectionBase == 0 || unicode.IsSpace(utf16.Decode([]uint16{p.ed.utf16Text[p.ed.SelectionBase-1]})[0]) {
197-
break
198-
}
199-
p.sliceLeftChar()
200-
}
201-
p.updateEditingState()
202-
return
203-
}
204-
// single char Backspace
205-
p.sliceLeftChar()
206-
p.updateEditingState()
207-
}
208183
// Mapping to some text navigation shortcut that are already implemented in
209184
// the flutter framework.
210185
// Home
@@ -284,16 +259,3 @@ func (p *textinputPlugin) getSelectedText() (int, int) {
284259
return selectionIndex[0],
285260
selectionIndex[1]
286261
}
287-
288-
func (p *textinputPlugin) sliceLeftChar() {
289-
if len(p.ed.utf16Text) > 0 && p.ed.SelectionBase > 0 {
290-
count := 1
291-
// Check if code point appear in a surrogate pair
292-
if utf16.IsSurrogate(rune(p.ed.utf16Text[p.ed.SelectionBase-1])) {
293-
count = 2
294-
}
295-
p.ed.utf16Text = append(p.ed.utf16Text[:p.ed.SelectionBase-count], p.ed.utf16Text[p.ed.SelectionBase:]...)
296-
p.ed.SelectionBase -= count
297-
p.ed.SelectionExtent = p.ed.SelectionBase
298-
}
299-
}

0 commit comments

Comments
 (0)