From f582c04a9c0433224f9723a03f4e8c55edca7667 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 30 Sep 2003 00:36:29 +0000 Subject: Document the "direction-changed" and "keys-changed" signals. 2003-09-30 Matthias Clasen * gdk/gdkkeys.c (gdk_keymap_class_init): Document the "direction-changed" and "keys-changed" signals. * gdk/gdkscreen.c (gdk_screen_class_init): Document the "size-changed" signal. * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Document the "display-opened" signal. * gdk/gdkdisplay.c (gdk_display_close): Doc tweak. (gdk_display_class_init): Document the "closed" signal. * gdk/tmpl/keys.sgml: Small addition. * gdk/gdk-sections.txt: Add GdkDisplayClass and GdkScreenClass. * gdk-pixbuf/gdk-pixbuf-sections.txt: Add GdkPixbufLoaderClass. --- gdk/gdkkeys.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'gdk/gdkkeys.c') diff --git a/gdk/gdkkeys.c b/gdk/gdkkeys.c index 0ca76b86e..b6af0d5c5 100644 --- a/gdk/gdkkeys.c +++ b/gdk/gdkkeys.c @@ -72,6 +72,15 @@ gdk_keymap_class_init (GdkKeymapClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); + /** + * GdkKeymap::direction-changed: + * @keymap: the object on which the signal is emitted + * + * The ::direction_changed signal gets emitted when the direction of + * the keymap changes. + * + * Since: 2.0 + */ signals[DIRECTION_CHANGED] = g_signal_new ("direction_changed", G_OBJECT_CLASS_TYPE (object_class), @@ -81,6 +90,15 @@ gdk_keymap_class_init (GdkKeymapClass *klass) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); + /** + * GdkKeymap::keys-changed: + * @keymap: the object on which the signal is emitted + * + * The ::keys_changed signal is emitted when the mapping represented by + * @keymap changes. + * + * Since: 2.2 + */ signals[KEYS_CHANGED] = g_signal_new ("keys_changed", G_OBJECT_CLASS_TYPE (object_class), -- cgit v1.2.1