/usr/include/Xm/ComboBoxP.h is in libmotif-dev 2.3.4-10.
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 | /* $XConsortium: ComboBoxP.h /main/8 1995/09/19 23:00:21 cde-sun $ */
/*
* 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
*/
/* ComboBoxP.h */
#ifndef _XmComboBoxP_H
#define _XmComboBoxP_H
#include <Xm/ManagerP.h>
#include <Xm/ComboBox.h>
#ifdef __cplusplus
extern "C" {
#endif
/* New fields for the ComboBox widget class record. */
typedef struct _XmComboBoxClassPart {
XtPointer extension; /* Pointer to extension record. */
} XmComboBoxClassPart;
/* Full class record declaration. */
typedef struct _XmComboBoxClassRec {
CoreClassPart core_class;
CompositeClassPart composite_class;
ConstraintClassPart constraint_class;
XmManagerClassPart manager_class;
XmComboBoxClassPart combo_box_class;
} XmComboBoxClassRec;
externalref XmComboBoxClassRec xmComboBoxClassRec;
/*
* New fields for the ComboBox widget record.
*/
typedef struct _XmComboBoxPart {
/* Resources */
unsigned char type;
unsigned char match_behavior;
Dimension highlight_thickness;
Dimension arrow_size;
Dimension arrow_spacing;
Dimension margin_width;
Dimension margin_height;
XtCallbackList selection_callback;
XmString selected_item; /* synthetic, not updated */
int selected_position;
XmFontList render_table;
/* Internal data */
Widget list_shell;
Widget list; /* Now accessible as a resource */
Widget scrolled_w;
Widget vsb;
Widget hsb;
int ideal_ebheight;
int ideal_ebwidth;
GC arrow_GC;
XRectangle hit_rect;
Dimension arrow_shadow_width;
Boolean arrow_pressed;
Boolean highlighted;
Boolean scrolling;
XtEnum shell_state;
/* NOTE that text_changed is also used for MT_safe resolution of
* the XmNRenderTable, XmNFontList resource settings
*/
Boolean text_changed;
/* New resources/data for CDE compatibility. */
Widget edit_box;
XmStringTable items;
int item_count;
int visible_item_count;
short columns;
XtEnum position_mode;
} XmComboBoxPart;
/* Full instance record declaration. */
typedef struct _XmComboBoxRec {
CorePart core;
CompositePart composite;
ConstraintPart constraint;
XmManagerPart manager;
XmComboBoxPart combo_box;
} XmComboBoxRec;
/******** Private Function Declarations ********/
/******** End Private Function Declarations ********/
/* Access macros */
#define CB_ArrowPressed(w) (((XmComboBoxWidget)(w))->combo_box.arrow_pressed)
#define CB_ArrowSize(w) (((XmComboBoxWidget)(w))->combo_box.arrow_size)
#define CB_ArrowSpacing(w) (((XmComboBoxWidget)(w))->combo_box.arrow_spacing)
#define CB_EditBox(w) (((XmComboBoxWidget)(w))->combo_box.edit_box)
#define CB_HighlightThickness(w) \
(((XmComboBoxWidget)(w))->combo_box.highlight_thickness)
#define CB_Highlighted(w) (((XmComboBoxWidget)(w))->combo_box.highlighted)
#define CB_HitRect(w) (((XmComboBoxWidget)(w))->combo_box.hit_rect)
#define CB_List(w) (((XmComboBoxWidget)(w))->combo_box.list)
#define CB_ListShell(w) (((XmComboBoxWidget)(w))->combo_box.list_shell)
#define CB_MarginHeight(w) (((XmComboBoxWidget)(w))->combo_box.margin_height)
#define CB_MarginWidth(w) (((XmComboBoxWidget)(w))->combo_box.margin_width)
#define CB_MatchBehavior(w) \
(((XmComboBoxWidget)(w))->combo_box.match_behavior)
#define CB_PositionMode(w) (((XmComboBoxWidget)(w))->combo_box.position_mode)
#define CB_RenderTable(w) (((XmComboBoxWidget)(w))->combo_box.render_table)
#define CB_ScrolledW(w) (((XmComboBoxWidget)(w))->combo_box.scrolled_w)
#define CB_SelectionCB(w) \
(((XmComboBoxWidget)(w))->combo_box.selection_callback)
#define CB_ShellState(w) (((XmComboBoxWidget)(w))->combo_box.shell_state)
#define CB_TextChanged(w) (((XmComboBoxWidget)(w))->combo_box.text_changed)
#define CB_Type(w) (((XmComboBoxWidget)(w))->combo_box.type)
#ifdef __cplusplus
} /* Close scope of 'extern "C"' declaration which encloses file. */
#endif
#endif /* _XmComboBoxP_H */
/* DON'T ADD ANYTHING AFTER THIS #endif */
|