1 | /*
|
---|
2 | * quartz.h
|
---|
3 | *
|
---|
4 | * External interface of the Quartz display modes seen by the generic, mode
|
---|
5 | * independent parts of the Darwin X server.
|
---|
6 | */
|
---|
7 | /*
|
---|
8 | * Copyright (c) 2001-2003 Greg Parker and Torrey T. Lyons.
|
---|
9 | * All Rights Reserved.
|
---|
10 | *
|
---|
11 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
12 | * copy of this software and associated documentation files (the "Software"),
|
---|
13 | * to deal in the Software without restriction, including without limitation
|
---|
14 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
15 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
16 | * Software is furnished to do so, subject to the following conditions:
|
---|
17 | *
|
---|
18 | * The above copyright notice and this permission notice shall be included in
|
---|
19 | * all copies or substantial portions of the Software.
|
---|
20 | *
|
---|
21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
24 | * THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
---|
25 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
---|
26 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
---|
27 | * DEALINGS IN THE SOFTWARE.
|
---|
28 | *
|
---|
29 | * Except as contained in this notice, the name(s) of the above copyright
|
---|
30 | * holders shall not be used in advertising or otherwise to promote the sale,
|
---|
31 | * use or other dealings in this Software without prior written authorization.
|
---|
32 | */
|
---|
33 | /* $XdotOrg: xc/programs/Xserver/hw/darwin/quartz/quartz.h,v 1.3 2004/07/30 19:12:17 torrey Exp $ */
|
---|
34 | /* $XFree86: xc/programs/Xserver/hw/darwin/quartz/quartz.h,v 1.7 2003/11/12 20:21:51 torrey Exp $ */
|
---|
35 |
|
---|
36 | #ifndef _QUARTZ_H
|
---|
37 | #define _QUARTZ_H
|
---|
38 |
|
---|
39 | #include "quartzPasteboard.h"
|
---|
40 |
|
---|
41 | #include "screenint.h"
|
---|
42 | #include "window.h"
|
---|
43 |
|
---|
44 | /*------------------------------------------
|
---|
45 | Quartz display mode function types
|
---|
46 | ------------------------------------------*/
|
---|
47 |
|
---|
48 | /*
|
---|
49 | * Display mode initialization
|
---|
50 | */
|
---|
51 | typedef void (*DisplayInitProc)(void);
|
---|
52 | typedef Bool (*AddScreenProc)(int index, ScreenPtr pScreen);
|
---|
53 | typedef Bool (*SetupScreenProc)(int index, ScreenPtr pScreen);
|
---|
54 | typedef void (*InitInputProc)(int argc, char **argv);
|
---|
55 |
|
---|
56 | /*
|
---|
57 | * Cursor functions
|
---|
58 | */
|
---|
59 | typedef Bool (*InitCursorProc)(ScreenPtr pScreen);
|
---|
60 | typedef void (*CursorUpdateProc)(void);
|
---|
61 |
|
---|
62 | /*
|
---|
63 | * Suspend and resume X11 activity
|
---|
64 | */
|
---|
65 | typedef void (*SuspendScreenProc)(ScreenPtr pScreen);
|
---|
66 | typedef void (*ResumeScreenProc)(ScreenPtr pScreen, int x, int y);
|
---|
67 | typedef void (*CaptureScreensProc)(void);
|
---|
68 | typedef void (*ReleaseScreensProc)(void);
|
---|
69 |
|
---|
70 | /*
|
---|
71 | * Screen state change support
|
---|
72 | */
|
---|
73 | typedef void (*ScreenChangedProc)(void);
|
---|
74 | typedef void (*AddPseudoramiXScreensProc)(int *x, int *y, int *width, int *height);
|
---|
75 | typedef void (*UpdateScreenProc)(ScreenPtr pScreen);
|
---|
76 |
|
---|
77 | /*
|
---|
78 | * Rootless helper functions
|
---|
79 | */
|
---|
80 | typedef Bool (*IsX11WindowProc)(void *nsWindow, int windowNumber);
|
---|
81 | typedef void (*HideWindowsProc)(Bool hide);
|
---|
82 |
|
---|
83 | /*
|
---|
84 | * Rootless functions for optional export to GLX layer
|
---|
85 | */
|
---|
86 | typedef void * (*FrameForWindowProc)(WindowPtr pWin, Bool create);
|
---|
87 | typedef WindowPtr (*TopLevelParentProc)(WindowPtr pWindow);
|
---|
88 | typedef Bool (*CreateSurfaceProc)
|
---|
89 | (ScreenPtr pScreen, Drawable id, DrawablePtr pDrawable,
|
---|
90 | unsigned int client_id, unsigned int *surface_id,
|
---|
91 | unsigned int key[2], void (*notify) (void *arg, void *data),
|
---|
92 | void *notify_data);
|
---|
93 | typedef Bool (*DestroySurfaceProc)
|
---|
94 | (ScreenPtr pScreen, Drawable id, DrawablePtr pDrawable,
|
---|
95 | void (*notify) (void *arg, void *data), void *notify_data);
|
---|
96 |
|
---|
97 | /*
|
---|
98 | * Quartz display mode function list
|
---|
99 | */
|
---|
100 | typedef struct _QuartzModeProcs {
|
---|
101 | DisplayInitProc DisplayInit;
|
---|
102 | AddScreenProc AddScreen;
|
---|
103 | SetupScreenProc SetupScreen;
|
---|
104 | InitInputProc InitInput;
|
---|
105 |
|
---|
106 | InitCursorProc InitCursor;
|
---|
107 | CursorUpdateProc CursorUpdate; // Not used if NULL
|
---|
108 |
|
---|
109 | SuspendScreenProc SuspendScreen;
|
---|
110 | ResumeScreenProc ResumeScreen;
|
---|
111 | CaptureScreensProc CaptureScreens; // Only called in fullscreen
|
---|
112 | ReleaseScreensProc ReleaseScreens; // Only called in fullscreen
|
---|
113 |
|
---|
114 | ScreenChangedProc ScreenChanged;
|
---|
115 | AddPseudoramiXScreensProc AddPseudoramiXScreens;
|
---|
116 | UpdateScreenProc UpdateScreen;
|
---|
117 |
|
---|
118 | IsX11WindowProc IsX11Window;
|
---|
119 | HideWindowsProc HideWindows;
|
---|
120 |
|
---|
121 | FrameForWindowProc FrameForWindow;
|
---|
122 | TopLevelParentProc TopLevelParent;
|
---|
123 | CreateSurfaceProc CreateSurface;
|
---|
124 | DestroySurfaceProc DestroySurface;
|
---|
125 | } QuartzModeProcsRec, *QuartzModeProcsPtr;
|
---|
126 |
|
---|
127 | extern QuartzModeProcsPtr quartzProcs;
|
---|
128 |
|
---|
129 | Bool QuartzLoadDisplayBundle(const char *dpyBundleName);
|
---|
130 |
|
---|
131 | #endif
|
---|