/usr/include/Xm/ScrollBarP.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 205 206 207 208 209 210 211 212 | /*
* 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: ScrollBarP.h /main/13 1995/07/13 17:55:17 drk $ */
/*
* (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
/*
* (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
#ifndef _XmScrollBarP_h
#define _XmScrollBarP_h
#include <Xm/ScrollBar.h>
#include <Xm/PrimitiveP.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Minimum slider width or height */
#define MIN_SLIDER_THICKNESS 1
#define MIN_SLIDER_LENGTH 6
#define DEFAULT_ROUND_MARK_RADIUS 3
#define THERMO_MARK_OFFSET 10
/* ScrollBar class structure */
typedef struct _XmScrollBarClassPart
{
XtPointer extension; /* Pointer to extension record */
} XmScrollBarClassPart;
/* Full class record declaration for CheckBox class */
typedef struct _XmScrollBarClassRec
{
CoreClassPart core_class;
XmPrimitiveClassPart primitive_class;
XmScrollBarClassPart scrollBar_class;
} XmScrollBarClassRec;
externalref XmScrollBarClassRec xmScrollBarClassRec;
/* The ScrollBar instance record */
typedef struct _XmScrollBarPart
{
int value;
int minimum;
int maximum;
int slider_size;
unsigned char orientation;
unsigned char processing_direction;
XtEnum show_arrows;
int increment;
int page_increment;
int initial_delay;
int repeat_delay;
XtCallbackList value_changed_callback;
XtCallbackList increment_callback;
XtCallbackList decrement_callback;
XtCallbackList page_increment_callback;
XtCallbackList page_decrement_callback;
XtCallbackList to_top_callback;
XtCallbackList to_bottom_callback;
XtCallbackList drag_callback;
/* obsolete */
GC unhighlight_GC;
/* Change the logical name of this one in 2.0 */
GC foreground_GC;
Pixel trough_color;
Drawable pixmap;
Boolean sliding_on;
int saved_value;
XtEnum etched_slider;
/* we used a #define slider_visual to referenced this field in
the c file, etched_slider is not a good name anymore, */
XtEnum slider_mark;
unsigned char flags;
/* Values for the XmScrollBarPart flags field */
#define FIRST_SCROLL_FLAG (1<<0)
#define VALUE_SET_FLAG (1<<1)
#define END_TIMER (1<<2)
#define ARROW1_AVAILABLE (1<<3)
#define ARROW2_AVAILABLE (1<<4)
#define SLIDER_AVAILABLE (1<<5)
#define KEYBOARD_GRABBED (1<<6)
#define OPERATION_CANCELLED (1<<7) /* last field */
unsigned char add_flags;
/* Values for the additionnal flags field */
#define SNAPPED_OUT (1<<0)
unsigned char change_type;
XtIntervalId timer;
short initial_x;
short initial_y;
short separation_x;
short separation_y;
short slider_x;
short slider_y;
short slider_width;
short slider_height;
short slider_area_x;
short slider_area_y;
short slider_area_width;
short slider_area_height;
short arrow1_x;
short arrow1_y;
unsigned char arrow1_orientation;
Boolean arrow1_selected;
short arrow2_x;
short arrow2_y;
unsigned char arrow2_orientation;
Boolean arrow2_selected;
short arrow_width;
short arrow_height;
/* Obsolete fields as 1.2.0 */
short arrow1_top_count;
short arrow1_cent_count;
short arrow1_bot_count;
XRectangle * arrow1_top;
XRectangle * arrow1_cent;
XRectangle * arrow1_bot;
short arrow2_top_count;
short arrow2_cent_count;
short arrow2_bot_count;
XRectangle * arrow2_top;
XRectangle * arrow2_cent;
XRectangle * arrow2_bot;
/***********/
/* new for 1.2 */
GC unavailable_GC;
/* new for 2.0 */
unsigned short snap_back_multiple;
XtEnum sliding_mode;
Boolean editable;
Mask dimMask ; /* for the navigator trait */
} XmScrollBarPart;
/* Full instance record declaration */
typedef struct _XmScrollBarRec
{
CorePart core;
XmPrimitivePart primitive;
XmScrollBarPart scrollBar;
} XmScrollBarRec;
/******** Private Function Declarations ********/
/******** End Private Function Declarations ********/
#ifdef __cplusplus
} /* Close scope of 'extern "C"' declaration which encloses file. */
#endif
#endif /* _XmScrollBarP_h */
/* DON'T ADD ANYTHING AFTER THIS #endif */
|