Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

tickit_window_children, tickit_window_get_children - obtain child windows from a window

Description

tickit_window_children() returns the number of immediate child windows the given window has.

       tickit_window_get_children() copies at most n child window pointers into the array given by children, and
       returns  the  number of pointers it copied (which may be fewer than the total stored, if the array was of
       insufficient size).

Name

       tickit_window_children, tickit_window_get_children - obtain child windows from a window

Return Value

tickit_window_children() and tickit_window_get_children() return integers giving the  number  of  entries
       operated on.

See Also

tickit_window_new(3), tickit_window_parent(3), tickit_window(7), tickit(7)

                                                                                       TICKIT_WINDOW_CHILDREN(3)

Synopsis

#include<tickit.h>size_ttickit_window_children(constTickitWindow*win);size_ttickit_window_get_children(constTickitWindow*win,TickitWindow*children[],size_tn);

       Link with -ltickit.

See Also