[511/906] tests: update for 1.0
[platform/upstream/gst-plugins-good.git] / tests / examples / gtk / gstgtk.c
1 /*
2  * GStreamer
3  * Copyright (C) 2009 David A. Schleef <ds@schleef.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library 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 GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include "gstgtk.h"
22
23 #if defined(GDK_WINDOWING_WIN32)
24 #include <gdk/gdkwin32.h>
25 #elif defined(GDK_WINDOWING_X11)
26 #include <gdk/gdkx.h>
27 #elif defined(GDK_WINDOWING_QUARTZ)
28 #include <gdk/gdkquartz.h>
29 #else
30 #error unimplemented GTK backend
31 #endif
32
33
34 void
35 gst_video_overlay_set_gtk_window (GstVideoOverlay * videooverlay,
36     GtkWidget * window)
37 {
38
39 #if defined(GDK_WINDOWING_WIN32)
40   gst_video_overlay_set_window_handle (videooverlay,
41       (gulong) GDK_WINDOW_HWND (window->window));
42 #elif defined(GDK_WINDOWING_QUARTZ)
43   gst_video_overlay_set_window_handle (videooverlay,
44       (gulong) gdk_quartz_window_get_nswindow (window->window));
45 #elif defined(GDK_WINDOWING_X11)
46   gst_video_overlay_set_window_handle (videooverlay,
47       GDK_WINDOW_XWINDOW (window->window));
48 #else
49 #error unimplemented GTK backend
50 #endif
51
52 }