Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
IMContext
defines the interface for GTK+ input methods. An input method
is used by GTK+ text input widgets like Entry
to map from key events to
Unicode character strings.
The default input method can be set programmatically via the Settings:gtkImModule GtkSettings property. Alternatively, you may set the GTK_IM_MODULE environment variable as documented in [Running GTK+ Applications][gtk-running].
The Entry
Entry:imModule and TextView
TextView:imModule
properties may also be used to set input methods for specific widget
instances. For instance, a certain entry widget might be expected to contain
certain characters which would be easier to input with a certain input
method.
An input method may consume multiple key events in sequence and finally output the composed result. This is called preediting, and an input method may provide feedback about this process by displaying the intermediate composition states as preedit text. For instance, the default GTK+ input method implements the input of arbitrary Unicode code points by holding down the Control and Shift keys and then typing “U” followed by the hexadecimal digits of the code point. When releasing the Control and Shift keys, preediting ends and the character is inserted as text. Ctrl+Shift+u20AC for example results in the € sign.
Additional input methods can be made available for use by GTK+ widgets as
loadable modules. An input method module is a small shared library which
implements a subclass of IMContext
or IMContextSimple
and exports
these four functions:
C code
void im_module_init(GTypeModule *module);
This function should register the GType
of the IMContext
subclass which
implements the input method by means of typeModuleRegisterType
. Note
that typeRegisterStatic
cannot be used as the type needs to be
registered dynamically.
C code
void im_module_exit(void);
Here goes any cleanup code your input method might require on module unload.
C code
void im_module_list(const GtkIMContextInfo ***contexts, int *n_contexts) { *contexts = info_list; *n_contexts = G_N_ELEMENTS (info_list); }
This function returns the list of input methods provided by the module. The
example implementation above shows a common solution and simply returns a
pointer to statically defined array of IMContextInfo
items for each
provided input method.
C code
GtkIMContext * im_module_create(const gchar *context_id);
This function should return a pointer to a newly created instance of the
IMContext
subclass identified by contextId
. The context ID is the same
as specified in the IMContextInfo
array returned by im_module_list()
.
After a new loadable input method module has been installed on the system,
the configuration file gtk.immodules
needs to be
regenerated by [gtk-query-immodules-3.0][gtk-query-immodules-3.0],
in order for the new input method to become available to GTK+ applications.
Synopsis
- newtype IMContext = IMContext (ManagedPtr IMContext)
- class (GObject o, IsDescendantOf IMContext o) => IsIMContext o
- toIMContext :: (MonadIO m, IsIMContext o) => o -> m IMContext
- iMContextDeleteSurrounding :: (HasCallStack, MonadIO m, IsIMContext a) => a -> Int32 -> Int32 -> m Bool
- iMContextFilterKeypress :: (HasCallStack, MonadIO m, IsIMContext a) => a -> EventKey -> m Bool
- iMContextFocusIn :: (HasCallStack, MonadIO m, IsIMContext a) => a -> m ()
- iMContextFocusOut :: (HasCallStack, MonadIO m, IsIMContext a) => a -> m ()
- iMContextGetPreeditString :: (HasCallStack, MonadIO m, IsIMContext a) => a -> m (Text, AttrList, Int32)
- iMContextGetSurrounding :: (HasCallStack, MonadIO m, IsIMContext a) => a -> m (Bool, Text, Int32)
- iMContextReset :: (HasCallStack, MonadIO m, IsIMContext a) => a -> m ()
- iMContextSetClientWindow :: (HasCallStack, MonadIO m, IsIMContext a, IsWindow b) => a -> Maybe b -> m ()
- iMContextSetCursorLocation :: (HasCallStack, MonadIO m, IsIMContext a) => a -> Rectangle -> m ()
- iMContextSetSurrounding :: (HasCallStack, MonadIO m, IsIMContext a) => a -> Text -> Int32 -> Int32 -> m ()
- iMContextSetUsePreedit :: (HasCallStack, MonadIO m, IsIMContext a) => a -> Bool -> m ()
- constructIMContextInputHints :: (IsIMContext o, MonadIO m) => [InputHints] -> m (GValueConstruct o)
- getIMContextInputHints :: (MonadIO m, IsIMContext o) => o -> m [InputHints]
- setIMContextInputHints :: (MonadIO m, IsIMContext o) => o -> [InputHints] -> m ()
- constructIMContextInputPurpose :: (IsIMContext o, MonadIO m) => InputPurpose -> m (GValueConstruct o)
- getIMContextInputPurpose :: (MonadIO m, IsIMContext o) => o -> m InputPurpose
- setIMContextInputPurpose :: (MonadIO m, IsIMContext o) => o -> InputPurpose -> m ()
- type IMContextCommitCallback = Text -> IO ()
- afterIMContextCommit :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextCommitCallback) -> m SignalHandlerId
- onIMContextCommit :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextCommitCallback) -> m SignalHandlerId
- type IMContextDeleteSurroundingCallback = Int32 -> Int32 -> IO Bool
- afterIMContextDeleteSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextDeleteSurroundingCallback) -> m SignalHandlerId
- onIMContextDeleteSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextDeleteSurroundingCallback) -> m SignalHandlerId
- type IMContextPreeditChangedCallback = IO ()
- afterIMContextPreeditChanged :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditChangedCallback) -> m SignalHandlerId
- onIMContextPreeditChanged :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditChangedCallback) -> m SignalHandlerId
- type IMContextPreeditEndCallback = IO ()
- afterIMContextPreeditEnd :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditEndCallback) -> m SignalHandlerId
- onIMContextPreeditEnd :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditEndCallback) -> m SignalHandlerId
- type IMContextPreeditStartCallback = IO ()
- afterIMContextPreeditStart :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditStartCallback) -> m SignalHandlerId
- onIMContextPreeditStart :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditStartCallback) -> m SignalHandlerId
- type IMContextRetrieveSurroundingCallback = IO Bool
- afterIMContextRetrieveSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextRetrieveSurroundingCallback) -> m SignalHandlerId
- onIMContextRetrieveSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextRetrieveSurroundingCallback) -> m SignalHandlerId
Exported types
Memory-managed wrapper type.
Instances
Eq IMContext Source # | |
GObject IMContext Source # | |
Defined in GI.Gtk.Objects.IMContext | |
ManagedPtrNewtype IMContext Source # | |
Defined in GI.Gtk.Objects.IMContext toManagedPtr :: IMContext -> ManagedPtr IMContext | |
TypedObject IMContext Source # | |
Defined in GI.Gtk.Objects.IMContext | |
HasParentTypes IMContext Source # | |
Defined in GI.Gtk.Objects.IMContext | |
IsGValue (Maybe IMContext) Source # | Convert |
Defined in GI.Gtk.Objects.IMContext gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe IMContext -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe IMContext) | |
type ParentTypes IMContext Source # | |
Defined in GI.Gtk.Objects.IMContext type ParentTypes IMContext = '[Object] |
class (GObject o, IsDescendantOf IMContext o) => IsIMContext o Source #
Type class for types which can be safely cast to IMContext
, for instance with toIMContext
.
Instances
(GObject o, IsDescendantOf IMContext o) => IsIMContext o Source # | |
Defined in GI.Gtk.Objects.IMContext |
toIMContext :: (MonadIO m, IsIMContext o) => o -> m IMContext Source #
Methods
Click to display all available methods, including inherited ones
Methods
bindProperty, bindPropertyFull, deleteSurrounding, filterKeypress, focusIn, focusOut, forceFloating, freezeNotify, getv, isFloating, notify, notifyByPspec, ref, refSink, reset, runDispose, stealData, stealQdata, thawNotify, unref, watchClosure.
Getters
getData, getPreeditString, getProperty, getQdata, getSurrounding.
Setters
setClientWindow, setCursorLocation, setData, setDataFull, setProperty, setSurrounding, setUsePreedit.
deleteSurrounding
iMContextDeleteSurrounding Source #
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> Int32 |
|
-> Int32 |
|
-> m Bool | Returns: |
Asks the widget that the input context is attached to to delete
characters around the cursor position by emitting the
GtkIMContextdelete_surrounding signal. Note that offset
and nChars
are in characters not in bytes which differs from the usage other
places in IMContext
.
In order to use this function, you should first call
iMContextGetSurrounding
to get the current context, and
call this function immediately afterwards to make sure that you
know what you are deleting. You should also account for the fact
that even if the signal was handled, the input context might not
have deleted all the characters that were requested to be deleted.
This function is used by an input method that wants to make subsitutions in the existing text in response to new input. It is not useful for applications.
filterKeypress
iMContextFilterKeypress Source #
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> EventKey |
|
-> m Bool | Returns: |
Allow an input method to internally handle key press and release
events. If this function returns True
, then no further processing
should be done for this key event.
focusIn
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> m () |
Notify the input method that the widget to which this input context corresponds has gained focus. The input method may, for example, change the displayed feedback to reflect this change.
focusOut
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> m () |
Notify the input method that the widget to which this input context corresponds has lost focus. The input method may, for example, change the displayed feedback or reset the contexts state to reflect this change.
getPreeditString
iMContextGetPreeditString Source #
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> m (Text, AttrList, Int32) |
Retrieve the current preedit string for the input context, and a list of attributes to apply to the string. This string should be displayed inserted at the insertion point.
getSurrounding
iMContextGetSurrounding Source #
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> m (Bool, Text, Int32) | Returns: |
Retrieves context around the insertion point. Input methods typically want context in order to constrain input text based on existing text; this is important for languages such as Thai where only some sequences of characters are allowed.
This function is implemented by emitting the
GtkIMContextretrieve_surrounding signal on the input method; in
response to this signal, a widget should provide as much context as
is available, up to an entire paragraph, by calling
iMContextSetSurrounding
. Note that there is no obligation
for a widget to respond to the retrieve_surrounding signal, so input
methods must be prepared to function without context.
reset
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> m () |
Notify the input method that a change such as a change in cursor position has been made. This will typically cause the input method to clear the preedit state.
setClientWindow
iMContextSetClientWindow Source #
:: (HasCallStack, MonadIO m, IsIMContext a, IsWindow b) | |
=> a |
|
-> Maybe b |
|
-> m () |
Set the client window for the input context; this is the
Window
in which the input appears. This window is
used in order to correctly position status windows, and may
also be used for purposes internal to the input method.
setCursorLocation
iMContextSetCursorLocation Source #
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> Rectangle |
|
-> m () |
Notify the input method that a change in cursor position has been made. The location is relative to the client window.
setSurrounding
iMContextSetSurrounding Source #
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> Text |
|
-> Int32 |
|
-> Int32 |
|
-> m () |
Sets surrounding context around the insertion point and preedit string. This function is expected to be called in response to the GtkIMContextretrieve_surrounding signal, and will likely have no effect if called at other times.
setUsePreedit
iMContextSetUsePreedit Source #
:: (HasCallStack, MonadIO m, IsIMContext a) | |
=> a |
|
-> Bool |
|
-> m () |
Sets whether the IM context should use the preedit string
to display feedback. If usePreedit
is FALSE (default
is TRUE), then the IM context may use some other method to display
feedback, such as displaying it in a child of the root window.
Properties
inputHints
No description available in the introspection data.
constructIMContextInputHints :: (IsIMContext o, MonadIO m) => [InputHints] -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “input-hints
” property. This is rarely needed directly, but it is used by new
.
getIMContextInputHints :: (MonadIO m, IsIMContext o) => o -> m [InputHints] Source #
Get the value of the “input-hints
” property.
When overloading is enabled, this is equivalent to
get
iMContext #inputHints
setIMContextInputHints :: (MonadIO m, IsIMContext o) => o -> [InputHints] -> m () Source #
Set the value of the “input-hints
” property.
When overloading is enabled, this is equivalent to
set
iMContext [ #inputHints:=
value ]
inputPurpose
No description available in the introspection data.
constructIMContextInputPurpose :: (IsIMContext o, MonadIO m) => InputPurpose -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “input-purpose
” property. This is rarely needed directly, but it is used by new
.
getIMContextInputPurpose :: (MonadIO m, IsIMContext o) => o -> m InputPurpose Source #
Get the value of the “input-purpose
” property.
When overloading is enabled, this is equivalent to
get
iMContext #inputPurpose
setIMContextInputPurpose :: (MonadIO m, IsIMContext o) => o -> InputPurpose -> m () Source #
Set the value of the “input-purpose
” property.
When overloading is enabled, this is equivalent to
set
iMContext [ #inputPurpose:=
value ]
Signals
commit
type IMContextCommitCallback Source #
The commit signal is emitted when a complete input sequence has been entered by the user. This can be a single character immediately after a key press or the final result of preediting.
afterIMContextCommit :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextCommitCallback) -> m SignalHandlerId Source #
Connect a signal handler for the commit signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
iMContext #commit callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onIMContextCommit :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextCommitCallback) -> m SignalHandlerId Source #
Connect a signal handler for the commit signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
iMContext #commit callback
deleteSurrounding
type IMContextDeleteSurroundingCallback Source #
= Int32 |
|
-> Int32 |
|
-> IO Bool | Returns: |
The deleteSurrounding signal is emitted when the input method needs to delete all or part of the context surrounding the cursor.
afterIMContextDeleteSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextDeleteSurroundingCallback) -> m SignalHandlerId Source #
Connect a signal handler for the deleteSurrounding signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
iMContext #deleteSurrounding callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onIMContextDeleteSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextDeleteSurroundingCallback) -> m SignalHandlerId Source #
Connect a signal handler for the deleteSurrounding signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
iMContext #deleteSurrounding callback
preeditChanged
type IMContextPreeditChangedCallback = IO () Source #
The preeditChanged signal is emitted whenever the preedit sequence
currently being entered has changed. It is also emitted at the end of
a preedit sequence, in which case
iMContextGetPreeditString
returns the empty string.
afterIMContextPreeditChanged :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditChangedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the preeditChanged signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
iMContext #preeditChanged callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onIMContextPreeditChanged :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditChangedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the preeditChanged signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
iMContext #preeditChanged callback
preeditEnd
type IMContextPreeditEndCallback = IO () Source #
The preeditEnd signal is emitted when a preediting sequence has been completed or canceled.
afterIMContextPreeditEnd :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditEndCallback) -> m SignalHandlerId Source #
Connect a signal handler for the preeditEnd signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
iMContext #preeditEnd callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onIMContextPreeditEnd :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditEndCallback) -> m SignalHandlerId Source #
Connect a signal handler for the preeditEnd signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
iMContext #preeditEnd callback
preeditStart
type IMContextPreeditStartCallback = IO () Source #
The preeditStart signal is emitted when a new preediting sequence starts.
afterIMContextPreeditStart :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditStartCallback) -> m SignalHandlerId Source #
Connect a signal handler for the preeditStart signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
iMContext #preeditStart callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onIMContextPreeditStart :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextPreeditStartCallback) -> m SignalHandlerId Source #
Connect a signal handler for the preeditStart signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
iMContext #preeditStart callback
retrieveSurrounding
type IMContextRetrieveSurroundingCallback Source #
The retrieveSurrounding signal is emitted when the input method
requires the context surrounding the cursor. The callback should set
the input method surrounding context by calling the
iMContextSetSurrounding
method.
afterIMContextRetrieveSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextRetrieveSurroundingCallback) -> m SignalHandlerId Source #
Connect a signal handler for the retrieveSurrounding signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
iMContext #retrieveSurrounding callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onIMContextRetrieveSurrounding :: (IsIMContext a, MonadIO m) => a -> ((?self :: a) => IMContextRetrieveSurroundingCallback) -> m SignalHandlerId Source #
Connect a signal handler for the retrieveSurrounding signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
iMContext #retrieveSurrounding callback