/usr/include/Xm/PushBGP.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 | /*
* 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
*/
/* $TOG: PushBGP.h /main/14 1997/04/07 14:57:52 dbl $ */
/*
* (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
/*
* (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
/*
* (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY */
/*
* (c) Copyright 1988 MICROSOFT CORPORATION */
#ifndef _XmPButtonGP_h
#define _XmPButtonGP_h
#include <Xm/PushBG.h>
#include <Xm/LabelGP.h>
#ifdef __cplusplus
extern "C" {
#endif
/*************************************************************/
/* The PushButton Gadget Cache Object's class and instance records*/
/*************************************************************/
typedef struct _XmPushButtonGCacheObjClassPart
{
int foo;
} XmPushButtonGCacheObjClassPart;
typedef struct _XmPushButtonGCacheObjClassRec
{
ObjectClassPart object_class;
XmExtClassPart ext_class;
XmLabelGCacheObjClassPart label_class_cache;
XmPushButtonGCacheObjClassPart pushbutton_class_cache;
} XmPushButtonGCacheObjClassRec;
externalref XmPushButtonGCacheObjClassRec xmPushButtonGCacheObjClassRec;
typedef struct _XmPushButtonGCacheObjPart
{
Boolean fill_on_arm;
Pixel arm_color;
Pixmap arm_pixmap;
Pixmap unarm_pixmap;
unsigned char multiClick; /* KEEP/DISCARD resource */
Dimension default_button_shadow_thickness;
/* New resource - always add it to gadget's dimension. */
GC fill_gc;
GC background_gc;
/* following items have some persistence across gadget instances and are
** here only for data-space savings
*/
XtIntervalId timer;
Widget timer_widget;
} XmPushButtonGCacheObjPart;
typedef struct _XmPushButtonGCacheObjRec
{
ObjectPart object;
XmExtPart ext;
XmLabelGCacheObjPart label_cache;
XmPushButtonGCacheObjPart pushbutton_cache;
} XmPushButtonGCacheObjRec;
/* PushButton class structure */
typedef struct _XmPushButtonGadgetClassPart
{
XtPointer extension; /* Pointer to extension record */
} XmPushButtonGadgetClassPart;
/* Full class record declaration for PushButton class */
typedef struct _XmPushButtonGadgetClassRec
{
RectObjClassPart rect_class;
XmGadgetClassPart gadget_class;
XmLabelGadgetClassPart label_class;
XmPushButtonGadgetClassPart pushbutton_class;
} XmPushButtonGadgetClassRec;
externalref XmPushButtonGadgetClassRec xmPushButtonGadgetClassRec;
/* PushButton instance record */
typedef struct _XmPushButtonGadgetPart
{
XtCallbackList activate_callback;
XtCallbackList arm_callback;
XtCallbackList disarm_callback;
Dimension show_as_default;
Boolean armed;
int click_count;
Boolean compatible; /* if false it is Motif 1.1 else Motif 1.0 */
/* not cached for performance reasons */
XmPushButtonGCacheObjPart *cache; /* Replace cache instance fields */
/* with a pointer */
} XmPushButtonGadgetPart;
/* Full instance record declaration */
typedef struct _XmPushButtonGadgetRec {
ObjectPart object;
RectObjPart rectangle;
XmGadgetPart gadget;
XmLabelGadgetPart label;
XmPushButtonGadgetPart pushbutton;
} XmPushButtonGadgetRec;
/* MACROS */
/**********/
/* Macros for cached instance fields */
#define PBG_FillOnArm(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->fill_on_arm)
#define PBG_ArmColor(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->arm_color)
#define PBG_FillGc(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->fill_gc)
#define PBG_BackgroundGc(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->background_gc)
#define PBG_Timer(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->timer)
#define PBG_ArmPixmap(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->arm_pixmap)
#define PBG_UnarmPixmap(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->unarm_pixmap)
#define PBG_MultiClick(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->multiClick)
#define PBG_DefaultButtonShadowThickness(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.cache->default_button_shadow_thickness)
/* Macros for uncached instance fields */
#define PBG_ActivateCallback(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.activate_callback)
#define PBG_ArmCallback(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.arm_callback)
#define PBG_DisarmCallback(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.disarm_callback)
#define PBG_Armed(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.armed)
#define PBG_ClickCount(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.click_count)
#define PBG_Compatible(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.compatible)
#define PBG_ShowAsDefault(w) (((XmPushButtonGadget) (w)) -> \
pushbutton.show_as_default)
/******************************/
/* Convenience Macros */
/******************************/
#define PBG_Cache(w) (((XmPushButtonGadget)(w))->\
pushbutton.cache)
#define PBG_ClassCachePart(w) \
(((XmPushButtonGadgetClass)xmPushButtonGadgetClass)->gadget_class.cache_part)
/******** Private Function Declarations ********/
/******** End Private Function Declarations ********/
#ifdef __cplusplus
} /* Close scope of 'extern "C"' declaration which encloses file. */
#endif
#endif /* _XmPButtonGP_h */
/* DON'T ADD ANYTHING AFTER THIS #endif */
|