]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xcb_vlc.h
4a286c51883a869e9437d543688457e40a98f0ac
[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 #include <vlc_picture.h>
30 #include <vlc_vout_display.h>
31
32 int ManageEvent (vout_display_t *vd, xcb_connection_t *conn, bool *);
33
34 /* keys.c */
35 typedef struct key_handler_t key_handler_t;
36 key_handler_t *CreateKeyHandler (vlc_object_t *, xcb_connection_t *);
37 void DestroyKeyHandler (key_handler_t *);
38 int ProcessKeyEvent (key_handler_t *, xcb_generic_event_t *);
39
40 /* common.c */
41 struct vout_window_t *GetWindow (vout_display_t *obj,
42                                  xcb_connection_t **restrict pconn,
43                                  const xcb_screen_t **restrict pscreen,
44                                  uint8_t *restrict pdepth);
45 int GetWindowSize (struct vout_window_t *wnd, xcb_connection_t *conn,
46                    unsigned *restrict width, unsigned *restrict height);
47 void CheckSHM (vlc_object_t *obj, xcb_connection_t *conn, bool *restrict pshm);
48 xcb_cursor_t CreateBlankCursor (xcb_connection_t *, const xcb_screen_t *);
49 void RegisterMouseEvents (vlc_object_t *, xcb_connection_t *, xcb_window_t);
50
51 int CheckError (vout_display_t *, xcb_connection_t *conn,
52                 const char *str, xcb_void_cookie_t);
53
54 /* FIXME
55  * maybe it would be better to split this header in 2 */
56 #include <xcb/shm.h>
57 struct picture_sys_t
58 {
59     xcb_shm_seg_t segment;
60 };
61 int PictureResourceAlloc (vout_display_t *vd, picture_resource_t *res, size_t size,
62                           xcb_connection_t *conn, bool attach);
63 void PictureResourceFree (picture_resource_t *res, xcb_connection_t *conn);
64