]> git.sesse.net Git - vlc/blob - modules/video_output/msw/common.h
WinCE: fix window size in wing{d,ap}i video output again
[vlc] / modules / video_output / msw / common.h
1 /*****************************************************************************
2  * common.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 #include <vlc_picture_pool.h>
29 #include "events.h"
30
31 #ifdef MODULE_NAME_IS_wingapi
32     typedef struct GXDisplayProperties {
33         DWORD cxWidth;
34         DWORD cyHeight;
35         long cbxPitch;
36         long cbyPitch;
37         long cBPP;
38         DWORD ffFormat;
39     } GXDisplayProperties;
40
41     typedef struct GXScreenRect {
42         DWORD dwTop;
43         DWORD dwLeft;
44         DWORD dwWidth;
45         DWORD dwHeight;
46     } GXScreenRect;
47
48 #   define GX_FULLSCREEN    0x01
49 #   define GX_NORMALKEYS    0x02
50 #   define GX_LANDSCAPEKEYS 0x03
51
52 #   ifndef kfLandscape
53 #       define kfLandscape      0x8
54 #       define kfPalette        0x10
55 #       define kfDirect         0x20
56 #       define kfDirect555      0x40
57 #       define kfDirect565      0x80
58 #       define kfDirect888      0x100
59 #       define kfDirect444      0x200
60 #       define kfDirectInverted 0x400
61 #   endif
62
63 #endif
64
65 /*****************************************************************************
66  * vout_sys_t: video output method descriptor
67  *****************************************************************************
68  * This structure is part of the video output thread descriptor.
69  * It describes the module specific properties of an output thread.
70  *****************************************************************************/
71 struct vout_display_sys_t
72 {
73     /* */
74     event_thread_t *event;
75
76     /* */
77     HWND                 hwnd;                  /* Handle of the main window */
78     HWND                 hvideownd;        /* Handle of the video sub-window */
79     struct vout_window_t *parent_window;         /* Parent window VLC object */
80     HWND                 hparent;             /* Handle of the parent window */
81     HWND                 hfswnd;          /* Handle of the fullscreen window */
82
83     /* size of the display */
84     RECT         rect_display;
85     int          display_depth;
86
87     /* size of the overall window (including black bands) */
88     RECT         rect_parent;
89
90     unsigned changes;        /* changes made to the video display */
91
92     /* Misc */
93     bool is_first_display;
94     bool is_on_top;
95
96 #ifndef UNDER_CE
97
98     /* screensaver system settings to be restored when vout is closed */
99     UINT i_spi_lowpowertimeout;
100     UINT i_spi_powerofftimeout;
101     UINT i_spi_screensavetimeout;
102
103 #endif
104
105     /* Coordinates of src and dest images (used when blitting to display) */
106     RECT         rect_src;
107     RECT         rect_src_clipped;
108     RECT         rect_dest;
109     RECT         rect_dest_clipped;
110
111     picture_pool_t *pool;
112
113 #ifdef MODULE_NAME_IS_directx
114     /* Multi-monitor support */
115     HMONITOR             hmonitor;          /* handle of the current monitor */
116     GUID                 *display_driver;
117     HMONITOR             (WINAPI* MonitorFromWindow)(HWND, DWORD);
118     BOOL                 (WINAPI* GetMonitorInfo)(HMONITOR, LPMONITORINFO);
119
120     /* Overlay alignment restrictions */
121     int          i_align_src_boundary;
122     int          i_align_src_size;
123     int          i_align_dest_boundary;
124     int          i_align_dest_size;
125
126     bool   use_wallpaper;   /* show as desktop wallpaper ? */
127
128     bool   use_overlay;     /* Are we using an overlay surface */
129
130     /* DDraw capabilities */
131     bool            can_blit_fourcc;
132
133     uint32_t        i_rgb_colorkey;      /* colorkey in RGB used by the overlay */
134     uint32_t        i_colorkey;                 /* colorkey used by the overlay */
135
136     COLORREF        color_bkg;
137     COLORREF        color_bkgtxt;
138
139     LPDIRECTDRAW2        ddobject;                    /* DirectDraw object */
140     LPDIRECTDRAWSURFACE2 display;                        /* Display device */
141     LPDIRECTDRAWCLIPPER  clipper;             /* clipper used for blitting */
142     HINSTANCE            hddraw_dll;       /* handle of the opened ddraw dll */
143
144     picture_resource_t   resource;
145
146     /* It protects the following variables */
147     vlc_mutex_t    lock;
148     bool           ch_wallpaper;
149     bool           wallpaper_requested;
150 #endif
151
152 #ifdef MODULE_NAME_IS_glwin32
153     HDC                   hGLDC;
154     HGLRC                 hGLRC;
155     vout_opengl_t         gl;
156     vout_display_opengl_t vgl;
157 #endif
158
159 #ifdef MODULE_NAME_IS_direct3d
160     bool allow_hw_yuv;    /* Should we use hardware YUV->RGB conversions */
161     /* show video on desktop window ? */
162     bool use_desktop;
163     struct {
164         bool is_fullscreen;
165         bool is_on_top;
166         RECT win;
167     } desktop_save;
168     vout_display_cfg_t cfg_saved; /* configuration used before going into desktop mode */
169
170     // core objects
171     HINSTANCE               hd3d9_dll;       /* handle of the opened d3d9 dll */
172     LPDIRECT3D9             d3dobj;
173     LPDIRECT3DDEVICE9       d3ddev;
174     D3DPRESENT_PARAMETERS   d3dpp;
175     // scene objects
176     LPDIRECT3DTEXTURE9      d3dtex;
177     LPDIRECT3DVERTEXBUFFER9 d3dvtc;
178
179     picture_resource_t      resource;
180
181     /* */
182     bool                    reset_device;
183     bool                    reopen_device;
184
185     /* It protects the following variables */
186     vlc_mutex_t    lock;
187     bool           ch_desktop;
188     bool           desktop_requested;
189 #endif
190
191 #if defined(MODULE_NAME_IS_wingdi) || defined(MODULE_NAME_IS_wingapi)
192     int  i_depth;
193
194     /* Our offscreen bitmap and its framebuffer */
195     HDC        off_dc;
196     HBITMAP    off_bitmap;
197
198     struct
199     {
200         BITMAPINFO bitmapinfo;
201         RGBQUAD    red;
202         RGBQUAD    green;
203         RGBQUAD    blue;
204     };
205
206 #   ifdef MODULE_NAME_IS_wingapi
207     HINSTANCE  gapi_dll;                   /* handle of the opened gapi dll */
208
209     /* GAPI functions */
210     int (*GXOpenDisplay)(HWND hWnd, DWORD dwFlags);
211     int (*GXCloseDisplay)();
212     void *(*GXBeginDraw)();
213     int (*GXEndDraw)();
214     GXDisplayProperties (*GXGetDisplayProperties)();
215     int (*GXSuspend)();
216     int (*GXResume)();
217 #   endif
218 #endif
219 };
220
221 #ifdef MODULE_NAME_IS_wingapi
222 #   define GXOpenDisplay          vd->sys->GXOpenDisplay
223 #   define GXCloseDisplay         vd->sys->GXCloseDisplay
224 #   define GXBeginDraw            vd->sys->GXBeginDraw
225 #   define GXEndDraw              vd->sys->GXEndDraw
226 #   define GXGetDisplayProperties vd->sys->GXGetDisplayProperties
227 #   define GXSuspend              vd->sys->GXSuspend
228 #   define GXResume               vd->sys->GXResume
229 #endif
230
231 /*****************************************************************************
232  * Prototypes from common.c
233  *****************************************************************************/
234 int  CommonInit(vout_display_t *);
235 void CommonClean(vout_display_t *);
236 void CommonManage(vout_display_t *);
237 int  CommonControl(vout_display_t *, int , va_list );
238 void CommonDisplay(vout_display_t *);
239
240 void UpdateRects (vout_display_t *,
241                   const vout_display_cfg_t *,
242                   const video_format_t *,
243                   bool is_forced);
244 void AlignRect(RECT *, int align_boundary, int align_size);
245
246 /*****************************************************************************
247  * Constants
248  *****************************************************************************/
249 #define IDM_TOGGLE_ON_TOP WM_USER + 1
250 #define DX_POSITION_CHANGE 0x1000
251 #define DX_WALLPAPER_CHANGE 0x2000
252 #define DX_DESKTOP_CHANGE 0x4000
253
254 /*****************************************************************************
255  * WinCE helpers
256  *****************************************************************************/
257 #ifdef UNDER_CE
258
259 #define AdjustWindowRect(a,b,c) AdjustWindowRectEx(a,b,c,0)
260
261 #ifndef GCL_HBRBACKGROUND
262 #   define GCL_HBRBACKGROUND (-10)
263 #endif
264
265 //#define FindWindowEx(a,b,c,d) 0
266
267 #define GetWindowPlacement(a,b)
268 #define SetWindowPlacement(a,b)
269 /*typedef struct _WINDOWPLACEMENT {
270     UINT length;
271     UINT flags;
272     UINT showCmd;
273     POINT ptMinPosition;
274     POINT ptMaxPosition;
275     RECT rcNormalPosition;
276 } WINDOWPLACEMENT;*/
277
278 #ifndef WM_NCMOUSEMOVE
279 #   define WM_NCMOUSEMOVE 160
280 #endif
281 #ifndef CS_OWNDC
282 #   define CS_OWNDC 32
283 #endif
284 #ifndef SC_SCREENSAVE
285 #   define SC_SCREENSAVE 0xF140
286 #endif
287 #ifndef SC_MONITORPOWER
288 #   define SC_MONITORPOWER 0xF170
289 #endif
290 #ifndef WM_NCPAINT
291 #   define WM_NCPAINT 133
292 #endif
293 #ifndef WS_OVERLAPPEDWINDOW
294 #   define WS_OVERLAPPEDWINDOW 0xcf0000
295 #endif
296 #ifndef WS_EX_NOPARENTNOTIFY
297 #   define WS_EX_NOPARENTNOTIFY 4
298 #endif
299 #ifndef WS_EX_APPWINDOW
300 #define WS_EX_APPWINDOW 0x40000
301 #endif
302
303 //#define SetWindowLongPtr SetWindowLong
304 //#define GetWindowLongPtr GetWindowLong
305 //#define GWLP_USERDATA GWL_USERDATA
306
307 #endif //UNDER_CE