diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-09-30 00:36:29 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-09-30 00:36:29 +0000 |
commit | f582c04a9c0433224f9723a03f4e8c55edca7667 (patch) | |
tree | f1a9d75f9cc06b60a0d7eb02c20d2dcb1d9c263b /gdk/gdkkeys.c | |
parent | f4345620002ea165719f432bc4ed40725604208d (diff) | |
download | gtk+-f582c04a9c0433224f9723a03f4e8c55edca7667.tar.gz |
Document the "direction-changed" and "keys-changed" signals.
2003-09-30 Matthias Clasen <maclas@gmx.de>
* 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.
Diffstat (limited to 'gdk/gdkkeys.c')
-rw-r--r-- | gdk/gdkkeys.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gdk/gdkkeys.c b/gdk/gdkkeys.c index 0ca76b86ea..b6af0d5c53 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), |