xserver

xserver with xephyr scale patch
git clone https://git.neptards.moe/u3shit/xserver.git
Log | Files | Refs | README | LICENSE

pbproxy.h (3596B)


      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 */
     46 extern 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  */
     54 extern BOOL xpbproxy_is_standalone;
     55 #endif
     56 
     57 /* from main.m */
     58 extern void
     59 xpbproxy_set_is_active(BOOL state);
     60 extern BOOL
     61 xpbproxy_get_is_active(void);
     62 extern id
     63 xpbproxy_selection_object(void);
     64 extern Time
     65 xpbproxy_current_timestamp(void);
     66 extern int
     67 xpbproxy_run(void);
     68 
     69 extern Display *xpbproxy_dpy;
     70 extern int xpbproxy_apple_wm_event_base, xpbproxy_apple_wm_error_base;
     71 extern int xpbproxy_xfixes_event_base, xpbproxy_xfixes_error_base;
     72 extern BOOL xpbproxy_have_xfixes;
     73 
     74 /* from x-input.m */
     75 extern BOOL
     76 xpbproxy_input_register(void);
     77 
     78 /* os/log.c or app-main.m */
     79 extern void
     80 ErrorF(const char *f, ...) _X_ATTRIBUTE_PRINTF(1, 2);
     81 
     82 /* from darwin.h */
     83 _X_ATTRIBUTE_PRINTF(6, 7)
     84 extern void
     85 xq_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 */