]> git.sesse.net Git - vlc/blob - modules/video_output/drawable.c
Merge branch 1.0-bugfix
[vlc] / modules / video_output / drawable.c
1 /**
2  * @file drawable.c
3  * @brief Legacy monolithic LibVLC video window provider
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 HAVE_CONFIG_H
24 # include <config.h>
25 #endif
26
27 #include <stdarg.h>
28 #include <assert.h>
29
30 #include <vlc_common.h>
31 #include <vlc_plugin.h>
32 #include <vlc_vout.h>
33 #include <vlc_window.h>
34
35 static int  OpenXID (vlc_object_t *);
36 static int  OpenHWND (vlc_object_t *);
37 static void Close (vlc_object_t *);
38
39 #define XID_TEXT N_("ID of the video output X window")
40 #define XID_LONGTEXT N_( \
41     "VLC can embed its video output in an existing X11 window. " \
42     "This is the X identifier of that window (0 means none).")
43
44 /*
45  * Module descriptor
46  */
47 vlc_module_begin ()
48     set_shortname (N_("Drawable"))
49     set_description (N_("Embedded X window video"))
50     set_category (CAT_VIDEO)
51     set_subcategory (SUBCAT_VIDEO_VOUT)
52     set_capability ("xwindow", 70)
53     set_callbacks (OpenXID, Close)
54     add_integer ("drawable-xid", 0, NULL, XID_TEXT, XID_LONGTEXT, true)
55         change_unsaveable ()
56         /*change_integer_range (0, 0xffffffff)*/
57
58     add_submodule ()
59         set_description (N_("Embedded Windows video"))
60         set_capability ("hwnd", 70)
61         set_callbacks (OpenHWND, Close)
62
63 vlc_module_end ()
64
65 static int Control (vout_window_t *, int, va_list);
66
67 /**
68  * Find the drawable set by libvlc application.
69  */
70 static int Open (vlc_object_t *obj, const char *varname, bool ptr)
71 {
72     vout_window_t *wnd = (vout_window_t *)obj;
73     vlc_value_t val;
74
75     if (var_Create (obj, varname, VLC_VAR_DOINHERIT
76                                   | (ptr ? VLC_VAR_ADDRESS : VLC_VAR_INTEGER)))
77         return VLC_ENOMEM;
78     var_Get (obj, varname, &val);
79     var_Destroy (obj, varname);
80
81     if (ptr ? (val.p_address == NULL) : (val.i_int == 0))
82         return VLC_EGENERIC;
83
84     if (ptr)
85         wnd->handle.hwnd = val.p_address;
86     else
87         wnd->handle.xid = val.i_int;
88
89     /* FIXME: check that X server matches --x11-display (if specified) */
90     /* FIXME: get window size (in platform-dependent ways) */
91
92     wnd->control = Control;
93     return VLC_SUCCESS;
94 }
95
96 static int  OpenXID (vlc_object_t *obj)
97 {
98     return Open (obj, "drawable-xid", false);
99 }
100
101 static int  OpenHWND (vlc_object_t *obj)
102 {
103     return Open (obj, "drawable-hwnd", true);
104 }
105
106
107 /**
108  * Release the drawable.
109  */
110 static void Close (vlc_object_t *obj)
111 {
112     (void)obj;
113 }
114
115
116 static int Control (vout_window_t *wnd, int query, va_list ap)
117 {
118     switch (query)
119     {
120         case VOUT_SET_SIZE: /* not allowed */
121         case VOUT_SET_STAY_ON_TOP: /* not allowed either, would be ugly */
122             return VLC_EGENERIC;
123     }
124
125     msg_Warn (wnd, "unsupported control query %d", query);
126     return VLC_EGENERIC;
127 }
128