]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xcb_vlc.h
Fix for XCB_CURSOR_NONE undeclared issue
[vlc] / modules / video_output / xcb / xcb_vlc.h
1 /**
2  * @file xcb_vlc.h
3  * @brief X C Bindings VLC module common header
4  */
5 /*****************************************************************************
6  * Copyright © 2009 Rémi Denis-Courmont
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  ****************************************************************************/
22
23 #ifdef WORDS_BIGENDIAN
24 # define ORDER XCB_IMAGE_ORDER_MSB_FIRST
25 #else
26 # define ORDER XCB_IMAGE_ORDER_LSB_FIRST
27 #endif
28
29 #ifndef XCB_CURSOR_NONE
30 # define XCB_CURSOR_NONE ((xcb_cursor_t) 0U)
31 #endif
32
33 #include <vlc_picture.h>
34 #include <vlc_vout_display.h>
35
36 int ManageEvent (vout_display_t *vd, xcb_connection_t *conn, bool *);
37
38 /* keys.c */
39 typedef struct key_handler_t key_handler_t;
40 key_handler_t *CreateKeyHandler (vlc_object_t *, xcb_connection_t *);
41 void DestroyKeyHandler (key_handler_t *);
42 int ProcessKeyEvent (key_handler_t *, xcb_generic_event_t *);
43
44 /* common.c */
45 struct vout_window_t *GetWindow (vout_display_t *obj,
46                                  xcb_connection_t **restrict pconn,
47                                  const xcb_screen_t **restrict pscreen,
48                                  uint8_t *restrict pdepth);
49 int GetWindowSize (struct vout_window_t *wnd, xcb_connection_t *conn,
50                    unsigned *restrict width, unsigned *restrict height);
51 void CheckSHM (vlc_object_t *obj, xcb_connection_t *conn, bool *restrict pshm);
52 xcb_cursor_t CreateBlankCursor (xcb_connection_t *, const xcb_screen_t *);
53 void RegisterMouseEvents (vlc_object_t *, xcb_connection_t *, xcb_window_t);
54
55 int CheckError (vout_display_t *, xcb_connection_t *conn,
56                 const char *str, xcb_void_cookie_t);
57
58 /* FIXME
59  * maybe it would be better to split this header in 2 */
60 #include <xcb/shm.h>
61 struct picture_sys_t
62 {
63     xcb_shm_seg_t segment;
64 };
65 int PictureResourceAlloc (vout_display_t *vd, picture_resource_t *res, size_t size,
66                           xcb_connection_t *conn, bool attach);
67 void PictureResourceFree (picture_resource_t *res, xcb_connection_t *conn);
68