1 /*****************************************************************************
2 * window.c: "vout window" managment
3 *****************************************************************************
4 * Copyright (C) 2009 Laurent Aimar
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
32 #include <vlc_common.h>
33 #include <vlc_vout_window.h>
41 vlc_inhibit_t
*inhibit
;
44 vout_window_t
*vout_window_New(vlc_object_t
*obj
,
46 const vout_window_cfg_t
*cfg
)
48 static char const name
[] = "window";
49 window_t
*w
= vlc_custom_create(obj
, sizeof(*w
), VLC_OBJECT_GENERIC
, name
);
50 vout_window_t
*window
= &w
->wnd
;
53 memset(&window
->handle
, 0, sizeof(window
->handle
));
54 window
->control
= NULL
;
57 vlc_object_attach(window
, obj
);
62 case VOUT_WINDOW_TYPE_HWND
:
63 type
= "vout window hwnd";
64 window
->handle
.hwnd
= NULL
;
67 case VOUT_WINDOW_TYPE_XID
:
68 type
= "vout window xid";
69 window
->handle
.xid
= 0;
70 window
->display
.x11
= NULL
;
76 w
->module
= module_need(window
, type
, module
, module
&& *module
!= '\0');
78 vlc_object_release(window
);
82 /* Hook for screensaver inhibition */
83 if (cfg
->type
== VOUT_WINDOW_TYPE_XID
) {
84 w
->inhibit
= vlc_inhibit_Create (VLC_OBJECT (window
),
86 if (w
->inhibit
!= NULL
)
87 vlc_inhibit_Set (w
->inhibit
, true);
88 /* FIXME: ^ wait for vout activation, pause */
95 void vout_window_Delete(vout_window_t
*window
)
100 window_t
*w
= (window_t
*)window
;
102 vlc_inhibit_Destroy (w
->inhibit
);
104 module_unneed(window
, w
->module
);
106 vlc_object_release(window
);
109 int vout_window_Control(vout_window_t
*window
, int query
, ...)
112 va_start(args
, query
);
113 int ret
= window
->control(window
, query
, args
);