1 /*****************************************************************************
2 * vlc_vout_window.h: vout_window_t definitions
3 *****************************************************************************
4 * Copyright (C) 2008 RĂ©mi Denis-Courmont
5 * Copyright (C) 2009 Laurent Aimar
8 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef VLC_VOUT_WINDOW_H
26 #define VLC_VOUT_WINDOW_H 1
30 * This file defines vout windows structures and functions in vlc
33 #include <vlc_common.h>
36 typedef struct vout_window_t vout_window_t;
37 typedef struct vout_window_sys_t vout_window_sys_t;
45 VOUT_WINDOW_TYPE_HWND,
49 * Control query for vout_window_t
52 VOUT_WINDOW_SET_ON_TOP, /* int b_on_top */
53 VOUT_WINDOW_SET_SIZE, /* unsigned i_width, unsigned i_height */
54 VOUT_WINDOW_SET_FULLSCREEN, /* int b_fullscreen */
58 /* If true, a standalone window is requested */
61 /* Window handle type */
64 /* Window position hint */
68 /* Windows size hint */
75 * FIXME do we need an event system in the window too ?
76 * or the window user will take care of it ?
78 struct vout_window_t {
84 /* Initial state (reserved).
85 * Once the open function is called, it will be set to NULL
87 const vout_window_cfg_t *cfg;
89 /* window handle (mandatory)
91 * It must be filled in the open function.
94 void *hwnd; /* Win32 window handle */
95 uint32_t xid; /* X11 windows ID */
98 /* Control on the module (mandatory)
100 * Do not use it directly; use vout_window_Control instead.
102 int (*control)(vout_window_t *, int query, va_list);
104 /* Private place holder for the vout_window_t module (optional)
106 * A module is free to use it as it wishes.
108 vout_window_sys_t *sys;
112 * It creates a new window.
114 * @note If you are inside a "vout display", you must use
115 * vout_display_New/DeleteWindow when possible to allow window recycling.
117 VLC_EXPORT( vout_window_t *, vout_window_New, (vlc_object_t *, const char *module, const vout_window_cfg_t *) );
120 * It deletes a window created by vout_window_New().
122 * @note See vout_window_New() about window recycling.
124 VLC_EXPORT( void, vout_window_Delete, (vout_window_t *) );
127 * It allows configuring a window.
129 * @warning The caller must own the window, as vout_window_t is not thread safe.
130 * You should use it the vout_window_* wrappers instead of this function.
132 VLC_EXPORT( int, vout_window_Control, (vout_window_t *, int query, ...) );
135 * Configure the "On Top" properties of a windows.
137 static inline int vout_window_SetOnTop(vout_window_t *window, bool is_on_top)
139 return vout_window_Control(window, VOUT_WINDOW_SET_ON_TOP, is_on_top);
143 * Configure the windows display size.
145 static inline int vout_window_SetSize(vout_window_t *window,
146 unsigned width, unsigned height)
148 return vout_window_Control(window, VOUT_WINDOW_SET_SIZE, width, height);
152 * Configure the windows fullscreen mode.
154 static inline int vout_window_SetFullScreen(vout_window_t *window, bool full)
156 return vout_window_Control(window, VOUT_WINDOW_SET_FULLSCREEN, full);
159 #endif /* VLC_VOUT_WINDOW_H */