forked from AuroraMiddleware/gtk
356df7f650
Thu Oct 23 21:55:10 2003 Soeren Sandmann <sandmann@daimi.au.dk> * gtk/gtktoolbar.c (gtk_toolbar_highlight_drop_location): Make this function take an index and a GtkToolItem. * tests/testtoolbar.c (main): Make "Show Arrow" default to true. Make one of the separators !draw and expand. Update for new highlight_drop_location() API. * gtk/gtktoolitem.[ch]: Remove "pack_end" property * gtk/gtktoolbar.h: Formatting fixes. * gtk/gtktoolbar.c: Remove "pack_end" child property. Allow separator tool items to expand. (logical_to_physical, physical_to_logical): Fix off-by-one errors (Fix #125472, Marco Pesenti Gritti) * gtk/gtkseparatortoolitem.[ch]: Add new "draw" property. (gtk_separator_tool_item_expose) only draw if "draw" is TRUE. Also return FALSE, not TRUE. (gtk_separator_too_item_{set|get}_property, (gtk_separator_tool_item_{set|get}_draw): new functions
74 lines
2.0 KiB
Plaintext
74 lines
2.0 KiB
Plaintext
<!-- ##### SECTION Title ##### -->
|
|
GtkInputDialog
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
Configure devices for the XInput extension.
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
NOTE this widget is considered too specialized/little-used for
|
|
GTK+, and will in the future be moved to some other package. If
|
|
your application needs this widget, feel free to use it, as the
|
|
widget does work and is useful in some applications; it's just not
|
|
of general interest. However, we are not accepting new features for
|
|
the widget, and it will eventually move out of the GTK+
|
|
distribution.
|
|
</para>
|
|
|
|
<para>
|
|
#GtkInputDialog displays a dialog which allows the user
|
|
to configure XInput extension devices. For each
|
|
device, they can control the mode of the device
|
|
(disabled, screen-relative, or window-relative),
|
|
the mapping of axes to coordinates, and the
|
|
mapping of the devices macro keys to key press
|
|
events.
|
|
</para>
|
|
<para>
|
|
#GtkInputDialog contains two buttons to which
|
|
the application can connect; one for closing
|
|
the dialog, and one for saving the changes.
|
|
No actions are bound to these by default.
|
|
The changes that the user makes take effect
|
|
immediately.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### STRUCT GtkInputDialog ##### -->
|
|
<para>
|
|
</para>
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_input_dialog_new ##### -->
|
|
<para>
|
|
Creates a new #GtkInputDialog.
|
|
</para>
|
|
|
|
@Returns: the new #GtkInputDialog.
|
|
|
|
|
|
<!-- ##### SIGNAL GtkInputDialog::disable-device ##### -->
|
|
<para>
|
|
This signal is emitted when the user changes the
|
|
mode of a device from a #GDK_MODE_SCREEN or #GDK_MODE_WINDOW
|
|
to #GDK_MODE_ENABLED.
|
|
</para>
|
|
|
|
@inputdialog: the object which received the signal.
|
|
@deviceid: The ID of the newly disabled device.
|
|
|
|
<!-- ##### SIGNAL GtkInputDialog::enable-device ##### -->
|
|
<para>
|
|
This signal is emitted when the user changes the
|
|
mode of a device from #GDK_MODE_DISABLED to a
|
|
#GDK_MODE_SCREEN or #GDK_MODE_WINDOW.
|
|
</para>
|
|
|
|
@inputdialog: the object which received the signal.
|
|
@deviceid: The ID of the newly enabled device.
|
|
|