]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xcb_vlc.h
XCB: develop resize handling
[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.0
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 Lesser 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 int CheckError (vout_thread_t *, const char *str, xcb_void_cookie_t);
30 int ProcessEvent (vout_thread_t *, xcb_connection_t *, xcb_window_t,
31                   xcb_generic_event_t *);
32 void HandleParentStructure (vout_thread_t *vout, xcb_connection_t *conn,
33                           xcb_window_t xid, xcb_configure_notify_event_t *ev);
34
35
36 /* keys.c */
37 typedef struct key_handler_t key_handler_t;
38 key_handler_t *CreateKeyHandler (vlc_object_t *, xcb_connection_t *);
39 void DestroyKeyHandler (key_handler_t *);
40 int ProcessKeyEvent (key_handler_t *, xcb_generic_event_t *);
41
42 /* common.c */
43 struct vout_window_t;
44
45 xcb_connection_t *Connect (vlc_object_t *obj);
46 struct vout_window_t *GetWindow (vout_thread_t *obj,
47                                  xcb_connection_t *pconn,
48                                  const xcb_screen_t **restrict pscreen,
49                                  bool *restrict pshm);
50 int GetWindowSize (struct vout_window_t *wnd, xcb_connection_t *conn,
51                    unsigned *restrict width, unsigned *restrict height);
52 int PictureInit (vout_thread_t *vout, picture_t *pic, xcb_connection_t *conn);
53 void PictureDeinit (picture_t *pic, xcb_connection_t *conn);