This file is indexed.

/usr/include/Xm/Ext18List.h is in libmotif-dev 2.3.8-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
 * Motif
 *
 * Copyright (c) 1987-2012, The Open Group. All rights reserved.
 *
 * These libraries and programs are free software; you can
 * redistribute them and/or modify them under the terms of the GNU
 * Lesser General Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 * These libraries and programs are distributed in the hope that
 * they will be useful, but WITHOUT ANY WARRANTY; without even the
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE. See the GNU Lesser General Public License for more
 * details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with these librararies and programs; if not, write
 * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
 * Floor, Boston, MA 02110-1301 USA
 *
 */

#ifndef _XmExt18List_h_
#define _XmExt18List_h_

#if defined(__cplusplus)
extern "C" {
#endif

#include <Xm/MultiList.h>
#include <Xm/XmP.h>
    
externalref WidgetClass xmExt18ListWidgetClass XM_DEPRECATED;

enum {
    XmEXT18LIST_FOUND = XmMULTILIST_FOUND,
    XmEXT18LIST_NOT_FOUND = XmMULTILIST_NOT_FOUND
};

typedef XmMultiListWidgetClass	*XmExt18ListWidgetClass;
typedef XmMultiListWidget	*XmExt18ListWidget;

typedef XmMultiListRowInfo       Xm18RowInfo;

typedef XmMultiListCallbackStruct   XmExt18ListCallbackStruct;

/* 
 * Function Name: XmExt18ListGetSelectedRows
 * Description:   Takes an Extended List and returns a NULL terminated array
 *                of pointers to selected rows from the internal list
 * Arguments:     w - the extended list widget
 * Returns:       Xm18RowInfo **
 */

Xm18RowInfo ** XmExt18ListGetSelectedRows(Widget w) XM_DEPRECATED;

/*	Function Name: XmCreateExtended18List
 *	Description: Creation Routine for UIL and ADA.
 *	Arguments: parent - the parent widget.
 *                 name - the name of the widget.
 *                 args, num_args - the number and list of args.
 *	Returns: The Widget created.
 */

extern Widget XmCreateExtended18List(Widget,
                                     String,
                                     ArgList,
                                     Cardinal) XM_DEPRECATED;

extern Widget XmCreateExt18List(Widget,
                                String,
                                ArgList,
                                Cardinal) XM_DEPRECATED;

extern Widget XmVaCreateExt18List(
                        Widget parent,
                        char *name,
                        ...) XM_DEPRECATED;

extern Widget XmVaCreateManagedExt18List(
                        Widget parent,
                        char *name,
                        ...) XM_DEPRECATED;

/*  Function Name: XmExt18ListUnselectAllItems
 *  Description:   Unselects all rows
 *  Arguments:     w - the ilist widget.
 *  Returns:       none
 */
extern void XmExt18ListUnselectAllItems(Widget w) XM_DEPRECATED;

/*  Function Name: XmExt18ListUnselectItem
 *  Description:   Unselects the row passed in
 *  Arguments:     w - the ilist widget.
 *                 row_info - ptr to the row passed in
 *  Returns:       none
 */
extern void XmExt18ListUnselectItem(Widget, Xm18RowInfo *) XM_DEPRECATED;

/*  Function Name: XmExt18ListToggleRow
 *  Description:   Toggles the selection state of a specified row
 *  Arguments:     w - the extended list widget
 *  Returns:       none
 */
extern void XmExt18ListToggleRow(Widget, short) XM_DEPRECATED;

/*  Function Name: XmExt18ListSelectItems
 *  Description:   Set selection state by matching column entries to XmString
 *  Arguments:     w - the extended list widget
 *		   item - XmString to use as selection key
 *		   column - column number (0 - N) to match (or XmANY_COLUMN)
 *		   notify - if True, call XmNsingleSelectionCallback
 *  Returns:       none
 */
extern void XmExt18ListSelectItems(Widget, XmString, int, Boolean) XM_DEPRECATED;

/*  Function Name: XmExt18ListDeselectItems
 *  Description:   Set selection state by matching column entries to XmString
 *  Arguments:     w - the extended list widget
 *		   item - XmString to use as selection key
 *		   column - column number (0 - N) to match (or XmANY_COLUMN)
 *  Returns:       none
 */
extern void XmExt18ListDeselectItems(Widget, XmString, int) XM_DEPRECATED;

/*  Function Name: XmExt18ListSelectAllItems
 *  Description:   Set selection state on all rows
 *  Arguments:     w - the extended list widget
 *		   notify - if True, call XmNsingleSelectionCallback for each
 *  Returns:       none
 */
extern void XmExt18ListSelectAllItems(Widget, Boolean) XM_DEPRECATED;

/*  Function Name: XmExt18ListSelectRow
 *  Description:   Set selection state on all rows
 *  Arguments:     w - the extended list widget
 *		   row - the row to select
 *		   notify - if True, call XmNsingleSelectionCallback
 *  Returns:       none
 */
extern void XmExt18ListSelectRow(Widget, int, Boolean) XM_DEPRECATED;

/*  Function Name: XmExt18ListDeselectRow
 *  Description:   Set selection state on all rows
 *  Arguments:     w - the extended list widget
 *		   row - the row to select
 *  Returns:       none
 */
extern void XmExt18ListDeselectRow(Widget, int) XM_DEPRECATED;

/* 
 * Function Name: XmExt18ListGetSelectedRowArray
 * Description:   Takes an Extended List and returns a NULL terminated array
 *                of pointers to selected rows from the internal list
 * Arguments:     w - the extended list widget
 *		  num_rows - pointer to the number of rows
 * Returns:       array of integer (selected) row numbers
 */
extern int *XmExt18ListGetSelectedRowArray(Widget, int *) XM_DEPRECATED;

/*  Function Name: XmExt18ListMakeRowVisible
 *  Description:   Shifts the visible extended list rows as desired
 *  Arguments:     w - the extended list widget
 *		   row - the row number wished to be made visible
 *  Returns:       none
 */
void XmExt18ListMakeRowVisible(Widget, int) XM_DEPRECATED;

#if defined(__cplusplus)
}
#endif

#endif /* _XmExt18List_h_ */