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