1XmContainerGetItemChildren(library callX)mContainerGetItemChildren(library call)
2
3
4
6 XmContainerGetItemChildren — Container widget function to find all
7 children of an item
8
10 #include <Xm/Container.h>
11 int XmContainerGetItemChildren(
12 Widget container,
13 Widget item,
14 WidgetList * item_children);
15
17 XmContainerGetItemChildren allocates a WidgetList and stores within it
18 the widget IDs of all widgets that have item specified as the value of
19 their XmNentryParent resource. The application programmer is responsi‐
20 ble for freeing the allocated WidgetList using XtFree. The number of
21 widget IDs returned in item_children is returned by the function. If no
22 widgets specify item as the value of their XmNentryParent resource, the
23 function returns zero and item_children is left unchanged.
24
25 container Specifies the Container widget ID.
26
27 item Specifies a widgetID within container.
28
29 item_children
30 Returned array of Widgets.
31
32 For a complete definition of Container and its associated resources,
33 see XmContainer(3).
34
36 This function returns a count of all widgets that have item specified
37 as the value of their XmNentryParent resource.
38
40 XmContainer(3).
41
42
43
44 XmContainerGetItemChildren(library call)