]> git.sesse.net Git - vlc/blob - modules/video_output/msw/vout.h
b2b1f82bf9ec9fc0537c11d57bdc13f5ac0a70b7
[vlc] / modules / video_output / msw / vout.h
1 /*****************************************************************************
2  * vout.h: Windows video output header file
3  *****************************************************************************
4  * Copyright (C) 2001-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *          Damien Fouilleul <damienf@videolan.org>
9  *
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.
14  *
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.
19  *
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  *****************************************************************************/
24
25 /*****************************************************************************
26  * event_thread_t: event thread
27  *****************************************************************************/
28 typedef struct event_thread_t
29 {
30     VLC_COMMON_MEMBERS
31
32     vout_thread_t * p_vout;
33     HANDLE window_ready;
34
35 } event_thread_t;
36
37 #ifdef MODULE_NAME_IS_wingapi
38     typedef struct GXDisplayProperties {
39         DWORD cxWidth;
40         DWORD cyHeight;
41         long cbxPitch;
42         long cbyPitch;
43         long cBPP;
44         DWORD ffFormat;
45     } GXDisplayProperties;
46
47     typedef struct GXScreenRect {
48         DWORD dwTop;
49         DWORD dwLeft;
50         DWORD dwWidth;
51         DWORD dwHeight;
52     } GXScreenRect;
53
54 #   define GX_FULLSCREEN    0x01
55 #   define GX_NORMALKEYS    0x02
56 #   define GX_LANDSCAPEKEYS 0x03
57
58 #   ifndef kfLandscape
59 #       define kfLandscape      0x8
60 #       define kfPalette        0x10
61 #       define kfDirect         0x20
62 #       define kfDirect555      0x40
63 #       define kfDirect565      0x80
64 #       define kfDirect888      0x100
65 #       define kfDirect444      0x200
66 #       define kfDirectInverted 0x400
67 #   endif
68
69 #endif
70
71 struct vout_window_t;
72
73 /*****************************************************************************
74  * vout_sys_t: video output method descriptor
75  *****************************************************************************
76  * This structure is part of the video output thread descriptor.
77  * It describes the module specific properties of an output thread.
78  *****************************************************************************/
79 struct vout_sys_t
80 {
81     HWND                 hwnd;                  /* Handle of the main window */
82     HWND                 hvideownd;        /* Handle of the video sub-window */
83     struct vout_window_t *parent_window;         /* Parent window VLC object */
84     HWND                 hparent;             /* Handle of the parent window */
85     HWND                 hfswnd;          /* Handle of the fullscreen window */
86     WNDPROC              pf_wndproc;             /* Window handling callback */
87
88     /* Multi-monitor support */
89     HMONITOR             hmonitor;          /* handle of the current monitor */
90     GUID                 *p_display_driver;
91     HMONITOR             (WINAPI* MonitorFromWindow)( HWND, DWORD );
92     BOOL                 (WINAPI* GetMonitorInfo)( HMONITOR, LPMONITORINFO );
93
94     /* size of the display */
95     RECT         rect_display;
96     int          i_display_depth;
97
98     /* size of the overall window (including black bands) */
99     RECT         rect_parent;
100
101     /* Window position and size */
102     int          i_window_x;
103     int          i_window_y;
104     int          i_window_width;
105     int          i_window_height;
106     int          i_window_style;
107
108     volatile uint16_t i_changes;        /* changes made to the video display */
109
110     /* Mouse */
111     volatile bool b_cursor_hidden;
112     volatile mtime_t    i_lastmoved;
113     mtime_t             i_mouse_hide_timeout;
114
115     /* Misc */
116     bool      b_on_top_change;
117
118 #ifndef UNDER_CE
119
120     /* screensaver system settings to be restored when vout is closed */
121     UINT i_spi_lowpowertimeout;
122     UINT i_spi_powerofftimeout;
123     UINT i_spi_screensavetimeout;
124
125 #endif
126
127     /* Coordinates of src and dest images (used when blitting to display) */
128     RECT         rect_src;
129     RECT         rect_src_clipped;
130     RECT         rect_dest;
131     RECT         rect_dest_clipped;
132
133     bool   b_hw_yuv;    /* Should we use hardware YUV->RGB conversions */
134
135
136 #ifdef MODULE_NAME_IS_vout_directx
137     /* Overlay alignment restrictions */
138     int          i_align_src_boundary;
139     int          i_align_src_size;
140     int          i_align_dest_boundary;
141     int          i_align_dest_size;
142
143     bool      b_wallpaper;    /* show as desktop wallpaper ? */
144
145     bool   b_using_overlay;         /* Are we using an overlay surface */
146     bool   b_use_sysmem;   /* Should we use system memory for surfaces */
147     bool   b_3buf_overlay;   /* Should we use triple buffered overlays */
148
149     /* DDraw capabilities */
150     int          b_caps_overlay_clipping;
151
152     int          i_rgb_colorkey;      /* colorkey in RGB used by the overlay */
153     int          i_colorkey;                 /* colorkey used by the overlay */
154
155     COLORREF        color_bkg;
156     COLORREF        color_bkgtxt;
157
158     LPDIRECTDRAW2        p_ddobject;                    /* DirectDraw object */
159     LPDIRECTDRAWSURFACE2 p_display;                        /* Display device */
160     LPDIRECTDRAWSURFACE2 p_current_surface;   /* surface currently displayed */
161     LPDIRECTDRAWCLIPPER  p_clipper;             /* clipper used for blitting */
162     HINSTANCE            hddraw_dll;       /* handle of the opened ddraw dll */
163 #endif
164
165 #ifdef MODULE_NAME_IS_glwin32
166     HDC hGLDC;
167     HGLRC hGLRC;
168 #endif
169
170 #ifdef MODULE_NAME_IS_direct3d
171     // core objects
172     HINSTANCE               hd3d9_dll;       /* handle of the opened d3d9 dll */
173     LPDIRECT3D9             p_d3dobj;
174     LPDIRECT3DDEVICE9       p_d3ddev;
175     D3DFORMAT               bbFormat;
176     // scene objects
177     LPDIRECT3DTEXTURE9      p_d3dtex;
178     LPDIRECT3DVERTEXBUFFER9 p_d3dvtc;
179 #endif
180
181 #ifdef MODULE_NAME_IS_wingdi
182
183     int  i_depth;
184
185     /* Our offscreen bitmap and its framebuffer */
186     HDC        off_dc;
187     HBITMAP    off_bitmap;
188     uint8_t *  p_pic_buffer;
189     int        i_pic_pitch;
190     int        i_pic_pixel_pitch;
191
192     BITMAPINFO bitmapinfo;
193     RGBQUAD    red;
194     RGBQUAD    green;
195     RGBQUAD    blue;
196 #endif
197
198 #ifdef MODULE_NAME_IS_wingapi
199     int        i_depth;
200     int        render_width;
201     int        render_height;
202             /* Our offscreen bitmap and its framebuffer */
203     HDC        off_dc;
204     HBITMAP    off_bitmap;
205     uint8_t *  p_pic_buffer;
206     int        i_pic_pitch;
207     int        i_pic_pixel_pitch;
208
209     BITMAPINFO bitmapinfo;
210     RGBQUAD    red;
211     RGBQUAD    green;
212     RGBQUAD    blue;
213
214     bool b_focus;
215     bool b_parent_focus;
216
217     HINSTANCE  gapi_dll;                   /* handle of the opened gapi dll */
218
219     /* GAPI functions */
220     int (*GXOpenDisplay)( HWND hWnd, DWORD dwFlags );
221     int (*GXCloseDisplay)();
222     void *(*GXBeginDraw)();
223     int (*GXEndDraw)();
224     GXDisplayProperties (*GXGetDisplayProperties)();
225     int (*GXSuspend)();
226     int (*GXResume)();
227 #endif
228
229 #ifndef UNDER_CE
230     /* suspend display */
231     bool   b_suspend_display;
232 #endif
233
234     event_thread_t *p_event;
235     vlc_mutex_t    lock;
236 };
237
238 #ifdef MODULE_NAME_IS_wingapi
239 #   define GXOpenDisplay p_vout->p_sys->GXOpenDisplay
240 #   define GXCloseDisplay p_vout->p_sys->GXCloseDisplay
241 #   define GXBeginDraw p_vout->p_sys->GXBeginDraw
242 #   define GXEndDraw p_vout->p_sys->GXEndDraw
243 #   define GXGetDisplayProperties p_vout->p_sys->GXGetDisplayProperties
244 #   define GXSuspend p_vout->p_sys->GXSuspend
245 #   define GXResume p_vout->p_sys->GXResume
246 #endif
247
248 /*****************************************************************************
249  * Prototypes from directx.c
250  *****************************************************************************/
251 int DirectDrawUpdateOverlay( vout_thread_t *p_vout );
252
253 /*****************************************************************************
254  * Prototypes from events.c
255  *****************************************************************************/
256 void* EventThread ( vlc_object_t *p_this );
257 void UpdateRects ( vout_thread_t *p_vout, bool b_force );
258 void Win32ToggleFullscreen ( vout_thread_t *p_vout );
259
260 /*****************************************************************************
261  * Constants
262  *****************************************************************************/
263 #define WM_VLC_HIDE_MOUSE WM_APP
264 #define WM_VLC_SHOW_MOUSE WM_APP + 1
265 #define WM_VLC_CHANGE_TEXT WM_APP + 2
266 #define IDM_TOGGLE_ON_TOP WM_USER + 1
267 #define DX_POSITION_CHANGE 0x1000
268 #define DX_WALLPAPER_CHANGE 0x2000
269
270 /*****************************************************************************
271  * WinCE helpers
272  *****************************************************************************/
273 #ifdef UNDER_CE
274
275 #define AdjustWindowRect(a,b,c)
276
277 #ifndef GCL_HBRBACKGROUND
278 #   define GCL_HBRBACKGROUND (-10)
279 #endif
280
281 //#define FindWindowEx(a,b,c,d) 0
282
283 #define GetWindowPlacement(a,b)
284 #define SetWindowPlacement(a,b)
285 /*typedef struct _WINDOWPLACEMENT {
286     UINT length;
287     UINT flags;
288     UINT showCmd;
289     POINT ptMinPosition;
290     POINT ptMaxPosition;
291     RECT rcNormalPosition;
292 } WINDOWPLACEMENT;*/
293
294 #ifndef WM_NCMOUSEMOVE
295 #   define WM_NCMOUSEMOVE 160
296 #endif
297 #ifndef CS_OWNDC
298 #   define CS_OWNDC 32
299 #endif
300 #ifndef SC_SCREENSAVE
301 #   define SC_SCREENSAVE 0xF140
302 #endif
303 #ifndef SC_MONITORPOWER
304 #   define SC_MONITORPOWER 0xF170
305 #endif
306 #ifndef WM_NCPAINT
307 #   define WM_NCPAINT 133
308 #endif
309 #ifndef WS_OVERLAPPEDWINDOW
310 #   define WS_OVERLAPPEDWINDOW 0xcf0000
311 #endif
312 #ifndef WS_EX_NOPARENTNOTIFY
313 #   define WS_EX_NOPARENTNOTIFY 4
314 #endif
315 #ifndef WS_EX_APPWINDOW
316 #define WS_EX_APPWINDOW 0x40000
317 #endif
318
319 //#define SetWindowLongPtr SetWindowLong
320 //#define GetWindowLongPtr GetWindowLong
321 //#define GWLP_USERDATA GWL_USERDATA
322
323 #endif //UNDER_CE