GNOME Bugzilla – Bug 617312
Move documentation to inline comments: GtkDialog
Last modified: 2011-01-04 17:51:56 UTC
Created attachment 159994 [details] [review] Move documentation to inline comments: GtkDialog Move documentation to inline comments for GtkDialog
Review of attachment 159994 [details] [review]: Looks good, only some minor comments ::: gtk/gtkdialog.c @@ +79,3 @@ + * gtk_dialog_add_button(), gtk_dialog_add_buttons(), or + * gtk_dialog_add_action_widget(), clicking the button will emit a signal called + * "response" with a response ID that you specified. GTK+ will never assign a Use #GtkDialog::response here @@ +83,3 @@ + * convenience, you can use the response IDs in the #GtkResponseType enumeration + * (these all have values less than zero). If a dialog receives a delete event, + * the "response" signal will be emitted with a response ID of #GTK_RESPONSE_DELETE_EVENT. #GtkDialog::response @@ +94,3 @@ + * dialog contents manually if you had more than a simple message in the dialog. + * <example> + * <title>Simple <structname>GtkDialog</structname> usage.</title> Use #GtkDialog here @@ +101,3 @@ + * void quick_message (gchar *message) { + * + * GtkWidget *dialog, *label, *content_area; You can use GtkWidget *dialog, *label, *content_area; here @@ +132,3 @@ + * <refsect2 id="GtkDialog-BUILDER-UI"><title>GtkDialog as GtkBuildable</title> + * <para> + * The GtkDialog implementation of the GtkBuildable interface exposes the Use #GtkBuildable here