]> Pileus Git - ~andy/gtk/commitdiff
Move documentation to inline comments: GtkFrame
authorJavier Jardón <jjardon@gnome.org>
Tue, 12 Apr 2011 23:49:30 +0000 (00:49 +0100)
committerJavier Jardón <jjardon@gnome.org>
Wed, 13 Apr 2011 01:02:43 +0000 (02:02 +0100)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkframe.sgml [deleted file]
docs/reference/gtk/tmpl/gtkmenuitem.sgml
gtk/gtkframe.c

index 1ceddcfe83bba88a85059be4eef0d8912f8146f8..6ac20b648b39c05a022663861c69695e687748ca 100644 (file)
@@ -37,6 +37,7 @@ gtkfixed.sgml
 gtkfilechooserwidget.sgml
 gtkfilefilter.sgml
 gtkfontbutton.sgml
+gtkframe.sgml
 gtkhbox.sgml
 gtkhpaned.sgml
 gtkhscale.sgml
diff --git a/docs/reference/gtk/tmpl/gtkframe.sgml b/docs/reference/gtk/tmpl/gtkframe.sgml
deleted file mode 100644 (file)
index 2ef729f..0000000
+++ /dev/null
@@ -1,160 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkFrame
-
-<!-- ##### SECTION Short_Description ##### -->
-A bin with a decorative frame and optional label
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-The frame widget is a Bin that surrounds its child
-with a decorative frame and an optional label.
-If present, the label is drawn in a gap in the
-top side of the frame. The position of the
-label can be controlled with gtk_frame_set_label_align().
-</para>
-
-<refsect2 id="GtkFrame-BUILDER-UI">
-<title>GtkFrame as GtkBuildable</title>
-<para>
-The GtkFrame implementation of the GtkBuildable interface
-supports placing a child in the label position by specifying
-"label" as the "type" attribute of a &lt;child&gt; element.
-A normal content child can be specified without specifying 
-a &lt;child&gt; type attribute.
-</para> 
-<example>
-<title>A UI definition fragment with GtkFrame</title>
-<programlisting><![CDATA[
-<object class="GtkFrame">
-  <child type="label">
-    <object class="GtkLabel" id="frame-label"/>
-  </child>
-  <child>
-    <object class="GtkEntry" id="frame-content"/>
-  </child>
-</object>
-]]></programlisting>
-</example>
-</refsect2>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkFrame ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### ARG GtkFrame:label ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkFrame:label-widget ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkFrame:label-xalign ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkFrame:label-yalign ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkFrame:shadow-type ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION gtk_frame_new ##### -->
-<para>
-</para>
-
-@label: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_frame_set_label ##### -->
-<para>
-</para>
-
-@frame: 
-@label: 
-
-
-<!-- ##### FUNCTION gtk_frame_set_label_widget ##### -->
-<para>
-
-</para>
-
-@frame: 
-@label_widget: 
-
-
-<!-- ##### FUNCTION gtk_frame_set_label_align ##### -->
-<para>
-</para>
-
-@frame: 
-@xalign: 
-@yalign: 
-
-
-<!-- ##### FUNCTION gtk_frame_set_shadow_type ##### -->
-<para>
-</para>
-
-@frame: 
-@type: 
-
-
-<!-- ##### FUNCTION gtk_frame_get_label ##### -->
-<para>
-
-</para>
-
-@frame: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_frame_get_label_align ##### -->
-<para>
-
-</para>
-
-@frame: 
-@xalign: 
-@yalign: 
-
-
-<!-- ##### FUNCTION gtk_frame_get_label_widget ##### -->
-<para>
-
-</para>
-
-@frame: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_frame_get_shadow_type ##### -->
-<para>
-
-</para>
-
-@frame: 
-@Returns: 
-
-
index 83a554f04e768e39ccf51d9c521f8d197c32d9ea..881646eef2a9458c7ce95f811568c5017be64aca 100644 (file)
@@ -324,3 +324,21 @@ Emits the "toggle_size_allocate" signal on the given item.
 @allocation: the allocation to use as signal data.
 
 
+<!-- ##### FUNCTION gtk_menu_item_get_reserve_indicator ##### -->
+<para>
+
+</para>
+
+@menu_item: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_menu_item_set_reserve_indicator ##### -->
+<para>
+
+</para>
+
+@menu_item: 
+@reserve: 
+
+
index 62e0dc160e83133b32d958dcded15853771e556b..5f201cce18b1c0f5c05b894e41506cd5fbe08ab5 100644 (file)
 #include "gtkbuildable.h"
 
 
+/**
+ * SECTION:gtkframe
+ * @Short_description: A bin with a decorative frame and optional label
+ * @Title: GtkFrame
+ *
+ * The frame widget is a Bin that surrounds its child
+ * with a decorative frame and an optional label.
+ * If present, the label is drawn in a gap in the
+ * top side of the frame. The position of the
+ * label can be controlled with gtk_frame_set_label_align().
+ *
+ * <refsect2 id="GtkFrame-BUILDER-UI">
+ * <title>GtkFrame as GtkBuildable</title>
+ * <para>
+ * The GtkFrame implementation of the GtkBuildable interface
+ * supports placing a child in the label position by specifying
+ * "label" as the "type" attribute of a &lt;child&gt; element.
+ * A normal content child can be specified without specifying
+ * a &lt;child&gt; type attribute.
+ * </para>
+ * <example>
+ * <title>A UI definition fragment with GtkFrame</title>
+ * <programlisting><![CDATA[
+ * <object class="GtkFrame">
+ *   <child type="label">
+ *     <object class="GtkLabel" id="frame-label"/>
+ *   </child>
+ *   <child>
+ *     <object class="GtkEntry" id="frame-content"/>
+ *   </child>
+ * </object>
+ * ]]></programlisting>
+ * </example>
+ * </refsect2>
+ */
+
+
 #define LABEL_PAD 1
 #define LABEL_SIDE_PAD 2