Unix and Linux Discussions Tagged with tab |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
12,559 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,698 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,602 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
21,022 |
Shell Programming and Scripting |
|
|
|
7 |
6,598 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,192 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,763 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,659 |
UNIX for Advanced & Expert Users |
|
|
|
7 |
4,124 |
Shell Programming and Scripting |
|
|
|
2 |
8,496 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
1,135 |
Shell Programming and Scripting |
|
|
|
3 |
1,200 |
Shell Programming and Scripting |
|
|
|
6 |
2,742 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,937 |
Shell Programming and Scripting |
|
|
|
4 |
3,870 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,211 |
UNIX for Dummies Questions & Answers |
|
|
|
12 |
7,331 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
20,797 |
Shell Programming and Scripting |
|
|
|
7 |
4,834 |
Programming |
|
|
|
5 |
16,424 |
UNIX Desktop Questions & Answers |
|
|
|
36 |
129,032 |
IP Networking |
|
|
|
2 |
3,212 |
Shell Programming and Scripting |
|
|
|
6 |
26,292 |
AIX |
|
|
|
10 |
4,097 |
Shell Programming and Scripting |
|
|
|
0 |
1,815 |
UNIX and Linux RSS News |
|
|
|
6 |
3,752 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
64,486 |
Shell Programming and Scripting |
|
|
|
2 |
6,548 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,525 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,886 |
Linux |
|
|
|
6 |
23,543 |
Shell Programming and Scripting |
|
|
|
9 |
6,549 |
Shell Programming and Scripting |
|
|
|
3 |
8,318 |
Shell Programming and Scripting |
|
|
|
2 |
5,165 |
Shell Programming and Scripting |
|
|
|
2 |
2,694 |
Shell Programming and Scripting |
|
|
|
1 |
3,302 |
Solaris |
|
|
|
4 |
4,129 |
Shell Programming and Scripting |
|
|
|
3 |
5,355 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,418 |
Red Hat |
|
|
|
2 |
7,199 |
Solaris |
XmTabListInsertTabs(library call) XmTabListInsertTabs(library call)
NAME
XmTabListInsertTabs -- A convenience function that inserts tabs into a tab list
SYNOPSIS
#include <Xm/Xm.h>
XmTabList XmTabListInsertTabs(
XmTabList oldlist,
XmTab *tabs,
Cardinal tab_count,
int position);
DESCRIPTION
XmTabListInsertTabs creates a new tab list that includes the tabs in oldlist. This function copies specified tabs to the tab list at the
given position. The first tab_count tabs of the tabs array are added to the tab list. If oldlist is NULL, XmTabListInsertTabs creates a new
tab list containing only the tabs specified.
oldlist Specifies the tab list to add the tabs to. The function deallocates oldlist after extracting the required information.
tabs Specifies a pointer to the tabs to be added to the tab list. It is the caller's responsibility to free the tabs in tabs by using
XmTabFree.
tab_count Specifies the number of tabs in tabs.
position Specifies the position of the first new tab in the tab list. A value of 0 (zero) makes the first new tab the first tab in the tab
list, a value of 1 makes it the second tab, and so on. If position is greater than the number of tabs in oldlist, then the tabs
will be inserted at the end. If position is negative, the count will be backwards from the end. A value of -1 makes the first new
tab the last tab, and so on.
RETURN
If tabs is NULL or tab_count is 0 (zero), this function returns oldlist. Otherwise, it returns a new tab list. The function allocates
space to hold the returned tab list. The application is responsible for managing the allocated space. The application can recover the
allocated space by calling XmTabListFree.
RELATED
XmTabList(3) and XmTabListFree(3).
XmTabListInsertTabs(library call)