/usr/include/xview/generic.h is in xviewg-dev 3.2p1.4-28.1.
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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | /* @(#)generic.h 20.45 93/06/28 SMI */
/*
* (c) Copyright 1989 Sun Microsystems, Inc. Sun design patents
* pending in the U.S. and foreign countries. See LEGAL NOTICE
* file for terms of the license.
*/
#ifndef xview_generic_DEFINED
#define xview_generic_DEFINED
/*
* Generic attributes fall into two classes:
* (1) Truly generic, implemented by attr_xxx.o or generic.o, use the
* package ATTR_PKG_GENERIC, shared with attr.h.
* (2) Common but not truly generic, implemented by .o's spread
* across many sub-systems, use the package ATTR_PKG_SV, shared with xview.h.
* Many of these common attributes pertain to server properties and thus only
* apply to objects with a window server component.
*
* Implementation dependent notes on generic X attributes:
* XV_XNAME has the format
* "<host name>:<display number in decimal>:<xid in decimal>".
* XV_DEVICE_NUMBER is the XID of the underlying X object. XV_XID is
* provided when a piece of code wants to emphasize that the "X id" is what
* is needed, rather than an abstract "tree link".
* Most of these attributes are only supported on Drawable objects,
* but some, like XV_XID, are supported by all objects that have direct
* underlying X components, e.g. Fonts.
*/
/*
***********************************************************************
* Include Files
***********************************************************************
*/
#include <xview/pkg_public.h>
/*
***********************************************************************
* Definitions and Macros
***********************************************************************
*/
/*
* PUBLIC #defines
*/
#define XV_GENERIC_OBJECT &xv_generic_pkg
/* XV_COPY is "magic" package xv_create checks for to distinguish
* creation of a new object from creation of a copy of an existing object.
*/
#define XV_COPY (Xv_pkg *)1
/*
* Accelerator for XV_HELP and HELP_STRING_FILENAME
*/
#define XV_HELP_DATA XV_KEY_DATA, XV_HELP
#define HELP_STRING_FILENAME XV_KEY_DATA, XV_HELP_STRING_FILENAME
#define XV_XID XV_DEVICE_NUMBER
#define XV_DUMMY_WINDOW 0x77777777
/*
* Focus Client Rank. Value is of type Xv_focus_rank.
* Referred to in the Mouseless Model Specification as "Focus Client Classes".
* Transient and Limited focus classes are Window Manager objects.
* An Ordinary Focus client has an XV_FOCUS_RANK of XV_FOCUS_SECONDARY.
* A First Class Focus client has an XV_FOCUS_RANK of XV_FOCUS_PRIMARY.
*/
#define XV_FOCUS_RANK XV_KEY_DATA, XV_FOCUS_RANK_KEY
#define XV_RC_SPECIAL 0x20000
#define XV_RESET_REF_COUNT XV_REF_COUNT, XV_RC_SPECIAL
#define XV_INCREMENT_REF_COUNT XV_REF_COUNT, XV_RC_SPECIAL+1
#define XV_DECREMENT_REF_COUNT XV_REF_COUNT, XV_RC_SPECIAL-1
/*
* PRIVATE #defines
*/
#define XV_ATTR(type, ordinal) ATTR(ATTR_PKG_SV, type, ordinal)
#define XV_ATTR_LIST(ltype, type, ordinal) \
XV_ATTR(ATTR_LIST_INLINE((ltype), (type)), (ordinal))
/*
***********************************************************************
* Typedefs, enumerations, and structs
***********************************************************************
*/
typedef enum {
XV_FOCUS_SECONDARY = 0, /* default value (a.k.a., Ordinary Focus) */
XV_FOCUS_PRIMARY = 1 /* a.k.a., First Class Focus */
} Xv_focus_rank;
/*
* WARNING: GENERIC_ATTR shared with attr.h (which claims [0..64))
*/
typedef enum {
/*
* PUBLIC and Generic
*/
/*
* For "contexts": key & data (& optional destroy for data)
*/
XV_KEY_DATA = GENERIC_ATTR(ATTR_INT_PAIR, 64),
XV_KEY_DATA_COPY_PROC = GENERIC_ATTR(ATTR_OPAQUE_PAIR, 65),
XV_KEY_DATA_REMOVE = GENERIC_ATTR(ATTR_INT, 66), /* -S- */
XV_KEY_DATA_REMOVE_PROC = GENERIC_ATTR(ATTR_OPAQUE_PAIR, 67),
/*
* For "reference count" on shared objects, e.g. fonts & menus
*/
XV_REF_COUNT = GENERIC_ATTR(ATTR_INT, 68),
/*
* Type of object
*/
XV_TYPE = GENERIC_ATTR(ATTR_OPAQUE, 69), /* --G */
XV_IS_SUBTYPE_OF = GENERIC_ATTR(ATTR_OPAQUE, 70), /* --G */
/*
* Miscellaneous
*/
XV_LABEL = GENERIC_ATTR(ATTR_STRING, 71),
XV_NAME = GENERIC_ATTR(ATTR_STRING, 72),
XV_STATUS = GENERIC_ATTR(ATTR_INT, 73),
XV_STATUS_PTR = GENERIC_ATTR(ATTR_OPAQUE, 74),
XV_HELP = GENERIC_ATTR(ATTR_STRING, 80),
XV_HELP_STRING_FILENAME = GENERIC_ATTR(ATTR_STRING, 82),
XV_SHOW = GENERIC_ATTR(ATTR_BOOLEAN, 81),
#ifdef OW_I18N
XV_LABEL_WCS = GENERIC_ATTR(ATTR_WSTRING, 164),
XV_NAME_WCS = GENERIC_ATTR(ATTR_WSTRING, 161),
XV_HELP_WCS = GENERIC_ATTR(ATTR_WSTRING, 162),
XV_HELP_STRING_FILENAME_WCS
= GENERIC_ATTR(ATTR_WSTRING, 163),
#endif /* OW_I18N */
/*
* Required by package implementations, used only by xv_create
*/
XV_COPY_OF = GENERIC_ATTR(ATTR_OPAQUE, 75), /* -S- */
XV_END_CREATE = GENERIC_ATTR(ATTR_NO_VALUE, 76), /* -S- */
/*
* To simplify SunView1.X compatibility
*/
XV_SELF = GENERIC_ATTR(ATTR_OPAQUE, 77), /* --G */
/*
* Managing (usually containing) object
*/
XV_OWNER = GENERIC_ATTR(ATTR_OPAQUE, 78),
/*
* Required by package implementations, used only by xv_find
*/
XV_AUTO_CREATE = GENERIC_ATTR(ATTR_INT, 79), /* C-- */
/*
* PUBLIC but only Common
*/
/*
* For layout
*/
XV_FONT = XV_ATTR(ATTR_OPAQUE, 64),
XV_MARGIN = XV_ATTR(ATTR_INT, 65),
XV_LEFT_MARGIN = XV_ATTR(ATTR_INT, 66),
XV_TOP_MARGIN = XV_ATTR(ATTR_INT, 67),
XV_RIGHT_MARGIN = XV_ATTR(ATTR_INT, 68),
XV_BOTTOM_MARGIN = XV_ATTR(ATTR_INT, 69),
/*
* Origin is usually parent's most upper-left coord inside margins
*/
XV_X = XV_ATTR(ATTR_X, 70),
XV_Y = XV_ATTR(ATTR_Y, 71),
XV_WIDTH = XV_ATTR(ATTR_X, 72),
XV_HEIGHT = XV_ATTR(ATTR_Y, 73),
XV_RECT = XV_ATTR(ATTR_RECT_PTR, 74),
/*
* Server specific or dependent
*/
XV_XNAME = XV_ATTR(ATTR_STRING, 96), /* C-G */
XV_DEVICE_NUMBER = XV_ATTR(ATTR_LONG, 97), /* C-G */
XV_ROOT = XV_ATTR(ATTR_OPAQUE, 98), /* --G */
XV_VISUAL = XV_ATTR(ATTR_OPAQUE, 125), /* C-G */
XV_VISUAL_CLASS = XV_ATTR(ATTR_INT, 117), /* C-G */
XV_DEPTH = XV_ATTR(ATTR_INT, 126), /* C-G */
XV_DISPLAY = XV_ATTR(ATTR_OPAQUE, 110), /* --G */
XV_SCREEN = XV_ATTR(ATTR_OPAQUE, 116), /* --G */
XV_APP_NAME = XV_ATTR(ATTR_STRING, 112), /* -SG */
#ifdef OW_I18N
XV_APP_NAME_WCS = XV_ATTR(ATTR_STRING, 111), /* CSG */
#endif
/*
* Mouseless Model support
*/
XV_FOCUS_ELEMENT = XV_ATTR(ATTR_INT, 118), /* -S- */
XV_FOCUS_RANK_KEY = XV_ATTR(ATTR_ENUM, 119), /* CSG */
/*
* Added to support the Xrm resource database
*/
XV_USE_DB = XV_ATTR_LIST(ATTR_RECURSIVE, ATTR_AV, 120),
XV_INSTANCE_NAME = XV_ATTR(ATTR_STRING, 125),
XV_INSTANCE_QLIST = XV_ATTR(ATTR_OPAQUE, 130),
XV_QUARK = XV_ATTR(ATTR_OPAQUE, 135),
XV_USE_INSTANCE_RESOURCES=XV_ATTR(ATTR_OPAQUE, 140),
#ifdef OW_I18N
/*
* The I18N Level 4 attribute XV_IM goes here:
*/
XV_IM = XV_ATTR(ATTR_OPAQUE, 150),
#endif /* OW_I18N */
/*
* Added to support locale announcement
*/
XV_LC_BASIC_LOCALE = XV_ATTR(ATTR_STRING, 155),
XV_LC_DISPLAY_LANG = XV_ATTR(ATTR_STRING, 160),
XV_LC_INPUT_LANG = XV_ATTR(ATTR_STRING, 165),
XV_LC_NUMERIC = XV_ATTR(ATTR_STRING, 170),
XV_LC_TIME_FORMAT = XV_ATTR(ATTR_STRING, 175),
XV_LOCALE_DIR = XV_ATTR(ATTR_STRING, 180),
XV_USE_LOCALE = XV_ATTR(ATTR_BOOLEAN, 185),
#ifdef OW_I18N
#ifdef FULL_R5
XV_IM_STYLES = XV_ATTR(ATTR_OPAQUE, 186),
XV_IM_PREEDIT_STYLE = XV_ATTR(ATTR_STRING, 190),
XV_IM_STATUS_STYLE = XV_ATTR(ATTR_STRING, 195),
#endif
#endif /* OW_I18N */
/*
* PRIVATE now, but ...
*/
XV_GC = XV_ATTR(ATTR_OPAQUE, 113) /* --G */
} Xv_generic_attr;
/*
* Generic package definition
*/
typedef struct {
Xv_base parent_data;
Xv_opaque private_data;
} Xv_generic_struct;
typedef enum {
/* Alpha compatibility, mbuck@debian.org */
#if defined(__alpha)
XV_INIT_ARGS = XV_ATTR(ATTR_OPAQUE_PAIR, 4),
XV_INIT_ARGC_PTR_ARGV = XV_ATTR(ATTR_OPAQUE_PAIR, 7), /* -S- */
#else
XV_INIT_ARGS = XV_ATTR(ATTR_INT_PAIR, 4),
XV_INIT_ARGC_PTR_ARGV = XV_ATTR(ATTR_INT_PAIR, 7), /* -S- */
#endif
XV_USAGE_PROC = XV_ATTR(ATTR_FUNCTION_PTR, 9), /* -S- */
XV_ERROR_PROC = XV_ATTR(ATTR_FUNCTION_PTR, 12),
XV_X_ERROR_PROC = XV_ATTR(ATTR_FUNCTION_PTR, 15)
} Xv_attr;
/*
***********************************************************************
* Globals
***********************************************************************
*/
extern Xv_pkg xv_generic_pkg;
/*
* PUBLIC functions
*/
EXTERN_FUNCTION (Xv_object xv_init, (Attr_attribute attr1, DOTDOTDOT));
EXTERN_FUNCTION (Attr_attribute xv_unique_key, (void));
#endif /* ~xview_generic_DEFINED */
|