1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19  
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 module gstreamerc.gstinterfacestypes;
25 
26 public import gtkc.glibtypes;
27 public import gtkc.gobjecttypes;
28 public import gstreamerc.gstreamertypes;
29 
30 /**
31  * Main Gtk struct.
32  * Opaque GstVideoOverlay interface structure
33  */
34 public struct GstVideoOverlay{}
35 
36 
37 /**
38  * GstVideoOverlay interface
39  * GTypeInterface iface;
40  * parent interface type.
41  * expose ()
42  * virtual method to handle expose events
43  * handle_events ()
44  * virtual method to handle events
45  * set_render_rectangle ()
46  * virtual method to set the render rectangle
47  * set_window_handle ()
48  * virtual method to configure the window handle
49  */
50 public struct GstVideoOverlayInterface
51 {
52 	GTypeInterface iface;
53 	/+* virtual functions +/
54 	extern(C) void function(GstVideoOverlay* overlay) expose;
55 	extern(C) void function(GstVideoOverlay* overlay, int handleEvents) handleEvents;
56 	extern(C) void function(GstVideoOverlay* overlay, int x, int y, int width, int height) setRenderRectangle;
57 	extern(C) void function(GstVideoOverlay* overlay, guintptr handle) setWindowHandle;
58 }
59