1/* pbproxy.h
2 *
3 * Copyright (c) 2002-2012 Apple Inc. All rights reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation files
7 * (the "Software"), to deal in the Software without restriction,
8 * including without limitation the rights to use, copy, modify, merge,
9 * publish, distribute, sublicense, and/or sell copies of the Software,
10 * and to permit persons to whom the Software is furnished to do so,
11 * subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT.  IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT
20 * HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Except as contained in this notice, the name(s) of the above
26 * copyright holders shall not be used in advertising or otherwise to
27 * promote the sale, use or other dealings in this Software without
28 * prior written authorization.
29 */
30
31#ifndef PBPROXY_H
32#define PBPROXY_H 1
33
34#import  <Foundation/Foundation.h>
35
36#include <asl.h>
37
38#define  Cursor X_Cursor
39#undef _SHAPE_H_
40#include <X11/Xlib.h>
41#include <X11/extensions/shape.h>
42#undef   Cursor
43
44#ifdef STANDALONE_XPBPROXY
45/* Just used for the standalone to respond to SIGHUP to reload prefs */
46extern BOOL xpbproxy_prefs_reload;
47
48/* Setting this to YES (for the standalone app) causes us to ignore the
49 * 'sync_pasteboard' defaults preference since we assume it to be on... this is
50 * mainly useful for debugging/developing xpbproxy with XQuartz still running.
51 * Just disable the one in the server with X11's preference pane, then run
52 * the standalone app.
53 */
54extern BOOL xpbproxy_is_standalone;
55#endif
56
57/* from main.m */
58extern void
59xpbproxy_set_is_active(BOOL state);
60extern BOOL
61xpbproxy_get_is_active(void);
62extern id
63xpbproxy_selection_object(void);
64extern Time
65xpbproxy_current_timestamp(void);
66extern int
67xpbproxy_run(void);
68
69extern Display *xpbproxy_dpy;
70extern int xpbproxy_apple_wm_event_base, xpbproxy_apple_wm_error_base;
71extern int xpbproxy_xfixes_event_base, xpbproxy_xfixes_error_base;
72extern BOOL xpbproxy_have_xfixes;
73
74/* from x-input.m */
75extern BOOL
76xpbproxy_input_register(void);
77
78/* os/log.c or app-main.m */
79extern void
80ErrorF(const char *f, ...) _X_ATTRIBUTE_PRINTF(1, 2);
81
82/* from darwin.h */
83_X_ATTRIBUTE_PRINTF(6, 7)
84extern void
85xq_asl_log(int level, const char *subsystem, const char *file,
86           const char *function, int line, const char *fmt,
87           ...);
88
89#define ASL_LOG(level, subsystem, msg, args ...) xq_asl_log(level, subsystem, \
90                                                            __FILE__, \
91                                                            __FUNCTION__, \
92                                                            __LINE__, msg, \
93                                                            ## args)
94#define DebugF(msg, args ...)                    ASL_LOG(ASL_LEVEL_DEBUG, \
95                                                         "xpbproxy", msg, \
96                                                         ## args)
97#define TRACE()                                  DebugF("TRACE")
98
99#endif /* PBPROXY_H */
100