1999-08-16 18:51:52 +00:00
|
|
|
<!-- ##### SECTION Title ##### -->
|
|
|
|
Bindings
|
|
|
|
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
2002-11-29 23:08:54 +00:00
|
|
|
Key bindings for individual widgets
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
|
|
<para>
|
2006-10-10 14:40:50 +00:00
|
|
|
GtkBinding provides a mechanism for configuring Gtk+ key bindings through RC files.
|
2006-10-10 13:30:55 +00:00
|
|
|
This eases key binding adjustments for application developers as well as users and
|
|
|
|
provides Gtk+ users or administrators with high key binding configurability which
|
2006-10-10 14:40:50 +00:00
|
|
|
requires no application or toolkit side changes.
|
2006-10-10 13:30:55 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<refsect2>
|
|
|
|
<anchor id="gtk-bindings-install"/>
|
|
|
|
<title>Installing a key binding</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
A resource file binding consists of a 'binding' definition and a match statement to
|
|
|
|
apply the binding to specific widget types. Details on the matching mechanism are
|
|
|
|
described under <link linkend="gtkrc-pathnames-and-patterns">Pathnames and patterns</link>.
|
|
|
|
Inside the binding definition, key combinations are bound to specific signal emissions
|
|
|
|
on the target widget. Key combinations are strings consisting of an optional #GdkModifierType
|
|
|
|
name and <link linkend="gdk-Keyboard-Handling">key names</link> such as those defined in
|
|
|
|
<filename><gdk/gdkkeysyms.h></filename> or returned from gdk_keyval_name(), they have
|
|
|
|
to be parsable by gtk_accelerator_parse().
|
|
|
|
Specifications of signal emissions consist of a string identifying the signal name, and
|
|
|
|
a list of signal specific arguments in parenthesis.
|
|
|
|
|
|
|
|
For example for binding Control and the left or right cursor keys of a #GtkEntry widget to the
|
|
|
|
#GtkEntry::move-cursor signal, so movement occurs in 3 letter steps,
|
|
|
|
the following binding can be used:
|
|
|
|
|
|
|
|
<informalexample><programlisting>
|
|
|
|
binding "MoveCursor3" {
|
|
|
|
bind "<Control>Right" {
|
|
|
|
"move-cursor" (visual-positions, 3, 0)
|
|
|
|
}
|
|
|
|
bind "<Control>Left" {
|
|
|
|
"move-cursor" (visual-positions, -3, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class "GtkEntry" binding "MoveCursor3"
|
|
|
|
</programlisting></informalexample>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
|
|
|
|
<anchor id="gtk-bindings-unbind"/>
|
|
|
|
<title>Unbinding existing key bindings</title>
|
|
|
|
<para>
|
|
|
|
Gtk+ already defines a number of useful bindings for the widgets it provides.
|
|
|
|
Because custom bindings set up in RC files take precedence over the default bindings
|
|
|
|
shipped with Gtk+, overriding existing bindings as demonstrated in
|
|
|
|
<link linkend="gtk-bindings-install">Installing a key binding</link>
|
|
|
|
works as expected. The same mechanism can not be used to "unbind" existing bindings,
|
|
|
|
however.
|
|
|
|
|
|
|
|
<informalexample><programlisting>
|
|
|
|
binding "MoveCursor3" {
|
|
|
|
bind "<Control>Right" { }
|
|
|
|
bind "<Control>Left" { }
|
|
|
|
}
|
|
|
|
class "GtkEntry" binding "MoveCursor3"
|
|
|
|
</programlisting></informalexample>
|
|
|
|
|
|
|
|
The above example will not have the desired effect of causing "<Control>Right"
|
|
|
|
and "<Control>Left" key presses to be ignored by Gtk+. Instead, it just causes
|
|
|
|
any existing bindings from the bindings set "MoveCursor3" to be deleted, so when
|
|
|
|
"<Control>Right" or "<Control>Left" are pressed, no binding for these keys
|
2006-10-10 14:40:50 +00:00
|
|
|
is found in binding set "MoveCursor3". Gtk+ will thus continue to search for matching
|
2006-10-10 13:30:55 +00:00
|
|
|
key bindings, and will eventually lookup and find the default Gtk+ bindings for entries
|
|
|
|
which implement word movement. To keep Gtk+ from activating its default bindings, the
|
|
|
|
"unbind" keyword can be used like this:
|
|
|
|
|
|
|
|
<informalexample><programlisting>
|
|
|
|
binding "MoveCursor3" {
|
|
|
|
unbind "<Control>Right"
|
|
|
|
unbind "<Control>Left"
|
|
|
|
}
|
|
|
|
class "GtkEntry" binding "MoveCursor3"
|
|
|
|
</programlisting></informalexample>
|
|
|
|
|
|
|
|
Now, Gtk+ will find a match when looking up "<Control>Right" and "<Control>Left"
|
|
|
|
key presses before it resorts to its default bindings, and the match instructs it to abort
|
|
|
|
("unbind") the search, so the key presses are not consumed by this widget.
|
|
|
|
As usual, further processing of the key presses, e.g. by an entries parent widget,
|
|
|
|
is now possible.
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
</para>
|
|
|
|
|
2006-10-10 13:30:55 +00:00
|
|
|
</refsect2>
|
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
|
|
<para>
|
2006-10-10 13:30:55 +00:00
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><link linkend="gtk-keyboard-accelerators">Keyboard Accelerators</link>
|
|
|
|
</term>
|
|
|
|
<listitem><para>installing and using keyboard short-cuts.</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><link linkend="Resource-Files">Resource Files</link>
|
|
|
|
</term>
|
|
|
|
<listitem><para>Gtk+ Resource Files - behavior and style definitions.</para></listitem>
|
|
|
|
</varlistentry>
|
1999-08-16 18:51:52 +00:00
|
|
|
|
2006-10-10 13:30:55 +00:00
|
|
|
</variablelist>
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2005-06-20 22:06:27 +00:00
|
|
|
<!-- ##### SECTION Stability_Level ##### -->
|
|
|
|
|
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
<!-- ##### STRUCT GtkBindingSet ##### -->
|
|
|
|
<para>
|
2006-10-10 13:30:55 +00:00
|
|
|
A binding set maintains a list of activatable key bindings.
|
|
|
|
A single binding set can match multiple types of widgets.
|
|
|
|
Similar to styles, widgets can be mapped by widget name paths, widget class paths or widget class types.
|
|
|
|
When a binding within a set is matched upon activation, an action signal is emitted on
|
|
|
|
the target widget to carry out the actual activation.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2006-10-10 13:30:55 +00:00
|
|
|
@set_name: unique binding set name
|
|
|
|
@priority: unused
|
|
|
|
@widget_path_pspecs: widgets matched by path that this binding set applies to
|
|
|
|
@widget_class_pspecs: widgets matched by class path that this binding set applies to
|
|
|
|
@class_branch_pspecs: widgets matched by class that this binding set applies to
|
|
|
|
@entries: the key binding entries in this binding set
|
|
|
|
@current: implementation detail
|
|
|
|
@parsed: whether this binding set stems from an RC file and is reset upon theme changes
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
<!-- ##### STRUCT GtkBindingEntry ##### -->
|
|
|
|
<para>
|
2006-10-10 13:30:55 +00:00
|
|
|
Each key binding element of a binding sets binding list is represented by a #GtkBindingEntry.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2006-10-10 13:30:55 +00:00
|
|
|
@keyval: key value to match
|
|
|
|
@modifiers: key modifier to match
|
|
|
|
@binding_set: binding set this entry belongs to
|
|
|
|
@destroyed: implementation detail
|
|
|
|
@in_emission: implementation detail
|
2006-10-11 12:32:26 +00:00
|
|
|
@marks_unbound:
|
2006-10-10 13:30:55 +00:00
|
|
|
@set_next: linked list of entries maintained by binding set
|
2006-10-11 12:32:26 +00:00
|
|
|
@hash_next: implementation detail
|
2006-10-10 13:30:55 +00:00
|
|
|
@signals: action signals of this entry
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
<!-- ##### STRUCT GtkBindingSignal ##### -->
|
|
|
|
<para>
|
2006-10-10 13:30:55 +00:00
|
|
|
A #GtkBindingSignal stores the necessary information to activate a widget
|
|
|
|
in response to a key press via a signal emission.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2006-10-10 13:30:55 +00:00
|
|
|
@next: implementation detail
|
|
|
|
@signal_name: the action signal to be emitted
|
|
|
|
@n_args: number of arguments specified for the signal
|
|
|
|
@args: the arguments specified for the signal
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
<!-- ##### STRUCT GtkBindingArg ##### -->
|
|
|
|
<para>
|
2006-10-10 13:30:55 +00:00
|
|
|
A #GtkBindingArg holds the data associated with an argument for a
|
|
|
|
key binding signal emission as stored in #GtkBindingSignal.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2006-10-10 13:30:55 +00:00
|
|
|
@arg_type: implementation detail
|
1999-08-16 18:51:52 +00:00
|
|
|
|
2006-12-14 14:48:41 +00:00
|
|
|
<!-- ##### MACRO gtk_binding_entry_add ##### -->
|
|
|
|
<para>
|
|
|
|
Deprecated.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_entry_add_signall ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@binding_set:
|
|
|
|
@keyval:
|
|
|
|
@modifiers:
|
|
|
|
@signal_name:
|
|
|
|
@binding_args:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_entry_clear ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@binding_set:
|
|
|
|
@keyval:
|
|
|
|
@modifiers:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_parse_binding ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@scanner:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2006-10-11 12:32:26 +00:00
|
|
|
<!-- ##### FUNCTION gtk_binding_set_new ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@set_name:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_set_by_class ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@object_class:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_set_find ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@set_name:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_bindings_activate ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@object:
|
|
|
|
@keyval:
|
|
|
|
@modifiers:
|
|
|
|
@Returns:
|
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
|
2004-03-02 22:57:40 +00:00
|
|
|
<!-- ##### FUNCTION gtk_bindings_activate_event ##### -->
|
|
|
|
<para>
|
2007-06-10 06:52:51 +00:00
|
|
|
|
2004-03-02 22:57:40 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
@object:
|
|
|
|
@event:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2006-10-11 12:32:26 +00:00
|
|
|
<!-- ##### FUNCTION gtk_binding_set_activate ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@binding_set:
|
|
|
|
@keyval:
|
|
|
|
@modifiers:
|
|
|
|
@object:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_entry_add_signal ##### -->
|
1999-08-16 18:51:52 +00:00
|
|
|
<para>
|
2006-10-11 12:32:26 +00:00
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
2006-10-11 12:32:26 +00:00
|
|
|
|
|
|
|
@binding_set:
|
|
|
|
@keyval:
|
|
|
|
@modifiers:
|
|
|
|
@signal_name:
|
|
|
|
@n_args:
|
|
|
|
@Varargs:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_entry_skip ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@binding_set:
|
|
|
|
@keyval:
|
|
|
|
@modifiers:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_entry_remove ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@binding_set:
|
|
|
|
@keyval:
|
|
|
|
@modifiers:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_binding_set_add_path ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@binding_set:
|
|
|
|
@path_type:
|
|
|
|
@path_pattern:
|
|
|
|
@priority:
|
|
|
|
|
|
|
|
|