1XmContainerReorder(library call) XmContainerReorder(library call)
2
3
4
6 XmContainerReorder — Container widget function to reorder children
7
9 #include <Xm/Container.h>
10 void XmContainerReorder(
11 Widget container,
12 WidgetList widgets,
13 int num_widgets);
14
16 XmContainerReorder obtains the XmNpositionIndex constraint resources of
17 each widget specified in widgets, sorts them in ascending order, and
18 inserts the XmNpositionIndex constraint resources in the new order into
19 each widget. If the XmNlayoutType resource of Container is XmOUTLINE
20 or XmDETAIL, XmContainerReorder will force a layout of all items.
21
22 container Specifies the Container widget ID.
23
24 widgets Specifies an array of widget children of container.
25
26 num_widgets
27 Specifies the number of items in the widgets array.
28
29 For a complete definition of Container and its associated resources,
30 see XmContainer(3).
31
33 XmContainer(3).
34
35
36
37 XmContainerReorder(library call)