| 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 | #include <AvailabilityMacros.h> |
| 39 | #if MAC_OS_X_VERSION_MIN_REQUIRED < 1050 |
| 40 | #if __LP64__ || NS_BUILD_32_LIKE_64 |
| 41 | typedef long NSInteger; |
| 42 | typedef unsigned long NSUInteger; |
| 43 | #else |
| 44 | typedef int NSInteger; |
| 45 | typedef unsigned int NSUInteger; |
| 46 | #endif |
| 47 | #endif |
| 48 | |
| 49 | #define Cursor X_Cursor |
| 50 | #undef _SHAPE_H_ |
| 51 | #include <X11/Xlib.h> |
| 52 | #include <X11/extensions/shape.h> |
| 53 | #undef Cursor |
| 54 | |
| 55 | #ifdef STANDALONE_XPBPROXY |
| 56 | /* Just used for the standalone to respond to SIGHUP to reload prefs */ |
| 57 | extern BOOL xpbproxy_prefs_reload; |
| 58 | |
| 59 | /* Setting this to YES (for the standalone app) causes us to ignore the |
| 60 | * 'sync_pasteboard' defaults preference since we assume it to be on... this is |
| 61 | * mainly useful for debugging/developing xpbproxy with XQuartz still running. |
| 62 | * Just disable the one in the server with X11's preference pane, then run |
| 63 | * the standalone app. |
| 64 | */ |
| 65 | extern BOOL xpbproxy_is_standalone; |
| 66 | #endif |
| 67 | |
| 68 | /* from main.m */ |
| 69 | extern void |
| 70 | xpbproxy_set_is_active(BOOL state); |
| 71 | extern BOOL |
| 72 | xpbproxy_get_is_active(void); |
| 73 | extern id |
| 74 | xpbproxy_selection_object(void); |
| 75 | extern Time |
| 76 | xpbproxy_current_timestamp(void); |
| 77 | extern int |
| 78 | xpbproxy_run(void); |
| 79 | |
| 80 | extern Display *xpbproxy_dpy; |
| 81 | extern int xpbproxy_apple_wm_event_base, xpbproxy_apple_wm_error_base; |
| 82 | extern int xpbproxy_xfixes_event_base, xpbproxy_xfixes_error_base; |
| 83 | extern BOOL xpbproxy_have_xfixes; |
| 84 | |
| 85 | /* from x-input.m */ |
| 86 | extern BOOL |
| 87 | xpbproxy_input_register(void); |
| 88 | |
| 89 | /* os/log.c or app-main.m */ |
| 90 | extern void |
| 91 | ErrorF(const char *f, ...) _X_ATTRIBUTE_PRINTF(1, 2); |
| 92 | |
| 93 | /* from darwin.h */ |
| 94 | _X_ATTRIBUTE_PRINTF(6, 7) |
| 95 | extern void |
| 96 | xq_asl_log(int level, const char *subsystem, const char *file, |
| 97 | const char *function, int line, const char *fmt, |
| 98 | ...); |
| 99 | |
| 100 | #define ASL_LOG(level, subsystem, msg, args ...) xq_asl_log(level, subsystem, \ |
| 101 | __FILE__, \ |
| 102 | __FUNCTION__, \ |
| 103 | __LINE__, msg, \ |
| 104 | ## args) |
| 105 | #define DebugF(msg, args ...) ASL_LOG(ASL_LEVEL_DEBUG, \ |
| 106 | "xpbproxy", msg, \ |
| 107 | ## args) |
| 108 | #define TRACE() DebugF("TRACE") |
| 109 | |
| 110 | #endif /* PBPROXY_H */ |