Undoccommentize gtktreemenu.c

This commit is contained in:
Matthias Clasen 2011-01-06 08:23:18 -05:00
parent 6619ac35e3
commit f35c3fd5f7

View File

@ -23,7 +23,7 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
/** /*
* SECTION:gtktreemenu * SECTION:gtktreemenu
* @Short_Description: A GtkMenu automatically created from a #GtkTreeModel * @Short_Description: A GtkMenu automatically created from a #GtkTreeModel
* @Title: GtkTreeMenu * @Title: GtkTreeMenu
@ -253,7 +253,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
widget_class->get_preferred_width = gtk_tree_menu_get_preferred_width; widget_class->get_preferred_width = gtk_tree_menu_get_preferred_width;
widget_class->get_preferred_height = gtk_tree_menu_get_preferred_height; widget_class->get_preferred_height = gtk_tree_menu_get_preferred_height;
/** /*
* GtkTreeMenu::menu-activate: * GtkTreeMenu::menu-activate:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @path: the #GtkTreePath string for the item which was activated * @path: the #GtkTreePath string for the item which was activated
@ -274,7 +274,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
_gtk_marshal_VOID__STRING, _gtk_marshal_VOID__STRING,
G_TYPE_NONE, 1, G_TYPE_STRING); G_TYPE_NONE, 1, G_TYPE_STRING);
/** /*
* GtkTreeMenu:model: * GtkTreeMenu:model:
* *
* The #GtkTreeModel from which the menu is constructed. * The #GtkTreeModel from which the menu is constructed.
@ -289,7 +289,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
GTK_TYPE_TREE_MODEL, GTK_TYPE_TREE_MODEL,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
/** /*
* GtkTreeMenu:root: * GtkTreeMenu:root:
* *
* The #GtkTreePath that is the root for this menu, or %NULL. * The #GtkTreePath that is the root for this menu, or %NULL.
@ -313,7 +313,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
GTK_TYPE_TREE_PATH, GTK_TYPE_TREE_PATH,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
/** /*
* GtkTreeMenu:cell-area: * GtkTreeMenu:cell-area:
* *
* The #GtkCellArea used to render cells in the menu items. * The #GtkCellArea used to render cells in the menu items.
@ -331,7 +331,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
GTK_TYPE_CELL_AREA, GTK_TYPE_CELL_AREA,
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
/** /*
* GtkTreeMenu:tearoff: * GtkTreeMenu:tearoff:
* *
* Specifies whether this menu comes with a leading tearoff menu item * Specifies whether this menu comes with a leading tearoff menu item
@ -346,7 +346,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
FALSE, FALSE,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
/** /*
* GtkTreeMenu:wrap-width: * GtkTreeMenu:wrap-width:
* *
* If wrap-width is set to a positive value, the list will be * If wrap-width is set to a positive value, the list will be
@ -365,7 +365,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
0, 0,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
/** /*
* GtkTreeMenu:row-span-column: * GtkTreeMenu:row-span-column:
* *
* If this is set to a non-negative value, it must be the index of a column * If this is set to a non-negative value, it must be the index of a column
@ -387,7 +387,7 @@ _gtk_tree_menu_class_init (GtkTreeMenuClass *class)
-1, -1,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
/** /*
* GtkTreeMenu:column-span-column: * GtkTreeMenu:column-span-column:
* *
* If this is set to a non-negative value, it must be the index of a column * If this is set to a non-negative value, it must be the index of a column
@ -1548,7 +1548,7 @@ _gtk_tree_menu_new (void)
return (GtkWidget *)g_object_new (GTK_TYPE_TREE_MENU, NULL); return (GtkWidget *)g_object_new (GTK_TYPE_TREE_MENU, NULL);
} }
/** /*
* _gtk_tree_menu_new_with_area: * _gtk_tree_menu_new_with_area:
* @area: the #GtkCellArea to use to render cells in the menu * @area: the #GtkCellArea to use to render cells in the menu
* *
@ -1566,7 +1566,7 @@ _gtk_tree_menu_new_with_area (GtkCellArea *area)
NULL); NULL);
} }
/** /*
* _gtk_tree_menu_new_full: * _gtk_tree_menu_new_full:
* @area: (allow-none): the #GtkCellArea to use to render cells in the menu, or %NULL. * @area: (allow-none): the #GtkCellArea to use to render cells in the menu, or %NULL.
* @model: (allow-none): the #GtkTreeModel to build the menu heirarchy from, or %NULL. * @model: (allow-none): the #GtkTreeModel to build the menu heirarchy from, or %NULL.
@ -1590,7 +1590,7 @@ _gtk_tree_menu_new_full (GtkCellArea *area,
NULL); NULL);
} }
/** /*
* _gtk_tree_menu_set_model: * _gtk_tree_menu_set_model:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @model: (allow-none): the #GtkTreeModel to build the menu hierarchy from, or %NULL. * @model: (allow-none): the #GtkTreeModel to build the menu hierarchy from, or %NULL.
@ -1611,7 +1611,7 @@ _gtk_tree_menu_set_model (GtkTreeMenu *menu,
rebuild_menu (menu); rebuild_menu (menu);
} }
/** /*
* _gtk_tree_menu_get_model: * _gtk_tree_menu_get_model:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1634,7 +1634,7 @@ _gtk_tree_menu_get_model (GtkTreeMenu *menu)
return priv->model; return priv->model;
} }
/** /*
* _gtk_tree_menu_set_root: * _gtk_tree_menu_set_root:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @path: (allow-none): the #GtkTreePath which is the root of @menu, or %NULL. * @path: (allow-none): the #GtkTreePath which is the root of @menu, or %NULL.
@ -1666,7 +1666,7 @@ _gtk_tree_menu_set_root (GtkTreeMenu *menu,
rebuild_menu (menu); rebuild_menu (menu);
} }
/** /*
* _gtk_tree_menu_get_root: * _gtk_tree_menu_get_root:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1693,7 +1693,7 @@ _gtk_tree_menu_get_root (GtkTreeMenu *menu)
return NULL; return NULL;
} }
/** /*
* _gtk_tree_menu_get_tearoff: * _gtk_tree_menu_get_tearoff:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1715,7 +1715,7 @@ _gtk_tree_menu_get_tearoff (GtkTreeMenu *menu)
return priv->tearoff; return priv->tearoff;
} }
/** /*
* _gtk_tree_menu_set_tearoff: * _gtk_tree_menu_set_tearoff:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @tearoff: whether the menu should have a leading tearoff menu item. * @tearoff: whether the menu should have a leading tearoff menu item.
@ -1744,7 +1744,7 @@ _gtk_tree_menu_set_tearoff (GtkTreeMenu *menu,
} }
} }
/** /*
* _gtk_tree_menu_get_wrap_width: * _gtk_tree_menu_get_wrap_width:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1767,7 +1767,7 @@ _gtk_tree_menu_get_wrap_width (GtkTreeMenu *menu)
return priv->wrap_width; return priv->wrap_width;
} }
/** /*
* _gtk_tree_menu_set_wrap_width: * _gtk_tree_menu_set_wrap_width:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @width: the wrap width * @width: the wrap width
@ -1798,7 +1798,7 @@ _gtk_tree_menu_set_wrap_width (GtkTreeMenu *menu,
} }
} }
/** /*
* _gtk_tree_menu_get_row_span_column: * _gtk_tree_menu_get_row_span_column:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1822,7 +1822,7 @@ _gtk_tree_menu_get_row_span_column (GtkTreeMenu *menu)
return priv->row_span_col; return priv->row_span_col;
} }
/** /*
* _gtk_tree_menu_set_row_span_column: * _gtk_tree_menu_set_row_span_column:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @row_span: the column in the model to fetch the row span for a given menu item. * @row_span: the column in the model to fetch the row span for a given menu item.
@ -1854,7 +1854,7 @@ _gtk_tree_menu_set_row_span_column (GtkTreeMenu *menu,
} }
} }
/** /*
* _gtk_tree_menu_get_column_span_column: * _gtk_tree_menu_get_column_span_column:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1878,7 +1878,7 @@ _gtk_tree_menu_get_column_span_column (GtkTreeMenu *menu)
return priv->col_span_col; return priv->col_span_col;
} }
/** /*
* _gtk_tree_menu_set_column_span_column: * _gtk_tree_menu_set_column_span_column:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @column_span: the column in the model to fetch the column span for a given menu item. * @column_span: the column in the model to fetch the column span for a given menu item.
@ -1910,7 +1910,7 @@ _gtk_tree_menu_set_column_span_column (GtkTreeMenu *menu,
} }
} }
/** /*
* _gtk_tree_menu_get_row_separator_func: * _gtk_tree_menu_get_row_separator_func:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1932,7 +1932,7 @@ _gtk_tree_menu_get_row_separator_func (GtkTreeMenu *menu)
return priv->row_separator_func; return priv->row_separator_func;
} }
/** /*
* _gtk_tree_menu_set_row_separator_func: * _gtk_tree_menu_set_row_separator_func:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @func: (allow-none): a #GtkTreeViewRowSeparatorFunc, or %NULL to unset the separator function. * @func: (allow-none): a #GtkTreeViewRowSeparatorFunc, or %NULL to unset the separator function.
@ -1967,7 +1967,7 @@ _gtk_tree_menu_set_row_separator_func (GtkTreeMenu *menu,
rebuild_menu (menu); rebuild_menu (menu);
} }
/** /*
* _gtk_tree_menu_get_header_func: * _gtk_tree_menu_get_header_func:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* *
@ -1989,7 +1989,7 @@ _gtk_tree_menu_get_header_func (GtkTreeMenu *menu)
return priv->header_func; return priv->header_func;
} }
/** /*
* _gtk_tree_menu_set_header_func: * _gtk_tree_menu_set_header_func:
* @menu: a #GtkTreeMenu * @menu: a #GtkTreeMenu
* @func: (allow-none): a #GtkTreeMenuHeaderFunc, or %NULL to unset the header function. * @func: (allow-none): a #GtkTreeMenuHeaderFunc, or %NULL to unset the header function.