summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-14 23:34:22 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-14 23:34:22 -0500
commitc779b42476ef0e33a22c13104b0b9351c370d71c (patch)
treef6bd9f652cdedad52b54168ebbacc69f7261e541
parente179c65da037a2354cc8db4f824590014ef8bc87 (diff)
downloadgtk+-c779b42476ef0e33a22c13104b0b9351c370d71c.tar.gz
Docs: use // for comments in examples
Without sgml mode, we can't escape /* as /&ast; anymore, so just switch to // for comments in examples.
-rw-r--r--gdk/gdk.c10
-rw-r--r--gdk/gdkdisplaymanager.c4
-rw-r--r--gdk/gdkevents.c6
-rw-r--r--gdk/gdkkeys.c8
-rw-r--r--gdk/wayland/gdkdisplay-wayland.c4
-rw-r--r--gdk/x11/gdkmain-x11.c4
-rw-r--r--gtk/deprecated/gtkradioaction.c4
-rw-r--r--gtk/deprecated/gtkstock.c2
-rw-r--r--gtk/gtkaccellabel.c15
-rw-r--r--gtk/gtkcelllayout.c9
-rw-r--r--gtk/gtkcellrenderer.c2
-rw-r--r--gtk/gtkcsscustomproperty.c2
-rw-r--r--gtk/gtkcssprovider.c75
-rw-r--r--gtk/gtkdialog.c9
-rw-r--r--gtk/gtkdrawingarea.c2
-rw-r--r--gtk/gtkexpander.c4
-rw-r--r--gtk/gtkfilechooser.c12
-rw-r--r--gtk/gtkfilefilter.c4
-rw-r--r--gtk/gtkicontheme.c8
-rw-r--r--gtk/gtkimage.c9
-rw-r--r--gtk/gtkinfobar.c6
-rw-r--r--gtk/gtklabel.c6
-rw-r--r--gtk/gtkliststore.c9
-rw-r--r--gtk/gtkmain.c22
-rw-r--r--gtk/gtkmessagedialog.c4
-rw-r--r--gtk/gtkradiobutton.c8
-rw-r--r--gtk/gtkrecentfilter.c2
-rw-r--r--gtk/gtkrecentmanager.c2
-rw-r--r--gtk/gtksettings.c2
-rw-r--r--gtk/gtksocket.c5
-rw-r--r--gtk/gtkspinbutton.c17
-rw-r--r--gtk/gtktextview.c2
-rw-r--r--gtk/gtktogglebutton.c2
-rw-r--r--gtk/gtktoolpalette.c4
-rw-r--r--gtk/gtktreemodel.c24
-rw-r--r--gtk/gtktreemodelfilter.c2
-rw-r--r--gtk/gtktreemodelsort.c24
-rw-r--r--gtk/gtkwidget.c14
-rw-r--r--gtk/gtkwindow.c2
39 files changed, 179 insertions, 171 deletions
diff --git a/gdk/gdk.c b/gdk/gdk.c
index 4d9f69a6e0..98144c6d8e 100644
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -673,14 +673,14 @@ gdk_threads_dispatch_free (gpointer data)
* static gboolean
* idle_callback (gpointer data)
* {
- * /&ast; gdk_threads_enter(); would be needed for g_idle_add() &ast;/
+ * // gdk_threads_enter(); would be needed for g_idle_add()
*
* SomeWidget *self = data;
- * /&ast; do stuff with self &ast;/
+ * // do stuff with self
*
* self->idle_id = 0;
*
- * /&ast; gdk_threads_leave(); would be needed for g_idle_add() &ast;/
+ * // gdk_threads_leave(); would be needed for g_idle_add()
* return FALSE;
* }
*
@@ -688,7 +688,7 @@ gdk_threads_dispatch_free (gpointer data)
* some_widget_do_stuff_later (SomeWidget *self)
* {
* self->idle_id = gdk_threads_add_idle (idle_callback, self)
- * /&ast; using g_idle_add() here would require thread protection in the callback &ast;/
+ * // using g_idle_add() here would require thread protection in the callback
* }
*
* static void
@@ -780,7 +780,7 @@ gdk_threads_add_idle (GSourceFunc function,
* {
* SomeWidget *self = data;
*
- * /&ast; do stuff with self &ast;/
+ * // do stuff with self
*
* self->timeout_id = 0;
*
diff --git a/gdk/gdkdisplaymanager.c b/gdk/gdkdisplaymanager.c
index 19df8b0ce7..6b28b0a276 100644
--- a/gdk/gdkdisplaymanager.c
+++ b/gdk/gdkdisplaymanager.c
@@ -91,14 +91,14 @@
* #ifdef GDK_WINDOWING_X11
* if (GDK_IS_X11_DISPLAY (display))
* {
- * /&ast; make X11-specific calls here &ast;/
+ * // make X11-specific calls here
* }
* else
* #endif
* #ifdef GDK_WINDOWING_QUARTZ
* if (GDK_IS_QUARTZ_DISPLAY (display))
* {
- * /&ast; make Quartz-specific calls here &ast;/
+ * // make Quartz-specific calls here
* }
* else
* #endif
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c
index 264dd4a382..1f5bcb2af7 100644
--- a/gdk/gdkevents.c
+++ b/gdk/gdkevents.c
@@ -1678,11 +1678,11 @@ gdk_event_get_source_device (const GdkEvent *event)
*
* |[<!-- language="C" -->
* {
- * /&ast; motion_event handler &ast;/
+ * // motion_event handler
* x = motion_event->x;
* y = motion_event->y;
- * /&ast; handle (x,y) motion &ast;/
- * gdk_event_request_motions (motion_event); /&ast; handles is_hint events &ast;/
+ * // handle (x,y) motion
+ * gdk_event_request_motions (motion_event); // handles is_hint events
* }
* ]|
*
diff --git a/gdk/gdkkeys.c b/gdk/gdkkeys.c
index 468241f096..89d6142d6a 100644
--- a/gdk/gdkkeys.c
+++ b/gdk/gdkkeys.c
@@ -501,14 +501,14 @@ gdk_keymap_lookup_key (GdkKeymap *keymap,
* `<Control>plus` accelerator `<Shift>` should be masked out.
*
* |[<!-- language="C" -->
- * /&ast; We want to ignore irrelevant modifiers like ScrollLock &ast;/;
+ * // We want to ignore irrelevant modifiers like ScrollLock
* #define ALL_ACCELS_MASK (GDK_CONTROL_MASK | GDK_SHIFT_MASK | GDK_MOD1_MASK)
* gdk_keymap_translate_keyboard_state (keymap, event->hardware_keycode,
* event->state, event->group,
* &keyval, NULL, NULL, &consumed);
* if (keyval == GDK_PLUS &&
* (event->state & ~consumed & ALL_ACCELS_MASK) == GDK_CONTROL_MASK)
- * /&ast; Control was pressed &ast;/
+ * // Control was pressed
* ]|
*
* An older interpretation @consumed_modifiers was that it contained
@@ -516,10 +516,10 @@ gdk_keymap_lookup_key (GdkKeymap *keymap,
* this allowed accelerators to be stored with irrelevant consumed
* modifiers, by doing:
* |[<!-- language="C" -->
- * /&ast; XXX Don’t do this XXX &ast;/
+ * // XXX Don’t do this XXX
* if (keyval == accel_keyval &&
* (event->state & ~consumed & ALL_ACCELS_MASK) == (accel_mods & ~consumed))
- * /&ast; Accelerator was pressed &ast;/
+ * // Accelerator was pressed
* ]|
*
* However, this did not work if multi-modifier combinations were
diff --git a/gdk/wayland/gdkdisplay-wayland.c b/gdk/wayland/gdkdisplay-wayland.c
index c1af8b24bc..b7de77b3c3 100644
--- a/gdk/wayland/gdkdisplay-wayland.c
+++ b/gdk/wayland/gdkdisplay-wayland.c
@@ -52,14 +52,14 @@
* #ifdef GDK_WINDOWING_WAYLAND
* if (GDK_IS_WAYLAND_DISPLAY (display))
* {
- * /&ast; make Wayland-specific calls here &ast;/
+ * // make Wayland-specific calls here
* }
* else
* #endif
* #ifdef GDK_WINDOWING_X11
* if (GDK_IS_X11_DISPLAY (display))
* {
- * /&ast; make X11-specific calls here &ast;/
+ * // make X11-specific calls here
* }
* else
* #endif
diff --git a/gdk/x11/gdkmain-x11.c b/gdk/x11/gdkmain-x11.c
index 5f51d1e0b0..9d28b16c82 100644
--- a/gdk/x11/gdkmain-x11.c
+++ b/gdk/x11/gdkmain-x11.c
@@ -64,14 +64,14 @@
* #ifdef GDK_WINDOWING_X11
* if (GDK_IS_X11_DISPLAY (display))
* {
- * /&ast; make X11-specific calls here &ast;/
+ * // make X11-specific calls here
* }
* else
* #endif
* #ifdef GDK_WINDOWING_QUARTZ
* if (GDK_IS_QUARTZ_DISPLAY (display))
* {
- * /&ast; make Quartz-specific calls here &ast/
+ * // make Quartz-specific calls here
* }
* else
* #endif
diff --git a/gtk/deprecated/gtkradioaction.c b/gtk/deprecated/gtkradioaction.c
index b0db5dd8fe..b82a5c3dd3 100644
--- a/gtk/deprecated/gtkradioaction.c
+++ b/gtk/deprecated/gtkradioaction.c
@@ -406,7 +406,7 @@ create_menu_item (GtkAction *action)
* GSList *group = NULL;
* GtkRadioAction *action;
*
- * while (/&ast; more actions to add &ast;/)
+ * while ( ...more actions to add... /)
* {
* action = gtk_radio_action_new (...);
*
@@ -496,7 +496,7 @@ gtk_radio_action_set_group (GtkRadioAction *action,
* GtkRadioAction *action;
* GtkRadioAction *last_action;
*
- * while (/&ast; more actions to add &ast;/)
+ * while ( ...more actions to add... /)
* {
* action = gtk_radio_action_new (...);
*
diff --git a/gtk/deprecated/gtkstock.c b/gtk/deprecated/gtkstock.c
index 3b15fad3d0..874dbc7f47 100644
--- a/gtk/deprecated/gtkstock.c
+++ b/gtk/deprecated/gtkstock.c
@@ -496,7 +496,7 @@ static const GtkStockItem builtin_items [] =
* return (gchar*)g_dpgettext2 (GETTEXT_PACKAGE, msgctxt, msgid);
* }
*
- * /&ast; ... &ast;/
+ * ...
*
* gtk_stock_add (items, G_N_ELEMENTS (items));
* gtk_stock_set_translate_func ("odd-item-domain", my_translate_func, "odd items");
diff --git a/gtk/gtkaccellabel.c b/gtk/gtkaccellabel.c
index 462aeac2e4..d37a7c5a64 100644
--- a/gtk/gtkaccellabel.c
+++ b/gtk/gtkaccellabel.c
@@ -72,21 +72,20 @@
* GtkWidget *save_item;
* GtkAccelGroup *accel_group;
*
- * /&ast; Create a GtkAccelGroup and add it to the window. &ast;/
+ * // Create a GtkAccelGroup and add it to the window.
* accel_group = gtk_accel_group_new ();
* gtk_window_add_accel_group (GTK_WINDOW (window), accel_group);
*
- * /&ast; Create the menu item using the convenience function. &ast;/
+ * // Create the menu item using the convenience function.
* save_item = gtk_menu_item_new_with_label ("Save");
* gtk_widget_show (save_item);
* gtk_container_add (GTK_CONTAINER (menu), save_item);
*
- * /&ast; Now add the accelerator to the GtkMenuItem. Note that since we
- * &ast; called gtk_menu_item_new_with_label() to create the GtkMenuItem
- * &ast; the GtkAccelLabel is automatically set up to display the
- * &ast; GtkMenuItem accelerators. We just need to make sure we use
- * &ast; GTK_ACCEL_VISIBLE here.
- * &ast;/
+ * // Now add the accelerator to the GtkMenuItem. Note that since we
+ * // called gtk_menu_item_new_with_label() to create the GtkMenuItem
+ * // the GtkAccelLabel is automatically set up to display the
+ * // GtkMenuItem accelerators. We just need to make sure we use
+ * // GTK_ACCEL_VISIBLE here.
* gtk_widget_add_accelerator (save_item, "activate", accel_group,
* GDK_KEY_s, GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE);
* ]|
diff --git a/gtk/gtkcelllayout.c b/gtk/gtkcelllayout.c
index 8aa89c4d73..a666cd8e34 100644
--- a/gtk/gtkcelllayout.c
+++ b/gtk/gtkcelllayout.c
@@ -104,9 +104,8 @@
* GtkCellRenderer *cell;
*
* cell = gtk_cell_renderer_pixbuf_new ();
- * /&ast; The following call causes the default cell area for combo boxes,
- * &ast; a GtkCellAreaBox, to be instantiated
- * &ast;/
+ * // The following call causes the default cell area for combo boxes,
+ * // a GtkCellAreaBox, to be instantiated
* gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (b), cell, FALSE);
* ...
* }
@@ -114,9 +113,7 @@
* GtkWidget *
* my_combo_box_new (GtkCellArea *area)
* {
- * /&ast; This call is going to cause a warning
- * &ast; about area being ignored
- * &ast;/
+ * // This call is going to cause a warning about area being ignored
* return g_object_new (MY_TYPE_COMBO_BOX, "cell-area", area, NULL);
* }
* ]|
diff --git a/gtk/gtkcellrenderer.c b/gtk/gtkcellrenderer.c
index 5c21cb6a11..3afcabc32e 100644
--- a/gtk/gtkcellrenderer.c
+++ b/gtk/gtkcellrenderer.c
@@ -259,7 +259,7 @@ gtk_cell_renderer_class_init (GtkCellRendererClass *class)
* {
* GtkEntry *entry = GTK_ENTRY (editable);
*
- * /&ast; ... create a GtkEntryCompletion &ast;/
+ * // ... create a GtkEntryCompletion
*
* gtk_entry_set_completion (entry, completion);
* }
diff --git a/gtk/gtkcsscustomproperty.c b/gtk/gtkcsscustomproperty.c
index 69274dcf78..31e516bd77 100644
--- a/gtk/gtkcsscustomproperty.c
+++ b/gtk/gtkcsscustomproperty.c
@@ -200,7 +200,7 @@ gtk_css_custom_property_create_initial_value (GParamSpec *pspec)
* the engine property, either in a previous rule or within the same
* one.
* |[
- * &ast; {
+ * * {
* engine: someengine;
* -SomeEngine-custom-property: 2;
* }
diff --git a/gtk/gtkcssprovider.c b/gtk/gtkcssprovider.c
index fe9be91666..745981075c 100644
--- a/gtk/gtkcssprovider.c
+++ b/gtk/gtkcssprovider.c
@@ -115,38 +115,47 @@
* the two selectors. E.g. `GtkNotebook > GtkLabel` matches
* GtkLabel widgets that are direct children of a GtkNotebook.
*
- * An example of widget classes and names in selectors:
+ * ## Examples of widget classes and names in selectors
*
+ * Theme labels that are descendants of a window:
* |[
- * /&ast; Theme labels that are descendants of a window &ast;/
* GtkWindow GtkLabel {
* background-color: #898989
* }
+ * ]|
*
- * /&ast; Theme notebooks, and anything that’s within these &ast;/
+ * Theme notebooks, and anything that’s within these:
+ * |[
* GtkNotebook {
* background-color: #a939f0
* }
+ * ]|
*
- * /&ast; Theme combo boxes, and entries that
- * are direct children of a notebook &ast;/
+ * Theme combo boxes, and entries that are direct children of a notebook:
+ * |[
* GtkComboBox,
* GtkNotebook > GtkEntry {
* color: @fg_color;
* background-color: #1209a2
* }
+ * ]|
*
- * /&ast; Theme any widget within a GtkBin &ast;/
+ * Theme any widget within a GtkBin:
+ * |[
* GtkBin * {
* font: Sans 20
* }
+ * ]|
*
- * /&ast; Theme a label named title-label &ast;/
+ * Theme a label named title-label:
+ * |[
* GtkLabel#title-label {
* font: Sans 15
* }
+ * ]|
*
- * /&ast; Theme any widget named main-entry &ast;/
+ * Theme any widget named main-entry:
+ * |[
* #main-entry {
* background-color: #f0a810
* }
@@ -166,14 +175,17 @@
* a string as a widget class name if it contains any uppercase characters
* (which should work for more widgets with names like GtkLabel).
*
- * An example for style classes in selectors:
+ * ## Examples for style classes in selectors
+ *
+ * Theme all widgets defining the class entry:
* |[
- * /&ast; Theme all widgets defining the class entry &ast;/
* .entry {
* color: #39f1f9;
* }
+ * ]|
*
- * /&ast; Theme spinbuttons’ entry &ast;/
+ * Theme spinbuttons’ entry:
+ * |[
* GtkSpinButton.entry {
* color: #900185
* }
@@ -197,20 +209,25 @@
* for a list of all regions
* used by GTK+ widgets.
*
- * An example for regions in selectors:
+ * ## Examples for regions in selectors
+ *
+ * Theme any label within a notebook:
* |[
- * /&ast; Theme any label within a notebook &ast;/
* GtkNotebook GtkLabel {
* color: #f90192;
* }
+ * ]|
*
- * /&ast; Theme labels within notebook tabs &ast;/
+ * Theme labels within notebook tabs:
+ * |[
* GtkNotebook tab GtkLabel {
* color: #703910;
* }
+ * ]|
*
- * /&ast; Theme labels in the any first notebook
- * tab, both selectors are equivalent &ast;/
+ * Theme labels in the any first notebook tab, both selectors are
+ * equivalent:
+ * |[
* GtkNotebook tab:nth-child(first) GtkLabel,
* GtkNotebook tab:first-child GtkLabel {
* color: #89d012;
@@ -223,37 +240,47 @@
* are :active, :prelight (or :hover), :insensitive, :selected, :focused
* and :inconsistent.
*
- * And example for styling specific widget states:
+ * ## Examples for styling specific widget states
+ *
+ * Theme active (pressed) buttons:
* |[
- * /&ast; Theme active (pressed) buttons &ast;/
* GtkButton:active {
* background-color: #0274d9;
* }
+ * ]|
*
- * /&ast; Theme buttons with the mouse pointer on it,
- * both are equivalent &ast;/
+ * Theme buttons with the mouse pointer on it, both are equivalent:
+ * |[
* GtkButton:hover,
* GtkButton:prelight {
* background-color: #3085a9;
* }
+ * ]|
*
- * /&ast; Theme insensitive widgets, both are equivalent &ast;/
+ * Theme insensitive widgets, both are equivalent:
+ * |[
* :insensitive,
* *:insensitive {
* background-color: #320a91;
* }
+ * ]|
*
- * /&ast; Theme selection colors in entries &ast;/
+ * Theme selection colors in entries:
+ * |[
* GtkEntry:selected {
* background-color: #56f9a0;
* }
+ * ]|
*
- * /&ast; Theme focused labels &ast;/
+ * Theme focused labels:
+ * |[
* GtkLabel:focused {
* background-color: #b4940f;
* }
+ * ]|
*
- * /&ast; Theme inconsistent checkbuttons &ast;/
+ * Theme inconsistent checkbuttons:
+ * |[
* GtkCheckButton:inconsistent {
* background-color: #20395a;
* }
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c
index 806f8ed9d7..5eb83b9da4 100644
--- a/gtk/gtkdialog.c
+++ b/gtk/gtkdialog.c
@@ -100,14 +100,14 @@
*
* An example for simple GtkDialog usage:
* |[<!-- language="C" -->
- * /&ast; Function to open a dialog box with a message &ast;/
+ * // Function to open a dialog box with a message
* void
* quick_message (GtkWindow *parent, gchar *message)
* {
* GtkWidget *dialog, *label, *content_area;
* GtkDialogFlags flags;
*
- * /&ast; Create the widgets &ast;/
+ * // Create the widgets
* flags = GTK_DIALOG_DESTROY_WITH_PARENT;
* dialog = gtk_dialog_new_with_buttons ("Message",
* parent,
@@ -118,15 +118,14 @@
* content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
* label = gtk_label_new (message);
*
- * /&ast; Ensure that the dialog box is destroyed when the user
- * responds &ast;/
+ * // Ensure that the dialog box is destroyed when the user responds
*
* g_signal_connect_swapped (dialog,
* "response",
* G_CALLBACK (gtk_widget_destroy),
* dialog);
*
- * /&ast; Add the label, and show everything we’ve added &ast;/
+ * // Add the label, and show everything we’ve added
*
* gtk_container_add (GTK_CONTAINER (content_area), label);
* gtk_widget_show_all (dialog);
diff --git a/gtk/gtkdrawingarea.c b/gtk/gtkdrawingarea.c
index 6901216065..4be0756ea9 100644
--- a/gtk/gtkdrawingarea.c
+++ b/gtk/gtkdrawingarea.c
@@ -86,7 +86,7 @@
* return FALSE;
* }
* [...]
- * GtkWidget &ast;drawing_area = gtk_drawing_area_new ();
+ * GtkWidget *drawing_area = gtk_drawing_area_new ();
* gtk_widget_set_size_request (drawing_area, 100, 100);
* g_signal_connect (G_OBJECT (drawing_area), "draw",
* G_CALLBACK (draw_callback), NULL);
diff --git a/gtk/gtkexpander.c b/gtk/gtkexpander.c
index 82363e2cc1..ee5cbe9e21 100644
--- a/gtk/gtkexpander.c
+++ b/gtk/gtkexpander.c
@@ -60,11 +60,11 @@
*
* if (gtk_expander_get_expanded (expander))
* {
- * /&ast; Show or create widgets &ast;/
+ * // Show or create widgets
* }
* else
* {
- * /&ast; Hide or destroy widgets &ast;/
+ * // Hide or destroy widgets
* }
* }
* ]|
diff --git a/gtk/gtkfilechooser.c b/gtk/gtkfilechooser.c
index dd49ed1c86..4df4afb35c 100644
--- a/gtk/gtkfilechooser.c
+++ b/gtk/gtkfilechooser.c
@@ -722,12 +722,12 @@ gtk_file_chooser_get_filename (GtkFileChooser *chooser)
* |[<!-- language="C" -->
* if (document_is_new)
* {
- * /&ast; the user just created a new document &ast;/
+ * // the user just created a new document
* gtk_file_chooser_set_current_name (chooser, "Untitled document");
* }
* else
* {
- * /&ast; the user edited an existing document &ast;/
+ * // the user edited an existing document
* gtk_file_chooser_set_filename (chooser, existing_filename);
* }
* ]|
@@ -1074,12 +1074,12 @@ gtk_file_chooser_get_uri (GtkFileChooser *chooser)
* |[<!-- language="C" -->
* if (document_is_new)
* {
- * /&ast; the user just created a new document &ast;/
+ * // the user just created a new document
* gtk_file_chooser_set_current_name (chooser, "Untitled document");
* }
* else
* {
- * /&ast; the user edited an existing document &ast;/
+ * // the user edited an existing document
* gtk_file_chooser_set_uri (chooser, existing_uri);
* }
* ]|
@@ -1440,13 +1440,13 @@ gtk_file_chooser_get_files (GtkFileChooser *chooser)
* |[<!-- language="C" -->
* if (document_is_new)
* {
- * /&ast; the user just created a new document &ast;/
+ * // the user just created a new document
* gtk_file_chooser_set_current_folder_file (chooser, default_file_for_saving);
* gtk_file_chooser_set_current_name (chooser, "Untitled document");
* }
* else
* {
- * /&ast; the user edited an existing document &ast;/
+ * // the user edited an existing document
* gtk_file_chooser_set_file (chooser, existing_file);
* }
* ]|
diff --git a/gtk/gtkfilefilter.c b/gtk/gtkfilefilter.c
index 7311e10bd2..cebc0d119e 100644
--- a/gtk/gtkfilefilter.c
+++ b/gtk/gtkfilefilter.c
@@ -32,7 +32,7 @@
* types; e.g. a filter for text/plain also matches a file with mime
* type application/rtf, since application/rtf is a subclass of
* text/plain. Note that #GtkFileFilter allows wildcards for the
- * subtype of a mime type, so you can e.g. filter for image/&ast;.
+ * subtype of a mime type, so you can e.g. filter for image/\*.
*
* Normally, filters are used by adding them to a #GtkFileChooser,
* see gtk_file_chooser_add_filter(), but it is also possible
@@ -52,7 +52,7 @@
* <object class="GtkFileFilter">
* <mime-types>
* <mime-type>text/plain</mime-type>
- * <mime-type>image/&ast;</mime-type>
+ * <mime-type>image/ *</mime-type>
* </mime-types>
* <patterns>
* <pattern>*.txt</pattern>
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c
index c69df2904d..e17fa3dfcb 100644
--- a/gtk/gtkicontheme.c
+++ b/gtk/gtkicontheme.c
@@ -120,9 +120,9 @@
*
* icon_theme = gtk_icon_theme_get_default ();
* pixbuf = gtk_icon_theme_load_icon (icon_theme,
- * "my-icon-name", /&ast; icon name &ast;/
- * 48, /&ast; icon size &ast;/
- * 0, /&ast; flags &ast;/
+ * "my-icon-name", // icon name
+ * 48, // icon size
+ * 0, // flags
* &error);
* if (!pixbuf)
* {
@@ -131,7 +131,7 @@
* }
* else
* {
- * /&ast; Use the pixbuf &ast;/
+ * // Use the pixbuf
* g_object_unref (pixbuf);
* }
* ]|
diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c
index ffa4ceabef..e6e0062e5b 100644
--- a/gtk/gtkimage.c
+++ b/gtk/gtkimage.c
@@ -86,12 +86,9 @@
* g_print ("Event box clicked at coordinates %f,%f\n",
* event->x, event->y);
*
- * /&ast; Returning TRUE means we handled the event,
- * &ast; so the signal emission should be stopped
- * &ast; (don’t call any further callbacks that
- * &ast; may be connected). Return FALSE to
- * &ast; continue invoking callbacks.
- * &ast;/
+ * // Returning TRUE means we handled the event, so the signal
+ * // emission should be stopped (don’t call any further callbacks
+ * // that may be connected). Return FALSE to continue invoking callbacks.
* return TRUE;
* }
*
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c
index 1b485bcb47..804776d80b 100644
--- a/gtk/gtkinfobar.c
+++ b/gtk/gtkinfobar.c
@@ -74,7 +74,7 @@
*
* A simple example for using a GtkInfoBar:
* |[<!-- language="C" -->
- * /&ast; set up info bar &ast;/
+ * // set up info bar
* GtkWidget *widget;
* GtkInfoBar *bar;
*
@@ -98,9 +98,9 @@
* widget,
* 0, 2, 1, 1);
*
- * /&ast; ... &ast;/
+ * ...
*
- * /&ast; show an error message &ast;/
+ * // show an error message
* gtk_label_set_text (GTK_LABEL (message_label), message);
* gtk_info_bar_set_message_type (bar,
* GTK_MESSAGE_ERROR);
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c
index 10f6c8cae0..27e202ebf9 100644
--- a/gtk/gtklabel.c
+++ b/gtk/gtklabel.c
@@ -107,7 +107,7 @@
* the label is inside a button:
*
* |[<!-- language="C" -->
- * /&ast; Pressing Alt+H will activate this button &ast;/
+ * // Pressing Alt+H will activate this button
* button = gtk_button_new ();
* label = gtk_label_new_with_mnemonic ("_Hello");
* gtk_container_add (GTK_CONTAINER (button), label);
@@ -117,7 +117,7 @@
* already inside:
*
* |[<!-- language="C" -->
- * /&ast; Pressing Alt+H will activate this button &ast;/
+ * // Pressing Alt+H will activate this button
* button = gtk_button_new_with_mnemonic ("_Hello");
* ]|
*
@@ -126,7 +126,7 @@
* gtk_label_set_mnemonic_widget():
*
* |[<!-- language="C" -->
- * /&ast; Pressing Alt+H will focus the entry &ast;/
+ * // Pressing Alt+H will focus the entry
* entry = gtk_entry_new ();
* label = gtk_label_new_with_mnemonic ("_Hello");
* gtk_label_set_mnemonic_widget (GTK_LABEL (label), entry);
diff --git a/gtk/gtkliststore.c b/gtk/gtkliststore.c
index 204fcbc448..fcb1300b74 100644
--- a/gtk/gtkliststore.c
+++ b/gtk/gtkliststore.c
@@ -79,7 +79,7 @@
*
* some_data = get_some_data (i);
*
- * /&ast; Add a new row to the model &ast;/
+ * // Add a new row to the model
* gtk_list_store_append (list_store, &iter);
* gtk_list_store_set (list_store, &iter,
* COLUMN_STRING, some_data,
@@ -87,13 +87,12 @@
* COLUMN_BOOLEAN, FALSE,
* -1);
*
- * /&ast; As the store will keep a copy of
- * &ast; the string internally, we free some_data.
- * &ast;/
+ * // As the store will keep a copy of the string internally,
+ * // we free some_data.
* g_free (some_data);
* }
*
- * /&ast; Modify a particular row &ast;/
+ * // Modify a particular row
* path = gtk_tree_path_new_from_string ("4");
* gtk_tree_model_get_iter (GTK_TREE_MODEL (list_store),
* &iter,
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index c37d900dc2..684e152e7c 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -59,27 +59,27 @@
* int
* main (int argc, char **argv)
* {
- * /&ast; Initialize i18n support with
- * bindtextdomain(), etc. &ast;/
+ * // Initialize i18n support with bindtextdomain(), etc.
+ *
* ...
*
- * /&ast; Initialize the widget set &ast;/
+ * // Initialize the widget set
* gtk_init (&argc, &argv);
*
- * /&ast; Create the main window &ast;/
+ * // Create the main window
* mainwin = gtk_window_new (GTK_WINDOW_TOPLEVEL);
*
- * /&ast; Set up our GUI elements &ast;/
+ * // Set up our GUI elements
+ *
* ...
*
- * /&ast; Show the application window &ast;/
+ * // Show the application window
* gtk_widget_show_all (mainwin);
*
- * /&ast; Enter the main event loop, and
- * wait for user interaction &ast;/
+ * // Enter the main event loop, and wait for user interaction
* gtk_main ();
*
- * /&ast; The user lost interest &ast;/
+ * // The user lost interest
* return 0;
* }
* ]|
@@ -1251,12 +1251,12 @@ gtk_main_quit (void)
* ## Updating the UI during a long computation
*
* |[<!-- language="C" -->
- * /&ast; computation going on... &ast;/
+ * // computation going on...
*
* while (gtk_events_pending ())
* gtk_main_iteration ();
*
- * /&ast; ...computation continued &ast;/
+ * // ...computation continued
* ]|
*
* Returns: %TRUE if any events are pending, %FALSE otherwise
diff --git a/gtk/gtkmessagedialog.c b/gtk/gtkmessagedialog.c
index e1180a1be6..1a90e3e211 100644
--- a/gtk/gtkmessagedialog.c
+++ b/gtk/gtkmessagedialog.c
@@ -84,8 +84,8 @@
* filename,
* g_strerror (errno));
*
- * /&ast; Destroy the dialog when the user responds to it
- * (e.g. clicks a button) &ast;/
+ * // Destroy the dialog when the user responds to it
+ * // (e.g. clicks a button)
*
* g_signal_connect_swapped (dialog, "response",
* G_CALLBACK (gtk_widget_destroy),
diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c
index a80175c094..8fcd760197 100644
--- a/gtk/gtkradiobutton.c
+++ b/gtk/gtkradiobutton.c
@@ -78,17 +78,17 @@
* box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
* gtk_box_set_homogeneous (GTK_BOX (box), TRUE);
*
- * /&ast; Create a radio button with a GtkEntry widget &ast;/
+ * // Create a radio button with a GtkEntry widget
* radio1 = gtk_radio_button_new (NULL);
* entry = gtk_entry_new ();
* gtk_container_add (GTK_CONTAINER (radio1), entry);
*
*
- * /&ast; Create a radio button with a label &ast;/
+ * // Create a radio button with a label
* radio2 = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio1),
* "I’m the second radio button.");
*
- * /&ast; Pack them into a box, then show all the widgets &ast;/
+ * // Pack them into a box, then show all the widgets
* gtk_box_pack_start (GTK_BOX (box), radio1, TRUE, TRUE, 2);
* gtk_box_pack_start (GTK_BOX (box), radio2, TRUE, TRUE, 2);
* gtk_container_add (GTK_CONTAINER (window), box);
@@ -358,7 +358,7 @@ gtk_radio_button_set_group (GtkRadioButton *radio_button,
* GtkRadioButton *radio_button;
* GtkRadioButton *last_button;
*
- * while (/&ast; more buttons to add &ast;/)
+ * while ( ...more buttons to add... )
* {
* radio_button = gtk_radio_button_new (...);
*
diff --git a/gtk/gtkrecentfilter.c b/gtk/gtkrecentfilter.c
index e7f2bdc2f1..4f46073471 100644
--- a/gtk/gtkrecentfilter.c
+++ b/gtk/gtkrecentfilter.c
@@ -32,7 +32,7 @@
* types; e.g. a filter for text/plain also matches a file with mime
* type application/rtf, since application/rtf is a subclass of text/plain.
* Note that #GtkRecentFilter allows wildcards for the subtype of a
- * mime type, so you can e.g. filter for image/&ast;.
+ * mime type, so you can e.g. filter for image/\*.
*
* Normally, filters are used by adding them to a #GtkRecentChooser,
* see gtk_recent_chooser_add_filter(), but it is also possible to
diff --git a/gtk/gtkrecentmanager.c b/gtk/gtkrecentmanager.c
index caa48ad867..dab8583da0 100644
--- a/gtk/gtkrecentmanager.c
+++ b/gtk/gtkrecentmanager.c
@@ -67,7 +67,7 @@
* }
* else
* {
- * /&ast; Use the info object &ast;/
+ * // Use the info object
* gtk_recent_info_unref (info);
* }
* ]|
diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c
index d2daf83b34..52b7debb5c 100644
--- a/gtk/gtksettings.c
+++ b/gtk/gtksettings.c
@@ -89,7 +89,7 @@
* |[<!-- language="C" -->
* gtk_init (&argc, &argv);
*
- * /&ast; make sure the type is realized &ast;/
+ * // make sure the type is realized
* g_type_class_unref (g_type_class_ref (GTK_TYPE_IMAGE_MENU_ITEM));
*
* g_object_set (gtk_settings_get_default (), "gtk-enable-animations", FALSE, NULL);
diff --git a/gtk/gtksocket.c b/gtk/gtksocket.c
index 1ffc94e754..7250916bae 100644
--- a/gtk/gtksocket.c
+++ b/gtk/gtksocket.c
@@ -75,9 +75,8 @@
* gtk_widget_show (socket);
* gtk_container_add (GTK_CONTAINER (parent), socket);
*
- * /&ast; The following call is only necessary if one of
- * * the ancestors of the socket is not yet visible.
- * &ast;/
+ * // The following call is only necessary if one of
+ * // the ancestors of the socket is not yet visible.
* gtk_widget_realize (socket);
* g_print ("The ID of the sockets window is %#x\n",
* gtk_socket_get_id (socket));
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c
index 999ce595d1..b3b91d7195 100644
--- a/gtk/gtkspinbutton.c
+++ b/gtk/gtkspinbutton.c
@@ -81,10 +81,8 @@
* ## Using a GtkSpinButton to get an integer
*
* |[<!-- language="C" -->
- * /&ast; Provides a function to retrieve an integer value from a
- * &ast; GtkSpinButton and creates a spin button to model percentage
- * &ast; values.
- * &ast;/
+ * // Provides a function to retrieve an integer value from a GtkSpinButton
+ * // and creates a spin button to model percentage values.
*
* gint
* grab_int_value (GtkSpinButton *button,
@@ -105,7 +103,7 @@
* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
* gtk_container_set_border_width (GTK_CONTAINER (window), 5);
*
- * /&ast; creates the spinbutton, with no decimal places &ast;/
+ * // creates the spinbutton, with no decimal places
* button = gtk_spin_button_new (adjustment, 1.0, 0);
* gtk_container_add (GTK_CONTAINER (window), button);
*
@@ -116,9 +114,8 @@
* ## Using a GtkSpinButton to get a floating point value
*
* |[<!-- language="C" -->
- * /&ast; Provides a function to retrieve a floating point value from a
- * &ast; GtkSpinButton, and creates a high precision spin button.
- * &ast;/
+ * // Provides a function to retrieve a floating point value from a
+ * // GtkSpinButton, and creates a high precision spin button.
*
* gfloat
* grab_float_value (GtkSpinButton *button,
@@ -138,7 +135,7 @@
* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
* gtk_container_set_border_width (GTK_CONTAINER (window), 5);
*
- * /&ast; creates the spinbutton, with three decimal places &ast;/
+ * // creates the spinbutton, with three decimal places
* button = gtk_spin_button_new (adjustment, 0.001, 3);
* gtk_container_add (GTK_CONTAINER (window), button);
*
@@ -457,7 +454,7 @@ gtk_spin_button_class_init (GtkSpinButtonClass *class)
* The ::output signal can be used to change to formatting
* of the value that is displayed in the spin buttons entry.
* |[<!-- language="C" -->
- * /&ast; show leading zeros &ast;/
+ * // show leading zeros
* static gboolean
* on_output (GtkSpinButton *spin,
* gpointer data)
diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c
index 922be64f90..ee3b9b8ea6 100644
--- a/gtk/gtktextview.c
+++ b/gtk/gtktextview.c
@@ -7395,7 +7395,7 @@ gtk_text_view_reset_im_context (GtkTextView *text_view)
* return TRUE;
* }
*
- * /&ast; Do some stuff &ast;/
+ * // Do some stuff
*
* return GTK_WIDGET_CLASS (gtk_foo_bar_parent_class)->key_press_event (widget, event);
* }
diff --git a/gtk/gtktogglebutton.c b/gtk/gtktogglebutton.c
index 31c84be324..e31406af70 100644
--- a/gtk/gtktogglebutton.c
+++ b/gtk/gtktogglebutton.c
@@ -72,7 +72,7 @@
* text = "Hi, i’m a toggle button.";
* toggle1 = gtk_toggle_button_new_with_label (text);
*
- * /&ast; Makes this toggle button invisible &ast;/
+ * // Makes this toggle button invisible
* gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle1),
* TRUE);
*
diff --git a/gtk/gtktoolpalette.c b/gtk/gtktoolpalette.c
index 385557eaba..8dd341eba7 100644
--- a/gtk/gtktoolpalette.c
+++ b/gtk/gtktoolpalette.c
@@ -86,14 +86,14 @@
* GtkWidget *palette;
* GtkWidget *item;
*
- * /&ast; Get the dragged item &ast;/
+ * // Get the dragged item
* palette = gtk_widget_get_ancestor (gtk_drag_get_source_widget (context),
* GTK_TYPE_TOOL_PALETTE);
* if (palette != NULL)
* item = gtk_tool_palette_get_drag_item (GTK_TOOL_PALETTE (palette),
* selection);
*
- * /&ast; Do something with item &ast;/
+ * // Do something with item
* }
*
* GtkWidget *target, palette;
diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c
index 3ee9cab003..874de5fe57 100644
--- a/gtk/gtktreemodel.c
+++ b/gtk/gtktreemodel.c
@@ -116,23 +116,22 @@
* ## Acquiring a #GtkTreeIter-struct
*
* |[<!-- language="C" -->
- * /&ast; Three ways of getting the iter pointing to the
- * location &ast;/
+ * // Three ways of getting the iter pointing to the location
* GtkTreePath *path;
* GtkTreeIter iter;
* GtkTreeIter parent_iter;
*
- * /&ast; get the iterator from a string &ast;/
+ * // get the iterator from a string
* gtk_tree_model_get_iter_from_string (model,
* &iter,
* "3:2:5");
*
- * /&ast; get the iterator from a path &ast;/
+ * // get the iterator from a path
* path = gtk_tree_path_new_from_string ("3:2:5");
* gtk_tree_model_get_iter (model, &iter, path);
* gtk_tree_path_free (path);
*
- * /&ast; walk the tree to find the iterator &ast;/
+ * // walk the tree to find the iterator
* gtk_tree_model_iter_nth_child (model, &iter,
* NULL, 3);
* parent_iter = iter;
@@ -166,17 +165,16 @@
* gboolean valid;
* gint row_count = 0;
*
- * /&ast; make a new list_store &ast;/
+ * // make a new list_store
* list_store = gtk_list_store_new (N_COLUMNS,
* G_TYPE_STRING,
* G_TYPE_INT);
*
- * /&ast; Fill the list store with data &ast;/
+ * // Fill the list store with data
* populate_model (list_store);
*
- * /&ast; Get the first iter in the list, check it is
- * valid and walk through the list, reading each row.
- * &ast;/
+ * // Get the first iter in the list, check it is valid and walk
+ * // through the list, reading each row.
*
* valid = gtk_tree_model_get_iter_first (list_store,
* &iter);
@@ -185,15 +183,13 @@
* gchar *str_data;
* gint int_data;
*
- * /&ast; Make sure you terminate calls to
- * &ast; gtk_tree_model_get() with a “-1” value
- * &ast;/
+ * // Make sure you terminate calls to gtk_tree_model_get() with a “-1” value
* gtk_tree_model_get (list_store, &iter,
* STRING_COLUMN, &str_data,
* INT_COLUMN, &int_data,
* -1);
*
- * /&ast; Do something with the data &ast;/
+ * // Do something with the data
* g_print ("Row %d: (%s,%d)\n",
* row_count, str_data, int_data);
* g_free (str_data);
diff --git a/gtk/gtktreemodelfilter.c b/gtk/gtktreemodelfilter.c
index 17d945af4b..3acd21aa04 100644
--- a/gtk/gtktreemodelfilter.c
+++ b/gtk/gtktreemodelfilter.c
@@ -3830,7 +3830,7 @@ gtk_tree_model_filter_get_model (GtkTreeModelFilter *filter)
* GtkTreeIter *iter,
* gpointer data)
* {
- * /&ast; Visible if row is non-empty and first column is “HI” &ast;/
+ * // Visible if row is non-empty and first column is “HI”
* gchar *str;
* gboolean visible = FALSE;
*
diff --git a/gtk/gtktreemodelsort.c b/gtk/gtktreemodelsort.c
index 05373acf45..368cbd2534 100644
--- a/gtk/gtktreemodelsort.c
+++ b/gtk/gtktreemodelsort.c
@@ -60,18 +60,18 @@
* GtkTreeModel *sort_model2;
* GtkTreeModel *child_model;
*
- * /&ast; get the child model &ast;/
+ * // get the child model
* child_model = get_my_model ();
*
- * /&ast; Create the first tree &ast;/
+ * // Create the first tree
* sort_model1 = gtk_tree_model_sort_new_with_model (child_model);
* tree_view1 = gtk_tree_view_new_with_model (sort_model1);
*
- * /&ast; Create the second tree &ast;/
+ * // Create the second tree
* sort_model2 = gtk_tree_model_sort_new_with_model (child_model);
* tree_view2 = gtk_tree_view_new_with_model (sort_model2);
*
- * /&ast; Now we can sort the two models independently &ast;/
+ * // Now we can sort the two models independently
* gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (sort_model1),
* COLUMN_1, GTK_SORT_ASCENDING);
* gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (sort_model2),
@@ -98,15 +98,14 @@
* char *some_data = NULL;
* char *modified_data;
*
- * /&ast; Get the current selected row and the model. &ast;/
+ * // Get the current selected row and the model.
* if (! gtk_tree_selection_get_selected (selection,
* &sort_model,
* &sort_iter))
* return;
*
- * /&ast; Look up the current value on the selected row and get
- * &ast; a new value to change it to.
- * &ast;/
+ * // Look up the current value on the selected row and get
+ * // a new value to change it to.
* gtk_tree_model_get (GTK_TREE_MODEL (sort_model), &sort_iter,
* COLUMN_1, &some_data,
* -1);
@@ -114,15 +113,14 @@
* modified_data = change_the_data (some_data);
* g_free (some_data);
*
- * /&ast; Get an iterator on the child model, instead of the sort model. &ast;/
+ * // Get an iterator on the child model, instead of the sort model.
* gtk_tree_model_sort_convert_iter_to_child_iter (GTK_TREE_MODEL_SORT (sort_model),
* &child_iter,
* &sort_iter);
*
- * /&ast; Get the child model and change the value of the row. In this
- * &ast; example, the child model is a GtkListStore. It could be any other
- * &ast; type of model, though.
- * &ast;/
+ * // Get the child model and change the value of the row. In this
+ * // example, the child model is a GtkListStore. It could be any other
+ * // type of model, though.
* child_model = gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (sort_model));
* gtk_list_store_set (GTK_LIST_STORE (child_model), &child_iter,
* COLUMN_1, &modified_data,
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c
index 838e4ca8b3..e44e60341f 100644
--- a/gtk/gtkwidget.c
+++ b/gtk/gtkwidget.c
@@ -2988,10 +2988,10 @@ G_GNUC_END_IGNORE_DEPRECATIONS
* {
* private_data->suggested_action = 0;
*
- * /&ast; We are getting this data due to a request in
- * drag_motion, rather than due to a request in drag_drop,
- * so we are just supposed to call gdk_drag_status(), not
- * actually paste in the data. &ast;/
+ * // We are getting this data due to a request in drag_motion,
+ * // rather than due to a request in drag_drop, so we are just
+ * // supposed to call gdk_drag_status(), not actually paste in
+ * // the data.
*
* str = gtk_selection_data_get_text (selection_data);
* if (!data_is_acceptable (str))
@@ -3003,7 +3003,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
* }
* else
* {
- * /&ast; accept the drop &ast;/
+ * // accept the drop
* }
* }
* ]|
@@ -3127,7 +3127,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
* {
* GdkDragAction action;
*
- * /&ast; handle data here &ast;/
+ * // handle data here
*
* action = gdk_drag_context_get_selected_action (context);
* if (action == GDK_ACTION_ASK)
@@ -10782,7 +10782,7 @@ gtk_widget_add_device_events (GtkWidget *widget,
* GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
* if (gtk_widget_is_toplevel (toplevel))
* {
- * /&ast; Perform action on toplevel. &ast;/
+ * // Perform action on toplevel.
* }
* ]|
*
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index 7d28635d73..dd18922871 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -11394,7 +11394,7 @@ gtk_XParseGeometry (const char *string,
* static void
* fill_with_content (GtkWidget *vbox)
* {
- * /&ast; fill with content... &ast;/
+ * // fill with content...
* }
*
* int