1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
23  */
24 
25 #include "config.h"
26 
27 #include "gdkproperty.h"
28 
29 #include "gdkmain.h"
30 #include "gdkprivate.h"
31 #include "gdkinternals.h"
32 #include "gdkdisplay-broadway.h"
33 #include "gdkscreen-broadway.h"
34 #include "gdkselection.h"
35 
36 #include <string.h>
37 
38 gboolean
_gdk_broadway_window_get_property(GdkWindow * window,GdkAtom property,GdkAtom type,gulong offset,gulong length,gint pdelete,GdkAtom * actual_property_type,gint * actual_format_type,gint * actual_length,guchar ** data)39 _gdk_broadway_window_get_property (GdkWindow   *window,
40 				   GdkAtom      property,
41 				   GdkAtom      type,
42 				   gulong       offset,
43 				   gulong       length,
44 				   gint         pdelete,
45 				   GdkAtom     *actual_property_type,
46 				   gint        *actual_format_type,
47 				   gint        *actual_length,
48 				   guchar     **data)
49 {
50   return FALSE;
51 }
52 
53 void
_gdk_broadway_window_change_property(GdkWindow * window,GdkAtom property,GdkAtom type,gint format,GdkPropMode mode,const guchar * data,gint nelements)54 _gdk_broadway_window_change_property (GdkWindow    *window,
55 				      GdkAtom       property,
56 				      GdkAtom       type,
57 				      gint          format,
58 				      GdkPropMode   mode,
59 				      const guchar *data,
60 				      gint          nelements)
61 {
62   g_return_if_fail (!window || GDK_WINDOW_IS_BROADWAY (window));
63 }
64 
65 void
_gdk_broadway_window_delete_property(GdkWindow * window,GdkAtom property)66 _gdk_broadway_window_delete_property (GdkWindow *window,
67 				      GdkAtom    property)
68 {
69   g_return_if_fail (!window || GDK_WINDOW_IS_BROADWAY (window));
70 }
71