/usr/include/Xm/FileSBP.h is in libmotif-dev 2.3.4-13.
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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | /*
* 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
*/
/*
* HISTORY
*/
/* $XConsortium: FileSBP.h /main/13 1995/09/19 23:02:34 cde-sun $ */
/*
* (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
/*
* (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
#ifndef _XmFSelectP_h
#define _XmFSelectP_h
#include <Xm/SelectioBP.h>
#include <Xm/FileSB.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Defines for use in allocation geometry matrix. */
#define XmFSB_MAX_WIDGETS_VERT 12
/* Bit locations for the state_flags bit field.
*/
#define XmFS_NO_MATCH (1 << 0)
#define XmFS_IN_FILE_SEARCH (1 << 1)
#define XmFS_DIR_SEARCH_PROC (1 << 2)
/* Constraint part record for FileSelectionBox widget */
typedef struct _XmFileSelectionBoxConstraintPart
{
char unused;
} XmFileSelectionBoxConstraintPart, * XmFileSelectionBoxConstraint;
/* New fields for the FileSelectionBox widget class record */
typedef struct
{
XtPointer extension; /* Pointer to extension record */
} XmFileSelectionBoxClassPart;
/* Full class record declaration */
typedef struct _XmFileSelectionBoxClassRec
{
CoreClassPart core_class;
CompositeClassPart composite_class;
ConstraintClassPart constraint_class;
XmManagerClassPart manager_class;
XmBulletinBoardClassPart bulletin_board_class;
XmSelectionBoxClassPart selection_box_class;
XmFileSelectionBoxClassPart file_selection_box_class;
} XmFileSelectionBoxClassRec;
externalref XmFileSelectionBoxClassRec xmFileSelectionBoxClassRec;
/* New fields for the FileSelectionBox widget record */
typedef struct
{
XmString directory; /* directory specification */
XmString pattern; /* file search pattern */
Widget dir_list_label; /* directory list Label */
XmString dir_list_label_string;/* directory list label text */
Widget dir_list; /* directory List */
XmString * dir_list_items; /* items in directory List */
int dir_list_item_count;/* number of items in directory List */
int dir_list_selected_item_position;
Widget filter_label; /* file search filter label */
XmString filter_label_string;/* filter label text */
Widget filter_text; /* filter text entry field */
XmString dir_mask; /* string in filter text entry field */
XmString no_match_string; /* string in list when no file match */
XmQualifyProc qualify_search_data_proc; /* directory and mask routine */
XmSearchProc dir_search_proc; /* change directory routine */
XmSearchProc file_search_proc; /* file search routine */
unsigned char file_type_mask; /* mask for type of files in file list */
Boolean list_updated; /* flag to indicate file list update */
Boolean directory_valid ; /* flag to indicate valid new directory*/
unsigned char state_flags ; /* internal flags to indicate state. */
XtEnum path_mode ;
XtEnum file_filter_style ;
Widget dir_text ;
Widget dir_text_label ;
XmString dir_text_label_string ;
time_t prev_dir_modtime;
} XmFileSelectionBoxPart;
/****************************************************************
*
* Full instance record declaration
*
****************************************************************/
typedef struct _XmFileSelectionBoxRec
{
CorePart core;
CompositePart composite;
ConstraintPart constraint;
XmManagerPart manager;
XmBulletinBoardPart bulletin_board;
XmSelectionBoxPart selection_box;
XmFileSelectionBoxPart file_selection_box;
} XmFileSelectionBoxRec;
/* Access macros */
#define FS_Directory( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.directory)
#define FS_DirMask( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.dir_mask)
#define FS_DirListLabel( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.dir_list_label)
#define FS_DirListLabelString( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.dir_list_label_string)
#define FS_DirList( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.dir_list)
#define FS_DirListItems( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.dir_list_items)
#define FS_DirListItemCount( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.dir_list_item_count)
#define FS_FilterLabel( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.filter_label)
#define FS_FilterLabelString( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.filter_label_string)
#define FS_FilterText( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.filter_text)
#define FS_Pattern( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.pattern)
#define FS_NoMatchString( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.no_match_string)
#define FS_QualifySearchDataProc( w) (((XmFileSelectionBoxWidget) \
(w))->file_selection_box.qualify_search_data_proc)
#define FS_DirSearchProc( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.dir_search_proc)
#define FS_FileSearchProc( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.file_search_proc)
#define FS_RealDefaultButton( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.real_default_button)
#define FS_FileTypeMask( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.file_type_mask)
#define FS_ListUpdated( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.list_updated)
#define FS_DirectoryValid( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.directory_valid)
#define FS_StateFlags( w) \
(((XmFileSelectionBoxWidget)(w))->file_selection_box.state_flags)
#define FS_DirListSelectedItemPosition( w) (((XmFileSelectionBoxWidget) w) \
->file_selection_box.dir_list_selected_item_position)
#define FS_PathMode( w) (((XmFileSelectionBoxWidget) w) \
->file_selection_box.path_mode)
#define FS_FileFilterStyle( w) (((XmFileSelectionBoxWidget) w) \
->file_selection_box.file_filter_style)
#define FS_DirText( w) (((XmFileSelectionBoxWidget) w) \
->file_selection_box.dir_text)
#define FS_DirTextLabel( w) (((XmFileSelectionBoxWidget) w) \
->file_selection_box.dir_text_label)
#define FS_DirTextLabelString( w) (((XmFileSelectionBoxWidget) w) \
->file_selection_box.dir_text_label_string)
#define FS_PrevDirModTime( w) (((XmFileSelectionBoxWidget) w) \
->file_selection_box.prev_dir_modtime)
/******** Private Function Declarations ********/
/******** End Private Function Declarations ********/
#ifdef __cplusplus
} /* Close scope of 'extern "C"' declaration which encloses file. */
#endif
#endif /* _XmFSelectP_h */
/* DON'T ADD ANYTHING AFTER THIS #endif */
|