]> Pileus Git - ~andy/gtk/commitdiff
Doc additions
authorMatthias Clasen <matthiasc@src.gnome.org>
Mon, 29 Dec 2008 07:39:34 +0000 (07:39 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 29 Dec 2008 07:39:34 +0000 (07:39 +0000)
svn path=/trunk/; revision=21998

ChangeLog
gtk/gtkwindow.c

index a36c05f03df26bc15012c1bd3c34c3ec897d0f9d..42d77bc90aa3cd2998d76bb5ec6a07cb92b74bd0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkwindow.c: 
        * gtk/gtkstyle.c: Doc additions
 
 2008-12-28  Matthias Clasen  <mclasen@redhat.com>
index 1858b8411182ebd4f19f48c61d2df6b27bbaccd3..e0c76c43f8e46943e9b333bf8ee5c64234735418 100644 (file)
@@ -758,6 +758,7 @@ gtk_window_class_init (GtkWindowClass *klass)
                                                        P_("The transient parent of the dialog"),
                                                        GTK_TYPE_WINDOW,
                                                        GTK_PARAM_READWRITE| G_PARAM_CONSTRUCT));
+
   /**
    * GtkWindow:opacity:
    *
@@ -796,6 +797,15 @@ gtk_window_class_init (GtkWindowClass *klass)
                   G_TYPE_BOOLEAN, 1,
                   GDK_TYPE_EVENT);
 
+  /**
+   * GtkWindow::activate-focus:
+   * @window: the window which received the signal
+   *
+   * The ::activate-default signal is a
+   * <link linkend="keybinding-signals">keybinding signal</link>
+   * which gets emitted when the user activates the currently
+   * focused widget of @window.
+   */
   window_signals[ACTIVATE_FOCUS] =
     g_signal_new (I_("activate-focus"),
                   G_TYPE_FROM_CLASS (gobject_class),
@@ -806,6 +816,15 @@ gtk_window_class_init (GtkWindowClass *klass)
                   G_TYPE_NONE,
                   0);
 
+  /**
+   * GtkWindow::activate-default:
+   * @window: the window which received the signal
+   *
+   * The ::activate-default signal is a
+   * <link linkend="keybinding-signals">keybinding signal</link>
+   * which gets emitted when the user activates the default widget
+   * of @window.
+   */
   window_signals[ACTIVATE_DEFAULT] =
     g_signal_new (I_("activate-default"),
                   G_TYPE_FROM_CLASS (gobject_class),
@@ -816,6 +835,13 @@ gtk_window_class_init (GtkWindowClass *klass)
                   G_TYPE_NONE,
                   0);
 
+  /**
+   * GtkWindow::keys-changed:
+   * @window: the window which received the signal
+   *
+   * The ::keys-changed signal gets emitted when the set of accelerators
+   * or mnemonics that are associated with @window changes.
+   */
   window_signals[KEYS_CHANGED] =
     g_signal_new (I_("keys-changed"),
                   G_TYPE_FROM_CLASS (gobject_class),