/usr/include/xorg/mi.h is in xserver-xorg-dev-lts-utopic 2:1.16.0-1ubuntu1.2~trusty2.
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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | /***********************************************************
Copyright 1987, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
#ifndef MI_H
#define MI_H
#include <X11/X.h>
#include "region.h"
#include "validate.h"
#include "window.h"
#include "gc.h"
#include <X11/fonts/font.h>
#include "input.h"
#include "cursor.h"
#include "privates.h"
#include "colormap.h"
#include "events.h"
#define MiBits CARD32
typedef struct _miDash *miDashPtr;
#define EVEN_DASH 0
#define ODD_DASH ~0
/* miarc.c */
extern _X_EXPORT void miPolyArc(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*narcs */ ,
xArc * /*parcs */
);
/* mibitblt.c */
extern _X_EXPORT RegionPtr miCopyArea(DrawablePtr /*pSrcDrawable */ ,
DrawablePtr /*pDstDrawable */ ,
GCPtr /*pGC */ ,
int /*xIn */ ,
int /*yIn */ ,
int /*widthSrc */ ,
int /*heightSrc */ ,
int /*xOut */ ,
int /*yOut */
);
extern _X_EXPORT RegionPtr miCopyPlane(DrawablePtr /*pSrcDrawable */ ,
DrawablePtr /*pDstDrawable */ ,
GCPtr /*pGC */ ,
int /*srcx */ ,
int /*srcy */ ,
int /*width */ ,
int /*height */ ,
int /*dstx */ ,
int /*dsty */ ,
unsigned long /*bitPlane */
);
extern _X_EXPORT void miGetImage(DrawablePtr /*pDraw */ ,
int /*sx */ ,
int /*sy */ ,
int /*w */ ,
int /*h */ ,
unsigned int /*format */ ,
unsigned long /*planeMask */ ,
char * /*pdstLine */
);
extern _X_EXPORT void miPutImage(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*depth */ ,
int /*x */ ,
int /*y */ ,
int /*w */ ,
int /*h */ ,
int /*leftPad */ ,
int /*format */ ,
char * /*pImage */
);
/* micopy.c */
#define miGetCompositeClip(pGC) ((pGC)->pCompositeClip)
typedef void (*miCopyProc) (DrawablePtr pSrcDrawable,
DrawablePtr pDstDrawable,
GCPtr pGC,
BoxPtr pDstBox,
int nbox,
int dx,
int dy,
Bool reverse,
Bool upsidedown, Pixel bitplane, void *closure);
extern _X_EXPORT void
miCopyRegion(DrawablePtr pSrcDrawable,
DrawablePtr pDstDrawable,
GCPtr pGC,
RegionPtr pDstRegion,
int dx,
int dy, miCopyProc copyProc, Pixel bitPlane, void *closure);
extern _X_EXPORT RegionPtr
miDoCopy(DrawablePtr pSrcDrawable,
DrawablePtr pDstDrawable,
GCPtr pGC,
int xIn,
int yIn,
int widthSrc,
int heightSrc,
int xOut,
int yOut, miCopyProc copyProc, Pixel bitplane, void *closure);
/* micursor.c */
extern _X_EXPORT void miRecolorCursor(DeviceIntPtr /* pDev */ ,
ScreenPtr /*pScr */ ,
CursorPtr /*pCurs */ ,
Bool /*displayed */
);
/* midash.c */
extern _X_EXPORT void miStepDash(int /*dist */ ,
int * /*pDashIndex */ ,
unsigned char * /*pDash */ ,
int /*numInDashList */ ,
int * /*pDashOffset */
);
/* mieq.c */
#ifndef INPUT_H
typedef struct _DeviceRec *DevicePtr;
#endif
extern _X_EXPORT Bool mieqInit(void
);
extern _X_EXPORT void mieqFini(void);
extern _X_EXPORT void mieqEnqueue(DeviceIntPtr /*pDev */ ,
InternalEvent * /*e */
);
extern _X_EXPORT void mieqSwitchScreen(DeviceIntPtr /* pDev */ ,
ScreenPtr /*pScreen */ ,
Bool /*set_dequeue_screen */
);
extern _X_EXPORT void mieqProcessDeviceEvent(DeviceIntPtr /* dev */ ,
InternalEvent * /* event */ ,
ScreenPtr /* screen */
);
extern _X_EXPORT void mieqProcessInputEvents(void
);
extern DeviceIntPtr CopyGetMasterEvent(DeviceIntPtr /* sdev */ ,
InternalEvent * /* original */ ,
InternalEvent * /* copy */
);
/**
* Custom input event handler. If you need to process input events in some
* other way than the default path, register an input event handler for the
* given internal event type.
*/
typedef void (*mieqHandler) (int screen, InternalEvent *event,
DeviceIntPtr dev);
void _X_EXPORT mieqSetHandler(int event, mieqHandler handler);
/* miexpose.c */
extern _X_EXPORT RegionPtr miHandleExposures(DrawablePtr /*pSrcDrawable */ ,
DrawablePtr /*pDstDrawable */ ,
GCPtr /*pGC */ ,
int /*srcx */ ,
int /*srcy */ ,
int /*width */ ,
int /*height */ ,
int /*dstx */ ,
int /*dsty */ ,
unsigned long /*plane */
);
extern _X_EXPORT void miSendGraphicsExpose(ClientPtr /*client */ ,
RegionPtr /*pRgn */ ,
XID /*drawable */ ,
int /*major */ ,
int /*minor */
);
extern _X_EXPORT void miSendExposures(WindowPtr /*pWin */ ,
RegionPtr /*pRgn */ ,
int /*dx */ ,
int /*dy */
);
extern _X_EXPORT void miWindowExposures(WindowPtr /*pWin */ ,
RegionPtr /*prgn */ ,
RegionPtr /*other_exposed */
);
extern _X_EXPORT void miPaintWindow(WindowPtr /*pWin */ ,
RegionPtr /*prgn */ ,
int /*what */
);
extern _X_EXPORT void miClearDrawable(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */
);
/* mifillrct.c */
extern _X_EXPORT void miPolyFillRect(DrawablePtr /*pDrawable */ ,
GCPtr /*pGC */ ,
int /*nrectFill */ ,
xRectangle * /*prectInit */
);
/* miglblt.c */
extern _X_EXPORT void miPolyGlyphBlt(DrawablePtr /*pDrawable */ ,
GCPtr /*pGC */ ,
int /*x */ ,
int /*y */ ,
unsigned int /*nglyph */ ,
CharInfoPtr * /*ppci */ ,
void */*pglyphBase */
);
extern _X_EXPORT void miImageGlyphBlt(DrawablePtr /*pDrawable */ ,
GCPtr /*pGC */ ,
int /*x */ ,
int /*y */ ,
unsigned int /*nglyph */ ,
CharInfoPtr * /*ppci */ ,
void */*pglyphBase */
);
/* mipoly.c */
extern _X_EXPORT void miFillPolygon(DrawablePtr /*dst */ ,
GCPtr /*pgc */ ,
int /*shape */ ,
int /*mode */ ,
int /*count */ ,
DDXPointPtr /*pPts */
);
/* mipolycon.c */
extern _X_EXPORT Bool miFillConvexPoly(DrawablePtr /*dst */ ,
GCPtr /*pgc */ ,
int /*count */ ,
DDXPointPtr /*ptsIn */
);
/* mipolygen.c */
extern _X_EXPORT Bool miFillGeneralPoly(DrawablePtr /*dst */ ,
GCPtr /*pgc */ ,
int /*count */ ,
DDXPointPtr /*ptsIn */
);
/* mipolypnt.c */
extern _X_EXPORT void miPolyPoint(DrawablePtr /*pDrawable */ ,
GCPtr /*pGC */ ,
int /*mode */ ,
int /*npt */ ,
xPoint * /*pptInit */
);
/* mipolyrect.c */
extern _X_EXPORT void miPolyRectangle(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*nrects */ ,
xRectangle * /*pRects */
);
/* mipolyseg.c */
extern _X_EXPORT void miPolySegment(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*nseg */ ,
xSegment * /*pSegs */
);
/* mipolytext.c */
extern _X_EXPORT int miPolyText8(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*x */ ,
int /*y */ ,
int /*count */ ,
char * /*chars */
);
extern _X_EXPORT int miPolyText16(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*x */ ,
int /*y */ ,
int /*count */ ,
unsigned short * /*chars */
);
extern _X_EXPORT void miImageText8(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*x */ ,
int /*y */ ,
int /*count */ ,
char * /*chars */
);
extern _X_EXPORT void miImageText16(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*x */ ,
int /*y */ ,
int /*count */ ,
unsigned short * /*chars */
);
/* mipushpxl.c */
extern _X_EXPORT void miPushPixels(GCPtr /*pGC */ ,
PixmapPtr /*pBitMap */ ,
DrawablePtr /*pDrawable */ ,
int /*dx */ ,
int /*dy */ ,
int /*xOrg */ ,
int /*yOrg */
);
/* miscrinit.c */
extern _X_EXPORT Bool miModifyPixmapHeader(PixmapPtr /*pPixmap */ ,
int /*width */ ,
int /*height */ ,
int /*depth */ ,
int /*bitsPerPixel */ ,
int /*devKind */ ,
void */*pPixData */
);
extern _X_EXPORT Bool miCreateScreenResources(ScreenPtr /*pScreen */
);
extern _X_EXPORT Bool miScreenDevPrivateInit(ScreenPtr /*pScreen */ ,
int /*width */ ,
void */*pbits */
);
extern _X_EXPORT Bool miScreenInit(ScreenPtr /*pScreen */ ,
void */*pbits */ ,
int /*xsize */ ,
int /*ysize */ ,
int /*dpix */ ,
int /*dpiy */ ,
int /*width */ ,
int /*rootDepth */ ,
int /*numDepths */ ,
DepthPtr /*depths */ ,
VisualID /*rootVisual */ ,
int /*numVisuals */ ,
VisualPtr /*visuals */
);
/* mivaltree.c */
extern _X_EXPORT int miShapedWindowIn(RegionPtr /*universe */ ,
RegionPtr /*bounding */ ,
BoxPtr /*rect */ ,
int /*x */ ,
int /*y */
);
typedef void
(*SetRedirectBorderClipProcPtr) (WindowPtr pWindow, RegionPtr pRegion);
typedef RegionPtr
(*GetRedirectBorderClipProcPtr) (WindowPtr pWindow);
extern _X_EXPORT void
miRegisterRedirectBorderClipProc(SetRedirectBorderClipProcPtr setBorderClip,
GetRedirectBorderClipProcPtr getBorderClip);
extern _X_EXPORT int miValidateTree(WindowPtr /*pParent */ ,
WindowPtr /*pChild */ ,
VTKind /*kind */
);
extern _X_EXPORT void miWideLine(DrawablePtr /*pDrawable */ ,
GCPtr /*pGC */ ,
int /*mode */ ,
int /*npt */ ,
DDXPointPtr /*pPts */
);
extern _X_EXPORT void miWideDash(DrawablePtr /*pDrawable */ ,
GCPtr /*pGC */ ,
int /*mode */ ,
int /*npt */ ,
DDXPointPtr /*pPts */
);
/* miwindow.c */
extern _X_EXPORT void miClearToBackground(WindowPtr /*pWin */ ,
int /*x */ ,
int /*y */ ,
int /*w */ ,
int /*h */ ,
Bool /*generateExposures */
);
extern _X_EXPORT void miMarkWindow(WindowPtr /*pWin */
);
extern _X_EXPORT Bool miMarkOverlappedWindows(WindowPtr /*pWin */ ,
WindowPtr /*pFirst */ ,
WindowPtr * /*ppLayerWin */
);
extern _X_EXPORT void miHandleValidateExposures(WindowPtr /*pWin */
);
extern _X_EXPORT void miMoveWindow(WindowPtr /*pWin */ ,
int /*x */ ,
int /*y */ ,
WindowPtr /*pNextSib */ ,
VTKind /*kind */
);
extern _X_EXPORT void miSlideAndSizeWindow(WindowPtr /*pWin */ ,
int /*x */ ,
int /*y */ ,
unsigned int /*w */ ,
unsigned int /*h */ ,
WindowPtr /*pSib */
);
extern _X_EXPORT WindowPtr miGetLayerWindow(WindowPtr /*pWin */
);
extern _X_EXPORT void miSetShape(WindowPtr /*pWin */ ,
int /*kind */
);
extern _X_EXPORT void miChangeBorderWidth(WindowPtr /*pWin */ ,
unsigned int /*width */
);
extern _X_EXPORT void miMarkUnrealizedWindow(WindowPtr /*pChild */ ,
WindowPtr /*pWin */ ,
Bool /*fromConfigure */
);
extern _X_EXPORT void miSegregateChildren(WindowPtr pWin, RegionPtr pReg,
int depth);
extern _X_EXPORT WindowPtr miSpriteTrace(SpritePtr pSprite, int x, int y);
extern _X_EXPORT WindowPtr miXYToWindow(ScreenPtr pScreen, SpritePtr pSprite, int x, int y);
/* mizerarc.c */
extern _X_EXPORT void miZeroPolyArc(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*narcs */ ,
xArc * /*parcs */
);
/* mizerline.c */
extern _X_EXPORT void miZeroLine(DrawablePtr /*dst */ ,
GCPtr /*pgc */ ,
int /*mode */ ,
int /*nptInit */ ,
DDXPointRec * /*pptInit */
);
extern _X_EXPORT void miZeroDashLine(DrawablePtr /*dst */ ,
GCPtr /*pgc */ ,
int /*mode */ ,
int /*nptInit */ ,
DDXPointRec * /*pptInit */
);
extern _X_EXPORT void miPolyFillArc(DrawablePtr /*pDraw */ ,
GCPtr /*pGC */ ,
int /*narcs */ ,
xArc * /*parcs */
);
#endif /* MI_H */
|