forked from andrewkirillov/AForge.NET
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathIVideoWindow.cs
466 lines (426 loc) · 15.7 KB
/
IVideoWindow.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
// AForge Direct Show Library
// AForge.NET framework
//
// Copyright © Andrew Kirillov, 2007
// andrew.kirillov@gmail.com
//
namespace AForge.Video.DirectShow.Internals
{
using System;
using System.Runtime.InteropServices;
/// <summary>
/// The interface sets properties on the video window.
/// </summary>
///
[ComImport,
Guid("56A868B4-0AD4-11CE-B03A-0020AF0BA770"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
internal interface IVideoWindow
{
/// <summary>
/// Sets the video window caption.
/// </summary>
///
/// <param name="caption">Caption.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_Caption( string caption );
/// <summary>
/// Retrieves the video window caption.
/// </summary>
///
/// <param name="caption">Caption.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_Caption( [Out] out string caption );
/// <summary>
/// Sets the window style on the video window.
/// </summary>
///
/// <param name="windowStyle">Window style flags.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_WindowStyle( int windowStyle );
/// <summary>
/// Retrieves the window style on the video window.
/// </summary>
///
/// <param name="windowStyle">Window style flags.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_WindowStyle( out int windowStyle );
/// <summary>
/// Sets the extended window style on the video window.
/// </summary>
///
/// <param name="windowStyleEx">Window extended style flags.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_WindowStyleEx( int windowStyleEx );
/// <summary>
/// Retrieves the extended window style on the video window.
/// </summary>
///
/// <param name="windowStyleEx">Window extended style flags.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_WindowStyleEx( out int windowStyleEx );
/// <summary>
/// Specifies whether the video renderer automatically shows the video window when it receives video data.
/// </summary>
///
/// <param name="autoShow">Specifies whether the video renderer automatically shows the video window.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_AutoShow( [In, MarshalAs( UnmanagedType.Bool )] bool autoShow );
/// <summary>
/// Queries whether the video renderer automatically shows the video window when it receives video data.
/// </summary>
///
/// <param name="autoShow">REceives window auto show flag.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_AutoShow( [Out, MarshalAs( UnmanagedType.Bool )] out bool autoShow );
/// <summary>
/// Shows, hides, minimizes, or maximizes the video window.
/// </summary>
///
/// <param name="windowState">Window state.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_WindowState( int windowState );
/// <summary>
/// Queries whether the video window is visible, hidden, minimized, or maximized.
/// </summary>
///
/// <param name="windowState">Window state.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_WindowState( out int windowState );
/// <summary>
/// Specifies whether the video window realizes its palette in the background.
/// </summary>
///
/// <param name="backgroundPalette">Value that specifies whether the video renderer realizes it palette in the background.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_BackgroundPalette( [In, MarshalAs( UnmanagedType.Bool )] bool backgroundPalette );
/// <summary>
/// Queries whether the video window realizes its palette in the background.
/// </summary>
///
/// <param name="backgroundPalette">Receives state of background palette flag.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_BackgroundPalette( [Out, MarshalAs( UnmanagedType.Bool )] out bool backgroundPalette );
/// <summary>
/// Shows or hides the video window.
/// </summary>
///
/// <param name="visible">Value that specifies whether to show or hide the window.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_Visible( [In, MarshalAs( UnmanagedType.Bool )] bool visible );
/// <summary>
/// Queries whether the video window is visible.
/// </summary>
///
/// <param name="visible">Visibility flag.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_Visible( [Out, MarshalAs( UnmanagedType.Bool )] out bool visible );
/// <summary>
/// Sets the video window's x-coordinate.
/// </summary>
///
/// <param name="left">Specifies the x-coordinate, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_Left( int left );
/// <summary>
/// Retrieves the video window's x-coordinate.
/// </summary>
///
/// <param name="left">x-coordinate, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_Left( out int left );
/// <summary>
/// Sets the width of the video window.
/// </summary>
///
/// <param name="width">Specifies the width, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_Width( int width );
/// <summary>
/// Retrieves the width of the video window.
/// </summary>
///
/// <param name="width">Width, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_Width( out int width );
/// <summary>
/// Sets the video window's y-coordinate.
/// </summary>
///
/// <param name="top">Specifies the y-coordinate, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_Top( int top );
/// <summary>
/// Retrieves the video window's y-coordinate.
/// </summary>
///
/// <param name="top">y-coordinate, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_Top( out int top );
/// <summary>
/// Sets the height of the video window.
/// </summary>
///
/// <param name="height">Specifies the height, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_Height( int height );
/// <summary>
/// Retrieves the height of the video window.
/// </summary>
///
/// <param name="height">Height, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_Height( out int height );
/// <summary>
/// Specifies a parent window for the video windowþ
/// </summary>
///
/// <param name="owner">Specifies a handle to the parent window.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_Owner( IntPtr owner );
/// <summary>
/// Retrieves the video window's parent window, if anyþ
/// </summary>
///
/// <param name="owner">Parent window's handle.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_Owner( out IntPtr owner );
/// <summary>
/// Specifies a window to receive mouse and keyboard messages from the video window.
/// </summary>
///
/// <param name="drain">Specifies a handle to the window.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_MessageDrain( IntPtr drain );
/// <summary>
/// Retrieves the window that receives mouse and keyboard messages from the video window, if any.
/// </summary>
///
/// <param name="drain">Window's handle.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_MessageDrain( out IntPtr drain );
/// <summary>
/// Retrieves the color that appears around the edges of the destination rectangle.
/// </summary>
///
/// <param name="color">Border's color.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_BorderColor( out int color );
/// <summary>
/// Sets the color that appears around the edges of the destination rectangle.
/// </summary>
///
/// <param name="color">Specifies the border color.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_BorderColor( int color );
/// <summary>
/// Queries whether the video renderer is in full-screen mode.
/// </summary>
///
/// <param name="fullScreenMode">Full-screen mode.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int get_FullScreenMode(
[Out, MarshalAs( UnmanagedType.Bool )] out bool fullScreenMode );
/// <summary>
/// Enables or disables full-screen mode.
/// </summary>
///
/// <param name="fullScreenMode">Boolean value that specifies whether to enable or disable full-screen mode.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int put_FullScreenMode( [In, MarshalAs( UnmanagedType.Bool )] bool fullScreenMode );
/// <summary>
/// Places the video window at the top of the Z order.
/// </summary>
///
/// <param name="focus">Value that specifies whether to give the window focus.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int SetWindowForeground( int focus );
/// <summary>
/// Forwards a message to the video window.
/// </summary>
///
/// <param name="hwnd">Handle to the window.</param>
/// <param name="msg">Specifies the message.</param>
/// <param name="wParam">Message parameter.</param>
/// <param name="lParam">Message parameter.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int NotifyOwnerMessage( IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam );
/// <summary>
/// Sets the position of the video windowþ
/// </summary>
///
/// <param name="left">Specifies the x-coordinate, in pixels.</param>
/// <param name="top">Specifies the y-coordinate, in pixels.</param>
/// <param name="width">Specifies the width, in pixels.</param>
/// <param name="height">Specifies the height, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int SetWindowPosition( int left, int top, int width, int height );
/// <summary>
/// Retrieves the position of the video window.
/// </summary>
///
/// <param name="left">x-coordinate, in pixels.</param>
/// <param name="top">y-coordinate, in pixels.</param>
/// <param name="width">Width, in pixels.</param>
/// <param name="height">Height, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int GetWindowPosition( out int left, out int top, out int width, out int height );
/// <summary>
/// Retrieves the minimum ideal size for the video image.
/// </summary>
///
/// <param name="width">Receives the minimum ideal width, in pixels.</param>
/// <param name="height">Receives the minimum ideal height, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int GetMinIdealImageSize( out int width, out int height );
/// <summary>
/// Retrieves the maximum ideal size for the video image.
/// </summary>
///
/// <param name="width">Receives the maximum ideal width, in pixels.</param>
/// <param name="height">Receives the maximum ideal height, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int GetMaxIdealImageSize( out int width, out int height );
/// <summary>
/// Retrieves the restored window position.
/// </summary>
///
/// <param name="left">x-coordinate, in pixels.</param>
/// <param name="top">y-coordinate, in pixels.</param>
/// <param name="width">Width, in pixels.</param>
/// <param name="height">Height, in pixels.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int GetRestorePosition( out int left, out int top, out int width, out int height );
/// <summary>
/// Hides the cursor.
/// </summary>
///
/// <param name="hideCursor">Specifies whether to hide or display the cursor.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int HideCursor( [In, MarshalAs( UnmanagedType.Bool )] bool hideCursor );
/// <summary>
/// Queries whether the cursor is hidden.
/// </summary>
///
/// <param name="hideCursor">Specifies if cursor is hidden or not.</param>
///
/// <returns>Return's <b>HRESULT</b> error code.</returns>
///
[PreserveSig]
int IsCursorHidden( [Out, MarshalAs( UnmanagedType.Bool )] out bool hideCursor );
}
}