1XmAddTabGroup(library call) XmAddTabGroup(library call)
2
3
4
6 XmAddTabGroup — A function that adds a manager or a primitive widget to
7 the list of tab groups
8
10 #include <Xm/Xm.h>
11 void XmAddTabGroup(
12 Widget tab_group);
13
15 This function is obsolete and its behavior is replaced by setting XmN‐
16 navigationType to XmEXCLUSIVE_TAB_GROUP. When the keyboard is used to
17 traverse through a widget hierarchy, primitive or manager widgets are
18 grouped together into what are known as tab groups. Any manager or
19 primitive widget can be a tab group. Within a tab group, move the focus
20 to the next widget in the tab group by using the arrow keys. To move to
21 another tab group, use KNextField or KPrevField.
22
23 Tab groups are ordinarily specified by the XmNnavigationType resource.
24 XmAddTabGroup is called to control the order of traversal of tab
25 groups. The widget specified by tab_group is appended to the list of
26 tab groups to be traversed, and the widget's XmNnavigationType is set
27 to XmEXCLUSIVE_TAB_GROUP.
28
29 tab_group Specifies the manager or primitive widget ID
30
32 XmManager(3), XmGetTabGroup(3), XmPrimitive(3), and XmRemoveTab‐
33 Group(3).
34
35
36
37 XmAddTabGroup(library call)