docs: fully break lines in examples
Try to do a better job of keeping example content from being too wide. It is often rendered as <pre> text so the only time we can wrap it is in the source. It is best to full break lines at all punctuation and to try to keep the width under 70 chars or so.
This commit is contained in:
@ -100,32 +100,36 @@
|
||||
*
|
||||
* An example for simple GtkDialog usage:
|
||||
* |[<!-- language="C" -->
|
||||
* /* Function to open a dialog box displaying the message provided. */
|
||||
* /* Function to open a dialog box with a message */
|
||||
* void
|
||||
* quick_message (gchar *message)
|
||||
* quick_message (GtkWindow *parent, gchar *message)
|
||||
* {
|
||||
* GtkWidget *dialog, *label, *content_area;
|
||||
* GtkWidget *dialog, *label, *content_area;
|
||||
* GtkDialogFlags flags;
|
||||
*
|
||||
* /* Create the widgets */
|
||||
* dialog = gtk_dialog_new_with_buttons ("Message",
|
||||
* main_application_window,
|
||||
* GTK_DIALOG_DESTROY_WITH_PARENT,
|
||||
* _("_OK"),
|
||||
* GTK_RESPONSE_NONE,
|
||||
* NULL);
|
||||
* content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
|
||||
* label = gtk_label_new (message);
|
||||
* /* Create the widgets */
|
||||
* flags = GTK_DIALOG_DESTROY_WITH_PARENT;
|
||||
* dialog = gtk_dialog_new_with_buttons ("Message",
|
||||
* parent,
|
||||
* flags,
|
||||
* _("_OK"),
|
||||
* GTK_RESPONSE_NONE,
|
||||
* NULL);
|
||||
* content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
|
||||
* label = gtk_label_new (message);
|
||||
*
|
||||
* /* Ensure that the dialog box is destroyed when the user responds */
|
||||
* g_signal_connect_swapped (dialog,
|
||||
* "response",
|
||||
* G_CALLBACK (gtk_widget_destroy),
|
||||
* dialog);
|
||||
* /* Ensure that the dialog box is destroyed when the user
|
||||
* responds */
|
||||
*
|
||||
* /* Add the label, and show everything we’ve added to the dialog */
|
||||
* g_signal_connect_swapped (dialog,
|
||||
* "response",
|
||||
* G_CALLBACK (gtk_widget_destroy),
|
||||
* dialog);
|
||||
*
|
||||
* gtk_container_add (GTK_CONTAINER (content_area), label);
|
||||
* gtk_widget_show_all (dialog);
|
||||
* /* Add the label, and show everything we’ve added */
|
||||
*
|
||||
* gtk_container_add (GTK_CONTAINER (content_area), label);
|
||||
* gtk_widget_show_all (dialog);
|
||||
* }
|
||||
* ]|
|
||||
*
|
||||
@ -860,14 +864,16 @@ gtk_dialog_new_empty (const gchar *title,
|
||||
*
|
||||
* Here’s a simple example:
|
||||
* |[<!-- language="C" -->
|
||||
* GtkWidget *dialog = gtk_dialog_new_with_buttons ("My dialog",
|
||||
* main_app_window,
|
||||
* GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
|
||||
* _("_OK"),
|
||||
* GTK_RESPONSE_ACCEPT,
|
||||
* _("_Cancel"),
|
||||
* GTK_RESPONSE_REJECT,
|
||||
* NULL);
|
||||
* GtkWidget *dialog;
|
||||
* GtkDialogFlags flags = GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT;
|
||||
* dialog = gtk_dialog_new_with_buttons ("My dialog",
|
||||
* main_app_window,
|
||||
* flags,
|
||||
* _("_OK"),
|
||||
* GTK_RESPONSE_ACCEPT,
|
||||
* _("_Cancel"),
|
||||
* GTK_RESPONSE_REJECT,
|
||||
* NULL);
|
||||
* ]|
|
||||
*
|
||||
* Return value: a new #GtkDialog
|
||||
|
||||
Reference in New Issue
Block a user