Maintainer | gtk2hs-users@lists.sourceforge.net |
---|---|
Stability | provisional |
Portability | portable (depends on GHC) |
Safe Haskell | None |
Language | Haskell98 |
Graphics.UI.Gtk.Misc.IMContextSimple
Description
An input method context supporting table-based input methods
- data IMContextSimple
- class IMContextClass o => IMContextSimpleClass o
- castToIMContextSimple :: GObjectClass obj => obj -> IMContextSimple
- toIMContextSimple :: IMContextSimpleClass o => o -> IMContextSimple
- imContextSimpleNew :: IO IMContextSimple
- imContextSimpleAddTable :: (IMContextSimpleClass self, GlibString string) => self -> Map string string -> Int -> Int -> IO ()
Class Hierarchy
Types
data IMContextSimple Source
class IMContextClass o => IMContextSimpleClass o Source
Instances
castToIMContextSimple :: GObjectClass obj => obj -> IMContextSimple Source
toIMContextSimple :: IMContextSimpleClass o => o -> IMContextSimple Source
Constructors
imContextSimpleNew :: IO IMContextSimple Source
Creates a new IMContextSimple
.
Methods
imContextSimpleAddTable Source
Arguments
:: (IMContextSimpleClass self, GlibString string) | |
=> self | |
-> Map string string |
|
-> Int |
|
-> Int |
|
-> IO () |
Adds an additional table to search to the input context. Each row of the table consists of
maxSeqLen
key symbols followed by two Int
interpreted as the high and low words of a gunicode
value. Tables are searched starting from the last added.
The table must be sorted in dictionary order on the numeric value of the key symbol fields. (Values beyond the length of the sequence should be zero.)