]> Pileus Git - ~andy/gtk/commitdiff
docs: Move documentation to inline comments: GtkCellView
authorGarrett Regier <alias301@gmail.com>
Sat, 6 Nov 2010 17:04:50 +0000 (18:04 +0100)
committerJavier Jardón <jjardon@gnome.org>
Sat, 6 Nov 2010 17:21:36 +0000 (18:21 +0100)
Signed-off-by: Javier Jardón <jjardon@gnome.org>
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkcellview.sgml [deleted file]
gtk/gtkcellview.c

index 5826d9018ca0d67cd68de111051cfb43b641af5e..5fa9fd446386fa89c838a8b08dd2db5fce8faaa8 100644 (file)
@@ -10,6 +10,7 @@ gtkcalendar.sgml
 gtkcelleditable.sgml
 gtkcellrenderer.sgml
 gtkcellrenderertext.sgml
+gtkcellview.sgml
 gtkcolorbutton.sgml
 gtkcolorsel.sgml
 gtkcombobox.sgml
diff --git a/docs/reference/gtk/tmpl/gtkcellview.sgml b/docs/reference/gtk/tmpl/gtkcellview.sgml
deleted file mode 100644 (file)
index 0cc0bc1..0000000
+++ /dev/null
@@ -1,143 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkCellView
-
-<!-- ##### SECTION Short_Description ##### -->
-A widget displaying a single row of a GtkTreeModel
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-A #GtkCellView displays a single row of a #GtkTreeModel, using
-cell renderers just like #GtkTreeView. #GtkCellView doesn't support
-some of the more complex features of #GtkTreeView, like cell editing
-and drag and drop.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkCellView ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### ARG GtkCellView:background ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellView:background-gdk ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellView:background-set ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellView:model ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION gtk_cell_view_new ##### -->
-<para>
-
-</para>
-
-@void: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_new_with_text ##### -->
-<para>
-
-</para>
-
-@text: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_new_with_markup ##### -->
-<para>
-
-</para>
-
-@markup: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_new_with_pixbuf ##### -->
-<para>
-
-</para>
-
-@pixbuf: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_set_model ##### -->
-<para>
-
-</para>
-
-@cell_view: 
-@model: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_get_model ##### -->
-<para>
-
-</para>
-
-@cell_view: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_set_displayed_row ##### -->
-<para>
-
-</para>
-
-@cell_view: 
-@path: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_get_displayed_row ##### -->
-<para>
-
-</para>
-
-@cell_view: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_get_size_of_row ##### -->
-<para>
-
-</para>
-
-@cell_view: 
-@path: 
-@requisition: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_cell_view_set_background_color ##### -->
-<para>
-
-</para>
-
-@cell_view: 
-@color: 
-
-
index 09840d4ecaf02e022d10b1f8c1c9deb4032d7862..77079f0c7ff72ea1a60cbb14c0b11eb9a5e603d3 100644 (file)
 #include "gtkbuildable.h"
 
 
+/**
+ * SECTION:gtkcellview
+ * @Short_description: A widget displaying a single row of a GtkTreeModel
+ * @Title: GtkCellView
+ *
+ * A #GtkCellView displays a single row of a #GtkTreeModel, using
+ * cell renderers just like #GtkTreeView. #GtkCellView doesn't support
+ * some of the more complex features of #GtkTreeView, like cell editing
+ * and drag and drop.
+ */
+
+
+
 typedef struct _GtkCellViewCellInfo GtkCellViewCellInfo;
 struct _GtkCellViewCellInfo
 {