]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/backend/gtk/input-methods/input-methods.factor
Switch to https urls
[factor.git] / basis / ui / backend / gtk / input-methods / input-methods.factor
1 ! Copyright (C) 2011 Anton Gorenko.
2 ! See https://factorcode.org/license.txt for BSD license.
3 USING: kernel ui.gadgets ;
4 IN: ui.backend.gtk.input-methods
5
6 GENERIC: support-input-methods? ( gadget -- ? )
7 GENERIC: cursor-surrounding ( gadget -- text cursor-pos )
8 GENERIC: delete-cursor-surrounding ( offset count gadget -- )
9 GENERIC: cursor-loc&dim ( gadget -- loc dim )
10
11 M: gadget support-input-methods? drop f ;