xine-lib  1.2.9
x11osd.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2003-2009 the xine project
3  *
4  * This file is part of xine, a free video player.
5  *
6  * xine is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * xine is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
19  *
20  * x11osd.h, use X11 Nonrectangular Window Shape Extension to draw xine OSD
21  *
22  * Nov 2003 - Miguel Freitas
23  *
24  * based on ideas and code of
25  * xosd Copyright (c) 2000 Andre Renaud (andre@ignavus.net)
26  */
27 
28 #ifndef X11OSD_H
29 #define X11OSD_H
30 
31 #include <xine/vo_scale.h>
32 
33 typedef struct x11osd x11osd;
35 
36 x11osd *x11osd_create (xine_t *xine, Display *display, int screen, Window window, enum x11osd_mode mode);
37 
38 void x11osd_colorkey(x11osd * osd, uint32_t colorkey, vo_scale_t *scaling);
39 
40 void x11osd_destroy (x11osd * osd);
41 
42 void x11osd_expose (x11osd * osd);
43 
44 void x11osd_resize (x11osd * osd, int width, int height);
45 
46 void x11osd_drawable_changed (x11osd * osd, Window window);
47 
48 void x11osd_clear(x11osd *osd);
49 
50 void x11osd_blend(x11osd *osd, vo_overlay_t *overlay);
51 
52 #endif
void x11osd_blend(x11osd *osd, vo_overlay_t *overlay)
Definition: x11osd.c:441
unsigned int height
Definition: gfontrle.c:5
enable disable number of frames of telecine pattern sync required before mode change make frames evenly spaced for film mode(24 fps)" ) PARAM_ITEM( POST_PARAM_TYPE_BOOL
void x11osd_destroy(x11osd *osd)
Definition: x11osd.c:384
void x11osd_expose(x11osd *osd)
Definition: x11osd.c:94
Definition: video_out.h:476
Definition: x11osd.h:34
void x11osd_colorkey(x11osd *osd, uint32_t colorkey, vo_scale_t *scaling)
Definition: x11osd.c:371
Definition: x11osd.h:34
void x11osd_clear(x11osd *osd)
Definition: x11osd.c:402
int screen
Definition: x11osd.c:60
uint32_t colorkey
Definition: x11osd.c:72
void x11osd_resize(x11osd *osd, int width, int height)
Definition: x11osd.c:127
void x11osd_drawable_changed(x11osd *osd, Window window)
Definition: x11osd.c:162
Display * display
Definition: x11osd.c:59
x11osd_mode
Definition: x11osd.h:34
unsigned int width
Definition: gfontrle.c:4
Definition: x11osd.c:57
Definition: xine_internal.h:81
xine_t * xine
Definition: x11osd.c:89
x11osd * x11osd_create(xine_t *xine, Display *display, int screen, Window window, enum x11osd_mode mode)
Definition: x11osd.c:240
Window window
Definition: x11osd.c:65
Definition: vo_scale.h:39