2010-11-05 08:28:33 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2010-11-05 08:28:33 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Intel Corporation.
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2010-11-05 08:28:33 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2010-11-05 08:28:33 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* 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 AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* 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.
|
2010-11-05 08:28:33 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_XLIB_H__
|
|
|
|
#define __COGL_XLIB_H__
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2013-10-09 08:31:12 -04:00
|
|
|
/* NB: this is a top-level header that can be included directly but we
|
|
|
|
* want to be careful not to define __COGL_H_INSIDE__ when this is
|
|
|
|
* included internally while building Cogl itself since
|
|
|
|
* __COGL_H_INSIDE__ is used in headers to guard public vs private api
|
|
|
|
* definitions
|
|
|
|
*/
|
|
|
|
#ifndef COGL_COMPILATION
|
2013-11-28 07:34:45 -05:00
|
|
|
|
|
|
|
/* Note: When building Cogl .gir we explicitly define
|
|
|
|
* __COGL_XLIB_H_INSIDE__ */
|
|
|
|
#ifndef __COGL_XLIB_H_INSIDE__
|
2011-10-17 12:55:35 -04:00
|
|
|
#define __COGL_XLIB_H_INSIDE__
|
2013-11-28 07:34:45 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Note: When building Cogl .gir we explicitly define
|
|
|
|
* __COGL_H_INSIDE__ */
|
|
|
|
#ifndef __COGL_H_INSIDE__
|
2012-11-22 13:01:10 -05:00
|
|
|
#define __COGL_H_INSIDE__
|
2013-11-28 07:34:45 -05:00
|
|
|
#define __COGL_XLIB_H_MUST_UNDEF_COGL_H_INSIDE__
|
2013-10-09 08:31:12 -04:00
|
|
|
#endif
|
2011-10-17 12:55:35 -04:00
|
|
|
|
2013-11-28 07:34:45 -05:00
|
|
|
#endif /* COGL_COMPILATION */
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
#include <cogl/cogl-types.h>
|
2013-09-23 13:21:16 -04:00
|
|
|
#include <cogl/deprecated/cogl-clutter-xlib.h>
|
2011-10-17 12:55:35 -04:00
|
|
|
#include <cogl/cogl-xlib-renderer.h>
|
2013-03-22 17:18:53 -04:00
|
|
|
#include <cogl/cogl-macros.h>
|
2011-10-17 12:55:35 -04:00
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_BEGIN_DECLS
|
2010-11-05 08:28:33 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* cogl_xlib_get_display:
|
|
|
|
*
|
|
|
|
* Return value: the Xlib display that will be used by the Xlib winsys
|
|
|
|
* backend. The display needs to be set with _cogl_xlib_set_display()
|
|
|
|
* before this function is called.
|
|
|
|
*
|
|
|
|
* Stability: Unstable
|
2013-03-22 17:18:53 -04:00
|
|
|
* Deprecated: 1.16: Use cogl_xlib_renderer_get_display() instead
|
2010-11-05 08:28:33 -04:00
|
|
|
*/
|
2013-07-24 05:44:56 -04:00
|
|
|
COGL_DEPRECATED_IN_1_16_FOR (cogl_xlib_renderer_get_display)
|
2010-11-05 08:28:33 -04:00
|
|
|
Display *
|
2013-07-24 05:44:56 -04:00
|
|
|
cogl_xlib_get_display (void);
|
2010-11-05 08:28:33 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* cogl_xlib_set_display:
|
|
|
|
*
|
|
|
|
* Sets the Xlib display that Cogl will use for the Xlib winsys
|
|
|
|
* backend. This function should eventually go away when Cogl gains a
|
|
|
|
* more complete winsys abstraction.
|
|
|
|
*
|
|
|
|
* Stability: Unstable
|
2013-03-22 17:18:53 -04:00
|
|
|
* Deprecated: 1.16: Use cogl_xlib_renderer_set_foreign_display()
|
|
|
|
* instead
|
2010-11-05 08:28:33 -04:00
|
|
|
*/
|
2013-07-24 05:44:56 -04:00
|
|
|
COGL_DEPRECATED_IN_1_16_FOR (cogl_xlib_renderer_set_foreign_display)
|
2010-11-05 08:28:33 -04:00
|
|
|
void
|
2013-07-24 05:44:56 -04:00
|
|
|
cogl_xlib_set_display (Display *display);
|
2010-11-05 08:28:33 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* cogl_xlib_handle_event:
|
|
|
|
* @xevent: pointer to XEvent structure
|
|
|
|
*
|
|
|
|
* This function processes a single X event; it can be used to hook
|
|
|
|
* into external X event retrieval (for example that done by Clutter
|
|
|
|
* or GDK).
|
|
|
|
*
|
|
|
|
* Return value: #CoglXlibFilterReturn. %COGL_XLIB_FILTER_REMOVE
|
|
|
|
* indicates that Cogl has internally handled the event and the
|
|
|
|
* caller should do no further processing. %COGL_XLIB_FILTER_CONTINUE
|
|
|
|
* indicates that Cogl is either not interested in the event,
|
|
|
|
* or has used the event to update internal state without taking
|
|
|
|
* any exclusive action.
|
|
|
|
*
|
|
|
|
* Stability: Unstable
|
2013-03-22 17:18:53 -04:00
|
|
|
* Deprecated: 1.16: Use cogl_xlib_renderer_handle_event() instead
|
2010-11-05 08:28:33 -04:00
|
|
|
*/
|
2013-07-24 05:44:56 -04:00
|
|
|
COGL_DEPRECATED_IN_1_16_FOR (cogl_xlib_renderer_handle_event)
|
2011-04-13 11:41:41 -04:00
|
|
|
CoglFilterReturn
|
2013-07-24 05:44:56 -04:00
|
|
|
cogl_xlib_handle_event (XEvent *xevent);
|
2010-11-05 08:28:33 -04:00
|
|
|
|
2013-04-10 09:37:43 -04:00
|
|
|
COGL_END_DECLS
|
|
|
|
|
2013-11-28 07:34:45 -05:00
|
|
|
|
|
|
|
/* The gobject introspection scanner seems to parse public headers in
|
|
|
|
* isolation which means we need to be extra careful about how we
|
|
|
|
* define and undefine __COGL_H_INSIDE__ used to detect when internal
|
|
|
|
* headers are incorrectly included by developers. In the gobject
|
|
|
|
* introspection case we have to manually define __COGL_H_INSIDE__ as
|
|
|
|
* a commandline argument for the scanner which means we must be
|
|
|
|
* careful not to undefine it in a header...
|
|
|
|
*/
|
|
|
|
#ifdef __COGL_XLIB_H_MUST_UNDEF_COGL_H_INSIDE__
|
|
|
|
#undef __COGL_H_INSIDE__
|
2011-10-17 12:55:35 -04:00
|
|
|
#undef __COGL_XLIB_H_INSIDE__
|
2013-11-28 07:34:45 -05:00
|
|
|
#undef __COGL_XLIB_H_MUST_UNDEF_COGL_H_INSIDE__
|
|
|
|
#endif
|
2011-10-17 12:55:35 -04:00
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
#endif /* __COGL_XLIB_H__ */
|