Fix annotation
This commit is contained in:
parent
7b5e26b11b
commit
b9c7372e1d
2 changed files with 18 additions and 1 deletions
|
@ -3268,7 +3268,7 @@ egg_flow_box_select_child (EggFlowBox *box,
|
|||
|
||||
/**
|
||||
* egg_flow_box_selected_foreach:
|
||||
* @flow_box: An #EggFlowBox.
|
||||
* @box: An #EggFlowBox.
|
||||
* @func: (scope call): The function to call for each selected child.
|
||||
* @data: User data to pass to the function.
|
||||
*
|
||||
|
|
|
@ -474,6 +474,14 @@ egg_list_box_class_init (EggListBoxClass *klass)
|
|||
"toggle-cursor-child", 0, NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
* egg_list_box_get_selected_child:
|
||||
* @self: An #EggListBox.
|
||||
*
|
||||
* Gets the selected child.
|
||||
*
|
||||
* Return value: (transfer none): The selected #GtkWidget.
|
||||
**/
|
||||
GtkWidget *
|
||||
egg_list_box_get_selected_child (EggListBox *list_box)
|
||||
{
|
||||
|
@ -487,6 +495,15 @@ egg_list_box_get_selected_child (EggListBox *list_box)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* egg_list_box_get_child_at_y:
|
||||
* @self: An #EggListBox.
|
||||
* @y: position
|
||||
*
|
||||
* Gets the child at the position.
|
||||
*
|
||||
* Return value: (transfer none): The child #GtkWidget.
|
||||
**/
|
||||
GtkWidget *
|
||||
egg_list_box_get_child_at_y (EggListBox *list_box, gint y)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue