1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
package gtk_mock
import "github.com/twstrike/gotk3adapter/gtki"
type MockTextView struct {
MockContainer
}
func (*MockTextView) SetEditable(v1 bool) {
}
func (*MockTextView) SetCursorVisible(v1 bool) {
}
func (*MockTextView) SetBuffer(v1 gtki.TextBuffer) {
}
func (*MockTextView) GetBuffer() (gtki.TextBuffer, error) {
return nil, nil
}
func (*MockTextView) ForwardDisplayLine(gtki.TextIter) bool {
return false
}
func (*MockTextView) BackwardDisplayLine(gtki.TextIter) bool {
return false
}
func (*MockTextView) ForwardDisplayLineEnd(gtki.TextIter) bool {
return false
}
func (*MockTextView) BackwardDisplayLineStart(gtki.TextIter) bool {
return false
}
func (*MockTextView) StartsDisplayLine(gtki.TextIter) bool {
return false
}
func (*MockTextView) MoveVisually(gtki.TextIter, int) bool {
return false
}
|