Add new symbols to docs
Also, minor formatting fixes.
This commit is contained in:
parent
cbe5a3a590
commit
d824164e31
@ -172,7 +172,6 @@ GdkDisplayClass
|
|||||||
<TITLE>GdkDisplayManager</TITLE>
|
<TITLE>GdkDisplayManager</TITLE>
|
||||||
GdkDisplayManager
|
GdkDisplayManager
|
||||||
gdk_display_manager_get
|
gdk_display_manager_get
|
||||||
gdk_display_manager_peek
|
|
||||||
gdk_display_manager_get_default_display
|
gdk_display_manager_get_default_display
|
||||||
gdk_display_manager_set_default_display
|
gdk_display_manager_set_default_display
|
||||||
gdk_display_manager_list_displays
|
gdk_display_manager_list_displays
|
||||||
@ -460,6 +459,7 @@ GdkModifierType
|
|||||||
gdk_window_get_parent
|
gdk_window_get_parent
|
||||||
gdk_window_get_toplevel
|
gdk_window_get_toplevel
|
||||||
gdk_window_get_children
|
gdk_window_get_children
|
||||||
|
gdk_window_get_children_with_user_data
|
||||||
gdk_window_peek_children
|
gdk_window_peek_children
|
||||||
gdk_window_get_events
|
gdk_window_get_events
|
||||||
gdk_window_set_events
|
gdk_window_set_events
|
||||||
|
@ -2421,6 +2421,7 @@ gdk_window_peek_children (GdkWindow *window)
|
|||||||
/**
|
/**
|
||||||
* gdk_window_get_children_with_user_data:
|
* gdk_window_get_children_with_user_data:
|
||||||
* @window: a #GdkWindow
|
* @window: a #GdkWindow
|
||||||
|
* @user_data:
|
||||||
*
|
*
|
||||||
* Gets the list of children of @window known to GDK with a particular
|
* Gets the list of children of @window known to GDK with a particular
|
||||||
* user_data set on it.
|
* user_data set on it.
|
||||||
@ -2433,9 +2434,12 @@ gdk_window_peek_children (GdkWindow *window)
|
|||||||
*
|
*
|
||||||
* Return value: (transfer container) (element-type GdkWindow):
|
* Return value: (transfer container) (element-type GdkWindow):
|
||||||
* list of child windows inside @window
|
* list of child windows inside @window
|
||||||
|
*
|
||||||
|
* Since: 3.10
|
||||||
**/
|
**/
|
||||||
GList *
|
GList *
|
||||||
gdk_window_get_children_with_user_data (GdkWindow *window, gpointer user_data)
|
gdk_window_get_children_with_user_data (GdkWindow *window,
|
||||||
|
gpointer user_data)
|
||||||
{
|
{
|
||||||
GdkWindow *child;
|
GdkWindow *child;
|
||||||
GList *res, *l;
|
GList *res, *l;
|
||||||
|
Loading…
Reference in New Issue
Block a user