|
Xm/XmListAddItemUnselected(o) -- A List function that adds an item to the list
|
XmListAddItemUnselected adds an item to the list at the given position. The item does not appear selected, even if it matches an item in the current XmNselectedItems list. widget Specifies the ID of the List from whose list an item is added. item Specifies the item to be added to the list. position Specifies the position of the new item in the list. A value of 1 makes the new item the first item in the list; a value of 2 makes it the second item; and so on. A value of 0 makes the new item the la... |
Xm/XmListDeleteAllItems(o) -- A List function that deletes all items from the list
|
XmListDeleteAllItems deletes all items from the list. widget Specifies the ID of the List from whose list the items are deleted For a complete definition of List and its associated resources, see XmList(3X). |
|
Xm/XmListDeleteItem(o) -- A List function that deletes an item from the list
|
XmListDeleteItem deletes the first item in the list that matches item. A warning message appears if the item does not exist. widget Specifies the ID of the List from whose list an item is deleted item Specifies the text of the item to be deleted from the list For a complete definition of List and its associated resources, see XmList(3X). |
Xm/XmListDeleteItems(o) -- A List function that deletes items from the list
|
XmListDeleteItems deletes the specified items from the list. For each element of items, the first item in the list that matches that element is deleted. A warning message appears if any of the items do not exist. widget Specifies the ID of the List from whose list an item is deleted items Specifies a pointer to items to be deleted from the list item_count Specifies the number of elements in items This number must be non-negative. For a complete definition of List and its associated resources, se... |
Xm/XmListDeleteItemsPos(o) -- A List function that deletes items from the list starting at the given position
|
XmListDeleteItemsPos deletes the specified number of items from the list starting at the specified position. widget Specifies the ID of the List from whose list an item is deleted. item_count Specifies the number of items to be deleted. This number must be non-negative. position Specifies the position in the list of the first item to be deleted. A value of 1 indicates that the first deleted item is the first item in the list; a value of 2 indicates that it is the second item; and so on. For a co... |
Xm/XmListDeletePos(o) -- A List function that deletes an item from a list at a specified position
|
XmListDeletePos deletes an item at a specified position. A warning message appears if the position does not exist. widget Specifies the ID of the List from which an item is to be deleted. position Specifies the position of the item to be deleted. A value of 1 indicates that the first item in the list is deleted; a value of 2 indicates that the second item is deleted; and so on. A value of 0 indicates that the last item in the list is deleted. For a complete definition of List and its associated ... |
Xm/XmListDeletePositions(o) -- A List function that deletes items from a list based on an array of positions
|
XmListDeletePositions deletes noncontiguous items from a list. The function deletes all items whose corresponding positions appear in the position_list array. A warning message is displayed if a specified position is invalid; that is, the value is 0, a negative integer, or a number greater than the number of items in the list. widget Specifies the ID of the List widget position_list Specifies an array of the item positions to be deleted. The position of the first item in the list is 1; the posit... |
Xm/XmListDeselectAllItems(o) -- A List function that unhighlights and removes all items from the selected list
|
XmListDeselectAllItems unhighlights and removes all items from the selected list. widget Specifies the ID of the List widget from whose list all selected items are deselected For a complete definition of List and its associated resources, see XmList(3X). |
Xm/XmListDeselectItem(o) -- A List function that deselects the specified item from the selected list
|
XmListDeselectItem unhighlights and removes from the selected list the first item in the list that matches item. widget Specifies the ID of the List from whose list an item is deselected item Specifies the item to be deselected from the list For a complete definition of List and its associated resources, see XmList(3X). |
Xm/XmListDeselectPos(o) -- A List function that deselects an item at a specified position in the list
|
XmListDeselectPos unhighlights the item at the specified position and deletes it from the list of selected items. widget Specifies the ID of the List widget position Specifies the position of the item to be deselected. A value of 1 indicates that the first item in the list is deselected; a value of 2 indicates that the second item is deselected; and so on. A value of 0 indicates that the last item in the list is deselected. For a complete definition of List and its associated resources, see XmLi... |
Xm/XmListGetKbdItemPos(o) -- A List function that returns the position of the item at the location cursor
|
XmListGetKbdItemPos returns the position of the list item at the location cursor. widget Specifies the ID of the List widget For a complete definition of List and its associated resources, see XmList(3X). |
Xm/XmListGetMatchPos(o) -- A List function that returns all instances of an item in the list
|
XmListGetMatchPos is a Boolean function that returns an array of positions where a specified item is found in a List. widget Specifies the ID of the List widget. item Specifies the item to search for. position_list Returns an array of positions at which the item occurs in the List. The position of the first item in the list is 1; the position of the second item is 2; and so on. When the return value is TRUE, XmListGetMatchPos allocates memory for this array. The caller is responsible for freeing... |
Xm/XmListGetSelectedPos(o) -- A List function that returns the position of every selected item in the list
|
XmListGetSelectedPos is a Boolean function that returns an array of the positions of the selected items in a List. widget Specifies the ID of the List widget. position_list Returns an array of the positions of the selected items in the List. The position of the first item in the list is 1; the position of the second item is 2; and so on. When the return value is TRUE, XmListGetSelectedPos allocates memory for this array. The caller is responsible for freeing this memory. position_count Returns t... |
Xm/XmListItemExists(o) -- A List function that checks if a specified item is in the list
|
XmListItemExists is a Boolean function that checks if a specified item is present in the list. widget Specifies the ID of the List widget item Specifies the item whose presence is checked For a complete definition of List and its associated resources, see XmList(3X). |
Xm/XmListItemPos(o) -- A List function that returns the position of an item in the list
|
XmListItemPos returns the position of the first instance of the specified item in a List. widget Specifies the ID of the List widget item Specifies the item whose position is returned For a complete definition of List and its associated resources, see XmList(3X). |